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

1 2 3 4 5 6 7 8

  /libcore/support/src/test/java/tests/support/
Support_ASimpleReader.java 62 int readable = (available < count ? available : count); local
63 System.arraycopy(buf, pos, dest, offset, readable);
64 pos += readable;
65 return readable;
  /bionic/libc/upstream-netbsd/lib/libc/isc/
ev_streams.c 52 static void readable(evContext opaqueCtx, void *uap, int fd, int evmask);
113 if (evSelectFD(opaqueCtx, fd, EV_READ, readable, new, &new->file) < 0)
293 readable(evContext opaqueCtx, void *uap, int fd, int evmask) { function
  /external/guava/guava/src/com/google/common/io/
LineReader.java 31 * as {@link java.io.BufferedReader#readLine()} but for all {@link Readable}
39 private final Readable readable; field in class:LineReader
53 * {@code Readable} object.
55 public LineReader(Readable readable) {
56 this.readable = checkNotNull(readable);
57 this.reader = (readable instanceof Reader) ? (Reader) readable : null
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
MethodProperty.java 34 private final boolean readable; field in class:MethodProperty
42 this.readable = property.getReadMethod() != null;
69 return readable;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
fileobject.h 43 int readable; member in struct:__anon5240
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
fileobject.h 31 int readable; member in struct:__anon5347
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
fileobject.h 42 int readable; member in struct:__anon5552
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
fileobject.h 43 int readable; member in struct:__anon5654
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
asynchat.py 192 def readable (self): member in class:async_chat
193 "predicate for inclusion in the readable for select()"
gzip.py 397 def readable(self): member in class:GzipFile
asyncore.py 131 is_r = obj.readable()
180 if obj.readable():
185 # Only check for exceptions if object was either readable
321 def readable(self): member in class:dispatcher
  /prebuilts/gdb/darwin-x86/include/python2.7/
fileobject.h 31 int readable; member in struct:__anon53260
  /prebuilts/gdb/darwin-x86/lib/python2.7/
asynchat.py 192 def readable (self): member in class:async_chat
193 "predicate for inclusion in the readable for select()"
gzip.py 406 def readable(self): member in class:GzipFile
  /prebuilts/gdb/linux-x86/include/python2.7/
fileobject.h 31 int readable; member in struct:__anon53382
  /prebuilts/gdb/linux-x86/lib/python2.7/
asynchat.py 192 def readable (self): member in class:async_chat
193 "predicate for inclusion in the readable for select()"
gzip.py 406 def readable(self): member in class:GzipFile
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
fileobject.h 31 int readable; member in struct:__anon105102
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asynchat.py 192 def readable (self): member in class:async_chat
193 "predicate for inclusion in the readable for select()"
gzip.py 406 def readable(self): member in class:GzipFile
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
fileobject.h 31 int readable; member in struct:__anon105225
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asynchat.py 192 def readable (self): member in class:async_chat
193 "predicate for inclusion in the readable for select()"
gzip.py 406 def readable(self): member in class:GzipFile
  /external/guava/guava-tests/test/com/google/common/io/
LineBufferTest.java 115 Readable readable = asReader local
118 LineReader r = new LineReader(readable);
127 // Returns a Readable that is *not* a Reader.
128 private static Readable getChunkedReadable(String input, int chunk) {
130 return new Readable() {
  /external/ppp/pppd/plugins/rp-pppoe/
discovery.c 347 fd_set readable; local
375 FD_ZERO(&readable);
376 FD_SET(conn->discoverySocket, &readable);
379 r = select(conn->discoverySocket+1, &readable, NULL, NULL, &tv);
540 fd_set readable; local
560 FD_ZERO(&readable);
561 FD_SET(conn->discoverySocket, &readable);
564 r = select(conn->discoverySocket+1, &readable, NULL, NULL, &tv);

Completed in 758 milliseconds

1 2 3 4 5 6 7 8