Home
last modified time | relevance | path

Searched refs:Watchdog (Results 1 – 25 of 196) sorted by relevance

12345678

/external/perfetto/src/base/
Dwatchdog_posix.cc42 #error perfetto::base::Watchdog should not be used in Chromium or embedders
66 Watchdog::Watchdog(uint32_t polling_interval_ms) in Watchdog() function in perfetto::base::Watchdog
69 Watchdog::~Watchdog() { in ~Watchdog()
80 Watchdog* Watchdog::GetInstance() { in GetInstance()
81 static Watchdog* watchdog = new Watchdog(kDefaultPollingInterval); in GetInstance()
85 Watchdog::Timer Watchdog::CreateFatalTimer(uint32_t ms) { in CreateFatalTimer()
87 return Watchdog::Timer(0); in CreateFatalTimer()
89 return Watchdog::Timer(ms); in CreateFatalTimer()
92 void Watchdog::Start() { in Start()
103 thread_ = std::thread(&Watchdog::ThreadMain, this); in Start()
[all …]
Dwatchdog_unittest.cc39 class TestWatchdog : public Watchdog {
42 : Watchdog(polling_interval_ms) {} in TestWatchdog()
66 std::map<int, Watchdog::Timer> timers; in TEST()
/external/llvm/include/llvm/Support/
DWatchdog.h26 class Watchdog {
28 Watchdog(unsigned int seconds);
29 ~Watchdog();
32 Watchdog(const Watchdog &other) = delete;
33 Watchdog &operator=(const Watchdog &other) = delete;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DWatchdog.h26 class Watchdog {
28 Watchdog(unsigned int seconds);
29 ~Watchdog();
32 Watchdog(const Watchdog &other) = delete;
33 Watchdog &operator=(const Watchdog &other) = delete;
/external/perfetto/include/perfetto/base/
Dwatchdog_posix.h33 class Watchdog {
43 friend class Watchdog;
51 virtual ~Watchdog();
53 static Watchdog* GetInstance();
77 Watchdog(uint32_t polling_interval_ms);
120 explicit Watchdog(const Watchdog&) = delete;
121 Watchdog& operator=(const Watchdog&) = delete;
Dwatchdog_noop.h25 class Watchdog {
34 static Watchdog* GetInstance() { in GetInstance()
35 static Watchdog* watchdog = new Watchdog(); in GetInstance()
Dtask_runner.h79 Watchdog::Timer handle = in RunTask()
80 base::Watchdog::GetInstance()->CreateFatalTimer(kWatchdogMillis); in RunTask()
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DWatchdog.inc1 //===--- Unix/Watchdog.inc - Unix Watchdog Implementation -------*- C++ -*-===//
10 // This file provides the generic Unix implementation of the Watchdog class.
20 Watchdog::Watchdog(unsigned int seconds) {
26 Watchdog::~Watchdog() {
/external/llvm/lib/Support/Unix/
DWatchdog.inc1 //===--- Unix/Watchdog.inc - Unix Watchdog Implementation -------*- C++ -*-===//
10 // This file provides the generic Unix implementation of the Watchdog class.
20 Watchdog::Watchdog(unsigned int seconds) {
26 Watchdog::~Watchdog() {
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Unix/
DWatchdog.inc1 //===--- Unix/Watchdog.inc - Unix Watchdog Implementation -------*- C++ -*-===//
10 // This file provides the generic Unix implementation of the Watchdog class.
22 Watchdog::Watchdog(unsigned int seconds) {
28 Watchdog::~Watchdog() {
/external/llvm/lib/Support/Windows/
DWatchdog.inc1 //===--- Windows/Watchdog.inc - Windows Watchdog Implementation -*- C++ -*-===//
10 // This file provides the generic Windows implementation of the Watchdog class.
21 Watchdog::Watchdog(unsigned int seconds) {}
22 Watchdog::~Watchdog() {}
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Windows/
DWatchdog.inc1 //===--- Windows/Watchdog.inc - Windows Watchdog Implementation -*- C++ -*-===//
10 // This file provides the generic Windows implementation of the Watchdog class.
21 Watchdog::Watchdog(unsigned int seconds) {}
22 Watchdog::~Watchdog() {}
/external/perfetto/src/traced/probes/
Dprobes.cc51 base::Watchdog* watchdog = base::Watchdog::GetInstance(); in ProbesMain()
Dprobes_producer.h125 std::unordered_map<DataSourceInstanceID, base::Watchdog::Timer> watchdogs_;
/external/perfetto/src/traced/service/
Dservice.cc60 base::Watchdog* watchdog = base::Watchdog::GetInstance(); in ServiceMain()
/external/okhttp/okio/okio/src/main/java/okio/
DAsyncTimeout.java77 new Watchdog().start(); in scheduleTimeout()
277 private static final class Watchdog extends Thread {
278 public Watchdog() {
/external/u-boot/board/renesas/MigoR/
Dlowlevel_init.S49 write16 RWTCSR_A, RWTCSR_D_1 ! 0xA4520004 (Watchdog Control / Status Register)
52 write16 RWTCNT_A, RWTCNT_D ! 0xA4520000 (Watchdog Count Register)
55 write16 RWTCSR_A, RWTCSR_D_2 ! 0xA4520004 (Watchdog Control / Status Register)
/external/u-boot/drivers/watchdog/
DKconfig1 menu "Watchdog Timer Support"
56 bool "Enable Watchdog Timer support for Sandbox"
59 Enable Watchdog Timer support in Sandbox. This is a dummy device that
67 Enable this to support Watchdog Timer on Marvell Armada 37xx SoC.
/external/okhttp/repackaged/okio/okio/src/main/java/com/android/okhttp/okio/
DAsyncTimeout.java79 new Watchdog().start(); in scheduleTimeout()
279 private static final class Watchdog extends Thread {
280 public Watchdog() {
/external/perfetto/src/profiling/memory/
Dmain.cc129 base::Watchdog::GetInstance()->Start(); // crash on exceedingly long tasks in StartChildHeapprofd()
145 base::Watchdog::GetInstance()->Start(); // crash on exceedingly long tasks in StartCentralHeapprofd()
/external/llvm/lib/Support/
DPrettyStackTrace.cpp63 sys::Watchdog W(5); in PrintStack()
DCMakeLists.txt128 Watchdog.cpp
/external/u-boot/doc/
DREADME.watchdog1 Watchdog driver general info
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DPrettyStackTrace.cpp65 sys::Watchdog W(5); in PrintStack()
/external/u-boot/board/bosch/shc/
DREADME107 Watchdog enabled

12345678