/developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/ |
MainFragment.java | 59 import java.util.Timer; 75 private Timer mBackgroundTimer; 233 mBackgroundTimer = new Timer();
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
ListUnits.java | 20 import org.unicode.cldr.util.Timer; 55 Timer timer = new Timer(); local 155 System.out.println("#Done: " + count + ", " + timer);
|
/external/opencensus-java/contrib/dropwizard/src/main/java/io/opencensus/contrib/dropwizard/ |
DropWizardMetrics.java | 23 import com.codahale.metrics.Timer; 183 * Returns a {@code Metric} collected from {@link Timer}. 186 * @param timer the timer object to collect 189 private Metric collectTimer(String dropwizardName, Timer timer) { 190 String metricName = DropWizardUtils.generateFullMetricName(dropwizardName, "timer"); 191 String metricDescription = DropWizardUtils.generateFullMetricDescription(dropwizardName, timer); 193 metricName, metricDescription, timer.getSnapshot(), timer.getCount()) [all...] |
/external/python/cpython3/Lib/test/ |
test_sched.py | 12 class Timer: 63 timer = Timer() 64 scheduler = sched.scheduler(timer.time, timer.sleep) 69 timer.advance(1) 74 timer.advance(2) 78 timer.advance(1) 81 timer.advance(1) 84 timer.advance(1000 [all...] |
/external/swiftshader/src/D3D9/ |
Direct3DSwapChain9.cpp | 19 #include "Timer.hpp" 93 static int64_t frame = sw::Timer::ticks(); 95 int64_t frameTime = sw::Timer::ticks() - frame; 96 frame = sw::Timer::ticks();
|
/frameworks/av/media/libstagefright/ |
MediaClock.cpp | 33 MediaClock::Timer::Timer(const sp<AMessage> ¬ify, int64_t mediaTimeUs, int64_t adjustRealUs) 265 std::multimap<int64_t, Timer> notifyList;
|
/device/linaro/bootloader/edk2/EmulatorPkg/Library/DxeTimerLib/ |
DxeTimerLib.c | 2 A non-functional instance of the Timer Library.
23 #include <Protocol/Timer.h>
181 Register for the Timer AP protocol.
|
/device/linaro/bootloader/edk2/EmulatorPkg/TimerDxe/ |
Timer.c | 2 Emu Emulation Timer Architectural Protocol Driver as defined in DXE CIS
4 This Timer module uses an Emu Thread to simulate the timer-tick driven
5 timer service. In the future, the Thread creation should possibly be
22 #include <Protocol/Timer.h>
24 #include "Timer.h"
39 // The Timer Architectural Protocol that this driver produces
49 // The notification function to call on every timer interrupt
54 // The current period of the timer interrupt
96 the timer interrupt fires. It also passes the amount of time since the last [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/ |
Dhcp4Impl.h | 124 // Timer event and various timer
126 EFI_EVENT Timer;
128 UINT32 PacketToLive; // Retransmission timer for our packets
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Mtftp4Dxe/ |
Mtftp4Impl.h | 75 EFI_EVENT Timer; ///< Ticking timer for all the MTFTP clients
|
/external/harfbuzz_ng/test/fuzzing/ |
run-shape-fuzzer-tests.py | 36 timer = threading.Timer (2, timeout, [p, is_killed]) 39 timer.start() 45 timer.cancel()
|
/external/perfetto/src/base/ |
watchdog_unittest.cc | 54 // Create a timer for 20 ms and don't release wihin the time. 66 std::map<int, Watchdog::Timer> timers; 112 // The test below tests that the fatal timer signal is sent to the thread that 113 // created the timer and not a random one. 149 usleep(200 * 1000); // This will be interrupted by the fatal timer.
|
/external/perfetto/src/traced/probes/ |
probes_producer.h | 125 std::unordered_map<DataSourceInstanceID, base::Watchdog::Timer> watchdogs_;
|
/external/skia/tools/skpbench/ |
skpbench.py | 14 from threading import Thread, Timer 244 Timer(1, lambda: self._queue.put(Message(Message.POLL_HARDWARE)))
|
/external/skqp/tools/skpbench/ |
skpbench.py | 14 from threading import Thread, Timer 244 Timer(1, lambda: self._queue.put(Message(Message.POLL_HARDWARE)))
|
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/ |
DxeMain.inf | 67 Event/Timer.c
199 # EVENT_TYPE_RELATIVE_TIMER ## PRODUCES # DxeCore signals timer event.
200 # EVENT_TYPE_PERIODIC_TIMER ## PRODUCES # DxeCore signals timer event.
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/ |
Tcp4Func.h | 682 Heart beat timer handler, queues the DPC at TPL_CALLBACK.
684 @param Event Timer event signaled, ignored.
685 @param Context Context of the timer event, ignored.
696 Enable a TCP timer.
699 @param Timer The index of the timer to be enabled.
700 @param TimeOut The timeout value of this timer.
706 IN UINT16 Timer,
711 Clear one TCP timer.
714 @param Timer The index of the timer to be cleared. [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/ |
TcpFunc.h | 524 Heart beat timer handler, queues the DPC at TPL_CALLBACK.
526 @param[in] Event Timer event signaled, ignored.
527 @param[in] Context Context of the timer event, ignored.
538 Enable a TCP timer.
541 @param[in] Timer The index of the timer to be enabled.
542 @param[in] TimeOut The timeout value of this timer.
548 IN UINT16 Timer,
553 Clear one TCP timer.
556 @param[in] Timer The index of the timer to be cleared. [all...] |
/device/linaro/bootloader/edk2/PcAtChipsetPkg/ |
PcAtChipsetPkg.dsc | 51 PcAtChipsetPkg/8254TimerDxe/8254Timer.inf
|
/external/autotest/client/cros/video/ |
histogram_verifier.py | 187 timer = utils.Timer(timeout) 190 while timer.sleep(sleep_interval): 215 timer = utils.Timer(timeout) 216 while timer.sleep(sleep_interval):
|
/external/clang/lib/ASTMatchers/ |
ASTMatchFinder.cpp | 25 #include "llvm/Support/Timer.h" 308 TimeBucketRegion Timer; 311 Timer.setBucket(&TimeByBucket[MC->getID()]); 318 TimeBucketRegion Timer; 321 Timer.setBucket(&TimeByBucket[MC->getID()]); 523 TimeBucketRegion Timer; 526 Timer.setBucket(&TimeByBucket[MP.second->getID()]); 545 TimeBucketRegion Timer; 550 Timer.setBucket(&TimeByBucket[MP.second->getID()]); [all...] |
/external/llvm/include/llvm/IR/ |
LegacyPassManagers.h | 99 class Timer; 504 Timer *getPassTimer(Pass *);
|
/external/skia/tests/ |
Test.h | 126 /** Timer provides wall-clock duration since its creation. */ 127 class Timer { 129 /** Starts the timer. */ 130 Timer();
|
/external/skqp/tests/ |
Test.h | 138 /** Timer provides wall-clock duration since its creation. */ 139 class Timer { 141 /** Starts the timer. */ 142 Timer();
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
PassManagers.h | 98 class Timer; 457 Timer *getPassTimer(Pass *);
|