Home
last modified time | relevance | path

Searched refs:childfd (Results 1 – 21 of 21) sorted by relevance

/dports/devel/p5-IO-Async/IO-Async-0.800/lib/IO/Async/
H A DProcess.pm444 my ( $myfd, $childfd ) = IO::Async::OS->pipepair or croak "Unable to pipe() - $!";
449 push @setup, $key => [ dup => $childfd ];
450 $self->{to_close}{$childfd->fileno} = $childfd;
453 my ( $childfd, $myfd ) = IO::Async::OS->pipepair or croak "Unable to pipe() - $!";
459 push @setup, $key => [ dup => $childfd ];
460 $self->{to_close}{$childfd->fileno} = $childfd;
477 …my ( $myfd, $childfd ) = IO::Async::OS->socketpair( $opts->{family}, $opts->{socktype} ) or croak …
480 $opts->{prefork}->( $myfd, $childfd ) if $opts->{prefork};
485 push @setup, stdin => [ dup => $childfd ], stdout => [ dup => $childfd ];
488 push @setup, $key => [ dup => $childfd ];
[all …]
/dports/x11-toolkits/gnome-pty-helper/vte-0.40.2/src/
H A Dpty.c894 int parentfd, childfd; in _vte_pty_open_bsd() local
896 if (openpty(&parentfd, &childfd, NULL, NULL, NULL) != 0) { in _vte_pty_open_bsd()
906 priv->child_setup_data.tty.fd = childfd; in _vte_pty_open_bsd()
950 *childfd = ret; in _vte_pty_read_ptypair()
972 *childfd = i; in _vte_pty_read_ptypair()
1235 int parentfd = -1, childfd = -1; in _vte_pty_open_with_helper() local
1285 &parentfd, &childfd); in _vte_pty_open_with_helper()
1287 if ((parentfd == -1) || (childfd == -1)) { in _vte_pty_open_with_helper()
1291 close(childfd); in _vte_pty_open_with_helper()
1303 parentfd, childfd); in _vte_pty_open_with_helper()
[all …]
/dports/lang/nickle/nickle-2.90/
H A Dfile.5c20 } childfd;
22 public int mkchild(string path, string[*] argv, childfd fds ...)
/dports/x11-toolkits/vte/vte-0.28.2/src/
H A Dpty.c961 _vte_pty_read_ptypair(int tunnel, int *parentfd, int *childfd) in _vte_pty_read_ptypair() argument
992 *childfd = ret; in _vte_pty_read_ptypair()
1004 _vte_pty_read_ptypair(int tunnel, int *parentfd, int *childfd) in _vte_pty_read_ptypair() argument
1014 *childfd = i; in _vte_pty_read_ptypair()
1277 int parentfd = -1, childfd = -1; in _vte_pty_open_with_helper() local
1327 &parentfd, &childfd); in _vte_pty_open_with_helper()
1329 if ((parentfd == -1) || (childfd == -1)) { in _vte_pty_open_with_helper()
1333 close(childfd); in _vte_pty_open_with_helper()
1345 parentfd, childfd); in _vte_pty_open_with_helper()
1352 priv->child_setup_data.tty.fd = childfd; in _vte_pty_open_with_helper()
/dports/textproc/p5-RDFStore/RDFStore-0.51/dbms/deamon/
H A Dchildren.c269 int childfd = pipefd[0]; local
272 dbms_log(L_DEBUG,"Child created - I am the Mother fd=%d",childfd);
309 if ((child->r = handle_new_local_connection(childfd,C_CHILD)) == NULL) {
/dports/devel/cvswrap/cvswrap-0.2/
H A Dcvswrap.c111 int ch, childfd; local
171 cvsprog_fork(cvsprog, argv, &childpid, &childfd);
173 cvsprog_tee(childfd, buf, buflen);
175 (void)close(childfd);
/dports/irc/irssi/irssi-1.2.3/src/core/
H A Dcapsicum.c339 int childfd, error; in start_symbiont() local
348 pid = pdfork(&childfd, PD_CLOEXEC); in start_symbiont()
/dports/sysutils/slurm-wlm/slurm-20.02.7/src/slurmd/slurmstepd/
H A Dmgr.c1504 int childfd; member
1521 e->childfd = fdpair[0]; in _exec_wait_info_create()
1538 if (e->childfd >= 0) { in _exec_wait_info_destroy()
1539 close (e->childfd); in _exec_wait_info_destroy()
1540 e->childfd = -1; in _exec_wait_info_destroy()
1572 close (e->childfd); in _fork_child_with_wait_info()
1573 e->childfd = -1; in _fork_child_with_wait_info()
1582 if (read (e->childfd, &c, sizeof (c)) != 1) in _exec_wait_child_wait_for_parent()
/dports/net/liblinphone/linphone-3.12.0/daemon/
H A Ddaemon.cc643 int childfd = accept(mServerFd, (struct sockaddr*) &addr, &addrlen); in readPipe() local
644 if (childfd != -1) { in readPipe()
647 close(childfd); in readPipe()
649 mChildFd = (ortp_pipe_t)childfd; in readPipe()
/dports/lang/perl5.34/perl-5.34.0/t/run/
H A Dcloexec.t73 print qq{childfd=$fd\n};
/dports/lang/perl5.30/perl-5.30.3/t/run/
H A Dcloexec.t73 print qq{childfd=$fd\n};
/dports/lang/perl5-devel/perl5-5.35.4-102-ge43d289c7c/t/run/
H A Dcloexec.t73 print qq{childfd=$fd\n};
/dports/lang/perl5.32/perl-5.32.1/t/run/
H A Dcloexec.t73 print qq{childfd=$fd\n};
/dports/chinese/autoconvert/autoconvert-0.3.16/contrib/xchat-plugins/
H A Dxchat.h64 int myfd, childfd; member
/dports/lang/fpc-source/fpc-3.2.2/packages/gnome1/src/zvt/
H A Dvt.inc57 childfd : longint;
/dports/devel/p5-IO-Async/IO-Async-0.800/t/
H A D34process-handles.t376 my ( $myfd, $childfd ) = @_;
/dports/graphics/aloadimage/arcan-0.6.1/src/platform/posix/
H A Dframeserver.c1474 int segid, size_t w, size_t h, uintptr_t tag, int* childfd) in platform_fsrv_spawn_server() argument
1492 *childfd = sockp[1]; in platform_fsrv_spawn_server()
/dports/sysutils/acfgfs/arcan-0.6.1/src/platform/posix/
H A Dframeserver.c1474 int segid, size_t w, size_t h, uintptr_t tag, int* childfd) in platform_fsrv_spawn_server() argument
1492 *childfd = sockp[1]; in platform_fsrv_spawn_server()
/dports/x11/arcan-trayicon/arcan-0.6.1/src/platform/posix/
H A Dframeserver.c1474 int segid, size_t w, size_t h, uintptr_t tag, int* childfd) in platform_fsrv_spawn_server() argument
1492 *childfd = sockp[1]; in platform_fsrv_spawn_server()
/dports/x11/aclip/arcan-0.6.1/src/platform/posix/
H A Dframeserver.c1474 int segid, size_t w, size_t h, uintptr_t tag, int* childfd) in platform_fsrv_spawn_server() argument
1492 *childfd = sockp[1]; in platform_fsrv_spawn_server()
/dports/net/courier-sox/courier-sox-0.12.20180428/
H A Dsockd.c2006 static int runchild(int childfd) in runchild() argument
2075 close(childfd); in runchild()