Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:watchdog_
(Results
1 - 10
of
10
) sorted by relevance
/foundation/ability/ability_runtime/test/unittest/dfr_test/watchdog_test/
H
A
D
watchdog_test.cpp
43
std::shared_ptr<Watchdog>
watchdog_
= nullptr;
member in OHOS::AppExecFwk::WatchdogTest
61
watchdog_
= std::make_shared<Watchdog>();
in SetUp()
62
watchdog_
->Init(mockHandler_);
in SetUp()
67
watchdog_
->Stop();
in TearDown()
78
watchdog_
->SetAppMainThreadState(false);
in HWTEST_F()
79
bool ret =
watchdog_
->IsReportEvent();
in HWTEST_F()
91
watchdog_
->SetAppMainThreadState(true);
in HWTEST_F()
92
watchdog_
->AllowReportEvent();
in HWTEST_F()
93
bool ret =
watchdog_
->IsReportEvent();
in HWTEST_F()
106
watchdog_
in HWTEST_F()
[all...]
/foundation/resourceschedule/work_scheduler/services/test/src/
H
A
D
watchdog_test.cpp
34
static std::shared_ptr<Watchdog>
watchdog_
;
member in OHOS::WorkScheduler::WatchdogTest
37
std::shared_ptr<Watchdog> WatchdogTest::
watchdog_
= nullptr;
member in OHOS::WorkScheduler::WatchdogTest
43
watchdog_
= std::make_shared<Watchdog>(workSchedulerService->GetWorkPolicyManager(), runner);
in SetUpTestCase()
54
bool result =
watchdog_
->AddWatchdog(1, 1);
in HWTEST_F()
66
bool result =
watchdog_
->AddWatchdog(1, 1);
in HWTEST_F()
68
watchdog_
->RemoveWatchdog(1);
in HWTEST_F()
81
watchdog_
->ProcessEvent(event);
in HWTEST_F()
94
watchdog_
->ProcessEvent(event);
in HWTEST_F()
107
watchdog_
->service_ = nullptr;
in HWTEST_F()
108
watchdog_
in HWTEST_F()
[all...]
H
A
D
work_policy_manager_test.cpp
271
std::shared_ptr<Watchdog>
watchdog_
=
in HWTEST_F()
local
273
workPolicyManager_->
watchdog_
=
watchdog_
;
in HWTEST_F()
359
std::shared_ptr<Watchdog>
watchdog_
=
in HWTEST_F()
local
361
workPolicyManager_->
watchdog_
=
watchdog_
;
in HWTEST_F()
/foundation/ability/ability_runtime/frameworks/native/appkit/app/
H
A
D
main_thread.cpp
234
if (
watchdog_
!= nullptr && !
watchdog_
->IsStopWatchdog()) {
in ~MainThread()
235
watchdog_
->Stop();
in ~MainThread()
236
watchdog_
= nullptr;
in ~MainThread()
430
auto tmpWatchdog =
watchdog_
;
in ScheduleForegroundApplication()
461
auto tmpWatchdog =
watchdog_
;
in ScheduleBackgroundApplication()
719
auto tmpWatchdog =
watchdog_
;
in ScheduleLaunchAbility()
869
if (
watchdog_
!= nullptr && !
watchdog_
->IsStopWatchdog()) {
in HandleTerminateApplicationLocal()
870
watchdog_
in HandleTerminateApplicationLocal()
[all...]
/foundation/resourceschedule/work_scheduler/services/native/src/
H
A
D
work_policy_manager.cpp
79
watchdog_
= std::make_shared<Watchdog>(wss_.lock()->GetWorkPolicyManager(), runner);
in Init()
462
watchdog_
->AddWatchdog(watchId, watchdogTime_);
in AddWatchdogForWork()
746
watchdog_
->RemoveWatchdog(it->first);
in PauseRunningWorks()
771
watchdog_
->AddWatchdog(it->first, watchdogTime);
in ResumePausedWorks()
794
watchdog_
->RemoveWatchdog(it->first);
in RemoveWatchDog()
/foundation/resourceschedule/background_task_mgr/services/transient_task/src/
H
A
D
bg_transient_task_mgr.cpp
107
watchdog_
= make_shared<Watchdog>(DelayedSingleton<BackgroundTaskMgrService>::GetInstance().get(),
in InitNecessaryState()
392
watchdog_
->RemoveWatchdog(requestId);
in CancelSuspendDelayLocked()
488
watchdog_
->RemoveWatchdog(callbackIter->first);
in HandleExpiredCallbackDeath()
541
watchdog_
->AddWatchdog(requestId, keyInfoIter->second, WATCHDOG_DELAY_TIME);
in HandleRequestExpired()
/foundation/resourceschedule/work_scheduler/services/native/include/
H
A
D
work_policy_manager.h
311
std::shared_ptr<Watchdog>
watchdog_
;
member in OHOS::WorkScheduler::WorkPolicyManager
/foundation/resourceschedule/background_task_mgr/services/transient_task/include/
H
A
D
bg_transient_task_mgr.h
109
std::shared_ptr<Watchdog>
watchdog_
{nullptr};
/foundation/ability/ability_runtime/interfaces/kits/native/appkit/app/
H
A
D
main_thread.h
655
std::shared_ptr<Watchdog>
watchdog_
= nullptr;
member in OHOS::AppExecFwk::MainThread
/foundation/ability/ability_runtime/test/unittest/appkit/main_thread_test/
H
A
D
main_thread_test.cpp
755
mainThread_->
watchdog_
= nullptr;
in HWTEST_F()
1200
mainThread_->
watchdog_
= nullptr;
in HWTEST_F()
2011
mainThread_->
watchdog_
= std::make_shared<Watchdog>();
in HWTEST_F()
2012
EXPECT_TRUE(mainThread_->
watchdog_
!= nullptr);
in HWTEST_F()
Completed in 15 milliseconds