Searched refs:notifier (Results 1 - 25 of 76) sorted by relevance

1234

/macosx-10.10/tcl-105/tcl/tcl/unix/
H A DtclXtNotify.c4 * This file contains the notifier driver implementation for the Xt
19 * This structure is used to keep track of the notifier info for a a
56 * based implementation of the Tcl notifier.
60 XtAppContext appContext; /* The context used by the Xt notifier. Can be
66 } notifier; variable in typeref:struct:NotifierState
102 * Set the notifier application context.
108 * Sets the application context used by the notifier. Panics if the
128 if (notifier.appContext != NULL) {
149 notifier.appContext = XtCreateApplicationContext();
150 notifier
183 Tcl_NotifierProcs notifier; local
[all...]
/macosx-10.10/tcl-105/tcl84/tcl/unix/
H A DtclXtNotify.c4 * This file contains the notifier driver implementation for the
19 * This structure is used to keep track of the notifier info for a
55 * Xt based implementation of the Tcl notifier.
60 * notifier. Can be set with
66 } notifier; variable in typeref:struct:NotifierState
105 * Set the notifier application context.
111 * Sets the application context used by the notifier. Panics if
131 if (notifier.appContext != NULL) {
156 notifier.appContext = XtCreateApplicationContext();
157 notifier
191 Tcl_NotifierProcs notifier; local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/network/ios/
H A DNetworkStateNotifierIOS.mm49 @property (nonatomic) const WebCore::NetworkStateNotifier* notifier;
50 - (id)initWithNotifier:(const WebCore::NetworkStateNotifier*)notifier;
56 - (id)initWithNotifier:(const WebCore::NetworkStateNotifier*)notifier
58 ASSERT_ARG(notifier, notifier);
61 _notifier = notifier;
111 void setOnLine(const NetworkStateNotifier* notifier, bool onLine)
113 ASSERT_ARG(notifier, notifier);
114 notifier
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/mock/
H A DRTCDataChannelHandlerMock.cpp54 RefPtr<DataChannelStateNotifier> notifier = adoptRef(new DataChannelStateNotifier(m_client, RTCDataChannelHandlerClient::ReadyStateOpen)); local
55 m_timerEvents.append(adoptRef(new TimerEvent(this, notifier)));
72 RefPtr<DataChannelStateNotifier> notifier = adoptRef(new DataChannelStateNotifier(m_client, RTCDataChannelHandlerClient::ReadyStateClosed)); local
73 m_timerEvents.append(adoptRef(new TimerEvent(this, notifier)));
H A DUserMediaClientMock.h65 RefPtr<UserMediaClientRequestNotifier> notifier = adoptRef(new UserMediaClientRequestNotifier(request, true)); variable
66 m_timerEvents.append(adoptRef(new TimerEvent(this, notifier)));
71 RefPtr<UserMediaClientRequestNotifier> notifier = adoptRef(new UserMediaClientRequestNotifier(request, false)); variable
72 m_timerEvents.append(adoptRef(new TimerEvent(this, notifier)));
H A DRTCPeerConnectionHandlerMock.cpp57 RefPtr<IceConnectionNotifier> notifier = adoptRef(new IceConnectionNotifier(m_client, RTCPeerConnectionHandlerClient::IceConnectionStateCompleted, RTCPeerConnectionHandlerClient::IceGatheringStateComplete)); local
58 m_timerEvents.append(adoptRef(new TimerEvent(this, notifier)));
64 RefPtr<SessionRequestNotifier> notifier = adoptRef(new SessionRequestNotifier(request, RTCSessionDescriptionDescriptor::create("offer", "local"))); local
65 m_timerEvents.append(adoptRef(new TimerEvent(this, notifier)));
70 RefPtr<SessionRequestNotifier> notifier = adoptRef(new SessionRequestNotifier(request, RTCSessionDescriptionDescriptor::create("answer", "local"))); local
71 m_timerEvents.append(adoptRef(new TimerEvent(this, notifier)));
137 RefPtr<VoidRequestNotifier> notifier = adoptRef(new VoidRequestNotifier(request, true)); local
138 m_timerEvents.append(adoptRef(new TimerEvent(this, notifier)));
164 RefPtr<RemoteDataChannelNotifier> notifier = adoptRef(new RemoteDataChannelNotifier(m_client)); local
165 m_timerEvents.append(adoptRef(new TimerEvent(this, notifier)));
[all...]
H A DTimerEventBasedMock.h61 TimerEvent(TimerEventBasedMock* mock, PassRefPtr<MockNotifier> notifier) argument
64 , m_notifier(notifier)
/macosx-10.10/WebCore-7600.1.25/Modules/geolocation/
H A DGeolocation.cpp157 // This will cause this notifier to be deleted.
180 RefPtr<GeoNotifier> notifier = prpNotifier; local
182 if (!m_idToNotifierMap.add(id, notifier.get()).isNewEntry)
184 m_notifierToIdMap.set(notifier.release(), id);
197 if (auto notifier = m_idToNotifierMap.take(id))
198 m_notifierToIdMap.remove(notifier);
201 void Geolocation::Watchers::remove(GeoNotifier* notifier) argument
203 if (auto identifier = m_notifierToIdMap.take(notifier))
207 bool Geolocation::Watchers::contains(GeoNotifier* notifier) const
209 return m_notifierToIdMap.contains(notifier);
437 startRequest(GeoNotifier *notifier) argument
457 fatalErrorOccurred(Geolocation::GeoNotifier* notifier) argument
467 requestUsesCachedPosition(GeoNotifier* notifier) argument
495 GeoNotifier* notifier = iter->get(); local
514 requestTimedOut(GeoNotifier* notifier) argument
596 RefPtr<GeoNotifier> notifier = *it; local
659 GeoNotifier* notifier = it->get(); local
673 GeoNotifier* notifier = it->get(); local
781 startUpdating(GeoNotifier* notifier) argument
806 GeoNotifier* notifier = iter->get(); local
[all...]
/macosx-10.10/cups-408/cups/notifier/
H A DMakefile73 echo Installing notifiers in $(SERVERBIN)/notifier...
74 $(INSTALL_DIR) -m 755 $(SERVERBIN)/notifier
76 $(INSTALL_BIN) $$file $(SERVERBIN)/notifier; \
107 $(RM) $(SERVERBIN)/notifier/$$file; \
109 -$(RMDIR) $(SERVERBIN)/notifier
/macosx-10.10/tcl-105/tcl_ext/expect/expect/
H A Dexp_poll.c2 * poll-based notifier, which is the lowest-level part of the Tcl
11 * Rewritten by Don Libes, 2/96 for new Tcl notifier paradigm.
12 * Rewritten again by Don Libes, 8/97 for yet another Tcl notifier paradigm.
40 * Unix-specific notifier, which is the lowest-level part of the
53 * This structure is used to keep track of the notifier info for a
88 * select based implementation of the Tcl notifier.
106 } notifier; variable in typeref:struct:__anon12843
130 * Initializes the notifier state.
145 memset(&notifier, 0, sizeof(notifier));
[all...]
/macosx-10.10/ppp-786.1.1/Helpers/pppd/
H A Dpppd.h250 struct notifier { struct
251 struct notifier *next;
310 extern struct notifier *pidchange; /* for notifications of pid changing */
311 extern struct notifier *phasechange; /* for notifications of phase changes */
312 extern struct notifier *exitnotify; /* for notification that we're exiting */
313 extern struct notifier *sigreceived; /* notification of received signal */
314 extern struct notifier *ip_up_notifier; /* IPCP has come up */
315 extern struct notifier *ip_down_notifier; /* IPCP has gone down */
316 extern struct notifier *auth_up_notifier; /* peer has authenticated */
317 extern struct notifier *link_down_notifie
[all...]
H A Dmain.c139 struct notifier *pidchange = NULL;
140 struct notifier *phasechange = NULL;
141 struct notifier *exitnotify = NULL;
142 struct notifier *sigreceived = NULL;
143 struct notifier *fork_notifier = NULL;
144 struct notifier *protocolsready_notifier = NULL;
145 struct notifier *acspdhcpready_notifier = NULL;
286 struct notifier *connect_started_notify = NULL;
287 struct notifier *connect_success_notify = NULL;
288 struct notifier *connect_fail_notif
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/network/efl/
H A DNetworkStateNotifierEfl.cpp106 NetworkStateNotifier* notifier = static_cast<NetworkStateNotifier*>(userData); local
118 notifier->m_fdHandler = 0;
127 notifier->m_fdHandler = 0;
133 notifier->m_fdHandler = 0;
136 if ((nlh->nlmsg_type == RTM_NEWADDR && !notifier->m_isOnLine) || (nlh->nlmsg_type == RTM_DELADDR && notifier->m_isOnLine))
143 notifier->networkInterfaceChanged();
/macosx-10.10/xnu-2782.1.97/iokit/Families/IOSystemManagement/
H A DIOWatchDogTimer.cpp58 notifier = registerSleepWakeInterest(IOWatchDogTimerSleepHandler, this);
59 if (notifier == 0) return false;
72 notifier->remove();
/macosx-10.10/AppleFileSystemDriver-17/
H A DAppleFileSystemDriver.h58 IONotifier * notifier);
/macosx-10.10/xnu-2782.1.97/iokit/IOKit/system_management/
H A DIOWatchDogTimer.h39 IONotifier *notifier; member in class:IOWatchDogTimer
/macosx-10.10/IOKitUser-1050.1.21/pwr_mgt.subproj/
H A DIOPMLib.c229 io_object_t * notifier )
234 *notifier = MACH_PORT_NULL;
246 callback, refcon, notifier);
257 if ( *notifier != MACH_PORT_NULL ) {
258 IOObjectRelease(*notifier);
318 IOReturn IODeregisterApp ( io_object_t * notifier )
320 if ( *notifier ) {
321 IOObjectRelease(*notifier);
322 *notifier = MACH_PORT_NULL;
H A DIOPMLib.h124 io_object_t * notifier )
165 <ol><li> Call IODeregisterForSystemPower with the 'notifier' argument returned here.
175 @param notifier On success, returns a pointer to a unique notifier which caller must keep and pass to a subsequent call to IODeregisterForSystemPower.
177 Caller must close return value via IOServiceClose() after calling IODeregisterForSystemPower on the notifier argument.
182 io_object_t * notifier )
186 @param notifier An object from IORegisterApp.
189 IOReturn IODeregisterApp ( io_object_t * notifier ) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER;
193 @param notifier The object returned from IORegisterForSystemPower.
196 IOReturn IODeregisterForSystemPower ( io_object_t * notifier )
[all...]
/macosx-10.10/ruby-106/ruby/lib/irb/
H A Dnotifier.rb2 # notifier.rb - output methods used by irb
20 "undefined notifier level: %d is specified"
22 "unrecognized notifier level: %s is specified"
105 # A class that can be used to create a group of notifier objects with the
112 # create a new composite notifier. Using the first composite notifier
116 # Create a new composite notifier object with the given +prefix+, and
130 # The given +prefix+ will be assigned to the notifier, and +level+ will
135 notifier = LeveledNotifier.new(self, level, prefix)
136 @notifiers[level] = notifier
[all...]
/macosx-10.10/IOGraphics-485/IOGraphicsFamily/
H A DIODisplayWrangler.h70 IOService * newService, IONotifier * notifier );
72 IOService * newService, IONotifier * notifier );
/macosx-10.10/WebCore-7600.1.25/loader/
H A DResourceLoader.cpp263 frameLoader()->notifier().assignIdentifierToInitialRequest(m_identifier, documentLoader(), request);
280 frameLoader()->notifier().assignIdentifierToInitialRequest(m_identifier, documentLoader(), request);
282 frameLoader()->notifier().willSendRequest(this, request, redirectResponse);
316 frameLoader()->notifier().didReceiveResponse(this, m_response);
351 frameLoader()->notifier().didReceiveData(this, buffer ? buffer->data() : data, buffer ? buffer->size() : length, static_cast<int>(encodedDataLength));
377 frameLoader()->notifier().didFinishLoad(this, finishTime);
403 frameLoader()->notifier().didFailToLoad(this, error);
556 frameLoader()->notifier().didReceiveAuthenticationChallenge(this, challenge);
575 frameLoader()->notifier().didCancelAuthenticationChallenge(this, challenge);
/macosx-10.10/WebCore-7600.1.25/platform/network/mac/
H A DNetworkStateNotifierMac.cpp77 NetworkStateNotifier* notifier = static_cast<NetworkStateNotifier*>(info); local
81 notifier->m_networkStateChangeTimer.startOneShot(StateChangeTimerInterval);
/macosx-10.10/IOFireWireIP-226.2/KernelHeaders/IOKit/
H A DIOFireWireIPUnit.h80 static bool busInterfaceTerminate(void *target, void *refCon, IOService *newService, IONotifier * notifier);
/macosx-10.10/IONetworkingFamily-101/
H A DIONetworkStack.h65 IONotifier * notifier );
/macosx-10.10/WebCore-7600.1.25/loader/mac/
H A DResourceLoaderMac.mm94 frameLoader()->notifier().didReceiveData(this, reinterpret_cast<const char*>(CFDataGetBytePtr(data)), dataLen, dataLen);

Completed in 301 milliseconds

1234