HomeSort by relevance Sort by last modified time
    Searched full:userinfo (Results 1 - 25 of 188) sorted by null

1 2 3 4 5 6 7 8

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRuntimeException.m 47 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo
49 return [[ANTLRRuntimeException alloc] init:aReason userInfo:aUserInfo];
57 + (id) newException:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
59 return [[ANTLRRuntimeException alloc] initWithName:aName reason:aReason userInfo:aUserInfo];
65 self = [super initWithName:@"ANTLRRuntimeException" reason:@"UnknownException" userInfo:nil];
71 self = [super initWithName:(NSString *)@"ANTLRRuntimeException" reason:(NSString *)aReason userInfo:(NSDictionary *)nil];
75 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo
77 self = [super initWithName:@"ANTLRRuntimeException" reason:aReason userInfo:aUserInfo];
83 self = [super initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)nil];
87 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInf
    [all...]
ANTLRRuntimeException.h 39 + (ANTLRRuntimeException *) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
42 + (ANTLRRuntimeException *) newException:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
46 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
48 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
60 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
64 - (id)init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
73 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
77 - (id)init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
86 + (id) newException:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
90 - (id) init:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo
    [all...]
AMutableArray.m 108 userInfo:nil];
123 @throw [NSException exceptionWithName:NSInvalidArgumentException reason:@"Attempt to insert nil objectAtIndex" userInfo:nil];
126 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to insertObjectAtIndex past end" userInfo:nil];
144 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to insert removeObjectAtIndex past end" userInfo:nil];
160 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to removeLastObject from 0" userInfo:nil];
172 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to removeAllObjects from 0" userInfo:nil];
192 @throw [NSException exceptionWithName:NSRangeException reason:@"Attempt to replace object past end" userInfo:nil];
  /external/nist-sip/java/gov/nist/javax/sip/address/
