OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pipeSize
(Results
1 - 10
of
10
) sorted by null
/libcore/luni/src/main/java/java/io/
PipedInputStream.java
104
* @param
pipeSize
the size of the buffer in bytes.
105
* @throws IllegalArgumentException if
pipeSize
is less than or equal to zero.
108
public PipedInputStream(int
pipeSize
) {
109
if (
pipeSize
<= 0) {
110
throw new IllegalArgumentException("pipe size " +
pipeSize
+ " too small");
112
buffer = new byte[
pipeSize
];
121
* @param
pipeSize
the size of the buffer in bytes.
123
* @throws IllegalArgumentException if
pipeSize
is less than or equal to zero.
126
public PipedInputStream(PipedOutputStream out, int
pipeSize
) throws IOException {
127
this(
pipeSize
);
[
all
...]
PipedReader.java
104
* @param
pipeSize
the size of the buffer in chars.
105
* @throws IllegalArgumentException if
pipeSize
is less than or equal to zero.
108
public PipedReader(int
pipeSize
) {
109
if (
pipeSize
<= 0) {
110
throw new IllegalArgumentException("pipe size " +
pipeSize
+ " too small");
112
buffer = new char[
pipeSize
];
121
* @param
pipeSize
the size of the buffer in chars.
123
* @throws IllegalArgumentException if
pipeSize
is less than or equal to zero.
126
public PipedReader(PipedWriter out, int
pipeSize
) throws IOException {
127
this(
pipeSize
);
[
all
...]
/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) {
/prebuilts/sdk/10/
android.jar
/prebuilts/sdk/11/
android.jar
/prebuilts/sdk/13/
android.jar
/prebuilts/sdk/16/
android.jar
/prebuilts/sdk/9/
android.jar
Completed in 370 milliseconds