Home | History | Annotate | Download | only in deviceowner

Lines Matching refs:userHandle

22 import android.os.UserHandle;
43 public void onUserAdded(Context context, Intent intent, UserHandle userHandle) {
44 super.onUserAdded(context, intent, userHandle);
45 sendUserBroadcast(context, ACTION_USER_ADDED, userHandle);
49 public void onUserRemoved(Context context, Intent intent, UserHandle userHandle) {
50 super.onUserRemoved(context, intent, userHandle);
51 sendUserBroadcast(context, ACTION_USER_REMOVED, userHandle);
55 public void onUserStarted(Context context, Intent intent, UserHandle userHandle) {
56 super.onUserStarted(context, intent, userHandle);
57 sendUserBroadcast(context, ACTION_USER_STARTED, userHandle);
61 public void onUserStopped(Context context, Intent intent, UserHandle userHandle) {
62 super.onUserStopped(context, intent, userHandle);
63 sendUserBroadcast(context, ACTION_USER_STOPPED, userHandle);
67 public void onUserSwitched(Context context, Intent intent, UserHandle userHandle) {
68 super.onUserSwitched(context, intent, userHandle);
69 sendUserBroadcast(context, ACTION_USER_SWITCHED, userHandle);
83 UserHandle userHandle) {
85 intent.putExtra(EXTRA_USER_HANDLE, userHandle);