/packages/modules/GeoTZ/s2storage/src/test/java/com/android/storage/s2/ |
D | S2SupportTest.java | 200 public void getS2Level() { in getS2Level() method in S2SupportTest 201 assertEquals(30, S2Support.getS2Level(0b00000001L)); in getS2Level() 202 assertThrows(IllegalArgumentException.class, () -> S2Support.getS2Level(0b00000010L)); in getS2Level() 203 assertEquals(29, S2Support.getS2Level(0b00000100L)); in getS2Level() 205 assertEquals(1, S2Support.getS2Level(0b00000100L << 56)); in getS2Level() 206 assertThrows(IllegalArgumentException.class, () -> S2Support.getS2Level(0b00001000L << 56)); in getS2Level() 207 assertEquals(0, S2Support.getS2Level(0b00010000L << 56)); in getS2Level()
|
D | SortedS2RangesTest.java | 57 assertEquals(s2Level, ranges.getS2Level()); in testCreateFromSorted()
|
/packages/services/Telephony/utils/satellite/s2storage/src/readonly/java/com/android/telephony/sats2range/read/ |
D | SuffixTableBlock.java | 20 import static com.android.storage.s2.S2Support.getS2Level; 127 if (getS2Level(cellId) != mFileFormat.getS2Level()) { in findEntryByCellId() 130 + mFileFormat.getS2Level()); in findEntryByCellId()
|
D | SatS2RangeFileReader.java | 153 int dataS2Level = mFileFormat.getS2Level(); in findEntryByCellId() 154 int searchS2Level = S2Support.getS2Level(cellId); in findEntryByCellId() 206 public int getS2Level() throws IOException { in getS2Level() method in SatS2RangeFileReader 208 return mHeaderBlock.getFileFormat().getS2Level(); in getS2Level()
|
D | SatS2RangeFileFormat.java | 186 public int getS2Level() { in getS2Level() method in SatS2RangeFileFormat 396 if (S2Support.getS2Level(cellId) != mDataS2Level) { in checkS2Level()
|
/packages/modules/GeoTZ/tzs2storage/src/readonly/java/com/android/timezone/location/storage/tzs2range/read/ |
D | SuffixTableBlock.java | 20 import static com.android.storage.s2.S2Support.getS2Level; 143 if (getS2Level(cellId) != mFileFormat.getS2Level()) { in findEntryByCellId() 146 + mFileFormat.getS2Level()); in findEntryByCellId()
|
D | TzS2RangeFileReader.java | 158 int dataS2Level = mFileFormat.getS2Level(); in findEntryByCellId() 159 int searchS2Level = S2Support.getS2Level(cellId); in findEntryByCellId() 211 public int getS2Level() throws IOException { in getS2Level() method in TzS2RangeFileReader 213 return mHeaderBlock.getFileFormat().getS2Level(); in getS2Level()
|
/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/storage/s2/ |
D | S2LevelRange.java | 75 int startS2Level = S2Support.getS2Level(startCellId); in S2LevelRange() 76 int endS2Level = S2Support.getS2Level(endCellId); in S2LevelRange() 100 public int getS2Level() { in getS2Level() method in S2LevelRange 119 long level = S2Support.getS2Level(s2CellId); in contains()
|
D | S2Support.java | 57 int level = getS2Level(cellId); in cellIdToString() 166 int level = getS2Level(cellId); in offsetCellId() 232 public static int getS2Level(long cellId) { in getS2Level() method in S2Support
|
D | SortedS2Ranges.java | 68 int currentRangeLevel = currentRange.getS2Level(); in createFromSorted() 92 public int getS2Level() { in getS2Level() method in SortedS2Ranges
|
/packages/services/Telephony/utils/satellite/s2storage/src/write/java/com/android/telephony/sats2range/write/ |
D | SatS2RangeFileWriter.java | 98 if (mFileFormat.getS2Level() != S2Support.getS2Level(startCellId)) { in collectSamePrefixRanges() 115 if (mFileFormat.getS2Level() != S2Support.getS2Level(endCellId)) { in collectSamePrefixRanges()
|
D | HeaderBlockWriter.java | 59 tos.writeUnsignedByte(mFileFormat.getS2Level()); in close()
|
/packages/modules/GeoTZ/tzs2storage/src/write/java/com/android/timezone/location/storage/tzs2range/write/ |
D | TzS2RangeFileWriter.java | 103 if (mFileFormat.getS2Level() != S2Support.getS2Level(startCellId)) { in collectSamePrefixRanges() 120 if (mFileFormat.getS2Level() != S2Support.getS2Level(endCellId)) { in collectSamePrefixRanges()
|
D | HeaderBlockWriter.java | 72 tos.writeUnsignedByte(mFileFormat.getS2Level()); in close()
|
/packages/services/Telephony/src/com/android/phone/satellite/accesscontrol/ |
D | S2RangeSatelliteOnDeviceAccessController.java | 62 int s2Level = reader.getS2Level(); in create() 82 public int getS2Level() { in getS2Level() method in S2RangeSatelliteOnDeviceAccessController
|
D | SatelliteOnDeviceAccessController.java | 67 public abstract int getS2Level(); in getS2Level() method in SatelliteOnDeviceAccessController
|
D | SatelliteAccessController.java | 541 int s2Level = satelliteOnDeviceAccessController.getS2Level(); in isS2CellFileValid() 1339 mS2Level = mSatelliteOnDeviceAccessController.getS2Level(); in initSatelliteOnDeviceAccessController()
|
/packages/modules/GeoTZ/tzs2storage/src/readonly/java/com/android/timezone/location/storage/tzs2range/ |
D | TzS2RangeFileFormat.java | 188 public int getS2Level() { in getS2Level() method in TzS2RangeFileFormat 417 if (S2Support.getS2Level(cellId) != mDataS2Level) { in checkS2Level()
|
/packages/services/Telephony/utils/satellite/tools/src/main/java/com/android/telephony/tools/sats2/ |
D | SatS2LocationLookup.java | 43 satS2RangeFileReader.getS2Level()); in main()
|
/packages/modules/GeoTZ/geotz_lookup/src/main/java/com/android/timezone/location/lookup/ |
D | S2RangeFileBasedGeoTimeZonesFinder.java | 55 int s2Level = reader.getS2Level(); in create()
|
/packages/modules/GeoTZ/tzs2storage/src/test/java/com/android/timezone/location/storage/tzs2range/ |
D | TzS2RangeFileFormatTest.java | 41 assertEquals(s2Level, tzS2RangeFileFormat.getS2Level()); in accessors()
|
/packages/services/Telephony/utils/satellite/s2storage/src/test/java/com/android/telephony/sats2range/ |
D | SatS2RangeFileFormatTest.java | 45 assertEquals(s2Level, satS2RangeFileFormat.getS2Level()); in accessors()
|
/packages/services/Telephony/tests/src/com/android/phone/satellite/accesscontrol/ |
D | S2RangeSatelliteOnDeviceAccessControllerTest.java | 83 int s2Level = accessController.getS2Level(); in testSatelliteAccessControl()
|