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:pnInfo
(Results
1 - 3
of
3
) sorted by relevance
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/rfcomm/
H
A
D
rfcomm_channel_fsm.c
133
RfcommSendPnInfo
pnInfo
;
in RfcommOpenChannel()
local
134
pnInfo
.cl = cl;
in RfcommOpenChannel()
135
pnInfo
.credits = credits;
in RfcommOpenChannel()
136
pnInfo
.mtu = channel->localMtu;
in RfcommOpenChannel()
137
pnInfo
.priority = 0;
in RfcommOpenChannel()
138
ret = RfcommSendUihPn(session, channel->dlci, true, &
pnInfo
);
in RfcommOpenChannel()
279
RfcommSendPnInfo
pnInfo
;
in RfcommRecvUa()
local
280
pnInfo
.cl = cl;
in RfcommRecvUa()
281
pnInfo
.credits = credits;
in RfcommRecvUa()
282
pnInfo
in RfcommRecvUa()
426
RfcommSendPnInfo
pnInfo
;
RfcommRecvPnReq()
local
[all...]
H
A
D
rfcomm_frames.c
229
* @param
pnInfo
The PN information to send to peer.
232
int RfcommSendUihPn(const RfcommSessionInfo *session, uint8_t dlci, bool isCmd, const RfcommSendPnInfo *
pnInfo
)
in RfcommSendUihPn()
argument
253
header[RFCOMM_PN_CL] = 0 | (
pnInfo
->cl << RFCOMM_PN_SHIFT_CL);
in RfcommSendUihPn()
255
header[RFCOMM_PN_PRIORITY] =
pnInfo
->priority;
in RfcommSendUihPn()
259
header[RFCOMM_PN_MTU1] =
pnInfo
->mtu & 0xFF;
in RfcommSendUihPn()
261
header[RFCOMM_PN_MTU2] = (
pnInfo
->mtu & 0xFF00) >> RFCOMM_PN_SHIFT_MTU;
in RfcommSendUihPn()
265
header[RFCOMM_PN_CREDIT] =
pnInfo
->credits;
in RfcommSendUihPn()
H
A
D
rfcomm_defs.h
614
int RfcommSendUihPn(const RfcommSessionInfo *session, uint8_t dlci, bool isCmd, const RfcommSendPnInfo *
pnInfo
);
Completed in 4 milliseconds