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

1 2 3

  /frameworks/base/core/java/android/app/admin/
DevicePolicyManagerInternal.java 38 * @param profileId The profile for which the white-listed packages changed.
41 public void onCrossProfileWidgetProvidersChanged(int profileId, List<String> packages);
48 * @param profileId The profile id.
53 public abstract List<String> getCrossProfileWidgetProviders(int profileId);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DataProfile.java 29 public final int profileId;
56 DataProfile(int profileId, String apn, String protocol, int authType,
60 this.profileId = profileId;
74 this(apn.profileId, apn.apn, isRoaming? apn.protocol : apn.roamingProtocol,
88 pc.writeInt(dps[i].profileId);
105 return "DataProfile " + profileId + "/" + apn + "/" + protocol + "/" + authType
ApnSetting.java 67 public final int profileId;
93 int profileId, boolean modemCognitive, int maxConns, int waitTime, int maxConnsTime,
115 this.profileId = profileId;
148 * <profileId>, <modemCognitive>, <maxConns>, <waitTime>, <maxConnsTime>, <mtu>,
185 int profileId = 0;
217 profileId = Integer.parseInt(a[18]);
238 profileId, modemCognitive, maxConns, waitTime, maxConnsTime, mtu,
289 sb.append(", ").append(profileId);
DcAsyncChannel.java 365 * @param profileId for the conneciton
370 public void bringUp(ApnContext apnContext, int initialMaxRetry, int profileId,
377 new ConnectionParams(apnContext, initialMaxRetry, profileId,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.console_1.0.200.v20100601.jar 
org.eclipse.equinox.p2.updatechecker_1.1.101.R36x_v20100823.jar 
org.eclipse.equinox.p2.operations_2.0.0.v20100510.jar 
org.eclipse.equinox.p2.engine_2.0.0.v20100606.jar 
org.eclipse.equinox.p2.director.app_1.0.201.R36x_v20100823.jar 
org.eclipse.equinox.p2.ui.sdk_1.0.100.v20100513.jar 
org.eclipse.equinox.p2.garbagecollector_1.0.100.v20100503.jar 
  /packages/apps/Settings/src/com/android/settings/
DeviceAdminSettings.java 120 final int profileId = profiles.get(i).getIdentifier();
121 mProfileOwnerComponents.put(profileId, mDPM.getProfileOwnerAsUser(profileId));
142 final int profileId = profiles.get(i).getIdentifier();
143 updateAvailableAdminsForProfile(profileId);
376 * @param profileId the profile identifier.
378 private void updateAvailableAdminsForProfile(final int profileId) {
384 List<ComponentName> activeAdminsListForProfile = mDPM.getActiveAdminsAsUser(profileId);
385 addActiveAdminsForProfile(activeAdminsListForProfile, profileId);
388 addDeviceAdminBroadcastReceiversForProfile(activeAdminsListForProfile, profileId);
    [all...]
MasterClear.java 199 final int profileId = userInfo.id;
200 final UserHandle userHandle = new UserHandle(profileId);
201 Account[] accounts = mgr.getAccountsAsUser(profileId);
209 .getAuthenticatorTypesAsUser(profileId);
TrustedCredentialsSettings.java 447 int profileId = profile.getIdentifier();
451 mKeyChainConnectionByProfileId.put(profileId, keyChainConnection);
458 aliasesByProfileId.put(profileId, aliases);
462 int profileId = profile.getIdentifier();
463 List<ParcelableString> aliases = aliasesByProfileId.get(profileId);
467 IKeyChainService service = mKeyChainConnectionByProfileId.get(profileId)
477 mTab, alias, cert, profileId));
481 certHoldersByProfile.put(profileId, certHolders);
542 int profileId) {
543 mProfileId = profileId;
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
RecordingTest.java 248 for (int profileId : mCamcorderProfileList) {
249 if (!CamcorderProfile.hasProfile(cameraId, profileId)) {
252 CamcorderProfile profile = CamcorderProfile.get(cameraId, profileId);
254 minFpsProfileId = profileId;
258 maxFpsProfileId = profileId;
441 for (int profileId : camcorderProfileList) {
443 if (!CamcorderProfile.hasProfile(cameraId, profileId) ||
444 allowedUnsupported(cameraId, profileId)) {
448 CamcorderProfile profile = CamcorderProfile.get(cameraId, profileId);
450 assertTrue("Video size " + videoSz.toString() + " for profile ID " + profileId
    [all...]
  /packages/apps/Settings/src/com/android/settings/location/
SettingsInjector.java 119 final int profileId = userHandle.getIdentifier();
121 pm.queryIntentServicesAsUser(intent, PackageManager.GET_META_DATA, profileId);
123 Log.d(TAG, "Found services for profile id " + profileId + ": " + resolveInfos);
141 Log.d(TAG, "Loaded settings for profile id " + profileId + ": " + settings);
230 * @param profileId Identifier of the user/profile to obtain the injected settings for or
233 public List<Preference> getInjectedSettings(final int profileId) {
240 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...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
ApnSettingTest.java 62 assertEquals(a1.profileId, a2.profileId);
  /frameworks/base/services/appwidget/java/com/android/server/appwidget/
AppWidgetServiceImpl.java 414 final int profileId = profileIds[i];
415 if (mLoadedUserIds.indexOfKey(profileId) >= 0) {
429 final int profileId = profileIds[i];
430 if (profileId != LOADED_PROFILE_ID) {
431 mLoadedUserIds.put(profileId, profileId);
432 newProfileIds[newMemberIndex] = profileId;
    [all...]
  /frameworks/base/core/java/com/android/internal/appwidget/
IAppWidgetService.aidl 57 int profileId);
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
ProfileService.java 227 int profileId, int newState, int prevState) {
229 mAdapterService.onProfileConnectionStateChanged(device, profileId, newState, prevState);
AdapterService.java 192 public void onProfileConnectionStateChanged(BluetoothDevice device, int profileId, int newState, int prevState) {
195 m.arg1 = profileId;
246 private void processProfileStateChanged(BluetoothDevice device, int profileId, int newState, int prevState) {
247 if (((profileId == BluetoothProfile.A2DP) ||(profileId == BluetoothProfile.HEADSET)) &&
251 setProfileAutoConnectionPriority(device, profileId);
256 binder.sendConnectionStateChange(device, profileId, newState,prevState);
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.engine_2.3.0.v20130526-2122.jar 
  /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 
  /frameworks/base/core/java/android/appwidget/
AppWidgetManager.java     [all...]

Completed in 531 milliseconds

1 2 3