Home
last modified time | relevance | path

Searched refs:mode_flags (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/libc/src/__support/OSUtil/linux/
H A Dfcntl.cpp119 ErrorOr<int> open(const char *path, int flags, mode_t mode_flags) { in open() argument
121 int fd = LIBC_NAMESPACE::syscall_impl<int>(SYS_open, path, flags, mode_flags); in open()
124 mode_flags); in open()
/freebsd/contrib/llvm-project/libc/src/__support/File/linux/
H A Dfile.cpp67 auto modeflags = File::mode_flags(mode); in openfile()
126 ModeFlags modeflags = File::mode_flags(mode); in create_file_from_fd()
/freebsd/contrib/llvm-project/libc/src/__support/OSUtil/
H A Dfcntl.h20 ErrorOr<int> open(const char *path, int flags, mode_t mode_flags = 0);
/freebsd/sys/dev/drm2/
H A Ddrm_crtc_helper.c121 int mode_flags = 0; in drm_helper_probe_single_connector_modes() local
173 mode_flags |= DRM_MODE_FLAG_INTERLACE; in drm_helper_probe_single_connector_modes()
175 mode_flags |= DRM_MODE_FLAG_DBLSCAN; in drm_helper_probe_single_connector_modes()
176 drm_mode_validate_flag(connector, mode_flags); in drm_helper_probe_single_connector_modes()
/freebsd/contrib/llvm-project/libc/src/__support/File/
H A Dfile.h276 static ModeFlags mode_flags(const char *mode);
H A Dfile.cpp432 File::ModeFlags File::mode_flags(const char *mode) { in mode_flags() function in LIBC_NAMESPACE_DECL::File