Searched refs:mode (Results 251 - 275 of 3374) sorted by relevance

<<11121314151617181920>>

/macosx-10.10.1/tcl-105/tcl_ext/trf/trf/generic/
H A Ddig_opt.c59 int* mode));
127 o->mode = TRF_UNKNOWN_MODE;
226 * TRF_ATTACH: -mode required
229 * access mode of attached channel. If a channel
235 if ((o->mode != TRF_UNKNOWN_MODE) ||
246 if (o->mode == TRF_UNKNOWN_MODE) {
247 Tcl_AppendResult (interp, "attach: -mode not defined", (char*) NULL);
251 } else if (o->mode == TRF_ABSORB_HASH) {
259 } else if ((o->mode == TRF_WRITE_HASH) || (o->mode
269 int mode; local
292 int mode; local
[all...]
/macosx-10.10.1/zlib-55/zlib/
H A Dinflate.c113 state->mode = HEAD;
617 if (state->mode == TYPE) state->mode = TYPEDO; /* skip check */
623 switch (state->mode) {
626 state->mode = TYPEDO;
635 state->mode = FLAGS;
647 state->mode = BAD;
652 state->mode = BAD;
661 state->mode = BAD;
667 state->mode
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/
H A Dcryptlib.c125 static void (MS_FAR *locking_callback)(int mode,int type,
165 void (*CRYPTO_get_locking_callback(void))(int mode,int type,const char *file,
185 void CRYPTO_set_locking_callback(void (*func)(int mode,int type, argument
240 void CRYPTO_lock(int mode, int type, const char *file, int line) argument
246 if (mode & CRYPTO_LOCK)
248 else if (mode & CRYPTO_UNLOCK)
253 if (mode & CRYPTO_READ)
255 else if (mode & CRYPTO_WRITE)
267 locking_callback(mode,type,file,line);
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dcomment.js24 var minLine = Infinity, ranges = cm.listSelections(), mode = null;
30 if (mode == null) {
31 if (cm.uncomment(from, to)) mode = "un";
32 else { cm.lineComment(from, to); mode = "line"; }
33 } else if (mode == "un") {
43 var self = this, mode = self.getModeAt(from);
44 var commentString = options.lineComment || mode.lineComment;
46 if (options.blockCommentStart || mode.blockCommentStart) {
78 var self = this, mode = self.getModeAt(from);
79 var startString = options.blockCommentStart || mode
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Dvmstate.c91 if (state->vs.mode & VM_TRUST)
94 if (state->vs.mode & VM_TRACE)
96 if (state->vs.mode & VM_DBCHECK)
98 if (state->vs.mode & VM_DBABORT)
115 if (state->vs.mode & VM_MTBEST)
117 else if (state->vs.mode & VM_MTPOOL)
119 else if (state->vs.mode & VM_MTLAST)
121 else if (state->vs.mode & VM_MTDEBUG)
123 else if (state->vs.mode & VM_MTPROFILE)
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/sfio/
H A D_sfopen.c38 Sfio_t* _sfopen(Sfio_t* f, const char* file, const char* mode) argument
40 Sfio_t* _sfopen(f,file,mode)
43 char* mode; /* mode of the stream */
50 if((sflags = _sftype(mode,&oflags,&fflags,NIL(int*))) == 0)
57 if(f->mode&SF_INIT ) /* stream uninitialized, ok to set flags */
68 f->mode = (f->mode&~SF_WRITE)|SF_READ;
69 else f->mode = (f->mode
146 _sftype(reg const char* mode, int* oflagsp, int* fflagsp, int* uflagp) argument
[all...]
H A Dsfsk.c41 reg int local, mode; local
48 { if((mode = f->mode&SF_RDWR) != (int)f->mode && _sfmode(f,mode,0) < 0)
53 if(f->mode == SF_READ && (f->bits&SF_MMAP) && f->data)
/macosx-10.10.1/ntp-92/include/
H A Dtimepps-SCO.h93 * Device/implementation parameters (mode)
108 * Kernel actions (mode)
126 #define PPS_KC_HARDPPS_PLL 1 /* phase-lock mode */
127 #define PPS_KC_HARDPPS_FLL 2 /* frequency-lock mode */
155 int current_mode; /* current mode bits */
170 int mode; /* mode bits */ member in struct:pps_params
237 (*handle)->params.mode = PPS_CAPTUREASSERT | PPS_TSFMT_TSPEC;
272 int mode, mode_in; local
301 mode_in = params->mode;
[all...]
H A Dtimepps-SunOS.h93 * Device/implementation parameters (mode)
108 * Kernel actions (mode)
126 #define PPS_KC_HARDPPS_PLL 1 /* phase-lock mode */
127 #define PPS_KC_HARDPPS_FLL 2 /* frequency-lock mode */
155 int current_mode; /* current mode bits */
170 int mode; /* mode bits */ member in struct:pps_params
238 (*handle)->params.mode = PPS_CAPTUREASSERT | PPS_TSFMT_TSPEC;
273 int mode, mode_in; local
302 mode_in = params->mode;
[all...]
/macosx-10.10.1/ntp-92/ntpd/
H A Dntp_monitor.c21 * Record statistics based on source address, mode and version. The
42 * 8K bytes in a mode 7 response packet, and that each structure will
121 int mode
126 mon_enabled |= mode;
129 if (mode == MON_OFF)
142 mon_enabled = mode;
151 int mode
159 if ((mon_enabled & mode) == 0 || mode == MON_OFF)
162 mon_enabled &= ~mode;
217 register int mode; local
[all...]
/macosx-10.10.1/rsync-45/rsync/
H A Dsyscall.c2 * Syscall wrappers to ensure that nothing gets done in dry_run mode
99 int do_mknod(char *pathname, mode_t mode, dev_t dev) argument
104 if (S_ISFIFO(mode))
105 return mkfifo(pathname, mode);
108 if (S_ISSOCK(mode)) {
126 return do_chmod(pathname, mode);
133 return mknod(pathname, mode, dev);
146 int do_open(const char *pathname, int flags, mode_t mode) argument
153 return open(pathname, flags | O_BINARY, mode);
157 int do_chmod(const char *path, mode_t mode) argument
217 do_mkdir(char *fname, mode_t mode) argument
[all...]
H A Drsync.h278 #include <sys/mode.h>
536 mode_t mode; member in struct:file_struct
766 #define S_ISLNK(mode) (((mode) & (_S_IFMT)) == (_S_IFLNK))
770 #define S_ISBLK(mode) (((mode) & (_S_IFMT)) == (_S_IFBLK))
774 #define S_ISCHR(mode) (((mode) & (_S_IFMT)) == (_S_IFCHR))
779 #define S_ISSOCK(mode) (((mode)
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXfcntl.c75 int mode,
154 * o mode - Channel access mode.
161 GetFcntlAttr (interp, channel, mode, attrib)
164 int mode;
171 value = (mode & TCL_READABLE) && !(mode & TCL_WRITABLE);
174 value = (mode & TCL_WRITABLE) && !(mode & TCL_READABLE);
177 value = (mode
289 int mode; local
[all...]
/macosx-10.10.1/zsh-61/zsh/Functions/VCS_Info/
H A DVCS_INFO_quilt6 local d mode="$1" param="$2"
9 case ${mode} in
88 local mode="$1"
95 context=":vcs_info:${vcs}.quilt-${mode}:${usercontext}:${rrn}"
98 case ${mode} in
105 printf 'Invalid mode: `%s'\''\n' "$1"
178 case ${mode} in
190 VCS_INFO_hook 'post-quilt' ${mode} ${patches} ${pc:-\\-nopc-}
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dunorm.cpp18 * mode NFC.
49 UNormalizationMode mode,
51 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
57 UNormalizationMode mode, int32_t options,
59 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
72 UNormalizationMode mode,
74 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
80 UNormalizationMode mode, int32_t options,
82 const Normalizer2 *n2=Normalizer2Factory::getInstance(mode, *pErrorCode);
98 UNormalizationMode mode, int32_
47 unorm_quickCheck(const UChar *src, int32_t srcLength, UNormalizationMode mode, UErrorCode *pErrorCode) argument
56 unorm_quickCheckWithOptions(const UChar *src, int32_t srcLength, UNormalizationMode mode, int32_t options, UErrorCode *pErrorCode) argument
71 unorm_isNormalized(const UChar *src, int32_t srcLength, UNormalizationMode mode, UErrorCode *pErrorCode) argument
79 unorm_isNormalizedWithOptions(const UChar *src, int32_t srcLength, UNormalizationMode mode, int32_t options, UErrorCode *pErrorCode) argument
97 unorm_normalize(const UChar *src, int32_t srcLength, UNormalizationMode mode, int32_t options, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
177 unorm_iterate(UCharIterator *src, UBool forward, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
197 unorm_previous(UCharIterator *src, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
210 unorm_next(UCharIterator *src, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
261 unorm_concatenate(const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UErrorCode *pErrorCode) argument
[all...]
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tty/
H A Dlib_twait.c130 * The file-descriptors are specified by the mode:
136 * Experimental: if NCURSES_WGETCH_EVENTS is defined, (mode & 4) determines
140 * We return a mask that corresponds to the mode (e.g., 2 for mouse activity).
147 int mode,
173 TR(TRACE_IEVENT, ("start twait: %d milliseconds, mode: %d",
174 milliseconds, mode));
177 if (mode & 4) {
196 if ((mode & 4) && evl)
204 if ((mode & 4) && evl)
208 if (mode
146 _nc_timed_wait(SCREEN *sp, int mode, int milliseconds, int *timeleft EVENTLIST_2nd(_nc_eventlist * evl)) argument
[all...]
/macosx-10.10.1/tcl-105/tcl84/tcl/win/
H A DtclWinChan.c24 #define FILE_APPEND (1<<2) /* File is in append mode. */
77 int mode));
94 long offset, int mode, int *errorCode));
96 Tcl_WideInt offset, int mode, int *errorCode));
121 FileBlockProc, /* Set blocking or non-blocking mode.*/
356 * Set blocking or non-blocking mode on channel.
362 * Sets the device into blocking or non-blocking mode.
368 FileBlockProc(instanceData, mode)
370 int mode; /* TCL_MODE_BLOCKING or
382 if (mode
1161 int mode; local
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Dsdb008.tcl48 set db [eval {berkdb_open -create -mode 0644} \
57 set db [eval {berkdb_open -create -mode 0644} \
64 set db [eval {berkdb_open -create -mode 0644} \
75 set db [eval {berkdb_open -create -mode 0644} \
81 set db [eval {berkdb_open -create -mode 0644} \
88 set db [eval {berkdb_open -create -mode 0644} \
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/ubrkperf/
H A Dubrkperf.h23 ICUBreakFunction(const char *locale, const char *mode, const UChar *file, int32_t file_len) : argument
30 switch(mode[0]) {
59 ICUIsBound(const char *locale, const char *mode, const UChar *file, int32_t file_len) : argument
60 ICUBreakFunction(locale, mode, file, file_len)
86 ICUForward(const char *locale, const char *mode, const UChar *file, int32_t file_len) : argument
87 ICUBreakFunction(locale, mode, file, file_len)
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/slapd-modules/comp_match/
H A Dcertificate.h111 int BDecComponentAlgorithmIdentifier PROTO ((void* mem_op, GenBuf * b, AsnTag tagId0, AsnLen elmtLen0, ComponentAlgorithmIdentifier **v, AsnLen *bytesDecoded, int mode));
114 int GDecComponentAlgorithmIdentifier PROTO (( void* mem_op, GenBuf * b, ComponentAlgorithmIdentifier **v, AsnLen *bytesDecoded, int mode));
142 int BDecComponentTime PROTO ((void* mem_op, GenBuf * b, AsnTag tagId0, AsnLen elmtLen0, ComponentTime **v, AsnLen *bytesDecoded, int mode));
145 int GDecComponentTime PROTO (( void* mem_op, GenBuf * b, ComponentTime **v, AsnLen *bytesDecoded, int mode));
166 int BDecComponentExtension PROTO ((void* mem_op, GenBuf * b, AsnTag tagId0, AsnLen elmtLen0, ComponentExtension **v, AsnLen *bytesDecoded, int mode));
169 int GDecComponentExtension PROTO (( void* mem_op, GenBuf * b, ComponentExtension **v, AsnLen *bytesDecoded, int mode));
189 int BDecComponentAttributeTypeAndValue PROTO ((void* mem_op, GenBuf * b, AsnTag tagId0, AsnLen elmtLen0, ComponentAttributeTypeAndValue **v, AsnLen *bytesDecoded, int mode));
192 int GDecComponentAttributeTypeAndValue PROTO (( void* mem_op, GenBuf * b, ComponentAttributeTypeAndValue **v, AsnLen *bytesDecoded, int mode));
212 int BDecComponentValidity PROTO ((void* mem_op, GenBuf * b, AsnTag tagId0, AsnLen elmtLen0, ComponentValidity **v, AsnLen *bytesDecoded, int mode));
215 int GDecComponentValidity PROTO (( void* mem_op, GenBuf * b, ComponentValidity **v, AsnLen *bytesDecoded, int mode));
[all...]
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Dshopt.c269 toggle_shopts (mode, list, quiet)
270 int mode;
287 *shopt_vars[ind].value = mode; /* 1 for set, 0 for unset */
289 (*shopt_vars[ind].set_func) (mode);
347 list_some_shopts (mode, flags)
348 int mode, flags;
355 if (((flags & QFLAG) == 0) && mode == val)
399 list_some_o_options (mode, flags)
400 int mode, flags;
403 list_minus_o_opts (mode, (flag
[all...]
/macosx-10.10.1/bzip2-36/bzip2/
H A Ddlltest.c117 char mode[10]; local
155 mode[0]='w';
156 mode[1] = '0' + level;
157 mode[2] = '\0';
159 if((fn_w == NULL && (BZ2fp_w = BZ2_bzdopen(fileno(stdout),mode))==NULL)
160 || (fn_w !=NULL && (BZ2fp_w = BZ2_bzopen(fn_w,mode))==NULL)){
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Modules/objc/test/
H A Dfilepointer.m13 -(FILE*)openFile:(char*)path withMode:(char*)mode;
18 -(FILE*)openFile:(char*)path withMode:(char*)mode
20 return fopen(path, mode);
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Modules/objc/test/
H A Dfilepointer.m13 -(FILE*)openFile:(char*)path withMode:(char*)mode;
18 -(FILE*)openFile:(char*)path withMode:(char*)mode
20 return fopen(path, mode);
/macosx-10.10.1/ruby-106/ruby/test/rubygems/
H A Dtest_gem_package_tar_header.rb11 :mode => 0644,
44 assert_equal 0644, @tar_header.mode, 'mode'
59 Gem::Package::TarHeader.new :name => '', :size => '', :mode => ''
67 Gem::Package::TarHeader.new :name => '', :prefix => '', :mode => ''
71 Gem::Package::TarHeader.new :prefix => '', :size => '', :mode => ''
79 :mode => 0, :size => 0,

Completed in 711 milliseconds

<<11121314151617181920>>