HomeSort by relevance Sort by last modified time
    Searched refs:bluetooth (Results 51 - 75 of 850) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
MockMasInstance.java 1 package com.android.bluetooth.tests;
3 import com.android.bluetooth.map.BluetoothMapMasInstance;
ObexTestParams.java 1 package com.android.bluetooth.tests;
5 import android.bluetooth.BluetoothSocket;
  /system/bt/service/hal/
gatt_helpers.h 21 #include <hardware/bluetooth.h>
24 #include "service/common/bluetooth/gatt_identifier.h"
28 namespace bluetooth { namespace
41 } // namespace bluetooth
  /system/bt/service/example/heart_rate/
heart_rate_server.h 26 #include <bluetooth/binder/IBluetooth.h>
27 #include <bluetooth/binder/IBluetoothGattServerCallback.h>
28 #include <bluetooth/gatt_identifier.h>
37 android::sp<ipc::binder::IBluetooth> bluetooth,
58 const bluetooth::GattIdentifier& service_id) override;
62 const bluetooth::GattIdentifier& characteristic_id) override;
66 const bluetooth::GattIdentifier& descriptor_id) override;
71 const bluetooth::GattIdentifier& characteristic_id) override;
76 const bluetooth::GattIdentifier& descriptor_id) override;
91 // with the Bluetooth daemon's GATT server features
    [all...]
  /system/bt/service/common/bluetooth/binder/
IBluetoothCallback.h 23 #include <bluetooth/adapter_state.h>
29 // updates from the Bluetooth service. This class was written based on the
31 // /frameworks/base/core/java/android/bluetooth/IBluetoothCallback.aidl.
48 bluetooth::AdapterState prev_state,
49 bluetooth::AdapterState new_state) = 0;
79 void OnBluetoothStateChange(bluetooth::AdapterState prev_state,
80 bluetooth::AdapterState new_state) override;
IBluetoothLowEnergyCallback.h 23 #include <bluetooth/advertise_data.h>
24 #include <bluetooth/advertise_settings.h>
25 #include <bluetooth/scan_result.h>
31 // to Bluetooth Low Energy operations.
62 virtual void OnScanResult(const bluetooth::ScanResult& scan_result) = 0;
65 const bluetooth::AdvertiseSettings& settings) = 0;
103 void OnScanResult(const bluetooth::ScanResult& scan_result) override;
106 const bluetooth::AdvertiseSettings& settings) override;
IBluetoothGattServerCallback.h 27 #include <bluetooth/gatt_identifier.h>
33 // to Bluetooth GATT server-role operations.
60 int status, const bluetooth::GattIdentifier& service_id) = 0;
65 const bluetooth::GattIdentifier& characteristic_id) = 0;
70 const bluetooth::GattIdentifier& descriptor_id) = 0;
76 const bluetooth::GattIdentifier& characteristic_id) = 0;
82 const bluetooth::GattIdentifier& descriptor_id) = 0;
124 const bluetooth::GattIdentifier& service_id) override;
128 const bluetooth::GattIdentifier& characteristic_id) override;
132 const bluetooth::GattIdentifier& descriptor_id) override
    [all...]
  /system/bt/service/ipc/binder/
