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:contexts_
(Results
1 - 5
of
5
) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/modules/
H
A
D
jsi_context_module.cpp
26
thread_local std::unordered_map<int32_t, std::shared_ptr<JsValue>> JsiContextModule::
contexts_
;
member in OHOS::Ace::Framework::JsiContextModule
70
auto it =
contexts_
.find(currentInstance);
in GetContext()
71
if (it !=
contexts_
.end()) {
in GetContext()
80
it =
contexts_
.find(currentInstance);
in GetContext()
81
if (it !=
contexts_
.end()) {
in GetContext()
101
if (
contexts_
.find(key) !=
contexts_
.end()) {
in AddContext()
105
contexts_
.emplace(key, value);
in AddContext()
110
auto it =
contexts_
.find(key);
in RemoveContext()
111
if (it !=
contexts_
in RemoveContext()
[all...]
H
A
D
jsi_context_module.h
45
static thread_local std::unordered_map<int32_t, std::shared_ptr<JsValue>>
contexts_
;
member in OHOS::Ace::Framework::JsiContextModule
/foundation/CastEngine/castengine_wifi_display/services/context/
H
A
D
context_manager.cpp
32
contexts_
.clear();
in ~ContextManager()
163
for (auto &item :
contexts_
) {
in CheckAgentSize()
173
for (auto &item :
contexts_
) {
in CheckAgentSize()
190
if (
contexts_
.size() >= maxContext_) {
in HandleContextCreate()
196
contexts_
.emplace(context->GetId(), context);
in HandleContextCreate()
197
SHARING_LOGI("contextId: %{public}d contextSize: %{public}zu.", context->GetId(),
contexts_
.size());
in HandleContextCreate()
236
auto itr =
contexts_
.find(contextId);
in GetContextById()
237
if (itr !=
contexts_
.end()) {
in GetContextById()
250
auto itr =
contexts_
.find(contextId);
in DestroyContext()
251
if (itr !=
contexts_
in DestroyContext()
[all...]
H
A
D
context_manager.h
68
std::unordered_map<int32_t, Context::Ptr>
contexts_
;
member in OHOS::Sharing::ContextManager
/foundation/CastEngine/castengine_wifi_display/tests/unittest/context/
H
A
D
context_unit_test.cpp
937
ContextManager::GetInstance().
contexts_
= {};
in HWTEST_F()
Completed in 3 milliseconds