/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | fwide.c | 37 fwide(FILE *fp, int mode) in fwide() argument 47 if (mode > 0) in fwide() 48 mode = 1; in fwide() 49 else if (mode < 0) in fwide() 50 mode = -1; in fwide() 57 if (wcio->wcio_mode == 0 && mode != 0) in fwide() 58 wcio->wcio_mode = mode; in fwide() 60 mode = wcio->wcio_mode; in fwide() 63 return mode; in fwide()
|
D | flags.c | 46 __sflags(const char *mode, int *optr) in __sflags() argument 50 switch (*mode++) { in __sflags() 75 while (*mode != '\0') in __sflags() 76 switch (*mode++) { in __sflags()
|
D | setvbuf.c | 43 setvbuf(FILE *fp, char *buf, int mode, size_t size) in setvbuf() argument 54 if (mode != _IONBF) in setvbuf() 55 if ((mode != _IOFBF && mode != _IOLBF) || (int)size < 0) in setvbuf() 77 if (mode == _IONBF) in setvbuf() 136 if (mode == _IOLBF) in setvbuf()
|
/bionic/libc/bionic/ |
D | faccessat.cpp | 35 int faccessat(int dirfd, const char* pathname, int mode, int flags) { in faccessat() argument 39 if ((mode != F_OK) && ((mode & ~(R_OK | W_OK | X_OK)) != 0) && in faccessat() 40 ((mode & (R_OK | W_OK | X_OK)) == 0)) { in faccessat() 58 return ___faccessat(dirfd, pathname, mode); in faccessat()
|
D | __umask_chk.cpp | 45 extern "C" mode_t __umask_chk(mode_t mode) { in __umask_chk() argument 46 if (__predict_false((mode & 0777) != mode)) { in __umask_chk() 50 return umask(mode); in __umask_chk()
|
D | mkfifo.cpp | 33 int mkfifo(const char* path, mode_t mode) { in mkfifo() argument 34 return mkfifoat(AT_FDCWD, path, mode); in mkfifo() 37 int mkfifoat(int fd, const char* path, mode_t mode) { in mkfifoat() argument 38 return mknodat(fd, path, (mode & ~S_IFMT) | S_IFIFO, 0); in mkfifoat()
|
D | open.cpp | 46 int creat(const char* pathname, mode_t mode) { in creat() argument 47 return open(pathname, O_CREAT | O_TRUNC | O_WRONLY, mode); in creat() 52 mode_t mode = 0; in open() local 57 mode = static_cast<mode_t>(va_arg(args, int)); in open() 61 return __openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), mode); in open() 74 mode_t mode = 0; in openat() local 79 mode = static_cast<mode_t>(va_arg(args, int)); in openat() 83 return __openat(fd, pathname, force_O_LARGEFILE(flags), mode); in openat()
|
D | fchmodat.cpp | 39 int fchmodat(int dirfd, const char* pathname, mode_t mode, int flags) { in fchmodat() argument 60 int result = fchmod(fd, mode); in fchmodat() 66 return ___fchmodat(dirfd, pathname, mode); in fchmodat()
|
D | access.cpp | 32 int access(const char* path, int mode) { in access() argument 33 return faccessat(AT_FDCWD, path, mode, 0); in access()
|
D | reboot.cpp | 34 int reboot(int mode) { in reboot() argument 35 return __reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, mode, NULL); in reboot()
|
D | chmod.cpp | 33 int chmod(const char* path, mode_t mode) { in chmod() argument 34 return fchmodat(AT_FDCWD, path, mode, 0); in chmod()
|
D | mkdir.cpp | 33 int mkdir(const char* path, mode_t mode) { in mkdir() argument 34 return mkdirat(AT_FDCWD, path, mode); in mkdir()
|
D | fchmod.cpp | 38 int fchmod(int fd, mode_t mode) { in fchmod() argument 40 int result = ___fchmod(fd, mode); in fchmod() 63 result = chmod(buf, mode); in fchmod()
|
D | mknod.cpp | 34 int mknod(const char* path, mode_t mode, dev_t dev) { in mknod() argument 35 return mknodat(AT_FDCWD, path, mode, dev); in mknod()
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
D | ldtoa.c | 49 __ldtoa(long double *ld, int mode, int ndigits, int *decpt, int *sign, in __ldtoa() argument 104 ret = gdtoa(&fpi, be, vbits, &kind, mode, ndigits, decpt, rve); in __ldtoa() 113 __ldtoa(long double *ld, int mode, int ndigits, int *decpt, int *sign, in __ldtoa() argument 118 ret = dtoa((double)*ld, mode, ndigits, decpt, sign, rve); in __ldtoa()
|
D | dtoa.c | 78 (d0, mode, ndigits, decpt, sign, rve) in dtoa() argument 79 double d0; int mode, ndigits, *decpt, *sign; char **rve; in dtoa() 81 (double d0, int mode, int ndigits, int *decpt, int *sign, char **rve) 287 if (mode < 0 || mode > 9) 288 mode = 0; 298 if (mode > 5) { 299 mode -= 4; 305 switch(mode) { 334 if (mode > 1 && Rounding != 1) 470 if (mode > 1) [all …]
|
/bionic/libc/include/sys/ |
D | stat.h | 161 mode_t umask(mode_t mode) { in umask() argument 163 if (__builtin_constant_p(mode)) { in umask() 164 if ((mode & 0777) != mode) { in umask() 167 return __umask_real(mode); in umask() 170 return __umask_chk(mode); in umask()
|
/bionic/libc/kernel/uapi/linux/netfilter/ |
D | xt_policy.h | 37 __u8 saddr : 1, daddr : 1, proto : 1, mode : 1, spi : 1, reqid : 1; member 60 __u8 mode; member
|
D | xt_hashlimit.h | 37 __u32 mode; member 60 __u32 mode; member
|
D | xt_CONNSECMARK.h | 29 __u8 mode; member
|
/bionic/libc/kernel/uapi/linux/ |
D | vt.h | 27 char mode; member 95 struct vt_mode mode; member
|
D | userfaultfd.h | 85 __u64 mode; member 95 __u64 mode; member 102 __u64 mode; member
|
/bionic/libc/stdio/ |
D | wcio.h | 55 #define _SET_ORIENTATION(fp, mode) \ argument 59 _wcio->wcio_mode = (mode);\
|
/bionic/libc/kernel/uapi/linux/hsi/ |
D | hsi_char.h | 46 uint32_t mode; member 52 uint32_t mode; member
|
/bionic/libc/kernel/uapi/linux/netfilter_ipv6/ |
D | ip6t_hl.h | 31 __u8 mode; member
|