/libcore/luni/src/test/java/libcore/java/io/ |
FileInputStreamTest.java | 70 FileDescriptor[] pipe = Libcore.os.pipe(); local 71 DataFeeder feeder = new DataFeeder(pipe[1]); 74 FileInputStream fis = new FileInputStream(pipe[0]); 81 IoUtils.closeQuietly(pipe[0]);
|
InterruptedStreamTest.java | 31 import java.nio.channels.Pipe; 82 testInterruptReadableChannel(Pipe.open().source()); 86 testInterruptWritableChannel(Pipe.open().sink());
|
/dalvik/tools/ |
deadcode.py | 103 pipe = os.popen(command) 106 data = pipe.read() 109 pipe.close()
|
/external/chromium/base/ |
sync_socket_win.cc | 16 // This prefix used to be appended to pipe names for pipes 18 const wchar_t kPipePrefix[] = L"\\\\.\\pipe\\chrome.sync."; 77 OPEN_EXISTING, // opens existing pipe.
|
/external/qemu/docs/ |
ANDROID-ADB-QEMU.TXT | 11 been moved to use QEMUD pipe to transfer data between the emulator, and the 19 communication over QEMUD pipe: 44 QEMUD pipe connection in the ADB client, and ADB guest is ready to receive data
|
/frameworks/base/tests/DumpRenderTree/assets/ |
run_layout_tests.py | 62 adb_output = subprocess.Popen(shell_cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0] 167 adb_output = subprocess.Popen(generate_test_list_cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0] 205 adb_output = subprocess.Popen(run_layout_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0] 214 shell_cmd_str, shell=True, stdout=subprocess.PIPE, 215 stderr=subprocess.PIPE).communicate() 230 adb_output = subprocess.Popen(run_layout_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0 [all...] |
/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
|
/hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/ |
libOMX.TI.AMR.encode.so | |
/bionic/libc/include/sys/ |
_sigdefs.h | 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
|
/development/ndk/platforms/android-9/include/sys/ |
_sigdefs.h | 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
|
/external/chromium/testing/gtest/src/ |
gtest-death-test.cc | 270 // severity. On Windows, the message is read from a pipe handle. On other 353 // test child process via a pipe, interprets it to set the outcome_ 371 // Descriptor to the read end of the pipe to the child process. It is 373 // pipe in write_fd_. 375 // Descriptor to the child's write end of the pipe to the parent process. 377 // pipe in read_fd_. 382 // test child process via a pipe, interprets it to set the outcome_ 390 // failure of the death test) or until the pipe is closed (signifying 432 // it finds any data in our pipe. So, here we write a single flag byte 433 // to the pipe, then exit [all...] |
/external/dbus/dbus/ |
Android.mk | 33 dbus-pipe.c \ 34 dbus-pipe-unix.c \
|
/external/e2fsprogs/lib/ |
fpopen.c | 90 * Get the pipe 92 if (pipe(fds) < 0)
|
/external/gtest/src/ |
gtest-death-test.cc | 379 // 1. The parent creates a communication pipe and stores handles to both 382 // necessary to acquire the handle to the write end of the pipe. 383 // 3. The child acquires the write end of the pipe and signals the parent 385 // 4. Now the parent can release the write end of the pipe on its side. If 389 // the pipe will not return when the child terminates. 390 // 5. The parent reads child's output through the pipe (outcome code and 391 // any possible error messages) from the pipe, and its stderr and then 415 // Handle to the read end of the pipe to the child process. 416 // The child keeps its write end of the pipe in the status_handle_ 419 // Handle to the write end of the pipe to the child process [all...] |
/external/llvm/utils/unittest/googletest/ |
gtest-death-test.cc | 270 // severity. On Windows, the message is read from a pipe handle. On other 353 // test child process via a pipe, interprets it to set the outcome_ 371 // Descriptor to the read end of the pipe to the child process. It is 373 // pipe in write_fd_. 375 // Descriptor to the child's write end of the pipe to the parent process. 377 // pipe in read_fd_. 382 // test child process via a pipe, interprets it to set the outcome_ 390 // failure of the death test) or until the pipe is closed (signifying 432 // it finds any data in our pipe. So, here we write a single flag byte 433 // to the pipe, then exit [all...] |
/external/netcat/scripts/ |
irc | 3 ## keep the connection alive. Pipe this thru "nc -v -w 5 irc-server port". 24 # catch our own batch of signals: hup int quit pipe alrm term urg
|
/external/protobuf/gtest/src/ |
gtest-death-test.cc | 257 // severity. On Windows, the message is read from a pipe handle. On other 340 // test child process via a pipe, interprets it to set the outcome_ 358 // Descriptor to the read end of the pipe to the child process. It is 360 // pipe in write_fd_. 362 // Descriptor to the child's write end of the pipe to the parent process. 364 // pipe in read_fd_. 369 // test child process via a pipe, interprets it to set the outcome_ 377 // failure of the death test) or until the pipe is closed (signifying 416 // it finds any data in our pipe. So, here we write a single flag byte 417 // to the pipe, then exit [all...] |
/external/webkit/Tools/BuildSlaveSupport/gtk/ |
daemontools-buildbot.conf | 83 env_CFLAGS="-pipe" 84 env_CXXFLAGS="-pipe"
|
/libcore/luni/src/main/java/java/nio/ |
SelectorImpl.java | 75 * The wakeup pipe. To trigger a wakeup, write a byte to wakeupOut. Each 87 * Create a pipes to trigger wakeup. We can't use a NIO pipe because it 89 * configure the pipe so we can fully drain it without blocking. 92 FileDescriptor[] pipeFds = Libcore.os.pipe(); 205 int i = 1; // Our wakeup pipe comes before all the user's fds. 222 // We need one slot for each element of mutableKeys, plus one for the wakeup pipe. 233 // Read bytes from the wakeup pipe until the pipe is empty.
|
/prebuilt/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/sys/ |
_sigdefs.h | 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
|
/prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/include/sys/ |
_sigdefs.h | 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
|
/prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/sys/ |
_sigdefs.h | 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
|
/prebuilt/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/sys/ |
_sigdefs.h | 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
|
/prebuilt/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/sys/ |
_sigdefs.h | 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
|
/prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/sys/ |
_sigdefs.h | 50 __BIONIC_SIGDEF(PIPE,13,"Broken pipe")
|