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:gattDevice
(Results
1 - 2
of
2
) sorted by relevance
/foundation/communication/bluetooth/frameworks/inner/ipc/parcel/
H
A
D
bluetooth_gatt_device.cpp
45
BluetoothGattDevice *
gattDevice
= new BluetoothGattDevice();
in Unmarshalling()
local
46
if (
gattDevice
!= nullptr && !
gattDevice
->ReadFromParcel(parcel)) {
in Unmarshalling()
47
delete
gattDevice
;
in Unmarshalling()
48
gattDevice
= nullptr;
in Unmarshalling()
50
return
gattDevice
;
in Unmarshalling()
/foundation/communication/bluetooth/frameworks/inner/src/
H
A
D
bluetooth_gatt_server.cpp
523
for (auto &
gattDevice
: devices_) {
in FindConnectedDevice()
524
if (device.GetDeviceAddr().compare(
gattDevice
.addr_.GetAddress()) == 0 &&
in FindConnectedDevice()
526
(
gattDevice
.transport_ == GATT_TRANSPORT_TYPE_LE) ? BT_TRANSPORT_BLE : BT_TRANSPORT_BREDR)) {
in FindConnectedDevice()
527
return &
gattDevice
;
in FindConnectedDevice()
692
bluetooth::GattDevice
gattDevice
(bluetooth::RawAddress(device.GetDeviceAddr()), GATT_TRANSPORT_TYPE_LE);
in Connect()
693
return proxy->Connect(appId,
gattDevice
, isDirect);
in Connect()
703
auto
gattDevice
= pimpl->FindConnectedDevice(device);
in CancelConnection()
local
704
if (
gattDevice
== nullptr) {
in CancelConnection()
705
HILOGE("
gattDevice
is nullptr");
in CancelConnection()
711
return proxy->CancelConnection(appId, *
gattDevice
);
in CancelConnection()
[all...]
Completed in 2 milliseconds