HomeSort by relevance Sort by last modified time
    Searched refs:pipe (Results 201 - 225 of 420) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium/base/
message_pump_libevent.cc 299 if (pipe(fds)) {
300 DLOG(ERROR) << "pipe() failed, errno: " << errno;
304 DLOG(ERROR) << "SetNonBlocking for pipe fd[0] failed, errno: " << errno;
308 DLOG(ERROR) << "SetNonBlocking for pipe fd[1] failed, errno: " << errno;
340 // Called if a byte is received on the wakeup pipe.
  /external/dhcpcd/
bind.c 71 /* Setup a signal pipe so parent knows when to exit. */
72 if (pipe(sidpipe) == -1) {
73 syslog(LOG_ERR, "pipe: %m");
  /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
svr-main.c 268 if (pipe(childpipe) < 0) {
269 TRACE(("error creating child pipe"))
  /external/e2fsprogs/misc/
logsave.c 168 if (pipe(fds) < 0) {
169 perror("pipe");
  /external/libnfc-nxp/src/
phHciNfc_LinkMgmt.c 172 /* Link Mgmt pipe open sequence */
183 /* Populate the pipe information in the pipe handle */
184 ((phHciNfc_Pipe_Info_t *)p_pipe_info)->pipe.pipe_id =
265 * \brief Opens the Link Management Pipe of the Link Management Gate.
267 * This function Opens the Link Management Pipe of the Link Management
  /external/linux-tools-perf/bench/
sched-messaging.c 67 if (pipe(fds) == 0)
74 barf(use_pipes ? "pipe()" : "socketpair()");
225 /* Create the pipe between client and server */
260 OPT_BOOLEAN('p', "pipe", &use_pipes,
261 "Use pipe() instead of socketpair()"),
  /external/openssh/regress/
Makefile 27 broken-pipe \
  /external/qemu/
os-posix.c 245 if (pipe(fds) == -1)
331 perror("daemonize. Writing to pipe\n");
343 * Creates an eventfd that looks like a pipe and has EFD_CLOEXEC set.
  /system/core/libcutils/
abort_socket.c 38 /* create pipe with non-blocking write, so that asocket_close() cannot
40 if (pipe(abort_fd))
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 92 if (pipe(mCtrlPipe)) {
93 SLOGE("pipe failed (%s)", strerror(errno));
111 SLOGE("Error writing to control pipe (%s)", strerror(errno));
  /system/core/sh/
cd.c 380 * c implementation of getcwd, that does not open a pipe to
406 if (pipe(pip) < 0)
407 error("Pipe call failed");
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");
  /system/netd/
TetherController.cpp 111 if (pipe(pipefd) < 0) {
112 ALOGE("pipe failed (%s)", strerror(errno));
144 // TODO: pipe through metered status from ConnService
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/tests/
WBAmrDecTest.c 614 /* Create a pipe used to queue data from the callback. */
615 retval = pipe(IpBuf_Pipe);
617 APP_DPRINT( "Error:Fill Data Pipe failed to open\n");
621 retval = pipe(OpBuf_Pipe);
623 APP_DPRINT( "Error:Empty Data Pipe failed to open\n");
627 retval = pipe(Event_Pipe);
629 APP_DPRINT( "Error:Empty Event Pipe failed to open\n");
745 printf("[AMRTEST] - failure to open WRITE pipe\n");
748 printf("[AMRTEST] - opened WRITE pipe\n");
752 printf("[AMRTEST] - failure to open READ pipe\n")
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java 381 int pipe = value.lastIndexOf('|', index); local
383 if (pipe != -1) {
384 value = value.substring(0, pipe).trim() + value.substring(endIndex).trim();
386 pipe = value.indexOf('|', endIndex);
387 if (pipe != -1) {
388 value = value.substring(0, index).trim() + value.substring(pipe + 1).trim();
    [all...]
  /dalvik/vm/jdwp/
JdwpSocket.cpp 381 if (pipe(netState->wakePipe) < 0) {
382 ALOGE("pipe failed");
472 if (pipe(netState->wakePipe) < 0) {
473 ALOGE("pipe failed");
  /external/linux-tools-perf/
Android.mk 237 bench/sched-pipe.c \
builtin-record.c 460 if (forks && (pipe(child_ready_pipe) < 0 || pipe(go_pipe) < 0)) {
561 perror("unable to read pipe");
579 perror("unable to read pipe");
  /external/ppp/pppd/
Makefile.linux 35 COPTS = -O2 -pipe -Wall -g
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 80 #define pipe(fds) _pipe(fds, 4096, O_BINARY) macro
586 // different things to handle them. We'll test by writing to a pipe and
593 // Need to create a new pipe each time because ReadStuff() expects
595 ASSERT_EQ(pipe(files), 0);
  /external/skia/
Android.mk 285 src/pipe/SkGPipeRead.cpp \
286 src/pipe/SkGPipeWrite.cpp \
478 $(LOCAL_PATH)/include/pipe \
501 $(LOCAL_PATH)/include/pipe \
  /external/v8/src/
d8-posix.cc 277 dup2(stdout_fds[kWriteFD], 1); // Dup pipe fd to stdout.
282 // them it went wrong. If it went well the pipe is closed.
482 if (pipe(exec_error_fds) != 0) {
483 return ThrowException(String::New("pipe syscall failed."));
485 if (pipe(stdout_fds) != 0) {
486 return ThrowException(String::New("pipe syscall failed."));
  /libcore/luni/src/main/java/libcore/io/
ForwardingOs.java 98 public FileDescriptor[] pipe() throws ErrnoException { return os.pipe(); } method in class:ForwardingOs

Completed in 1054 milliseconds

1 2 3 4 5 6 7 891011>>