HomeSort by relevance Sort by last modified time
    Searched full:pipe (Results 126 - 150 of 834) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/WebKitTools/Scripts/webkitpy/
executive.py 84 stdout=subprocess.PIPE,
149 stdin = subprocess.PIPE if input else None
158 stdout=subprocess.PIPE,
user.py 51 child_process = subprocess.Popen([pager], stdin=subprocess.PIPE)
  /frameworks/base/tools/localize/
Perforce.cpp 28 err = pipe(outPipe);
29 err |= pipe(errPipe);
31 printf("couldn't create pipe. exiting.\n");
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
OMX_G711Dec_ComponentThread.c 126 G711DEC_DPRINT ("%d :: DATA pipe is set in Component Thread\n",__LINE__);
130 G711DEC_DPRINT ("%d :: Error while reading from the pipe\n",__LINE__);
142 G711DEC_DPRINT ("%d :: CMD pipe is set in Component Thread\n",__LINE__);
  /system/core/libcutils/
selector.c 94 // Set up wake-up pipe.
95 if (pipe(selector->wakeupPipe) < 0) {
96 LOG_ALWAYS_FATAL("pipe() error: %s", strerror(errno));
  /system/core/libsysutils/src/
SocketListener.cpp 84 if (pipe(mCtrlPipe)) {
85 SLOGE("pipe failed (%s)", strerror(errno));
101 SLOGE("Error writing to control pipe (%s)", strerror(errno));
  /prebuilt/common/jython/
jython.jar 
  /dalvik/libcore/luni-kernel/src/main/native/
java_lang_ProcessManager.cpp 188 // Create 4 pipes: stdin, stdout, stderr, and an exec() status pipe.
191 if (pipe(pipes + i * 2) == -1) {
268 // Close child's pipe ends.
274 // Check status pipe for an error code. If execvp() succeeds, the other
275 // end of the pipe should automatically close, in which case, we'll read
  /external/dropbear/
common-session.c 64 if (pipe(ses.signal_pipe) < 0) {
65 dropbear_exit("signal pipe failed");
141 /* We get woken up when signal handlers write to this pipe.
168 /* We'll just empty out the pipe if required. We don't do
169 any thing with the data, since the pipe's purpose is purely to
  /external/iproute2/tc/
m_police.c 43 fprintf(stderr, "Where: *EXCEEDACT := pipe | ok | reclassify | drop | continue \n");
44 fprintf(stderr, "Where: pipe is only valid for new syntax \n");
68 return "pipe";
91 else if (matches(arg, "pipe") == 0)
231 } else if (matches(*argv, "pipe") == 0) {
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
OMX_WbAmrEnc_CompThread.c 164 OMX_PRCOMM2(pComponentPrivate->dbg, "DATA pipe is set in Component Thread\n");
169 OMX_ERROR4(pComponentPrivate->dbg, "Error while reading from the pipe\n");
181 OMX_PRINT1(pComponentPrivate->dbg, "CMD pipe is set in Component Thread\n");
185 OMX_ERROR4(pComponentPrivate->dbg, "Error in Reading from the Data pipe\n");
193 OMX_ERROR4(pComponentPrivate->dbg, "Error in Reading from the Data pipe\n");
  /system/core/sh/
redir.c 71 # define PIPESIZE 4096 /* amount of buffering in a pipe */
253 * data to a pipe. If the document is short, we can stuff the data in
254 * the pipe without forking.
263 if (pipe(pip) < 0)
264 error("Pipe call failed");
  /external/dbus/dbus/
dbus-spawn.c 94 "Failed to read from child pipe (%s)",
148 "Failed to read from child pipe (%s)",
198 DBusWatch *error_watch; /**< Error pipe watch */
199 DBusWatch *sitter_watch; /**< Sitter pipe watch */
737 /** Helps remember which end of the pipe is which */
739 /** Helps remember which end of the pipe is which */
769 if (pipe (p) < 0)
773 "Failed to create pipe for communicating with child process (%s)",
799 _dbus_warn ("Failed to write data to pipe!\n");
928 _dbus_verbose ("babysitter got POLLIN from parent pipe\n")
    [all...]
  /external/dnsmasq/contrib/lease-access/
lease.access.patch 9 -static void async_event(int pipe, time_t now);
16 /* prime the pipe to load stuff first time. */
103 /* error pipe, debug mode. */
110 -static void async_event(int pipe, time_t now)
114 +int async_event(int pipe, time_t now, struct event_desc* event, unsigned int secs)
120 - if (read_write(pipe, (unsigned char *)&ev, sizeof(ev), 1))
121 + if (read_timeout(pipe, (unsigned char *)&ev, sizeof(ev), now, secs) > 0)
205 +int wait_for_child(int pipe);
206 +int async_event(int pipe, time_t now, struct event_desc*, unsigned int timeout);
302 if (pipe(pipefd) == -1 || !fix_fd(pipefd[1]) || (pid = fork()) == -1
    [all...]
  /external/iproute2/doc/actions/
actions-general 94 3) A feature i call pipe
95 The motivation is derived from Unix pipe mechanism but applied to packets.
149 # pipe the packet to the next action
150 action police rate 1kbit burst 9k pipe \
157 # and if that is exceeded we pipe to the next action
158 action police index 30 mtu 5000 rate 1kbit burst 10k pipe \
178 action order 2: police 1 action pipe rate 1Kbit burst 9Kb mtu 2Kb
183 action order 4: police 30 action pipe rate 1Kbit burst 10Kb mtu 5000b
221 action order 2: police 1 action pipe rate 1Kbit burst 9Kb mtu 2Kb
228 action order 4: police 30 action pipe rate 1Kbit burst 10Kb mtu 5000b
    [all...]
  /external/bluetooth/glib/tests/
spawn-test.c 38 #define pipe(fds) _pipe(fds, 4096, _O_BINARY) macro
203 if (pipe (pipedown) < 0 ||
204 pipe (pipeup) < 0)
gio-test.c 42 #define pipe(fds) _pipe(fds, 4096, _O_BINARY) macro
334 if (pipe (pipe_to_sub) == -1 ||
335 pipe (pipe_from_sub) == -1)
336 perror ("pipe"), exit (1);
  /hardware/ti/omap3/omx/audio/src/openmax_il/g726_dec/src/
OMX_G726Dec_CompThread.c 152 G726DEC_DPRINT (":: DATA pipe is set in Component Thread\n");
155 G726DEC_DPRINT (":: Error while reading from the pipe\n");
164 G726DEC_DPRINT (":: CMD pipe is set in Component Thread\n");
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
OMX_AmrDec_ComponentThread.c 159 OMX_PRCOMM2(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: DATA pipe is set in Component Thread\n",__LINE__);
162 OMX_ERROR4(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: Error while reading from the pipe\n",__LINE__);
173 OMX_PRCOMM2(pComponentPrivate->dbg, "%d :: OMX_AmrDec_ComponentThread.c :: CMD pipe is set in Component Thread\n",__LINE__);
  /dalvik/libcore/archive/src/test/java/java/util/zip/
DeflaterOutputStreamTest.java 54 * takes 3 seconds, co-ordinated by PipedInputStream's 'broken pipe'
  /dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/
SelectorImpl.java 32 import java.nio.channels.Pipe;
134 private Pipe.SinkChannel sink;
135 private Pipe.SourceChannel source;
141 Pipe mockSelector = selectorProvider.openPipe();
  /external/bluetooth/glib/gio/
gcancellable.c 31 #ifndef pipe
32 #define pipe(fds) _pipe(fds, 4096, _O_BINARY) macro
195 if (pipe (cancellable->cancel_pipe) == 0)
204 g_warning ("Failed to create pipe for GCancellable. Out of file descriptors?");
  /external/oprofile/daemon/
opd_perfmon.c 307 fprintf(stderr, "Failed to write child pipe with %s\n",
371 fprintf(stderr, "Failed to read child pipe with %s\n",
424 if (pipe(children[i].up_pipe)) {
425 perror("Couldn't create child pipe.\n");
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
chromium.py 116 stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
182 self._proc = subprocess.Popen(cmd, stdin=subprocess.PIPE,
183 stdout=subprocess.PIPE,
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/tests/
JPEGTest.h 19 * should really be via a pipe or some other protected mechanism for better

Completed in 810 milliseconds

1 2 3 4 56 7 8 91011>>