HomeSort by relevance Sort by last modified time
    Searched refs:pipes (Results 1 - 25 of 32) sorted by null

1 2

  /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...]
  /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...]
  /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/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/compiler-rt/lib/asan/scripts/
symbolize.py 16 pipes = {} variable
78 if not pipes.has_key(binary):
79 pipes[binary] = subprocess.Popen(["addr2line", "-i", "-f", "-e", binary],
81 p = pipes[binary]
  /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/liboverlay/
Android.mk 19 pipes/overlayGenPipe.cpp
  /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/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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
templite.py 146 `expr` can have pipes and dots to indicate data access and filtering.
150 pipes = expr.split("|")
151 value = self.evaluate(pipes[0])
152 for func in pipes[1:]:
  /external/chromium_org/build/android/buildbot/
bb_utils.py 8 import pipes namespace
31 return ' '.join(map(pipes.quote, command))
bb_run_bot.py 11 import pipes namespace
40 diff.append('- %s=%s' % (key, pipes.quote(d1[key])))
42 diff.append('+ %s=%s' % (key, pipes.quote(d2[key])))
  /external/chromium_org/build/android/pylib/
cmd_helper.py 9 import pipes namespace
78 args_repr = ' '.join(map(pipes.quote, args))
  /external/chromium_org/third_party/mesa/src/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...]
  /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...]
  /ndk/sources/host-tools/make-3.81/w32/include/
sub_proc.h 58 EXTERN_DECL(void process_pipes, (HANDLE proc, int pipes[3]));
  /external/chromium_org/build/android/gyp/util/
build_utils.py 8 import pipes namespace
100 copyable_command = ' '.join(map(pipes.quote, args))
  /external/qemu/hw/
goldfish_pipe.c 949 /* the list of all pipes */
950 Pipe* pipes; member in struct:PipeDevice
952 /* the list of signalled pipes */
967 Pipe** lookup = pipe_list_findp_channel(&dev->pipes, dev->channel);
991 pipe->next = dev->pipes;
992 dev->pipes = pipe;
1202 for ( pipe = dev->pipes; pipe; pipe = pipe->next )
1208 for ( pipe = dev->pipes; pipe; pipe = pipe->next ) {
1238 pipe->next = dev->pipes;
1239 dev->pipes = pipe
    [all...]
  /external/oprofile/events/mips/20K/
events 8 event:0x2 counters:0 um:zero minimum:500 name:FETCH_GROUPS : Fetch groups entering CPU execution pipes
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java 2455 ParcelFileDescriptor[] pipes = null; local
2914 ParcelFileDescriptor[] pipes = null; local
    [all...]

Completed in 788 milliseconds

1 2