Home
last modified time | relevance | path

Searched refs:satS2RangeFileReader (Results 1 – 6 of 6) sorted by relevance

/packages/services/Telephony/utils/satellite/tools/src/test/java/com/android/telephony/tools/sats2/
DCreateSatS2FileTest.java131 SatS2RangeFileReader satS2RangeFileReader = in testCreateSatS2FileWithValidInput() local
133 if (isAllowedList != satS2RangeFileReader.isAllowedList()) { in testCreateSatS2FileWithValidInput()
135 + satS2RangeFileReader.isAllowedList() + " does not match the input " in testCreateSatS2FileWithValidInput()
141 assertNull(satS2RangeFileReader.findEntryByCellId(s2CellId)); in testCreateSatS2FileWithValidInput()
145 assertNull(satS2RangeFileReader.findEntryByCellId(s2CellId)); in testCreateSatS2FileWithValidInput()
149 assertNull(satS2RangeFileReader.findEntryByCellId(s2CellId)); in testCreateSatS2FileWithValidInput()
153 assertNull(satS2RangeFileReader.findEntryByCellId(s2CellId)); in testCreateSatS2FileWithValidInput()
157 assertNull(satS2RangeFileReader.findEntryByCellId(s2CellId)); in testCreateSatS2FileWithValidInput()
161 assertNull(satS2RangeFileReader.findEntryByCellId(s2CellId)); in testCreateSatS2FileWithValidInput()
/packages/services/Telephony/utils/satellite/s2storage/src/test/java/com/android/telephony/sats2range/
DSatS2RangeFileReaderTest.java65 try (SatS2RangeFileReader satS2RangeFileReader = SatS2RangeFileReader.open(file)) { in findEntryByCellId() argument
66 assertEquals(isAllowedList, satS2RangeFileReader.isAllowedList()); in findEntryByCellId()
68 S2LevelRange range1 = satS2RangeFileReader.findEntryByCellId( in findEntryByCellId()
72 S2LevelRange range2 = satS2RangeFileReader.findEntryByCellId( in findEntryByCellId()
76 S2LevelRange range3 = satS2RangeFileReader.findEntryByCellId( in findEntryByCellId()
/packages/services/Telephony/utils/satellite/tools/src/main/java/com/android/telephony/tools/sats2/
DSatS2FileCreator.java89 try (SatS2RangeFileReader satS2RangeFileReader = in create() argument
91 if (isAllowedList != satS2RangeFileReader.isAllowedList()) { in create()
93 + satS2RangeFileReader.isAllowedList() + " does not match the input " in create()
99 if (satS2RangeFileReader.findEntryByCellId(s2CellId.id()) == null) { in create()
109 && satS2RangeFileReader.findEntryByCellId(prevCell.id()) != null) { in create()
121 && satS2RangeFileReader.findEntryByCellId(nextCell.id()) != null) { in create()
DSatS2LocationLookup.java40 try (SatS2RangeFileReader satS2RangeFileReader = in main() argument
43 satS2RangeFileReader.getS2Level()); in main()
45 if (satS2RangeFileReader.findEntryByCellId(s2CellId.id()) == null) { in main()
/packages/services/Telephony/utils/satellite/s2storage/src/readonly/java/com/android/telephony/sats2range/read/
DSatS2RangeFileReader.java59 SatS2RangeFileReader satS2RangeFileReader = new SatS2RangeFileReader(blockFileReader); in open() local
60 satS2RangeFileReader.initialize(); in open()
61 return satS2RangeFileReader; in open()
/packages/services/Telephony/src/com/android/phone/satellite/accesscontrol/
DS2RangeSatelliteOnDeviceAccessController.java44 @NonNull SatS2RangeFileReader satS2RangeFileReader, int s2Level) { in S2RangeSatelliteOnDeviceAccessController()
45 mSatS2RangeFileReader = Objects.requireNonNull(satS2RangeFileReader); in S2RangeSatelliteOnDeviceAccessController()