HomeSort by relevance Sort by last modified time
    Searched defs:read (Results 126 - 150 of 3357) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
af_vfs.h 39 ssize_t (*read) (AFvirtualfile *vfile, void *data, size_t nbytes); member in struct:_AFvirtualfile
  /prebuilts/gdb/darwin-x86/lib/python2.7/
chunk.py 1 """Simple class to read IFF chunks.
22 the start of each chunk and read from the instance until it reaches
35 data = chunk.read(nbytes)
41 read, close, seek, tell, isatty.
61 self.chunkname = file.read(4)
65 self.chunksize = struct.unpack(strflag+'L', file.read(4))[0]
120 def read(self, size=-1): member in class:Chunk
121 """Read at most size bytes from the chunk.
122 If size is omitted or negative, read until the end
134 data = self.file.read(size
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
chunk.py 1 """Simple class to read IFF chunks.
22 the start of each chunk and read from the instance until it reaches
35 data = chunk.read(nbytes)
41 read, close, seek, tell, isatty.
61 self.chunkname = file.read(4)
65 self.chunksize = struct.unpack(strflag+'L', file.read(4))[0]
120 def read(self, size=-1): member in class:Chunk
121 """Read at most size bytes from the chunk.
122 If size is omitted or negative, read until the end
134 data = self.file.read(size
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
stubs2.go 14 func read(fd int32, p unsafe.Pointer, n int32) int32 func
  /prebuilts/go/linux-x86/src/runtime/
stubs2.go 14 func read(fd int32, p unsafe.Pointer, n int32) int32 func
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
chunk.py 1 """Simple class to read IFF chunks.
22 the start of each chunk and read from the instance until it reaches
35 data = chunk.read(nbytes)
41 read, close, seek, tell, isatty.
61 self.chunkname = file.read(4)
65 self.chunksize = struct.unpack(strflag+'L', file.read(4))[0]
120 def read(self, size=-1): member in class:Chunk
121 """Read at most size bytes from the chunk.
122 If size is omitted or negative, read until the end
134 data = self.file.read(size
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
chunk.py 1 """Simple class to read IFF chunks.
22 the start of each chunk and read from the instance until it reaches
35 data = chunk.read(nbytes)
41 read, close, seek, tell, isatty.
61 self.chunkname = file.read(4)
65 self.chunksize = struct.unpack(strflag+'L', file.read(4))[0]
120 def read(self, size=-1): member in class:Chunk
121 """Read at most size bytes from the chunk.
122 If size is omitted or negative, read until the end
134 data = self.file.read(size
    [all...]
  /system/core/libmemunreachable/
ProcessMappings.h 27 bool read; member in struct:android::Mapping
  /system/media/audio_utils/include/audio_utils/
echo_reference.h 25 /** Buffer descriptor used by read() and write() methods, including the time stamp and delay. */
40 * when used for EchoReference::read():
51 int (*read)(struct echo_reference_itfe *echo_reference, struct echo_reference_buffer *buffer); member in struct:echo_reference_itfe
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
FsFile.java 54 * first byte read will be put into the buffer at it's
55 * {@link ByteBuffer#position() position}, and the number of bytes read
59 * @param dest the destination buffer where to put the bytes that were read
60 * @throws IOException on read error
62 public void read(long offset, ByteBuffer dest) throws IOException; method in interface:FsFile
66 * {@code ByteBuffer}. This method will read the buffer's
72 * @param src the source buffer to read the data from
73 * @throws ReadOnlyException if the file is read-only
  /external/capstone/bindings/java/capstone/
Mips.java 41 public void read() { method in class:Mips.Operand
42 super.read();
67 public void read() { method in class:Mips.UnionOpInfo
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat16RootDirectory.java 48 * @param bs the boot sector that describes the root directory to read
49 * @param readOnly if the directory shold be created read-only
50 * @return the directory that was read
51 * @throws IOException on read error
53 public static Fat16RootDirectory read( method in class:Fat16RootDirectory
57 result.read();
64 * read-write mode.
79 protected void read(ByteBuffer data) throws IOException { method in class:Fat16RootDirectory
80 this.device.read(deviceOffset, data);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
BufferedInputStreamTest.java 97 str.read();
110 str.read();
121 // Ensure buffer gets filled by evaluating one read
122 is.read();
126 // Read the remaining buffered characters, no IOException should
129 is.read();
131 // is.read should now throw an exception because it will have to
133 is.read();
134 fail("Exception should have been triggered by read()");
198 public int read() {
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldReaderTest.java 37 assertEquals("Wrong return value!", 4, simple.read(buf));
39 assertEquals("Wrong stuff read!", "Bla ", String.valueOf(buf));
40 simple.read(buf);
42 assertEquals("Wrong stuff read!", "bla,", String.valueOf(buf));
45 simple.read(buf);
55 assertEquals("Wrong return value!", 4, simple.read(buf));
56 assertEquals("Wrong stuff read!", "Bla ", new String(buf));
57 simple.read(buf);
58 assertEquals("Wrong stuff read!", "bla,", new String(buf));
61 simple.read(buf)
116 @Override public int read(char[] buf, int offset, int count) { method in class:OldReaderTest.MockReader
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
EncodedAnnotation.java 27 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedAnnotation
33 (elements[i] = new AnnotationElement()).read(file);
EncodedCatchHandler.java 27 public void read(DexRandomAccessFile file) throws IOException { method in class:EncodedCatchHandler
33 (handlers[i] = new EncodedTypeAddrPair()).read(file);
RawDexObject.java 22 * Base class for any data structure that we may read or write from a DEX file.
30 public void read(DexRandomAccessFile file) throws IOException; method in interface:RawDexObject
TypeList.java 26 public void read(DexRandomAccessFile file) throws IOException { method in class:TypeList
32 (list[i] = new TypeItem()).read(file);
  /bionic/libc/include/bits/fortify/
unistd.h 147 ssize_t read(int fd, void* const __pass_object_size0 buf, size_t count)
149 __error_if_overflows_ssizet(count, read)
150 __error_if_overflows_objectsize(count, __bos0(buf), read) {
154 return __call_bypassing_fortify(read)(fd, buf, count);
213 ssize_t __read_real(int, void*, size_t) __RENAME(read); variable
227 __errordecl(__read_dest_size_error, "read called with size bigger than destination");
228 __errordecl(__read_count_toobig_error, "read called with count > SSIZE_MAX");
355 ssize_t read(int fd, void* buf, size_t count) { function
  /cts/hostsidetests/appsecurity/test-apps/WriteExternalStorageApp/src/com/android/cts/writeexternalstorageapp/
WriteGiftTest.java 48 for (File read : readList) {
49 read.getParentFile().mkdirs();
50 read.createNewFile();
51 assertFileReadWriteAccess(read);
53 writeInt(read, 101);
54 assertEquals(101, readInt(read));
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptor_AutoCloseInputStreamTest.java 30 assertEquals(0, in.read());
35 in.read();
SharedMemoryService.java 49 public byte read(int index) throws RemoteException { method in class:SharedMemoryService.SharedMemoryServiceImpl
  /development/tools/idegen/src/
Files.java 30 int read; local
33 while ((read = in.read(buffer)) > -1) {
34 builder.append(buffer, 0, read);
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
SocketStream.cpp 134 const unsigned char *SocketStream::read( void *buf, size_t *inout_len) function in class:SocketStream
  /device/google/contexthub/util/common/
file.cpp 77 ssize_t File::read(void *data, size_t size) { function in class:android::File
78 return ::read(mFd, data, size);

Completed in 668 milliseconds

1 2 3 4 56 7 8 91011>>