HomeSort by relevance Sort by last modified time
    Searched defs:pipes (Results 1 - 23 of 23) sorted by null

  /external/compiler-rt/test/tsan/
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) {
  /external/toybox/toys/other/
oneit.c 62 int i, pid, pipes[] = {SIGUSR1, SIGUSR2, SIGTERM, SIGINT}; local
69 if (pipe(pipes)) perror_exit("pipe");
74 for (i = 0; i<ARRAY_LEN(pipes); i++) xsignal(pipes[i], oneit_signaled);
  /ndk/sources/android/crazy_linker/tests/
test_shared_relro.cpp 43 int pipes[2]; local
44 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pipes) < 0)
55 foo.ReceiveRelroInfo(pipes[0]);
80 foo.SendRelroInfo(pipes[1]);
test_two_shared_relros.cpp 48 int pipes[2]; local
49 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pipes) < 0)
60 foo.ReceiveRelroInfo(pipes[0]);
64 bar.ReceiveRelroInfo(pipes[0]);
89 foo.SendRelroInfo(pipes[1]);
94 bar.SendRelroInfo(pipes[1]);
test_relocated_shared_relro.cpp 34 int pipes[2]; local
35 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pipes) < 0)
49 foo.ReceiveRelroInfo(pipes[0]);
80 foo.SendRelroInfo(pipes[1]);
  /external/boringssl/src/util/bot/
vs_toolchain.py 7 import pipes namespace
54 os.environ['GYP_DEFINES'] = ' '.join('%s=%s' % (k, pipes.quote(str(v)))
  /external/compiler-rt/lib/asan/scripts/
symbolize.py 17 pipes = {} variable
84 if not pipes.has_key(binary):
85 pipes[binary] = subprocess.Popen(["addr2line", "-i", "-f", "-e", binary],
87 p = pipes[binary]
  /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()
  /external/owasp/sanitizer/tools/
update_tree_in_svn.py 10 import pipes namespace
53 print ' '.join([pipes.quote(arg) for arg in argv])
  /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...]
  /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...]
  /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];
  /external/mesa3d/src/gallium/drivers/r300/
r300_texture_desc.c 323 * GPU Pipes 4x4 mode 8x8 mode
336 * With 2 pipes and an image of size 8xY, where Y >= 1,
344 * With 4 pipes and an image of size 8xY, where Y >= 4,
359 unsigned i, pipes; local
362 pipes = screen->info.r300_num_z_pipes;
364 pipes = screen->info.r300_num_gb_pipes;
382 zmask_blocks_x_per_dw[pipes-1] * zcompsize,
383 zmask_blocks_y_per_dw[pipes-1] * zcompsize);
387 zcomp_numdw <= screen->caps.zmask_ram * pipes) {
392 util_align_npot(stride, zmask_blocks_x_per_dw[pipes-1] * zcompsize)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
IOBinding.py 10 import pipes namespace
507 command = command % pipes.quote(filename)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
IOBinding.py 10 import pipes namespace
507 command = command % pipes.quote(filename)
  /system/core/adb/tests/
test_adb.py 9 import pipes namespace
167 return call_checked(self.adb_cmd + "install {}".format(pipes.quote(filename)))
  /external/toybox/lib/
xwrap.c 144 // pipes[2]: stdin, stdout of new process. If -1 will not have pipe allocated.
146 pid_t xpopen_both(char **argv, int *pipes)
150 // Make the pipes? Not this won't set either pipe to 0 because if fds are
152 if (pipes) {
154 if (pipes[pid] == -1) continue;
156 pipes[pid] = cestnepasun[pid+1];
163 if (pipes) {
166 if (pipes[1] != -1) close(cestnepasun[2]);
167 if (pipes[0] != -1) {
174 if (pipes[1] != -1)
214 int pipes[2], pid; local
    [all...]
  /external/fio/engines/
net.c 30 int pipes[2]; member in struct:netio_data
378 return splice_io_u(io_u->file->fd, nd->pipes[1], io_u->xfer_buflen);
389 return splice_io_u(nd->pipes[0], io_u->file->fd, len);
427 return vmsplice_io_u(io_u, nd->pipes[0], len);
437 return vmsplice_io_u(io_u, nd->pipes[1], io_u->xfer_buflen);
1351 if (nd->pipes[0] != -1)
1352 close(nd->pipes[0]);
1353 if (nd->pipes[1] != -1)
1354 close(nd->pipes[1]);
1375 nd->pipes[0] = nd->pipes[1] = -1
    [all...]
  /external/valgrind/VEX/priv/
tilegx_disasm.h 1238 /* A bit mask of which of the five pipes this instruction
1245 unsigned char pipes; member in struct:tilegx_opcode
  /external/pcre/dist/sljit/
sljitNativeTILEGX-encoder.c 628 /* A bit mask of which of the five pipes this instruction
635 unsigned char pipes; member in struct:tilegx_opcode
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
BackupManagerService.java 3162 ParcelFileDescriptor[] pipes = null; local
3379 ParcelFileDescriptor[] pipes = null; local
    [all...]

Completed in 1539 milliseconds