HomeSort by relevance Sort by last modified time
    Searched full:pipe (Results 51 - 75 of 1632) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/bison/lib/
unistd--.h 27 #undef pipe macro
28 #define pipe pipe_safer macro
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/chromium/chrome/browser/cocoa/
authorization_util.mm 87 FILE** pipe,
89 // pipe may be NULL, but this function needs one. In that case, use a local
90 // pipe.
93 if (pipe) {
94 pipe_pointer = pipe;
132 if (!pipe) {
147 FILE** pipe,
154 pipe,
  /frameworks/native/include/media/openmax/
OMX_ContentPipe.h 122 CP_CheckBytesNotReady, /**< The pipe is still retrieving bytes
126 CP_CheckBytesInsufficientBytes , /**< The pipe has retrieved all bytes
129 CP_CheckBytesAtEndOfStream, /**< The pipe has reached the end of stream
137 /** enumeration of content pipe events sent to the client callback.
142 CP_Overflow, /** enumeration of content pipe events sent to the client callback*/
143 CP_PipeDisconnected , /** enumeration of content pipe events sent to the client callback*/
149 /** content pipe definition
173 Note: pipe client provides pointer. This function is appropriate for small high frequency reads. */
176 /** Retrieve a buffer allocated by the pipe that contains the requested number of bytes.
179 Note: pipe provides pointer. This function is appropriate for large reads. The client must call
    [all...]
  /external/dbus/test/data/valid-config-files/
debug-allow-all-sha1.conf.cmake 1 <!-- Bus that listens on a debug pipe and requires SHA1 auth, used to test SHA1 -->
debug-allow-all.conf.cmake 1 <!-- Bus that listens on a debug pipe and doesn't create any restrictions -->
  /external/dbus/test/data/valid-config-files-system/
debug-allow-all-fail.conf.cmake 1 <!-- Bus that listens on a debug pipe and doesn't create any restrictions -->
debug-allow-all-pass.conf.cmake 1 <!-- Bus that listens on a debug pipe and doesn't create any restrictions -->
  /external/oprofile/daemon/
opd_pipe.c 32 perror("oprofiled: couldn't create pipe: ");
44 perror("oprofiled: couldn't open pipe: ");
67 /* get a file descriptor to the pipe */
90 "Warning: invalid pipe request received (dropped request(s): %ld)\n",
  /frameworks/av/media/libaah_rtp/
pipe_event.cpp 33 // Create the pipe.
34 if (pipe(pipe_) >= 0) {
35 // Set non-blocking mode on the read side of the pipe so we can
39 ALOGE("Failed to create pipe event %d %d %d",
  /external/chromium/build/
compiler_version.py 22 pipe = subprocess.Popen(compiler, stdout=subprocess.PIPE, shell=True)
23 gcc_output = pipe.communicate()[0]
  /frameworks/av/services/audioflinger/
MonoPipeReader.h 30 // any data already in the pipe is visible to this PipeReader.
33 MonoPipeReader(MonoPipe* pipe);
55 MonoPipe* pipe() const { return mPipe; }
MonoPipe.h 25 // MonoPipe is similar to Pipe except:
28 // - write() can optionally block if the pipe is full
29 // Like Pipe, it is not multi-thread safe for either writer or reader
59 // average number of frames present in the pipe under normal conditions.
70 // 32-bit overflow is possible if the pipe is active for a long time, but if that happens it's
78 size_t mSetpoint; // target value for pipe fill depth
79 const bool mWriteCanBlock; // whether write() should block if the pipe is full
MonoPipeReader.cpp 26 MonoPipeReader::MonoPipeReader(MonoPipe* pipe) :
27 NBAIO_Source(pipe->mFormat),
28 mPipe(pipe)
  /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...]
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_named_pipe.c 2 * WPA Supplicant / Windows Named Pipe -based control interface
44 #define NAMED_PIPE_PREFIX TEXT("\\\\.\\pipe\\") TEXT(WPA_SUPPLICANT_NAMED_PIPE)
65 HANDLE pipe; member in struct:wpa_ctrl_dst
100 static int ctrl_broken_pipe(HANDLE pipe, int used)
104 if (PeekNamedPipe(pipe, NULL, 0, NULL, NULL, NULL))
122 if (ctrl_broken_pipe(dst->pipe, dst->used)) {
123 wpa_printf(MSG_DEBUG, "CTRL: closing broken pipe %p",
141 wpa_printf(MSG_DEBUG, "CTRL: Open pipe %p", dst);
145 dst->pipe = INVALID_HANDLE_VALUE;
166 /* TODO: add support for configuring access list for the pipe */
544 HANDLE pipe; member in struct:wpa_global_dst
    [all...]
  /hardware/libhardware/include/hardware/
qemu_pipe.h 32 /* Try to open a new Qemu fast-pipe. This function returns a file descriptor
36 * This file descriptor can be used as a standard pipe/socket descriptor.
50 * You should be able to open several pipes to the same pipe service,
66 snprintf(buff, sizeof buff, "pipe:%s", pipeName);
79 D("%s: Could not connect to %s pipe service: %s", __FUNCTION__, pipeName, strerror(errno));
  /libcore/luni/src/main/java/java/io/
PipedReader.java 23 * Receives information on a communications pipe. When two threads want to pass
68 * The size of the default pipe in characters
73 * Indicates if this pipe is connected
109 throw new IllegalArgumentException("pipe size " + pipeSize + " too small");
132 * the pipe and notifies all threads waiting to read or write.
166 throw new IOException("Pipe already connected");
169 throw new IOException("Pipe is closed");
180 * reader has been reached. If there is no data in the pipe, this method
203 * there is no data in the pipe, this method blocks until at least one byte
233 throw new IOException("Pipe not connected")
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
SinkChannelTest.java 24 import java.nio.channels.Pipe;
32 * Tests for Pipe.SinkChannel class
40 private Pipe pipe; field in class:SinkChannelTest
42 private Pipe.SinkChannel sink;
44 private Pipe.SourceChannel source;
52 pipe = Pipe.open();
53 sink = pipe.sink();
54 source = pipe.source()
    [all...]
  /libcore/luni/src/main/java/java/nio/
PipeImpl.java 23 import java.nio.channels.Pipe;
31 * Implements {@link java.nio.channels.Pipe}.
33 final class PipeImpl extends Pipe {
39 FileDescriptor[] fds = Libcore.os.pipe();
70 private class PipeSourceChannel extends Pipe.SourceChannel implements FileDescriptorChannel {
105 private class PipeSinkChannel extends Pipe.SinkChannel implements FileDescriptorChannel {
  /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)
  /external/checkpolicy/test/
Makefile 9 CFLAGS ?= -g -Wall -W -Werror -O2 -pipe
  /external/openssh/regress/
yes-head.sh 4 tid="yes pipe head"
  /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...]
  /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 244 milliseconds

1 23 4 5 6 7 8 91011>>