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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm/syscalls/
read.S 5 ENTRY(read) function
16 END(read)
  /bionic/libc/arch-arm64/syscalls/
read.S 5 ENTRY(read) function
14 END(read)
  /bionic/libc/arch-mips/syscalls/
read.S 5 ENTRY(read) function
19 END(read)
  /bionic/libc/arch-mips64/syscalls/
read.S 5 ENTRY(read) function
25 END(read)
  /bionic/libc/arch-x86/syscalls/
read.S 5 ENTRY(read) function
39 END(read)
  /bionic/libc/arch-x86_64/syscalls/
read.S 5 ENTRY(read) function
15 END(read)
  /external/v8/test/mjsunit/regress/
regress-crbug-319860.js 30 function read(a, index) { function
40 read(a, 0);
41 read(a, 0);
42 %OptimizeFunctionOnNextCall(read);
46 read(a, i);
  /external/chromium-trace/catapult/devil/devil/utils/lazy/
weak_constant.py 21 def read(self): member in class:WeakConstant
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/
response.py 41 body = json.loads(http_response.read().decode('utf-8'))
47 def read(self, amt=None): member in class:GlacierResponse
49 return self.http_response.read(amt)
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/lang/
Readable.java 23 int read (CharBuffer cb) throws IOException; method in interface:Readable
  /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
  /frameworks/compile/libbcc/lib/Support/
InputFile.cpp 26 ssize_t InputFile::read(void *pBuf, size_t count) { function in class:InputFile
33 ALOGW("InputFile::read: count = %zu, buffer = %p", count, pBuf);
38 ssize_t read_size = ::read(mFD, pBuf, count);
43 // If the errno is EAGAIN or EINTR, then we try to read again.
  /libcore/ojluni/src/main/java/java/lang/
Readable.java 32 * a <tt>Readable</tt> are made available to callers of the read
41 * Attempts to read characters into the specified character buffer.
46 * @param cb the buffer to read characters into
51 * @throws java.nio.ReadOnlyBufferException if cb is a read only buffer
53 public int read(java.nio.CharBuffer cb) throws IOException; method in interface:Readable
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/lib/gcc/x86_64-linux/4.8/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.15-4.8/lib/gcc/x86_64-linux/4.8/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-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/ssp/
unistd.h 43 #undef read macro
48 size_t __nbytes), read);
51 read (int __fd, void *__buf, size_t __nbytes) function
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
IsoTypeReaderVariable.java 22 public static long read(ByteBuffer bb, int bytes) { method in class:IsoTypeReaderVariable
35 throw new RuntimeException("I don't know how to read " + bytes + " bytes");
  /external/okhttp/okio/okio/src/main/java/okio/
Source.java 22 * Supplies a stream of bytes. Use this interface to read data from wherever
32 * fill it with the data your application is to read.
51 * java.io.InputStream#read single-byte read} method that is awkward to
65 * them to {@code sink}. Returns the number of bytes read, or -1 if this
68 long read(Buffer sink, long byteCount) throws IOException; method in interface:Source
75 * error to read a closed source. It is safe to close a source more than once.
  /external/testng/src/test/java/test/abstractmethods/
CRUDTest.java 11 public abstract void read(); method in class:CRUDTest
CRUDTest2.java 10 public void read() { method in class:CRUDTest2
  /frameworks/native/libs/gui/
LayerState.cpp 49 status_t layer_state_t::read(const Parcel& input) function in class:android::layer_state_t
68 input.read(crop);
69 input.read(finalCrop);
73 input.read(transparentRegion);
82 status_t ComposerState::read(const Parcel& input) { function in class:android::ComposerState
84 return state.read(input);
111 status_t DisplayState::read(const Parcel& input) { function in class:android::DisplayState
117 input.read(viewport);
118 input.read(frame);
  /libcore/ojluni/src/main/java/java/nio/channels/
ReadableByteChannel.java 33 * A channel that can read bytes.
35 * <p> Only one read operation upon a readable channel may be in progress at
36 * any given time. If one thread initiates a read operation upon a channel
37 * then any other thread that attempts to initiate another read operation will
39 * I/O operations may proceed concurrently with a read operation depends upon
53 * <p> An attempt is made to read up to <i>r</i> bytes from the channel,
57 * <p> Suppose that a byte sequence of length <i>n</i> is read, where
66 * <p> A read operation might not fill the buffer, and in fact it might not
67 * read any bytes at all. Whether or not it does so depends upon the
69 * for example, cannot read any more bytes than are immediately availabl
106 public int read(ByteBuffer dst) throws IOException; method in interface:ReadableByteChannel
    [all...]
ScatteringByteChannel.java 33 * A channel that can read bytes into a sequence of buffers.
35 * <p> A <i>scattering</i> read operation reads, in a single invocation, a
57 * <p> An invocation of this method attempts to read up to <i>r</i> bytes
68 * <p> Suppose that a byte sequence of length <i>n</i> is read, where
80 * already initiated a read operation upon this channel, however, then an
97 * @return The number of bytes read, possibly zero,
112 * while the read operation is in progress
116 * while the read operation is in progress, thereby
123 public long read(ByteBuffer[] dsts, int offset, int length) method in interface:ScatteringByteChannel
129 * <p> An invocation of this method of the form <tt>c.read(dsts)</tt
160 public long read(ByteBuffer[] dsts) throws IOException; method in interface:ScatteringByteChannel
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
AnnotationOffItem.java 25 public void read(DexRandomAccessFile file) throws IOException { method in class:AnnotationOffItem
AnnotationSetRefItem.java 25 public void read(DexRandomAccessFile file) throws IOException { method in class:AnnotationSetRefItem

Completed in 1472 milliseconds

1 2 3 4 5 6 7 8 91011>>