HomeSort by relevance Sort by last modified time
    Searched defs:fork (Results 1 - 25 of 74) sorted by null

1 2 3

  /bionic/libc/bionic/
fork.cpp 36 int fork() { function
41 // Remember the parent pid and invalidate the cached value while we fork.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pty.py 13 __all__ = ["openpty","fork","spawn"]
90 def fork(): function
91 """fork() -> (pid, master_fd)
92 Fork and make the child a session leader with a controlling terminal."""
108 pid = os.fork()
165 pid, master_fd = fork()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pty.py 13 __all__ = ["openpty","fork","spawn"]
90 def fork(): function
91 """fork() -> (pid, master_fd)
92 Fork and make the child a session leader with a controlling terminal."""
108 pid = os.fork()
165 pid, master_fd = fork()
  /external/linux-tools-perf/src/tools/perf/util/
tool.h 34 fork, member in struct:perf_tool
event.h 177 struct fork_event fork; member in union:perf_event
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_popen2.py 19 # to avoid mixing "posix" fork & exec with native threads, and
24 # we have os.fork. if not, skip the test
30 from os import fork namespace
31 del fork
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_popen2.py 19 # to avoid mixing "posix" fork & exec with native threads, and
24 # we have os.fork. if not, skip the test
30 from os import fork namespace
31 del fork
  /external/skia/src/utils/win/
SkDWriteFontFileStream.cpp 105 SkDWriteFontFileStream* SkDWriteFontFileStream::fork() const { function in class:SkDWriteFontFileStream
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinTask.java 28 * ForkJoinPool.commonPool()} via {@link #fork}, {@link #invoke}, or
31 * using {@code ForkJoinTask} employ only methods {@link #fork} and
36 * of new forms of fork/join processing.
43 * coordination mechanisms are {@link #fork}, that arranges
49 * cooperate with fork/join scheduling. Subdividable tasks should also
83 * equivalent to {@code fork(); join()} but always attempts to begin
92 * <p>In the most typical usages, a fork-join pair act like a call
93 * (fork) and return (join) from a parallel recursive function. As is
95 * should be performed innermost-first. For example, {@code a.fork();
96 * b.fork(); b.join(); a.join();} is likely to be substantially mor
653 public final ForkJoinTask<V> fork() { method in class:ForkJoinTask
    [all...]
  /bionic/libc/kernel/uapi/linux/
cn_proc.h 57 } fork; member in union:proc_event::__anon377
  /development/ndk/platforms/android-21/include/linux/
cn_proc.h 57 } fork; member in union:proc_event::__anon1453
  /external/bison/lib/
spawni.c 67 # define fork __fork macro
85 an error after the fork() was successful. Since no new wait status
170 new_pid = fork ();
  /external/kernel-headers/original/uapi/linux/
cn_proc.h 77 } fork; member in union:proc_event::__anon11044
  /external/skia/include/core/
SkStream.h 130 virtual SkStreamSeekable* fork() const { return NULL; } function in class:SkStream
151 /** SkStreamSeekable is a SkStreamRewindable for which position, seek, move, and fork are required. */
160 SkStreamSeekable* fork() const override = 0;
167 SkStreamAsset* fork() const override = 0;
177 SkStreamMemory* fork() const override = 0;
271 SkStreamAsset* fork() const override;
344 SkMemoryStream* fork() const override;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
cn_proc.h 73 } fork; member in union:proc_event::__anon30776
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
cn_proc.h 75 } fork; member in union:proc_event::__anon32690
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/
cn_proc.h 57 } fork; member in union:proc_event::__anon60370
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/
cn_proc.h 57 } fork; member in union:proc_event::__anon61137
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/
cn_proc.h 57 } fork; member in union:proc_event::__anon61916
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/
cn_proc.h 57 } fork; member in union:proc_event::__anon62694
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/
cn_proc.h 57 } fork; member in union:proc_event::__anon63470
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/
cn_proc.h 57 } fork; member in union:proc_event::__anon64247
  /external/valgrind/coregrind/
m_libcproc.c 347 pid = VG_(fork)();
597 Fork
600 Int VG_(fork) ( void ) function
  /libcore/jsr166-tests/src/test/java/jsr166/
ForkJoinTaskTest.java 250 y.fork();
251 x.fork();
345 r.fork();
373 r.fork();
425 assertSame(f, f.fork());
440 assertSame(f, f.fork());
455 assertSame(f, f.fork());
470 assertSame(f, f.fork());
486 assertSame(f, f.fork());
502 assertSame(f, f.fork());
    [all...]
RecursiveTaskTest.java 205 f1.fork();
224 f1.fork();
270 assertSame(f, f.fork());
286 assertSame(f, f.fork());
302 assertSame(f, f.fork());
318 assertSame(f, f.fork());
336 assertSame(f, f.fork());
385 assertSame(f, f.fork());
404 assertSame(f, f.fork());
425 assertSame(f, f.fork());
    [all...]

Completed in 1435 milliseconds

1 2 3