Searched refs:mode_t (Results 1 - 25 of 123) sorted by relevance

12345

/external/compiler-rt/SDKs/linux/usr/include/sys/
H A Dstat.h20 typedef unsigned int mode_t; typedef
22 int mkdir(const char *, mode_t);
/external/compiler-rt/SDKs/darwin/usr/include/sys/
H A Dstat.h21 typedef uint16_t mode_t; typedef
23 int mkdir(const char *, mode_t);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dostypes.h14 typedef int mode_t; typedef
H A Dkernel_wrap_real.h21 int _real_mkdir(const char* pathname, mode_t mode);
29 int _real_open(const char* pathname, int oflag, mode_t mode, int* newfd);
H A Dfuse.h98 int (*mknod)(const char* path, mode_t, dev_t);
100 int (*mkdir)(const char* path, mode_t);
112 int (*chmod)(const char*, mode_t);
219 int (*create)(const char* path, mode_t mode, struct fuse_file_info*);
H A Dkernel_wrap_dummy.cc34 int _real_mkdir(const char* pathname, mode_t mode) {
51 int _real_open(const char* pathname, int oflag, mode_t mode, int* newfd) {
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dsem_open.c54 sem_open (const char *name, int oflag, mode_t mode, unsigned int value)
H A Dsemaphore.h126 typedef unsigned int mode_t; typedef
152 mode_t mode,
/external/chromium_org/base/test/
H A Dtest_file_util_posix.cc25 bool DenyFilePermission(const FilePath& path, mode_t permission) {
46 *length = sizeof(mode_t);
47 mode_t* mode = new mode_t;
62 DCHECK_EQ(sizeof(mode_t), length);
63 mode_t* mode = reinterpret_cast<mode_t*>(info);
/external/bison/lib/
H A Dspawn_int.h45 mode_t mode;
H A Dsys_stat.in.h317 (int fd, char const *file, mode_t mode, int flag)
321 (int fd, char const *file, mode_t mode, int flag));
433 (const char *filename, mode_t mode));
436 _GL_FUNCDECL_SYS (lchmod, int, (const char *filename, mode_t mode)
439 _GL_CXXALIAS_SYS (lchmod, int, (const char *filename, mode_t mode));
489 _GL_FUNCDECL_RPL (mkdir, int, (char const *name, mode_t mode)
491 _GL_CXXALIAS_RPL (mkdir, int, (char const *name, mode_t mode));
501 rpl_mkdir (char const *name, mode_t mode)
511 _GL_CXXALIAS_RPL (mkdir, int, (char const *name, mode_t mode));
513 _GL_CXXALIAS_SYS (mkdir, int, (char const *name, mode_t mod
[all...]
H A Dspawn_faction_addopen.c38 mode_t mode)
H A Dopen.c31 orig_open (const char *filename, int flags, mode_t mode)
55 mode_t mode;
64 /* We have to use PROMOTED_MODE_T instead of mode_t, otherwise GCC 4
65 creates crashing code when 'mode_t' is smaller than 'int'. */
/external/kernel-headers/original/uapi/asm-mips/asm/
H A Dstat.h22 mode_t st_mode;
57 mode_t st_mode;
98 mode_t st_mode;
/external/yaffs2/yaffs2/direct/
H A Dyaffsfs.h16 //typedef unsigned long mode_t;
162 mode_t st_mode; /* protection */
189 int yaffs_chmod(const char *path, mode_t mode);
190 int yaffs_fchmod(int fd, mode_t mode);
192 int yaffs_mkdir(const char *path, mode_t mode) ;
207 int yaffs_mknod(const char *pathname, mode_t mode, dev_t dev);
/external/bison/darwin-lib/sys/
H A Dstat.h629 (int fd, char const *file, mode_t mode, int flag)
633 (int fd, char const *file, mode_t mode, int flag));
745 (const char *filename, mode_t mode));
748 _GL_FUNCDECL_SYS (lchmod, int, (const char *filename, mode_t mode)
751 _GL_CXXALIAS_SYS (lchmod, int, (const char *filename, mode_t mode));
801 _GL_FUNCDECL_RPL (mkdir, int, (char const *name, mode_t mode)
803 _GL_CXXALIAS_RPL (mkdir, int, (char const *name, mode_t mode));
813 rpl_mkdir (char const *name, mode_t mode)
823 _GL_CXXALIAS_RPL (mkdir, int, (char const *name, mode_t mode));
825 _GL_CXXALIAS_SYS (mkdir, int, (char const *name, mode_t mod
[all...]
/external/bison/linux-lib/sys/
H A Dstat.h629 (int fd, char const *file, mode_t mode, int flag)
633 (int fd, char const *file, mode_t mode, int flag));
745 (const char *filename, mode_t mode));
748 _GL_FUNCDECL_SYS (lchmod, int, (const char *filename, mode_t mode)
751 _GL_CXXALIAS_SYS (lchmod, int, (const char *filename, mode_t mode));
801 _GL_FUNCDECL_RPL (mkdir, int, (char const *name, mode_t mode)
803 _GL_CXXALIAS_RPL (mkdir, int, (char const *name, mode_t mode));
813 rpl_mkdir (char const *name, mode_t mode)
823 _GL_CXXALIAS_RPL (mkdir, int, (char const *name, mode_t mode));
825 _GL_CXXALIAS_SYS (mkdir, int, (char const *name, mode_t mod
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
H A Dmem_fs_node.h30 virtual Error Fchmod(mode_t mode);
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dmock_kernel_proxy.h23 MOCK_METHOD2(chmod, int(const char*, mode_t));
29 MOCK_METHOD2(fchmod, int(int, mode_t));
47 MOCK_METHOD2(mkdir, int(const char*, mode_t));
52 MOCK_METHOD3(open, int(const char*, int, mode_t));
H A Dmock_fs.h28 MOCK_METHOD4(OpenWithMode, Error(const Path&, int, mode_t, ScopedNode*));
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_linux.cc36 #define mode_t __kernel_mode_t macro
44 #undef mode_t macro
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/
H A Ddev_fs.h17 virtual Error OpenWithMode(const Path& path, int open_flags, mode_t mode,
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/passthroughfs/
H A Dpassthrough_fs.h21 virtual Error OpenWithMode(const Path& path, int open_flags, mode_t mode,
/external/fio/os/windows/posix/include/sys/
H A Dshm.h20 mode_t mode; /* read/write permission */
/external/ipsec-tools/src/racoon/
H A Dadmin.h42 extern mode_t adminsock_mode;

Completed in 5905 milliseconds

12345