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:networkIdMap_
(Results
1 - 7
of
7
) sorted by relevance
/foundation/filemanagement/dfs_service/services/cloudsyncservice/src/transport/softbus/
H
A
D
softbus_adapter.cpp
320
auto iter =
networkIdMap_
.find(sessionId);
in GetPeerNetworkId()
321
if (iter !=
networkIdMap_
.end()) {
in GetPeerNetworkId()
371
auto networkIdMap =
networkIdMap_
.find(sessionId);
in AcceptSesion()
372
if (networkIdMap ==
networkIdMap_
.end()) {
in AcceptSesion()
373
networkIdMap_
.insert({sessionId, networkId});
in AcceptSesion()
390
auto networkIdMap =
networkIdMap_
.find(sessionId);
in RemoveSesion()
391
if (networkIdMap !=
networkIdMap_
.end()) {
in RemoveSesion()
392
networkIdMap_
.erase(networkIdMap);
in RemoveSesion()
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/network/softbus/
H
A
D
softbus_handler.cpp
47
std::map<int32_t, std::string> SoftBusHandler::
networkIdMap_
;
member in OHOS::Storage::DistributedFile::SoftBusHandler
54
networkIdMap_
.insert(std::make_pair(sessionId, info.networkId));
in OnSinkSessionOpened()
191
networkIdMap_
.insert(std::make_pair(socketId, peerDevId));
in OpenSession()
337
auto it =
networkIdMap_
.find(socketId);
in RemoveNetworkId()
338
if (it ==
networkIdMap_
.end()) {
in RemoveNetworkId()
344
networkIdMap_
.erase(it->first);
in RemoveNetworkId()
355
for (auto item :
networkIdMap_
) {
in GetsocketIdFromPeerNetworkId()
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/device/
H
A
D
device_manager_agent.cpp
444
networkIdMap_
[tokenId].insert(networkId);
in AddNetworkId()
451
networkIdMap_
.erase(tokenId);
in RemoveNetworkId()
457
auto it =
networkIdMap_
.find(tokenId);
in RemoveNetworkIdByOne()
458
if (it !=
networkIdMap_
.end()) {
in RemoveNetworkIdByOne()
461
networkIdMap_
.erase(it);
in RemoveNetworkIdByOne()
475
for (auto it =
networkIdMap_
.begin(); it !=
networkIdMap_
.end();) {
in RemoveNetworkIdForAllToken()
478
it =
networkIdMap_
.erase(it);
in RemoveNetworkIdForAllToken()
490
networkIdMap_
.clear();
in ClearNetworkId()
496
return
networkIdMap_
[tokenI
in GetNetworkIds()
[all...]
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/include/network/softbus/
H
A
D
softbus_handler.h
73
static std::map<int32_t, std::string>
networkIdMap_
;
member in OHOS::Storage::DistributedFile::SoftBusHandler
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/test/unittest/device/
H
A
D
device_manager_agent_sup_test.cpp
224
auto it = testPtr->
networkIdMap_
.find(100);
in HWTEST_F()
225
if (it != testPtr->
networkIdMap_
.end()) {
in HWTEST_F()
276
EXPECT_EQ(testPtr->
networkIdMap_
.size(), 0);
in HWTEST_F()
/foundation/filemanagement/dfs_service/services/cloudsyncservice/include/transport/softbus/
H
A
D
softbus_adapter.h
78
std::unordered_map<int32_t, std::string>
networkIdMap_
;
member in OHOS::FileManagement::CloudSync::SoftbusAdapter
/foundation/filemanagement/dfs_service/services/distributedfiledaemon/include/device/
H
A
D
device_manager_agent.h
140
std::unordered_map<uint32_t, std::unordered_set<std::string>>
networkIdMap_
;
member in OHOS::Storage::DistributedFile::final
Completed in 4 milliseconds