Searched defs:out_fd (Results 1 - 7 of 7) sorted by relevance

/external/qemu/android/utils/
H A Ddebug.c84 int null_fd, out_fd, err_fd; local
86 out_fd = _fileno(stdout);
88 stdio_save_out_fd = _dup(out_fd);
91 _dup2(null_fd, out_fd);
101 int out_fd, err_fd; local
103 out_fd = _fileno(stdout);
105 _dup2(stdio_save_out_fd, out_fd);
116 int null_fd, out_fd, err_fd; local
118 out_fd = fileno(stdout);
120 stdio_save_out_fd = dup(out_fd);
133 int out_fd, err_fd; local
[all...]
/external/valgrind/main/coregrind/m_ume/
H A Dmain.c68 VG_(pre_exec_check)(const HChar* exe_name, Int* out_fd, Bool allow_setuid) argument
122 // Write the 'out_fd' param if necessary, or close the file.
123 if (!sr_isError(res) && out_fd) {
124 *out_fd = fd;
/external/chromium_org/chromeos/process_proxy/
H A Dprocess_output_watcher.cc21 void InitReadFdSet(int out_fd, int stop_fd, fd_set* set) { argument
23 if (out_fd != -1)
24 FD_SET(out_fd, set);
59 int out_fd,
63 out_fd_(out_fd),
58 ProcessOutputWatcher( int out_fd, int stop_fd, const ProcessOutputCallback& callback) argument
/external/chromium_org/third_party/boringssl/src/crypto/bio/
H A Dfd.c264 int BIO_get_fd(BIO *bio, int *out_fd) { argument
265 return BIO_ctrl(bio, BIO_C_GET_FD, 0, (char *) out_fd);
/external/chromium_org/base/memory/
H A Ddiscardable_memory_ashmem_allocator.cc62 int* out_fd,
86 *out_fd = fd.release();
60 CreateAshmemRegion(const char* name, size_t size, int* out_fd, uintptr_t* out_address) argument
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsandbox_bpf.cc79 void WriteFailedStderrSetupMessage(int out_fd) { argument
85 if (HANDLE_EINTR(write(out_fd, msg, sizeof(msg) - 1)) > 0 && error_string &&
86 HANDLE_EINTR(write(out_fd, error_string, strlen(error_string))) > 0 &&
87 HANDLE_EINTR(write(out_fd, "\n", 1))) {
/external/chromium_org/components/nacl/renderer/
H A Dppb_nacl_private_impl.cc548 IPC::PlatformFileForTransit out_fd = IPC::InvalidPlatformFileForTransit(); local
553 &out_fd, nonce_lo, nonce_hi))) {
556 if (out_fd == IPC::InvalidPlatformFileForTransit()) {
559 return IPC::PlatformFileForTransitToPlatformFile(out_fd);
692 IPC::PlatformFileForTransit out_fd = IPC::InvalidPlatformFileForTransit();
701 &out_fd,
707 if (out_fd == IPC::InvalidPlatformFileForTransit())
710 return IPC::PlatformFileForTransitToPlatformFile(out_fd);

Completed in 228 milliseconds