Home
last modified time | relevance | path

Searched refs:c2p_pipe (Results 1 – 9 of 9) sorted by relevance

/dports/games/gtkevemon/gtkevemon-ac2ca34/src/util/
H A Dpipedexec_win32.cc20 c2p_pipe[0] = 0; in PipedExec()
21 c2p_pipe[1] = 0; in PipedExec()
30 if (c2p_pipe[0] != 0) in ~PipedExec()
31 ::CloseHandle(c2p_pipe[0]); in ~PipedExec()
51 || !::CreatePipe(&this->c2p_pipe[0], &this->c2p_pipe[1], &sa, 0)) in exec()
56 ::CloseHandle(this->c2p_pipe[0]); in exec()
57 ::CloseHandle(this->c2p_pipe[1]); in exec()
70 ::CloseHandle(this->c2p_pipe[0]); in exec()
86 si.hStdError = this->c2p_pipe[1]; in exec()
87 si.hStdOutput = this->c2p_pipe[1]; in exec()
[all …]
H A Dpipedexec_posix.cc25 c2p_pipe[0] = -1; in PipedExec()
26 c2p_pipe[1] = -1; in PipedExec()
35 if (c2p_pipe[0] != -1) in ~PipedExec()
36 ::close(c2p_pipe[0]); in ~PipedExec()
58 ::close(this->c2p_pipe[0]); in exec()
59 ::close(this->c2p_pipe[1]); in exec()
68 ::close(this->c2p_pipe[1]); in exec()
77 ::close(this->c2p_pipe[0]); in exec()
80 ::dup2(this->c2p_pipe[1], STDOUT_FILENO); in exec()
82 ::close(this->c2p_pipe[1]); in exec()
[all …]
H A Dpipedexec.h31 HANDLE c2p_pipe[2]; variable
35 int c2p_pipe[2];
/dports/graphics/aloadimage/arcan-0.6.1/src/wayland/wlimpl/
H A Dxwl.c650 int c2p_pipe[2]; in xwl_spawn_wm() local
654 if (-1 == pipe(c2p_pipe)){ in xwl_spawn_wm()
660 wmfd_input = c2p_pipe[0]; in xwl_spawn_wm()
675 close(c2p_pipe[0]); in xwl_spawn_wm()
677 dup2(c2p_pipe[1], STDOUT_FILENO); in xwl_spawn_wm()
679 close(c2p_pipe[0]); in xwl_spawn_wm()
721 close(c2p_pipe[1]); in xwl_spawn_wm()
/dports/sysutils/acfgfs/arcan-0.6.1/src/wayland/wlimpl/
H A Dxwl.c650 int c2p_pipe[2]; in xwl_spawn_wm() local
654 if (-1 == pipe(c2p_pipe)){ in xwl_spawn_wm()
660 wmfd_input = c2p_pipe[0]; in xwl_spawn_wm()
675 close(c2p_pipe[0]); in xwl_spawn_wm()
677 dup2(c2p_pipe[1], STDOUT_FILENO); in xwl_spawn_wm()
679 close(c2p_pipe[0]); in xwl_spawn_wm()
721 close(c2p_pipe[1]); in xwl_spawn_wm()
/dports/x11/aclip/arcan-0.6.1/src/wayland/wlimpl/
H A Dxwl.c650 int c2p_pipe[2]; in xwl_spawn_wm() local
654 if (-1 == pipe(c2p_pipe)){ in xwl_spawn_wm()
660 wmfd_input = c2p_pipe[0]; in xwl_spawn_wm()
675 close(c2p_pipe[0]); in xwl_spawn_wm()
677 dup2(c2p_pipe[1], STDOUT_FILENO); in xwl_spawn_wm()
679 close(c2p_pipe[0]); in xwl_spawn_wm()
721 close(c2p_pipe[1]); in xwl_spawn_wm()
/dports/x11/arcan-trayicon/arcan-0.6.1/src/wayland/wlimpl/
H A Dxwl.c650 int c2p_pipe[2]; in xwl_spawn_wm() local
654 if (-1 == pipe(c2p_pipe)){ in xwl_spawn_wm()
660 wmfd_input = c2p_pipe[0]; in xwl_spawn_wm()
675 close(c2p_pipe[0]); in xwl_spawn_wm()
677 dup2(c2p_pipe[1], STDOUT_FILENO); in xwl_spawn_wm()
679 close(c2p_pipe[0]); in xwl_spawn_wm()
721 close(c2p_pipe[1]); in xwl_spawn_wm()
/dports/graphics/gnash/gnash-2b3bdede0305c4fc3ad21a0a4197330606c9b880/plugin/npapi/
H A Dplugin.cpp1361 int c2p_pipe[2]; in startProc() local
1371 ret = socketpair(AF_UNIX, SOCK_STREAM, 0, c2p_pipe); in startProc()
1385 _scriptObject->setHostFD(c2p_pipe[0]); in startProc()
1390 std::vector<std::string> arg_vec = getCmdLine(c2p_pipe[1], in startProc()
1417 int fdstoclose[] = {p2c_controlpipe[0], p2c_pipe[0], c2p_pipe[1]}; in startProc()
1435 setupIOChannel(c2p_pipe[0], (GIOFunc)handlePlayerRequestsWrapper, in startProc()
1460 int dontclose[] = {c2p_pipe[1], c2p_pipe[0], p2c_controlpipe[0]}; in startProc()
/dports/graphics/sane-backends/sane-backends-1.0.32/backend/
H A Dqcam.c1920 int c2p_pipe[2]; /* child->parent pipe */ in sane_start() local
1922 if (pipe (p2c_pipe) < 0 || pipe (c2p_pipe) < 0) in sane_start()
1936 _exit (reader_process (s, p2c_pipe[0], c2p_pipe[1])); in sane_start()
1939 close (c2p_pipe[1]); in sane_start()
1941 s->from_child = c2p_pipe[0]; in sane_start()