/tools/repohooks/tools/ |
D | android_test_mapping_format_unittest.py | 204 android_test_mapping_format.process_file(file.read()) 213 file.read()) 223 file.read()) 233 file.read()) 243 file.read()) 250 file.read()) 260 file.read()) 270 file.read()) 280 file.read()) 290 file.read()) [all …]
|
/tools/apksig/src/main/java/com/android/apksig/internal/asn1/ber/ |
D | InputStreamBerDataValueReader.java | 54 int firstIdentifierByte = in.read(); in readDataValue() 61 int firstLengthByte = in.read(); in readDataValue() 121 b = in.read(); in readHighTagNumber() 148 int b = in.read(); in readLongFormLength() 182 int b = in.read(); in skipPrimitiveIndefiniteLengthContents() 250 public int read() throws IOException { in read() method in InputStreamBerDataValueReader.RecordingInputStream 251 int b = mIn.read(); in read() 259 public int read(byte[] b) throws IOException { in read() method in InputStreamBerDataValueReader.RecordingInputStream 260 int len = mIn.read(b); in read() 268 public int read(byte[] b, int off, int len) throws IOException { in read() method in InputStreamBerDataValueReader.RecordingInputStream [all …]
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/ |
D | RamDisk.java | 60 int read = zis.read(buffer); in readGzipped() local 63 while (read >= 0) { in readGzipped() 64 total += read; in readGzipped() 65 bos.write(buffer, 0, read); in readGzipped() 66 read = zis.read(buffer); in readGzipped() 116 public void read(long devOffset, ByteBuffer dest) throws IOException { in read() method in RamDisk
|
D | FileDisk.java | 110 public void read(long devOffset, ByteBuffer dest) throws IOException { in read() method in FileDisk 118 final int read = fc.read(dest, devOffset); in read() local 119 if (read < 0) throw new IOException(); in read() 120 toRead -= read; in read() 121 devOffset += read; in read()
|
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/ |
D | CentralDirectory.java | 283 long madeBy = F_MADE_BY.read(bytes); in readEntry() 285 long versionNeededToExtract = F_VERSION_EXTRACT.read(bytes); in readEntry() 291 long gpBit = F_GP_BIT.read(bytes); in readEntry() 294 long methodCode = F_METHOD.read(bytes); in readEntry() 306 lastModTime = F_LAST_MOD_TIME.read(bytes); in readEntry() 307 lastModDate = F_LAST_MOD_DATE.read(bytes); in readEntry() 310 long crc32 = F_CRC32.read(bytes); in readEntry() 311 long compressedSize = F_COMPRESSED_SIZE.read(bytes); in readEntry() 312 long uncompressedSize = F_UNCOMPRESSED_SIZE.read(bytes); in readEntry() 313 int fileNameLength = Ints.checkedCast(F_FILE_NAME_LENGTH.read(bytes)); in readEntry() [all …]
|
D | LazyDelegateByteSource.java | 128 public byte[] read() throws IOException { in read() method in LazyDelegateByteSource 129 return get().read(); in read() 133 public <T> T read(@Nonnull ByteProcessor<T> processor) throws IOException { in read() method in LazyDelegateByteSource 134 return get().read(processor); in read()
|
/tools/trebuchet/core/common/src/main/kotlin/trebuchet/extras/ |
D | StreamAdapter.kt | 38 val read = inputStream.read(buffer) in next() constant 39 if (read == -1) { in next() 43 totalRead += read in next() 45 return DataSlice(buffer, 0, read) in next()
|
/tools/asuite/aidegen/lib/ |
D | clion_project_file_gen_unittest.py | 105 content = hfile.read() 131 content = hfile.read() 148 content = hfile.read() 164 content = hfile.read() 183 content = hfile.read() 235 content = hfile.read() 247 content = hfile.read() 259 content = hfile.read() 284 content = hfile.read() 300 content = hfile.read() [all …]
|
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/ |
D | ReadWithDifferentCompressionLevelsTest.java | 33 try (ZFile read = new ZFile(l9File, new ZFileOptions())) { in readL9() argument 34 assertNotNull(read.get("text-files/rfc2460.txt")); in readL9() 43 try (ZFile read = new ZFile(l1File, new ZFileOptions())) { in readL1() argument 44 assertNotNull(read.get("text-files/rfc2460.txt")); in readL1()
|
D | ExtraFieldTest.java | 219 assertArrayEquals(new byte[] { 0, 1, 2 }, before.read()); in addExtraFieldToExistingEntry() 223 assertArrayEquals(new byte[] { 3, 4, 5 }, extra.read()); in addExtraFieldToExistingEntry() 227 assertArrayEquals(new byte[] { 6, 7, 8 }, after.read()); in addExtraFieldToExistingEntry() 267 assertArrayEquals(new byte[] { 0, 1, 2 }, before.read()); in removeExtraFieldFromExistingEntry() 271 assertArrayEquals(new byte[] { 3, 4, 5 }, extra.read()); in removeExtraFieldFromExistingEntry() 275 assertArrayEquals(new byte[] { 6, 7, 8 }, after.read()); in removeExtraFieldFromExistingEntry() 315 assertArrayEquals(new byte[] { 0, 1, 2 }, before.read()); in updateExtraFieldOfExistingEntry() 319 assertArrayEquals(new byte[] { 3, 4, 5 }, extra.read()); in updateExtraFieldOfExistingEntry() 323 assertArrayEquals(new byte[] { 6, 7, 8 }, after.read()); in updateExtraFieldOfExistingEntry()
|
D | ZFileTest.java | 299 assertEquals(0, is.read()); 300 assertEquals(1, is.read()); 301 assertEquals(-1, is.read()); 329 assertArrayEquals(new byte[] { 6, 7, 8 }, file2.read()); 338 assertArrayEquals(new byte[] { 11, 12 }, file2.read()); 344 assertArrayEquals(new byte[] { 11, 12 }, file2.read()); 369 assertArrayEquals(new byte[]{9, 0, 1, 2, 3, 4}, file3.read()); 379 assertArrayEquals(new byte[]{11, 12,}, file3.read()); 385 assertArrayEquals(new byte[]{11, 12,}, file3.read()); 412 assertArrayEquals(new byte[]{1, 2, 3, 4, 5}, file1.read()); [all …]
|
D | ZFileSortTest.java | 91 assertArrayEquals(new byte[] { 1, 2, 3 }, mMaryEntry.read()); in readEntries() 96 assertArrayEquals(new byte[] { 4, 5 }, mAndrewEntry.read()); in readEntries() 101 assertArrayEquals(new byte[] { 6, 7, 8, 9 }, mBethEntry.read()); in readEntries() 106 assertArrayEquals(new byte[] { 10 }, mPeterEntry.read()); in readEntries()
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
D | FatFileSystem.java | 69 this.bs = BootSector.read(device); in FatFileSystem() 76 this.fat = Fat.read(bs, 0); in FatFileSystem() 80 final Fat tmpFat = Fat.read(bs, i); in FatFileSystem() 92 this.fsiSector = FsInfoSector.read(f32bs); in FatFileSystem() 101 Fat16RootDirectory.read((Fat16BootSector) bs,readOnly); in FatFileSystem() 120 public static FatFileSystem read(BlockDevice device, boolean readOnly) in read() method in FatFileSystem
|
D | Fat16RootDirectory.java | 53 public static Fat16RootDirectory read( in read() method in Fat16RootDirectory 57 result.read(); in read() 79 protected void read(ByteBuffer data) throws IOException { in read() method in Fat16RootDirectory 80 this.device.read(deviceOffset, data); in read()
|
D | AbstractDirectory.java | 77 protected abstract void read(ByteBuffer data) throws IOException; in read() method in AbstractDirectory 244 protected final void read() throws IOException { in read() method in AbstractDirectory 248 read(data); in read() 253 FatDirectoryEntry.read(data, isReadOnly()); in read()
|
/tools/apksig/src/main/java/com/android/apksig/internal/util/ |
D | FileChannelDataSource.java | 111 int read = mChannel.read(buf); in feed() local 112 if (read < 0) { in feed() 115 chunkRemaining -= read; in feed() 148 chunkSize = mChannel.read(dest); in copyTo()
|
/tools/trebuchet/trebuchet/viewer/src/main/kotlin/traceviewer/ui/ |
D | TraceViewerWindow.kt | 75 val read = stream.read(buffer) in <lambda>() constant 76 if (read == -1) return null in <lambda>() 77 return buffer.asSlice(read) in <lambda>()
|
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/utils/ |
D | CloseableDelegateByteSource.java | 134 public byte[] read() throws IOException { in read() method in CloseableDelegateByteSource 135 return get().read(); in read() 139 public <T> T read(@Nonnull ByteProcessor<T> processor) throws IOException { in read() method in CloseableDelegateByteSource 140 return get().read(processor); in read()
|
/tools/acloud/public/ |
D | config_test.py | 123 self.config_file.read.return_value = self.INTERNAL_CONFIG 126 self.config_file.read.return_value = self.USER_CONFIG 134 self.config_file.read.return_value = self.USER_CONFIG 176 self.config_file.read.return_value = self.USER_CONFIG 213 self.config_file.read.return_value = self.INTERNAL_CONFIG 275 self.config_file.read.return_value = "malformed text"
|
/tools/test/openhst/ |
D | stress_test_common.py | 49 return open(path, "rb").read() 53 return open(resource_name, "rb").read() 55 "rb").read()
|
/tools/asuite/atest/ |
D | asuite_metrics.py | 67 content = response.read() 79 return uuid.UUID(f.read(), version=4) 105 key = uuid.UUID(f.read(), version=4)
|
/tools/test/connectivity/acts/framework/acts/controllers/attenuator_lib/minicircuits/ |
D | http.py | 62 config_str = att_req.read().decode('utf-8') 118 att_resp = att_req.read().decode('utf-8') 144 att_resp = att_req.read().decode('utf-8')
|
/tools/metalava/src/main/resources/ |
D | version.properties | 3 # This file is read by gradle build scripts, but also packaged with metalava 4 # as a resource for the Version classes to read.
|
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/sign/ |
D | JarSigningTest.java | 66 Manifest manifest = new Manifest(new ByteArrayInputStream(manifestEntry.read())); in signEmptyJar() 95 Manifest manifest = new Manifest(new ByteArrayInputStream(manifestEntry.read())); in signJarWithPrexistingSimpleTextFilePre18() 109 Manifest signature = new Manifest(new ByteArrayInputStream(signatureEntry.read())); in signJarWithPrexistingSimpleTextFilePre18() 114 byte[] manifestTextBytes = manifestEntry.read(); in signJarWithPrexistingSimpleTextFilePre18() 152 Manifest manifest = new Manifest(new ByteArrayInputStream(manifestEntry.read())); in signJarWithPrexistingSimpleTextFilePos18() 167 Manifest signature = new Manifest(new ByteArrayInputStream(signatureEntry.read())); in signJarWithPrexistingSimpleTextFilePos18() 172 byte[] manifestTextBytes = manifestEntry.read(); in signJarWithPrexistingSimpleTextFilePos18()
|
/tools/apksig/src/apksigner/java/com/android/apksigner/ |
D | help_lineage.txt | 14 specified; the lineage will then be read from the signed data in the APK. 70 providing multiple passwords, the passwords are read from 71 the file one line at a time. Passwords are read in the 73 signer, KeyStore password is read before the key password 74 is read. 93 providing multiple passwords, the passwords are read from 94 the file one line at a time. Passwords are read in the 96 signer, KeyStore password is read before the key password 97 is read.
|