Searched refs:identifier (Results 51 - 75 of 682) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/bridge/
H A DIdentifierRep.cpp60 IdentifierRep* identifier = negativeOneAndZeroIdentifiers[intID + 1]; local
61 if (!identifier) {
62 identifier = new IdentifierRep(intID);
64 negativeOneAndZeroIdentifiers[intID + 1] = identifier;
67 return identifier;
107 bool IdentifierRep::isValid(IdentifierRep* identifier) argument
109 return identifierSet().contains(identifier);
/macosx-10.10/eap8021x-198/EAP8021X.fproj/
H A DEAP.h74 uint8_t identifier; member in struct:EAPPacket_s
81 uint8_t identifier; member in struct:EAPSuccessFailurePacket_s
88 uint8_t identifier; member in struct:EAPRequestResponsePacket_s
97 uint8_t identifier; member in struct:EAPNotificationPacket_s
104 uint8_t identifier; member in struct:EAPNakPacket_s
112 uint8_t identifier; member in struct:EAPMD5ChallengePacket_s
124 uint8_t identifier; member in struct:EAPMD5ResponsePacket_s
H A DEAPTLS.h43 uint8_t identifier; member in struct:__anon8619
52 uint8_t identifier; member in struct:__anon8620
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/remote/
H A DRemoteInspectorDebuggable.h48 unsigned identifier() const { return m_identifier; } function in class:Inspector::RemoteInspectorDebuggable
49 void setIdentifier(unsigned identifier) { m_identifier = identifier; } argument
78 : identifier(0)
85 unsigned identifier; member in struct:Inspector::RemoteInspectorDebuggableInfo
H A DRemoteInspectorDebuggable.cpp70 info.identifier = identifier();
/macosx-10.10/WebCore-7600.1.25/loader/
H A DDocumentThreadableLoader.cpp152 didFail(m_resource->identifier(), error);
204 // If the request URL origin is not same origin with the original URL origin, set source origin to a globally unique identifier.
235 didReceiveResponse(m_resource->identifier(), response);
238 void DocumentThreadableLoader::didReceiveResponse(unsigned long identifier, const ResourceResponse& response) argument
246 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceResponse(m_document.frame(), identifier, response);
247 InspectorInstrumentation::didReceiveResourceResponse(cookie, identifier, loader, response, 0);
251 preflightFailure(identifier, response.url(), accessControlErrorDescription);
260 preflightFailure(identifier, response.url(), accessControlErrorDescription);
273 m_client->didReceiveResponse(identifier, response);
280 didReceiveData(m_resource->identifier(), dat
283 didReceiveData(unsigned long identifier, const char* data, int dataLength) argument
311 didFinishLoading(unsigned long identifier, double finishTime) argument
324 didFail(unsigned long identifier, const ResourceError& error) argument
349 preflightFailure(unsigned long identifier, const String& url, const String& errorDescription) argument
390 unsigned long identifier = m_resource->loader()->identifier(); local
403 unsigned long identifier = std::numeric_limits<unsigned long>::max(); local
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DDashboardView.js26 WebInspector.DashboardView = function(representedObject, identifier)
43 console.assert(identifier);
51 this._element.classList.add(identifier);
H A DToggleControlToolbarItem.js26 WebInspector.ToggleControlToolbarItem = function(identifier, defaultToolTip, alternateToolTip, defaultImage, alternateImage, imageWidth, imageHeight) {
27 WebInspector.ToggleButtonNavigationItem.call(this, identifier, defaultToolTip, alternateToolTip, defaultImage, alternateImage, imageWidth, imageHeight, false);
/macosx-10.10/dcerpc-61/dcerpc/idl_compiler/
H A Dnametbl.h146 NAMETABLE_id_t identifier
155 NAMETABLE_id_t identifier
159 NAMETABLE_id_t identifier
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-AddressBook/Examples/Plugins/Python Address Label/
H A Dplugin.py16 def titleForPerson_identifier_(self, person, identifier):
19 def shouldEnableActionForPerson_identifier_(self, person, identifier):
22 def performActionForPerson_identifier_(self, person, identifier):
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-AddressBook/Examples/Plugins/Python Address Label/
H A Dplugin.py16 def titleForPerson_identifier_(self, person, identifier):
19 def shouldEnableActionForPerson_identifier_(self, person, identifier):
22 def performActionForPerson_identifier_(self, person, identifier):
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-AddressBook-2.5.1/Examples/Plugins/Python Address Label/
H A Dplugin.py16 def titleForPerson_identifier_(self, person, identifier):
19 def shouldEnableActionForPerson_identifier_(self, person, identifier):
22 def performActionForPerson_identifier_(self, person, identifier):
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DJSNameScope.h39 static JSNameScope* create(ExecState* exec, const Identifier& identifier, JSValue value, unsigned attributes) argument
43 scopeObject->finishCreation(vm, identifier, value, attributes);
47 static JSNameScope* create(VM& vm, JSGlobalObject* globalObject, const Identifier& identifier, JSValue value, unsigned attributes, JSScope* next) argument
50 scopeObject->finishCreation(vm, identifier, value, attributes);
64 void finishCreation(VM& vm, const Identifier& identifier, JSValue value, unsigned attributes) argument
68 symbolTable()->add(identifier.impl(), SymbolTableEntry(-1, attributes));
/macosx-10.10/Security-57031.1.35/Security/sec/SOSCircle/Regressions/
H A DCKDKeyValueStore.h65 @property (retain) NSString *identifier; variable
69 + (CKDKeyValueStore *)defaultStore:(NSString *)identifier itemsChangedBlock:(CloudItemsChangedBlock)itemsChangedBlock;
87 + (id <CKDKVSDelegate>)defaultStore:(NSString *)identifier itemsChangedBlock:(CloudItemsChangedBlock)itemsChangedBlock;
88 + (void)enqueueWrite:(id)anObject forKey:(NSString *)aKey from:(NSString *)identifier;
91 + (void)postItemChangedNotification:(NSString *)keyThatChanged from:(NSString *)identifier;
92 + (void)postItemsChangedNotification:(NSArray *)keysThatChanged from:(NSString *)identifier;
H A DCKDKeyValueStore.m68 - (id)initWithIdentifier:(NSString *)identifier itemsChangedBlock:(CloudItemsChangedBlock)itemsChangedBlock
73 self.identifier = identifier;
92 + (CKDKeyValueStore *)defaultStore:(NSString *)identifier itemsChangedBlock:(CloudItemsChangedBlock)itemsChangedBlock
94 return [CKDKeyValueStoreCollection defaultStore:identifier itemsChangedBlock:itemsChangedBlock];
121 [CKDKeyValueStoreCollection enqueueWrite:anObject forKey:aKey from:self.identifier];
127 [CKDKeyValueStoreCollection enqueueWrite:NULL forKey:aKey from:self.identifier];
141 [CKDKeyValueStoreCollection enqueueWrite:initialValue forKey:NULL from:self.identifier];
218 if (self.identifier && whoChangedIt && [self.identifier isEqualToStrin
[all...]
/macosx-10.10/IOKitUser-1050.1.21/IOServiceAuthorizeAgent/
H A Ddevice.h28 CFStringRef _DeviceCopyName( CFDictionaryRef identifier );
/macosx-10.10/IOKitUser-1050.1.21/IOServiceAuthorizeAgent/storage/
H A Dstorage.h28 CFStringRef _IOMediaCopyName( CFDictionaryRef identifier );
/macosx-10.10/IOKitUser-1050.1.21/IOServiceAuthorizeAgent/usb/
H A Dusb.h28 CFStringRef _IOUSBDeviceCopyName( CFDictionaryRef identifier );
/macosx-10.10/WebCore-7600.1.25/bridge/c/
H A Dc_runtime.h44 NPIdentifier identifier() const { return _fieldIdentifier; } function in class:JSC::Bindings::CField
56 NPIdentifier identifier() const { return _methodIdentifier; } function in class:JSC::Bindings::CMethod
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebResourceLoadDelegatePrivate.h38 - (BOOL)webView:(WebView *)webView resource:(id)identifier shouldUseCredentialStorageForDataSource:(WebDataSource *)dataSource;
46 - (BOOL)webView:(WebView *)sender resource:(id)identifier canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace forDataSource:(WebDataSource *)dataSource WEBKIT_AVAILABLE_MAC(10_6);
58 - (NSURLRequest *)webThreadWebView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource;
59 - (void)webThreadWebView:(WebView *)sender resource:(id)identifier didReceiveContentLength:(WebNSInteger)length fromDataSource:(WebDataSource *)dataSource;
60 - (void)webThreadWebView:(WebView *)sender resource:(id)identifier didReceiveResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)dataSource;
62 - (void)webThreadWebView:(WebView *)sender resource:(id)identifier didFinishLoadingFromDataSource:(WebDataSource *)dataSource;
63 - (void)webThreadWebView:(WebView *)sender resource:(id)identifier didFailLoadingWithError:(NSError *)error fromDataSource:(WebDataSource *)dataSource;
64 - (NSCachedURLResponse *)webThreadWebView:(WebView *)sender resource:(id)identifier willCacheResponse:(NSCachedURLResponse *)response fromDataSource:(WebDataSource *)dataSource;
71 - (NSDictionary *)webView:(WebView *)sender connectionPropertiesForResource:(id)identifier dataSource:(WebDataSource *)dataSource;
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebResourceLoadDelegatePrivate2.idl45 @param identifier An identifier that can be used to track the progress of a resource load across
47 @discussion This message is sent to notify the delegate to stop using the identifier
49 - (void)webView:(WebView *)sender removeIdentifierForRequest:(id)identifier;
51 HRESULT removeIdentifierForRequest([in] IWebView* webView, [in] unsigned long identifier);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/UserContent/
H A DWebUserContentController.messages.in34 RemoveUserScriptMessageHandler(uint64_t identifier)
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorReplayAgent.cpp86 segments->addItem((*it)->identifier());
89 .setId(session->identifier())
136 .setId(segment->identifier())
171 m_sessionsMap.add(session->identifier(), session);
174 m_segmentsMap.add((*it)->identifier(), *it);
211 auto result = m_sessionsMap.add(session->identifier(), session);
212 // Can't have two sessions with same identifier.
215 m_frontendDispatcher->sessionCreated(session->identifier());
220 m_frontendDispatcher->sessionModified(session->identifier());
228 m_sessionsMap.add(session->identifier(), sessio
375 switchSession(ErrorString* errorString, SessionIdentifier identifier) argument
417 removeSessionSegment(ErrorString* errorString, SessionIdentifier identifier, int segmentIndex) argument
441 findSession(ErrorString* errorString, SessionIdentifier identifier) argument
454 findSegment(ErrorString* errorString, SegmentIdentifier identifier) argument
474 getSerializedSession(ErrorString* errorString, SessionIdentifier identifier, RefPtr<Inspector::TypeBuilder::Replay::ReplaySession>& serializedObject) argument
485 getSerializedSegment(ErrorString* errorString, SegmentIdentifier identifier, RefPtr<Inspector::TypeBuilder::Replay::SessionSegment>& serializedObject) argument
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Network/
H A DWebResourceLoadScheduler.cpp94 ResourceLoadIdentifier identifier = resourceLoader->identifier(); local
95 ASSERT(identifier);
102 m_webResourceLoaders.set(identifier, WebResourceLoader::create(resourceLoader));
109 m_webResourceLoaders.set(identifier, WebResourceLoader::create(resourceLoader));
116 m_webResourceLoaders.set(identifier, WebResourceLoader::create(resourceLoader));
134 loadParameters.identifier = identifier;
158 m_webResourceLoaders.set(identifier, WebResourceLoader::create(resourceLoader));
188 ResourceLoadIdentifier identifier local
208 ResourceLoadIdentifier identifier = resourceLoader->identifier(); local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/
H A DIdentifiersFactory.h39 static String requestId(unsigned long identifier);

Completed in 400 milliseconds

1234567891011>>