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:dlpManger
(Results
1 - 4
of
4
) sorted by relevance
/foundation/ability/ability_runtime/test/fuzztest/connectionstatemanager_fuzzer/
H
A
D
connectionstatemanager_fuzzer.cpp
206
std::shared_ptr<AbilityRecord>
dlpManger
= GetFuzzAbilityRecord();
in DoSomethingInterestingWithMyAPI()
local
207
connectionStateManager->AddDlpManager(
dlpManger
);
in DoSomethingInterestingWithMyAPI()
208
connectionStateManager->RemoveDlpManager(
dlpManger
);
in DoSomethingInterestingWithMyAPI()
209
connectionStateManager->AddDlpAbility(
dlpManger
);
in DoSomethingInterestingWithMyAPI()
210
connectionStateManager->RemoveDlpAbility(
dlpManger
);
in DoSomethingInterestingWithMyAPI()
226
connectionStateManager->HandleDlpAbilityInner(
dlpManger
, boolParam, dlpData);
in DoSomethingInterestingWithMyAPI()
/foundation/ability/ability_runtime/services/abilitymgr/src/
H
A
D
connection_state_manager.cpp
230
void ConnectionStateManager::AddDlpManager(const std::shared_ptr<AbilityRecord> &
dlpManger
)
in AddDlpManager()
argument
232
if (!
dlpManger
) {
in AddDlpManager()
236
auto userId =
dlpManger
->GetOwnerMissionUserId();
in AddDlpManager()
240
dlpItems_[userId] = std::make_shared<DlpStateItem>(
dlpManger
->GetUid(),
dlpManger
->GetPid());
in AddDlpManager()
244
void ConnectionStateManager::RemoveDlpManager(const std::shared_ptr<AbilityRecord> &
dlpManger
)
in RemoveDlpManager()
argument
246
if (!
dlpManger
) {
in RemoveDlpManager()
251
dlpItems_.erase(
dlpManger
->GetOwnerMissionUserId());
in RemoveDlpManager()
/foundation/ability/ability_runtime/services/abilitymgr/include/
H
A
D
connection_state_manager.h
122
* @param
dlpManger
dlp manager record.
124
void AddDlpManager(const std::shared_ptr<AbilityRecord> &
dlpManger
);
129
* @param
dlpManger
dlp manager record.
131
void RemoveDlpManager(const std::shared_ptr<AbilityRecord> &
dlpManger
);
/foundation/ability/ability_runtime/test/unittest/connection_state_manager_test/
H
A
D
connection_state_manager_test.cpp
426
std::shared_ptr<AbilityRecord>
dlpManger
= nullptr;
in HWTEST_F()
local
427
manager_->AddDlpManager(
dlpManger
);
in HWTEST_F()
Completed in 4 milliseconds