HomeSort by relevance Sort by last modified time
    Searched full:pipesize (Results 1 - 9 of 9) sorted by null

  /libcore/ojluni/src/main/java/java/io/
PipedReader.java 94 * @param pipeSize the size of the pipe's buffer.
96 * @exception IllegalArgumentException if {@code pipeSize <= 0}.
99 public PipedReader(PipedWriter src, int pipeSize) throws IOException {
100 initPipe(pipeSize);
124 * @param pipeSize the size of the pipe's buffer.
125 * @exception IllegalArgumentException if {@code pipeSize <= 0}.
128 public PipedReader(int pipeSize) {
129 initPipe(pipeSize);
132 private void initPipe(int pipeSize) {
133 if (pipeSize <= 0)
    [all...]
PipedInputStream.java 121 * @param pipeSize the size of the pipe's buffer.
123 * @exception IllegalArgumentException if {@code pipeSize <= 0}.
126 public PipedInputStream(PipedOutputStream src, int pipeSize)
128 initPipe(pipeSize);
152 * @param pipeSize the size of the pipe's buffer.
153 * @exception IllegalArgumentException if {@code pipeSize <= 0}.
156 public PipedInputStream(int pipeSize) {
157 initPipe(pipeSize);
160 private void initPipe(int pipeSize) {
161 if (pipeSize <= 0)
    [all...]
  /external/iputils/
ping_common.h 171 extern int pipesize;
242 if ((int)diff+1 > pipesize)
243 pipesize = (int)diff+1;
ping_common.c 56 int pipesize = -1; variable
524 if ((preload < screen_width && pipesize < screen_width) ||
1051 if (pipesize > 1) {
1052 printf("%spipe %d", comma, pipesize);
  /external/apache-http/android/src/android/net/http/
Connection.java 263 int pipeSize = pipe.size();
264 if (state != DRAIN && pipeSize < minPipe &&
268 } else if (pipeSize == 0) {
  /frameworks/av/services/audioflinger/
Threads.cpp     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
edk2module.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c     [all...]
  /external/python/cpython2/Modules/
posixmodule.c     [all...]

Completed in 383 milliseconds