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

1 2 34 5 6 7 8 91011>>

  /system/core/nexus/
WifiScanner.cpp 42 if(pipe(mCtrlPipe))
61 LOGE("Error writing to control pipe (%s)", strerror(errno));
WifiStatusPoller.cpp 40 if (pipe(mCtrlPipe))
53 LOGE("Error writing to control pipe (%s)", strerror(errno));
  /development/host/windows/usb/legacy/driver/
android_usb_bulk_file_object.cpp 19 that encapsulates extension to a bulk pipe file objects.
android_usb_interrupt_file_object.cpp 19 that encapsulates extension to an interrupt pipe file objects.
  /development/simulator/app/
ported.h 38 int pipe(int filedes[2]);
  /external/bluetooth/glib/tests/
mainloop-test.c 13 #include <fcntl.h> /* For _O_BINARY used by pipe() macro */
15 #define pipe(fds) _pipe(fds, 4096, _O_BINARY) macro
200 if (pipe(fds) < 0)
202 g_warning ("Cannot create pipe %s\n", g_strerror (errno));
  /external/dbus/dbus/
dbus-server-debug-pipe.h 2 /* dbus-server-debug-pipe.h In-proc debug server implementation
  /external/dropbear/
common-chansession.c 36 {SIGPIPE, "PIPE"},
  /external/kernel-headers/original/asm-generic/
errno-base.h 35 #define EPIPE 32 /* Broken pipe */
  /frameworks/base/tests/DumpRenderTree/assets/
run_page_cycler.py 69 (adb_output, adb_error) = subprocess.Popen(run_load_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
101 stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_dec/src/
Makefile 18 CFLAGS+=-I../inc -I$(OMXINCLUDEDIR) -I$(SYSTEMINCLUDEDIR) -I$(BRIDGEINCLUDEDIR) -Wall -fpic -pipe -DOMAP_2430 -DOMX_DEBUG
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/
Makefile 18 CFLAGS+=-I../inc -I$(OMXINCLUDEDIR) -I$(SYSTEMINCLUDEDIR) -I$(BRIDGEINCLUDEDIR) -Wall -fpic -pipe -DOMAP_2430 -DOMX_DEBUG
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
Makefile 18 CFLAGS+=-I../inc -I$(OMXINCLUDEDIR) -I$(SYSTEMINCLUDEDIR) -I$(BRIDGEINCLUDEDIR) -Wall -fpic -pipe -DOMAP_2430 -DOMX_DEBUG
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/src/
Makefile 17 CFLAGS+=-I../inc -I$(OMXINCLUDEDIR) -I$(SYSTEMINCLUDEDIR) -I$(BRIDGEINCLUDEDIR) -Wall -fpic -pipe -DOMX_DEBUG -DFUNC
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/src/
Makefile 17 CFLAGS+=-I../inc -I$(OMXINCLUDEDIR) -I$(SYSTEMINCLUDEDIR) -I$(BRIDGEINCLUDEDIR) -Wall -fpic -pipe -DOMX_DEBUG -DFUNC
  /hardware/ti/omap3/omx/system/src/openmax_il/lcml/src/
Makefile 16 CFLAGS+=-I../inc -I$(OMXINCLUDEDIR) -I$(BRIDGEINCLUDEDIR) -Wall -ansi -fpic -pipe
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/src/
Makefile 16 CFLAGS+=-I../inc -Wall -ansi -fpic -pipe -DSTATIC_TABLE
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
Makefile 12 CFLAGS+=-I../inc -I$(OMXINCLUDEDIR) -Wall -fpic -pipe -D__PERF_UNIT_TEST__
  /hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/
Makefile 20 CFLAGS+=-I../inc -I$(OMXINCLUDEDIR) -I$(SYSTEMINCLUDEDIR) -I$(BRIDGEINCLUDEDIR) -Wall -ansi -fpic -pipe #-DOMX_DEBUG
  /hardware/ti/wlan/wl1271/CUDK/tiwlan_loader/
Android.mk 20 ARMFLAGS = -fno-common -g -fno-builtin -Wall #-pipe
  /system/extras/tests/sdcard/
testcase.cpp 57 if (pipe(mIpc) < 0)
59 fprintf(stderr, "pipe failed\n");
62 if (pipe(mIpc + 2) < 0)
64 fprintf(stderr, "pipe failed\n");
  /system/wlan/ti/wilink_6_1/CUDK/tiwlan_loader/
Android.mk 20 ARMFLAGS = -fno-common -g -fno-builtin -Wall #-pipe
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/
eth_utils.c 154 /* Create a pipe to control the child */
157 if (pipe(module_pipe) < 0)
159 console_printf_terminal("eth_utils, error creating pipe\n");
194 /* Close the write direction of the pipe - because i only read information from this pipe. */
383 /* Close the read direction of the pipe - because i only write information from this pipe. (to child process) */
  /external/zlib/contrib/asm586/
match.S 226 movw (%edi,%edx,2), %cx /* 2 U pipe */
227 movl wmask(%esp), %edx /* 2 V pipe */
228 cmpl %ebp, %ecx /* 3 U pipe */
229 jbe LeaveNow /* 3 V pipe */
230 subl $0x00010000, %ebx /* 4 U pipe */
231 js LeaveNow /* 4 V pipe */
232 LoopEntry: movb -1(%esi,%ecx), %al /* 5 U pipe */
233 andl %ecx, %edx /* 5 V pipe */
234 cmpb %bl, %al /* 6 U pipe */
235 jnz LookupLoop /* 6 V pipe */
    [all...]
  /dalvik/libcore/nio/src/main/java/java/nio/channels/spi/
SelectorProvider.java 26 import java.nio.channels.Pipe;
38 * providing instances of {@link DatagramChannel}, {@link Pipe},
201 * Creates a new {@code Pipe}.
203 * @return the new pipe.
207 public abstract Pipe openPipe() throws IOException;

Completed in 1320 milliseconds

1 2 34 5 6 7 8 91011>>