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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2008-07-31-asm-labels.c 2 // RUN: grep "@pipe()" %t | count 0
7 // RUN: grep "@pipe()" %t | count 0
11 void pipe() asm("_thisIsNotAPipe");
14 pipe();
17 void pipe(int);
20 pipe(1);
24 void pipe(int arg) { function
  /external/dbus/dbus/
dbus-pipe.c 2 /* dbus-pipe.c pipe implementation (internal to D-Bus implementation)
26 #include "dbus-pipe.h"
29 * init a pipe instance.
31 * @param pipe the pipe
35 _dbus_pipe_init (DBusPipe *pipe,
38 pipe->fd_or_handle = fd;
42 * init a pipe with stdout
44 * @param pipe the pip
    [all...]
dbus-pipe-unix.c 2 /* dbus-pipe-unix.c unix related pipe implementation
29 #include "dbus-pipe.h"
35 * write data to a pipe.
37 * @param pipe the pipe instance
45 _dbus_pipe_write (DBusPipe *pipe,
53 written = _dbus_write (pipe->fd_or_handle, buffer, start, len);
57 "Writing to pipe: %s\n",
64 * close a pipe
    [all...]
dbus-pipe-win.c 2 /* dbus-pipe-win.c windows related pipe implementation
29 #include "dbus-pipe.h"
34 * write data to a pipe.
36 * @param pipe the pipe instance
44 _dbus_pipe_write (DBusPipe *pipe,
55 res = WriteFile ((HANDLE) pipe->fd_or_handle, buffer_c + start, len, &written, NULL);
59 "Writing to pipe: %s\n",
66 * close a pipe
    [all...]
dbus-pipe.h 45 void _dbus_pipe_init (DBusPipe *pipe,
47 void _dbus_pipe_init_stdout (DBusPipe *pipe);
48 int _dbus_pipe_write (DBusPipe *pipe,
53 int _dbus_pipe_close (DBusPipe *pipe,
55 dbus_bool_t _dbus_pipe_is_valid (DBusPipe *pipe);
56 void _dbus_pipe_invalidate (DBusPipe *pipe);
57 dbus_bool_t _dbus_pipe_is_stdout_or_stderr (DBusPipe *pipe);
  /external/bison/lib/
unistd--.h 27 #undef pipe macro
28 #define pipe pipe_safer macro
pipe-safer.c 1 /* Invoke pipe, but avoid some glitches.
28 /* Like pipe, but ensure that neither of the file descriptors is
34 int fail = pipe (fd);
  /development/tools/emulator/system/libqemu/
test_util.h 27 } Pipe;
29 int pipe_openSocket( Pipe* pipe, int port );
30 int pipe_openQemuPipe( Pipe* pipe, const char* pipename );
31 int pipe_send( Pipe* pipe, const void* buff, size_t bufflen );
32 int pipe_recv( Pipe* pipe, void* buff, size_t bufflen );
33 void pipe_close( Pipe* pipe )
    [all...]
test_util.c 45 pipe_openSocket( Pipe* pipe, int port )
50 pipe->socket = -1;
70 pipe->socket = fd;
75 pipe_openQemuPipe( Pipe* pipe, const char* pipename )
77 pipe->socket = qemu_pipe_open(pipename);
78 if (pipe->socket < 0) {
79 fprintf(stderr, "%s: Could not open '%s' pipe: %s\n", __FUNCTION__, pipename, strerror(errno));
86 pipe_send( Pipe* pipe, const void* buff, size_t bufflen
    [all...]
test_guest_1.c 17 /* This program uses a QEMUD pipe to exchange data with a test
42 Pipe pipe[1]; local
47 if (pipe_openSocket(pipe, port) < 0) {
53 if (pipe_openQemuPipe(pipe, PIPE_NAME) < 0) {
54 fprintf(stderr, "Could not open '%s' pipe: %s\n", PIPE_NAME, strerror(errno));
57 printf("Connected to '%s' pipe\n", PIPE_NAME);
70 int ret = pipe_send(pipe, buff, len);
79 ret = pipe_recv(pipe, buff2, len);
98 printf("Closing pipe\n")
    [all...]
  /external/valgrind/main/coregrind/m_scheduler/
sema.c 41 pipe-based token passing scheme.
44 /* Cycle the char passed through the pipe through 'A' .. 'Z' to make
55 r = VG_(pipe)(sema->pipe);
58 vg_assert(sema->pipe[0] != sema->pipe[1]);
60 sema->pipe[0] = VG_(safe_fd)(sema->pipe[0]);
61 sema->pipe[1] = VG_(safe_fd)(sema->pipe[1])
    [all...]
priv_sema.h 34 /* Not really a semaphore, but use a pipe for a token-passing scheme */
36 Int pipe[2]; member in struct:__anon12444
  /external/qemu/android/
hw-pipe-net.c 17 /* This file implements the 'tcp:' goldfish pipe type which allows
30 /* Implement the OpenGL fast-pipe */
75 netPipe_free( NetPipe* pipe )
80 fd = pipe->io->fd;
81 loopIo_done(pipe->io);
84 /* Release the pipe object */
85 AFREE(pipe);
90 netPipe_resetState( NetPipe* pipe )
92 if ((pipe->wakeWanted & PIPE_WAKE_WRITE) != 0) {
93 loopIo_wantWrite(pipe->io)
112 NetPipe* pipe = opaque; local
140 NetPipe* pipe = opaque; local
189 NetPipe* pipe; local
233 NetPipe* pipe = opaque; local
241 NetPipe* pipe = opaque; local
295 NetPipe* pipe = opaque; local
348 NetPipe* pipe = opaque; local
363 NetPipe* pipe = opaque; local
468 NetPipe *pipe; local
    [all...]
  /external/valgrind/main/none/tests/
fdleak_pipe.c 10 DO( pipe(fds) );
  /external/qemu/hw/
goldfish_pipe.c 46 /* Set to 1 to enable the 'zero' pipe type, useful for debugging */
49 /* Set to 1 to enable the 'pingpong' pipe type, useful for debugging */
52 /* Set to 1 to enable the 'throttle' pipe type, useful for debugging */
85 APANIC("Too many goldfish pipe services (%d)", count);
120 typedef struct Pipe {
121 struct Pipe* next;
122 struct Pipe* next_waked;
129 } Pipe;
132 static void* pipeConnector_new(Pipe* pipe);
137 Pipe* pipe; local
214 Pipe* pipe; member in struct:__anon10081
298 Pipe* pipe = pcon->pipe; local
491 PingPongPipe* pipe = opaque; local
555 PingPongPipe* pipe = opaque; local
599 PingPongPipe* pipe = opaque; local
614 PingPongPipe* pipe = opaque; local
657 ThrottlePipe* pipe; local
671 ThrottlePipe* pipe = opaque; local
704 ThrottlePipe* pipe = opaque; local
733 ThrottlePipe* pipe = opaque; local
752 ThrottlePipe* pipe = opaque; local
770 ThrottlePipe* pipe = opaque; local
785 ThrottlePipe* pipe = opaque; local
829 Pipe* pipe = *lookup; local
983 Pipe* pipe = dev->signaled_pipes; local
1051 Pipe* pipe = hwpipe; local
1073 Pipe* pipe = hwpipe; local
    [all...]
goldfish_pipe.h 20 * A goldfish pipe is a very fast communication channel between the guest
23 * To open a new pipe to the emulator, a guest client will do the following:
37 * This header provides the interface used by pipe services in the emulator
41 * 1/ Call goldfish_pipe_add_type() to register a new pipe service by name.
43 * during normal pipe operations.
49 * 3/ Call goldfish_pipe_close() to force the closure of a given pipe.
51 * 4/ Call goldfish_pipe_signal() to signal a change of state to the pipe.
61 /* Pipe handler funcs */
66 * to goldfish_pipe_add_type() when registering a given pipe service.
70 /* Called when the guest kernel has finally closed a pipe connection
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
PipeTest.java 21 import java.nio.channels.Pipe;
22 import java.nio.channels.Pipe.SinkChannel;
23 import java.nio.channels.Pipe.SourceChannel;
29 * Tests for Pipe and its default implementation
34 * @tests java.nio.channels.Pipe#open()
37 Pipe pipe = Pipe.open(); local
38 assertNotNull(pipe);
42 * @tests java.nio.channels.Pipe#sink(
45 Pipe pipe = Pipe.open(); local
54 Pipe pipe = Pipe.open(); local
    [all...]
  /bionic/libc/arch-x86/syscalls/
pipe.S 5 .type pipe, @function
6 .globl pipe
9 pipe: label
  /external/valgrind/main/memcheck/tests/
pipe.c 2 // behaved as if pipe() took an array of 64-bit ints, when it really takes
13 pipe(filedes);
  /bionic/libc/arch-arm/syscalls/
pipe.S 5 ENTRY(pipe) function
14 END(pipe)
  /frameworks/base/libs/utils/tests/
Looper_test.cpp 41 Pipe* mPipe;
44 DelayedWriteSignal(int delayMillis, Pipe* pipe) :
45 DelayedTask(delayMillis), mPipe(pipe) {
165 Pipe pipe; local
168 handler.setCallback(mLooper, pipe.receiveFd, ALOOPER_EVENT_INPUT);
183 Pipe pipe; local
186 ASSERT_EQ(OK, pipe.writeSignal())
206 Pipe pipe; local
224 Pipe pipe; local
249 Pipe pipe; local
275 Pipe pipe; local
297 Pipe pipe; local
339 Pipe pipe; local
366 Pipe pipe; local
374 Pipe pipe; local
382 Pipe pipe; local
398 Pipe pipe; local
416 Pipe pipe; local
    [all...]
  /bionic/libc/arch-sh/bionic/
pipe.S 31 .type pipe, @function
32 .globl pipe
35 pipe: label
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
Win32PipeStream.cpp 30 * pipe cannot be more than 256 characters long.
40 Win32PipeStream::Win32PipeStream(HANDLE pipe, size_t bufSize) :
42 m_pipe(pipe)
54 /* Initialize the pipe name corresponding to a given port
59 snprintf(path, pathlen, "\\\\.\\pipe\\qemu-gles-%d", port_number);
64 * One does not create/bind a pipe, and collect a new handle each
67 * Instead, the server creates a new pipe instance each time it wants
71 * So listen() is a no-op, and accept() really creates the pipe handle.
73 * Also, connect() must create a pipe handle with CreateFile() and
87 HANDLE pipe; local
126 HANDLE pipe; local
    [all...]
  /external/chromium/chrome/browser/cocoa/
authorization_util.h 16 // tool's stdout (and stdin) via a FILE* pipe. The tool can output its pid
17 // to this pipe, and the main program can read it, and then have something
44 // |pipe| may be NULL, but the tool will always be executed with a pipe in
50 FILE** pipe,
62 FILE** pipe,
  /external/kernel-headers/original/linux/
usb.h 684 * @pipe: Holds endpoint number, direction, type, and more.
690 * is a different endpoint (and pipe) from "out" endpoint two.
714 * and is encoded in the pipe. When the length is zero, neither
771 * All URBs submitted must initialize the dev, pipe, transfer_flags (may be
858 unsigned int pipe; \/* (in) pipe information *\/ member in struct:urb
1078 int pipe; member in struct:usb_sg_request
    [all...]

Completed in 642 milliseconds

1 2 3 4 5 6 7 8 91011>>