Home
last modified time | relevance | path

Searched refs:lte (Results 1 – 4 of 4) sorted by relevance

/cts/tools/dasm/src/dasm/
DDasmCatchBuilder.java178 LabelTableEntry lte = labels_table.get(uc.from); in build() local
180 if (lte == null || lte.planted == false) in build()
182 CodeAddress from = lte.code_address; in build()
184 lte = labels_table.get(uc.to); in build()
185 if (lte == null || lte.planted == false) in build()
187 CodeAddress to = lte.code_address; in build()
197 lte = labels_table.get(branch); in build()
198 if (lte == null || lte.planted == false) in build()
202 lte.code_address.getAddress()); in build()
DDAsm.java436 LabelTableEntry lte = labels_table.get(key); in endMethod() local
437 if (lte.planted == false) { in endMethod()
507 LabelTableEntry lte = labels_table.get(name); in plantLabel() local
508 if (lte != null) { in plantLabel()
509 if (lte.planted == true) in plantLabel()
512 lte.planted = true; in plantLabel()
513 addInsn(lte.code_address); in plantLabel()
564 LabelTableEntry lte = labels_table.get(val); in addOpcode() local
565 if (lte == null) { in addOpcode()
568 lte = new LabelTableEntry(code_address, false); in addOpcode()
[all …]
/cts/tests/tests/telephony/src/android/telephony/cts/
DCellInfoTest.java262 private void verifyLteInfo(CellInfoLte lte) { in verifyLteInfo() argument
263 verifyCellConnectionStatus(lte.getCellConnectionStatus()); in verifyLteInfo()
264 verifyCellInfoLteParcelandHashcode(lte); in verifyLteInfo()
265 verifyCellIdentityLte(lte.getCellIdentity()); in verifyLteInfo()
266 verifyCellIdentityLteParcel(lte.getCellIdentity()); in verifyLteInfo()
267 verifyCellSignalStrengthLte(lte.getCellSignalStrength()); in verifyLteInfo()
268 verifyCellSignalStrengthLteParcel(lte.getCellSignalStrength()); in verifyLteInfo()
271 private void verifyCellInfoLteParcelandHashcode(CellInfoLte lte) { in verifyCellInfoLteParcelandHashcode() argument
273 lte.writeToParcel(p, 0); in verifyCellInfoLteParcelandHashcode()
277 assertTrue(lte.equals(newCi)); in verifyCellInfoLteParcelandHashcode()
[all …]
/cts/tests/tests/carrierapi/src/android/carrierapi/cts/
DNetworkScanApiTest.java243 RadioAccessSpecifier lte = new RadioAccessSpecifier( in testRequestNetworkScan() local
252 radioAccessSpecifier.add(lte); in testRequestNetworkScan()