Home
last modified time | relevance | path

Searched refs:fd_to (Results 1 – 25 of 52) sorted by relevance

123

/dports/lang/gcc12-devel/gcc-12-20211205/gcc/cp/
H A Dmapper-client.cc44 : Client (fd_from, fd_to), pex (p) in module_client()
112 int fd_from = -1, fd_to = -1; in spawn_mapper_program() local
169 int fd_from = -1, fd_to = -1; in open_module_client() local
173 fd_to = fileno (stdout); in open_module_client()
191 fd_to = fd_from; in open_module_client()
201 fd_to = strtoul (cstr, &ptr, 10); in open_module_client()
207 fd_to = open (cstr, dir); in open_module_client()
208 if (fd_to < 0) in open_module_client()
212 fd_from = fd_to; in open_module_client()
216 if (fd_from < 0 || fd_to < 0) in open_module_client()
[all …]
H A Dmapper-client.h43 module_client (pex_obj *pex, int fd_from, int fd_to);
45 module_client (int fd_from, int fd_to) in module_client() argument
46 : Client (fd_from, fd_to) in module_client()
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/cp/
H A Dmapper-client.cc44 : Client (fd_from, fd_to), pex (p) in module_client()
112 int fd_from = -1, fd_to = -1; in spawn_mapper_program() local
169 int fd_from = -1, fd_to = -1; in open_module_client() local
173 fd_to = fileno (stdout); in open_module_client()
191 fd_to = fd_from; in open_module_client()
201 fd_to = strtoul (cstr, &ptr, 10); in open_module_client()
207 fd_to = open (cstr, dir); in open_module_client()
208 if (fd_to < 0) in open_module_client()
212 fd_from = fd_to; in open_module_client()
216 if (fd_from < 0 || fd_to < 0) in open_module_client()
[all …]
H A Dmapper-client.h43 module_client (pex_obj *pex, int fd_from, int fd_to);
45 module_client (int fd_from, int fd_to) in module_client() argument
46 : Client (fd_from, fd_to) in module_client()
/dports/lang/gcc11/gcc-11.2.0/gcc/cp/
H A Dmapper-client.cc44 : Client (fd_from, fd_to), pex (p) in module_client()
112 int fd_from = -1, fd_to = -1; in spawn_mapper_program() local
169 int fd_from = -1, fd_to = -1; in open_module_client() local
173 fd_to = fileno (stdout); in open_module_client()
191 fd_to = fd_from; in open_module_client()
201 fd_to = strtoul (cstr, &ptr, 10); in open_module_client()
207 fd_to = open (cstr, dir); in open_module_client()
208 if (fd_to < 0) in open_module_client()
212 fd_from = fd_to; in open_module_client()
216 if (fd_from < 0 || fd_to < 0) in open_module_client()
[all …]
H A Dmapper-client.h43 module_client (pex_obj *pex, int fd_from, int fd_to);
45 module_client (int fd_from, int fd_to) in module_client() argument
46 : Client (fd_from, fd_to) in module_client()
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/cp/
H A Dmapper-client.cc44 : Client (fd_from, fd_to), pex (p) in module_client()
112 int fd_from = -1, fd_to = -1; in spawn_mapper_program() local
169 int fd_from = -1, fd_to = -1; in open_module_client() local
173 fd_to = fileno (stdout); in open_module_client()
191 fd_to = fd_from; in open_module_client()
201 fd_to = strtoul (cstr, &ptr, 10); in open_module_client()
207 fd_to = open (cstr, dir); in open_module_client()
208 if (fd_to < 0) in open_module_client()
212 fd_from = fd_to; in open_module_client()
216 if (fd_from < 0 || fd_to < 0) in open_module_client()
[all …]
H A Dmapper-client.h43 module_client (pex_obj *pex, int fd_from, int fd_to);
45 module_client (int fd_from, int fd_to) in module_client() argument
46 : Client (fd_from, fd_to) in module_client()
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/testing-resources/source/platform/android/
H A DAndroidTesting.cpp110 int fd_to, fd_from; in CopyFile() local
121 fd_to = open(to, O_WRONLY | O_CREAT | O_EXCL, 0666); in CopyFile()
122 if (fd_to < 0) in CopyFile()
133 nwritten = write(fd_to, out_ptr, nread); in CopyFile()
149 if (close(fd_to) < 0) in CopyFile()
151 fd_to = -1; in CopyFile()
164 if (fd_to >= 0) in CopyFile()
165 close(fd_to); in CopyFile()
/dports/sysutils/vector/lucet-d4fc14a03bdb99ac83173d27fddf1aca48412a86/wasmtime/crates/test-programs/wasi-tests/src/bin/
H A Drenumber.rs32 let fd_to = wasi::path_open( in test_renumber() localVariable
43 fd_to, in test_renumber()
49 wasi::fd_renumber(fd_from, fd_to).expect("renumbering two descriptors"); in test_renumber()
62 wasi::fd_fdstat_get(fd_to).expect("calling fd_fdstat on the open file descriptor"); in test_renumber()
80 wasi::fd_close(fd_to).expect("closing a file"); in test_renumber()
/dports/devel/cquery/cquery-20180718/src/
H A Dplatform_posix.cc224 int fd_to = open(dest.path.c_str(), O_WRONLY | O_CREAT, 0666); in CopyFileTo() local
225 if (fd_to < 0) in CopyFileTo()
235 nwritten = write(fd_to, out_ptr, nread); in CopyFileTo()
246 if (close(fd_to) < 0) { in CopyFileTo()
247 fd_to = -1; in CopyFileTo()
257 if (fd_to >= 0) in CopyFileTo()
258 close(fd_to); in CopyFileTo()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/solaris/native/java/lang/
H A Dchildproc.c47 restartableDup2(int fd_from, int fd_to) in restartableDup2() argument
50 RESTARTABLE(dup2(fd_from, fd_to), err); in restartableDup2()
146 moveDescriptor(int fd_from, int fd_to) in moveDescriptor() argument
148 if (fd_from != fd_to) { in moveDescriptor()
149 if ((restartableDup2(fd_from, fd_to) == -1) || in moveDescriptor()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/solaris/native/java/lang/
H A Dchildproc.c47 restartableDup2(int fd_from, int fd_to) in restartableDup2() argument
50 RESTARTABLE(dup2(fd_from, fd_to), err); in restartableDup2()
146 moveDescriptor(int fd_from, int fd_to) in moveDescriptor() argument
148 if (fd_from != fd_to) { in moveDescriptor()
149 if ((restartableDup2(fd_from, fd_to) == -1) || in moveDescriptor()
/dports/science/siconos/siconos-4.4.0/numerics/src/tools/
H A DGAMSlink.c67 int fd_to, fd_from; in cp() local
76 fd_to = open(to, O_WRONLY | O_CREAT | O_EXCL, 0666); in cp()
77 if(fd_to < 0) in cp()
87 nwritten = write(fd_to, out_ptr, nread); in cp()
104 if(close(fd_to) < 0) in cp()
106 fd_to = -1; in cp()
119 if(fd_to >= 0) in cp()
120 close(fd_to); in cp()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/unix/native/libjava/
H A Dchildproc.c47 restartableDup2(int fd_from, int fd_to) in restartableDup2() argument
50 RESTARTABLE(dup2(fd_from, fd_to), err); in restartableDup2()
149 moveDescriptor(int fd_from, int fd_to) in moveDescriptor() argument
151 if (fd_from != fd_to) { in moveDescriptor()
152 if ((restartableDup2(fd_from, fd_to) == -1) || in moveDescriptor()
H A Dchildproc.h132 int restartableDup2(int fd_from, int fd_to);
136 int moveDescriptor(int fd_from, int fd_to);
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/unix/native/libjava/
H A Dchildproc.c47 restartableDup2(int fd_from, int fd_to) in restartableDup2() argument
50 RESTARTABLE(dup2(fd_from, fd_to), err); in restartableDup2()
146 moveDescriptor(int fd_from, int fd_to) in moveDescriptor() argument
148 if (fd_from != fd_to) { in moveDescriptor()
149 if ((restartableDup2(fd_from, fd_to) == -1) || in moveDescriptor()
H A Dchildproc.h132 int restartableDup2(int fd_from, int fd_to);
136 int moveDescriptor(int fd_from, int fd_to);
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/unix/native/libjava/
H A Dchildproc.c47 restartableDup2(int fd_from, int fd_to) in restartableDup2() argument
50 RESTARTABLE(dup2(fd_from, fd_to), err); in restartableDup2()
149 moveDescriptor(int fd_from, int fd_to) in moveDescriptor() argument
151 if (fd_from != fd_to) { in moveDescriptor()
152 if ((restartableDup2(fd_from, fd_to) == -1) || in moveDescriptor()
H A Dchildproc.h132 int restartableDup2(int fd_from, int fd_to);
136 int moveDescriptor(int fd_from, int fd_to);
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/unix/native/libjava/
H A Dchildproc.c47 restartableDup2(int fd_from, int fd_to) in restartableDup2() argument
50 RESTARTABLE(dup2(fd_from, fd_to), err); in restartableDup2()
146 moveDescriptor(int fd_from, int fd_to) in moveDescriptor() argument
148 if (fd_from != fd_to) { in moveDescriptor()
149 if ((restartableDup2(fd_from, fd_to) == -1) || in moveDescriptor()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/unix/native/libjava/
H A Dchildproc.c48 restartableDup2(int fd_from, int fd_to) in restartableDup2() argument
51 RESTARTABLE(dup2(fd_from, fd_to), err); in restartableDup2()
147 moveDescriptor(int fd_from, int fd_to) in moveDescriptor() argument
149 if (fd_from != fd_to) { in moveDescriptor()
150 if ((restartableDup2(fd_from, fd_to) == -1) || in moveDescriptor()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/unix/native/libjava/
H A Dchildproc.c48 restartableDup2(int fd_from, int fd_to) in restartableDup2() argument
51 RESTARTABLE(dup2(fd_from, fd_to), err); in restartableDup2()
147 moveDescriptor(int fd_from, int fd_to) in moveDescriptor() argument
149 if (fd_from != fd_to) { in moveDescriptor()
150 if ((restartableDup2(fd_from, fd_to) == -1) || in moveDescriptor()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/unix/native/libjava/
H A Dchildproc.c48 restartableDup2(int fd_from, int fd_to) in restartableDup2() argument
51 RESTARTABLE(dup2(fd_from, fd_to), err); in restartableDup2()
147 moveDescriptor(int fd_from, int fd_to) in moveDescriptor() argument
149 if (fd_from != fd_to) { in moveDescriptor()
150 if ((restartableDup2(fd_from, fd_to) == -1) || in moveDescriptor()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/unix/native/libjava/
H A Dchildproc.c48 restartableDup2(int fd_from, int fd_to) in restartableDup2() argument
51 RESTARTABLE(dup2(fd_from, fd_to), err); in restartableDup2()
147 moveDescriptor(int fd_from, int fd_to) in moveDescriptor() argument
149 if (fd_from != fd_to) { in moveDescriptor()
150 if ((restartableDup2(fd_from, fd_to) == -1) || in moveDescriptor()

123