/external/perfetto/src/base/ |
D | watchdog_posix.cc | 82 Watchdog::Watchdog(uint32_t polling_interval_ms) in Watchdog() function in perfetto::base::Watchdog 85 Watchdog::~Watchdog() { in ~Watchdog() 96 Watchdog* Watchdog::GetInstance() { in GetInstance() 97 static Watchdog* watchdog = new Watchdog(kDefaultPollingInterval); in GetInstance() 101 Watchdog::Timer Watchdog::CreateFatalTimer(uint32_t ms) { in CreateFatalTimer() 103 return Watchdog::Timer(0); in CreateFatalTimer() 105 return Watchdog::Timer(ms); in CreateFatalTimer() 108 void Watchdog::Start() { in Start() 119 thread_ = std::thread(&Watchdog::ThreadMain, this); in Start() 124 void Watchdog::SetMemoryLimit(uint64_t bytes, uint32_t window_ms) { in SetMemoryLimit() [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/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/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/ext/base/ |
D | watchdog_posix.h | 41 class Watchdog { 51 friend class Watchdog; 59 virtual ~Watchdog(); 61 static Watchdog* GetInstance(); 85 Watchdog(uint32_t polling_interval_ms); 128 explicit Watchdog(const Watchdog&) = delete; 129 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 | watchdog.h | 56 Watchdog::Timer handle = in RunTaskWithWatchdogGuard() 57 base::Watchdog::GetInstance()->CreateFatalTimer(kWatchdogMillis); in RunTaskWithWatchdogGuard()
|
/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-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/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/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/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/u-boot/drivers/watchdog/ |
D | Kconfig | 1 menu "Watchdog Timer Support" 12 int "Watchdog timeout in msec" 18 Watchdog timeout in msec 30 bool "Enable Watchdog Timer support for IMX and LSCH2 of NXP" 63 Enable this to support Watchdog Timer on Marvell Armada 37xx SoC. 141 bool "Enable Watchdog Timer support for Sandbox" 144 Enable Watchdog Timer support in Sandbox. This is a dummy device that
|
/external/perfetto/src/traced/probes/ |
D | probes.cc | 68 base::Watchdog* watchdog = base::Watchdog::GetInstance(); in ProbesMain()
|
D | probes_producer.h | 134 std::unordered_map<DataSourceInstanceID, base::Watchdog::Timer> watchdogs_;
|
/external/perfetto/src/traced/service/ |
D | service.cc | 91 base::Watchdog* watchdog = base::Watchdog::GetInstance(); in ServiceMain()
|
/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/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/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 | 142 base::Watchdog::GetInstance()->Start(); // crash on exceedingly long tasks in StartChildHeapprofd() 158 base::Watchdog::GetInstance()->Start(); // crash on exceedingly long tasks in StartCentralHeapprofd()
|
/external/u-boot/arch/arm/cpu/armv8/fsl-layerscape/doc/ |
D | README.lsch2 | 12 Watchdog support Overview
|
/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()
|