List of usage examples for android.os Binder getCallingUserHandle
public static final @NonNull UserHandle getCallingUserHandle()
From source file:com.android.server.MountService.java
private boolean hasUserRestriction(String restriction) { UserManager um = (UserManager) mContext.getSystemService(Context.USER_SERVICE); return um.hasUserRestriction(restriction, Binder.getCallingUserHandle()); }