HomeSort by relevance Sort by last modified time
    Searched defs:read (Results 1 - 25 of 3357) 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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
combinerefs.py 77 # are read so long as pat doesn't match them. In any case, the first line
81 def read(fileiter, pat, whilematch): function
92 for line in read(fi, re.compile(r'^Remaining objects:$'), False):
99 for line in read(fi, re.compile(r'^Remaining object addresses:$'), False):
108 for line in read(fi, crack, True):
  /external/python/cpython2/Tools/scripts/
combinerefs.py 77 # are read so long as pat doesn't match them. In any case, the first line
81 def read(fileiter, pat, whilematch): function
92 for line in read(fi, re.compile(r'^Remaining objects:$'), False):
99 for line in read(fi, re.compile(r'^Remaining object addresses:$'), False):
108 for line in read(fi, crack, True):
  /external/python/cpython3/Tools/scripts/
combinerefs.py 77 # are read so long as pat doesn't match them. In any case, the first line
81 def read(fileiter, pat, whilematch): function
93 for line in read(fi, re.compile(r'^Remaining objects:$'), False):
100 for line in read(fi, re.compile(r'^Remaining object addresses:$'), False):
109 for line in read(fi, crack, True):
  /external/syslinux/com32/lib/sys/
read.c 29 * read.c
41 ssize_t read(int fd, void *buf, size_t count) function
50 return fp->iop->read(fp, buf, count);
  /external/chromium-trace/catapult/devil/devil/utils/lazy/
weak_constant.py 21 def read(self): member in class:WeakConstant
  /external/libmojo/third_party/catapult/devil/devil/utils/lazy/
weak_constant.py 21 def read(self): member in class:WeakConstant
  /external/ltp/testcases/realtime/scripts/
parser.py 40 def read(self): member in class:Log
41 for line in self.__log_file.read().split("\n"):
  /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
  /libcore/ojluni/src/main/java/java/lang/
Readable.java 32 * a <tt>Readable</tt> are made available to callers of the read
40 * Attempts to read characters into the specified character buffer.
45 * @param cb the buffer to read characters into
50 * @throws java.nio.ReadOnlyBufferException if cb is a read only buffer
52 public int read(java.nio.CharBuffer cb) throws IOException; method in interface:Readable
  /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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
script.py 13 def read(fd): function
14 data = os.read(fd, 1024)
40 pty.spawn(shell, read)
  /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/python/cpython2/Demo/scripts/
script.py 13 def read(fd): function
14 data = os.read(fd, 1024)
40 pty.spawn(shell, read)
  /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
  /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...]

Completed in 598 milliseconds

1 2 3 4 5 6 7 8 91011>>