/tools/repohooks/tools/ |
D | android_test_mapping_format_unittest.py | 203 android_test_mapping_format.process_file(f.read()) 212 f.read()) 222 f.read()) 232 f.read()) 242 f.read()) 249 f.read()) 259 f.read()) 269 f.read()) 279 f.read()) 289 f.read()) [all …]
|
/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/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/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/tradefederation/core/tests/src/com/android/tradefed/util/ |
D | SizeLimitedOutputStreamTest.java | 49 int read; in testMaxFileSizeHelper() local 50 while ((read = readStream.read()) != -1) { in testMaxFileSizeHelper() 51 readData[readDataPos] = (byte)read; in testMaxFileSizeHelper()
|
/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()
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
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 | 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
|
/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 | Eocd.java | 132 long totalRecords1 = F_RECORDS_DISK.read(bytes); in Eocd() 133 long totalRecords2 = F_RECORDS_TOTAL.read(bytes); in Eocd() 134 long directorySize = F_CD_SIZE.read(bytes); in Eocd() 135 long directoryOffset = F_CD_OFFSET.read(bytes); in Eocd() 136 int commentSize = Ints.checkedCast(F_COMMENT_SIZE.read(bytes)); in Eocd()
|
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/test/kotlin/trebuchet/io/ |
D | StringStreamTest.kt | 74 val read = inputStream.read(buffer) in readFile() constant 75 if (read == -1) return null in readFile() 76 return buffer.asSlice(read) in readFile()
|
/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/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/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/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/trebuchet/core/common/src/test/kotlin/trebuchet/task/ |
D | ImportTaskTest.kt | 92 val read = inputStream.read(buffer) in <lambda>() constant 93 if (read == -1) return null in <lambda>() 94 return buffer.asSlice(read) in <lambda>()
|
/tools/asuite/atest/ |
D | asuite_metrics.py | 63 content = response.read() 75 return uuid.UUID(f.read(), version=4) 101 key = uuid.UUID(f.read(), version=4)
|
/tools/tradefederation/core/atest/ |
D | asuite_metrics.py | 69 content = response.read() 81 return uuid.UUID(f.read(), version=4) 107 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/acloud/public/ |
D | config_test.py | 119 self.config_file.read.return_value = self.USER_CONFIG 160 self.config_file.read.return_value = self.USER_CONFIG 197 self.config_file.read.return_value = self.INTERNAL_CONFIG 258 self.config_file.read.return_value = "malformed text" 266 self.config_file.read.return_value = self.INTERNAL_CONFIG 269 self.config_file.read.return_value = self.USER_CONFIG
|
/tools/tradefederation/core/common_util/com/android/tradefed/util/ |
D | StreamUtil.java | 133 while ((irChar = ir.read()) != -1) { in getStringFromStream() 155 while ((inputByte = is.read()) != -1) { in getByteArrayListFromStream() 222 while ((retrievedSize = inStream.read(buf)) != -1) { in copyStreams() 253 while ((size = inStream.read(buf)) != -1) { in copyStreamToWriter() 402 while ((size = inStream.read(buf)) >= 0) { in calculateCrc32() 445 while (input.read(buf) != -1) { in calculateMd5Digest()
|