Home
last modified time | relevance | path

Searched refs:cid (Results 1 – 19 of 19) sorted by relevance

/system/chre/apps/test/chqts/src/general_test/
Dcell_info_tdscdma.cc33 } else if (!isBoundedInt32(identity.cid, 0, 65535, INT32_MAX)) { in validateIdentity()
34 sendFatalFailureInt32("Invalid TDSCDMA Cell Identity: %d", identity.cid); in validateIdentity()
Dcell_info_wcdma.cc32 } else if (!isBoundedInt32(identity.cid, 0, 268435455, INT32_MAX)) { in validateIdentity()
33 sendFatalFailureInt32("Invalid WCDMA Cell Identity: %d", identity.cid); in validateIdentity()
Dcell_info_gsm.cc30 } else if (!isBoundedInt32(identity.cid, 0, 65535, INT32_MAX)) { in validateIdentity()
31 sendFatalFailureInt32("Invalid GSM Cell Identity: %d", identity.cid); in validateIdentity()
/system/chre/chpp/common/
Dwwan_convert.c88 out->cid = in->cid; in chppWwanConvertCellIdentityGsmFromChre()
177 out->cid = in->cid; in chppWwanConvertCellIdentityTdscdmaFromChre()
202 out->cid = in->cid; in chppWwanConvertCellIdentityWcdmaFromChre()
360 out->cid = in->cid; in chppWwanConvertCellIdentityGsmToChre()
479 out->cid = in->cid; in chppWwanConvertCellIdentityTdscdmaToChre()
514 out->cid = in->cid; in chppWwanConvertCellIdentityWcdmaToChre()
/system/extras/simpleperf/demo/SimpleperfExampleCpp/app/src/main/cpp/
Dnative-lib.cpp21 jmethodID cid = env->GetMethodID(cls, "<init>", "(Ljava/lang/String;I)V"); in ThrowErrnoException() local
22 if (cid == nullptr) { in ThrowErrnoException()
29 jthrowable obj = (jthrowable)env->NewObject(cls, cid, msg, err); in ThrowErrnoException()
/system/chre/chre_api/legacy/v1_2/chre/
Dwwan.h100 int32_t cid; member
125 int32_t cid; member
193 int32_t cid; member
/system/chre/chre_api/legacy/v1_1/chre/
Dwwan.h100 int32_t cid; member
125 int32_t cid; member
193 int32_t cid; member
/system/chre/chre_api/legacy/v1_3/chre/
Dwwan.h100 int32_t cid; member
125 int32_t cid; member
193 int32_t cid; member
/system/chre/chre_api/legacy/v1_4/chre/
Dwwan.h101 int32_t cid; member
126 int32_t cid; member
194 int32_t cid; member
/system/chre/chre_api/legacy/v1_6/chre/
Dwwan.h101 int32_t cid; member
126 int32_t cid; member
194 int32_t cid; member
/system/chre/chre_api/include/chre_api/chre/
Dwwan.h101 int32_t cid; member
126 int32_t cid; member
194 int32_t cid; member
/system/chre/chpp/include/chpp/common/
Dwwan_types.h76 int32_t cid; member
153 int32_t cid; member
173 int32_t cid; member
/system/chre/chre_api/legacy/v1_7/chre/
Dwwan.h101 int32_t cid; member
126 int32_t cid; member
194 int32_t cid; member
/system/chre/chre_api/legacy/v1_5/chre/
Dwwan.h101 int32_t cid; member
126 int32_t cid; member
194 int32_t cid; member
/system/nfc/src/include/
Dnci_defs.h120 #define NCI_DATA_PBLD_HDR(p, pbf, cid, len) \ argument
121 *(p)++ = (uint8_t)(((pbf) << NCI_PBF_SHIFT) | (cid)); \
125 #define NCI_DATA_PRS_HDR(p, pbf, cid, len) \ argument
127 (cid) = (*(p)&NCI_CID_MASK); \
/system/chre/apps/wwan_world/
Dwwan_world.cc97 LOGI(" cid %" PRId32, cell->CellInfo.gsm.cellIdentityGsm.cid); in logChreWwanInfo()
118 LOGI(" cid %" PRId32, cell->CellInfo.wcdma.cellIdentityWcdma.cid); in logChreWwanInfo()
/system/chre/platform/linux/
Dpal_wwan.cc49 cell->CellInfo.gsm.cellIdentityGsm.cid = INT32_MAX; in sendCellInfoResult()
/system/chre/chpp/test/
Dwwan_convert_test.cpp67 .cid = 012,
139 EXPECT_EQ(chpp->CellInfo.wcdma.cellIdentityWcdma.cid, in compareCellInfo()
140 chre->CellInfo.wcdma.cellIdentityWcdma.cid); in compareCellInfo()
/system/nfc/src/nfc/nfc/
Dnfc_ncif.cc1930 uint8_t *pp, cid; in nfc_ncif_proc_data() local
1942 NCI_DATA_PRS_HDR(pp, pbf, cid, len); in nfc_ncif_proc_data()
1943 p_cb = nfc_find_conn_cb_by_conn_id(cid); in nfc_ncif_proc_data()