HomeSort by relevance Sort by last modified time
    Searched defs:read (Results 1 - 25 of 1135) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm/syscalls/
read.S 5 ENTRY(read) function
14 END(read)
  /bionic/libc/arch-x86/syscalls/
read.S 5 .type read, @function
6 .globl read
9 read: label
  /frameworks/compile/linkloader/include/impl/
ELFSection.hxx 34 ELFSection<Bitwidth>::read(Archiver &AR, function in class:ELFSection
46 return ELFSectionStrTabTy::read(AR, sh);
49 return ELFSectionSymTabTy::read(AR, owner, sh);
52 return ELFSectionProgBitsTy::read(AR, owner, sh);
55 return ELFSectionNoBitsTy::read(AR, sh);
59 return ELFSectionRelTableTy::read(AR, sh);
ELFSectionNoBits.hxx 32 ELFSectionNoBits<Bitwidth>::read(Archiver &AR, ELFSectionHeaderTy const *sh) { function in class:ELFSectionNoBits
ELFSectionStrTab.hxx 30 ELFSectionStrTab<Bitwidth>::read(Archiver &AR, function in class:ELFSectionStrTab
45 // Unable to read the string table.
ELFSectionHeader.hxx 34 ELFSectionHeader_CRTP<Bitwidth>::read(Archiver &AR, function in class:ELFSectionHeader_CRTP
39 // Archiver is in bad state before calling read function.
47 // Unable to read the structure. Return NULL.
52 // Header read from archiver is not valid. Return NULL.
  /external/proguard/src/proguard/io/
DataEntryReader.java 28 * determines what to do with the read data, if anything.
37 public void read(DataEntry dataEntry) throws IOException; method in interface:DataEntryReader
DataEntryRenamer.java 76 public void read(DataEntry dataEntry) throws IOException method in class:DataEntryRenamer
97 renamedDataEntryReader.read(new RenamedDataEntry(dataEntry, newName));
101 missingDataEntryReader.read(dataEntry);
JarReader.java 27 * This DataEntryReader lets a given DataEntryReader read all data entries of
28 * the read jar/war/zip data entries.
48 public void read(DataEntry dataEntry) throws IOException method in class:JarReader
65 dataEntryReader.read(new ZipDataEntry(dataEntry,
  /libcore/luni/src/main/java/java/lang/
Readable.java 23 * Represents a sequence of characters that can be incrementally read (copied)
30 * number of characters read is {@code CharBuffer.remaining()}.
33 * the buffer to be filled with characters read.
34 * @return the number of characters actually read, or -1 if this
39 int read(CharBuffer cb) throws IOException; method in interface:Readable
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/ssp/
unistd.h 43 #undef read macro
48 size_t __nbytes), read);
51 read (int __fd, void *__buf, size_t __nbytes) function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include/ssp/
unistd.h 43 #undef read macro
48 size_t __nbytes), read);
51 read (int __fd, void *__buf, size_t __nbytes) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include/ssp/
unistd.h 43 #undef read macro
48 size_t __nbytes), read);
51 read (int __fd, void *__buf, size_t __nbytes) function
  /external/valgrind/tsan/
common_util.h 36 #define read(fd, buf, size) __real_read(fd, buf, size) macro
41 #define read(fd, buf, size) fread(buf, 1, size, fd) macro
  /libcore/luni/src/main/java/java/nio/channels/
ReadableByteChannel.java 23 * A {@code ReadableByteChannel} is a type of {@link Channel} that can read
26 * Read operations are synchronous on a {@code ReadableByteChannel}, that is,
27 * if a read is already in progress on the channel then subsequent reads will
28 * block until the first read completes. It is undefined whether non-read
36 * The maximum number of bytes that will be read is the
38 * buffer when the method is invoked. The bytes will be read into the buffer
42 * The call may block if other threads are also attempting to read from the
46 * the bytes that were read. The buffer's
51 * @return the number of bytes actually read
65 public int read(ByteBuffer buffer) throws IOException; method in interface:ReadableByteChannel
    [all...]
ScatteringByteChannel.java 23 * The interface for channels that can read data into a set of buffers in a
32 * This method is equivalent to {@code read(buffers, 0, buffers.length);}
35 * the array of byte buffers to store the bytes being read.
36 * @return the number of bytes actually read.
38 * if the channel is closed by another thread during this read
52 public long read(ByteBuffer[] buffers) throws IOException; method in interface:ScatteringByteChannel
55 * Attempts to read all {@code remaining()} bytes from {@code length} byte
57 * bytes actually read is returned.
59 * If a read operation is in progress, subsequent threads will block until
60 * the read is completed and will then contend for the ability to read
88 public long read(ByteBuffer[] buffers, int offset, int length) method in interface:ScatteringByteChannel
    [all...]
  /system/extras/libublock/include/ublock/
ublock.h 28 int (*read)(char *buf, uint64_t length, uint64_t offset); member in struct:ublock_ops
35 * May call your read and write functions as the kernel scans partition
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
PacketListener.java 11 void read(String packet); method in interface:PacketListener
  /external/guava/guava-tests/test/com/google/common/io/
RandomAmountInputStream.java 33 @Override public int read(byte[] b, int off, int len) throws IOException { method in class:RandomAmountInputStream
34 return super.read(b, off, random.nextInt(len) + 1);
  /external/jmonkeyengine/engine/src/core/com/jme3/export/
Savable.java 45 void read(JmeImporter im) throws IOException; method in interface:Savable
  /external/webkit/Tools/Scripts/webkitpy/common/system/
zipfileset_mock.py 41 def read(self, member): member in class:make_factory.MockZipFileSet
  /frameworks/base/core/jni/android/graphics/
Utils.cpp 31 size_t AssetStreamAdaptor::read(void* buffer, size_t size) { function in class:AssetStreamAdaptor
53 amount = fAsset->read(buffer, size);
55 SkDebugf("---- fAsset->read(%d) returned %d\n", size, amount);
  /frameworks/native/libs/gui/
LayerState.cpp 45 status_t layer_state_t::read(const Parcel& input) function in class:android::layer_state_t
52 err = transparentRegion.read(buf);
58 input.read(this, size);
67 status_t ComposerState::read(const Parcel& input) { function in class:android::ComposerState
69 return state.read(input);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
InputStreamTest.java 30 in.read(null, -1, 1);
38 public int read() throws IOException { method in class:InputStreamTest.MockInputStream
  /dalvik/dx/src/com/android/dx/io/instructions/
CodeInput.java 26 * Returns whether there are any more code units to read. This
34 public int read() throws EOFException; method in interface:CodeInput

Completed in 653 milliseconds

1 2 3 4 5 6 7 8 91011>>