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:pairedAddr
(Results
1 - 10
of
10
) sorted by relevance
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/btm/
H
A
D
btm_le_sec.h
41
int BTM_UpdateCurrentRemoteAddress(const BtAddr *
pairedAddr
, const BtAddr *currentAddr);
42
int BTM_GetCurrentRemoteAddress(const BtAddr *
pairedAddr
, BtAddr *currentAddr);
H
A
D
btm_le_sec.c
523
int BTM_UpdateCurrentRemoteAddress(const BtAddr *
pairedAddr
, const BtAddr *currentAddr)
in BTM_UpdateCurrentRemoteAddress()
argument
525
if (
pairedAddr
== NULL || currentAddr == NULL) {
in BTM_UpdateCurrentRemoteAddress()
537
BtmLePairedDeviceBlock *block = BtmFindLePairedDeviceBlockByAddress(
pairedAddr
);
in BTM_UpdateCurrentRemoteAddress()
549
int BTM_GetCurrentRemoteAddress(const BtAddr *
pairedAddr
, BtAddr *currentAddr)
in BTM_GetCurrentRemoteAddress()
argument
551
if (
pairedAddr
== NULL || currentAddr == NULL) {
in BTM_GetCurrentRemoteAddress()
563
BtmLePairedDeviceBlock *block = BtmFindLePairedDeviceBlockByAddress(
pairedAddr
);
in BTM_GetCurrentRemoteAddress()
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/gap/
H
A
D
gap_le_scan.c
379
BtAddr
pairedAddr
= {0};
in GapTryChangeAddressForIdentityAddress()
local
380
int ret = BTM_GetPairdAddressFromRemoteIdentityAddress(addr, &
pairedAddr
);
in GapTryChangeAddressForIdentityAddress()
385
BT_ADDR_FMT_OUTPUT(
pairedAddr
.addr));
in GapTryChangeAddressForIdentityAddress()
386
*addr =
pairedAddr
;
in GapTryChangeAddressForIdentityAddress()
/foundation/communication/bluetooth/frameworks/inner/src/
H
A
D
bluetooth_host.cpp
1059
std::vector<BluetoothRawAddress>
pairedAddr
;
in GetPairedDevices()
local
1060
int32_t ret = proxy->GetPairedDevices(
pairedAddr
);
in GetPairedDevices()
1062
for (auto it =
pairedAddr
.begin(); it !=
pairedAddr
.end(); it++) {
in GetPairedDevices()
/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H
A
D
i_bluetooth_host.h
89
virtual int32_t GetPairedDevices(std::vector<BluetoothRawAddress> &
pairedAddr
) = 0;
/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H
A
D
bluetooth_host_server.h
85
int32_t GetPairedDevices(std::vector<BluetoothRawAddress> &
pairedAddr
) override;
/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H
A
D
bluetooth_host_proxy.h
64
int32_t GetPairedDevices(std::vector<BluetoothRawAddress> &
pairedAddr
) override;
/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H
A
D
bluetooth_host_server.cpp
1175
int32_t BluetoothHostServer::GetPairedDevices(std::vector<BluetoothRawAddress> &
pairedAddr
)
in GetPairedDevices()
argument
1193
pairedAddr
.emplace_back(rawAddr);
in GetPairedDevices()
1204
pairedAddr
.emplace_back(rawAddr);
in GetPairedDevices()
/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H
A
D
bluetooth_host_proxy.cpp
646
int32_t BluetoothHostProxy::GetPairedDevices(std::vector<BluetoothRawAddress> &
pairedAddr
)
in GetPairedDevices()
argument
666
pairedAddr
.push_back(*rawAddress);
in GetPairedDevices()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/classic/
H
A
D
classic_adapter.cpp
245
for (auto &
pairedAddr
: pairedAddrList) {
in LoadPairedDeviceInfo()
246
std::string addr =
pairedAddr
;
in LoadPairedDeviceInfo()
Completed in 16 milliseconds