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

  /libcore/luni/src/main/java/java/io/
PipedInputStream.java 103 * @param pipeSize the size of the buffer in bytes.
104 * @throws IllegalArgumentException if pipeSize is less than or equal to zero.
107 public PipedInputStream(int pipeSize) {
108 if (pipeSize <= 0) {
109 throw new IllegalArgumentException("pipe size " + pipeSize + " too small");
111 buffer = new byte[pipeSize];
120 * @param pipeSize the size of the buffer in bytes.
122 * @throws IllegalArgumentException if pipeSize is less than or equal to zero.
125 public PipedInputStream(PipedOutputStream out, int pipeSize) throws IOException {
126 this(pipeSize);
    [all...]
PipedReader.java 103 * @param pipeSize the size of the buffer in chars.
104 * @throws IllegalArgumentException if pipeSize is less than or equal to zero.
107 public PipedReader(int pipeSize) {
108 if (pipeSize <= 0) {
109 throw new IllegalArgumentException("pipe size " + pipeSize + " too small");
111 buffer = new char[pipeSize];
120 * @param pipeSize the size of the buffer in chars.
122 * @throws IllegalArgumentException if pipeSize is less than or equal to zero.
125 public PipedReader(PipedWriter out, int pipeSize) throws IOException {
126 this(pipeSize);
    [all...]
  /external/ping/
ping_common.h 111 extern int pipesize;
169 if ((int)diff+1 > pipesize)
170 pipesize = (int)diff+1;
ping.c 120 int pipesize = -1; variable
396 if ((preload < screen_width && pipesize < screen_width) ||
888 if (pipesize > 1)
889 printf(", pipe %d", pipesize);
    [all...]
  /system/core/sh/
redir.c 71 # define PIPESIZE 4096 /* amount of buffering in a pipe */
73 # define PIPESIZE PIPE_BUF
267 if (len <= PIPESIZE) {
  /hardware/ti/omap4xxx/domx/mm_osal/inc/
timm_osal_pipes.h 61 TIMM_OSAL_U32 pipeSize,
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_pipes.c 70 TIMM_OSAL_U32 pipeSize;
91 TIMM_OSAL_U32 pipeSize,
116 pHandle->pipeSize = pipeSize;
  /frameworks/base/core/java/android/net/http/
Connection.java 267 int pipeSize = pipe.size();
268 if (state != DRAIN && pipeSize < minPipe &&
272 } else if (pipeSize == 0) {

Completed in 687 milliseconds