/bionic/libc/arch-arm/syscalls/ |
read.S | 6 ENTRY(read) function 15 END(read)
|
/bionic/libc/arch-mips/syscalls/ |
read.S | 4 .globl read 6 .ent read 8 read: label 22 .end read
|
/bionic/libc/arch-x86/syscalls/ |
read.S | 6 ENTRY(read) function 27 END(read)
|
/external/chromium_org/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);
|
/frameworks/rs/cpu_ref/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 | 30 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
|
/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.
|
/frameworks/native/libs/gui/ |
LayerState.cpp | 45 status_t layer_state_t::read(const Parcel& input) function in class:android::layer_state_t 60 input.read(crop); 61 input.read(transparentRegion); 70 status_t ComposerState::read(const Parcel& input) { function in class:android::ComposerState 72 return state.read(input); 87 status_t DisplayState::read(const Parcel& input) { function in class:android::DisplayState 93 input.read(viewport); 94 input.read(frame);
|
/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/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");
|
/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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
zipfileset_mock.py | 41 def read(self, member): member in class:make_factory.MockZipFileSet
|
/external/chromium_org/tools/json_comment_eater/ |
json_comment_eater_test.py | 15 def read(file_name): function in function:JsonCommentEaterTest._Load 17 return f.read() 18 return [read(pattern % test_name)
|
/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/smack/src/org/jivesoftware/smack/util/ |
ReaderListener.java | 35 * Notification that the Reader has read a new string. 37 * @param str the read String 39 public abstract void read(String str); method in interface:ReaderListener
|