OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mBluetoothGatt
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/core/java/android/bluetooth/
BluetoothAdvScanData.java
50
private IBluetoothGatt
mBluetoothGatt
;
53
* @param
mBluetoothGatt
56
public BluetoothAdvScanData(IBluetoothGatt
mBluetoothGatt
, int dataType) {
57
this.
mBluetoothGatt
=
mBluetoothGatt
;
78
return
mBluetoothGatt
.setAdvManufacturerCodeAndData(manufacturerCode, manufacturerData);
94
return
mBluetoothGatt
.setAdvServiceData(serviceData);
106
return Collections.unmodifiableList(
mBluetoothGatt
.getAdvServiceUuids());
117
if (
mBluetoothGatt
== null) return null;
119
return
mBluetoothGatt
.getAdvManufacturerData()
[
all
...]
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleClientService.java
103
private BluetoothGatt
mBluetoothGatt
;
129
mBluetoothGatt
.disconnect();
130
mBluetoothGatt
.close();
145
mBluetoothGatt
= mDevice.connectGatt(this, false, mGattCallbacks);
148
if (
mBluetoothGatt
!= null)
mBluetoothGatt
.disconnect();
151
if (
mBluetoothGatt
!= null)
mBluetoothGatt
.discoverServices();
154
if (
mBluetoothGatt
!= null)
mBluetoothGatt
.readRemoteRssi()
[
all
...]
/developers/build/prebuilts/gradle/BluetoothLeGatt/BluetoothLeGattSample/src/main/java/com/example/android/bluetoothlegatt/
BluetoothLeService.java
48
private BluetoothGatt
mBluetoothGatt
;
82
mBluetoothGatt
.discoverServices());
220
&&
mBluetoothGatt
!= null) {
221
Log.d(TAG, "Trying to use an existing
mBluetoothGatt
for connection.");
222
if (
mBluetoothGatt
.connect()) {
237
mBluetoothGatt
= device.connectGatt(this, false, mGattCallback);
251
if (mBluetoothAdapter == null ||
mBluetoothGatt
== null) {
255
mBluetoothGatt
.disconnect();
263
if (
mBluetoothGatt
== null) {
266
mBluetoothGatt
.close()
[
all
...]
/developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/BluetoothLeGattSample/src/main/java/com/example/android/bluetoothlegatt/
BluetoothLeService.java
48
private BluetoothGatt
mBluetoothGatt
;
82
mBluetoothGatt
.discoverServices());
220
&&
mBluetoothGatt
!= null) {
221
Log.d(TAG, "Trying to use an existing
mBluetoothGatt
for connection.");
222
if (
mBluetoothGatt
.connect()) {
237
mBluetoothGatt
= device.connectGatt(this, false, mGattCallback);
251
if (mBluetoothAdapter == null ||
mBluetoothGatt
== null) {
255
mBluetoothGatt
.disconnect();
263
if (
mBluetoothGatt
== null) {
266
mBluetoothGatt
.close()
[
all
...]
/development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
BluetoothLeService.java
48
private BluetoothGatt
mBluetoothGatt
;
82
mBluetoothGatt
.discoverServices());
220
&&
mBluetoothGatt
!= null) {
221
Log.d(TAG, "Trying to use an existing
mBluetoothGatt
for connection.");
222
if (
mBluetoothGatt
.connect()) {
237
mBluetoothGatt
= device.connectGatt(this, false, mGattCallback);
251
if (mBluetoothAdapter == null ||
mBluetoothGatt
== null) {
255
mBluetoothGatt
.disconnect();
263
if (
mBluetoothGatt
== null) {
266
mBluetoothGatt
.close()
[
all
...]
/frameworks/base/services/java/com/android/server/
BluetoothManagerService.java
108
private IBluetoothGatt
mBluetoothGatt
;
476
return
mBluetoothGatt
;
[
all
...]
Completed in 2510 milliseconds