OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bsic
(Results
1 - 3
of
3
) sorted by null
/cts/tests/tests/telephony/src/android/telephony/cts/
CellInfoTest.java
143
int
bsic
= gsm.getCellIdentity().getBsic();
local
144
assertTrue("getBsic() out of range [0,63]",
bsic
>=0 &&
bsic
<=63);
/frameworks/base/telephony/java/android/telephony/
CellIdentityGsm.java
77
* @param
bsic
6-bit Base Station Identity Code
81
public CellIdentityGsm (int mcc, int mnc, int lac, int cid, int arfcn, int
bsic
) {
87
mBsic =
bsic
;
219
int
bsic
= in.readInt();
local
220
// In RIL
BSIC
is a UINT8, so 0xFF is the 'INVALID' designator
222
if (
bsic
== 0xFF)
bsic
= Integer.MAX_VALUE;
223
mBsic =
bsic
;
/hardware/ril/include/telephony/
ril.h
1272
uint8_t
bsic
;\/* 6-bit Base Station Identity Code, 0xFF if unknown *\/
member in struct:__anon35300
[
all
...]
Completed in 4859 milliseconds