Searched refs:fork (Results 1 - 25 of 83) sorted by relevance

1234

/external/e2fsprogs/lib/
H A Dfpopen.c96 if ((pid = fork()) < 0) {
97 perror("fork");
/external/e2fsprogs/lib/ss/
H A Dpager.c81 switch(fork()) {
100 #else /* don't fork */
H A Dhelp.c109 switch (child = fork()) {
111 ss_perror(sci_idx, errno, "Can't fork for pager");
/external/ppp/pppd/plugins/
H A Dpassprompt.c45 if ((kid = fork()) == (pid_t) -1) {
46 warn("Can't fork to run %s", promptprog);
/external/clearsilver/util/
H A Dneo_server.c162 child = fork();
165 err = nerr_raise_errno(NERR_SYSTEM, "Unable to fork child");
202 child = fork();
205 err = nerr_raise_errno(NERR_SYSTEM, "Unable to fork child");
H A Dfilter.c107 if ((rpid = fork ()) == 0)
153 return nerr_raise_errno(NERR_SYSTEM, "Unable to fork for command: %s", cmd);
/external/bison/lib/
H A Dsubpipe.c65 # define vfork fork
93 /* System V fork+wait does not work if SIGCHLD is ignored. */
128 "fork");
/external/blktrace/btt/
H A Dbno_plot.py115 pid = os.fork()
/external/dropbear/
H A Dcli-authpasswd.c67 pid = fork();
70 TRACE(("fork error"))
H A Dcompat.c165 switch (fork()) {
/external/bluetooth/glib/tests/
H A Dchild-test.c80 pid = fork ();
H A Dtimeloop-basic.c131 pid = fork ();
153 fprintf (stderr,"Cannot fork: %s\n", strerror (errno));
H A Dtimeloop-closure.c148 pid = fork ();
171 fprintf (stderr, "Cannot fork: %s\n", g_strerror (errno));
H A Dtimeloop.c146 pid = fork ();
167 fprintf (stderr, "Cannot fork: %s\n", g_strerror (errno));
/external/e2fsprogs/misc/
H A Dlogsave.c116 pid = fork();
240 pid = fork();
242 perror("fork");
/external/chromium/base/
H A Dprocess_util_posix.cc318 pid_t pid = fork();
381 pid = fork();
386 // and child, and the child sends its task_t to the parent at fork time.
391 pid = fork();
420 // Obscure fork() rule: in the child, if you don't end up doing exec*(),
641 switch (pid = fork()) {
652 // Obscure fork() rule: in the child, if you don't end up doing exec*(),
/external/clearsilver/util/test/
H A Dnet_test.c160 child = fork();
/external/oprofile/daemon/
H A Dinit.c166 childpid = fork();
/external/webkit/WebKitTools/Scripts/
H A Dparallelcl170 my $pid = fork();
/external/bluetooth/bluez/test/
H A Dscotest.c174 if (fork()) {
316 if (fork())
/external/dnsmasq/src/
H A Dhelper.c19 /* 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/
H A DemmajavaTask.java66 // 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) argument
300 m_fork = fork;
/external/dbus/tools/
H A Ddbus-launch.c497 /* We chdir ("/") since we are persistent and daemon-like, and fork
532 ret = fork ();
536 fprintf (stderr, "fork() failed in babysitter: %s\n",
543 /* Parent reaps pre-fork part of bus daemon, then exits and is
825 ret = fork ();
828 fprintf (stderr, "Failed to fork: %s\n",
844 ret = fork ();
847 fprintf (stderr, "Failed to fork: %s\n",
863 /* babysit() will fork *again*
896 "--fork",
[all...]
/external/netperf/
H A Dnetserver.c570 switch (fork())
651 * Since we cannot fork this process , we cant fire any threads
715 switch (fork())
758 /* fork. */
976 /* fork. But hopefully the kernel support will continue to exist */
/external/bluetooth/bluez/compat/
H A Ddun.c159 int pid = fork();

Completed in 380 milliseconds

1234