Searched refs:mode (Results 76 - 100 of 3374) sorted by relevance

1234567891011>>

/macosx-10.10.1/BerkeleyDB-21/db/os_brew/
H A Dfopen.c21 fopen(filename, mode)
22 const char *filename, *mode;
36 DB_ASSERT(NULL, filename != NULL && mode != NULL);
45 * The argument mode points to a string beginning with one of the
61 update_flag = strchr(mode, '+') ? 1 : 0;
62 switch (*mode) {
63 case 'a': /* append mode */
66 case 'r': /* read mode */
69 case 'w': /* write mode */
/macosx-10.10.1/CommonCrypto-60061/test/CommonCrypto/
H A DCommonCryptoSymCFB.c41 CCMode mode;
47 mode = kCCModeCFB;
56 retval = CCModeTestCase(keyStr, iv, mode, alg, padding, cipherText, plainText);
63 retval = CCModeTestCase(keyStr, iv, mode, alg, padding, cipherText, plainText);
70 retval = CCModeTestCase(keyStr, iv, mode, alg, padding, cipherText, plainText);
78 retval = CCModeTestCase(keyStr, iv, mode, alg, padding, cipherText, plainText);
86 retval = CCModeTestCase(keyStr, iv, mode, alg, padding, cipherText, plainText);
94 retval = CCModeTestCase(keyStr, iv, mode, alg, padding, cipherText, plainText);
101 mode = kCCModeCFB;
107 retval = CCModeTestCase(keyStr, iv, mode, al
[all...]
H A DCommonCryptoSymOFB.c41 CCMode mode;
48 mode = kCCModeOFB;
57 retval = CCModeTestCase(keyStr, iv, mode, alg, padding, cipherText, plainText);
64 retval = CCModeTestCase(keyStr, iv, mode, alg, padding, cipherText, plainText);
71 retval = CCModeTestCase(keyStr, iv, mode, alg, padding, cipherText, plainText);
78 mode = kCCModeOFB;
83 retval = CCModeTestCase(keyStr, iv, mode, alg, padding, cipherText, plainText);
90 mode = kCCModeOFB;
95 retval = CCModeTestCase(keyStr, iv, mode, alg, padding, cipherText, plainText);
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/path/
H A Dpathaccess.c27 * return path to file a/b with access mode using : separated dirs
30 * if (mode&PATH_REGULAR) then path must not be a directory
31 * if (mode&PATH_ABSOLUTE) then path must be rooted
40 pathaccess(char* path, const char* dirs, const char* a, const char* b, int mode) argument
42 return pathaccess_20100601(dirs, a, b, mode, path, PATH_MAX);
50 pathaccess_20100601(register const char* dirs, const char* a, const char* b, register int mode, register char* path, size_t size) argument
60 if ((!sib || *path == '/') && pathexists(path, mode))
62 if (*path == '/' || !(mode & PATH_ABSOLUTE))
H A Dpathexists.c44 int mode; member in struct:Tree_s
49 pathexists(char* path, int mode) argument
103 t->mode = PATH_READ|PATH_EXECUTE;
120 t->mode |= PATH_READ;
122 t->mode |= PATH_WRITE;
124 t->mode |= PATH_EXECUTE;
126 t->mode |= PATH_REGULAR;
129 if (!t->mode || c && (t->mode & PATH_REGULAR))
132 mode
[all...]
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DSchedulePair.h46 static PassRefPtr<SchedulePair> create(CFRunLoopRef runLoop, CFStringRef mode) { return adoptRef(new SchedulePair(runLoop, mode)); } argument
49 static PassRefPtr<SchedulePair> create(NSRunLoop* runLoop, CFStringRef mode) { return adoptRef(new SchedulePair(runLoop, mode)); } argument
54 CFStringRef mode() const { return m_mode.get(); } function in class:WTF::SchedulePair
59 SchedulePair(CFRunLoopRef runLoop, CFStringRef mode) argument
62 if (mode)
63 m_mode = adoptCF(CFStringCreateCopy(0, mode));
78 uintptr_t hashCodes[2] = { reinterpret_cast<uintptr_t>(pair->runLoop()), pair->mode() ? CFHash(pair->mode())
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/Scripts/
H A Dupdate-codemirror-resources.rb36 addon/mode/overlay.js
41 mode/clojure/clojure.js
42 mode/coffeescript/coffeescript.js
43 mode/css/css.js
44 mode/htmlmixed/htmlmixed.js
45 mode/javascript/javascript.js
46 mode/livescript/livescript.js
47 mode/sass/sass.js
48 mode/sql/sql.js
49 mode/xm
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/sh/
H A Deaccess.c135 sh_stataccess (path, mode)
137 int mode;
147 if ((mode & X_OK) == 0)
157 mode <<= 6;
159 mode <<= 3;
161 if (st.st_mode & mode)
172 sh_euidaccess (path, mode)
174 int mode;
183 r = access (path, mode);
197 sh_eaccess (path, mode)
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dpcmpl-rpm.el63 (let (mode)
65 (unless mode
96 ((or (eq mode 'query)
98 (setq mode 'query)
151 ((or (eq mode 'checksig)
153 (setq mode 'checksig)
167 ((or (eq mode 'rebuilddb)
169 (setq mode 'rebuilddb)
186 ((memq mode '(install upgrade))
207 (if (eq mode 'upgrad
[all...]
/macosx-10.10.1/sudo-73/src/zlib/
H A Dgzlib.c79 if (state->mode == GZ_READ) { /* for reading ... */
91 local gzFile gz_open(path, fd, mode)
94 const char *mode;
110 /* interpret mode */
111 state->mode = GZ_NONE;
115 while (*mode) {
116 if (*mode >= '0' && *mode <= '9')
117 state->level = *mode - '0';
119 switch (*mode) {
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/comp/
H A Dopen.c51 int mode;
58 mode = (op & O_CREAT) ? va_arg(ap, int) : S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH;
73 if ((fd = creat(path, (op & O_EXCL) ? 0 : mode)) < 0)
84 if (mode && fchmod(fd, mode))
86 if (mode && chmod(path, mode))
97 else if ((fd = open(path, op & (_ast_O_LOCAL-1), mode)) < 0)
115 else fd = open(path, op, mode);
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Ddirname.c101 int mode = 0; local
110 mode |= PATH_REGULAR;
113 mode &= ~PATH_REGULAR;
114 mode |= PATH_READ;
117 mode |= PATH_EXECUTE;
132 if(!mode)
134 else if(pathpath(argv[0], "", mode, buf, sizeof(buf)))
H A Dcomm.c66 static int comm(Sfio_t *in1, Sfio_t *in2, register Sfio_t *out,register int mode) argument
79 if(mode&C_COMMON)
81 if(mode!=C_COMMON)
84 if(mode==C_ALL)
97 if(mode&C_FILE2)
99 if(mode&C_FILE1)
109 if((mode&C_FILE1) && sfwrite(out,cp1,n1) < 0)
121 if(mode&C_FILE1)
123 mode &= C_FILE2;
126 mode
150 register int mode = C_FILE1|C_FILE2|C_COMMON; local
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dderived.el2 ;; (formerly mode-clone.el)
32 ;; (buffer) belongs to a class (major mode), and that class defines
38 ;; use of hooks and a bit of work -- sgml-mode, for example, also runs
39 ;; the hooks for text-mode, and keymaps can inherit from other keymaps
40 ;; -- but generally, each major mode ends up reinventing the wheel.
43 ;; new major mode, the user should need only to name the existing mode
48 ;; `define-derived-mode' allows the user to make a variant of an existing
49 ;; major mode, with its own keymap. The new mode wil
[all...]
/macosx-10.10.1/zlib-55/zlib/
H A Dgzlib.c74 if (state->mode == GZ_READ) { /* for reading ... */
87 local gzFile gz_open(path, fd, mode)
90 const char *mode;
102 /* interpret mode */
103 state->mode = GZ_NONE;
106 while (*mode) {
107 if (*mode >= '0' && *mode <= '9')
108 state->level = *mode - '0';
110 switch (*mode) {
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/pkcs12/
H A Dp12_init.c65 PKCS12 *PKCS12_init(int mode) argument
73 pkcs12->authsafes->type = OBJ_nid2obj(mode);
74 switch (mode) {
/macosx-10.10.1/diskdev_cmds-576/disklib/
H A Ddkopen.c31 int dkopen (const char *path, int flags, int mode) argument
34 return (open64 (path, flags, mode));
36 return (open (path, flags, mode));
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/sfio/
H A Dsfswap.c43 if(!f1 || (f1->mode&SF_AVAIL) || (SFFROZEN(f1) && (f1->mode&SF_PUSH)) )
45 if(f2 && SFFROZEN(f2) && (f2->mode&SF_PUSH) )
50 f1mode = f1->mode;
52 f1->mode |= SF_PUSH; /* make sure there is no recursion on f1 */
55 { f2mode = f2->mode;
57 f2->mode |= SF_PUSH; /* make sure there is no recursion on f2 */
63 if((!f2 || !(f2->mode&SF_AVAIL)) )
65 { f1->mode = f1mode;
72 f2->mode
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/tcllib/
H A Dntext.rb66 def classicAnchor=(mode)
67 @classicAnchor.bool = mode
73 def classicExtras=(mode)
74 @classicExtras.bool = mode
80 def classicMouseSelect=(mode)
81 @classicMouseSelect.bool = mode
87 def classicWordBreak=(mode)
88 @classicWordBreak.bool = mode
94 def classicWrap=(mode)
95 @classicWrap.bool = mode
[all...]
/macosx-10.10.1/text_cmds-88/sort/
H A Dfopen-safer.c37 fopen_safer (char const *file, char const *mode) argument
39 FILE *fp = fopen (file, mode);
58 || ! (fp = fdopen (f, mode)))
/macosx-10.10.1/IOGraphics-485/tools/
H A Dceamodes.c203 CEAVideoFormatDataToDetailedTiming(const CEAVideoFormatData * mode, IODetailedTimingInformation * timing) argument
207 if( !mode->supported )
210 timing->pixelClock = (UInt64) (mode->pClk * 1000000.0);
214 timing->horizontalActive = mode->hActive;
215 timing->verticalActive = mode->vActive;
217 timing->horizontalBlanking = mode->hBlank;
218 timing->verticalBlanking = mode->vTotal - mode->vActive;
220 timing->horizontalSyncOffset = mode->hFront;
221 timing->horizontalSyncPulseWidth = mode
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/docs_src/ref/env/
H A Dnaming3.cs11 int mode;
16 dbenv-__GT__open(dbenv, "/a/database", flags, mode);])
H A Dnaming4.cs11 int mode;
16 dbenv-__GT__open(dbenv, "/a/database", flags, mode);])
/macosx-10.10.1/WTF-7600.1.24/wtf/dtoa/
H A Dbignum-dtoa.h56 // The output depends on the given mode:
62 // In this mode the 'requested_digits' parameter is ignored.
79 void BignumDtoa(double v, BignumDtoaMode mode, int requested_digits,
H A Dfast-dtoa.h59 // If the function returns true and mode equals
78 FastDtoaMode mode,

Completed in 387 milliseconds

1234567891011>>