Searched refs:mode_flags (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/libc/src/fcntl/linux/ |
| H A D | open.cpp | 22 mode_t mode_flags = 0; variable 28 mode_flags = va_arg(varargs, mode_t); 33 int fd = __llvm_libc::syscall(SYS_open, path, flags, mode_flags); 35 int fd = __llvm_libc::syscall(SYS_openat, AT_FDCWD, path, flags, mode_flags);
|
| H A D | creat.cpp | 20 LLVM_LIBC_FUNCTION(int, creat, (const char *path, int mode_flags)) { 23 mode_flags); 26 O_CREAT | O_WRONLY | O_TRUNC, mode_flags);
|
| H A D | openat.cpp | 22 mode_t mode_flags = 0; variable 28 mode_flags = va_arg(varargs, mode_t); 32 int fd = __llvm_libc::syscall(SYS_openat, dfd, path, flags, mode_flags);
|
| /llvm-project-15.0.7/libc/src/stdio/ |
| H A D | fopencookie.cpp | 66 auto modeflags = File::mode_flags(mode);
|
| /llvm-project-15.0.7/libc/src/__support/File/ |
| H A D | linux_file.cpp | 117 auto modeflags = File::mode_flags(mode); in openfile()
|
| H A D | file.h | 224 static ModeFlags mode_flags(const char *mode);
|
| H A D | file.cpp | 298 File::ModeFlags File::mode_flags(const char *mode) { in mode_flags() function in __llvm_libc::File
|
| /llvm-project-15.0.7/libc/test/src/__support/File/ |
| H A D | file_test.cpp | 111 f->init(buffer, buflen, bufmode, owned, __llvm_libc::File::mode_flags(mode)); in new_string_file()
|