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:decisionMaker_
(Results
1 - 4
of
4
) sorted by relevance
/foundation/resourceschedule/background_task_mgr/services/transient_task/src/
H
A
D
decision_maker.cpp
110
lock_guard<mutex> lock(
decisionMaker_
.lock_);
in OnRemoteDied()
111
decisionMaker_
.ResetAppMgrProxy();
in OnRemoteDied()
112
decisionMaker_
.GetAppMgrProxy();
in OnRemoteDied()
118
lock_guard<mutex> lock(
decisionMaker_
.lock_);
in OnForegroundApplicationChanged()
123
auto it =
decisionMaker_
.pkgDelaySuspendInfoMap_.find(key);
in OnForegroundApplicationChanged()
124
if (it !=
decisionMaker_
.pkgDelaySuspendInfoMap_.end()) {
in OnForegroundApplicationChanged()
128
auto itBg =
decisionMaker_
.pkgBgDurationMap_.find(key);
in OnForegroundApplicationChanged()
129
if (itBg !=
decisionMaker_
.pkgBgDurationMap_.end()) {
in OnForegroundApplicationChanged()
130
decisionMaker_
.pkgBgDurationMap_.erase(itBg);
in OnForegroundApplicationChanged()
133
decisionMaker_
in OnForegroundApplicationChanged()
[all...]
H
A
D
bg_transient_task_mgr.cpp
106
decisionMaker_
= make_shared<DecisionMaker>(timerManager_, deviceInfoManeger_);
in InitNecessaryState()
108
decisionMaker_
, runner);
in InitNecessaryState()
117
inputManager_->RegisterEventListener(
decisionMaker_
);
in InitNecessaryState()
209
ret =
decisionMaker_
->Decide(keyInfo, infoEx);
in RequestSuspendDelay()
261
ErrCode ret =
decisionMaker_
->PauseTransientTaskTimeForInner(uid, name);
in PauseTransientTaskTimeForInner()
294
ErrCode ret =
decisionMaker_
->StartTransientTaskTimeForInner(uid, name);
in StartTransientTaskTimeForInner()
393
decisionMaker_
->RemoveRequest(keyInfoMap_[requestId], requestId);
in CancelSuspendDelayLocked()
452
delayTime =
decisionMaker_
->GetRemainingDelayTime(keyInfoMap_[requestId], requestId);
in GetRemainingDelayTime()
498
decisionMaker_
->RemoveRequest(keyInfoIter->second, keyInfoIter->first);
in HandleExpiredCallbackDeath()
750
stream << "\tActualDelayTime: " <<
decisionMaker_
in DumpAllRequestId()
[all...]
/foundation/resourceschedule/background_task_mgr/services/transient_task/include/
H
A
D
decision_maker.h
58
explicit ApplicationStateObserver(DecisionMaker &decisionMaker) :
decisionMaker_
(decisionMaker) {}
in ApplicationStateObserver()
71
DecisionMaker &
decisionMaker_
;
member in OHOS::BackgroundTaskMgr::DecisionMaker::ApplicationStateObserver
77
explicit AppMgrDeathRecipient(DecisionMaker &decisionMaker) :
decisionMaker_
(decisionMaker) {}
in AppMgrDeathRecipient()
84
DecisionMaker &
decisionMaker_
;
member in OHOS::BackgroundTaskMgr::DecisionMaker::AppMgrDeathRecipient
H
A
D
bg_transient_task_mgr.h
112
std::shared_ptr<DecisionMaker>
decisionMaker_
{nullptr};
Completed in 5 milliseconds