Home
last modified time | relevance | path

Searched refs:__mode_t (Results 1 – 25 of 293) sorted by relevance

12345678910>>...12

/dports/lang/fpc-source/fpc-3.2.2/packages/libc/src/
H A Dsstath.inc13 function __S_ISTYPE(mode,mask : __mode_t) : boolean;
14 function S_ISDIR(mode : __mode_t) : boolean;
15 function S_ISCHR(mode : __mode_t) : boolean;
16 function S_ISBLK(mode : __mode_t) : boolean;
17 function S_ISREG(mode : __mode_t) : boolean;
18 function S_ISFIFO(mode : __mode_t) : boolean;
19 function S_ISLNK(mode : __mode_t) : boolean;
20 function S_ISSOCK(mode : __mode_t) : boolean;
60 function chmod(__file:Pchar; __mode:__mode_t):longint;cdecl;external clib name 'chmod';
62 function umask(__mask:__mode_t):__mode_t;cdecl;external clib name 'umask';
[all …]
H A Dsstat.inc5 function __S_ISTYPE(mode,mask : __mode_t) : boolean;
10 function S_ISDIR(mode : __mode_t) : boolean;
15 function S_ISCHR(mode : __mode_t) : boolean;
20 function S_ISBLK(mode : __mode_t) : boolean;
25 function S_ISREG(mode : __mode_t) : boolean;
30 function S_ISFIFO(mode : __mode_t) : boolean;
35 function S_ISLNK(mode : __mode_t) : boolean;
41 function S_ISSOCK(mode : __mode_t) : boolean;
/dports/lang/zig/zig-0.9.0/lib/libc/glibc/include/sys/
H A Dstat.h66 extern int __chmod (const char *__file, __mode_t __mode);
68 extern int __fchmod (int __fd, __mode_t __mode);
70 extern __mode_t __umask (__mode_t __mask);
71 extern int __mkdir (const char *__path, __mode_t __mode);
77 __mode_t __mode, __dev_t __dev);
80 extern int __xmknod (int __ver, const char *__path, __mode_t __mode,
83 __mode_t __mode, __dev_t *__dev);
/dports/lang/zig-devel/zig-0.9.0/lib/libc/glibc/include/sys/
H A Dstat.h66 extern int __chmod (const char *__file, __mode_t __mode);
68 extern int __fchmod (int __fd, __mode_t __mode);
70 extern __mode_t __umask (__mode_t __mask);
71 extern int __mkdir (const char *__path, __mode_t __mode);
77 __mode_t __mode, __dev_t __dev);
80 extern int __xmknod (int __ver, const char *__path, __mode_t __mode,
83 __mode_t __mode, __dev_t *__dev);
/dports/lang/zig/zig-0.9.0/lib/libc/include/generic-glibc/sys/
H A Dstat.h59 typedef __mode_t mode_t;
352 extern int chmod (const char *__file, __mode_t __mode)
359 extern int lchmod (const char *__file, __mode_t __mode)
365 extern int fchmod (int __fd, __mode_t __mode) __THROW;
371 extern int fchmodat (int __fd, const char *__file, __mode_t __mode,
380 extern __mode_t umask (__mode_t __mask) __THROW;
385 extern __mode_t getumask (void) __THROW;
389 extern int mkdir (const char *__path, __mode_t __mode)
396 extern int mkdirat (int __fd, const char *__path, __mode_t __mode)
411 extern int mknodat (int __fd, const char *__path, __mode_t __mode,
[all …]
/dports/lang/zig/zig-0.9.0/lib/libc/glibc/io/sys/
H A Dstat.h59 typedef __mode_t mode_t;
352 extern int chmod (const char *__file, __mode_t __mode)
359 extern int lchmod (const char *__file, __mode_t __mode)
365 extern int fchmod (int __fd, __mode_t __mode) __THROW;
371 extern int fchmodat (int __fd, const char *__file, __mode_t __mode,
380 extern __mode_t umask (__mode_t __mask) __THROW;
385 extern __mode_t getumask (void) __THROW;
389 extern int mkdir (const char *__path, __mode_t __mode)
396 extern int mkdirat (int __fd, const char *__path, __mode_t __mode)
411 extern int mknodat (int __fd, const char *__path, __mode_t __mode,
[all …]
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/generic-glibc/sys/
H A Dstat.h59 typedef __mode_t mode_t;
352 extern int chmod (const char *__file, __mode_t __mode)
359 extern int lchmod (const char *__file, __mode_t __mode)
365 extern int fchmod (int __fd, __mode_t __mode) __THROW;
371 extern int fchmodat (int __fd, const char *__file, __mode_t __mode,
380 extern __mode_t umask (__mode_t __mask) __THROW;
385 extern __mode_t getumask (void) __THROW;
389 extern int mkdir (const char *__path, __mode_t __mode)
396 extern int mkdirat (int __fd, const char *__path, __mode_t __mode)
411 extern int mknodat (int __fd, const char *__path, __mode_t __mode,
[all …]
/dports/lang/zig-devel/zig-0.9.0/lib/libc/glibc/io/sys/
H A Dstat.h59 typedef __mode_t mode_t;
352 extern int chmod (const char *__file, __mode_t __mode)
359 extern int lchmod (const char *__file, __mode_t __mode)
365 extern int fchmod (int __fd, __mode_t __mode) __THROW;
371 extern int fchmodat (int __fd, const char *__file, __mode_t __mode,
380 extern __mode_t umask (__mode_t __mask) __THROW;
385 extern __mode_t getumask (void) __THROW;
389 extern int mkdir (const char *__path, __mode_t __mode)
396 extern int mkdirat (int __fd, const char *__path, __mode_t __mode)
411 extern int mknodat (int __fd, const char *__path, __mode_t __mode,
[all …]
/dports/devel/tinygo/tinygo-0.14.1/lib/picolibc/newlib/libc/include/sys/
H A D_types.h93 typedef int __mode_t; typedef
97 typedef unsigned long __mode_t; typedef
99 typedef unsigned short __mode_t; typedef
102 typedef __uint32_t __mode_t; typedef
/dports/lang/zig/zig-0.9.0/lib/libc/include/x86_64-linux-gnux32/bits/
H A Dstruct_stat.h41 __mode_t st_mode; /* File mode. */
45 __mode_t st_mode; /* File mode. */
112 __mode_t st_mode; /* File mode. */
116 __mode_t st_mode; /* File mode. */
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/x86_64-linux-gnu/bits/
H A Dstruct_stat.h41 __mode_t st_mode; /* File mode. */
45 __mode_t st_mode; /* File mode. */
112 __mode_t st_mode; /* File mode. */
116 __mode_t st_mode; /* File mode. */
/dports/lang/zig/zig-0.9.0/lib/libc/include/x86_64-linux-gnu/bits/
H A Dstruct_stat.h41 __mode_t st_mode; /* File mode. */
45 __mode_t st_mode; /* File mode. */
112 __mode_t st_mode; /* File mode. */
116 __mode_t st_mode; /* File mode. */
/dports/lang/zig/zig-0.9.0/lib/libc/include/i386-linux-gnu/bits/
H A Dstruct_stat.h41 __mode_t st_mode; /* File mode. */
45 __mode_t st_mode; /* File mode. */
112 __mode_t st_mode; /* File mode. */
116 __mode_t st_mode; /* File mode. */
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/i386-linux-gnu/bits/
H A Dstruct_stat.h41 __mode_t st_mode; /* File mode. */
45 __mode_t st_mode; /* File mode. */
112 __mode_t st_mode; /* File mode. */
116 __mode_t st_mode; /* File mode. */
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/x86_64-linux-gnux32/bits/
H A Dstruct_stat.h41 __mode_t st_mode; /* File mode. */
45 __mode_t st_mode; /* File mode. */
112 __mode_t st_mode; /* File mode. */
116 __mode_t st_mode; /* File mode. */
/dports/lang/zig/zig-0.9.0/lib/libc/include/generic-glibc/bits/
H A Dstruct_stat.h42 __mode_t st_mode; /* File mode. */
97 __mode_t st_mode; /* File mode. */
141 __mode_t st_mode;
191 __mode_t st_mode;
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/generic-glibc/bits/
H A Dstruct_stat.h42 __mode_t st_mode; /* File mode. */
97 __mode_t st_mode; /* File mode. */
141 __mode_t st_mode;
191 __mode_t st_mode;
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/s390x-linux-gnu/bits/
H A Dstruct_stat.h34 __mode_t st_mode; /* File mode. */
78 __mode_t st_mode; /* File mode. */
135 __mode_t st_mode; /* File mode. */
176 __mode_t st_mode; /* File mode. */
/dports/lang/zig/zig-0.9.0/lib/libc/include/s390x-linux-gnu/bits/
H A Dstruct_stat.h34 __mode_t st_mode; /* File mode. */
78 __mode_t st_mode; /* File mode. */
135 __mode_t st_mode; /* File mode. */
176 __mode_t st_mode; /* File mode. */
/dports/lang/zig/zig-0.9.0/lib/libc/include/powerpc-linux-gnueabi/bits/
H A Dstruct_stat.h41 __mode_t st_mode; /* File mode. */
93 __mode_t st_mode; /* File mode. */
140 __mode_t st_mode; /* File mode. */
189 __mode_t st_mode; /* File mode. */
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/powerpc-linux-gnueabi/bits/
H A Dstruct_stat.h41 __mode_t st_mode; /* File mode. */
93 __mode_t st_mode; /* File mode. */
140 __mode_t st_mode; /* File mode. */
189 __mode_t st_mode; /* File mode. */
/dports/lang/zig-devel/zig-0.9.0/lib/libc/include/powerpc-linux-gnueabihf/bits/
H A Dstruct_stat.h41 __mode_t st_mode; /* File mode. */
93 __mode_t st_mode; /* File mode. */
140 __mode_t st_mode; /* File mode. */
189 __mode_t st_mode; /* File mode. */
/dports/lang/zig/zig-0.9.0/lib/libc/include/powerpc64-linux-gnu/bits/
H A Dstruct_stat.h41 __mode_t st_mode; /* File mode. */
93 __mode_t st_mode; /* File mode. */
140 __mode_t st_mode; /* File mode. */
189 __mode_t st_mode; /* File mode. */
/dports/lang/zig/zig-0.9.0/lib/libc/include/powerpc-linux-gnueabihf/bits/
H A Dstruct_stat.h41 __mode_t st_mode; /* File mode. */
93 __mode_t st_mode; /* File mode. */
140 __mode_t st_mode; /* File mode. */
189 __mode_t st_mode; /* File mode. */
/dports/lang/zig/zig-0.9.0/lib/libc/include/powerpc64le-linux-gnu/bits/
H A Dstruct_stat.h41 __mode_t st_mode; /* File mode. */
93 __mode_t st_mode; /* File mode. */
140 __mode_t st_mode; /* File mode. */
189 __mode_t st_mode; /* File mode. */

12345678910>>...12