Searched refs:__mode (Results 1 – 8 of 8) sorted by relevance
/aosp12/bionic/libc/include/sys/ |
H A D | stat.h | 139 int chmod(const char* __path, mode_t __mode); 140 int fchmod(int __fd, mode_t __mode); 141 int mkdir(const char* __path, mode_t __mode); 152 int mknod(const char* __path, mode_t __mode, dev_t __dev); 160 int mkfifo(const char* __path, mode_t __mode) __INTRODUCED_IN(21); 165 int mkfifoat(int __dir_fd, const char* __path, mode_t __mode) __INTRODUCED_IN(23); 167 int fchmodat(int __dir_fd, const char* __path, mode_t __mode, int __flags); 168 int mkdirat(int __dir_fd, const char* __path, mode_t __mode); 169 int mknodat(int __dir_fd, const char* __path, mode_t __mode, dev_t __dev) __INTRODUCED_IN(21);
|
/aosp12/hardware/google/graphics/common/libgscaler/ |
H A D | libgscaler_obj.h | 150 void __InitMembers(int __mode, int __out_mode, int __gsc_id,int __allow_drm) in __InitMembers() argument 155 mode = __mode; in __InitMembers() 161 CGscaler(int __mode) in CGscaler() argument 167 mode = __mode; in CGscaler() 175 __InitMembers(__mode, 0, 0, 0); in CGscaler() 177 CGscaler(int __mode, int __out_mode, int __gsc_id, int __allow_drm) in CGscaler() argument 190 __InitMembers(__mode, __out_mode, __gsc_id, __allow_drm); in CGscaler()
|
/aosp12/bionic/libc/include/ |
H A D | stdio.h | 133 int setvbuf(FILE* __fp, char* __buf, int __mode, size_t __size); 256 FILE* fopen(const char* __path, const char* __mode); 257 FILE* fopen64(const char* __path, const char* __mode) __INTRODUCED_IN(24); 258 FILE* freopen(const char* __path, const char* __mode, FILE* __fp); 259 FILE* freopen64(const char* __path, const char* __mode, FILE* __fp) __INTRODUCED_IN(24); 272 FILE* fdopen(int __fd, const char* __mode); 275 FILE* popen(const char* __command, const char* __mode); 284 FILE* fmemopen(void* __buf, size_t __size, const char* __mode) __INTRODUCED_IN(23);
|
H A D | fcntl.h | 114 int creat(const char* __path, mode_t __mode); 116 int creat64(const char* __path, mode_t __mode) __INTRODUCED_IN(21); 195 int fallocate(int __fd, int __mode, off_t __offset, off_t __length) __RENAME_IF_FILE_OFFSET64(fallo… 197 int fallocate64(int __fd, int __mode, off64_t __offset, off64_t __length) __INTRODUCED_IN(21);
|
H A D | unistd.h | 206 int access(const char* __path, int __mode); 207 int faccessat(int __dirfd, const char* __path, int __mode, int __flags);
|
H A D | spawn.h | 84 …_actions_t* __actions, int __fd, const char* __path, int __flags, mode_t __mode) __INTRODUCED_IN(2…
|
H A D | wchar.h | 53 int fwide(FILE* __fp, int __mode);
|
/aosp12/bionic/libc/include/android/ |
H A D | legacy_sys_stat_inlines.h | 39 static __inline int mkfifo(const char* __path, mode_t __mode) { in mkfifo() argument 40 return mknod(__path, (__mode & ~S_IFMT) | S_IFIFO, (dev_t)0); in mkfifo()
|