Home
last modified time | relevance | path

Searched refs:read (Results 1 – 25 of 170) sorted by relevance

1234567

/tools/asuite/aidegen/lib/
Dclion_project_file_gen_unittest.py105 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/
DZFileTest.java299 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 …]
DExtraFieldTest.java219 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()
DReadWithDifferentCompressionLevelsTest.java33 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()
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DCentralDirectory.java283 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 …]
DZFile.java895 public int read() throws IOException { in directOpen() method
911 public int read(@Nonnull byte[] b, int off, int len) throws IOException { in directOpen() method
1351 while ((r = is.read(chunk)) >= 0) { in writeEntry()
2027 int read = 0; in mergeFrom() local
2028 while (read < data.length) { in mergeFrom()
2029 int r = fromInput.read(data, read, data.length - read); in mergeFrom()
2031 read += r; in mergeFrom()
2369 return raf.getChannel().read(dest); in directRead()
2421 int chunkSize = fileChannel.read(dest); in directFullyRead()
DStoredEntry.java344 public byte[] read() throws IOException { in read() method in StoredEntry
357 public int read(byte[] bytes) throws IOException { in read() method in StoredEntry
363 return ByteStreams.read(is, bytes, 0, bytes.length); in read()
468 long extraLength = F_EXTRA_LENGTH.read(bytes); in readLocalHeader()
511 long sig = signatureField.read(ddBytes); in readDataDescriptorRecord()
649 byte[] rawContents = oldSource.getRawByteSource().read(); in loadSourceIntoMemory()
DEocd.java132 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()
/tools/repohooks/tools/
Dandroid_test_mapping_format_unittest.py203 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/apksig/src/main/java/com/android/apksig/internal/asn1/ber/
DInputStreamBerDataValueReader.java54 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/
DRamDisk.java60 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
DFileDisk.java110 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/apksigner/java/com/android/apksigner/
Dhelp_sign.txt55 app and can read/write persistently stored data of the
77 can also be specified; the lineage will then be read from
121 providing multiple passwords, the passwords are read from
122 the file one line at a time. Passwords are read in the
124 signer, KeyStore password is read before the key password
125 is read.
144 providing multiple passwords, the passwords are read from
145 the file one line at a time. Passwords are read in the
147 signer, KeyStore password is read before the key password
148 is read.
Dhelp_lineage.txt14 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.
Dhelp_rotate.txt14 specified; the lineage will then be read from the signed data in the APK.
73 providing multiple passwords, the passwords are read from
74 the file one line at a time. Passwords are read in the
76 signer, KeyStore password is read before the key password
77 is read.
96 providing multiple passwords, the passwords are read from
97 the file one line at a time. Passwords are read in the
99 signer, KeyStore password is read before the key password
100 is read.
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/sign/
DJarSigningTest.java66 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/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFatFileSystem.java69 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
DFat16RootDirectory.java53 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()
/tools/tradefederation/core/common_util/com/android/tradefed/util/
DStreamUtil.java133 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()
/tools/acloud/public/
Dconfig_test.py119 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/trebuchet/core/common/src/main/kotlin/trebuchet/extras/
DStreamAdapter.kt38 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/apksig/src/main/java/com/android/apksig/internal/util/
DFileChannelDataSource.java111 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/test/connectivity/acts/framework/acts/test_utils/audio_analysis_lib/
Daudio_analysis.py577 channel_results.append(THDN(signal=audio_file.read(),
582 for ch_no, channel in enumerate(audio_file.read().transpose()):
608 channel_results.append(max_THDN(signal=audio_file.read(),
615 for ch_no, channel in enumerate(audio_file.read().transpose()):
647 signal = audio_file.read()
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DSizeLimitedOutputStreamTest.java49 int read; in testMaxFileSizeHelper() local
50 while ((read = readStream.read()) != -1) { in testMaxFileSizeHelper()
51 readData[readDataPos] = (byte)read; in testMaxFileSizeHelper()
/tools/trebuchet/core/common/src/test/kotlin/trebuchet/io/
DStringStreamTest.kt74 val read = inputStream.read(buffer) in readFile() constant
75 if (read == -1) return null in readFile()
76 return buffer.asSlice(read) in readFile()

1234567