Searched refs:mode (Results 26 - 50 of 3374) sorted by relevance

1234567891011>>

/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dmkdirat.c31 Create a subdirectory, FILE, with mode MODE, in the directory
41 #define AT_FUNC_POST_FILE_PARAM_DECLS , mode_t mode
42 #define AT_FUNC_POST_FILE_ARGS , mode
H A Dopen-safer.c32 mode_t mode = 0; local
42 mode = (sizeof (mode_t) < sizeof (int)
49 return fd_safer (open (file, flags, mode));
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/stdio/
H A Dfdopen.c27 fdopen(int fd, const char* mode) argument
31 if (fd < 0 || !(flags = _sftype(mode, NiL, NiL, NiL)))
H A Dfwide.c27 fwide(Sfio_t* f, int mode) argument
29 STDIO_INT(f, "fwide", int, (Sfio_t*, int), (f, mode))
31 if (mode > 0)
36 else if (mode < 0)
H A Dfmemopen.c27 fmemopen(void* buf, size_t size, const char* mode) argument
29 STDIO_PTR(0, "fmemopen", Sfio_t*, (void*, size_t, const char*), (buf, size, mode))
31 return sfnew(NiL, buf, size, -1, SF_STRING|_sftype(mode, NiL, NiL, NiL));
/macosx-10.10.1/libxml2-26/libxml2/
H A Dxzlib.h14 xzFile __libxml2_xzopen(const char *path, const char *mode);
15 xzFile __libxml2_xzdopen(int fd, const char *mode);
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dcreat64.c33 creat64(const char* path, mode_t mode)
35 return open64(path, O_WRONLY|O_CREAT|O_TRUNC, mode);
H A Deaccess.c52 register int mode;
73 mode = 0;
83 mode |= S_IRUSR;
85 mode |= S_IWUSR;
87 mode |= S_IXUSR;
95 mode |= S_IRGRP;
97 mode |= S_IWGRP;
99 mode |= S_IXGRP;
124 mode |= S_IROTH;
126 mode |
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/string/
H A Dstrmode.c27 * return modex canonical representation of file mode bits
28 * given ls -l style file mode string
39 int mode; local
41 mode = 0;
47 mode |= (p->mask1 & (c << p->shift1)) | (p->mask2 & (c << p->shift2));
50 return(mode);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/include/example/
H A Dexpr_serial.inc4 AddOp {is {/ {t -} {t +}} mode value}
5 Digit {is {/ {t 0} {t 1} {t 2} {t 3} {t 4} {t 5} {t 6} {t 7} {t 8} {t 9}} mode value}
6 Expression {is {/ {x {t (} {n Expression} {t )}} {x {n Factor} {* {x {n MulOp} {n Factor}}}}} mode value}
7 Factor {is {x {n Term} {* {x {n AddOp} {n Term}}}} mode value}
8 MulOp {is {/ {t *} {t /}} mode value}
9 Number {is {x {? {n Sign}} {+ {n Digit}}} mode value}
10 Sign {is {/ {t -} {t +}} mode value}
11 Term {is {n Number} mode value}
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/legacy/
H A Dopen.c33 int __open_nocancel(const char *path, int flags, mode_t mode);
42 mode_t mode = 0; local
48 mode = va_arg(ap, int);
51 return(__open_nocancel(path, flags | O_NOCTTY, mode));
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/
H A Dopen_dprotected_np.c28 int __open_dprotected_np(const char* path, int flags, int class, int dpflags, int mode);
31 int mode = 0; local
36 mode = va_arg(ap, int);
39 return (__open_dprotected_np(path, flags, class, dpflags, mode));
/macosx-10.10.1/BerkeleyDB-21/db/os_brew/
H A Dos_mkdir.c18 __os_mkdir(env, name, mode)
21 int mode;
26 COMPQUIET(mode, 0);
/macosx-10.10.1/Libc-1044.1.2/stdio/FreeBSD/
H A Dfwide.c39 fwide(FILE *fp, int mode) argument
45 if (mode != 0 && fp->_orientation == 0)
46 fp->_orientation = mode > 0 ? 1 : -1;
/macosx-10.10.1/gnudiff-19/diffutils/lib/
H A Dsetmode.c1 /* Set a file descriptor's mode to binary or to text.
46 /* Set the binary mode of FD to MODE, returning its previous mode.
47 MODE is 1 for binary and 0 for text. If setting the mode might
53 set_binary_mode (int fd, bool mode) argument
57 return mode;
58 return setmode (fd, mode ? O_BINARY : O_TEXT) != O_TEXT;
/macosx-10.10.1/xar-254/xar/lib/
H A Dstrmode.h39 strmode(mode, p)
40 mode_t mode; variable
44 switch (mode & S_IFMT) {
78 if (mode & S_IRUSR)
82 if (mode & S_IWUSR)
86 switch (mode & (S_IXUSR | S_ISUID)) {
101 if (mode & S_IRGRP)
105 if (mode & S_IWGRP)
109 switch (mode & (S_IXGRP | S_ISGID)) {
124 if (mode
[all...]
/macosx-10.10.1/Libc-1044.1.2/compat-43/FreeBSD/
H A Dcreat.c42 int __open(const char *path, int flags, mode_t mode);
44 int __open_nocancel(const char *path, int flags, mode_t mode);
49 __creat(const char *path, mode_t mode) argument
52 return(__open(path, O_WRONLY|O_CREAT|O_TRUNC, mode));
54 return(__open_nocancel(path, O_WRONLY|O_CREAT|O_TRUNC, mode));
/macosx-10.10.1/libxml2-26/libxml2/win32/wince/
H A Dwincecompat.c34 char mode[3]; /* mode[0] ="w/r/a" mode[1]="+" */ local
35 mode[2]=0;
37 mode[0]='w';
39 mode[0]='r';
40 return (int) fopen(filename, mode);
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/win32/wince/
H A Dwincecompat.c34 char mode[3]; /* mode[0] ="w/r/a" mode[1]="+" */ local
35 mode[2]=0;
37 mode[0]="w";
39 mode[0]="r";
40 return fopen(filename, mode);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/support/devel/sak/validate/
H A Dvalidate.tcl16 proc ::sak::validate::all {modules mode stem tclv} {
22 sak::validate::versions::run $modules $mode $stem $tclv
23 sak::validate::manpages::run $modules $mode $stem $tclv
24 sak::validate::testsuites::run $modules $mode $stem $tclv
25 sak::validate::syntax::run $modules $mode $stem $tclv
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/support/devel/sak/validate/
H A Dvalidate.tcl16 proc ::sak::validate::all {modules mode stem} {
22 sak::validate::versions::run $modules $mode $stem
23 sak::validate::manpages::run $modules $mode $stem
24 sak::validate::testsuites::run $modules $mode $stem
25 sak::validate::syntax::run $modules $mode $stem
/macosx-10.10.1/Libc-1044.1.2/string/FreeBSD/
H A Dstrmode.c41 strmode(/* mode_t */ int mode, char *p) argument
44 switch (mode & S_IFMT) {
78 if (mode & S_IRUSR)
82 if (mode & S_IWUSR)
86 switch (mode & (S_IXUSR | S_ISUID)) {
101 if (mode & S_IRGRP)
105 if (mode & S_IWGRP)
109 switch (mode & (S_IXGRP | S_ISGID)) {
124 if (mode & S_IROTH)
128 if (mode
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dstrmode.c40 /* XXX mode should be mode_t */
43 strmode(int mode, char *p) argument
46 switch (mode & S_IFMT) {
77 if (mode & S_IRUSR)
81 if (mode & S_IWUSR)
85 switch (mode & (S_IXUSR | S_ISUID)) {
100 if (mode & S_IRGRP)
104 if (mode & S_IWGRP)
108 switch (mode & (S_IXGRP | S_ISGID)) {
123 if (mode
[all...]
/macosx-10.10.1/Libc-1044.1.2/gen/
H A Dget_compat.c47 char *mode = getenv("COMMAND_MODE"); local
49 if (mode) {
50 if (!strcasecmp(mode, "legacy")) {
53 if (!strcasecmp(mode, "unix2003")) {
73 mode names are case insensitatave. You can use | ^ & and even !
79 compat_mode(const char *function, const char *mode) { argument
85 bool want2003 = !strcasecmp("unix2003", mode);
91 bool want_legacy = !strcasecmp("legacy", mode);
97 bool want_bootstrap = !strcasecmp("bootstrap", mode);
103 bool want_error = !strcasecmp("error", mode);
155 char *mode; member in struct:__anon2725
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DLockRequest.java17 private LockRequestMode mode; field in class:LockRequest
24 Construct a LockRequest with the specified operation, mode and lock,
30 @param mode
31 The permissions mode for the object.
40 final LockRequestMode mode,
44 this(op, mode, obj, lock, 0);
48 Construct a LockRequest with the specified operation, mode, lock and
54 @param mode
55 The permissions mode for the object.
67 final LockRequestMode mode,
39 LockRequest(final LockOperation op, final LockRequestMode mode, final DatabaseEntry obj, final Lock lock) argument
66 LockRequest(final LockOperation op, final LockRequestMode mode, final DatabaseEntry obj, final Lock lock, final int timeout) argument
95 setMode(final LockRequestMode mode) argument
[all...]

Completed in 244 milliseconds

1234567891011>>