/external/strace/tests-mx32/ |
qual_fault.c | 47 static int out_fd; variable 179 out_fd = open_file(out_prefix, proc); 182 dup2(out_fd, 3);
|
read-write.c | 119 int out_fd = err_desc ? 4 : 1; local 147 rc = k_write(out_fd, buf, len); 153 tprintf("%s(%d, ", "write", out_fd);
|
/external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/ |
mock_lorgnette.py | 49 def ScanImage(self, device, out_fd, scan_properties): 50 """Writes test image date to |out_fd|. Do so in chunks since the 54 @param out_fd file handle for the output scan data. 59 scan_output_fd = out_fd.take()
|
/external/boringssl/src/crypto/bio/ |
fd.c | 276 int BIO_get_fd(BIO *bio, int *out_fd) { 277 return BIO_ctrl(bio, BIO_C_GET_FD, 0, (char *) out_fd);
|
/external/autotest/scheduler/ |
luciferlib.py | 452 out_fd = os.open(output_file, os.O_WRONLY | os.O_APPEND | os.O_CREAT) 453 os.dup2(out_fd, 1) 454 os.dup2(out_fd, 2) 455 os.close(out_fd)
|
/external/strace/tests/ |
read-write.c | 119 int out_fd = err_desc ? 4 : 1; local 147 rc = k_write(out_fd, buf, len); 153 tprintf("%s(%d, ", "write", out_fd);
|
/external/strace/tests-m32/ |
read-write.c | 119 int out_fd = err_desc ? 4 : 1; local 147 rc = k_write(out_fd, buf, len); 153 tprintf("%s(%d, ", "write", out_fd);
|
/external/bcc/tests/cc/ |
test_c_api.cc | 136 int in_fd, out_fd; local 171 out_fd = open("/tmp/libz.so.1", O_RDWR|O_CREAT|O_EXCL, 173 if (out_fd < 0) { 179 if (write(out_fd, buf, rb) < 0) { 185 close(out_fd);
|
/external/wpa_supplicant_8/src/utils/ |
wpa_debug.c | 552 int out_fd; local 563 out_fd = open(path, O_CREAT | O_APPEND | O_WRONLY, 565 if (out_fd < 0) { 573 if (fcntl(out_fd, F_SETFD, FD_CLOEXEC) < 0) { 580 out_file = fdopen(out_fd, "a"); 584 close(out_fd);
|
/external/boringssl/src/tool/ |
digest.cc | 82 // OpenFile opens the regular file named |filename| and sets |*out_fd| to be a 85 static bool OpenFile(int *out_fd, const std::string &filename) { 86 *out_fd = -1; 110 *out_fd = fd;
|
/external/libchrome/mojo/core/ |
channel_fuchsia.cc | 107 base::ScopedFD out_fd; local 109 fdio_create_fd(fd_handles, fd_infos, info.count, out_fd.receive()); 122 out_handle = PlatformHandle(std::move(out_fd));
|
/external/linux-kselftest/tools/testing/selftests/exec/ |
execveat.c | 142 int out_fd = open(dest, O_RDWR|O_CREAT|O_TRUNC, 0755); local 146 sendfile(out_fd, in_fd, NULL, info.st_size); 148 close(out_fd);
|
/external/toybox/toys/other/ |
bzcat.c | 443 static void flush_bunzip_outbuf(struct bunzip_data *bd, int out_fd) 446 if (write(out_fd, bd->outbuf, bd->outbufPos) != bd->outbufPos) 505 // If !len, write up to len bytes of data to buf. Otherwise write to out_fd. 513 int out_fd, char *outbuf, int len) 564 if (bd->outbufPos == IOBUF_SIZE) flush_bunzip_outbuf(bd, out_fd);
|
/art/runtime/ |
native_stack_dump.cc | 96 Addr2linePipe(int in_fd, int out_fd, const std::string& file_name, pid_t pid) 97 : in(in_fd, false), out(out_fd, false), file(file_name), child_pid(pid), odd(true) {}
|
/art/runtime/hprof/ |
hprof.cc | 763 int out_fd; local 765 out_fd = DupCloexec(fd_); 766 if (out_fd < 0) { 771 out_fd = open(filename_.c_str(), O_WRONLY | O_CREAT | O_TRUNC | O_CLOEXEC, 0644); 772 if (out_fd < 0) { 779 std::unique_ptr<File> file(new File(out_fd, filename_, true)); [all...] |
/art/tools/timeout_dumper/ |
timeout_dumper.cc | 136 Addr2linePipe(int in_fd, int out_fd, const std::string& file_name, pid_t pid) 137 : in(in_fd), out(out_fd), file(file_name), child_pid(pid), odd(true) {}
|
/art/profman/ |
profman.cc | 619 unix_file::FdFile out_fd(dump_output_to_fd_, /*check_usage=*/ false); 620 if (!out_fd.WriteFully(dump.c_str(), dump.length())) { 750 unix_file::FdFile out_fd(dump_output_to_fd_, /*check_usage=*/ false); 751 if (!out_fd.WriteFully(dump.c_str(), dump.length())) { [all...] |
/external/compiler-rt/include/sanitizer/ |
linux_syscall_hooks.h | [all...] |
/external/boringssl/src/include/openssl/ |
bio.h | 445 // |out_fd| is not NULL, it also sets |*out_fd| to the file descriptor. 449 OPENSSL_EXPORT int BIO_get_fd(BIO *bio, int *out_fd); [all...] |
/external/iproute2/lib/ |
bpf.c | [all...] |