Lines Matching refs:_Nonnull
140 int execv(const char* _Nonnull __path, char* _Nullable const* _Nullable __argv);
141 int execvp(const char* _Nonnull __file, char* _Nullable const* _Nullable __argv);
142 int execvpe(const char* _Nonnull __file, char* _Nullable const* _Nullable __argv, char* _Nullable c…
143 int execve(const char* _Nonnull __file, char* _Nullable const* _Nullable __argv, char* _Nullable co…
144 int execl(const char* _Nonnull __path, const char* _Nullable __arg0, ...) __attribute__((__sentinel…
145 int execlp(const char* _Nonnull __file, const char* _Nullable __arg0, ...) __attribute__((__sentine…
146 int execle(const char* _Nonnull __path, const char* _Nullable __arg0, ... /*, char* const* __envp …
246 int getresuid(uid_t* _Nonnull __ruid, uid_t* _Nonnull __euid, uid_t* _Nonnull __suid);
247 int getresgid(gid_t* _Nonnull __rgid, gid_t* _Nonnull __egid, gid_t* _Nonnull __sgid);
249 int getlogin_r(char* _Nonnull __buffer, size_t __buffer_size) __INTRODUCED_IN(28);
252 long pathconf(const char* _Nonnull __path, int __name);
254 int access(const char* _Nonnull __path, int __mode);
255 int faccessat(int __dirfd, const char* _Nonnull __path, int __mode, int __flags);
256 int link(const char* _Nonnull __old_path, const char* _Nonnull __new_path);
257 int linkat(int __old_dir_fd, const char* _Nonnull __old_path, int __new_dir_fd, const char* _Nonnul…
258 int unlink(const char* _Nonnull __path);
259 int unlinkat(int __dirfd, const char* _Nonnull __path, int __flags);
260 int chdir(const char* _Nonnull __path);
262 int rmdir(const char* _Nonnull __path);
263 int pipe(int __fds[_Nonnull 2]);
265 int pipe2(int __fds[_Nonnull 2], int __flags);
267 int chroot(const char* _Nonnull __path);
268 int symlink(const char* _Nonnull __old_path, const char* _Nonnull __new_path);
269 int symlinkat(const char* _Nonnull __old_path, int __new_dir_fd, const char* _Nonnull __new_path);
270 ssize_t readlink(const char* _Nonnull __path, char* _Nonnull __buf, size_t __buf_size);
271 ssize_t readlinkat(int __dir_fd, const char* _Nonnull __path, char* _Nonnull __buf, size_t __buf_si…
272 int chown(const char* _Nonnull __path, uid_t __owner, gid_t __group);
274 int fchownat(int __dir_fd, const char* _Nonnull __path, uid_t __owner, gid_t __group, int __flags);
275 int lchown(const char* _Nonnull __path, uid_t __owner, gid_t __group);
317 int truncate(const char* _Nonnull __path, off_t __length) __RENAME(truncate64);
319 ssize_t pread(int __fd, void* _Nonnull __buf, size_t __count, off_t __offset) __RENAME(pread64);
320 ssize_t pwrite(int __fd, const void* _Nonnull __buf, size_t __count, off_t __offset) __RENAME(pwrit…
323 int truncate(const char* _Nonnull __path, off_t __length);
325 ssize_t pread(int __fd, void* _Nonnull __buf, size_t __count, off_t __offset);
326 ssize_t pwrite(int __fd, const void* _Nonnull __buf, size_t __count, off_t __offset);
330 int truncate64(const char* _Nonnull __path, off64_t __length);
332 ssize_t pread64(int __fd, void* _Nonnull __buf, size_t __count, off64_t __offset);
333 ssize_t pwrite64(int __fd, const void* _Nonnull __buf, size_t __count, off64_t __offset);
341 int gethostname(char* _Nonnull _buf, size_t __buf_size);
342 int sethostname(const char* _Nonnull __name, size_t __n) __INTRODUCED_IN(23);
344 int brk(void* _Nonnull __addr);
349 int ttyname_r(int __fd, char* _Nonnull __buf, size_t __buf_size);
385 int getdomainname(char* _Nonnull __buf, size_t __buf_size) __INTRODUCED_IN(26);
386 int setdomainname(const char* _Nonnull __name, size_t __n) __INTRODUCED_IN(26);
400 void swab(const void* _Nonnull __src, void* _Nonnull __dst, ssize_t __byte_count) __INTRODUCED_IN(2…