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:GetFieldCode
(Results
1 - 8
of
8
) sorted by relevance
/foundation/communication/bluetooth_service/services/bluetooth/service/src/obex/
H
A
D
obex_mp_client.cpp
33
if (!CheckBeforeRequest(req.
GetFieldCode
())) {
in Put()
36
if (req.
GetFieldCode
() != static_cast<uint8_t>(ObexOpeId::PUT) &&
in Put()
37
req.
GetFieldCode
() != static_cast<uint8_t>(ObexOpeId::PUT_FINAL)) {
in Put()
72
if (!CheckBeforeRequest(req.
GetFieldCode
())) {
in Get()
75
if (req.
GetFieldCode
() != static_cast<uint8_t>(ObexOpeId::GET) &&
in Get()
76
req.
GetFieldCode
() != static_cast<uint8_t>(ObexOpeId::GET_FINAL)) {
in Get()
134
if (sendObject != nullptr && resp.
GetFieldCode
() == static_cast<uint8_t>(ObexRspCode::CONTINUE)) {
in HandlePutData()
235
if (recvObj != nullptr && resp.
GetFieldCode
() == static_cast<uint8_t>(ObexRspCode::CONTINUE)) {
in GetDataAvailable()
240
if (recvObj != nullptr && resp.
GetFieldCode
() == static_cast<uint8_t>(ObexRspCode::SUCCESS)) {
in GetDataAvailable()
246
OBEX_LOG_DEBUG("GetDataAvailable: recvObj != null, Received Error Response! 0x%02X", resp.
GetFieldCode
());
in GetDataAvailable()
[all...]
H
A
D
obex_client.cpp
74
obexClient_.clientSession_->SetLastRespCd(resp->
GetFieldCode
());
in OnTransportDataAvailable()
115
if (resp.
GetFieldCode
() == static_cast<uint8_t>(ObexRspCode::CONTINUE)) {
in HandleDataAvailableAbort()
125
if (resp.
GetFieldCode
() == static_cast<uint8_t>(ObexRspCode::SUCCESS)) {
in HandleDataAvailableSession()
167
if (resp.
GetFieldCode
() == static_cast<uint8_t>(ObexRspCode::SUCCESS)) {
in HandleDataAvailableConnect()
251
if (req.
GetFieldCode
() == static_cast<uint8_t>(ObexOpeId::SESSION)) {
in SendRequest()
266
if (!CheckBeforeRequest(req.
GetFieldCode
())) {
in SendRequest()
282
if ((req.
GetFieldCode
() == static_cast<uint8_t>(ObexOpeId::PUT)) &&
in SendRequest()
294
OBEX_LOG_DEBUG("Client Set lastOpeId: 0x%02X", req.
GetFieldCode
());
in SendRequest()
296
clientSession_->SetLastOpeId(req.
GetFieldCode
());
in SendRequest()
420
if (!CheckBeforeRequest(req.
GetFieldCode
())) {
in Put()
[all...]
H
A
D
obex_mp_server.cpp
56
if (req.
GetFieldCode
() == static_cast<uint8_t>(ObexOpeId::PUT)) {
in HandlePutRequest()
163
sendObject->SetStartBodyResp(req.
GetFieldCode
() == static_cast<uint8_t>(ObexOpeId::GET_FINAL));
in HandleGetRequest()
165
if (req.
GetFieldCode
() != static_cast<uint8_t>(ObexOpeId::GET_FINAL)) {
in HandleGetRequest()
192
if (nextReqHdr->
GetFieldCode
() != static_cast<uint8_t>(ObexRspCode::CONTINUE)) {
in HandleGetRequest()
H
A
D
obex_session.cpp
83
if (resp.
GetFieldCode
() != static_cast<uint8_t>(ObexRspCode::SUCCESS) &&
in SendGetResponse()
84
resp.
GetFieldCode
() != static_cast<uint8_t>(ObexRspCode::CONTINUE)) {
in SendGetResponse()
95
sendObject_->SetStartBodyResp(req.
GetFieldCode
() == static_cast<uint8_t>(ObexOpeId::GET_FINAL));
in SendGetResponse()
107
if (resp2->
GetFieldCode
() != static_cast<uint8_t>(ObexRspCode::CONTINUE)) {
in SendGetResponse()
146
if (nextReqHdr->
GetFieldCode
() == static_cast<uint8_t>(ObexRspCode::CONTINUE)) {
in ProcessSendSrmResponse()
149
} else if (nextReqHdr->
GetFieldCode
() == static_cast<uint8_t>(ObexRspCode::SUCCESS)) {
in ProcessSendSrmResponse()
155
OBEX_LOG_ERROR("ProcessSendSrmResponse: SRM MODE END WITH RESPCODE 0x%02X", nextReqHdr->
GetFieldCode
());
in ProcessSendSrmResponse()
H
A
D
obex_utils.cpp
182
OBEX_LOG_INFO("Code:0x%02X", header.
GetFieldCode
());
in ObexHeaderDebug()
H
A
D
obex_server.cpp
235
uint8_t code = req->
GetFieldCode
();
in OnTransportDataAvailable()
H
A
D
obex_headers.cpp
238
code_ = header.
GetFieldCode
();
in ObexHeader()
326
uint8_t ObexHeader::
GetFieldCode
() const
in GetFieldCode()
function in OHOS::bluetooth::ObexHeader
H
A
D
obex_headers.h
414
uint8_t
GetFieldCode
() const;
Completed in 10 milliseconds