/sdk/emulator/tests/ |
Android.mk | 6 # The test-qemud-pipes program is used to check the execution of QEMUD Pipes 7 # See external/qemu/docs/ANDROID-QEMUD-PIPES.TXT for details. 12 LOCAL_MODULE := test-qemud-pipes 13 LOCAL_SRC_FILES := test-qemud-pipes.c
|
test-qemud-pipes.c | 1 /* This program is used to test the QEMUD fast pipes. 2 * See external/qemu/docs/ANDROID-QEMUD-PIPES.TXT for details.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completion2.xml | 3 <!-- Test multiple pipes in the flag value -->
|
/libcore/luni/src/main/native/ |
java_lang_ProcessManager.cpp | 46 #define PIPE_COUNT (4) // number of pipes used to communicate with child proc 48 /** Closes all pipes in the given array. */ 49 static void closePipes(int pipes[], int skipFd) { 51 int fd = pipes[i]; 56 close(pipes[i]); 74 // Create 4 pipes: stdin, stdout, stderr, and an exec() status pipe. 75 int pipes[PIPE_COUNT * 2] = { -1, -1, -1, -1, -1, -1, -1, -1 }; local 77 if (pipe(pipes + i * 2) == -1) { 79 closePipes(pipes, -1); 83 int stdinIn = pipes[0] [all...] |
/external/libnfc-nxp/src/ |
phHciNfc_Pipe.h | 87 /* Pipes for Configuring the RF Readers */ 93 /* Pipes for configuring the Card Emulation */ 100 /* Pipes for Peer to Peer Communication */ 109 /* Clearing all the created Pipes */ 124 * \brief Creates the Pipes of all the Supported Gates . 126 * This function Creates the pipes for all the supported gates 138 * \brief Deletes the Pipes of all the Supported Gates . 140 * This function Deletes the pipes for all the supported gates 151 * \brief Updates the Information of Pipes of all the Supported Gates . 249 * \brief Creates and Update the Pipes during the Sessio [all...] |
/frameworks/compile/libbcc/runtime/make/ |
options.mk | 29 # FIXME: Remove these pipes once ranlib errors are fixed. 32 # FIXME: Remove these pipes once ranlib errors are fixed.
|
/external/chromium/third_party/libevent/test/ |
bench.c | 62 static int *pipes; variable 76 write(pipes[2 * widx + 1], "e", 1); 89 for (cp = pipes, i = 0; i < num_pipes; i++, cp += 2) { 101 write(pipes[i * space + 1], "e", 1); 160 pipes = calloc(num_pipes * 2, sizeof(int)); 161 if (events == NULL || pipes == NULL) { 168 for (cp = pipes, i = 0; i < num_pipes; i++, cp += 2) {
|
/packages/apps/Browser/src/com/android/browser/homepages/ |
HomeProvider.java | 75 ParcelFileDescriptor[] pipes = ParcelFileDescriptor.createPipe();
local 76 final ParcelFileDescriptor write = pipes[1];
79 return pipes[0];
|
/external/bluetooth/glib/glib/ |
gspawn.h | 38 G_SPAWN_ERROR_READ, /* read or select on pipes failed */ 96 /* Opens pipes for non-NULL standard_output, standard_input, standard_error, 97 * and returns the parent's end of the pipes.
|
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/ |
FileSystemResourceLoader.java | 48 // e.g. pipes work. 75 // e.g. pipes work.
|
/hardware/libhardware/include/hardware/ |
qemu_pipe.h | 45 * ENOSYS -> fast pipes not available in this system. 50 * You should be able to open several pipes to the same pipe service,
|
/external/bison/djgpp/ |
subpipe.h | 1 /* Subprocesses with pipes.
|
/external/bison/lib/ |
subpipe.h | 1 /* Subprocesses with pipes.
|
/external/qemu/android/ |
opengles.h | 39 /* set to TRUE if you want to use fast GLES pipes, 0 if you want to
|
/development/tools/emulator/system/libqemu/ |
test_host_2.c | 17 /* This program is used to test the QEMUD fast pipes. 18 * See external/qemu/docs/ANDROID-QEMUD-PIPES.TXT for details.
|
test_host_1.c | 17 /* This program is used to test the QEMUD fast pipes. 18 * See external/qemu/docs/ANDROID-QEMUD-PIPES.TXT for details.
|
/external/protobuf/src/google/protobuf/compiler/ |
subprocess.h | 87 // The file handles for our end of the child's pipes. We close each and 95 // The file descriptors for our end of the child's pipes. We close each and
|
/external/bluetooth/glib/tests/ |
spawn-test.c | 201 printf ("Now talking to it through pipes.\n"); 206 fprintf (stderr, "Could not create pipes\n"); 210 if (!g_shell_parse_argv (g_strdup_printf ("'.\\spawn-test-win32-gui.exe' pipes %d %d",
|
/development/tools/ |
make_key | 36 # Use named pipes to connect get the raw RSA private key to the cert-
|
/external/blktrace/doc/ |
btrace.8 | 17 and pipes the output through \fIblkparse\fR for formatting. See blktrace (8)
|
/external/chromium/third_party/libevent/sample/ |
event-test.c | 106 /* Linux pipes are broken, we need O_RDWR instead of O_RDONLY */
|
/external/dbus/dbus/ |
dbus-pipe.c | 53 * check if a pipe is valid; pipes can be set invalid, similar to
|
/external/oprofile/events/mips/20K/ |
events | 8 event:0x2 counters:0 um:zero minimum:500 name:FETCH_GROUPS : Fetch groups entering CPU execution pipes
|
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
iochannels.sgml | 5 portable support for using files, pipes and sockets 10 descriptors, pipes, and sockets, and integrating them into the 17 This works for plain file descriptors, pipes and sockets. 80 On UNIX systems this works for plain files, pipes, and sockets. 437 @G_IO_HUP: Hung up (the connection has been broken, usually for pipes
|
/external/qemu/hw/ |
goldfish_pipe.c | 810 /* the list of all pipes */ 811 Pipe* pipes; member in struct:PipeDevice 813 /* the list of signalled pipes */ 828 Pipe** lookup = pipe_list_findp_channel(&dev->pipes, dev->channel); 852 pipe->next = dev->pipes; 853 dev->pipes = pipe; 1057 /* If not already there, add to the list of signaled pipes */
|