Searched refs:unistd (Results 1 – 25 of 344) sorted by relevance
12345678910>>...14
/external/rust/crates/nix/test/sys/ |
D | test_ptrace.rs | 3 use nix::unistd::getpid; 68 use nix::unistd::fork; in test_ptrace_cont() 69 use nix::unistd::ForkResult::*; in test_ptrace_cont() 129 use nix::unistd::fork; in test_ptrace_syscall() 130 use nix::unistd::getpid; in test_ptrace_syscall() 131 use nix::unistd::ForkResult::*; in test_ptrace_syscall()
|
D | test_wait.rs | 2 use nix::unistd::*; 3 use nix::unistd::ForkResult::*; 67 use nix::unistd::*; 68 use nix::unistd::ForkResult::*;
|
/external/llvm-project/libc/test/src/unistd/ |
D | CMakeLists.txt | 11 libc.include.unistd 12 libc.src.unistd.write
|
/external/f2fs-tools/ |
D | configure.ac | 121 unistd.h 150 dnl Check to see if llseek() is declared in unistd.h. On some libc's 154 [Define to 1 if llseek declared in unistd.h])],, 155 [#include <unistd.h>]) 157 dnl Check to see if lseek64() is declared in unistd.h. Glibc's header files 166 [Define to 1 if lseek64 declared in unistd.h])],, 169 #include <unistd.h>])
|
/external/expat/ |
D | ConfigureChecks.cmake | 18 check_include_file("unistd.h" HAVE_UNISTD_H) 20 check_symbol_exists("getpagesize" "unistd.h" HAVE_GETPAGESIZE) 57 #include <unistd.h> /* for syscall */
|
/external/libpng/projects/visualc71/ |
D | PRJ0041.mak | 10 $(IntDir)\unistd.h \ 19 $(IntDir)\unistd.h \
|
/external/erofs-utils/ |
D | configure.ac | 116 unistd.h 128 # Check to see if llseek() is declared in unistd.h. On some libc's 133 [Define to 1 if llseek declared in unistd.h])],, 134 [#include <unistd.h>]) 137 # Check to see if lseek64() is declared in unistd.h. Glibc's header files 145 [Define to 1 if lseek64 declared in unistd.h])],, 148 #include <unistd.h>])
|
/external/rust/crates/nix/test/ |
D | test_time.rs | 30 let clock_id = clock_getcpuclockid(nix::unistd::Pid::this()).unwrap(); in test_clock_getcpuclockid() 53 assert!(ClockId::pid_cpu_clock_id(nix::unistd::Pid::this()) in test_clock_id_pid_cpu_clock_id()
|
D | test_ptymaster_drop.rs | 5 use nix::unistd::close;
|
D | test_fcntl.rs | 12 use nix::unistd::{close, read}; 94 use nix::unistd::{close, pipe, read, write}; 342 use nix::unistd::pipe; 374 use nix::unistd::pipe;
|
/external/llvm-project/libc/include/ |
D | CMakeLists.txt | 118 unistd 119 DEF_FILE unistd.h.def 120 GEN_HDR unistd.h
|
D | unistd.h.def | 1 //===-- C standard library header unistd.h --------------------------------===//
|
/external/rust/crates/nix/src/ |
D | pty.rs | 12 use crate::unistd::{self, ForkResult, Pid}; 72 let e = unistd::close(self.0); in drop() 81 unistd::read(self.0, buf).map_err(|e| e.as_errno().unwrap().into()) in read() 87 unistd::write(self.0, buf).map_err(|e| e.as_errno().unwrap().into()) in write()
|
/external/mtools/ |
D | configure.in | 95 AC_CHECK_HEADERS(getopt.h sys/stat.h stdlib.h unistd.h linux/unistd.h \ 124 dnl Check to see if llseek() is declared in unistd.h. On some libc's 130 AC_MSG_CHECKING(whether llseek declared in unistd.h) 133 [#include <unistd.h>], [extern int llseek(int);], 141 AC_MSG_CHECKING(whether lseek64 declared in unistd.h) 146 #include <unistd.h> 186 #include <unistd.h>
|
/external/rust/crates/nix/ |
D | CHANGELOG.md | 65 - Changed unistd::{execv,execve,execvp,execvpe,fexecve,execveat} to take both `&[&CStr]` and `&[CSt… 67 - Made `unistd::fork` an unsafe funtion, bringing it in line with [libstd's decision](https://githu… 86 - Added `unistd::setfsuid` and `unistd::setfsgid` to set the user or group 89 - Derived `Ord`, `PartialOrd` for `unistd::Pid` (#[1189](https://github.com/nix-rust/nix/pull/1189)) 106 - Added `unistd::ttyname` 119 - `execv`, `execve`, `execvp` and `execveat` in `::nix::unistd` and `reboot` in 138 - Fixed a bug in nix::unistd that would result in an infinite loop 166 - Removed `unistd::daemon` and `unistd::pipe2` on OSX and ios 370 - Added `nix::unistd:seteuid` and `nix::unistd::setegid` for those platforms that do 482 - Added `unistd::execvpe` for Haiku, Linux and OpenBSD [all …]
|
/external/rust/crates/nix/src/sys/ |
D | signalfd.rs | 19 use crate::unistd; 119 let e = unistd::close(self.0); in drop()
|
/external/llvm/cmake/ |
D | config-ix.cmake | 73 check_include_file(unistd.h HAVE_UNISTD_H) 159 check_symbol_exists(getpagesize unistd.h HAVE_GETPAGESIZE) 162 check_symbol_exists(isatty unistd.h HAVE_ISATTY) 181 check_symbol_exists(mkdtemp "stdlib.h;unistd.h" HAVE_MKDTEMP) 182 check_symbol_exists(mkstemp "stdlib.h;unistd.h" HAVE_MKSTEMP) 183 check_symbol_exists(mktemp "stdlib.h;unistd.h" HAVE_MKTEMP) 187 check_symbol_exists(getcwd unistd.h HAVE_GETCWD) 191 check_symbol_exists(pread unistd.h HAVE_PREAD) 193 check_symbol_exists(sbrk unistd.h HAVE_SBRK)
|
/external/e2fsprogs/include/mingw/ |
D | unistd.h | 4 #include_next <unistd.h>
|
/external/llvm-project/libc/src/unistd/linux/ |
D | CMakeLists.txt | 8 libc.include.unistd
|
/external/llvm-project/libc/src/ |
D | CMakeLists.txt | 14 add_subdirectory(unistd)
|
/external/llvm-project/libc/config/linux/x86_64/ |
D | headers.txt | 13 libc.include.unistd
|
/external/e2fsprogs/lib/uuid/ |
D | configure.in | 8 AC_CHECK_HEADERS(stdlib.h unistd.h sys/sockio.h net/if.h netinet/in.h)
|
/external/python/cpython2/Mac/PythonLauncher/ |
D | main.m | 10 #include <unistd.h>
|
/external/python/cpython3/Mac/PythonLauncher/ |
D | main.m | 10 #include <unistd.h>
|
/external/skqp/tools/ |
D | ios_utils.m | 10 #include <unistd.h>
|
12345678910>>...14