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

12

/frameworks/base/telephony/java/android/telephony/
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[" +
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 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...]
/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/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);
/frameworks/opt/telephony/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 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
/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/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...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DMockStorageManager.java265 public String getSecureContainerFilesystemPath(String cid) throws RemoteException { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
H A DTelephonyMetrics.java1036 * @param cid call id
1039 public void writeRilDeactivateDataCall(int phoneId, int rilSerial, int cid, int reason) { argument
1042 deactivateDataCall.cid = cid;
1061 dataCalls[i].cid = dcsList.get(i).cid;
1313 dataCall.cid = response.cid;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java266 public void deactivateDataCall(int cid, int reason, Message result) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java267 public void deactivateDataCall(int cid, int reason, Message result) { argument
/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/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

Completed in 355 milliseconds

12