Searched refs:cid (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/base/core/java/com/android/internal/content/
H A DPackageHelper.java71 public static String createSdDir(int sizeMb, String cid, String sdEncKey, int uid, argument
80 int rc = mountService.createSecureContainer(cid, sizeMb, "ext4", sdEncKey, uid,
83 Log.e(TAG, "Failed to create secure container " + cid);
86 String cachePath = mountService.getSecureContainerPath(cid);
87 if (localLOGV) Log.i(TAG, "Created secure container " + cid +
96 public static String mountSdDir(String cid, String key, int ownerUid) { argument
98 int rc = getMountService().mountSecureContainer(cid, key, ownerUid);
100 Log.i(TAG, "Failed to mount container " + cid + " rc : " + rc);
103 return getMountService().getSecureContainerPath(cid);
110 public static boolean unMountSdDir(String cid) { argument
140 getSdDir(String cid) argument
150 getSdFilesystem(String cid) argument
160 finalizeSdDir(String cid) argument
175 destroySdDir(String cid) argument
201 isContainerMounted(String cid) argument
285 fixSdPermissions(String cid, int gid, String filename) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityWcdma.java57 * @param cid 28-bit UMTS Cell Identity
62 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) { argument
66 mCid = cid;
70 private CellIdentityWcdma(CellIdentityWcdma cid) { argument
71 mMcc = cid.mMcc;
72 mMnc = cid.mMnc;
73 mLac = cid.mLac;
74 mCid = cid.mCid;
75 mPsc = cid.mPsc;
H A DCellIdentityGsm.java54 * @param cid 16-bit GSM Cell Identity or 28-bit UMTS Cell Identity
58 public CellIdentityGsm (int mcc, int mnc, int lac, int cid) { argument
62 mCid = cid;
65 private CellIdentityGsm(CellIdentityGsm cid) { argument
66 mMcc = cid.mMcc;
67 mMnc = cid.mMnc;
68 mLac = cid.mLac;
69 mCid = cid.mCid;
H A DCellIdentityCdma.java83 private CellIdentityCdma(CellIdentityCdma cid) { argument
84 mNetworkId = cid.mNetworkId;
85 mSystemId = cid.mSystemId;
86 mBasestationId = cid.mBasestationId;
87 mLongitude = cid.mLongitude;
88 mLatitude = cid.mLatitude;
H A DCellIdentityLte.java71 private CellIdentityLte(CellIdentityLte cid) { argument
72 mMcc = cid.mMcc;
73 mMnc = cid.mMnc;
74 mCi = cid.mCi;
75 mPci = cid.mPci;
76 mTac = cid.mTac;
H A DCellInfoLte.java53 public void setCellIdentity(CellIdentityLte cid) { argument
54 if (DBG) log("setCellIdentity: " + cid);
55 mCellIdentityLte = cid;
H A DNeighboringCellInfo.java89 * Initialize the object from rssi and cid.
98 public NeighboringCellInfo(int rssi, int cid) { argument
100 mCid = cid;
236 * @deprecated cid value passed as in location parameter passed to constructor
240 public void setCid(int cid) { argument
241 mCid = cid;
H A DCellInfoCdma.java52 public void setCellIdentity(CellIdentityCdma cid) { argument
53 mCellIdentityCdma = cid;
H A DCellInfoGsm.java52 public void setCellIdentity(CellIdentityGsm cid) { argument
53 mCellIdentityGsm = cid;
H A DCellInfoWcdma.java52 public void setCellIdentity(CellIdentityWcdma cid) { argument
53 mCellIdentityWcdma = cid;
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbLocation.java62 public SmsCbLocation(String plmn, int lac, int cid) { argument
65 mCid = cid;
147 * @param cid the Cell ID to compare with
150 public boolean isInLocationArea(String plmn, int lac, int cid) { argument
159 if (mCid != -1 && mCid != cid) {
H A DCellBroadcastMessage.java134 int cid;
137 cid = cursor.getInt(cidColumn);
139 cid = -1;
142 SmsCbLocation location = new SmsCbLocation(plmn, lac, cid);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmCellBroadcastHandler.java115 int cid = -1;
123 cid = cellLocation.getCid();
134 location = new SmsCbLocation(plmn, lac, cid);
186 if (!info.matchesLocation(plmn, lac, cid)) {
239 * @param cid the current Cell ID
242 public boolean matchesLocation(String plmn, int lac, int cid) { argument
243 return mLocation.isInLocationArea(plmn, lac, cid);
H A DGsmServiceStateTracker.java337 int cid = -1;
344 cid = Integer.parseInt(states[2], 16);
350 mCellLoc.setLacAndCid(lac, cid);
621 int cid = -1;
634 cid = Integer.parseInt(states[2], 16);
669 mNewCellLoc.setLacAndCid(lac, cid);
886 int cid = -1;
888 if (loc != null) cid = loc.getCid();
893 EventLog.writeEvent(EventLogTags.GSM_RAT_SWITCHED_NEW, cid,
901 mNewSS.getRilVoiceRadioTechnology()) + " at cell " + cid);
[all...]
/frameworks/base/telephony/java/android/telephony/gsm/
H A DGsmCellLocation.java44 mCid = bundle.getInt("cid", mCid);
84 public void setLacAndCid(int lac, int cid) { argument
86 mCid = cid;
143 m.putInt("cid", mCid);
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduBody.java154 * @param cid the value of content id.
157 public PduPart getPartByContentId(String cid) { argument
158 return mPartMapByContentId.get(cid);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcController.java189 // Create hashmap of cid to DataCallResponse
193 dataCallResponseListByCid.put(dcs.cid, dcs);
212 DataConnection dc = mDcListActiveByCid.get(newState.cid);
224 if (DBG) log("onDataStateChanged: Found ConnId=" + newState.cid
H A DDataCallResponse.java42 public int cid = 0; field in class:DataCallResponse
81 .append(" cid=").append(cid)
H A DDcTracker.java1088 * @param cid Connection id provided from RIL.
1089 * @return DataConnectionAc associated with specified cid.
1091 private DcAsyncChannel findDataConnectionAcByCid(int cid) { argument
1093 if (dcac.getCidSync() == cid) {
1123 DcAsyncChannel dcac = findDataConnectionAcByCid(dataCallState.cid);
1656 int cid = getCellLocationId();
1658 cause.ordinal(), cid, TelephonyManager.getDefault().getNetworkType());
2235 int cid = -1;
2240 cid = ((GsmCellLocation)loc).getCid();
2242 cid
[all...]
H A DDataConnection.java411 response.cid = 0;
673 mCid = response.cid;
842 int cid = getCid();
843 if (VDBG) log("REQ_GET_CID cid=" + cid);
844 mAc.replyToMessage(msg, DcAsyncChannel.RSP_GET_CID, cid);
998 // Remove ourselves from cid mapping, before clearSettings
1086 // Remove ourselves from cid mapping
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java7779 String cid = getNextCodePath(packageURI.getPath(), pkgName, "/"
7781 return new AsecInstallArgs(packageURI, cid, installOnSd(flags),
8169 private boolean isAsecExternal(String cid) { argument
8170 final String asecPath = PackageHelper.getSdFilesystem(cid);
8189 String cid; field in class:PackageManagerService.AsecInstallArgs
8205 // Extract cid from fullCodePath
8209 cid = subStr1.substring(sidx+1, eidx);
8213 AsecInstallArgs(String cid, boolean isForwardLocked) { argument
8214 super(null, null, (isAsecExternal(cid) ? PackageManager.INSTALL_EXTERNAL : 0)
8217 this.cid
8221 AsecInstallArgs(Uri packageURI, String cid, boolean isExternal, boolean isForwardLocked) argument
[all...]
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java94 * @param cid the id of the secure container that should
103 public String copyResourceToContainer(final Uri packageURI, final String cid,
106 if (packageURI == null || cid == null) {
110 return copyResourceInner(packageURI, cid, key, resFileName, publicResFileName,
/frameworks/base/services/jni/
H A Dcom_android_server_location_GpsLocationProvider.cpp489 jobject obj, jint type, jint mcc, jint mnc, jint lac, jint cid)
505 location.u.cellID.cid = cid;
488 android_location_GpsLocationProvider_agps_set_reference_location_cellid(JNIEnv* env, jobject obj, jint type, jint mcc, jint mnc, jint lac, jint cid) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java261 public void deactivateDataCall(int cid, int reason, Message result) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCommandsInterface.java1311 * location information (lac and/or cid) has changed.
1541 * @param cid
1548 public void deactivateDataCall(int cid, int reason, Message result); argument

Completed in 1085 milliseconds

12