/external/perfetto/src/base/ |
D | watchdog_posix.cc | 42 #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 …]
|
D | watchdog_unittest.cc | 39 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/ |
D | Watchdog.h | 26 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/ |
D | Watchdog.h | 26 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/ |
D | watchdog_posix.h | 33 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;
|
D | watchdog_noop.h | 25 class Watchdog { 34 static Watchdog* GetInstance() { in GetInstance() 35 static Watchdog* watchdog = new Watchdog(); in GetInstance()
|
D | task_runner.h | 79 Watchdog::Timer handle = in RunTask() 80 base::Watchdog::GetInstance()->CreateFatalTimer(kWatchdogMillis); in RunTask()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/ |
D | Watchdog.inc | 1 //===--- 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/ |
D | Watchdog.inc | 1 //===--- 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/ |
D | Watchdog.inc | 1 //===--- 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/ |
D | Watchdog.inc | 1 //===--- 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/ |
D | Watchdog.inc | 1 //===--- 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/ |
D | probes.cc | 51 base::Watchdog* watchdog = base::Watchdog::GetInstance(); in ProbesMain()
|
D | probes_producer.h | 125 std::unordered_map<DataSourceInstanceID, base::Watchdog::Timer> watchdogs_;
|
/external/perfetto/src/traced/service/ |
D | service.cc | 60 base::Watchdog* watchdog = base::Watchdog::GetInstance(); in ServiceMain()
|
/external/okhttp/okio/okio/src/main/java/okio/ |
D | AsyncTimeout.java | 77 new Watchdog().start(); in scheduleTimeout() 277 private static final class Watchdog extends Thread { 278 public Watchdog() {
|
/external/u-boot/board/renesas/MigoR/ |
D | lowlevel_init.S | 49 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/ |
D | Kconfig | 1 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/ |
D | AsyncTimeout.java | 79 new Watchdog().start(); in scheduleTimeout() 279 private static final class Watchdog extends Thread { 280 public Watchdog() {
|
/external/perfetto/src/profiling/memory/ |
D | main.cc | 129 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/ |
D | PrettyStackTrace.cpp | 63 sys::Watchdog W(5); in PrintStack()
|
D | CMakeLists.txt | 128 Watchdog.cpp
|
/external/u-boot/doc/ |
D | README.watchdog | 1 Watchdog driver general info
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | PrettyStackTrace.cpp | 65 sys::Watchdog W(5); in PrintStack()
|
/external/u-boot/board/bosch/shc/ |
D | README | 107 Watchdog enabled
|