Home | History | Annotate | Download | only in trust

Lines Matching full:userid

48      * Reports that user {@param userId} has tried to unlock the device.
54 public void reportUnlockAttempt(boolean successful, int userId) {
56 mService.reportUnlockAttempt(successful, userId);
63 * Reports that the list of enabled trust agents changed for user {@param userId}.
67 public void reportEnabledTrustAgentsChanged(int userId) {
69 mService.reportEnabledTrustAgentsChanged(userId);
76 * Reports that trust is disabled until credentials have been entered for user {@param userId}.
80 * @param userId either an explicit user id or {@link android.os.UserHandle#USER_ALL}
82 public void reportRequireCredentialEntry(int userId) {
84 mService.reportRequireCredentialEntry(userId);
112 public void onTrustChanged(boolean enabled, int userId, int flags) {
113 Message m = mHandler.obtainMessage(MSG_TRUST_CHANGED, (enabled ? 1 : 0), userId,
122 public void onTrustManagedChanged(boolean managed, int userId) {
123 mHandler.obtainMessage(MSG_TRUST_MANAGED_CHANGED, (managed ? 1 : 0), userId,
153 * @param userId the user id of the user to check for
158 public boolean hasUserAuthenticatedSinceBoot(int userId) {
160 return mService.hasUserAuthenticatedSinceBoot(userId);
190 * @param userId the user, for which the trust changed.
195 void onTrustChanged(boolean enabled, int userId, int flags);
200 * @param userId the user, for which the state changed.
202 void onTrustManagedChanged(boolean enabled, int userId);