Authority.java 50 /** userInfo field
52 protected UserInfo userInfo;
63 if (userInfo != null) {
64 userInfo.encode(buffer);
87 if (this.userInfo != null && otherAuth.userInfo != null) {
88 if (!this.userInfo.equals(otherAuth.userInfo)) {
104 * get the userInfo memnber
    [all...]
UserInfo.java 42 public final class UserInfo extends NetObject {
69 public UserInfo() {
82 UserInfo other = (UserInfo) obj;
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
UserManagerTest.java 23 import android.content.pm.UserInfo;
65 List<UserInfo> list = mUserManager.getUsers();
66 for (UserInfo user : list) {
78 UserInfo userInfo = createUser("Guest 1", UserInfo.FLAG_GUEST);
79 assertTrue(userInfo != null);
81 List<UserInfo> list = mUserManager.getUsers();
83 for (UserInfo user : list) {
84 if (user.id == userInfo.id && user.name.equals("Guest 1"
    [all...]
  /frameworks/base/core/java/android/os/
IUserManager.aidl 21 import android.content.pm.UserInfo;
36 UserInfo createUser(in String name, int flags);
37 UserInfo createProfileForUser(in String name, int flags, int userHandle);
43 List<UserInfo> getUsers(boolean excludeDying);
44 List<UserInfo> getProfiles(int userHandle, boolean enabledOnly);
46 UserInfo getProfileParent(int userHandle);
47 UserInfo getUserInfo(int userHandle);
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
PreBootListener.java 20 import android.content.pm.UserInfo;
73 List<UserInfo> profiles = um.getProfiles(UserHandle.USER_OWNER);
82 for (UserInfo userInfo : profiles) {
83 if (!userInfo.isManagedProfile()) {
86 pm.clearCrossProfileIntentFilters(userInfo.id);
88 pm, UserHandle.USER_OWNER, userInfo.id);
90 ComponentName profileOwner = dpm.getProfileOwnerAsUser(userInfo.id);
93 ProvisionLogger.loge("No profile owner on managed profile " + userInfo.id);
98 um.setUserRestriction(UserManager.DISALLOW_WALLPAPER, true, userInfo.getUserHandle())
    [all...]
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
DevicePolicyUtilsTest.java 21 import android.content.pm.UserInfo;
91 private static final List<UserInfo> NORMAL_USERINFO_LIST = Arrays.asList(
92 new UserInfo[]{ new UserInfo(0, "user0", 0)});
94 private static final List<UserInfo> MANAGED_USERINFO_LIST = Arrays.asList(new UserInfo[]{
95 new UserInfo(0, "user0", 0),
96 new UserInfo(10, "user10", UserInfo.FLAG_MANAGED_PROFILE)});
  /frameworks/base/core/java/android/content/pm/
UserInfo.java 28 public class UserInfo implements Parcelable {
94 public UserInfo(int id, String name, int flags) {
98 public UserInfo(int id, String name, String iconPath, int flags) {
138 public UserInfo() {
141 public UserInfo(UserInfo orig) {
160 return "UserInfo{" + id + ":" + name + ":" + Integer.toHexString(flags) + "}";
180 public static final Parcelable.Creator<UserInfo> CREATOR
181 = new Parcelable.Creator<UserInfo>() {
182 public UserInfo createFromParcel(Parcel source)
    [all...]
UserInfo.aidl 20 parcelable UserInfo;
  /frameworks/base/services/core/java/com/android/server/pm/
UserManagerService.java 29 import android.content.pm.UserInfo;
162 private final SparseArray<UserInfo> mUsers = new SparseArray<UserInfo>();
240 ArrayList<UserInfo> partials = new ArrayList<UserInfo>();
242 UserInfo ui = mUsers.valueAt(i);
248 UserInfo ui = partials.get(i);
268 public List<UserInfo> getUsers(boolean excludeDying) {
271 ArrayList<UserInfo> users = new ArrayList<UserInfo>(mUsers.size())
    [all...]
LauncherAppsService.java 30 import android.content.pm.UserInfo;
164 UserInfo callingUserInfo = mUm.getUserInfo(callingUserId);
165 UserInfo targetUserInfo = mUm.getUserInfo(targetUserId);
167 || targetUserInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_ID
182 UserInfo targetUserInfo = mUm.getUserInfo(user.getIdentifier());
347 UserInfo userInfo = mUm.getUserInfo(user.getIdentifier());
348 UserInfo listeningUserInfo = mUm.getUserInfo(listeningUser.getIdentifier());
349 if (userInfo == null || listeningUserInfo == null
350 || userInfo.profileGroupId == UserInfo.NO_PROFILE_GROUP_I
    [all...]
  /external/clang/test/Analysis/
cfref_PR2519.c 26 extern void CFNotificationCenterPostNotification(CFNotificationCenterRef center, CFStringRef name, const void *object, CFDictionaryRef userInfo, Boolean deliverImmediately);
36 CFDictionaryRef userInfo = CFDictionaryCreate(kCFAllocatorDefault, (const void **)&_key, (const void **)&_value, 1, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
41 userInfo, 0);
42 CFRelease(userInfo); // no-warning
CheckNSError.m 14 + (id)errorWithDomain:(NSString *)domain code:(NSInteger)code userInfo:(NSDictionary *)dict;
25 *error = [NSError errorWithDomain:@"domain" code:1 userInfo:0]; // expected-warning {{Potential null dereference}}
29 if (error) *error = [NSError errorWithDomain:@"domain" code:1 userInfo:0]; // no-warning
  /external/lldb/test/expression_command/call-throws/
call-throws.m 15 userInfo:nil];
  /external/clang/test/Rewriter/
rewrite-modern-throw.m 78 + (NSException *)exceptionWithName:(NSString *)name reason:(NSString *)reason userInfo:(NSDictionary *)userInfo;
88 @throw [NSException exceptionWithName: *_imp__NSInvalidArgumentException reason: [NSString stringWithFormat: @"Can't evaluate set expression; left subexpression not a set (lhs = %@ rhs = %@)", leftSet, rightSet] userInfo: 0];
  /packages/apps/Bluetooth/src/com/android/bluetooth/util/
DevicePolicyUtils.java 21 import android.content.pm.UserInfo;
36 final List<UserInfo> userInfoList = userManager.getProfiles(myUserId);
39 for (UserInfo ui : userInfoList) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
UserInfoController.java 25 import android.content.pm.UserInfo;
120 UserInfo userInfo;
122 userInfo = ActivityManagerNative.getDefault().getCurrentUser();
124 new UserHandle(userInfo.id));
132 final int userId = userInfo.id;
133 final boolean isGuest = userInfo.isGuest();
134 final String userName = userInfo.name;
  /frameworks/base/services/core/java/com/android/server/trust/
TrustManagerService.java 40 import android.content.pm.UserInfo;
183 List<UserInfo> userInfos = mUserManager.getUsers(true /* excludeDying */);
184 for (UserInfo userInfo : userInfos) {
185 updateTrust(userInfo.id, 0);
215 List<UserInfo> userInfos;
227 for (UserInfo userInfo : userInfos) {
228 if (userInfo == null || userInfo.partial || !userInfo.isEnabled(
    [all...]
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountSettings.java 34 import android.content.pm.UserInfo;
116 * The {@link UserInfo} of the profile.
118 public UserInfo userInfo;
157 final UserHandle managedProfile = mProfiles.valueAt(1).userInfo.getUserHandle();
209 intent.putExtra(EXTRA_USER, profileData.userInfo.getUserHandle());
215 final int userId = profileData.userInfo.id;
244 UserInfo userInfo = mUm.getUserInfo(UserHandle.myUserId());
245 updateProfileUi(userInfo, false /* no category needed */, preferenceScreen)
    [all...]
  /external/skia/experimental/FileReaderApp/
FileReaderWindow.mm 28 selector:@selector(redraw) userInfo:nil
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/users/
RestrictedProfileDialogFragment.java 26 import android.content.pm.UserInfo;
85 private UserInfo mRestrictedUserInfo;
97 private final AsyncTask<Void, Void, UserInfo> mAddUserAsyncTask =
98 new AsyncTask<Void, Void, UserInfo>() {
100 protected UserInfo doInBackground(Void... params) {
101 UserInfo restrictedUserInfo = mUserManager.createUser(
103 UserInfo.FLAG_RESTRICTED);
125 protected void onPostExecute(UserInfo result) {
278 UserInfo userInfo = userManager.getUserInfo(UserHandle.myUserId())
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
IntentForwarderActivity.java 29 import android.content.pm.UserInfo;
171 List<UserInfo> relatedUsers = userManager.getProfiles(UserHandle.USER_OWNER);
172 for (UserInfo userInfo : relatedUsers) {
173 if (userInfo.isManagedProfile()) return userInfo.id;
  /packages/apps/Settings/src/com/android/settings/
UserAdapter.java 21 import android.content.pm.UserInfo;
53 UserInfo userInfo = um.getUserInfo(mUserHandle.getIdentifier());
55 if (userInfo.isManagedProfile()) {
60 mName = userInfo.name;
61 final int userId = userInfo.id;

Completed in 426 milliseconds

1 2 3 4 5 6 7 8