HomeSort by relevance Sort by last modified time
    Searched refs:pipe (Results 1 - 25 of 420) 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
  /device/generic/goldfish/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/qemu/hw/
goldfish_pipe.c 44 /* Set to 1 to enable the 'zero' pipe type, useful for debugging */
47 /* Set to 1 to enable the 'pingpong' pipe type, useful for debugging */
50 /* Set to 1 to enable the 'throttle' pipe type, useful for debugging */
53 /* Maximum length of pipe service name, in characters (excluding final 0) */
88 APANIC("Too many goldfish pipe services (%d)", count);
92 APANIC("Pipe service name too long: '%s'", pipeName);
127 typedef struct Pipe {
128 struct Pipe* next;
129 struct Pipe* next_waked;
138 } Pipe;
146 Pipe* pipe; local
155 Pipe* pipe = pipe_new0(dev); local
252 Pipe* pipe; local
321 Pipe* pipe; member in struct:__anon13773
407 Pipe* pipe = pcon->pipe; local
630 PingPongPipe* pipe = opaque; local
694 PingPongPipe* pipe = opaque; local
738 PingPongPipe* pipe = opaque; local
753 PingPongPipe* pipe = opaque; local
796 ThrottlePipe* pipe; local
810 ThrottlePipe* pipe = opaque; local
843 ThrottlePipe* pipe = opaque; local
872 ThrottlePipe* pipe = opaque; local
891 ThrottlePipe* pipe = opaque; local
909 ThrottlePipe* pipe = opaque; local
924 ThrottlePipe* pipe = opaque; local
968 Pipe* pipe = *lookup; local
1143 Pipe* pipe = dev->signaled_pipes; local
1191 Pipe* pipe; local
1217 Pipe* pipe; local
1285 Pipe* pipe = hwpipe; local
1307 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/valgrind/main/coregrind/m_scheduler/
sema.c 45 pipe-based token passing scheme.
48 /* Cycle the char passed through the pipe through 'A' .. 'Z' to make
59 r = VG_(pipe)(sema->pipe);
62 vg_assert(sema->pipe[0] != sema->pipe[1]);
64 sema->pipe[0] = VG_(safe_fd)(sema->pipe[0]);
65 sema->pipe[1] = VG_(safe_fd)(sema->pipe[1])
    [all...]
  /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
232 NetPipe* pipe = opaque; local
251 NetPipe* pipe = opaque; local
309 NetPipe* pipe = opaque; local
362 NetPipe* pipe = opaque; local
377 NetPipe* pipe = opaque; local
486 NetPipe *pipe; local
    [all...]
  /external/bison/lib/
unistd--.h 26 #undef pipe macro
27 #define pipe pipe_safer macro
  /external/valgrind/main/none/tests/
fdleak_pipe.c 10 DO( pipe(fds) );
  /bionic/libc/arch-mips/bionic/
pipe.S 30 * The MIPS pipe syscall returns results in two registers, which
39 /* int pipe(int[]) */
41 .type pipe,@function
42 .global pipe
44 .ent pipe
45 pipe: label
60 .end pipe
  /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...]
  /external/libusb_aah/libusb/os/
poll_posix.h 7 #define usbi_pipe pipe
  /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 6 ENTRY(pipe) function
15 END(pipe)
  /frameworks/av/include/media/nbaio/
MonoPipeReader.h 30 // any data already in the pipe is visible to this PipeReader.
33 MonoPipeReader(MonoPipe* pipe);
55 MonoPipe* pipe() const { return mPipe; }
PipeReader.h 20 #include "Pipe.h"
29 // Construct a PipeReader and associate it with a Pipe
30 // FIXME make this constructor a factory method of Pipe.
31 PipeReader(Pipe& pipe);
53 Pipe& pipe() const { return mPipe; }
57 Pipe& mPipe;
  /bionic/libc/arch-x86/syscalls/
pipe.S 6 ENTRY(pipe) function
21 END(pipe)
  /external/libnfc-nci/src/nfa/hci/
nfa_hci_api.c 326 ** Description This function is called to create a dynamic pipe with the
327 ** specified host. When the dynamic pipe is created (or
329 ** NFA_HCI_CREATE_PIPE_EVT with the pipe id. If a pipe exists
331 ** created earlier by the calling application then the pipe
332 ** id of the existing pipe will be returned and a new pipe
333 ** will not be created. After successful creation of pipe,
334 ** registry entry will be created for the dynamic pipe and
335 ** all information related to the pipe will be stored in no
    [all...]
  /frameworks/native/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...]
  /device/generic/goldfish/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...]
  /sdk/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
125 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/libnfc-nci/src/nfa/include/
nfa_hci_api.h 47 #define NFA_HCI_CREATE_PIPE_EVT 0x05 /* Pipe is created */
48 #define NFA_HCI_OPEN_PIPE_EVT 0x06 /* Pipe is opened / could not open */
49 #define NFA_HCI_CLOSE_PIPE_EVT 0x07 /* Pipe is closed / could not close */
50 #define NFA_HCI_DELETE_PIPE_EVT 0x08 /* Pipe is deleted */
54 #define NFA_HCI_RSP_RCVD_EVT 0x0C /* Response recvd to cmd sent on app owned pipe */
55 #define NFA_HCI_RSP_SENT_EVT 0x0D /* Response sent on app owned pipe */
56 #define NFA_HCI_CMD_SENT_EVT 0x0E /* Command sent on app owned pipe */
57 #define NFA_HCI_EVENT_SENT_EVT 0x0F /* Event sent on app owned pipe */
58 #define NFA_HCI_CMD_RCVD_EVT 0x10 /* Command received on app owned pipe */
59 #define NFA_HCI_EVENT_RCVD_EVT 0x11 /* Event received on app owned pipe */
109 tNFA_HCI_PIPE_INFO pipe[NFA_HCI_MAX_PIPE_CB]; \/* List of pipe created for the application *\/ member in struct:__anon10301
134 UINT8 pipe; \/* The pipe created for the application *\/ member in struct:__anon10304
144 UINT8 pipe; \/* The dynamic pipe for open operation *\/ member in struct:__anon10305
151 UINT8 pipe; \/* The dynamic pipe for close operation *\/ member in struct:__anon10306
158 UINT8 pipe; \/* The dynamic pipe for delete operation *\/ member in struct:__anon10307
173 UINT8 pipe; \/* The pipe on which HCP packet is exchanged *\/ member in struct:__anon10309
183 UINT8 pipe; \/* The pipe on which HCP EVT packet is received *\/ member in struct:__anon10310
193 UINT8 pipe; \/* The pipe on which HCP CMD packet is received *\/ member in struct:__anon10311
239 UINT8 pipe; \/* Pipe on whose registry is of interest *\/ member in struct:__anon10318
    [all...]
  /external/openfst/src/script/
info.cc 28 bool pipe, bool verify) {
29 InfoArgs args(f, test_properties, arc_filter, info_type, pipe, verify);

Completed in 599 milliseconds

1 2 3 4 5 6 7 8 91011>>