HomeSort by relevance Sort by last modified time
    Searched full:pipe (Results 1 - 25 of 1057) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-arm/syscalls/
pipe.S 5 .type pipe, #function
6 .globl pipe
10 pipe: label
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
PipeTest.java 24 import java.nio.channels.Pipe;
25 import java.nio.channels.Pipe.SinkChannel;
26 import java.nio.channels.Pipe.SourceChannel;
30 value = Pipe.class,
34 method = "Pipe",
40 * Tests for Pipe and its default implementation
45 * @tests java.nio.channels.Pipe#open()
54 Pipe pipe = Pipe.open() local
68 Pipe pipe = Pipe.open(); local
83 Pipe pipe = Pipe.open(); local
    [all...]
SourceChannelTest.java 29 import java.nio.channels.Pipe;
31 import java.nio.channels.Pipe.SourceChannel;
36 value = java.nio.channels.Pipe.SourceChannel.class,
47 * Tests for java.nio.channels.Pipe.SourceChannel
55 private Pipe pipe; field in class:SourceChannelTest
57 private Pipe.SinkChannel sink;
59 private Pipe.SourceChannel source;
67 pipe = Pipe.open()
382 Pipe pipe = Pipe.open(); local
    [all...]
  /frameworks/base/libs/utils/tests/
