HomeSort by relevance Sort by last modified time
    Searched defs:profileId (Results 1 - 25 of 39) sorted by null

1 2

  /cts/hostsidetests/shortcuts/hostside/src/android/content/pm/cts/shortcuthost/
ShortcutManagerMultiuserTest.java 40 final int profileId = createProfile(getPrimaryUserId());
43 installAppAsUser(TARGET_APK, profileId);
48 getDevice().startUser(profileId);
53 "test03_createShortuctsOnManagedProfile", profileId);
58 "test05_getAndLaunch_managed", profileId);
  /cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
EphemeralUserTest.java 66 int profileId = createManagedProfile(userId);
67 int flags = getUserFlags(profileId);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DataProfile.java 31 public final int profileId;
74 DataProfile(int profileId, String apn, String protocol, int authType,
80 this.profileId = profileId;
106 this(apn, apn.profileId);
109 public DataProfile(ApnSetting apn, int profileId) {
110 this(profileId, apn.apn, apn.protocol,
121 return "DataProfile=" + profileId + "/" + apn + "/" + protocol + "/" + authType
ApnSetting.java 92 public final int profileId;
124 int bearerBitmask, int profileId, boolean modemCognitive, int maxConns,
151 this.profileId = profileId;
166 apn.profileId, apn.modemCognitive, apn.maxConns, apn.waitTime, apn.maxConnsTime,
192 * <profileId>, <modemCognitive>, <maxConns>, <waitTime>, <maxConnsTime>, <mtu>,
229 int profileId = 0;
257 profileId = Integer.parseInt(a[18]);
278 bearerBitmask, profileId, modemCognitive, maxConns, waitTime, maxConnsTime, mtu,
330 sb.append(", ").append(profileId);
    [all...]
DcTracker.java     [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
AppStateAppOpsBridge.java 175 final int profileId = profile.getIdentifier();
176 entries.put(profileId, entriesForProfile);
179 profileId);
203 final int profileId = profile.getIdentifier();
204 final ArrayMap<String, PermissionState> entriesForProfile = entries.get(profileId);
210 .getPackagesHoldingPermissions(mPermissions, 0, profileId).getList();
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
Camera2SwitchPreviewTest.java 344 int profileId = camcorderProfileList[0];
345 if (!CamcorderProfile.hasProfile(cameraId, profileId) ||
346 allowedUnsupported(cameraId, profileId)) {
350 CamcorderProfile profile = CamcorderProfile.get(cameraId, profileId);
362 assertTrue("Video size " + videoSz.toString() + " for profile ID " + profileId +
365 assertTrue("Frame rate range " + fpsRange + " (for profile ID " + profileId +
432 * @param profileId a {@link CamcorderProfile} ID to check.
435 private boolean allowedUnsupported(int cameraId, int profileId) {
440 switch(profileId) {
444 return !CamcorderProfile.hasProfile(cameraId, profileId) ||
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
SecurityControllerImpl.java 153 for (int profileId : mUserManager.getProfileIdsWithDisabled(mCurrentUserId)) {
154 String name = mDevicePolicyManager.getProfileOwnerNameAsUser(profileId);
169 final int profileId = getWorkProfileUserId(mCurrentUserId);
170 if (profileId == UserHandle.USER_NULL) return null;
171 return mDevicePolicyManager.getOrganizationNameForUser(profileId);
200 final int profileId = getWorkProfileUserId(mVpnUserId);
201 if (profileId == UserHandle.USER_NULL) return null;
202 VpnConfig cfg = mCurrentVpns.get(profileId);
204 return getNameForVpnConfig(cfg, UserHandle.of(profileId));
216 for (int profileId : mUserManager.getProfileIdsWithDisabled(mVpnUserId))
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/provider/
ImportDataTask.java 132 String profileId = Long.toString(UserManagerCompat.getInstance(mContext)
139 "profileId = ? AND container = -100 AND screen = ? AND cellY = 0",
140 new String[]{profileId, Long.toString(firsetScreenId)},
159 Favorites.PROFILE_ID + " = ?", new String[]{profileId},
  /packages/apps/Settings/src/com/android/settings/
DeviceAdminSettings.java 158 final int profileId = profiles.get(i).getIdentifier();
159 mProfileOwnerComponents.put(profileId, mDPM.getProfileOwnerAsUser(profileId));
182 final int profileId = profiles.get(i).getIdentifier();
183 updateAvailableAdminsForProfile(profileId);
340 * @param profileId the profile identifier.
342 private void updateAvailableAdminsForProfile(final int profileId) {
348 List<ComponentName> activeAdminsListForProfile = mDPM.getActiveAdminsAsUser(profileId);
349 addActiveAdminsForProfile(activeAdminsListForProfile, profileId);
352 addDeviceAdminBroadcastReceiversForProfile(activeAdminsListForProfile, profileId);
    [all...]
MasterClear.java 313 final int profileId = userInfo.id;
314 final UserHandle userHandle = new UserHandle(profileId);
315 Account[] accounts = mgr.getAccountsAsUser(profileId);
323 .getAuthenticatorTypesAsUser(profileId);
TrustedCredentialsSettings.java 697 int profileId = profile.getIdentifier();
704 mKeyChainConnectionByProfileId.put(profileId, keyChainConnection);
711 aliasesByProfileId.put(profileId, aliases);
715 int profileId = profile.getIdentifier();
716 List<String> aliases = aliasesByProfileId.get(profileId);
721 profileId);
724 certHoldersByProfile.put(profileId, new ArrayList<CertHolder>(0));
736 mTab, alias, cert, profileId));
740 certHoldersByProfile.put(profileId, certHolders);
    [all...]
  /packages/apps/Settings/src/com/android/settings/location/
SettingsInjector.java 120 final int profileId = userHandle.getIdentifier();
122 pm.queryIntentServicesAsUser(intent, PackageManager.GET_META_DATA, profileId);
124 Log.d(TAG, "Found services for profile id " + profileId + ": " + resolveInfos);
142 Log.d(TAG, "Loaded settings for profile id " + profileId + ": " + settings);
231 * @param profileId Identifier of the user/profile to obtain the injected settings for or
234 public List<Preference> getInjectedSettings(Context prefContext, final int profileId) {
241 if (profileId == UserHandle.USER_CURRENT || profileId == userHandle.getIdentifier()) {
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 223 * the contact's status until they have a profileId.
423 final long profileId = lookupProfile(resolver, serverId);
424 if (profileId <= 0) {
534 final long profileId = lookupProfile(resolver, userId);
537 if (profileId > 0) {
538 values.put(StatusUpdates.DATA_ID, profileId);
626 long profileId = 0;
632 profileId = c.getLong(ProfileQuery.COLUMN_ID);
639 return profileId;
    [all...]
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnSettings.java 502 final int profileId = profile.getIdentifier();
503 final String packageName = mConnectivityManager.getAlwaysOnVpnPackageForUser(profileId);
505 result.add(new AppVpnInfo(profileId, packageName));
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.engine_2.3.0.v20130526-2122.jar 
org.eclipse.equinox.p2.garbagecollector_1.0.200.v20130327-2119.jar 
org.eclipse.equinox.p2.director.app_1.0.300.v20130327-2119.jar 
org.eclipse.equinox.p2.touchpoint.eclipse_2.1.200.v20130327-2119.jar 
  /prebuilts/misc/common/robolectric/lib/
maven-project-2.2.1.jar 
maven-settings-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-project/2.0.9/
maven-project-2.0.9.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-project/2.2.1/
maven-project-2.2.1.jar 
  /frameworks/base/services/appwidget/java/com/android/server/appwidget/
AppWidgetServiceImpl.java 468 for (int profileId : profileIds) {
469 reloadWidgetsMaskedState(profileId);
521 int profileId) {
531 if (providerUserId != profileId
683 final int profileId = profileIds[i];
684 if (mLoadedUserIds.indexOfKey(profileId) >= 0) {
698 final int profileId = profileIds[i];
699 if (profileId != LOADED_PROFILE_ID) {
700 mLoadedUserIds.put(profileId, profileId);
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
UserManagerService.java 630 int profileId = profileIds.get(i);
631 UserInfo userInfo = mUsers.get(profileId).info;
    [all...]

Completed in 3157 milliseconds

1 2