Searched refs:mode (Results 51 - 75 of 3374) sorted by relevance

1234567891011>>

/macosx-10.10.1/sudo-73/src/
H A Dparse_args.c83 int mode = 0; /* what mode is sudo to be run in? */ local
84 int flags = 0; /* mode flags */
89 mode = MODE_EDIT;
138 if (mode && mode != MODE_EDIT)
140 mode = MODE_EDIT;
150 if (mode && mode != MODE_HELP) {
154 mode
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dfopen_unlocked.c39 @deftypefn Extension {FILE *} fopen_unlocked (const char *@var{path}, const char * @var{mode})
48 @deftypefn Extension {FILE *} fdopen_unlocked (int @var{fildes}, const char * @var{mode})
57 @deftypefn Extension {FILE *} freopen_unlocked (const char * @var{path}, const char * @var{mode}, FILE * @var{stream})
105 fopen_unlocked (const char *path, const char *mode) argument
107 FILE *const fp = fopen (path, mode);
113 fdopen_unlocked (int fildes, const char *mode) argument
115 FILE *const fp = fdopen (fildes, mode);
121 freopen_unlocked (const char *path, const char *mode, FILE *stream) argument
123 FILE *const fp = freopen (path, mode, stream);
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/sfio/
H A Dsftell.c36 reg int mode; local
42 /* set the stream to the right mode */
43 if((mode = f->mode&SF_RDWR) != (int)f->mode && _sfmode(f,mode,0) < 0)
56 else p = f->here + ((f->mode&SF_WRITE) ? f->next-f->data : f->next-f->endb);
H A Dsfwalk.c43 if(sfstdin->mode & SF_INIT)
44 _sfmode(sfstdin, (sfstdin->mode & SF_RDWR), 0);
45 if(sfstdout->mode & SF_INIT)
46 _sfmode(sfstdout, (sfstdout->mode & SF_RDWR), 0);
47 if(sfstderr->mode & SF_INIT)
48 _sfmode(sfstderr, (sfstderr->mode & SF_RDWR), 0);
H A Dsfclrlock.c41 if(f && (f->mode&SF_AVAIL))
50 if(f->mode&SF_PKRD)
58 f->mode &= (SF_RDWR|SF_INIT|SF_POOL|SF_PUSH|SF_SYNCED|SF_STDIO);
60 rv = (f->mode&SF_PUSH) ? 0 : (f->flags&SF_FLAGS);
H A Dsfpeek.c43 reg int mode; local
47 { if(f->mode&SF_INIT)
65 if(!(mode = f->flags&SF_READ) )
66 mode = SF_WRITE;
67 if((int)f->mode != mode && _sfmode(f,mode,0) < 0)
78 { f->mode |= SF_PEEK;
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/
H A Dfilemode.c108 mode_string (unsigned long mode, char *str)
110 str[0] = ftypelet ((unsigned long) mode);
111 str[1] = (mode & S_IRUSR) != 0 ? 'r' : '-';
112 str[2] = (mode & S_IWUSR) != 0 ? 'w' : '-';
113 str[3] = (mode & S_IXUSR) != 0 ? 'x' : '-';
114 str[4] = (mode & S_IRGRP) != 0 ? 'r' : '-';
115 str[5] = (mode & S_IWGRP) != 0 ? 'w' : '-';
116 str[6] = (mode & S_IXGRP) != 0 ? 'x' : '-';
117 str[7] = (mode & S_IROTH) != 0 ? 'r' : '-';
118 str[8] = (mode
107 mode_string(unsigned long mode, char *str) argument
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/netinet/
H A Dip_ecn.c84 ip_ecn_ingress(mode, outer, inner)
85 int mode;
93 switch (mode) {
109 ip_ecn_egress(mode, outer, inner)
110 int mode;
117 switch (mode) {
130 ip6_ecn_ingress(mode, outer, inner)
131 int mode;
141 ip_ecn_ingress(mode, &outer8, &inner8);
147 ip6_ecn_egress(mode, oute
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/docs_src/ref/env/
H A Dnaming1.cs11 int mode;
14 dbenv-__GT__open(dbenv, "/a/database", flags, mode);])
H A Dnaming2.cs11 int mode;
15 dbenv-__GT__open(dbenv, "/a/database", flags, mode);])
/macosx-10.10.1/BerkeleyDB-21/db/os/
H A Dos_mkdir.c20 __os_mkdir(env, name, mode)
23 int mode;
44 if (mode != 0) {
45 RETRY_CHK((chmod(name, mode)), ret);
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dstdopen.c55 int mode = contrary_mode[fd]; local
57 /* Open /dev/null with the contrary mode so that the typical
63 if (mode == O_RDONLY
64 || (new_fd = open ("/dev/full", mode) != fd))
65 new_fd = open ("/dev/null", mode);
H A Dfchmodat.c36 Invoke chmod or lchmod on file, FILE, using mode MODE, in the directory
48 #define AT_FUNC_POST_FILE_PARAM_DECLS , mode_t mode, int flag
49 #define AT_FUNC_POST_FILE_ARGS , mode
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dmkfifo.c40 mkfifo(const char* path, mode_t mode)
43 return mknod(path, S_IFIFO|(mode & ~S_IFMT), 0);
/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/
H A Dguarded_open_dprotected_np.c30 const guardid_t *guard, u_int guardflags, int flags, int dpclass, int dpflags, int mode);
36 int mode = 0; local
41 mode = va_arg(ap, int);
44 return (__guarded_open_dprotected_np(path, guard, guardflags, flags, dpclass, dpflags, mode));
H A Dguarded_open_np.c30 const guardid_t *guard, u_int guardflags, int flags, int mode);
36 int mode = 0; local
41 mode = va_arg(ap, int);
44 return (__guarded_open_np(path, guard, guardflags, flags, mode));
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Dtest071.tcl11 {mode CONSUME} {start 0 } {txn -txn} {tnum "071"} args } {
14 $nconsumers $nproducers $nitems $mode $start $txn $tnum $args
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGCompilationMode.cpp37 void printInternal(PrintStream& out, CompilationMode mode) argument
39 switch (mode) {
H A DDFGCompilationMode.h40 inline bool isFTL(CompilationMode mode) argument
42 switch (mode) {
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DSchedulePairCF.cpp38 CFStringRef thisMode = mode();
39 CFStringRef otherMode = other.mode();
H A DHexNumber.h36 inline const LChar* hexDigitsForMode(HexConversionMode mode) argument
38 return mode == Lowercase ? lowerHexDigits : upperHexDigits;
44 inline void appendByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase)
46 const LChar* hexDigits = Internal::hexDigitsForMode(mode);
52 inline void placeByteAsHexCompressIfPossible(unsigned char byte, T& destination, unsigned& index, HexConversionMode mode = Uppercase)
54 const LChar* hexDigits = Internal::hexDigitsForMode(mode);
61 inline void placeByteAsHex(unsigned char byte, T& destination, HexConversionMode mode = Uppercase)
63 const LChar* hexDigits = Internal::hexDigitsForMode(mode);
69 inline void appendUnsignedAsHex(unsigned number, T& destination, HexConversionMode mode = Uppercase)
71 const LChar* hexDigits = Internal::hexDigitsForMode(mode);
[all...]
/macosx-10.10.1/files-662.1.1/private/etc/
H A Dasl.conf.ios24 > /var/mobile/Library uid=501 gid=501 mode=0700
25 > /var/mobile/Library/Logs uid=501 gid=501 mode=0755
26 > /var/mobile/Library/Logs/CrashReporter uid=501 gid=501 mode=0755
27 > /var/mobile/Library/Logs/CrashReporter/DiagnosticLogs uid=501 gid=501 mode=0755
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/preroot/
H A Drealopen.c34 realopen(const char* path, int mode, int perm) argument
40 return(open(buf, mode, perm));
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/contrib/tags/
H A Dxtiffio.h43 extern TIFF* XTIFFOpen(const char* name, const char* mode);
44 extern TIFF* XTIFFFdOpen(int fd, const char* name, const char* mode);
55 * mode: c
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DLockNotGrantedException.java30 private int mode; field in class:LockNotGrantedException
36 final int mode,
43 this.mode = mode;
66 Returns the mode parameter when {@link com.sleepycat.db.Environment#getLock Environment.getLock} was
67 called, and returns the mode for the failed LockRequest when
71 return mode;
34 LockNotGrantedException(final String message, final int op, final int mode, final DatabaseEntry obj, final DbLock lock, final int index, final DbEnv dbenv) argument

Completed in 266 milliseconds

1234567891011>>