OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fork
(Results
26 - 50
of
499
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/dropbear/
cli-authpasswd.c
67
pid =
fork
();
70
TRACE(("
fork
error"))
dbclient.1
66
Fork
into the background after authentication. A command argument (or -N) is required.
dropbear.8
40
Don't
fork
into background.
/external/e2fsprogs/lib/ss/
pager.c
81
switch(
fork
()) {
100
#else /* don't
fork
*/
/ndk/docs/system/libc/
SYSV-IPC.TXT
52
int ret =
fork
();
56
perror("
fork
:");
/system/core/libctest/
ctest.c
90
pid_t pid =
fork
();
98
fprintf(stderr, "
Fork
failed.");
/system/netd/
PppController.cpp
75
if ((pid =
fork
()) < 0) {
76
LOGE("
fork
failed (%s)", strerror(errno));
/bionic/libc/
CAVEATS
17
function doing a
fork
().
/bionic/libc/unistd/
daemon.c
56
pid =
fork
();
/dalvik/libcore/dalvik/src/main/native/
dalvik_system_TouchDex.cpp
18
* Bit of code to wrap DEX force-updating with a
fork
() call.
114
* Retrieve strings. Note we want to do this *before* the
fork
() -- bad
125
pid =
fork
();
127
LOGE("
fork
failed: %s", strerror(errno));
/external/strace/
TODO
24
fix
fork
hang for svr4 without pollable procfs
strace-graph
232
} elsif ($call eq '
fork
') {
237
push @$seq, ['
FORK
', $result];
258
} elsif ($$elem[0] eq '
FORK
') {
308
} elsif ($$elem[0] eq '
FORK
') {
/sdk/emulator/qtools/tests/
macros.h
40
/*
fork
*/
/build/tools/dexpreopt/dexopt-wrapper/
DexOptWrapper.cpp
66
* This uses
fork
() and exec() to mimic the way this would work in an
99
*
Fork
a child process.
101
pid_t pid =
fork
();
/external/bison/lib/
subpipe.c
65
# define vfork
fork
93
/* System V
fork
+wait does not work if SIGCHLD is ignored. */
128
"
fork
");
/external/e2fsprogs/misc/
logsave.c
116
pid =
fork
();
240
pid =
fork
();
242
perror("
fork
");
/bionic/libc/bionic/
pthread-timers.c
45
* Note also an important thing: Posix mandates that in the case of
fork
(),
47
* this is implemented by providing a
fork
() wrapper (see bionic/
fork
.c) which
48
* stops all timers before the
fork
, and only re-start them in case of error
256
/** POSIX THREAD TIMERS CLEANUP ON
FORK
258
** this should be called from the '
fork
()' wrapper to stop/start
260
** requirements: the timers of
fork
child processes must be
/external/dnsmasq/src/
helper.c
19
/* This file has code to
fork
a helper process which recieves data via a pipe
27
not settable via the pipe, once the
fork
has taken place it is not alterable by the
60
then
fork
our process. */
61
if (pipe(pipefd) == -1 || !fix_fd(pipefd[1]) || (pid =
fork
()) == -1)
89
/* send error to daemon process if no-
fork
*/
162
/* possible
fork
errors are all temporary resource problems */
163
while ((pid =
fork
()) == -1 && (errno == EAGAIN || errno == ENOMEM))
/external/emma/ant/ant14/com/vladium/emma/
emmajavaTask.java
66
//
fork
:
68
log (getTaskName () + ": '
fork
=\"false\"' attribute setting ignored (this task always forks)", Project.MSG_WARN);
70
super.setFork (true); // always
fork
210
//
fork
:
298
public final void setFork (final boolean
fork
)
300
m_fork =
fork
;
/development/simulator/wrapsim/
LaunchWrapper.c
12
* than us, but we need to configure the signals *after* the
fork
() so we
165
child =
fork
();
167
fprintf(stderr, "
fork
() failed: %s\n", strerror(errno));
/external/dhcpcd/
config.h
42
/* Some systems do not have a working
fork
. */
/external/oprofile/daemon/
oprofiled.c
122
* opd_fork -
fork
and return as child
124
*
fork
() and exit the parent with _exit().
129
switch (
fork
()) {
131
perror("oprofiled:
fork
() failed: ");
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/wizards/newproject/
StubProjectWizard.java
109
public void run(boolean
fork
, boolean cancelable,
/sdk/emulator/qtools/
read_pid.cpp
22
printf("t%lld
fork
tgid %d pid %d\n", event.time, event.tgid, event.pid);
/dalvik/libcore/dalvik/src/main/java/dalvik/system/
TouchDex.java
51
* This calls
fork
() and then, in the child, calls cont(dexFiles).
63
* just start here (skipping the
fork
/exec stuff).
Completed in 1486 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>