Looper_test.cpp 34 Pipe* mPipe;
37 DelayedWriteSignal(int delayMillis, Pipe* pipe) :
38 DelayedTask(delayMillis), mPipe(pipe) {
149 Pipe pipe; local
152 handler.setCallback(mLooper, pipe.receiveFd, ALOOPER_EVENT_INPUT);
167 Pipe pipe; local
170 ASSERT_EQ(OK, pipe.writeSignal())
190 Pipe pipe; local
208 Pipe pipe; local
233 Pipe pipe; local
259 Pipe pipe; local
281 Pipe pipe; local
323 Pipe pipe; local
350 Pipe pipe; local
358 Pipe pipe; local
366 Pipe pipe; local
382 Pipe pipe; local
400 Pipe pipe; local
    [all...]
TestHelpers.h 24 class Pipe {
29 Pipe() {
31 ::pipe(fds);
37 ~Pipe() {
  /external/clearsilver/man/man3/
filter_create_fp.3 31 in -> pointer to return the stdin pipe, or NULL if you don't
33 want the stdin pipe
35 out -> pointer to return the stdout pipe, or NULL if you don't
37 want the stdout pipe
39 err -> pointer to return the stderr pipe, or NULL if you don't
41 want the stderr pipe
filter_create_fd.3 31 fdin -> pointer to return the stdin pipe, or NULL if you don't
33 want the stdin pipe
35 fdout -> pointer to return the stdout pipe, or NULL if you don't
37 want the stdout pipe
39 fderr -> pointer to return the stderr pipe, or NULL if you don't
41 want the stderr pipe
51 NULL value means "don't create a pipe", a pointer to an
  /bionic/libc/arch-x86/syscalls/
pipe.S 5 .type pipe, @function
6 .globl pipe
9 pipe: label
  /development/simulator/app/
Pipe.cpp 18 // Unidirectional pipe.
21 #include "Pipe.h"
45 Pipe::Pipe(void)
54 Pipe::~Pipe(void)
59 LOG(LOG_WARN, "pipe", "failed closing read handle (%ld)\n",
65 LOG(LOG_WARN, "pipe", "failed closing write handle (%ld)\n",
71 LOG(LOG_WARN, "pipe", "failed closing read fd (%d)\n",
76 LOG(LOG_WARN, "pipe", "failed closing write fd (%d)\n"
    [all...]
LocalBiChannel.h 13 #include "Pipe.h"
23 * The name for the pipe should be a short filename made up of alphanumeric
39 bool listen(Pipe** ppReadPipe, Pipe** ppWritePipe);
44 bool attach(const char* name, Pipe** ppReadPipe, Pipe** ppWritePipe);
UserEventMessage.h 58 void CreateExternalRuntime(android::Pipe* reader, android::Pipe* writer) {
70 android::Pipe* GetReader(void) const { return mReader; }
71 android::Pipe* GetWriter(void) const { return mWriter; }
80 android::Pipe* mReader; // for kExternalRuntime
81 android::Pipe* mWriter; // for kExternalRuntime
  /libcore/luni/src/main/java/java/nio/channels/
Pipe.java 24 * A pipe contains two channels, forming a unidirectional pipe. One is the writable sink channel,
29 public abstract class Pipe {
31 * Writable sink channel used to write to a pipe.
57 * Readable source channel used to read from a pipe.
83 * Returns a new pipe from the default {@see java.nio.channels.spi.SelectorProvider}.
88 public static Pipe open() throws IOException {
95 protected Pipe() {
100 * Returns the sink channel of the pipe.
102 * @return a writable sink channel of the pipe
    [all...]
  /external/oprofile/daemon/
opd_pipe.h 18 * Creates the Oprofile daemon fifo pipe to enable communication between
19 * the daemon and the 'opcontrol --dump' command. Failure to create the pipe
32 * Closes the Oprofile daemon fifo pipe.
39 * Checks the Oprofile daemon fifo pipe for do_jitconv request.
  /external/clearsilver/util/
filter.h 47 * NULL value means "don't create a pipe", a pointer to an
53 * fdin -> pointer to return the stdin pipe, or NULL if you don't
54 * want the stdin pipe
55 * fdout -> pointer to return the stdout pipe, or NULL if you don't
56 * want the stdout pipe
57 * fderr -> pointer to return the stderr pipe, or NULL if you don't
58 * want the stderr pipe
75 * in -> pointer to return the stdin pipe, or NULL if you don't
76 * want the stdin pipe
77 * out -> pointer to return the stdout pipe, or NULL if you don'
    [all...]
  /system/core/libacc/tests/
accarm 11 proc = subprocess.Popen(["acc"] + args, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
16 proc = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
58 proc = subprocess.Popen(remoteCmdLine, stdout=subprocess.PIPE)
  /libcore/luni/src/test/java/libcore/java/nio/channels/
PipeTest.java 20 import java.nio.channels.Pipe;
24 Pipe p = Pipe.open();
  /external/bison/m4/
unistd-safer.m4 9 AC_LIBSOURCES([dup-safer.c, fd-safer.c, pipe-safer.c, unistd-safer.h, unistd--.h])
12 AC_LIBOBJ([pipe-safer])
  /external/dbus/test/data/valid-config-files/
debug-allow-all-sha1.conf 1 <!-- Bus that listens on a debug pipe and requires SHA1 auth, used to test SHA1 -->
6 <listen>debug-pipe:name=test-server</listen>
debug-allow-all-sha1.conf.in 1 <!-- Bus that listens on a debug pipe and requires SHA1 auth, used to test SHA1 -->
6 <listen>debug-pipe:name=test-server</listen>
debug-allow-all.conf 1 <!-- Bus that listens on a debug pipe and doesn't create any restrictions -->
6 <listen>debug-pipe:name=test-server</listen>
debug-allow-all.conf.in 1 <!-- Bus that listens on a debug pipe and doesn't create any restrictions -->
6 <listen>debug-pipe:name=test-server</listen>
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_include/khronos/
OMX_ContentPipe.h 105 CP_CheckBytesNotReady, /**< The pipe is still retrieving bytes
109 CP_CheckBytesInsufficientBytes , /**< The pipe has retrieved all bytes
112 CP_CheckBytesAtEndOfStream, /**< The pipe has reached the end of stream
120 /** enumeration of content pipe events sent to the client callback.
125 CP_Overflow, /** enumeration of content pipe events sent to the client callback*/
126 CP_PipeDisconnected , /** enumeration of content pipe events sent to the client callback*/
132 /** content pipe definition
156 Note: pipe client provides pointer. This function is appropriate for small high frequency reads. */
159 /** Retrieve a buffer allocated by the pipe that contains the requested number of bytes.
162 Note: pipe provides pointer. This function is appropriate for large reads. The client must call
    [all...]
  /hardware/qcom/media/mm-core/omxcore/inc/
OMX_ContentPipe.h 105 CP_CheckBytesNotReady, /**< The pipe is still retrieving bytes
109 CP_CheckBytesInsufficientBytes , /**< The pipe has retrieved all bytes
112 CP_CheckBytesAtEndOfStream, /**< The pipe has reached the end of stream
120 /** enumeration of content pipe events sent to the client callback.
125 CP_Overflow, /** enumeration of content pipe events sent to the client callback*/
126 CP_PipeDisconnected , /** enumeration of content pipe events sent to the client callback*/
132 /** content pipe definition
156 Note: pipe client provides pointer. This function is appropriate for small high frequency reads. */
159 /** Retrieve a buffer allocated by the pipe that contains the requested number of bytes.
162 Note: pipe provides pointer. This function is appropriate for large reads. The client must call
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_ContentPipe.h 105 CP_CheckBytesNotReady, /**< The pipe is still retrieving bytes
109 CP_CheckBytesInsufficientBytes , /**< The pipe has retrieved all bytes
112 CP_CheckBytesAtEndOfStream, /**< The pipe has reached the end of stream
120 /** enumeration of content pipe events sent to the client callback.
125 CP_Overflow, /** enumeration of content pipe events sent to the client callback*/
126 CP_PipeDisconnected , /** enumeration of content pipe events sent to the client callback*/
132 /** content pipe definition
156 Note: pipe client provides pointer. This function is appropriate for small high frequency reads. */
159 /** Retrieve a buffer allocated by the pipe that contains the requested number of bytes.
162 Note: pipe provides pointer. This function is appropriate for large reads. The client must call
    [all...]
  /packages/apps/Tag/src/com/android/apps/tag/provider/
TagProviderPipeDataWriter.java 23 * Interface to write a stream of data to a pipe.
27 * Called from a background thread to stream data out to a pipe.
28 * Note that the pipe is blocking, so this thread can block on
32 * @param output The pipe where data should be written. This will be

Completed in 518 milliseconds

1 2 3 4 5 6 7 8 91011>>