Searched refs:params (Results 176 - 200 of 711) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/samples/
H A DAsync.tcl78 -params {}
84 -params { item struct }
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/sasl/
H A Dsasl.tcl460 array set params [DigestParameters $challenge]
465 set nonce $params(nonce)
474 if {[info exists params(charset)]} {
475 set encoding $params(charset)
480 if {[info exists params(realm)]} {
481 set realm $params(realm)
491 if {[info exists params(charset)]} {
492 append ctx(response) ",charset=$params(charset)"
522 array set params [DigestParameters $challenge]
525 [list $context password $params(usernam
[all...]
/macosx-10.10/CPANInternal-159.1/Parse-Yapp-1.05/lib/Parse/Yapp/
H A DDriver.pm31 my(%params)=(YYLEX => 'CODE', 'YYERROR' => 'CODE', YYVERSION => '',
34 my(@params)=('LEX','RULES','STATES');
49 _CheckParams( [], \%params, \@_, $self );
67 _CheckParams( \@params, \%params, \@_, $self );
/macosx-10.10/ruby-106/ruby/test/win32ole/
H A Dtest_win32ole_method.rb131 params = @m_browse_for_folder.params
132 assert_instance_of(Array, params)
133 assert_equal(4, params.size)
134 assert_instance_of(WIN32OLE_PARAM, params[0])
/macosx-10.10/tcl-105/tcl_ext/tclsoap/tclsoap/interop/
H A DsoapinteropB.tcl51 -action $action -params {inputStruct SOAPStruct}
54 -params {inputString string inputInteger int inputFloat float}
56 -action $action -params {input2DStringArray ArrayOfString2D}
58 -params {inputStruct SOAPStructStruct}
60 -params {inputStruct SOAPArrayStruct}
/macosx-10.10/apr-32/apr-util/apr-util/crypto/
H A Dapr_crypto.c71 #define DRIVER_LOAD(name,driver_name,pool,params,rv,result) \
76 rv = driver_name.init(pool, params, result); \
144 const char *params, const apu_err_t **result, apr_pool_t *pool)
194 rv = (*driver)->init(pool, params, result);
216 DRIVER_LOAD("openssl", apr_crypto_openssl_driver, pool, params, rv, result);
221 DRIVER_LOAD("nss", apr_crypto_nss_driver, pool, params, rv, result);
226 DRIVER_LOAD("mscapi", apr_crypto_mscapi_driver, pool, params, rv, result);
231 DRIVER_LOAD("mscng", apr_crypto_mscng_driver, pool, params, rv, result);
272 * @param params - array of key parameters
276 * @remarks NSS: currently no params ar
[all...]
/macosx-10.10/libdispatch-442.1.4/src/
H A Dtrace.h229 dispatch_trace_timer_params_t params)
239 params->deadline = (int64_t)deadline;
244 params->deadline = _dispatch_trace_time2nano2(values->target,
247 params->interval = _dispatch_trace_time2nano(values->interval);
248 params->leeway = _dispatch_trace_time2nano(values->leeway);
249 return params;
264 struct dispatch_trace_timer_params_s params; local
267 &params));
277 struct dispatch_trace_timer_params_s params; local
280 &ds_timer(dr), deadline, &params));
227 _dispatch_trace_timer_params(uintptr_t ident, struct dispatch_timer_source_s *values, uint64_t deadline, dispatch_trace_timer_params_t params) argument
[all...]
/macosx-10.10/ruby-106/ruby/lib/xmlrpc/
H A Dclient.rb327 ok, params = multicall2(*methods)
329 params
331 raise params
360 ok, params = multicall2_async(*methods)
362 params
364 raise params
523 ok, params = self.send(meth, "system.multicall",
524 methods.collect {|m| {'methodName' => m[0], 'params' => m[1..-1]} }
528 params = params
[all...]
H A Dutils.rb96 params = [$1]
98 $4.split(",").each {|i| params << i.strip} if $4 != nil
99 return name, params
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/
H A DIODisplay.cpp703 OSDictionary * IODisplay::getIntegerRange( OSDictionary * params, argument
708 params = OSDynamicCast( OSDictionary, params->getObject( sym ));
710 if (params)
716 num = OSDynamicCast( OSNumber, params->getObject(gIODisplayValueKey));
723 num = OSDynamicCast( OSNumber, params->getObject(gIODisplayMinValueKey));
730 num = OSDynamicCast( OSNumber, params->getObject(gIODisplayMaxValueKey));
735 return (params);
743 bool IODisplay::setForKey( OSDictionary * params, const OSSymbol * sym, argument
755 if ((ok = doIntegerSet(params, sy
770 OSDictionary * params; local
922 updateNumber( OSDictionary * params, const OSSymbol * key, SInt32 value ) argument
944 addParameter( OSDictionary * params, const OSSymbol * paramName, SInt32 min, SInt32 max ) argument
970 setParameter( OSDictionary * params, const OSSymbol * paramName, SInt32 value ) argument
1031 doIntegerSet( OSDictionary * params, const OSSymbol * paramName, UInt32 value ) argument
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/math/
H A Doptimize.tcl171 array set params {
178 set params(-guess) [expr { $phim1 * $x1 + $twomphi * $x2 }]
186 if { ![info exists params($key)] } {
193 set params($key) $value
205 set x $params(-guess); # Best abscissa found so far
214 if { $params(-fguess) ne {} } {
215 set fx $params(-fguess)
218 if { $params(-trace) } {
225 for { set iter 0 } { $iter < $params(-maxiter) } { incr iter } {
233 set tol [expr { $params(
[all...]
/macosx-10.10/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_any_method.rb20 m.params = "(a, b)"
70 m.params = 'param'
96 assert_equal 'param', loaded.params
108 assert_equal '()', aliased_method.params
117 assert_equal '()', class_method.params
126 assert_equal '(foo)', instance_method.params
167 assert_equal 'param', loaded.params
210 m.params = '(b = default)'
219 m.params = '(a, b)'
228 m.params
[all...]
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/Appender/
H A DTestBuffer.pm19 my %params = @_;
23 %params,
28 $self->{stderr} = exists $params{stderr} ? $params{stderr} : 1;
40 my %params = @_;
42 if( !defined $params{level} ) {
45 $self->{buffer} .= "[$params{level}]: " if $LOG_PRIORITY;
46 $self->{buffer} .= $params{message};
/macosx-10.10/Heimdal-398.1.2/lib/kadm5/
H A Dcontext_s.c190 kadm5_config_params *params,
200 #define is_set(M) (params && params->mask & KADM5_CONFIG_ ## M)
202 (*ctx)->config.realm = strdup(params->realm);
206 (*ctx)->config.dbname = strdup(params->dbname);
208 (*ctx)->config.acl_file = strdup(params->acl_file);
210 (*ctx)->config.stash_file = strdup(params->stash_file);
189 _kadm5_s_init_context(kadm5_server_context **ctx, kadm5_config_params *params, krb5_context context) argument
/macosx-10.10/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOFWUserVectorCommand.cpp198 CommandSubmitParams params; local
199 fSubmitDesc->readBytes( offset, &params, length );
200 status = submitOneCommand( &params );
217 IOFWUserVectorCommand::submitOneCommand( CommandSubmitParams * params )
223 if( params->kernCommandRef == NULL )
233 object = exporter->lookupObject( params->kernCommandRef );
255 // setAsyncReference64( *async_ref, (mach_port_t)async_ref[0], (mach_vm_address_t)params->callback, (io_user_reference_t)params->refCon);
261 status = cmd->submit( params, NULL );
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/IOKit/graphics/
H A DIODisplay.h169 virtual bool setForKey( OSDictionary * params, const OSSymbol * key,
172 static bool addParameter( OSDictionary * params, const OSSymbol * paramName, SInt32 min, SInt32 max );
173 static bool setParameter( OSDictionary * params, const OSSymbol * paramName, SInt32 value );
174 static OSDictionary * getIntegerRange( OSDictionary * params, const OSSymbol * sym,
178 virtual bool doIntegerSet( OSDictionary * params,
224 static bool updateNumber( OSDictionary * params, const OSSymbol * key, SInt32 value );
253 virtual bool doIntegerSet( OSDictionary * params,
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dacl_keychain.cpp240 ListElement *params[1]; local
241 crack(list, 1, params, CSSM_LIST_ELEMENT_DATUM);
242 return new KeychainPromptAclSubject(*params[0], defaultSelector);
247 ListElement *params[2]; local
248 crack(list, 2, params, CSSM_LIST_ELEMENT_DATUM, CSSM_LIST_ELEMENT_DATUM);
249 return new KeychainPromptAclSubject(*params[1],
250 *params[0]->data().interpretedAs<CSSM_ACL_KEYCHAIN_PROMPT_SELECTOR>(CSSM_ERRCODE_INVALID_ACL_SUBJECT_VALUE));
/macosx-10.10/libxslt-13/libxslt/libxslt/
H A Dtransform.h45 const char **params,
52 xsltStackElemPtr params);
62 const char **params);
66 const char **params,
71 const char **params,
78 const char **params,
89 xsltStackElemPtr params);
/macosx-10.10/ppp-786.1.1/Helpers/vpnd/
H A Dipsecoptions.c77 static int plugin_get_args(struct vpn_params *params, int reload);
82 void ipsec_process_options(struct vpn_params *params) argument
126 int ipsec_process_prefs(struct vpn_params *params) argument
136 ipsec_conf = (CFMutableDictionaryRef)CFDictionaryGetValue(params->serverRef, kRASEntIPSec);
232 int ipsec_add_builtin_plugin(struct vpn_params* params, void *channel) argument
247 int plugin_get_args(struct vpn_params *params, int reload) argument
249 current_params = params;
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dsimplepatternformatter.cpp190 const UnicodeString *params[] = {&arg0}; local
192 params,
193 LENGTHOF(params),
205 const UnicodeString *params[] = {&arg0, &arg1}; local
207 params,
208 LENGTHOF(params),
221 const UnicodeString *params[] = {&arg0, &arg1, &arg2}; local
223 params,
224 LENGTHOF(params),
/macosx-10.10/Security-57031.1.35/Security/sec/securityd/
H A DSecKeybagSupport.c170 uint8_t *params = NULL, *der = NULL; local
175 aks_operation_optional_params(0, 0, CFDataGetBytePtr(acl), CFDataGetLength(acl), 0, 0, (void**)&params, &params_len);
176 kernResult = aks_encrypt(keybag, keyclass, source, textLength, params, params_len, (void**)&der, &der_len);
178 aks_operation_optional_params(access_groups, access_groups_len, 0, 0, CFDataGetBytePtr(acm_context), (int)CFDataGetLength(acm_context), (void**)&params, &params_len);
179 kernResult = aks_decrypt(keybag, source, textLength, params, params_len, (void**)&der, &der_len);
181 aks_operation_optional_params(access_groups, access_groups_len, 0, 0, CFDataGetBytePtr(acm_context), (int)CFDataGetLength(acm_context), (void**)&params, &params_len);
182 kernResult = aks_delete(keybag, source, textLength, params, params_len);
226 if(params)
227 free(params);
/macosx-10.10/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Stash/
H A DContext.pm115 # new(\%params)
126 my $params = ref $_[0] eq 'HASH' ? shift(@_) : { @_ };
130 %$params,
145 # clone(\%params)
163 my ($self, $params) = @_;
164 $params ||= { };
167 my $import = $params->{ import };
169 delete $params->{ import };
177 %$params, # copy all new data
350 # update(\%params)
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_smime/
H A Dsecalgid.c60 SECItem *params)
99 if (params) {
110 PORT_Assert(!add_null_param || (params->Length == 2
111 && params->Data[0] == SEC_ASN1_NULL
112 && params->Data[1] == 0));
114 if (SECITEM_CopyItem(arena, &id->parameters, params)) {
59 SECOID_SetAlgorithmID(PRArenaPool *arena, SECAlgorithmID *id, SECOidTag which, SECItem *params) argument
/macosx-10.10/Security-57031.1.35/Security/libsecurity_smime/lib/
H A Dsecalgid.c60 SECItem *params)
99 if (params) {
110 PORT_Assert(!add_null_param || (params->Length == 2
111 && params->Data[0] == SEC_ASN1_NULL
112 && params->Data[1] == 0));
114 if (SECITEM_CopyItem(arena, &id->parameters, params)) {
59 SECOID_SetAlgorithmID(PRArenaPool *arena, SECAlgorithmID *id, SECOidTag which, SECItem *params) argument
/macosx-10.10/apache-793/httpd/modules/dav/fs/
H A Drepos.c55 const dav_walk_params *params; member in struct:__anon6174
211 static dav_error * dav_fs_walk(const dav_walk_params *params, int depth,
213 static dav_error * dav_fs_internal_walk(const dav_walk_params *params,
1224 dav_walk_params params = { 0 }; local
1227 params.walk_type = DAV_WALKTYPE_NORMAL | DAV_WALKTYPE_HIDDEN;
1228 params.func = dav_fs_copymove_walker;
1229 params.pool = src->info->pool;
1230 params.root = src;
1232 /* params.walk_ctx is managed by dav_fs_internal_walk() */
1236 params
1440 dav_walk_params params = { 0 }; local
1502 const dav_walk_params *params = fsctx->params; local
1777 dav_fs_internal_walk(const dav_walk_params *params, int depth, int is_move, const dav_resource *root_dst, dav_response **response) argument
1861 dav_fs_walk(const dav_walk_params *params, int depth, dav_response **response) argument
[all...]

Completed in 383 milliseconds

1234567891011>>