/external/compiler-rt/lib/tsan/lit_tests/ |
fd_close_norace2.cc | 6 int pipes[2]; variable 10 while (read(pipes[0], &x, 1) != 1) { 12 close(pipes[0]); 13 close(pipes[1]); 18 if (pipe(pipes)) 23 while (write(pipes[1], &t, 1) != 1) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pipes.py | 1 import pipes namespace 8 raise unittest.SkipTest('pipes module only works on posix') 21 t = pipes.Template() 22 t.append(s_command, pipes.STDIN_STDOUT) 32 t = pipes.Template() 33 t.append(s_command + ' < $IN > $OUT', pipes.FILEIN_FILEOUT) 41 t = pipes.Template() 42 t.append(s_command + ' < $IN', pipes.FILEIN_STDOUT) 53 t=pipes.Template() 63 t=pipes.Template( [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_pipes.py | 1 import pipes namespace 8 raise unittest.SkipTest('pipes module only works on posix') 21 t = pipes.Template() 22 t.append(s_command, pipes.STDIN_STDOUT) 32 t = pipes.Template() 33 t.append(s_command + ' < $IN > $OUT', pipes.FILEIN_FILEOUT) 41 t = pipes.Template() 42 t.append(s_command + ' < $IN', pipes.FILEIN_STDOUT) 53 t=pipes.Template() 63 t=pipes.Template( [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/targets/gbm/ |
Makefile | 27 GBM_EXTRA_TARGETS = pipes 28 GBM_EXTRA_INSTALL = install-pipes 29 GBM_EXTRA_CLEAN = clean-pipes 36 pipes: 38 install-pipes: 40 clean-pipes:
|
/external/mesa3d/src/gallium/targets/gbm/ |
Makefile | 27 GBM_EXTRA_TARGETS = pipes 28 GBM_EXTRA_INSTALL = install-pipes 29 GBM_EXTRA_CLEAN = clean-pipes 36 pipes: 38 install-pipes: 40 clean-pipes:
|
/libcore/luni/src/main/native/ |
java_lang_ProcessManager.cpp | 69 #define PIPE_COUNT 4 // Number of pipes used to communicate with child. 71 static void ClosePipes(int pipes[], int skip_fd) { 73 int fd = pipes[i]; 75 close(pipes[i]); 93 // Create 4 pipes: stdin, stdout, stderr, and an exec() status pipe. 94 int pipes[PIPE_COUNT * 2] = { -1, -1, -1, -1, -1, -1, -1, -1 }; local 96 if (pipe(pipes + i * 2) == -1) { 98 ClosePipes(pipes, -1); 102 int stdinIn = pipes[0]; 103 int stdinOut = pipes[1] [all...] |
/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 -->
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
toaiff.py | 16 import pipes namespace 23 t = pipes.Template() 33 t = pipes.Template() 37 t = pipes.Template() 41 t = pipes.Template() 45 t = pipes.Template() 49 t = pipes.Template() 53 t = pipes.Template() 57 uncompress = pipes.Template()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
toaiff.py | 16 import pipes namespace 23 t = pipes.Template() 33 t = pipes.Template() 37 t = pipes.Template() 41 t = pipes.Template() 45 t = pipes.Template() 49 t = pipes.Template() 53 t = pipes.Template() 57 uncompress = pipes.Template()
|
/hardware/qcom/display/msm8974/libhwcomposer/ |
hwc_mdpcomp.h | 125 /* allocate MDP pipes from overlay */ 127 /* configures MPD pipes */ 130 /* Checks for pipes needed versus pipes available */ 197 /* configure's overlay pipes for the frame */ 201 /* allocates pipes to selected candidates */ 205 /* Checks for pipes needed versus pipes available */ 225 /* configure's overlay pipes for the frame */ 229 /* allocates pipes to selected candidates * [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...] |
/external/chromium_org/tools/valgrind/asan/ |
asan_wrapper.sh | 11 # starts supporting pipes.
|
/hardware/qcom/display/msm8960/libhwcomposer/ |
hwc_mdpcomp.h | 117 /* No of pipes needed for Framebuffer */ 119 /* calculates pipes needed for the panel */ 125 /* configures MPD pipes */ 132 /* allocate MDP pipes from overlay */ 160 /* gets available pipes for mdp comp */ 190 /* configure's overlay pipes for the frame */ 194 /* allocates pipes to selected candidates */ 217 /* configure's overlay pipes for the frame */ 221 /* allocates pipes to selected candidates */
|
/hardware/qcom/display/msm8960/liboverlay/ |
Android.mk | 19 pipes/overlayGenPipe.cpp
|
/hardware/qcom/display/msm8974/liboverlay/ |
Android.mk | 20 pipes/overlayGenPipe.cpp
|
/hardware/qcom/display/msm8x26/libhwcomposer/ |
hwc_mdpcomp.h | 117 /* No of pipes needed for Framebuffer */ 119 /* calculates pipes needed for the panel */ 125 /* configures MPD pipes */ 132 /* allocate MDP pipes from overlay */ 160 /* gets available pipes for mdp comp */ 190 /* configure's overlay pipes for the frame */ 194 /* allocates pipes to selected candidates */ 217 /* configure's overlay pipes for the frame */ 221 /* allocates pipes to selected candidates */
|
/hardware/qcom/display/msm8x26/liboverlay/ |
Android.mk | 19 pipes/overlayGenPipe.cpp
|
/external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/ |
Makefile | 35 default: $(PROGS) pipes 45 pipes:
|
/external/clang/test/Misc/ |
dev-fd-fs.c | 7 // Check reading from named pipes. We cat the input here instead of redirecting 16 // Check writing to /dev/fd named pipes. We use cat here as before to ensure we
|
/external/compiler-rt/make/ |
options.mk | 35 # FIXME: Remove these pipes once ranlib errors are fixed. 41 # FIXME: Remove these pipes once ranlib errors are fixed.
|
/external/mesa3d/src/gallium/tests/trivial/ |
Makefile | 35 default: $(PROGS) pipes 45 pipes:
|
/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) {
|
/external/chromium_org/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) {
|
/external/chromium_org/build/ |
env_dump.py | 12 import pipes namespace 35 envsetup_cmd = ' '.join(map(pipes.quote, args))
|
/packages/apps/Browser/src/com/android/browser/homepages/ |
HomeProvider.java | 78 ParcelFileDescriptor[] pipes = ParcelFileDescriptor.createPipe();
local 79 final ParcelFileDescriptor write = pipes[1];
82 return pipes[0];
|