bluetooth_binder_server.h 27 #include "service/common/bluetooth/binder/IBluetooth.h"
28 #include "service/common/bluetooth/binder/IBluetoothCallback.h"
29 #include "service/common/bluetooth/binder/IBluetoothGattClient.h"
30 #include "service/common/bluetooth/binder/IBluetoothGattServer.h"
31 #include "service/common/bluetooth/binder/IBluetoothLowEnergy.h"
32 #include "service/common/bluetooth/uuid.h"
40 public bluetooth::Adapter::Observer {
42 explicit BluetoothBinderServer(bluetooth::Adapter* adapter);
53 std::vector<bluetooth::UUID> GetUUIDs() override;
68 // bluetooth::Adapter::Observer overrides
    [all...]
bluetooth_gatt_client_binder_server.cpp 31 bluetooth::Adapter* adapter) : adapter_(adapter) {
39 bluetooth::GattClientFactory* gatt_client_factory =
62 std::shared_ptr<bluetooth::GattClient>
64 return std::static_pointer_cast<bluetooth::GattClient>(
69 bluetooth::BLEStatus status,
71 bluetooth::BluetoothInstance* instance) {
79 (status == bluetooth::BLE_STATUS_SUCCESS) ?
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
LocalBluetoothProfile.java 17 package com.android.settingslib.bluetooth;
19 import android.bluetooth.BluetoothClass;
20 import android.bluetooth.BluetoothDevice;
24 * functionality related to a Bluetooth profile.
57 * @param device the Bluetooth device (to distinguish between PAN roles)
OppProfile.java 17 package com.android.settingslib.bluetooth;
21 import android.bluetooth.BluetoothClass;
22 import android.bluetooth.BluetoothDevice;
23 import android.bluetooth.BluetoothProfile;
26 * OppProfile handles Bluetooth OPP.
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothDiscoveryReceiver.java 17 package com.android.settings.bluetooth;
19 import android.bluetooth.BluetoothAdapter;
25 import com.android.settingslib.bluetooth.BluetoothEventManager;
29 * Bluetooth adapter starts or finishes discovery mode. This
  /system/bt/service/ipc/
ipc_manager.h 24 namespace bluetooth { namespace
26 } // namespace bluetooth
35 // system and one based on the Binder-based android.bluetooth framework.
63 explicit IPCManager(bluetooth::Adapter* adapter);
93 // The Bluetooth adapter instance. This is owned by Daemon so we keep a raw
95 bluetooth::Adapter* adapter_;
ipc_handler.cpp 23 IPCHandler::IPCHandler(bluetooth::Adapter* adapter,
  /frameworks/base/core/java/android/bluetooth/
IBluetoothPan.aidl 17 package android.bluetooth;
19 import android.bluetooth.BluetoothDevice;
22 * API for Bluetooth Pan service
IBluetoothPbapClient.aidl 17 package android.bluetooth;
19 import android.bluetooth.BluetoothDevice;
22 * API for Bluetooth Phone Book Access Provile Client Side
IBluetoothHeadsetPhone.aidl 17 package android.bluetooth;
20 * API for Bluetooth Headset Phone Service in phone app
IBluetoothHealth.aidl 17 package android.bluetooth;
19 import android.bluetooth.BluetoothDevice;
20 import android.bluetooth.BluetoothHealthAppConfiguration;
21 import android.bluetooth.IBluetoothHealthCallback;
25 * API for Bluetooth Health service
  /frameworks/base/core/java/android/bluetooth/le/
AdvertiseCallback.java 17 package android.bluetooth.le;
20 * Bluetooth LE advertising callbacks, used to deliver advertising operation status.
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSettingsDataHolder.java 16 package com.android.bluetooth.map;
  /system/bt/btif/include/
btif_debug_conn.h 21 #include <hardware/bluetooth.h>
  /system/bt/service/common/bluetooth/
adapter_state.cpp 17 #include "service/common/bluetooth/adapter_state.h"
19 namespace bluetooth { namespace
44 } // namespace bluetooth
adapter_state.h 21 namespace bluetooth { namespace
24 // from frameworks/base/core/java/android/bluetooth/BluetoothAdapter.java.
25 // These values need to match their android.bluetooth.BluetoothAdapter
43 } // namespace bluetooth
  /system/bt/service/common/bluetooth/util/
address_helper.h 19 #include <hardware/bluetooth.h>
24 // Checks if the given string representing a Bluetooth device address (BD_ADDR)
  /system/bt/service/test/
stub_ipc_handler_binder.cpp 26 bluetooth::Adapter* adapter,

Completed in 234 milliseconds

1 23 4 5 6 7 8 91011>>