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

1 2

  /bionic/libc/bionic/
fork.c 35 int fork(void) function
39 /* Posix mandates that the timers of a fork child process be
52 // Fix the tid in the pthread_internal_t struct after a 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()
  /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/chromium_org/third_party/skia/src/utils/win/
SkDWriteFontFileStream.cpp 105 SkDWriteFontFileStream* SkDWriteFontFileStream::fork() const { function in class:SkDWriteFontFileStream
  /external/skia/src/utils/win/
SkDWriteFontFileStream.cpp 105 SkDWriteFontFileStream* SkDWriteFontFileStream::fork() const { function in class:SkDWriteFontFileStream
  /libcore/dalvik/src/main/java/dalvik/system/
Zygote.java 26 * be partially initialized and then fork()'d from the partially initialized
70 * We must not fork until we're single-threaded again. Wait until /proc shows we're
97 public static int fork() { method in class:Zygote
112 * fork()ing and and before spawning any threads.
114 * fork()ing and and before spawning any threads.
116 * setgroups() to after fork and before spawning any threads.
148 * fork()ing and and before spawning any threads.
150 * fork()ing and and before spawning any threads.
152 * setgroups() to after fork and before spawning any threads.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cn_proc.h 72 } fork; member in union:proc_event::__anon37457
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cn_proc.h 72 } fork; member in union:proc_event::__anon39048
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cn_proc.h 72 } fork; member in union:proc_event::__anon40562
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinTask.java 36 * ForkJoinPool#commonPool()} via {@link #fork}, {@link #invoke}, or
39 * using {@code ForkJoinTask} employ only methods {@link #fork} and
44 * of new forms of fork/join processing.
51 * coordination mechanisms are {@link #fork}, that arranges
57 * cooperate with fork/join scheduling. Subdividable tasks should also
92 * equivalent to {@code fork(); join()} but always attempts to begin
101 * <p>In the most typical usages, a fork-join pair act like a call
102 * (fork) and return (join) from a parallel recursive function. As is
104 * should be performed innermost-first. For example, {@code a.fork();
105 * b.fork(); b.join(); a.join();} is likely to be substantially mor
651 public final ForkJoinTask<V> fork() { method in class:ForkJoinTask
    [all...]
  /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/chromium_org/third_party/skia/include/core/
SkStream.h 122 virtual SkStreamSeekable* fork() const { return NULL; } function in class:SkStream
146 /** SkStreamSeekable is a SkStreamRewindable for which position, seek, move, and fork are required. */
155 virtual SkStreamSeekable* fork() const SK_OVERRIDE = 0;
162 virtual SkStreamAsset* fork() const SK_OVERRIDE = 0;
172 virtual SkStreamMemory* fork() const SK_OVERRIDE = 0;
268 virtual SkStreamAsset* fork() const SK_OVERRIDE;
340 virtual SkMemoryStream* fork() const SK_OVERRIDE;
  /external/linux-tools-perf/util/
session.h 82 fork, member in struct:perf_event_ops
event.h 138 struct fork_event fork; member in union:perf_event
  /external/skia/include/core/
SkStream.h 122 virtual SkStreamSeekable* fork() const { return NULL; } function in class:SkStream
146 /** SkStreamSeekable is a SkStreamRewindable for which position, seek, move, and fork are required. */
155 virtual SkStreamSeekable* fork() const SK_OVERRIDE = 0;
162 virtual SkStreamAsset* fork() const SK_OVERRIDE = 0;
172 virtual SkStreamMemory* fork() const SK_OVERRIDE = 0;
268 virtual SkStreamAsset* fork() const SK_OVERRIDE;
340 virtual SkMemoryStream* fork() const SK_OVERRIDE;
  /external/valgrind/main/coregrind/
m_libcproc.c 350 pid = VG_(fork)();
579 Fork
582 Int VG_(fork) ( void ) function
  /external/chromium_org/third_party/skia/src/core/
SkStream.cpp 277 SkStreamAsset* SkFILEStream::fork() const { function in class:SkFILEStream
408 SkMemoryStream* SkMemoryStream::fork() const { function in class:SkMemoryStream
749 virtual SkBlockMemoryStream* fork() const SK_OVERRIDE {
  /external/skia/src/core/
SkStream.cpp 277 SkStreamAsset* SkFILEStream::fork() const { function in class:SkFILEStream
408 SkMemoryStream* SkMemoryStream::fork() const { function in class:SkMemoryStream
749 virtual SkBlockMemoryStream* fork() const SK_OVERRIDE {
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/antlr3-src/org/apache/tools/ant/antlr/
ANTLR3.java 78 /** fork */
79 private boolean fork; field in class:ANTLR3
311 // we are forced to fork ANTLR since there is a call
319 this.fork = s;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jdepend.jar 
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
antlr3.jar 
  /external/strace/
strace.c 215 /* Glue for systems without a MMU that cannot provide fork() */
220 # define fork() vfork() macro
325 if ((popen_pid = fork()) == -1)
327 fprintf(stderr, "%s: fork: %s\n",
389 pid_t pid = fork();
573 strace_child = pid = fork();
575 perror("strace: fork");
693 * First fork a new child, call ptrace with PTRACE_SETOPTIONS on it,
704 if ((pid = fork()) < 0)
710 _exit(fork() < 0)
    [all...]
  /external/emma/lib/
emma_ant.jar 

Completed in 1461 milliseconds

1 2