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:sessions_
(Results
1 - 9
of
9
) sorted by relevance
/base/msdp/device_status/intention/ipc/socket/src/
H
A
D
socket_session_manager.cpp
59
std::for_each(
sessions_
.cbegin(),
sessions_
.cend(), [this](const auto &item) {
in Disable()
63
sessions_
.clear();
in Disable()
141
auto iter = std::find_if(
sessions_
.cbegin(),
sessions_
.cend(),
in FindSessionByPid()
145
return (iter !=
sessions_
.cend() ? iter->second : nullptr);
in FindSessionByPid()
208
if (auto iter =
sessions_
.find(fd); iter !=
sessions_
.end()) {
in ReleaseSession()
210
sessions_
.erase(iter);
in ReleaseSession()
224
auto iter = std::find_if(
sessions_
in DeleteCollaborationServiceByName()
[all...]
/base/update/updateservice/frameworks/js/napi/update/src/
H
A
D
session_manager.cpp
47
sessions_
.insert(make_pair(session->GetSessionId(), session));
in AddSession()
53
sessions_
.erase(sessionId);
in RemoveSession()
60
if (
sessions_
.empty()) {
in GetFirstSessionId()
63
sessionId =
sessions_
.begin()->second->GetSessionId();
in GetFirstSessionId()
72
auto iter =
sessions_
.find(sessionId);
in GetNextSessionId()
73
if (iter ==
sessions_
.end()) {
in GetNextSessionId()
77
if (iter ==
sessions_
.end()) {
in GetNextSessionId()
95
auto iter =
sessions_
.find(currSessId);
in ProcessUnsubscribe()
96
if (iter ==
sessions_
.end()) {
in ProcessUnsubscribe()
103
iter =
sessions_
in ProcessUnsubscribe()
[all...]
/base/msdp/device_status/intention/adapters/dsoftbus_adapter/src/
H
A
D
dsoftbus_adapter_impl.cpp
168
if (auto iter =
sessions_
.find(networkId); iter !=
sessions_
.end()) {
in CloseSession()
170
sessions_
.erase(iter);
in CloseSession()
186
auto iter =
sessions_
.find(networkId);
in FindConnection()
187
return (iter !=
sessions_
.end() ? iter->second.socket_ : -1);
in FindConnection()
237
if (
sessions_
.empty()) {
in BroadcastPacket()
250
for (const auto &elem :
sessions_
) {
in BroadcastPacket()
268
auto iter =
sessions_
.find(networkId);
in HasSessionExisted()
269
return (iter !=
sessions_
.end() && iter->second.socket_ != INVALID_SOCKET);
in HasSessionExisted()
293
if (auto iter =
sessions_
in OnBind()
[all...]
/base/update/updateservice/frameworks/js/napi/update/include/
H
A
D
update_client.h
74
auto iter =
sessions_
.find(sessId);
in GetUpdateSession()
75
if (iter !=
sessions_
.end()) {
in GetUpdateSession()
H
A
D
session_manager.h
55
std::map<uint32_t, std::shared_ptr<BaseSession>>
sessions_
;
member in OHOS::UpdateEngine::SessionManager
/base/msdp/device_status/intention/ipc/socket/include/
H
A
D
socket_session_manager.h
80
std::map<int32_t, std::shared_ptr<SocketSession>>
sessions_
;
member in OHOS::Msdp::DeviceStatus::final
/base/msdp/device_status/intention/adapters/dsoftbus_adapter/include/
H
A
D
dsoftbus_adapter_impl.h
120
std::map<std::string, Session>
sessions_
;
member in OHOS::Msdp::DeviceStatus::final
/base/msdp/device_status/test/unittest/intention/ipc/src/
H
A
D
socket_session_test.cpp
594
g_socketSessionManager->
sessions_
.emplace(i, nullptr);
in HWTEST_F()
598
g_socketSessionManager->
sessions_
.clear();
in HWTEST_F()
/base/msdp/device_status/test/unittest/intention/cooperate/src/
H
A
D
cooperate_plugin_test.cpp
353
g_socketSessionMgr.
sessions_
.clear();
in HWTEST_F()
Completed in 9 milliseconds