HomeSort by relevance Sort by last modified time
    Searched refs:file_mode (Results 1 - 25 of 26) sorted by null

1 2

  /external/ltp/testcases/kernel/syscalls/chmod/
chmod03.c 85 #define FILE_MODE S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH
104 mode_t file_mode; local
125 file_mode = stat_buf.st_mode;
128 if ((file_mode & PERMS) != PERMS) {
130 "Expected 0777", TESTFILE, file_mode);
163 if ((fd = open(TESTFILE, O_RDWR | O_CREAT, FILE_MODE)) == -1) {
166 TESTFILE, FILE_MODE);
  /external/ltp/testcases/kernel/syscalls/fchmod/
fchmod03.c 85 #define FILE_MODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH)
103 mode_t file_mode; /* mode permissions set on testfile */ local
126 file_mode = stat_buf.st_mode;
129 if ((file_mode & PERMS) != PERMS)
131 "Expected 0777", TESTFILE, file_mode);
162 if ((fd = open(TESTFILE, O_RDWR | O_CREAT, FILE_MODE)) == -1)
  /bionic/libc/kernel/uapi/linux/
ncp_mount.h 43 __kernel_mode_t file_mode; member in struct:ncp_mount_data
57 unsigned long file_mode; member in struct:ncp_mount_data_v4
  /external/kernel-headers/original/uapi/linux/
ncp_mount.h 41 __kernel_mode_t file_mode; member in struct:ncp_mount_data
66 unsigned long file_mode; member in struct:ncp_mount_data_v4
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
ncp_mount.h 40 __kernel_mode_t file_mode; member in struct:ncp_mount_data
65 unsigned long file_mode; member in struct:ncp_mount_data_v4
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl15.c 104 int dochild1(int file_flag, int file_mode)
109 if ((fd_B = open(tmpname, file_flag, file_mode)) < 0) {
184 int dofork(int file_flag, int file_mode)
195 if (self_exec(argv0, "nddds", 1, file_flag, file_mode,
201 dochild1(file_flag, file_mode);
241 int dochild2(int file_flag, int file_mode, int dup_flag)
246 if ((fd_C = open(tmpname, file_flag, file_mode)) < 0) {
359 int run_test(int file_flag, int file_mode, int dup_flag)
384 if ((fd_A = open(tmpname, file_flag, file_mode)) < 0) {
395 dofork(file_flag, file_mode);
    [all...]
fcntl16.c 444 int run_test(int file_flag, int file_mode, int start, int end)
455 fd = SAFE_OPEN(cleanup, tmpname, file_flag, file_mode);
fcntl14.c 777 void run_test(int file_flag, int file_mode, int seek, int start, int end)
782 fd = SAFE_OPEN(cleanup, tmpname, file_flag, file_mode);
  /external/selinux/libsemanage/src/
semanage_conf.h 45 mode_t file_mode; member in struct:semanage_conf
conf-parse.y 62 %token MODULE_STORE VERSION EXPAND_CHECK FILE_MODE SAVE_PREVIOUS SAVE_LINKED TARGET_PLATFORM COMPILER_DIR IGNORE_MODULE_CACHE STORE_ROOT
88 | file_mode
169 file_mode: FILE_MODE '=' ARG { label
170 current_conf->file_mode = strtoul($3, NULL, 8);
350 conf->file_mode = 0644;
direct_api.c     [all...]
  /frameworks/rs/tests/lldb/tests/harness/
util_log.py 34 file_path=None, file_mode='a'):
50 file_mode: String, the mode to open the text file. Valid modes are
85 handler_default = logging.FileHandler(file_path, file_mode)
  /external/syslinux/core/fs/ufs/
ufs.h 155 uint16_t file_mode; member in struct:ufs1_inode
181 uint16_t file_mode; member in struct:ufs2_inode
ufs.c 212 inode->mode = IFTODT(ufs_inode->file_mode);
246 inode->mode = IFTODT(ufs_inode->file_mode);
  /hardware/qcom/display/msm8909w_3100/sdm/libs/core/fb/
hw_hdmi.h 96 int OpenResolutionFile(int file_mode);
hw_hdmi.cpp 555 int HWHDMI::OpenResolutionFile(int file_mode) {
560 int fd = Sys::open_(file_path, file_mode);
    [all...]
  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_hdmi.h 79 int OpenResolutionFile(int file_mode);
hw_hdmi.cpp 459 int HWHDMI::OpenResolutionFile(int file_mode) {
464 int fd = Sys::open_(file_path, file_mode);
  /hardware/qcom/display/msm8998/sdm/libs/core/fb/
hw_hdmi.h 96 int OpenResolutionFile(int file_mode);
hw_hdmi.cpp 543 int HWHDMI::OpenResolutionFile(int file_mode) {
548 int fd = Sys::open_(file_path, file_mode);
    [all...]
  /hardware/qcom/display/msm8909/sdm/libs/core/fb/
hw_hdmi.h 96 int OpenResolutionFile(int file_mode);
hw_hdmi.cpp 572 int HWHDMI::OpenResolutionFile(int file_mode) {
577 int fd = Sys::open_(file_path, file_mode);
    [all...]
  /frameworks/rs/tests/lldb/tests/
run_test.py 300 file_mode='a'
  /art/runtime/
oat_file_assistant.cc 739 mode_t file_mode = S_IRUSR | S_IWUSR | local
752 if (fchmod(vdex_file->Fd(), file_mode) != 0) {
767 if (fchmod(oat_file->Fd(), file_mode) != 0) {
    [all...]
  /frameworks/rs/tests/lldb/
run_tests.py 229 file_mode='w', # open for write

Completed in 883 milliseconds

1 2