Searched defs:fd_out (Results 1 - 3 of 3) sorted by relevance

/external/valgrind/unittest/
H A Dposix_tests.cc169 int fd_out = -1; member in namespace:test98
177 CHECK(size == write(fd_out, str, size));
199 fd_out = creat(out_name, O_WRONLY | S_IRWXU);
202 CHECK(fd_out >= 0);
210 close(fd_out);
/external/qemu/
H A Dqemu-char.c601 int fd_in, fd_out; member in struct:__anon8662
611 return send_all(s->fd_out, buf, len);
676 static CharDriverState *qemu_chr_open_fd(int fd_in, int fd_out) argument
684 s->fd_out = fd_out;
697 int fd_out; local
699 TFR(fd_out = qemu_open(qemu_opt_get(opts, "path"),
701 if (fd_out < 0)
703 return qemu_chr_open_fd(-1, fd_out);
708 int fd_in, fd_out; local
737 int fd_out = qemu_opt_get_number(opts, "fdout",-1); local
1830 qemu_chr_open_win_file(HANDLE fd_out) argument
1852 HANDLE fd_out; local
[all...]
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp4763 int fd_out = -1; member in namespace:test98
4770 IGNORE_RETURN_VALUE(write(fd_out, str, strlen(str) + 1));
4788 fd_out = creat(out_name, O_WRONLY | S_IRWXU);
4797 CHECK(fd_out >= 0);
4805 close(fd_out);

Completed in 198 milliseconds