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:clientSession_
(Results
1 - 3
of
3
) sorted by relevance
/foundation/communication/bluetooth_service/services/bluetooth/service/src/obex/
H
A
D
obex_mp_client.cpp
46
uint16_t mtu =
clientSession_
->GetMaxPacketLength();
in Put()
49
auto &sendObject =
clientSession_
->CreateSendObject(req, reader, mtu);
in Put()
52
clientSession_
->FreeSendObject();
in Put()
57
clientSession_
->FreeSendObject();
in Put()
80
auto &recvObj =
clientSession_
->CreateReceivedObject(req, writer, isSupportSrm_, srmpCount);
in Get()
84
clientSession_
->FreeReceivedObject();
in Get()
104
if (
clientSession_
->GetSetPathObject() != nullptr && !
clientSession_
->GetSetPathObject()->IsDone()) {
in SetPath()
108
clientSession_
->CreateSetPathObject(paths);
in SetPath()
120
clientSession_
in PutDataAvailable()
[all...]
H
A
D
obex_client.cpp
74
obexClient_.
clientSession_
->SetLastRespCd(resp->GetFieldCode());
in OnTransportDataAvailable()
75
OBEX_LOG_DEBUG("lastOpeId : %02X", obexClient_.
clientSession_
->GetLastOpeId());
in OnTransportDataAvailable()
76
switch (obexClient_.
clientSession_
->GetLastOpeId()) {
in OnTransportDataAvailable()
172
if (serverMaxPktLen > OBEX_MINIMUM_MTU && serverMaxPktLen < obexClient_.
clientSession_
->GetMaxPacketLength()) {
in HandleDataAvailableConnect()
173
obexClient_.
clientSession_
->SetMaxPacketLength(serverMaxPktLen);
in HandleDataAvailableConnect()
179
obexClient_.
clientSession_
->SetConnectId(connectId->GetWord());
in HandleDataAvailableConnect()
210
if (obexClient_.
clientSession_
->GetLastOpeId() == static_cast<uint8_t>(ObexOpeId::CONNECT)) {
in GetObexHeaderFromPacket()
238
clientSession_
= std::make_unique<ObexClientSession>(RawAddress::ConvertToString(config.addr_.addr));
in ObexClient()
239
clientSession_
->SetMaxPacketLength(config.mtu_);
in ObexClient()
240
clientSession_
in ObexClient()
[all...]
H
A
D
obex_client.h
304
std::unique_ptr<ObexClientSession>
clientSession_
= nullptr;
member in OHOS::bluetooth::ObexClient
Completed in 3 milliseconds