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

123

/macosx-10.9.5/tcl-102/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.9.5/tcl-102/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.9.5/WebCore-7537.78.1/Modules/geolocation/
H A DGeolocation.cpp156 // This will cause this notifier to be deleted.
179 RefPtr<GeoNotifier> notifier = prpNotifier; local
181 if (!m_idToNotifierMap.add(id, notifier.get()).isNewEntry)
183 m_notifierToIdMap.set(notifier.release(), id);
206 void Geolocation::Watchers::remove(GeoNotifier* notifier) argument
208 NotifierToIdMap::iterator iter = m_notifierToIdMap.find(notifier);
215 bool Geolocation::Watchers::contains(GeoNotifier* notifier) const
217 return m_notifierToIdMap.contains(notifier);
297 RefPtr<GeoNotifier> notifier = GeoNotifier::create(this, successCallback, errorCallback, options);
298 startRequest(notifier
319 startRequest(GeoNotifier *notifier) argument
339 fatalErrorOccurred(Geolocation::GeoNotifier* notifier) argument
349 requestUsesCachedPosition(GeoNotifier* notifier) argument
377 GeoNotifier* notifier = iter->get(); local
398 requestTimedOut(GeoNotifier* notifier) argument
470 RefPtr<GeoNotifier> notifier = *it; local
533 GeoNotifier* notifier = it->get(); local
547 GeoNotifier* notifier = it->get(); local
642 startUpdating(GeoNotifier* notifier) argument
667 GeoNotifier* notifier = iter->get(); local
[all...]
/macosx-10.9.5/cups-372.4/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.9.5/WebKit2-7537.78.2/Platform/qt/
H A DWorkQueueQt.cpp87 QSocketNotifier* notifier = new QSocketNotifier(socketDescriptor, type, 0); local
88 notifier->setEnabled(false);
89 notifier->moveToThread(m_workThread);
90 WorkQueue::WorkItemQt* itemQt = new WorkQueue::WorkItemQt(this, notifier, SIGNAL(activated(int)), function);
92 QMetaObject::invokeMethod(notifier, "setEnabled", Q_ARG(bool, true));
93 return notifier;
/macosx-10.9.5/WebCore-7537.78.1/platform/network/qt/
H A DNetworkStateNotifierQt.cpp32 NetworkStateNotifierPrivate::NetworkStateNotifierPrivate(NetworkStateNotifier* notifier) argument
35 , m_notifier(notifier)
37 ASSERT(notifier);
H A DNetworkStateNotifierPrivate.h37 NetworkStateNotifierPrivate(NetworkStateNotifier* notifier);
/macosx-10.9.5/tcl-102/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:__anon12836
130 * Initializes the notifier state.
145 memset(&notifier, 0, sizeof(notifier));
[all...]
/macosx-10.9.5/ppp-727.90.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.c141 struct notifier *pidchange = NULL;
142 struct notifier *phasechange = NULL;
143 struct notifier *exitnotify = NULL;
144 struct notifier *sigreceived = NULL;
145 struct notifier *fork_notifier = NULL;
146 struct notifier *protocolsready_notifier = NULL;
147 struct notifier *acspdhcpready_notifier = NULL;
288 struct notifier *connect_started_notify = NULL;
289 struct notifier *connect_success_notify = NULL;
290 struct notifier *connect_fail_notif
[all...]
/macosx-10.9.5/WebCore-7537.78.1/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.9.5/xnu-2422.115.4/iokit/Families/IOSystemManagement/
H A DIOWatchDogTimer.cpp58 notifier = registerSleepWakeInterest(IOWatchDogTimerSleepHandler, this);
59 if (notifier == 0) return false;
72 notifier->remove();
/macosx-10.9.5/AppleFileSystemDriver-17/
H A DAppleFileSystemDriver.h58 IONotifier * notifier);
/macosx-10.9.5/xnu-2422.115.4/iokit/IOKit/system_management/
H A DIOWatchDogTimer.h39 IONotifier *notifier; member in class:IOWatchDogTimer
/macosx-10.9.5/IOKitUser-907.100.13/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.9.5/ruby-104/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.9.5/IOGraphics-471.92.1/IOGraphicsFamily/
H A DIODisplayWrangler.h68 IOService * newService, IONotifier * notifier );
70 IOService * newService, IONotifier * notifier );
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DResourceLoader.cpp240 frameLoader()->notifier()->assignIdentifierToInitialRequest(m_identifier, documentLoader(), request);
242 frameLoader()->notifier()->willSendRequest(this, request, redirectResponse);
276 frameLoader()->notifier()->didReceiveResponse(this, m_response);
311 frameLoader()->notifier()->didReceiveData(this, buffer ? buffer->data() : data, buffer ? buffer->size() : length, static_cast<int>(encodedDataLength));
346 frameLoader()->notifier()->didFinishLoad(this, finishTime);
372 frameLoader()->notifier()->didFailToLoad(this, error);
527 frameLoader()->notifier()->didReceiveAuthenticationChallenge(this, challenge);
546 frameLoader()->notifier()->didCancelAuthenticationChallenge(this, challenge);
/macosx-10.9.5/WebCore-7537.78.1/platform/network/mac/
H A DNetworkStateNotifierMac.cpp77 NetworkStateNotifier* notifier = static_cast<NetworkStateNotifier*>(info); local
81 notifier->m_networkStateChangeTimer.startOneShot(StateChangeTimerInterval);
/macosx-10.9.5/IOFireWireIP-226.4/KernelHeaders/IOKit/
H A DIOFireWireIPUnit.h80 static bool busInterfaceTerminate(void *target, void *refCon, IOService *newService, IONotifier * notifier);
/macosx-10.9.5/IONetworkingFamily-100/
H A DIONetworkStack.h65 IONotifier * notifier );
H A DIOKernelDebugger.h324 void *target, void *param, IOService *service, IONotifier *notifier );
/macosx-10.9.5/WebCore-7537.78.1/loader/mac/
H A DResourceLoaderMac.mm94 frameLoader()->notifier()->didReceiveData(this, reinterpret_cast<const char*>(CFDataGetBytePtr(data)), dataLen, dataLen);
/macosx-10.9.5/tcl-102/tcl_ext/memchan/memchan/htdocs/raw/
H A Dmem_event.exp32 the new scheme would starve all other event sources as the notifier
47 support as the internal interfaces to the notifier changed several

Completed in 409 milliseconds

123