Searched refs:mode (Results 151 - 175 of 3483) sorted by relevance

1234567891011>>

/macosx-10.9.5/Libc-997.90.3/db/db/FreeBSD/
H A Ddb.c50 dbopen(fname, flags, mode, type, openinfo)
52 int flags, mode;
66 mode, openinfo, flags & DB_FLAGS));
69 mode, openinfo, flags & DB_FLAGS));
72 mode, openinfo, flags & DB_FLAGS));
/macosx-10.9.5/WebCore-7537.78.1/workers/
H A DWorkerRunLoop.h58 MessageQueueWaitResult runInMode(WorkerContext*, const String& mode, WaitMode = WaitForMessage);
65 void postTaskForMode(PassOwnPtr<ScriptExecutionContext::Task>, const String& mode);
74 static PassOwnPtr<Task> create(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode);
76 const String& mode() const { return m_mode; } function in class:WebCore::WorkerRunLoop::Task
80 Task(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode);
H A DWorkerRunLoop.cpp70 ModePredicate(const String& mode) argument
71 : m_mode(mode)
72 , m_defaultMode(mode == WorkerRunLoop::defaultMode())
83 return m_defaultMode || m_mode == task->mode();
140 MessageQueueWaitResult WorkerRunLoop::runInMode(WorkerContext* context, const String& mode, WaitMode waitMode) argument
143 ModePredicate modePredicate(mode);
209 void WorkerRunLoop::postTaskForMode(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode) argument
211 m_messageQueue.append(Task::create(task, mode.isolatedCopy()));
214 PassOwnPtr<WorkerRunLoop::Task> WorkerRunLoop::Task::create(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode) argument
216 return adoptPtr(new Task(task, mode));
226 Task(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode) argument
[all...]
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-from-anonymous-code/
H A Dmain.c35 void* calldlopen(const char* path, int mode, void* (*dlopen_proc)(const char* path, int mode)) argument
37 return (*dlopen_proc)(path, mode);
66 void* (*caller)(const char* path, int mode, void* (*dlopen_proc)(const char* path, int mode)) = ADDR_FROM_BLOCK(codeBlock);
/macosx-10.9.5/file_cmds-230/mkfifo/
H A Dmkfifo.c74 mode_t mode = 0; local
79 /* The default mode is the value of the bitwise inclusive or of
83 mode = 0666 & ~umask(0);
91 errx(1, "invalid file mode.");
94 /* In symbolic mode strings, the + and - operators are
95 interpreted relative to an assumed initial mode of
97 mode = getmode (set, 0666);
109 mode_t maskbits = umask(0); /* now must disable umask so -m mode won't be masked again */
111 mode = 0666 & ~maskbits;
115 if (mkfifo(*argv, mode) <
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libcmd/
H A Dmkfifo.c34 "default, the mode of created FIFO is \ba=rw\b minus the "
36 "[m:mode]:[mode?Set the mode of created FIFO to \amode\a. "
37 "\amode\a is symbolic or octal mode as in \bchmod\b(1). Relative "
38 "modes assume an initial mode of \ba=rw\b.]"
56 register mode_t mode = S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH; local
67 mode = strperm(arg = opt_info.arg, &opt_info.arg, mode);
69 error(ERROR_exit(0), "%s: invalid mode", ar
[all...]
H A Dmktemp.c31 "temporary file will have mode \brw-------\b and a temporary directory "
32 "will have mode \brwx------\b, subject to \bumask\b(1). Generated paths "
44 "[m:mode]:[mode?Set the mode of the created temporary to \amode\a. "
45 "\amode\a is symbolic or octal mode as in \bchmod\b(1). Relative modes "
46 "assume an initial mode of \bu=rwx\b.]"
69 mode_t mode = 0; local
90 mode = strperm(pfx = opt_info.arg, &opt_info.arg, S_IRWXU);
92 error(ERROR_exit(0), "%s: invalid mode", pf
[all...]
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dsystem.h163 # define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
166 # define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
171 # define S_ISBLK(mode) (((mode) & S_IFMT) == S_IFBLK)
173 # define S_ISBLK(mode) 0
178 # define S_ISCHR(mode) (((mode) & S_IFMT) == S_IFCHR)
180 # define S_ISCHR(mode)
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DLockMode.java96 static int getFlag(LockMode mode) { argument
97 return ((mode == null) ? DEFAULT : mode).flag;
/macosx-10.9.5/BerkeleyDB-21/db/os_brew/
H A Dos_open.c18 __os_open(env, name, page_size, flags, mode, fhpp)
22 int mode;
46 if ((ret = __os_openhandle(env, name, oflags, mode, fhpp)) != 0)
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/autogroup/
H A DMakefile15 $(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) -Wall -c $?
18 $(LIBTOOL) --mode=link $(CC) -version-info 0:0:0 \
26 $(LIBTOOL) --mode=install cp autogroup.la $(DESTDIR)$(moduledir)
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/contrib/slapd-modules/lastbind/
H A DMakefile23 $(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) -Wall -c $?
26 $(LIBTOOL) --mode=link $(CC) -version-info 0:0:0 \
34 $(LIBTOOL) --mode=install cp lastbind.la $(prefix)/libexec/openldap
/macosx-10.9.5/WebCore-7537.78.1/loader/appcache/
H A DManifestParser.cpp46 Mode mode = Explicit; local
94 mode = Explicit;
96 mode = Fallback;
98 mode = OnlineWhitelist;
100 mode = Unknown;
101 else if (mode == Unknown)
103 else if (mode == Explicit || mode == OnlineWhitelist) {
111 if (mode == OnlineWhitelist && p - line.characters() == 1 && *line.characters() == '*') {
128 if (mode
[all...]
/macosx-10.9.5/dyld-239.4/unit-tests/test-cases/dlopen-local-and-global/
H A Dmain.c33 static void* openWithModeGetSymbol(const char* path, int mode, const char* symbol) argument
35 void* handle = dlopen(path, mode);
38 if ( ((mode & RTLD_LOCAL) != 0) && (strstr(msg, "RTLD_LOCAL") != NULL) )
/macosx-10.9.5/kext_tools-326.95.1/
H A Dsafecalls.h40 int sopen(int fdvol, const char *path, int flags, mode_t mode);
48 int smkdir(int fdvol, const char *path, mode_t mode);
58 // 'mkdir -p' (recursively applies mode)
59 int sdeepmkdir(int fdvol, const char *path, mode_t mode);
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/
H A DtclLoadShl.c35 dlopen(path, mode)
37 int mode;
44 flags = ((mode & RTLD_NOW) ? BIND_IMMEDIATE : BIND_DEFERRED) |
/macosx-10.9.5/xnu-2422.115.4/SETUP/config/
H A Dopenp.c27 * i = openp (path,file,complete,flags,mode)
29 * int i,flags,mode;
35 * with the specified "flags" and "mode", then the full filename
39 * of open() and type instead of flags/mode; it returns 0 if no
45 * changed names of flags, mode, and type parameters to reflect
58 int openp(const char *fpath, char *file, char *complete, int flags, int mode);
79 openp(const char *fpath, char *file, char *complete, int flags, int mode) argument
82 mod = mode;
/macosx-10.9.5/Libc-997.90.3/stdio/FreeBSD/
H A Dsetvbuf.c51 setvbuf(FILE * __restrict fp, char * __restrict buf, int mode, size_t size) argument
62 if (mode != _IONBF)
63 if ((mode != _IOFBF && mode != _IOLBF) || (int)size < 0)
83 /* If setting unbuffered mode, skip all the hard work. */
84 if (mode == _IONBF)
137 if (mode == _IOLBF)
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebDynamicScrollBarsViewInternal.h43 - (void)setHorizontalScrollingMode:(WebCore::ScrollbarMode)mode andLock:(BOOL)lock;
44 - (void)setVerticalScrollingMode:(WebCore::ScrollbarMode)mode andLock:(BOOL)lock;
48 - (void)setScrollingModesLocked:(BOOL)mode;
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/sh/
H A Dsuid_exec.c38 * may pass file descriptor FDIN as an open file with mode SPECIAL if
102 int mode; local
125 * by root and is mode SPECIAL, then this is proof that it was
207 mode = 0;
216 mode = S_ISGID;
219 if(mode)
222 mode |= S_ISUID;
227 mode = S_ISUID;
230 if(mode)
231 setids(mode, effui
293 eaccess(register const char *name, register int mode) argument
344 setids(int mode,int owner,int group) argument
364 setids(int mode,uid_t owner,gid_t group) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/memchan/memchan/tools/
H A Dhtdocs_get_sf_stats9 set mode full
15 set stat_url http://sourceforge.net/export/projhtml.php?group_id=$memchan&mode=$mode&no_table=$no_table
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/tools/
H A Dhtdocs_get_sf_stats9 set mode full
15 set stat_url http://sourceforge.net/export/projhtml.php?group_id=$trf&mode=$mode&no_table=$no_table
/macosx-10.9.5/BerkeleyDB-21/db/os_windows/
H A Dos_mkdir.c18 __os_mkdir(env, name, mode)
21 int mode;
/macosx-10.9.5/CPANInternal-140/Log-Log4perl/lib/Log/Log4perl/JavaMap/
H A DRollingFileAppender.pm16 my $mode;
19 $mode = 'append';
21 $mode = 'write';
23 $mode = $data->{Append}
28 $mode = 'append';
67 mode => $mode,
99 mode "write|append"
/macosx-10.9.5/ICU-511.35/icuSources/common/unicode/
H A Dunorm.h149 /** One more than the highest normalization mode constant. @stable ICU 2.0 */
189 * The string will be normalized according the specified normalization mode
195 * @param mode The normalization mode; one of UNORM_NONE,
208 UNormalizationMode mode, int32_t options,
225 * @param mode which normalization form to test for
234 UNormalizationMode mode,
243 * @param mode Which normalization form to test for.
255 UNormalizationMode mode, int32_t options,
260 * This is semantically equivalent to source.equals(normalize(source, mode))
[all...]

Completed in 480 milliseconds

1234567891011>>