Searched defs:cid (Results 1 - 25 of 31) sorted by path

12

/frameworks/base/core/java/com/android/internal/content/
H A DPackageHelper.java93 public static String createSdDir(long sizeBytes, String cid, String sdEncKey, int uid, argument
103 int rc = storageManager.createSecureContainer(cid, sizeMb, "ext4", sdEncKey, uid,
106 Log.e(TAG, "Failed to create secure container " + cid);
109 String cachePath = storageManager.getSecureContainerPath(cid);
110 if (localLOGV) Log.i(TAG, "Created secure container " + cid +
119 public static boolean resizeSdDir(long sizeBytes, String cid, String sdEncKey) { argument
124 int rc = storageManager.resizeSecureContainer(cid, sizeMb, sdEncKey);
131 Log.e(TAG, "Failed to create secure container " + cid);
135 public static String mountSdDir(String cid, String key, int ownerUid) { argument
136 return mountSdDir(cid, ke
139 mountSdDir(String cid, String key, int ownerUid, boolean readOnly) argument
153 unMountSdDir(String cid) argument
183 getSdDir(String cid) argument
193 getSdFilesystem(String cid) argument
203 finalizeSdDir(String cid) argument
218 destroySdDir(String cid) argument
244 isContainerMounted(String cid) argument
332 fixSdPermissions(String cid, int gid, String filename) argument
[all...]
/frameworks/base/services/core/java/com/android/server/location/
H A DGnssLocationProvider.java2551 int lac, int cid);
2550 native_agps_set_ref_location_cellid(int type, int mcc, int mnc, int lac, int cid) argument
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerSession.java1049 private static void resizeContainer(String cid, long targetSize) argument
1051 String path = PackageHelper.getSdDir(cid);
1054 "Failed to find mounted " + cid);
1064 if (!PackageHelper.unMountSdDir(cid)) {
1066 "Failed to unmount " + cid + " before resize");
1069 if (!PackageHelper.resizeSdDir(targetSize, cid,
1072 "Failed to resize " + cid + " to " + targetSize + " bytes");
1075 path = PackageHelper.mountSdDir(cid, PackageManagerService.getEncryptKey(),
1079 "Failed to mount " + cid + " after resize");
1083 private void finalizeAndFixContainer(String cid) throw argument
[all...]
H A DPackageManagerService.java15453 final String cid; field in class:PackageManagerService.OriginInfo
15456 * Flag indicating that {@link #file} or {@link #cid} has already been
15463 * Flag indicating that {@link #file} or {@link #cid} is an already
15487 static OriginInfo fromStagedContainer(String cid) { argument
15488 return new OriginInfo(null, cid, true, false);
15491 private OriginInfo(File file, String cid, boolean staged, boolean existing) { argument
15493 this.cid = cid;
15497 if (cid != null) {
15498 resolvedPath = PackageHelper.getSdDir(cid);
16382 isAsecExternal(String cid) argument
16416 String cid; field in class:PackageManagerService.AsecInstallArgs
16450 AsecInstallArgs(String cid, String[] instructionSets, boolean isForwardLocked) argument
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_location_GnssLocationProvider.cpp1319 JNIEnv* /* env */, jobject /* obj */, jint type, jint mcc, jint mnc, jint lac, jint cid) {
1334 location.cellID.cid = cid;
1318 android_location_GnssLocationProvider_agps_set_reference_location_cellid( JNIEnv* , jobject , jint type, jint mcc, jint mnc, jint lac, jint cid) argument
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DMockStorageManager.java265 public String getSecureContainerFilesystemPath(String cid) throws RemoteException { argument
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityCdma.java85 private CellIdentityCdma(CellIdentityCdma cid) { argument
86 mNetworkId = cid.mNetworkId;
87 mSystemId = cid.mSystemId;
88 mBasestationId = cid.mBasestationId;
89 mLongitude = cid.mLongitude;
90 mLatitude = cid.mLatitude;
H A DCellIdentityGsm.java62 * @param cid 16-bit GSM Cell Identity or 28-bit UMTS Cell Identity
66 public CellIdentityGsm (int mcc, int mnc, int lac, int cid) { argument
67 this(mcc, mnc, lac, cid, Integer.MAX_VALUE, Integer.MAX_VALUE);
75 * @param cid 16-bit GSM Cell Identity or 28-bit UMTS Cell Identity
81 public CellIdentityGsm (int mcc, int mnc, int lac, int cid, int arfcn, int bsic) { argument
85 mCid = cid;
90 private CellIdentityGsm(CellIdentityGsm cid) { argument
91 mMcc = cid.mMcc;
92 mMnc = cid.mMnc;
93 mLac = cid
[all...]
H A DCellIdentityLte.java92 private CellIdentityLte(CellIdentityLte cid) { argument
93 mMcc = cid.mMcc;
94 mMnc = cid.mMnc;
95 mCi = cid.mCi;
96 mPci = cid.mPci;
97 mTac = cid.mTac;
98 mEarfcn = cid.mEarfcn;
H A DCellIdentityWcdma.java62 * @param cid 28-bit UMTS Cell Identity
67 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) { argument
68 this(mcc, mnc, lac, cid, psc, Integer.MAX_VALUE);
76 * @param cid 28-bit UMTS Cell Identity
82 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc, int uarfcn) { argument
86 mCid = cid;
91 private CellIdentityWcdma(CellIdentityWcdma cid) { argument
92 mMcc = cid.mMcc;
93 mMnc = cid.mMnc;
94 mLac = cid
[all...]
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 DCellInfoLte.java53 public void setCellIdentity(CellIdentityLte cid) { argument
54 if (DBG) log("setCellIdentity: " + cid);
55 mCellIdentityLte = cid;
H A DCellInfoWcdma.java52 public void setCellIdentity(CellIdentityWcdma cid) { argument
53 mCellIdentityWcdma = 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 DPcoData.java31 public final int cid; field in class:PcoData
36 public PcoData(int cid, String bearerProto, int pcoId, byte[]contents) { argument
37 this.cid = cid;
44 cid = in.readInt();
54 out.writeInt(cid);
84 return "PcoData(" + cid + ", " + bearerProto + ", " + pcoId + ", contents[" +
/frameworks/base/telephony/java/android/telephony/gsm/
H A DGsmCellLocation.java44 mCid = bundle.getInt("cid", -1);
85 public void setLacAndCid(int lac, int cid) { argument
87 mCid = cid;
144 m.putInt("cid", mCid);
/frameworks/base/telephony/java/com/android/internal/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) {
/frameworks/native/libs/vr/libvrflinger/
H A Dvsync_service.h39 VSyncChannel(pdx::Service& service, int pid, int cid) argument
40 : service_(service), pid_(pid), cid_(cid) {}
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCommandsInterface.java1397 * location information (lac and/or cid) has changed.
1622 * @param cid
1629 public void deactivateDataCall(int cid, int reason, Message result); argument
H A DRIL.java1319 dcResult.cid,
1623 public void deactivateDataCall(int cid, int reason, Message result) { argument
1631 + requestToString(rr.mRequest) + " cid = " + cid + " reason = " + reason);
1635 radioProxy.deactivateDataCall(rr.mSerial, cid, (reason == 0) ? false : true);
1637 cid, reason);
4850 p.writeInt(cellInfoGsm.cellIdentityGsm.cid);
4896 p.writeInt(cellInfoWcdma.cellIdentityWcdma.cid);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataCallResponse.java41 public final int cid; field in class:DataCallResponse
75 public DataCallResponse(int status, int suggestedRetryTime, int cid, int active, String type, argument
80 this.cid = cid;
100 .append(" cid=").append(cid)
H A DDcController.java142 public DataConnection getActiveDcByCid(int cid) { argument
143 return mDcListActiveByCid.get(cid);
224 // Create hashmap of cid to DataCallResponse
228 dataCallResponseListByCid.put(dcs.cid, dcs);
251 DataConnection dc = mDcListActiveByCid.get(newState.cid);
263 if (DBG) log("onDataStateChanged: Found ConnId=" + newState.cid
H A DDcTracker.java2292 * @param cid Connection id provided from RIL.
2293 * @return DataConnectionAc associated with specified cid.
2295 private DcAsyncChannel findDataConnectionAcByCid(int cid) { argument
2297 if (dcac.getCidSync() == cid) {
3108 int cid = getCellLocationId();
3110 cause.ordinal(), cid, TelephonyManager.getDefault().getNetworkType());
4130 int cid = -1;
4135 cid = ((GsmCellLocation)loc).getCid();
4137 cid = ((CdmaCellLocation)loc).getBaseStationId();
4140 return cid;
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmCellBroadcastHandler.java112 int cid = -1;
120 cid = cellLocation.getCid();
131 location = new SmsCbLocation(plmn, lac, cid);
183 if (!info.matchesLocation(plmn, lac, cid)) {
236 * @param cid the current Cell ID
239 public boolean matchesLocation(String plmn, int lac, int cid) { argument
240 return mLocation.isInLocationArea(plmn, lac, cid);

Completed in 410 milliseconds

12