Searched refs:setting (Results 1 - 25 of 162) sorted by relevance

1234567

/macosx-10.10/apr-32/apr-util/apr-util/crypto/
H A Dcrypt_blowfish.h20 extern int _crypt_output_magic(const char *setting, char *output, int size);
21 extern char *_crypt_blowfish_rn(const char *key, const char *setting,
H A Dapr_passwd.c187 char setting[40]; local
189 salt_len, setting, sizeof(setting)) == NULL)
191 if (_crypt_blowfish_rn(pw, setting, out, out_len) == NULL)
H A Dcrypt_blowfish.c644 static char *BF_crypt(const char *key, const char *setting, argument
673 if (setting[0] != '$' ||
674 setting[1] != '2' ||
675 setting[2] < 'a' || setting[2] > 'z' ||
676 !flags_by_subtype[(unsigned int)(unsigned char)setting[2] - 'a'] ||
677 setting[3] != '$' ||
678 setting[4] < '0' || setting[4] > '3' ||
679 setting[
779 _crypt_output_magic(const char *setting, char *output, int size) argument
814 _crypt_blowfish_rn(const char *key, const char *setting, char *output, int size) argument
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/treectrl/
H A Dwww-options.rb55 ].each{|depth, setting, text, option, group|
61 if setting == :on || setting == :off
62 @Option[:setting, item] = setting
65 if setting == :on
69 if setting == :on
77 :image=>@images["internet-#{setting}"])
127 if @Option[:setting, item] == 'on'
128 setting
[all...]
/macosx-10.10/tcl-105/tcl_ext/tktreectrl/tktreectrl/demos/
H A Dwww-options.tcl64 foreach {depth setting text option group} {
82 if {($setting eq "on") || ($setting eq "off")} {
83 set Options(setting,$item) $setting
86 if {$setting eq "on"} {
90 if {$setting eq "on"} {
97 $T item element configure $item C0 elemImg -image internet-$setting
136 if {$Options(setting,$item) eq "on"} {
137 set setting of
[all...]
/macosx-10.10/WebKit-7600.1.25/cf/WebCoreSupport/
H A DWebInspectorClientCF.cpp72 static void populateSetting(const String& key, String* setting) argument
82 *setting = static_cast<String>(static_cast<CFStringRef>(value.get()));
84 *setting = static_cast<bool>(CFBooleanGetValue(static_cast<CFBooleanRef>(value.get()))) ? "true" : "false";
86 *setting = "";
89 static void storeSetting(const String& key, const String& setting) argument
91 CFPreferencesSetAppValue(createKeyForPreferences(key).get(), setting.createCFString().get(), kCFPreferencesCurrentApplication);
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dcopy-1.d4 #name: copy with setting section flags 1
H A Dcopy-3.d4 #name: copy with setting section flags 3
H A Dcopy-2.d4 #name: copy with setting section flags 2
/macosx-10.10/emacs-93/emacs/lisp/
H A Dcus-theme.el189 (dolist (setting (get theme 'theme-settings) found)
190 (if (and (eq (cadr setting) symbol)
191 (eq (car setting) 'theme-value))
209 (dolist (setting (get theme 'theme-settings))
210 (if (and (eq (cadr setting) symbol)
211 (eq (car setting) 'theme-value))
212 (setq found setting)))
253 (dolist (setting (get theme 'theme-settings) found)
254 (if (and (eq (cadr setting) symbol)
255 (eq (car setting) 'them
[all...]
/macosx-10.10/emacs-93/emacs/lisp/gnus/
H A Dgnus-win.el231 (defun gnus-windows-old-to-new (setting)
233 (when (symbolp setting)
234 (setq setting
236 (cond ((eq setting 'SelectArticle) 'article)
237 ((memq setting '(SelectNewsgroup SelectSubject ExpandSubject))
239 ((memq setting '(ExitNewsgroup)) 'group)
240 (t setting))))
241 (if (or (listp setting)
243 (memq setting '(group summary article)))))
244 setting
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/replay/scripts/
H A DCodeGeneratorReplayInputs.py165 def setting(self, key, default=''): member in class:Framework
200 def setting(self, key, default=''): member in class:InputQueue
232 def setting(self, key, default=''): member in class:Input
236 return self.queue.setting(key, default)
327 components.append(self.framework.setting('namespace'))
559 self.traits_framework = Framework.fromString(self.setting('traitsFrameworkName'))
563 def setting(self, key, default=''): member in class:Generator
564 return self.target_framework.setting(key, GLOBAL_CONFIG.get(key, default))
572 components.extend([self.setting('prefix'), self.setting('baseFilenam
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tk/
H A Dpackage.rb140 def prefer(setting = None)
141 tk_call('package', 'prefer', setting)
/macosx-10.10/bind9-45.101/bind9/
H A Dbind.keys25 # NOTE: This key is activated by setting "dnssec-lookaside auto;"
37 # NOTE: This key is activated by setting "dnssec-validation auto;"
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/rootStoreTool/
H A DrootStoreTool.cpp36 printf(" R -- remove legacy User Trust setting\n");
646 SecTrustUserSetting setting = kSecTrustResultInvalid; local
648 setting = kSecTrustResultProceed;
651 setting = kSecTrustResultProceed;
654 setting = kSecTrustResultProceed;
657 setting = kSecTrustResultDeny;
660 setting = kSecTrustResultUnspecified;
668 ortn = SecTrustSetUserTrustLegacy(certRef, policyRef, setting);
673 if(setting == kSecTrustResultUnspecified) {
686 ortn = SecTrustSetUserTrust(certRef, policyRef, setting);
[all...]
/macosx-10.10/vim-55/runtime/ftplugin/
H A Dmail.vim15 " "jokes" (e.g., setting 'textwidth' to 5).
/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/lib/SOAP/Transport/
H A DLOOPBACK.pm56 Using this transport backend is triggered by setting a loopback:// URL.
/macosx-10.10/ICU-531.30/icuSources/i18n/unicode/
H A Dulocdata.h117 * @param setting Value of the "no substitute" attribute.
121 ulocdata_setNoSubstitute(ULocaleData *uld, UBool setting);
/macosx-10.10/cups-408/cups/cups/
H A Dadminutil.c851 cups_option_t *setting; /* Current setting */ local
1138 for (i = cg->cupsd_num_settings, setting = cg->cupsd_settings;
1140 i --, setting ++)
1141 *num_settings = cupsAddOption(setting->name, setting->value,
1199 *setting; /* Current setting */ local
1300 * No change to this setting...
1327 * No change to this setting
[all...]
/macosx-10.10/ruby-106/ruby/missing/
H A Dcrypt.c496 * Return a pointer to static data consisting of the "setting"
497 * followed by an encryption produced by the "key" and "setting".
500 crypt(key, setting)
502 register const char *setting;
520 switch (*setting) {
538 *encp++ = *setting++;
543 if ((t = (unsigned char)setting[i]) == '\0')
548 setting += 4;
559 if ((t = (unsigned char)setting[i]) == '\0')
/macosx-10.10/ksh-23/ksh/src/lib/libast/uwin/
H A Dcrypt.c840 * Return a pointer to static data consisting of the "setting"
841 * followed by an encryption produced by the "key" and "setting".
843 extern char * crypt(register const char *key, register const char *setting) { argument
867 switch (*setting) {
885 *encp++ = *setting++;
890 if ((t = (unsigned char)setting[i]) == '\0')
895 setting += 4;
906 if ((t = (unsigned char)setting[i]) == '\0')
/macosx-10.10/tcl-105/tcl_ext/incrtcl/iwidgets/generic/
H A Dfinddialog.itk66 method _get {setting}
437 # PROTECTED METHOD: _get setting
441 itcl::body ::iwidgets::Finddialog::_get {setting} {
442 switch $setting {
459 error "bad get setting: \"$setting\", should be pattern,\
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/yaml/
H A Dhuddle.tcl58 set setting [$procedure setting]
59 dict with setting {
272 setting { ; # type definition
351 setting {
421 setting {
/macosx-10.10/bash-94.1.2/bash-3.2/builtins/
H A Dulimit.c292 if (list) /* setting */
340 int opt, limind, setting; local
344 setting = cmdarg != 0;
347 mode = setting ? (LIMIT_HARD|LIMIT_SOFT) : LIMIT_SOFT;
356 if (setting == 0) /* print the value of the specified limit */
/macosx-10.10/CPANInternal-159.1/Net-Daemon-0.48/lib/Net/Daemon/
H A DLog.pm217 However you may choose logging to stderr by setting
222 alternative option is setting

Completed in 283 milliseconds

1234567