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:clientMap
(Results
1 - 3
of
3
) sorted by relevance
/foundation/communication/bluetooth/frameworks/js/napi/src/socket/
H
A
D
napi_bluetooth_spp_client.cpp
26
std::map<int, std::shared_ptr<NapiSppClient>> NapiSppClient::
clientMap
;
member in OHOS::Bluetooth::NapiSppClient
146
clientMap
.insert(std::make_pair(client->id_, client));
in SppConnect()
205
if (
clientMap
[id]) {
in SppCloseClientSocket()
206
client =
clientMap
[id];
in SppCloseClientSocket()
216
clientMap
.erase(id);
in SppCloseClientSocket()
246
NAPI_BT_ASSERT_RETURN_FALSE(env,
clientMap
[id] > 0, BT_ERR_INTERNAL_ERROR);
in SppWrite()
247
std::shared_ptr<OutputStream> outputStream =
clientMap
[id]->client_->GetOutputStream();
in SppWrite()
331
std::shared_ptr<NapiSppClient> client = NapiSppClient::
clientMap
[id];
in CheckSppClientOn()
369
std::shared_ptr<NapiSppClient> client = NapiSppClient::
clientMap
[id];
in CheckSppClientOff()
390
auto client =
clientMap
[i
in SppRead()
[all...]
H
A
D
napi_bluetooth_spp_server.cpp
271
NapiSppClient::
clientMap
.insert(std::make_pair(client->id_, client));
in SppAccept()
325
if (NapiSppClient::
clientMap
[id] != nullptr) {
in SppCloseServerSocket()
326
client = NapiSppClient::
clientMap
[id];
in SppCloseServerSocket()
329
NapiSppClient::
clientMap
.erase(id);
in SppCloseServerSocket()
332
HILOGE("no such key in
clientMap
.");
in SppCloseServerSocket()
/foundation/communication/bluetooth/frameworks/js/napi/include/
H
A
D
napi_bluetooth_spp_client.h
72
static std::map<int, std::shared_ptr<NapiSppClient>>
clientMap
;
member
Completed in 2 milliseconds