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

1 2

  /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);
DcTracker.java     [all...]
  /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.ui.sdk_1.0.100.v20100513.jar 
org.eclipse.equinox.p2.garbagecollector_1.0.100.v20100503.jar 
org.eclipse.equinox.p2.director.app_1.0.201.R36x_v20100823.jar 
org.eclipse.equinox.p2.ui.sdk.scheduler_1.0.0.v20100507-1815.jar 
  /packages/apps/Settings/src/com/android/settings/
DeviceAdminSettings.java 104 final int profileId = profiles.get(i).getIdentifier();
105 mProfileOwnerComponents.put(profileId, mDPM.getProfileOwnerAsUser(profileId));
120 final int profileId = profiles.get(i).getIdentifier();
121 updateAvailableAdminsForProfile(profileId);
346 * @param profileId the profile identifier.
348 private void updateAvailableAdminsForProfile(final int profileId) {
354 List<ComponentName> activeAdminsListForProfile = mDPM.getActiveAdminsAsUser(profileId);
355 addActiveAdminsForProfile(activeAdminsListForProfile, profileId);
358 addDeviceAdminBroadcastReceiversForProfile(activeAdminsListForProfile, profileId);
    [all...]
TrustedCredentialsSettings.java 430 int profileId = profile.getIdentifier();
434 mKeyChainConnectionByProfileId.put(profileId, keyChainConnection);
438 aliasesByProfileId.put(profileId, aliases);
442 int profileId = profile.getIdentifier();
443 List<ParcelableString> aliases = aliasesByProfileId.get(profileId);
444 IKeyChainService service = mKeyChainConnectionByProfileId.get(profileId)
454 mTab, alias, cert, profileId));
458 certHoldersByProfile.put(profileId, certHolders);
518 int profileId) {
519 mProfileId = profileId;
    [all...]
  /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/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 465 String profileId = parser.getAttributeValue(null, "profile_id");
466 if (profileId != null) {
467 map.put(Telephony.Carriers.PROFILE_ID, Integer.parseInt(profileId));
    [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 
org.eclipse.equinox.p2.garbagecollector_1.0.200.v20130327-2119.jar 
org.eclipse.equinox.p2.director.app_1.0.300.v20130819-1621.jar 
org.eclipse.equinox.p2.touchpoint.eclipse_2.1.200.v20130327-2119.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 
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 
  /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/services/devicepolicy/java/com/android/server/devicepolicy/
DevicePolicyManagerService.java     [all...]

Completed in 3959 milliseconds

1 2