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

/external/qemu/android/utils/
H A Ddebug.c82 int null_fd, out_fd, err_fd; local
84 out_fd = _fileno(stdout);
86 stdio_save_out_fd = _dup(out_fd);
89 _dup2(null_fd, out_fd);
99 int out_fd, err_fd; local
101 out_fd = _fileno(stdout);
103 _dup2(stdio_save_out_fd, out_fd);
114 int null_fd, out_fd, err_fd; local
116 out_fd = fileno(stdout);
118 stdio_save_out_fd = dup(out_fd);
131 int out_fd, err_fd; local
[all...]
/external/chromium_org/chromeos/process_proxy/
H A Dprocess_output_watcher.cc20 void InitReadFdSet(int out_fd, int stop_fd, fd_set* set) { argument
22 if (out_fd != -1)
23 FD_SET(out_fd, set);
39 ProcessOutputWatcher::ProcessOutputWatcher(int out_fd, int stop_fd, argument
41 : out_fd_(out_fd),
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize_addr2line_linux.cc35 int out_fd; member in struct:__tsan::ModuleDesc
83 m->out_fd = outfd[1];
107 m->out_fd = -1;
158 if (0 >= internal_write(m->out_fd, addrstr, internal_strlen(addrstr))) {
160 m->out_fd, errno);
/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/chrome/renderer/pepper/
H A Dppb_nacl_private_impl.cc219 IPC::PlatformFileForTransit out_fd = IPC::InvalidPlatformFileForTransit(); local
224 &out_fd))) {
227 if (out_fd == IPC::InvalidPlatformFileForTransit()) {
231 IPC::PlatformFileForTransitToPlatformFile(out_fd);
329 IPC::PlatformFileForTransit out_fd = IPC::InvalidPlatformFileForTransit(); local
338 &out_fd,
344 if (out_fd == IPC::InvalidPlatformFileForTransit()) {
349 IPC::PlatformFileForTransitToPlatformFile(out_fd);
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsandbox_bpf.cc53 void WriteFailedStderrSetupMessage(int out_fd) { argument
58 if (HANDLE_EINTR(write(out_fd, msg, sizeof(msg)-1)) > 0 && error_string &&
59 HANDLE_EINTR(write(out_fd, error_string, strlen(error_string))) > 0 &&
60 HANDLE_EINTR(write(out_fd, "\n", 1))) {

Completed in 241 milliseconds