/external/oprofile/daemon/ |
opd_pipe.c | 31 perror("oprofiled: couldn't create pipe: "); 43 perror("oprofiled: couldn't open pipe: "); 65 /* get a file descriptor to the pipe */ 87 "Warning: invalid pipe request received (dropped request(s): %ld)\n",
|
/development/host/windows/usb/legacy/driver/ |
android_usb_bulk_file_object.h | 21 that encapsulates extension to a bulk pipe file objects.
27 object that represent opened bulk pipe. Instances of this class must be
37 @param wdf_pipe_obj[in] KMDF pipe for this file
|
android_usb_interrupt_file_object.h | 21 that encapsulates extension to an interrupt pipe file objects.
27 file object that represent opened interrupt pipe. Instances of this class
37 @param wdf_pipe_obj[in] KMDF pipe for this file
|
/external/bison/lib/ |
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);
|
/external/wpa_supplicant/ |
ctrl_iface_named_pipe.c | 2 * WPA Supplicant / Windows Named Pipe -based control interface 50 #define NAMED_PIPE_PREFIX TEXT("\\\\.\\pipe\\") TEXT(WPA_SUPPLICANT_NAMED_PIPE) 71 HANDLE pipe; member in struct:wpa_ctrl_dst 106 static int ctrl_broken_pipe(HANDLE pipe, int used) 110 if (PeekNamedPipe(pipe, NULL, 0, NULL, NULL, NULL)) 128 if (ctrl_broken_pipe(dst->pipe, dst->used)) { 129 wpa_printf(MSG_DEBUG, "CTRL: closing broken pipe %p", 147 wpa_printf(MSG_DEBUG, "CTRL: Open pipe %p", dst); 151 dst->pipe = INVALID_HANDLE_VALUE; 172 /* TODO: add support for configuring access list for the pipe */ 549 HANDLE pipe; member in struct:wpa_global_dst [all...] |
wpa_ctrl.c | 64 HANDLE pipe; member in struct:wpa_ctrl 405 #define NAMED_PIPE_PREFIX TEXT("\\\\.\\pipe\\") TEXT(WPA_SUPPLICANT_NAMED_PIPE) 434 ctrl->pipe = CreateFile(name, GENERIC_READ | GENERIC_WRITE, 0, 437 * Current named pipe server side in wpa_supplicant is 438 * re-opening the pipe for new clients only after the previous 443 if (ctrl->pipe != INVALID_HANDLE_VALUE || 448 if (ctrl->pipe == INVALID_HANDLE_VALUE) { 454 if (!SetNamedPipeHandleState(ctrl->pipe, &mode, NULL, NULL)) { 455 CloseHandle(ctrl->pipe); 466 CloseHandle(ctrl->pipe); [all...] |
/external/wpa_supplicant_6/wpa_supplicant/ |
ctrl_iface_named_pipe.c | 2 * WPA Supplicant / Windows Named Pipe -based control interface 50 #define NAMED_PIPE_PREFIX TEXT("\\\\.\\pipe\\") TEXT(WPA_SUPPLICANT_NAMED_PIPE) 71 HANDLE pipe; member in struct:wpa_ctrl_dst 106 static int ctrl_broken_pipe(HANDLE pipe, int used) 110 if (PeekNamedPipe(pipe, NULL, 0, NULL, NULL, NULL)) 128 if (ctrl_broken_pipe(dst->pipe, dst->used)) { 129 wpa_printf(MSG_DEBUG, "CTRL: closing broken pipe %p", 147 wpa_printf(MSG_DEBUG, "CTRL: Open pipe %p", dst); 151 dst->pipe = INVALID_HANDLE_VALUE; 172 /* TODO: add support for configuring access list for the pipe */ 550 HANDLE pipe; member in struct:wpa_global_dst [all...] |
/development/simulator/app/ |
MessageStream.h | 20 #include "Pipe.h" 99 * Read or write this message on the specified pipe. 104 bool read(Pipe* pPipe, bool wait); 105 bool write(Pipe* pPipe) const; 133 * the read pipe from multiple threads will have unpredictable behavior. 149 bool init(Pipe* readPipe, Pipe* writePipe, bool initiateHello); 171 * Get our incoming traffic pipe. This is useful on Linux systems 175 Pipe* getReadPipe(void) { return mReadPipe; } 184 Pipe* mReadPipe [all...] |
ExternalRuntime.cpp | 64 Pipe* reader; 65 Pipe* writer; 70 fprintf(stderr, "Sim: failed creating named pipe '%s'\n",
|
SimRuntime.h | 74 bool create(Pipe* reader, Pipe* writer); 97 * Return a copy of our input pipe so the event system can monitor 100 Pipe* getReadPipe(void) { return mStream.getReadPipe(); }
|
/dalvik/libcore/nio/src/main/java/org/apache/harmony/nio/internal/ |
PipeImpl.java | 24 import java.nio.channels.Pipe; 31 * default implementation of Pipe 35 final class PipeImpl extends Pipe { 80 * @see java.nio.channels.Pipe#sink() 87 * @see java.nio.channels.Pipe#source() 96 private class SourceChannelImpl extends Pipe.SourceChannel implements 153 private class SinkChannelImpl extends Pipe.SinkChannel implements
|
/system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/ |
ipc.c | 85 /* Create the IPC pipe */ 88 if (pipe(ipc_pipe) < 0) 90 console_printf_terminal("IPC Error, can't create pipe\n"); 95 /* Close the write direction of the pipe - because i only read information from this pipe. */ 110 /* Close the read direction of the pipe */
|
/bionic/libc/arch-sh/bionic/ |
pipe.S | 31 .type pipe, @function 32 .globl pipe 35 pipe: label
|
/development/testrunner/ |
run_command.py | 90 output_dest = subprocess.PIPE 95 stdin_dest = subprocess.PIPE 98 pipe = subprocess.Popen( 105 pid.append(pipe.pid) 107 output = pipe.communicate(input=stdin_input)[0] 115 if pipe.returncode: 117 pipe.returncode)) 167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE, 177 stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
|
/frameworks/base/tests/DumpRenderTree/assets/ |
run_reliability_tests.py | 41 shell=True, stdout=subprocess.PIPE, 42 stderr=subprocess.PIPE).communicate()[0] 49 shell=True, stdout=subprocess.PIPE, 50 stderr=subprocess.PIPE).communicate() 155 stdout=subprocess.PIPE, 156 stderr=subprocess.PIPE) 193 stdout=subprocess.PIPE, 194 stderr=subprocess.PIPE).communicate()[0] 201 shell_cmd_str, shell=True, stdout=subprocess.PIPE, 202 stderr=subprocess.PIPE).communicate( [all...] |
/system/core/include/cutils/ |
abort_socket.h | 35 * on both the primary socket and a local pipe. This makes the poll() abortable 36 * by writing a byte to the local pipe in asocket_abort(). 42 * socket, due to the local pipe. It may be possible to use a global pipe per 60 int abort_fd[2]; /* pipe used to abort */
|
/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/ |
SinkChannelTest.java | 32 import java.nio.channels.Pipe; 36 import java.nio.channels.Pipe.SinkChannel; 42 * Tests for Pipe.SinkChannel class 45 value = java.nio.channels.Pipe.SinkChannel.class, 67 private Pipe pipe; field in class:SinkChannelTest 69 private Pipe.SinkChannel sink; 71 private Pipe.SourceChannel source; 79 pipe = Pipe.open() [all...] |
/external/ppp/pppd/plugins/ |
passprompt.c | 41 if (pipe(p)) { 42 warn("Can't make a pipe for %s", promptprog); 69 /* we are the parent, read the password from the pipe */
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
EventLogTags.logtags | 21 # @param enabled_sources A pipe-separated list of source names, ordered by source ranking. 27 # @param A pipe-separated list of suggestion log names. 29 # @param queried_sources A pipe-separated list of the sources that were queried to produce
|
/frameworks/base/core/java/android/net/http/ |
Connection.java | 164 LinkedList<Request> pipe = new LinkedList<Request>(); local 171 states[state] + " pipe " + pipe.size()); 185 if (pipe.size() == maxPipe) { 251 pipe.addLast(req); 254 state = clearPipe(pipe) ? DONE : SEND; 259 pipe.addLast(req); 267 int pipeSize = pipe.size(); 278 req = (Request)pipe.removeFirst(); 300 pipe.addFirst(req) [all...] |
/external/kernel-headers/original/linux/ |
limits.h | 15 #define PIPE_BUF 4096 /* # bytes in atomic write to a pipe */
|
/external/v8/tools/ |
linux-tick-processor.py | 42 stdout=subprocess.PIPE, 44 pipe = process.stdout 46 for line in pipe: 54 pipe.close()
|
/hardware/ti/omap3/dspbridge/libbridge/ |
Android.mk | 20 LOCAL_CFLAGS += -pipe -fomit-frame-pointer -Wall -Wno-trigraphs -Werror-implicit-function-declaration -fno-strict-aliasing -mapcs -mno-sched-prolog -mabi=aapcs-linux -mno-thumb-interwork -msoft-float -Uarm -DMODULE -D__LINUX_ARM_ARCH__=7 -fno-common -DLINUX -DOMAP_3430 -fpic
|
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/ |
Android.mk | 37 LOCAL_CFLAGS := -Wall -fpic -pipe -O0 -DOMX_DEBUG=1
|
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/ |
Android.mk | 34 LOCAL_CFLAGS := -Wall -fpic -pipe -O0 -DOMX_DEBUG=1
|