HomeSort by relevance Sort by last modified time
    Searched refs:userInfo (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /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...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
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...]
ArrayIterator.m 64 userInfo:nil];
87 userInfo:nil];
104 userInfo:nil];
ANTLRRecognitionException.h 57 - (id) initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
  /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...]
  /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
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRuntimeException.h 42 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason userInfo:aUserInfo;
48 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRuntimeException.h 42 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason userInfo:aUserInfo;
48 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRuntimeException.h 42 + (ANTLRRuntimeException *) newANTLRRuntimeException:(NSString *)aName reason:(NSString *)aReason userInfo:aUserInfo;
48 - (id)initWithName:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
  /libcore/luni/src/main/java/java/net/
URI.java 184 private transient String userInfo;
235 public URI(String scheme, String userInfo, String host, int port, String path, String query,
237 if (scheme == null && userInfo == null && host == null && path == null
253 if (userInfo != null || host != null || port != -1) {
257 if (userInfo != null) {
258 USER_INFO_ENCODER.appendEncoded(uri, userInfo);
499 // fill in the userInfo, host and port fields
500 userInfo = tempUserInfo;
506 private void validateUserInfo(String uri, String userInfo, int index)
508 for (int i = 0; i < userInfo.length(); i++)
    [all...]
URLStreamHandler.java 95 String userInfo;
109 userInfo = spec.substring(authorityStart, userInfoEnd);
112 userInfo = null;
148 userInfo = url.getUserInfo();
194 setURL(url, url.getProtocol(), host, port, authority, userInfo, path, query, ref);
244 String authority, String userInfo, String path, String query,
249 u.set(protocol, host, port, authority, userInfo, path, query, ref);
URL.java 91 private transient String userInfo;
285 userInfo = host.substring(0, index);
288 userInfo = null;
549 userInfo = authority.substring(0, index);
597 return userInfo;
663 protected void set(String protocol, String host, int port, String authority, String userInfo,
671 this.userInfo = userInfo;
  /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...]
  /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;
MasterClear.java 27 import android.content.pm.UserInfo;
202 final List<UserInfo> profiles = um.getProfiles(UserHandle.myUserId());
212 final UserInfo userInfo = profiles.get(profileIndex);
213 final int profileId = userInfo.id;
228 titleText.setText(userInfo.isManagedProfile() ? R.string.category_work
  /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/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/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...]
  /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/users/
UserDialogs.java 25 import android.content.pm.UserInfo;
54 UserInfo userInfo = um.getUserInfo(removingUserId);
61 } else if (userInfo.isRestricted()) {
64 } else if (userInfo.isManagedProfile()) {
  /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/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...]
  /hardware/ti/omap3/dspbridge/libbridge/
DSPStrm.c 118 struct DSP_STREAMINFO userInfo;
141 strmInfo.pUser = &userInfo;
195 struct DSP_STREAMINFO userInfo;
209 strmInfo.pUser = &userInfo;
283 struct DSP_STREAMINFO userInfo;
304 strmInfo.pUser = &userInfo; /* need valid user info ptr */
  /libcore/luni/src/test/java/libcore/java/net/
OldURLStreamHandlerTest.java 226 String userInfo,
231 userInfo, path, query, ref);

Completed in 639 milliseconds

1 2 3 4