Searched refs:mode (Results 1 - 25 of 226) sorted by relevance

12345678910

/seL4-test-master/projects/musllibc/src/stdio/
H A Dfwide.c4 int fwide(FILE *f, int mode) argument
7 if (mode) {
10 if (!f->mode) f->mode = mode>0 ? 1 : -1;
12 mode = f->mode;
14 return mode;
H A D__fmodeflags.c4 int __fmodeflags(const char *mode) argument
7 if (strchr(mode, '+')) flags = O_RDWR;
8 else if (*mode == 'r') flags = O_RDONLY;
10 if (strchr(mode, 'x')) flags |= O_EXCL;
11 if (strchr(mode, 'e')) flags |= O_CLOEXEC;
12 if (*mode != 'r') flags |= O_CREAT;
13 if (*mode == 'w') flags |= O_TRUNC;
14 if (*mode == 'a') flags |= O_APPEND;
H A Dfopen.c6 FILE *fopen(const char *restrict filename, const char *restrict mode) argument
12 /* Check for valid initial mode character */
13 if (!strchr("rwa", *mode)) {
19 flags = __fmodeflags(mode);
26 f = __fdopen(fd, mode);
/seL4-test-master/projects/musllibc/src/stat/
H A Dumask.c4 mode_t umask(mode_t mode) argument
6 return syscall(SYS_umask, mode);
H A Dchmod.c5 int chmod(const char *path, mode_t mode) argument
8 return syscall(SYS_chmod, path, mode);
10 return syscall(SYS_fchmodat, AT_FDCWD, path, mode);
H A Dmkdir.c5 int mkdir(const char *path, mode_t mode) argument
8 return syscall(SYS_mkdir, path, mode);
10 return syscall(SYS_mkdirat, AT_FDCWD, path, mode);
H A Dmkdirat.c4 int mkdirat(int fd, const char *path, mode_t mode) argument
6 return syscall(SYS_mkdirat, fd, path, mode);
H A Dmkfifo.c3 int mkfifo(const char *path, mode_t mode) argument
5 return mknod(path, mode | S_IFIFO, 0);
H A Dmkfifoat.c3 int mkfifoat(int fd, const char *path, mode_t mode) argument
5 return mknodat(fd, path, mode | S_IFIFO, 0);
H A Dlchmod.c5 int lchmod(const char *path, mode_t mode) argument
7 return fchmodat(AT_FDCWD, path, mode, AT_SYMLINK_NOFOLLOW);
H A Dmknodat.c4 int mknodat(int fd, const char *path, mode_t mode, dev_t dev) argument
6 return syscall(SYS_mknodat, fd, path, mode, dev);
H A Dfchmod.c8 int fchmod(int fd, mode_t mode) argument
10 int ret = __syscall(SYS_fchmod, fd, mode);
17 return syscall(SYS_chmod, buf, mode);
19 return syscall(SYS_fchmodat, AT_FDCWD, buf, mode);
H A Dmknod.c5 int mknod(const char *path, mode_t mode, dev_t dev) argument
8 return syscall(SYS_mknod, path, mode, dev);
10 return syscall(SYS_mknodat, AT_FDCWD, path, mode, dev);
/seL4-test-master/kernel/include/arch/arm/arch/machine/
H A Dregisterset.h9 #include <mode/machine/registerset.h>
H A Dfpu.h8 #include <mode/machine/fpu.h>
/seL4-test-master/projects/musllibc/src/fcntl/
H A Dcreat.c4 int creat(const char *filename, mode_t mode) argument
6 return open(filename, O_CREAT|O_WRONLY|O_TRUNC, mode);
H A Dopenat.c8 mode_t mode = 0; local
13 mode = va_arg(ap, mode_t);
17 return syscall_cp(SYS_openat, fd, filename, flags|O_LARGEFILE, mode);
/seL4-test-master/tools/seL4/elfloader-tool/include/arch-arm/armv/armv8-a/64/armv/
H A Dassembler.h9 #include <mode/assembler.h>
/seL4-test-master/projects/musllibc/src/mq/
H A Dmq_open.c8 mode_t mode = 0; local
14 mode = va_arg(ap, mode_t);
18 return syscall(SYS_mq_open, name, flags, mode, attr);
/seL4-test-master/projects/musllibc/src/process/
H A Dfdop.h8 mode_t mode; member in struct:fdop
/seL4-test-master/projects/musllibc/src/ldso/
H A Ddlopen.c7 static void *stub_dlopen(const char *file, int mode) argument
/seL4-test-master/kernel/include/arch/arm/arch/object/
H A Dstructures.h9 #include <mode/object/structures.h>
/seL4-test-master/kernel/include/arch/riscv/arch/
H A Dbenchmark.h12 #include <mode/hardware.h>
/seL4-test-master/projects/musllibc/src/linux/
H A Dfallocate.c6 int fallocate(int fd, int mode, off_t base, off_t len) argument
8 return syscall(SYS_fallocate, fd, mode, __SYSCALL_LL_E(base),
/seL4-test-master/kernel/src/arch/x86/64/smp/
H A Dipi.c8 #include <mode/smp/ipi.h>
9 #include <mode/kernel/tlb.h>

Completed in 94 milliseconds

12345678910