HomeSort by relevance Sort by last modified time
    Searched refs:Timer (Results 201 - 225 of 475) sorted by null

1 2 3 4 5 6 7 891011>>

  /device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/
Mtftp6Driver.c 57 if (Service->Timer != NULL) {
58 gBS->CloseEvent (Service->Timer);
112 // Create a internal timer for all instances.
119 &Mtftp6Srv->Timer
140 gBS->CloseEvent (Mtftp6Srv->Timer);
407 // Start the internal timer to track the packet retransmission.
410 Service->Timer,
  /system/core/init/
reboot.cpp 58 using android::base::Timer;
165 static void LogShutdownTime(UmountStat stat, Timer* t) {
267 Timer t;
314 Timer t;
346 Timer t;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Driver.c 247 IpSb->Timer = NULL;
256 // Create various resources. First create the route table, timer
272 &IpSb->Timer
424 if (IpSb->Timer != NULL) {
425 gBS->SetTimer (IpSb->Timer, TimerCancel, 0);
426 gBS->CloseEvent (IpSb->Timer);
428 IpSb->Timer = NULL;
556 // Ready to go: start the receiving and timer.
566 Status = gBS->SetTimer (IpSb->Timer, TimerPeriodic, TICKS_PER_SECOND);
  /device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/
DnsDhcp.c 18 The callback function for the timer event used to get map.
778 EFI_EVENT Timer;
785 Timer = NULL;
856 Status = gBS->CreateEvent (EVT_TIMER, TPL_CALLBACK, NULL, NULL, &Timer);
862 Timer,
872 TimerStatus = gBS->CheckEvent (Timer);
897 if (Timer != NULL) {
898 gBS->CloseEvent (Timer);
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Driver.c 217 if (IpSb->Timer != NULL) {
218 gBS->SetTimer (IpSb->Timer, TimerCancel, 0);
219 gBS->CloseEvent (IpSb->Timer);
221 IpSb->Timer = NULL;
356 IpSb->Timer = NULL;
364 // Create various resources. First create the route table, timer
379 &IpSb->Timer
577 // ready to go: start the receiving and timer
585 // The timer expires every 100 (IP6_TIMER_INTERVAL_IN_MS) milliseconds.
597 // The timer expires every 1000 (IP6_ONE_SECOND_IN_MS) milliseconds.
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/data/
TimerNotificationBuilder.java 38 import com.android.deskclock.timer.ExpiredTimersActivity;
39 import com.android.deskclock.timer.TimerService;
57 public Notification build(Context context, NotificationModel nm, List<Timer> unexpired) {
58 final Timer timer = unexpired.get(0); local
62 final boolean running = timer.isRunning();
65 final long base = getChronometerBase(timer);
73 // Single timer is running.
74 if (TextUtils.isEmpty(timer.getLabel())) {
77 stateText = timer.getLabel()
214 final Timer timer = expired.get(0); local
296 final Timer timer = missedTimers.get(0); local
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Impl.c 607 EFI_EVENT Timer;
655 Status = gBS->CreateEvent (EVT_TIMER, TPL_CALLBACK, NULL, NULL, &Timer);
661 // Start the timer, wait for link local address DAD to finish.
663 Status = gBS->SetTimer (Timer, TimerRelative, GetMappingTimeOut);
665 gBS->CloseEvent (Timer);
670 TimerStatus = gBS->CheckEvent (Timer);
686 gBS->CloseEvent (Timer);
718 the state transfers to Dhcp6Bound and the valid and preferred timer restarts.
719 If fails, the state transfers to Dhcp6Bound, but the timer continues.
722 to Dhcp6Bound and the valid and preferred timer restarts. If it fails, the state
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TrieMapTest.java 28 import android.icu.dev.util.Timer;
47 private static Timer t = new Timer();
59 t.setTimingPeriod(1*Timer.SECONDS);
63 t.setTimingPeriod(seconds*Timer.SECONDS);
468 static abstract class MyLoop extends Timer.Loop {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
TrieMapTest.java 27 import com.ibm.icu.dev.util.Timer;
46 private static Timer t = new Timer();
58 t.setTimingPeriod(1*Timer.SECONDS);
62 t.setTimingPeriod(seconds*Timer.SECONDS);
467 static abstract class MyLoop extends Timer.Loop {
  /prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i 320 class Timer;
321 class Timer$Scheduler;
322 class Timer$TaskQueue;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleConnectionPriorityClientService.java 46 import java.util.Timer;
107 private Timer mConnectionTimer;
220 // Create Timer for Periodic transmission
275 mConnectionTimer = new Timer();
BleConnectionPriorityServerService.java 41 import java.util.Timer;
95 private Timer mTimeoutTimer;
308 // start timeout timer
309 mTimeoutTimer = new Timer(getClass().getName() + "_TimeoutTimer");
  /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/pdfium/xfa/fwl/
cfwl_spinbutton.cpp 343 CFWL_SpinButton::Timer::Timer(CFWL_SpinButton* pToolTip)
346 void CFWL_SpinButton::Timer::Run(CFWL_TimerInfo* pTimerInfo) {
  /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/base/services/core/java/com/android/server/location/
ComprehensiveCountryDetector.java 32 import java.util.Timer;
74 protected Timer mLocationRefreshTimer;
409 Slog.d(TAG, "start periodic location refresh timer. Interval: "
412 mLocationRefreshTimer = new Timer();
  /frameworks/base/services/tests/servicestests/src/com/android/server/location/
LocationBasedCountryDetectorTest.java 32 import java.util.Timer;
146 public Timer getTimer() {
354 Timer timer = detector.getTimer(); local
355 assertTrue(timer == null);
  /frameworks/rs/tests/lldb/tests/
run_test.py 36 from harness.util_timer import Timer
158 '''Start a 'timeout' timer, to catch stalled execution.
160 This function will start a timer that will act as a timeout killing this
168 The instance of the Timer class that was created.
181 timer = Timer(interval, on_timeout)
182 timer.start()
183 atexit.register(Timer.stop, timer)
184 return timer
    [all...]
  /prebuilts/go/darwin-x86/src/time/
sleep_test.go 70 // Yield so that the OS can wake up the timer thread,
85 garbage := make([]*Timer, 1<<17)
150 timers := make([]*Timer, n)
288 timer := AfterFunc(2*Second, func() {
289 t.Fatalf("timer %d was not stopped", i)
292 timer.Stop()
324 return errors.New("resetting unfired timer returned false")
329 return errors.New("timer fired early")
336 return errors.New("reset timer did not fire")
340 return errors.New("resetting expired timer returned true"
    [all...]
  /prebuilts/go/linux-x86/src/time/
sleep_test.go 70 // Yield so that the OS can wake up the timer thread,
85 garbage := make([]*Timer, 1<<17)
150 timers := make([]*Timer, n)
288 timer := AfterFunc(2*Second, func() {
289 t.Fatalf("timer %d was not stopped", i)
292 timer.Stop()
324 return errors.New("resetting unfired timer returned false")
329 return errors.New("timer fired early")
336 return errors.New("reset timer did not fire")
340 return errors.New("resetting expired timer returned true"
    [all...]
  /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/jmdns/src/javax/jmdns/impl/
JmmDNSImpl.java 16 import java.util.Timer;
60 private final Timer _timer;
72 _timer = new Timer("Multihommed mDNS.Timer", true);
566 public void start(Timer timer) {
567 timer.schedule(this, 0, DNSConstants.NETWORK_CHECK_INTERVAL);

Completed in 1000 milliseconds

1 2 3 4 5 6 7 891011>>