Home
last modified time | relevance | path

Searched refs:num_properties (Results 1 – 11 of 11) sorted by relevance

/system/bt/tools/bdtool/
Dadapter.c32 static void parse_properties(int num_properties, bt_property_t* property);
68 void adapter_properties(bt_status_t status, int num_properties, in adapter_properties() argument
71 properties = property_copy_array(new_properties, num_properties); in adapter_properties()
72 property_count = num_properties; in adapter_properties()
112 void device_found(int num_properties, bt_property_t* property) { in device_found() argument
113 fprintf(stdout, "Device found num_properties:%d\n", num_properties); in device_found()
114 parse_properties(num_properties, property); in device_found()
142 int num_properties, bt_property_t* properties) { in remote_device_properties() argument
145 bdaddr_to_string(bdaddr, buf, sizeof(buf)), num_properties); in remote_device_properties()
147 parse_properties(num_properties, properties); in remote_device_properties()
[all …]
/system/bt/test/suite/adapter/
Dbluetooth_test.cc121 int num_properties, in AdapterPropertiesCallback() argument
125 property_copy_array(new_properties, num_properties); in AdapterPropertiesCallback()
126 properties_changed_count_ = num_properties; in AdapterPropertiesCallback()
133 int num_properties, in RemoteDevicePropertiesCallback() argument
139 property_copy_array(properties, num_properties); in RemoteDevicePropertiesCallback()
140 remote_device_properties_changed_count_ = num_properties; in RemoteDevicePropertiesCallback()
Dbluetooth_test.h81 void AdapterPropertiesCallback(bt_status_t status, int num_properties,
87 int num_properties,
/system/bt/service/hal/
Dbluetooth_interface.cc75 void AdapterPropertiesCallback(bt_status_t status, int num_properties, in AdapterPropertiesCallback() argument
80 << ", num_properties: " << num_properties; in AdapterPropertiesCallback()
82 AdapterPropertiesCallback(status, num_properties, properties)); in AdapterPropertiesCallback()
87 int num_properties, in RemoteDevicePropertiesCallback() argument
94 << ", num_properties: " << num_properties; in RemoteDevicePropertiesCallback()
96 status, remote_bd_addr, num_properties, properties)); in RemoteDevicePropertiesCallback()
Dbluetooth_interface.h54 int num_properties,
58 int num_properties,
Dfake_bluetooth_interface.cc94 int num_properties, bt_property_t* properties) { in NotifyAdapterPropertiesChanged() argument
97 AdapterPropertiesCallback(BT_STATUS_SUCCESS, num_properties, properties)); in NotifyAdapterPropertiesChanged()
Dfake_bluetooth_interface.h51 void NotifyAdapterPropertiesChanged(int num_properties,
/system/bt/btif/src/
Dbtif_dm.cc558 int num_properties = 0; in btif_update_remote_properties() local
570 BTIF_STORAGE_FILL_PROPERTY(&properties[num_properties], BT_PROPERTY_BDNAME, in btif_update_remote_properties()
573 &bdaddr, &properties[num_properties]); in btif_update_remote_properties()
576 num_properties++; in btif_update_remote_properties()
585 BTIF_STORAGE_FILL_PROPERTY(&properties[num_properties], in btif_update_remote_properties()
588 &bdaddr, &properties[num_properties]); in btif_update_remote_properties()
596 BTIF_STORAGE_FILL_PROPERTY(&properties[num_properties], in btif_update_remote_properties()
599 &properties[num_properties]); in btif_update_remote_properties()
602 num_properties++; in btif_update_remote_properties()
615 BTIF_STORAGE_FILL_PROPERTY(&properties[num_properties], in btif_update_remote_properties()
[all …]
Dbtif_storage.cc694 uint32_t num_properties, in btif_storage_add_remote_device() argument
699 for (i = 0; i < num_properties; i++) { in btif_storage_add_remote_device()
/system/bt/btif/include/
Dbtif_storage.h112 uint32_t num_properties,
/system/bt/service/
Dadapter.cc254 void AdapterPropertiesCallback(bt_status_t status, int num_properties, in AdapterPropertiesCallback() argument
263 for (int i = 0; i < num_properties; i++) { in AdapterPropertiesCallback()