Searched defs:flags (Results 1 - 25 of 641) sorted by relevance

1234567891011>>

/bionic/libc/bionic/
H A Daccept4.cpp21 int accept4(int sockfd, sockaddr* addr, socklen_t* addrlen, int flags) { argument
22 return __netdClientDispatch.accept4(sockfd, addr, addrlen, flags);
H A Dclock_nanosleep.cpp35 int clock_nanosleep(clockid_t clock_id, int flags, const timespec* in, timespec* out) { argument
39 return (___clock_nanosleep(clock_id, flags, in, out) == 0) ? 0 : errno;
H A Dfaccessat.cpp35 int faccessat(int dirfd, const char* pathname, int mode, int flags) { argument
45 if (flags != 0) {
H A Drecv.cpp31 ssize_t recv(int socket, void *buf, size_t len, int flags) { argument
32 return recvfrom(socket, buf, len, flags, NULL, 0);
H A Dsend.cpp31 ssize_t send(int socket, const void* buf, size_t len, int flags) { argument
32 return sendto(socket, buf, len, flags, NULL, 0);
H A Dsync_file_range.cpp34 int sync_file_range(int fd, off64_t offset, off64_t length, unsigned int flags) { argument
36 return __sync_file_range2(fd, flags, offset, length);
38 return __sync_file_range(fd, offset, length, flags);
H A Dsys_signalfd.cpp35 int signalfd(int fd, const sigset_t* mask, int flags) { argument
38 return signalfd64(fd, &set.sigset64, flags);
41 int signalfd64(int fd, const sigset64_t* mask, int flags) { argument
42 return __signalfd4(fd, mask, sizeof(*mask), flags);
H A Dfchmodat.cpp39 int fchmodat(int dirfd, const char* pathname, mode_t mode, int flags) { argument
40 if ((flags & ~AT_SYMLINK_NOFOLLOW) != 0) {
45 if (flags & AT_SYMLINK_NOFOLLOW) {
H A Dfsetxattr.cpp40 int fsetxattr(int fd, const char* name, const void* value, size_t size, int flags) { argument
42 int result = ___fsetxattr(fd, name, value, size, flags);
57 return setxattr(FdPath(fd).c_str(), name, value, size, flags);
H A Dmremap.cpp39 void* mremap(void* old_address, size_t old_size, size_t new_size, int flags, ...) { argument
50 if ((flags & MREMAP_FIXED) != 0) {
52 va_start(ap, flags);
56 return ___mremap(old_address, old_size, new_size, flags, new_address);
H A Dsys_time.cpp37 static int futimesat(int fd, const char* path, const timeval tv[2], int flags) { argument
43 return utimensat(fd, path, tv ? ts : nullptr, flags);
/bionic/libc/kernel/uapi/linux/netfilter/
H A Dxt_rpfilter.h29 __u8 flags; member in struct:xt_rpfilter_info
H A Dxt_cluster.h29 __u32 flags; member in struct:xt_cluster_match_info
H A Dxt_connlimit.h37 __u32 flags; member in struct:xt_connlimit_info
H A Dxt_quota.h28 __u32 flags; member in struct:xt_quota_info
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/netfilter/
H A Dxt_rpfilter.h29 __u8 flags; member in struct:xt_rpfilter_info
H A Dxt_cluster.h29 __u32 flags; member in struct:xt_cluster_match_info
H A Dxt_connlimit.h37 __u32 flags; member in struct:xt_connlimit_info
H A Dxt_quota.h28 __u32 flags; member in struct:xt_quota_info
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/netfilter/
H A Dxt_rpfilter.h29 __u8 flags; member in struct:xt_rpfilter_info
H A Dxt_cluster.h29 __u32 flags; member in struct:xt_cluster_match_info
/bionic/libc/include/bits/fortify/
H A Dfcntl.h46 #define __open_modes_useful(flags) (((flags) & O_CREAT) || ((flags) & O_TMPFILE) == O_TMPFILE)
51 int open(const char* pathname, int flags, mode_t modes, ...) __overloadable
61 int open(const char* const __pass_object_size pathname, int flags)
63 __clang_error_if(__open_modes_useful(flags), "'open' " __open_too_few_args_error) {
64 return __open_2(pathname, flags);
68 int open(const char* const __pass_object_size pathname, int flags, mode_t modes)
70 __clang_warning_if(!__open_modes_useful(flags) && modes,
72 return __open_real(pathname, flags, mode
102 open(const char* pathname, int flags, ...) argument
121 openat(int dirfd, const char* pathname, int flags, ...) argument
[all...]
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dmakebuf.c52 int flags; local
61 flags = __swhatbuf(fp, &size, &couldbetty);
68 flags |= __SMBF;
72 flags |= __SLBF;
73 fp->_flags |= flags;
H A Dsetvbuf.c45 int ret, flags; local
71 flags = fp->_flags;
72 if (flags & __SMBF)
74 flags &= ~(__SLBF | __SNBF | __SMBF | __SOPT | __SNPT | __SEOF);
85 flags |= __swhatbuf(fp, &iosize, &ttyflag);
107 fp->_flags = flags | __SNBF;
114 flags |= __SMBF;
131 flags |= __SNPT;
137 flags |= __SLBF;
138 fp->_flags = flags;
[all...]
/bionic/tools/versioner/current/bits/fortify/
H A Dfcntl.h46 #define __open_modes_useful(flags) (((flags) & O_CREAT) || ((flags) & O_TMPFILE) == O_TMPFILE)
51 int open(const char* pathname, int flags, mode_t modes, ...) __overloadable
61 int open(const char* const __pass_object_size pathname, int flags)
63 __clang_error_if(__open_modes_useful(flags), "'open' " __open_too_few_args_error) {
64 return __open_2(pathname, flags);
68 int open(const char* const __pass_object_size pathname, int flags, mode_t modes)
70 __clang_warning_if(!__open_modes_useful(flags) && modes,
72 return __open_real(pathname, flags, mode
102 open(const char* pathname, int flags, ...) argument
121 openat(int dirfd, const char* pathname, int flags, ...) argument
[all...]

Completed in 263 milliseconds

1234567891011>>