Searched refs:identifier (Results 376 - 400 of 682) sorted by relevance

<<11121314151617181920>>

/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebViewInternal.h204 - (void)_addObject:(id)object forIdentifier:(unsigned long)identifier;
205 - (id)_objectForIdentifier:(unsigned long)identifier;
206 - (void)_removeObjectForIdentifier:(unsigned long)identifier;
H A DWebPreferences.mm71 #define KEY(x) (_private->identifier ? [_private->identifier.get() stringByAppendingString:(x)] : (x))
199 RetainPtr<NSString> identifier;
233 // Create fake identifier
237 // At least ensure that identifier hasn't been already used.
271 _private->identifier = adoptNS([anIdentifier copy]);
274 [[self class] _setInstance:self forIdentifier:_private->identifier.get()];
301 id identifier = nil;
304 identifier = [decoder decodeObjectForKey:@"Identifier"];
310 identifier
[all...]
H A DWebPreferencesPrivate.h322 + (WebPreferences *)_getInstanceForIdentifier:(NSString *)identifier;
323 + (void)_setInstance:(WebPreferences *)instance forIdentifier:(NSString *)identifier;
324 + (void)_removeReferenceForIdentifier:(NSString *)identifier;
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkern_authorization.c121 static kauth_scope_t kauth_alloc_scope(const char *identifier, kauth_scope_callback_t callback, void *idata);
122 static kauth_listener_t kauth_alloc_listener(const char *identifier, kauth_scope_callback_t callback, void *idata);
184 kauth_alloc_scope(const char *identifier, kauth_scope_callback_t callback, void *idata) argument
195 sp->ks_identifier = identifier;
202 kauth_alloc_listener(const char *identifier, kauth_scope_callback_t callback, void *idata) argument
212 lsp->kl_identifier = identifier;
219 kauth_register_scope(const char *identifier, kauth_scope_callback_t callback, void *idata) argument
224 if ((sp = kauth_alloc_scope(identifier, callback, idata)) == NULL)
233 if (strncmp(tsp->ks_identifier, identifier,
301 kauth_listen_scope(const char *identifier, kauth_scope_callback_ argument
[all...]
/macosx-10.10/IOKitUser-1050.1.21/graphics.subproj/
H A DIOAccelSurfaceControl.c105 IOReturn IOAccelCreateAccelID(IOOptionBits options, IOAccelID * identifier) argument
124 uint64_t inData[] = { options, *identifier };
130 *identifier = (IOAccelID) outData;
135 IOReturn IOAccelDestroyAccelID(IOOptionBits options, IOAccelID identifier) argument
142 uint64_t inData[] = { options, identifier };
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A DSecAssessment.cpp237 string identifier = "UNBUNDLED"; local
241 identifier = cfString(ident);
254 if (identifier.compare(0, pfxlen, *pfx, pfxlen) == 0)
255 if (pfxlen == identifier.size() || (*pfx)[pfxlen-1] == '.') {
268 trace.add("signature2", "bundle:%s", identifier.c_str());
H A Dcsdatabase.cpp57 identifier text not null, \n\
63 create index if not exists identifier_index on code (identifier); \n\
157 // retrieve binary identifier (was added by signer)
167 "insert into code (global, identifier, architecture, identification, signature) values (?1, ?2, ?3, ?4, ?5);");
169 insert.bind(2) = cd->identifier();
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A DSecAssessment.cpp237 string identifier = "UNBUNDLED"; local
241 identifier = cfString(ident);
254 if (identifier.compare(0, pfxlen, *pfx, pfxlen) == 0)
255 if (pfxlen == identifier.size() || (*pfx)[pfxlen-1] == '.') {
268 trace.add("signature2", "bundle:%s", identifier.c_str());
H A Dcsdatabase.cpp57 identifier text not null, \n\
63 create index if not exists identifier_index on code (identifier); \n\
157 // retrieve binary identifier (was added by signer)
167 "insert into code (global, identifier, architecture, identification, signature) values (?1, ?2, ?3, ?4, ?5);");
169 insert.bind(2) = cd->identifier();
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DIDBBindingUtilities.cpp56 Identifier identifier(&exec->vm(), keyPathElement.utf8().data());
57 if (!asObject(object)->hasProperty(exec, identifier))
59 result = asObject(object)->get(exec, identifier);
73 Identifier identifier(&exec->vm(), keyPathElement.utf8().data());
74 asObject(object)->putDirect(exec->vm(), identifier, jsValue);
H A DJSSubtleCryptoCustom.cpp142 auto parameters = JSCryptoAlgorithmDictionary::createParametersForEncrypt(exec, algorithm->identifier(), exec->uncheckedArgument(0));
194 auto parameters = JSCryptoAlgorithmDictionary::createParametersForDecrypt(exec, algorithm->identifier(), exec->uncheckedArgument(0));
245 auto parameters = JSCryptoAlgorithmDictionary::createParametersForSign(exec, algorithm->identifier(), exec->uncheckedArgument(0));
296 auto parameters = JSCryptoAlgorithmDictionary::createParametersForVerify(exec, algorithm->identifier(), exec->uncheckedArgument(0));
353 auto parameters = JSCryptoAlgorithmDictionary::createParametersForDigest(exec, algorithm->identifier(), exec->uncheckedArgument(0));
394 auto parameters = JSCryptoAlgorithmDictionary::createParametersForGenerateKey(exec, algorithm->identifier(), exec->uncheckedArgument(0));
523 parameters = JSCryptoAlgorithmDictionary::createParametersForImportKey(exec, algorithm->identifier(), exec->uncheckedArgument(2));
653 auto parameters = JSCryptoAlgorithmDictionary::createParametersForEncrypt(exec, algorithm->identifier(), exec->uncheckedArgument(3));
733 unwrapAlgorithmParameters = JSCryptoAlgorithmDictionary::createParametersForDecrypt(exec, unwrapAlgorithm->identifier(), exec->uncheckedArgument(3));
747 unwrappedKeyAlgorithmParameters = JSCryptoAlgorithmDictionary::createParametersForImportKey(exec, unwrappedKeyAlgorithm->identifier(), exe
[all...]
H A DJSDictionary.cpp70 Identifier identifier(m_exec, propertyName);
73 if (!m_initializerObject.get()->getPropertySlot(m_exec, identifier, slot))
79 finalResult = slot.getValue(m_exec, identifier);
/macosx-10.10/WebKit-7600.1.25/win/WebCoreSupport/
H A DWebFrameLoaderClient.cpp177 void WebFrameLoaderClient::assignIdentifierToInitialRequest(unsigned long identifier, DocumentLoader* loader, const ResourceRequest& request) argument
185 resourceLoadDelegate->identifierForInitialRequest(webView, webURLRequest.get(), getWebDataSource(loader), identifier);
188 bool WebFrameLoaderClient::shouldUseCredentialStorage(DocumentLoader* loader, unsigned long identifier) argument
200 if (SUCCEEDED(resourceLoadDelegatePrivate->shouldUseCredentialStorage(webView, identifier, getWebDataSource(loader), &shouldUse)))
206 void WebFrameLoaderClient::dispatchDidReceiveAuthenticationChallenge(DocumentLoader* loader, unsigned long identifier, const AuthenticationChallenge& challenge) argument
214 if (SUCCEEDED(resourceLoadDelegate->didReceiveAuthenticationChallenge(webView, identifier, webChallenge.get(), getWebDataSource(loader))))
223 void WebFrameLoaderClient::dispatchDidCancelAuthenticationChallenge(DocumentLoader* loader, unsigned long identifier, const AuthenticationChallenge& challenge) argument
231 resourceLoadDelegate->didCancelAuthenticationChallenge(webView, identifier, webChallenge.get(), getWebDataSource(loader));
234 void WebFrameLoaderClient::dispatchWillSendRequest(DocumentLoader* loader, unsigned long identifier, ResourceRequest& request, const ResourceResponse& redirectResponse) argument
245 if (FAILED(resourceLoadDelegate->willSendRequest(webView, identifier, webURLReques
263 dispatchDidReceiveResponse(DocumentLoader* loader, unsigned long identifier, const ResourceResponse& response) argument
274 dispatchDidReceiveContentLength(DocumentLoader* loader, unsigned long identifier, int length) argument
284 dispatchDidFinishLoading(DocumentLoader* loader, unsigned long identifier) argument
294 dispatchDidFailLoading(DocumentLoader* loader, unsigned long identifier, const ResourceError& error) argument
305 shouldCacheResponse(DocumentLoader* loader, unsigned long identifier, const ResourceResponse& response, const unsigned char* data, const unsigned long long length) argument
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/
H A DNPJSObject.cpp142 bool NPJSObject::hasProperty(NPIdentifier identifier) argument
144 IdentifierRep* identifierRep = static_cast<IdentifierRep*>(identifier);
213 Identifier identifier = identifierFromIdentifierRep(exec, identifierRep); local
215 if (!m_jsObject->hasProperty(exec, identifier)) {
220 m_jsObject->methodTable()->deleteProperty(m_jsObject.get(), exec, identifier);
/macosx-10.10/apache-793/httpd/modules/cache/
H A Dcache_storage.c569 char **identifier; local
571 identifier = (char **) conf->ignore_session_id->elts;
572 for (i = 0; i < conf->ignore_session_id->nelts; i++, identifier++) {
576 len = strlen(*identifier);
579 * of the path and that the parameter matches our identifier
582 && !strncmp(param + 1, *identifier, len)
589 * Check if the identifier is in the querystring and cut it out.
593 * First check if the identifier is at the beginning of the
596 if (!strncmp(querystring, *identifier, len)
605 * identifier wit
[all...]
/macosx-10.10/dcerpc-61/dcerpc/idl_compiler/
H A Dastp.h717 NAMETABLE_id_t identifier
822 NAMETABLE_id_t identifier,
900 NAMETABLE_id_t identifier
905 NAMETABLE_id_t identifier,
913 NAMETABLE_id_t identifier
991 NAMETABLE_id_t identifier,
1047 const char * identifier,
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebFrameLoaderClient.cpp161 void WebFrameLoaderClient::assignIdentifierToInitialRequest(unsigned long identifier, DocumentLoader* loader, const ResourceRequest& request) argument
171 webPage->injectedBundleResourceLoadClient().didInitiateLoadForResource(webPage, m_frame, identifier, request, pageIsProvisionallyLoading);
172 webPage->addResourceRequest(identifier, request);
175 void WebFrameLoaderClient::dispatchWillSendRequest(DocumentLoader*, unsigned long identifier, ResourceRequest& request, const ResourceResponse& redirectResponse) argument
181 webPage->injectedBundleResourceLoadClient().willSendRequestForFrame(webPage, m_frame, identifier, request, redirectResponse);
184 bool WebFrameLoaderClient::shouldUseCredentialStorage(DocumentLoader*, unsigned long identifier) argument
190 return webPage->injectedBundleResourceLoadClient().shouldUseCredentialStorage(webPage, m_frame, identifier);
205 void WebFrameLoaderClient::dispatchDidCancelAuthenticationChallenge(DocumentLoader*, unsigned long /*identifier*/, const AuthenticationChallenge&)
228 void WebFrameLoaderClient::dispatchDidReceiveResponse(DocumentLoader*, unsigned long identifier, const ResourceResponse& response) argument
234 webPage->injectedBundleResourceLoadClient().didReceiveResponseForResource(webPage, m_frame, identifier, respons
237 dispatchDidReceiveContentLength(DocumentLoader*, unsigned long identifier, int dataLength) argument
246 dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier) argument
256 dispatchDidFailLoading(DocumentLoader*, unsigned long identifier, const ResourceError& error) argument
1558 willCacheResponse(DocumentLoader*, unsigned long identifier, NSCachedURLResponse* response) const argument
[all...]
/macosx-10.10/WebKit2-7600.1.25/Platform/IPC/
H A DConnection.cpp223 PassRefPtr<Connection> Connection::createServerConnection(Identifier identifier, Client* client, RunLoop& clientRunLoop) argument
225 return adoptRef(new Connection(identifier, true, client, clientRunLoop));
228 PassRefPtr<Connection> Connection::createClientConnection(Identifier identifier, Client* client, RunLoop& clientRunLoop) argument
230 return adoptRef(new Connection(identifier, false, client, clientRunLoop));
233 Connection::Connection(Identifier identifier, bool isServer, Client* client, RunLoop& clientRunLoop) argument
253 platformInitialize(identifier);
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/IOKit/i2c/
H A DIOI2CInterface.h198 IOReturn IOI2CCopyInterfaceForID( CFTypeRef identifier, io_service_t * interface );
/macosx-10.10/JavaScriptCore-7600.1.17/API/
H A DJSObjectRef.cpp143 Identifier nameID = name ? name->identifier(&exec->vm()) : Identifier(exec, "anonymous");
319 return jsObject->hasProperty(exec, propertyName->identifier(&exec->vm()));
333 JSValue jsValue = jsObject->get(exec, propertyName->identifier(&exec->vm()));
356 Identifier name(propertyName->identifier(&exec->vm()));
438 bool result = jsObject->methodTable()->deleteProperty(jsObject, exec, propertyName->identifier(&exec->vm()));
503 Identifier name(propertyName->identifier(&exec->vm()));
521 Identifier name(propertyName->identifier(&exec->vm()));
544 Identifier name(propertyName->identifier(&exec->vm()));
716 propertyNames->add(propertyName->identifier(propertyNames->vm()));
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Dosxcode.h88 string identifier() const { return cfString(CFBundleGetIdentifier(cfBundle())); } function in class:Security::Bundle
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dosxcode.h88 string identifier() const { return cfString(CFBundleGetIdentifier(cfBundle())); } function in class:Security::Bundle
/macosx-10.10/WebCore-7600.1.25/crypto/algorithms/
H A DCryptoAlgorithmAES_CBC.cpp54 CryptoAlgorithmIdentifier CryptoAlgorithmAES_CBC::identifier() const function in class:WebCore::CryptoAlgorithmAES_CBC
H A DCryptoAlgorithmHMAC.cpp54 CryptoAlgorithmIdentifier CryptoAlgorithmHMAC::identifier() const function in class:WebCore::CryptoAlgorithmHMAC
H A DCryptoAlgorithmRSASSA_PKCS1_v1_5.cpp55 CryptoAlgorithmIdentifier CryptoAlgorithmRSASSA_PKCS1_v1_5::identifier() const function in class:WebCore::CryptoAlgorithmRSASSA_PKCS1_v1_5

Completed in 285 milliseconds

<<11121314151617181920>>