Searched refs:notificationName (Results 1 - 18 of 18) sorted by last modified time

/macosx-10.9.5/xnu-2422.115.4/libkern/c++/
H A DOSKext.cpp6447 const char * notificationName,
6461 result = _OSKextCreateRequest(notificationName, &loadRequest);
6446 queueKextNotification( const char * notificationName, OSString * kextIdentifier) argument
/macosx-10.9.5/CF-855.17/
H A DCFUtilities.c883 char *notificationName = NULL; local
884 asprintf(&notificationName, "com.apple.isKillable.%i", getpid());
885 uint32_t notifyResult = notify_register_check(notificationName, &__CFProcessIsKillableNotifyToken);
889 free(notificationName);
/macosx-10.9.5/IOKitUser-907.100.13/pwr_mgt.subproj/
H A DIOPMAssertions.c490 __unused CFStringRef notificationName,
516 notificationName, NULL, NULL, NULL,
489 IOPMAssertionDeclareNotificationEvent( __unused CFStringRef notificationName, __unused CFTimeInterval secondsToDisplay, __unused IOPMAssertionID *AssertionID) argument
H A DIOPMLibPrivate.h2236 * @param notificationName A human-readable string (it can be reverse-DNS),
2252 CFStringRef notificationName,
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/avfoundation/cf/
H A DMediaPlayerPrivateAVFoundationCF.cpp1502 char notificationName[256]; local
1503 CFStringGetCString(propertyName, notificationName, sizeof(notificationName), kCFStringEncodingASCII);
1504 LOG(Media, "AVFWrapper::notificationCallback(if=%d) %s", reinterpret_cast<uintptr_t>(observer), notificationName);
/macosx-10.9.5/PowerManagement-420.90.1/pmconfigd/
H A Dpmconfigd.c185 CFStringRef notificationName,
606 CFStringRef notificationName,
610 if( CFEqual(notificationName, gTZNotificationNameString) )
603 timeZoneChangedCallBack( CFNotificationCenterRef center, void *observer, CFStringRef notificationName, const void *object, CFDictionaryRef userInfo) argument
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/avfoundation/
H A DMediaPlayerPrivateAVFoundation.cpp736 static const char* notificationName(MediaPlayerPrivateAVFoundation::Notification& notification) function in namespace:WebCore
750 LOG(Media, "MediaPlayerPrivateAVFoundation::scheduleMainThreadNotification(%p) - notification %s", this, notificationName(notification));
797 LOG(Media, "MediaPlayerPrivateAVFoundation::dispatchNotification(%p) - dispatching %s", this, notificationName(notification));
/macosx-10.9.5/Security-55471.14.18/sec/SOSCircle/CloudKeychainProxy/
H A DCKDKVSProxy.m436 const char *notificationName = xpc_dictionary_get_string(notification, "Notification");
437 if (!notificationName) {
438 } else if (strcmp(notificationName, kUserKeybagStateChangeNotification)==0) {
440 } else if (strcmp(notificationName, kCloudKeychainStorechangeChangeNotification)==0) {
442 } else if (strcmp(notificationName, kNotifyTokenForceUpdate)==0) {
448 secerror("%@ event: %s name: %s desc: %s", self, eventName, notificationName, desc);
/macosx-10.9.5/WebCore-7537.78.1/accessibility/ios/
H A DWebAccessibilityObjectWrapperIOS.mm2226 - (void)accessibilityPostedNotification:(NSString *)notificationName
2228 if (AXNotificationCallback && notificationName)
2229 AXNotificationCallback(self, notificationName, AXPostedNotificationContext);
/macosx-10.9.5/WebCore-7537.78.1/accessibility/mac/
H A DWebAccessibilityObjectWrapperBase.h59 - (void)accessibilityPostedNotification:(NSString *)notificationName;
H A DWebAccessibilityObjectWrapperBase.mm394 - (void)accessibilityPostedNotification:(NSString *)notificationName
397 NSDictionary* userInfo = [NSDictionary dictionaryWithObjectsAndKeys:notificationName, @"notificationName", nil];
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePage.h304 typedef void (*WKBundlePageEditingNotification)(WKBundlePageRef page, WKStringRef notificationName, const void* clientInfo);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/
H A DInjectedBundlePageEditorClient.cpp107 void InjectedBundlePageEditorClient::didBeginEditing(WebPage* page, StringImpl* notificationName) argument
110 m_client.didBeginEditing(toAPI(page), toAPI(notificationName), m_client.clientInfo);
113 void InjectedBundlePageEditorClient::didEndEditing(WebPage* page, StringImpl* notificationName) argument
116 m_client.didEndEditing(toAPI(page), toAPI(notificationName), m_client.clientInfo);
119 void InjectedBundlePageEditorClient::didChange(WebPage* page, StringImpl* notificationName) argument
122 m_client.didChange(toAPI(page), toAPI(notificationName), m_client.clientInfo);
125 void InjectedBundlePageEditorClient::didChangeSelection(WebPage* page, StringImpl* notificationName) argument
128 m_client.didChangeSelection(toAPI(page), toAPI(notificationName), m_client.clientInfo);
H A DInjectedBundlePageEditorClient.h57 void didBeginEditing(WebPage*, StringImpl* notificationName);
58 void didEndEditing(WebPage*, StringImpl* notificationName);
59 void didChange(WebPage*, StringImpl* notificationName);
60 void didChangeSelection(WebPage*, StringImpl* notificationName);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebNotificationCenter.cpp115 void WebNotificationCenter::postNotificationInternal(IWebNotification* notification, BSTR notificationName, IUnknown* anObject) argument
117 String name(notificationName, SysStringLen(notificationName));
147 /* [in] */ BSTR notificationName,
150 String name(notificationName, SysStringLen(notificationName));
182 /* [in] */ BSTR notificationName,
186 COMPtr<WebNotification> notification(AdoptCOM, WebNotification::createInstance(notificationName, anObject, userInfo));
187 postNotificationInternal(notification.get(), notificationName, anObject);
193 /* [in] */ BSTR notificationName,
145 addObserver( IWebNotificationObserver* observer, BSTR notificationName, IUnknown* anObject) argument
181 postNotificationName( BSTR notificationName, IUnknown* anObject, IPropertyBag* userInfo) argument
191 removeObserver( IWebNotificationObserver* anObserver, BSTR notificationName, IUnknown* anObject) argument
[all...]
H A DWebNotificationCenter.h54 /* [in] */ BSTR notificationName,
61 /* [in] */ BSTR notificationName,
67 /* [in] */ BSTR notificationName,
72 void postNotificationInternal(IWebNotification* notification, BSTR notificationName, IUnknown* anObject);
/macosx-10.9.5/xnu-2422.115.4/libkern/libkern/c++/
H A DOSKext.h378 const char * notificationName,
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebNotificationCenter.idl51 //- (void)addObserver:(id)anObserver selector:(SEL)aSelector name:(NSString *)notificationName object:(id)anObject
52 HRESULT addObserver([in] IWebNotificationObserver* observer, [in] BSTR notificationName, [in] IUnknown* anObject);
57 //- (void)postNotificationName:(NSString *)notificationName object:(id)anObject
58 //- (void)postNotificationName:(NSString *)notificationName object:(id)anObject userInfo:(NSDictionary *)userInfo
59 HRESULT postNotificationName([in] BSTR notificationName, [in] IUnknown* anObject, [in] IPropertyBag* userInfo);
62 //- (void)removeObserver:(id)anObserver name:(NSString *)notificationName object:(id)anObject
63 HRESULT removeObserver([in] IWebNotificationObserver* anObserver, [in] BSTR notificationName, [in] IUnknown* anObject);

Completed in 230 milliseconds