Searched refs:Timer (Results 1 - 25 of 91) sorted by relevance

1234

/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DTimer.h1 //===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
10 // This file defines three classes: Timer, TimeRegion, and TimerGroup,
28 class Timer;
77 /// Timer - This class is used to track the amount of time spent between
80 /// By default, the Timer will print the amount of time it has captured to
85 class Timer { class in namespace:llvm
89 TimerGroup *TG; // The TimerGroup this Timer is in.
91 Timer **Prev, *Next; // Doubly linked list of timers in the group.
93 explicit Timer(StringRef N) : TG(0) { init(N); } function in class:llvm::Timer
94 Timer(StringRe function in class:llvm::Timer
95 Timer(const Timer &RHS) : TG(0) { function in class:llvm::Timer
105 explicit Timer() : TG(0) {} function in class:llvm::Timer
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DWebMemorySampler.h56 #include <WebCore/Timer.h>
88 void sampleTimerFired(WebCore::Timer<WebMemorySampler>*);
89 void stopTimerFired(WebCore::Timer<WebMemorySampler>*);
100 WebCore::Timer<WebMemorySampler> m_sampleTimer;
101 WebCore::Timer<WebMemorySampler> m_stopTimer;
/macosx-10.10.1/WebKit2-7600.1.25/Shared/mac/
H A DRemoteLayerBackingStoreCollection.h29 #import <WebCore/Timer.h>
55 void volatilityTimerFired(WebCore::Timer<RemoteLayerBackingStoreCollection>&);
72 WebCore::Timer<RemoteLayerBackingStoreCollection> m_volatilityTimer;
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/efl/
H A DTextCheckerClientEfl.h32 #include "Timer.h"
58 void languagesUpdateTimerFired(WebCore::Timer<TextCheckerClientEfl>*);
59 WebCore::Timer<TextCheckerClientEfl> m_languagesUpdateTimer;
63 void spellCheckingSettingChangeTimerFired(WebCore::Timer<TextCheckerClientEfl>*);
65 WebCore::Timer<TextCheckerClientEfl> m_spellCheckingSettingChangeTimer;
/macosx-10.10.1/security_ocspd-55124/server/
H A DocspdServer.h52 * Timer subclass to handle periodic flushes of DB caches.
54 class OcspdTimer : public MachServer::Timer
58 /* Timer(false) --> !longTerm --> avoid spawning a thread for this */
59 OcspdTimer(OcspdServer &server) : Timer(true), mServer(server) {}
/macosx-10.10.1/eap8021x-198/eapolclient.tproj/
H A DTimer.h25 * Timer.h
40 typedef struct Timer_s Timer, *TimerRef; typedef in typeref:struct:Timer_s
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DTimer.cpp1 //===-- Timer.cpp - Interval Timing Support -------------------------------===//
14 #include "llvm/Support/Timer.h"
100 // Timer Implementation
103 void Timer::init(StringRef N) {
104 assert(TG == 0 && "Timer already initialized");
111 void Timer::init(StringRef N, TimerGroup &tg) {
112 assert(TG == 0 && "Timer already initialized");
119 Timer::~Timer() {
147 static ManagedStatic<std::vector<Timer*> > ActiveTimer
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/NetworkProcess/
H A DNetworkResourceLoadScheduler.h30 #include <WebCore/Timer.h>
79 void requestTimerFired(WebCore::Timer<NetworkResourceLoadScheduler>*);
96 WebCore::Timer<NetworkResourceLoadScheduler> m_requestTimer;
/macosx-10.10.1/Security-57031.1.35/securityd/src/
H A Dentropy.h42 class EntropyManager : public MachServer::Timer, private DevRandomGenerator {
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/
H A DResponsivenessTimer.h59 RunLoop::Timer<ResponsivenessTimer> m_timer;
H A DProcessThrottler.h77 RunLoop::Timer<ProcessThrottler> m_suspendTimer;
/macosx-10.10.1/WebKit-7600.1.25/mac/Plugins/
H A DWebNetscapePluginStream.h32 #import <WebCore/Timer.h>
126 void deliverDataTimerFired(WebCore::Timer<WebNetscapePluginStream>* timer);
127 WebCore::Timer<WebNetscapePluginStream> m_deliverDataTimer;
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/mac/
H A DFindIndicatorWindow.h71 RunLoop::Timer<FindIndicatorWindow> m_startFadeOutTimer;
H A DViewGestureController.h159 RunLoop::Timer<ViewGestureController> m_swipeWatchdogTimer;
166 RunLoop::Timer<ViewGestureController> m_swipeWatchdogAfterFirstVisuallyNonEmptyLayoutTimer;
167 RunLoop::Timer<ViewGestureController> m_swipeActiveLoadMonitoringTimer;
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/
H A DViewGestureGeometryCollector.h68 RunLoop::Timer<ViewGestureGeometryCollector> m_renderTreeSizeNotificationTimer;
H A DDrawingAreaImpl.h129 RunLoop::Timer<DrawingAreaImpl> m_displayTimer;
130 RunLoop::Timer<DrawingAreaImpl> m_exitCompositingTimer;
H A DServicesOverlayController.h35 #include <WebCore/Timer.h>
130 void determineActiveHighlightTimerFired(WebCore::Timer<ServicesOverlayController>&);
163 WebCore::Timer<ServicesOverlayController> m_determineActiveHighlightTimer;
/macosx-10.10.1/Security-57031.1.35/Security/include/security_utilities/
H A Dmachserver.cpp499 // Timer management
501 MachServer::Timer::~Timer()
504 void MachServer::Timer::select()
507 void MachServer::Timer::unselect()
512 Timer *top;
514 if (!(top = static_cast<Timer *>(timers.pop(Time::now()))))
519 StLock<MachServer::Timer,
520 &MachServer::Timer::select, &MachServer::Timer
[all...]
H A Dmachserver.h113 class Timer : private ScheduleQueue<Time::Absolute>::Event { class in class:Security::MachPlusPlus::MachServer
116 Timer(bool longTerm = false) { mLongTerm = longTerm; } function in class:Security::MachPlusPlus::MachServer::Timer
117 virtual ~Timer();
136 virtual void setTimer(Timer *timer, Time::Absolute when);
137 void setTimer(Timer *timer, Time::Interval offset)
140 virtual void clearTimer(Timer *timer);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Dmachserver.cpp499 // Timer management
501 MachServer::Timer::~Timer()
504 void MachServer::Timer::select()
507 void MachServer::Timer::unselect()
512 Timer *top;
514 if (!(top = static_cast<Timer *>(timers.pop(Time::now()))))
519 StLock<MachServer::Timer,
520 &MachServer::Timer::select, &MachServer::Timer
[all...]
H A Dmachserver.h113 class Timer : private ScheduleQueue<Time::Absolute>::Event { class in class:Security::MachPlusPlus::MachServer
116 Timer(bool longTerm = false) { mLongTerm = longTerm; } function in class:Security::MachPlusPlus::MachServer::Timer
117 virtual ~Timer();
136 virtual void setTimer(Timer *timer, Time::Absolute when);
137 void setTimer(Timer *timer, Time::Interval offset)
140 virtual void clearTimer(Timer *timer);
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/CoordinatedGraphics/
H A DCoordinatedDrawingArea.h122 RunLoop::Timer<CoordinatedDrawingArea> m_displayTimer;
123 RunLoop::Timer<CoordinatedDrawingArea> m_exitCompositingTimer;
/macosx-10.10.1/libauto-186/
H A DStatistics.h39 // The Timer template provides a generic timer model. The template parameter can wrap different system timers.
44 template <class TimeDataSource> class Timer { class in namespace:Auto
51 Timer() : _start(0), _accumulated(0) {} function in class:Auto::Timer
69 void add_time(Timer &other) { OSAtomicAdd64(other.microseconds(), &_accumulated); }
109 typedef Timer<UserCPUTimeDataSource> UserCPUTimer;
132 typedef Timer<WallClockTimeDataSource> WallClockTimer;
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/WebPage/mac/
H A DRemoteLayerTreeDrawingArea.h33 #include <WebCore/Timer.h>
115 void layerFlushTimerFired(WebCore::Timer<RemoteLayerTreeDrawingArea>*);
149 WebCore::Timer<RemoteLayerTreeDrawingArea> m_layerFlushTimer;
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/
H A DNetscapePlugin.h308 class Timer { class in class:WebKit::NetscapePlugin
309 WTF_MAKE_NONCOPYABLE(Timer);
314 Timer(NetscapePlugin*, unsigned timerID, unsigned interval, bool repeat, TimerFunc);
315 ~Timer();
323 // This is a weak pointer since Timer objects are destroyed before the NetscapePlugin object itself is destroyed.
331 RunLoop::Timer<Timer> m_timer;
333 typedef HashMap<unsigned, std::unique_ptr<Timer>> TimerMap;
378 RunLoop::Timer<NetscapePlugin> m_nullEventTimer;

Completed in 292 milliseconds

1234