Searched refs:parameters (Results 201 - 225 of 679) sorted by relevance

1234567891011>>

/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A DCodeSigner.h56 void parameters(CFDictionaryRef args); // parse and set parameters
/macosx-10.10/Security-57031.1.35/Security/sec/SOSCircle/Regressions/
H A Dsc-75-circle-engine.c150 CFDataRef parameters = SOSUserKeyCreateGenerateParameters(&error);
151 ok(parameters, "No parameters!");
155 SecKeyRef user_privkey = SOSUserKeygen(cfpassword, parameters, &error);
156 CFReleaseNull(parameters);
/macosx-10.10/Security-57031.1.35/Security/sec/Security/Regressions/secitem/
H A Dsi-62-csr.c57 CFDictionaryRef parameters = CFDictionaryCreate(kCFAllocatorDefault, local
84 ok_status(SecKeyGeneratePair(parameters, &phone_publicKey, &phone_privateKey), "generate key pair");
85 ok_status(SecKeyGeneratePair(parameters, &ca_publicKey, &ca_privateKey), "generate key pair");
255 CFReleaseSafe(parameters);
/macosx-10.10/Security-57031.1.35/Security/sec/Security/
H A DSecCMS.h130 @param parameters (input/optional) specify algorithm, detached, digest
138 CFDictionaryRef parameters, CFDictionaryRef signed_attributes,
145 @param params CFDictionaryRef with encryption parameters
H A DSecKey.h112 @param parameters A dictionary containing one or more key-value pairs.
117 @discussion In order to generate a keypair the parameters dictionary must
148 OSStatus SecKeyGeneratePair(CFDictionaryRef parameters, SecKeyRef *publicKey,
H A DSecKey.c286 OSStatus SecKeyGeneratePair(CFDictionaryRef parameters, argument
291 CFMutableDictionaryRef pubParams = merge_params(parameters, kSecPublicKeyAttrs),
292 privParams = merge_params(parameters, kSecPrivateKeyAttrs);
293 CFStringRef ktype = CFDictionaryGetValue(parameters, kSecAttrKeyType);
298 result = SecECKeyGeneratePair(parameters, &pubKey, &privKey);
300 result = SecRSAKeyGeneratePair(parameters, &pubKey, &privKey);
401 derKey.parameters = params->Data;
1083 _SecKeyCopyWrapKey(SecKeyRef key, SecKeyWrapType type, CFDataRef unwrappedKey, CFDictionaryRef parameters, CFDictionaryRef *outParam, CFErrorRef *error) argument
1090 return key->key_class->copyWrapKey(key, type, unwrappedKey, parameters, outParam, error);
1096 _SecKeyCopyUnwrapKey(SecKeyRef key, SecKeyWrapType type, CFDataRef wrappedKey, CFDictionaryRef parameters, CFDictionaryRe argument
[all...]
H A DSecSCEP.c247 SecSCEPGenerateCertificateRequest(CFArrayRef subject, CFDictionaryRef parameters, argument
274 require(csr = SecGenerateCertificateRequest(subject, parameters, publicKey, privateKey), out);
276 require_noerr(SecCMSCreateEnvelopedData(recipient, parameters, csr, enveloped_data), out);
329 parameters, simple_attr, signed_request), out, CFReleaseNull(signed_request));
365 CFDictionaryRef parameters = NULL; local
445 parameters = CFDictionaryCreate(kCFAllocatorDefault, signing_params, signing_params_vals, array_size(signing_params), &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
446 require_noerr_action(SecCMSCreateSignedData(ca_identity, cert_msg, parameters, simple_attr, signed_reply), out, CFReleaseNull(signed_reply));
467 CFReleaseSafe(parameters);
754 SecSCEPGetCertInitial(SecCertificateRef ca_certificate, CFArrayRef subject, CFDictionaryRef parameters, argument
767 require_noerr(SecCMSCreateEnvelopedData(recipient, parameters, pki_message_content
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/avfoundation/objc/
H A DMediaPlayerPrivateMediaSourceAVFObjC.mm243 MediaPlayer::SupportsType MediaPlayerPrivateMediaSourceAVFObjC::supportsType(const MediaEngineSupportParameters& parameters)
246 if (!parameters.keySystem.isEmpty() && !keySystemIsSupported(parameters.keySystem))
251 if (!parameters.isMediaSource)
254 if (!mimeTypeCache().contains(parameters.type))
259 if (parameters.codecs.isEmpty())
262 NSString *typeString = [NSString stringWithFormat:@"%@; codecs=\"%@\"", (NSString *)parameters.type, (NSString *)parameters.codecs];
/macosx-10.10/dyld-353.2.1/src/
H A Dstub_binding_helper.s35 * Some inter-image function calls pass parameters in registers EAX, ECX, EDX, or XXM0-3,
109 * All parameters registers must be preserved.
140 subq $STACK_SIZE,%rsp # at this point stack is 16-byte aligned because two meta-parameters where pushed
141 movq %rdi,RDI_SAVE(%rsp) # save registers that might be used as parameters
177 addq $16,%rsp # remove meta-parameters
212 add sp, sp, #8 // remove meta-parameters
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dcrypto-pk.c235 if (ai->parameters != NULL &&
236 (ai->parameters->length != 2 ||
237 memcmp(ai->parameters->data, "\x05\x00", 2) != 0))
/macosx-10.10/WebKit2-7600.1.25/DatabaseProcess/
H A DDatabaseProcess.cpp119 void DatabaseProcess::initializeDatabaseProcess(const DatabaseProcessCreationParameters& parameters) argument
125 m_indexedDatabaseDirectory = parameters.indexedDatabaseDirectory;
126 SandboxExtension::consumePermanently(parameters.indexedDatabaseDirectoryExtensionHandle);
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_proc.rb1060 assert_equal([], proc {}.parameters)
1061 assert_equal([], proc {||}.parameters)
1062 assert_equal([[:opt, :a]], proc {|a|}.parameters)
1063 assert_equal([[:opt, :a], [:opt, :b]], proc {|a, b|}.parameters)
1064 assert_equal([[:opt, :a], [:block, :b]], proc {|a=:a, &b|}.parameters)
1065 assert_equal([[:opt, :a], [:opt, :b]], proc {|a, b=:b|}.parameters)
1066 assert_equal([[:rest, :a]], proc {|*a|}.parameters)
1067 assert_equal([[:opt, :a], [:rest, :b], [:block, :c]], proc {|a, *b, &c|}.parameters)
1068 assert_equal([[:opt, :a], [:rest, :b], [:opt, :c]], proc {|a, *b, c|}.parameters)
1069 assert_equal([[:opt, :a], [:rest, :b], [:opt, :c], [:block, :d]], proc {|a, *b, c, &d|}.parameters)
[all...]
/macosx-10.10/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Plugin/
H A DDate.pm70 # Any or all of the arguments may be specified as named parameters which
235 # named parameters
263 format string and a locale name. All of these parameters are optional
266 for the time, format and/or locale may be specified as named parameters
271 When called without any parameters, the C<format()> method returns a string
309 Any or all of these parameters may be named. Positional parameters
H A DFilter.pm218 Any configuration parameters passed to the plugin constructor from the
222 named configuration parameters are stored as a reference to a hash
250 on any parameters passed from the C<FILTER> directive and modify
272 arguments and a reference to a hash array of named parameters.
287 In this case can pass parameters to both the USE and FILTER directives,
297 and easy job of merging the local (e.g. C<FILTER>) parameters with the
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXSLTProcessorLibxslt.cpp220 static const char** xsltParamArrayFromParameterMap(XSLTProcessor::ParameterMap& parameters) argument
222 if (parameters.isEmpty())
225 const char** parameterArray = (const char**)fastMalloc(((parameters.size() * 2) + 1) * sizeof(char*));
227 XSLTProcessor::ParameterMap::iterator end = parameters.end();
229 for (XSLTProcessor::ParameterMap::iterator it = parameters.begin(); it != end; ++it) {
/macosx-10.10/tcl-105/tcl_ext/tclae/tclae/library/
H A Daete.tcl97 proc tclAE::aete::build::buildEvent {name description class ID reply direct {parameters {}}} {
108 # array of parameters
109 append event [tclAE::aete::build::buildList tclAE::aete::build::buildParameter $parameters]
327 set parameters {}
330 lappend parameters [tclAE::aete::parse::parseParameter data]
332 lappend event $parameters
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/simulation/
H A Dannealing.tcl3 # of one or more parameters
81 # -parameters list - triples defining parameters and ranges
101 # Estimated minimum and the parameters involved:
110 set ann_option(-parameters) {}
140 if { $ann_option(-parameters) == {} } {
141 return -code error "No parameters given! Nothing to optimize"
152 [list PARAMETERS $ann_option(-parameters) \
157 # Give all parameters a value
275 # -number-params n - number of (binary) parameters
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_smime/
H A Dcmspubkey.c204 * KEA parameters. */
292 /* Encode the KEA parameters into the recipient info. */
327 All additional KEA parameters are DER-encoded in the encryption algorithm parameters */
329 /* Decode the KEA algorithm parameters. */
331 &(keyEncAlg->parameters));
374 part of the KEA key parameters, to decrypt
423 /* XXXX generate a DH key pair on a PKCS11 module (XXX which parameters?) */
431 /* the outgoing parameters. */
504 /* params is the DER encoded key wrap algorithm (with parameters!) (XX
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_smime/lib/
H A Dcmspubkey.c204 * KEA parameters. */
292 /* Encode the KEA parameters into the recipient info. */
327 All additional KEA parameters are DER-encoded in the encryption algorithm parameters */
329 /* Decode the KEA algorithm parameters. */
331 &(keyEncAlg->parameters));
374 part of the KEA key parameters, to decrypt
423 /* XXXX generate a DH key pair on a PKCS11 module (XXX which parameters?) */
431 /* the outgoing parameters. */
504 /* params is the DER encoded key wrap algorithm (with parameters!) (XX
[all...]
/macosx-10.10/WebKit2-7600.1.25/Scripts/webkit2/
H A Dmessages.py97 return 'std::tuple<%s>' % ', '.join(function_parameter_type(parameter.type) for parameter in message.parameters)
105 parameters = message.parameters
108 parameters = parameters[:-1]
110 return 'std::tuple<%s>' % ', '.join(parameter.type for parameter in parameters)
115 function_parameters = [(function_parameter_type(x.type), x.name) for x in message.parameters]
/macosx-10.10/JavaScriptCore-7600.1.17/parser/
H A DParser.cpp195 Parser<LexerType>::Parser(VM* vm, const SourceCode& source, FunctionParameters* parameters, const Identifier& name, JSParserStrictness strictness, JSParserMode parserMode) argument
223 if (parameters) {
225 for (unsigned i = 0; i < parameters->size(); i++) {
226 auto parameter = parameters->at(i);
235 for (unsigned i = 0; i < parameters->size(); i++) {
236 auto parameter = parameters->at(i);
351 semanticFailIfFalse(isValidStrictMode(), "Invalid parameters or function name in strict mode");
1231 template <class TreeBuilder> bool Parser<LexerType>::parseFunctionInfo(TreeBuilder& context, FunctionRequirements requirements, FunctionParseMode mode, bool nameIsInContainingScope, const Identifier*& name, TreeFormalParameterList& parameters, TreeFunctionBody& body, unsigned& openBraceOffset, unsigned& closeBraceOffset, int& bodyStartLine, unsigned& bodyStartColumn) argument
1256 parameters = parseFormalParameters(context);
1257 failIfFalse(parameters, "Canno
1319 SourceProviderCacheItemCreationParameters parameters; local
1347 TreeFormalParameterList parameters = 0; local
1738 TreeFormalParameterList parameters = 0; local
2111 TreeFormalParameterList parameters = 0; local
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/
H A DWebPage.cpp231 PassRefPtr<WebPage> WebPage::create(uint64_t pageID, const WebPageCreationParameters& parameters) argument
233 RefPtr<WebPage> page = adoptRef(new WebPage(pageID, parameters));
241 WebPage::WebPage(uint64_t pageID, const WebPageCreationParameters& parameters) argument
243 , m_viewSize(parameters.viewSize)
265 , m_layerHostingMode(parameters.layerHostingMode)
280 , m_userContentController(parameters.userContentControllerID ? WebUserContentController::getOrCreate(parameters.userContentControllerID) : nullptr)
284 , m_canRunBeforeUnloadConfirmPanel(parameters.canRunBeforeUnloadConfirmPanel)
285 , m_canRunModal(parameters.canRunModal)
310 , m_screenSize(parameters
481 reinitializeWebPage(const WebPageCreationParameters& parameters) argument
620 createPlugin(WebFrame* frame, HTMLPlugInElement* pluginElement, const Plugin::Parameters& parameters, String& newMIMEType) argument
[all...]
/macosx-10.10/CPANInternal-159.1/SOAP-Lite-1.11/lib/SOAP/
H A DLite.pm505 Carp::carp "Odd (wrong?) number of parameters in new()"
564 Carp::carp "Odd (wrong?) number of parameters in new()" if $^W && (@_ & 1);
860 Carp::carp "Odd (wrong?) number of parameters in new()" if $^W && (@_ & 1);
1580 my(@parameters, @header);
1595 push(@parameters, $_);
1596 # push (@parameters, SOAP::Utils::encode_data($_));
1600 my($body,$parameters);
1602 SOAP::Trace::method(@parameters);
1604 my $method = shift(@parameters);
1607 $parameters
[all...]
/macosx-10.10/emacs-93/emacs/lisp/
H A Dfaces.el1616 according to the `background-mode' and `display-type' frame parameters."
1656 ;; Before modifying the frame parameters, we collect a list of
1666 ;; Now change to the new frame parameters
1667 (modify-frame-parameters frame
1671 ;; parameters, unless they have been locally modified.
1682 (defun x-handle-named-frame-geometry (parameters)
1683 "Add geometry parameters for a named frame to parameter list PARAMETERS.
1685 (let* ((name (or (cdr (assq 'name parameters))
1696 ;; Put the geometry parameters at the end. Copy
1698 (setq parameters (appen
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DUnlinkedCodeBlock.cpp54 RefPtr<FunctionBodyNode> body = parse<FunctionBodyNode>(&vm, source, executable->parameters(), executable->name(), executable->toStrictness(), JSParseFunctionCode, error, 0, bodyIncludesBraces);
63 body->finishParsing(executable->parameters(), executable->name(), executable->functionMode());
94 , m_parameters(node->parameters())
188 FunctionParameters& parameters = *m_parameters; local
190 for (size_t pos = 0; pos < parameters.size(); ++pos) {
193 parameters.at(pos)->toString(builder);

Completed in 274 milliseconds

1234567891011>>