Searched defs:devices (Results 1 - 13 of 13) sorted by relevance

/system/connectivity/shill/dbus/
H A Dchromeos_wimax_manager_proxy.h52 brillo::dbus_utils::Property<std::vector<dbus::ObjectPath>> devices; member in class:shill::ChromeosWiMaxManagerProxy::PropertySet
68 void DevicesChanged(const std::vector<dbus::ObjectPath>& devices);
H A Dchromeos_wimax_manager_proxy.cc52 RegisterProperty(kPropertyDevices, &devices);
113 if (!properties_->devices.GetAndBlock()) {
118 KeyValueStore::ConvertPathsToRpcIdentifiers(properties_->devices.value(),
164 const vector<dbus::ObjectPath>& devices) {
165 SLOG(DBus, nullptr, 2) << __func__ << "(" << devices.size() << ")";
170 KeyValueStore::ConvertPathsToRpcIdentifiers(devices, &rpc_devices);
163 DevicesChanged( const vector<dbus::ObjectPath>& devices) argument
/system/core/adb/
H A Dconsole.cpp64 // No specific device was given, so get the list of connected devices and
67 std::string devices; local
69 if (!adb_query("host:devices", &devices, &error)) {
76 for (const auto& device : android::base::Split(devices, "\n")) {
/system/bt/stack/hid/
H A Dhidh_int.h52 tHID_HOST_DEV_CTB devices[HID_HOST_MAX_DEVICES]; member in struct:host_ctb
/system/bt/btif/include/
H A Dbtif_hh.h74 /* Control block to maintain properties of devices */
83 * BTIF-HH control block to maintain added devices and currently
84 * connected hid devices
89 btif_hh_device_t devices[BTIF_HH_MAX_HID]; member in struct:__anon593
/system/connectivity/shill/cellular/
H A Dmodem_manager.cc128 vector<string> devices = proxy_->EnumerateDevices(); local
130 for (vector<string>::const_iterator it = devices.begin();
131 it != devices.end(); ++it) {
/system/connectivity/apmanager/
H A Ddevice_info_unittest.cc124 void VerifyDeviceList(const vector<scoped_refptr<Device>>& devices) { argument
126 EXPECT_EQ(devices.size(), device_info_.devices_.size());
127 for (const auto& device : devices) {
/system/connectivity/shill/wimax/
H A Dwimax_provider.cc121 // Collects a set of live networks from all devices.
306 LOG(ERROR) << "No WiMAX devices available.";
314 void WiMaxProvider::OnDevicesChanged(const RpcIdentifiers& devices) { argument
316 DestroyDeadDevices(devices);
317 for (const auto& path : devices) {
/system/bt/btif/src/
H A Dbtif_storage.c147 bt_bdaddr_t devices[BTM_SEC_MAX_DEVICE_RECORDS]; member in struct:__anon694
385 ** Description Internal helper function to fetch the bonded devices
430 ** Description Internal helper function to fetch the bonded devices
474 memcpy(&p_bonded_devices->devices[p_bonded_devices->num_devices++], &bd_addr, sizeof(bt_bdaddr_t));
597 BTIF_TRACE_DEBUG("%s: Number of bonded devices: %d Property:BT_PROPERTY_ADAPTER_BONDED_DEVICES", __FUNCTION__, bonded_devices.num_devices);
602 memcpy(property->val, bonded_devices.devices, property->len);
836 ** Description BTIF storage API - Loads all the bonded devices from NVRAM
839 ** and remote_device_properties_cb for each of the bonded devices.
899 memcpy(devices_list + i, &bonded_devices.devices[i], sizeof(bt_bdaddr_t));
914 BTIF_TRACE_EVENT("%s: %d bonded devices foun
[all...]
/system/core/logcat/
H A Dlogcat.cpp554 log_device_t* devices = NULL; local
790 for (dev = devices; dev; dev = dev->next) {
809 devices = dev = d;
826 for (dev = devices; dev; dev = dev->next) {
847 devices = dev = d;
857 if (devices) {
858 dev = devices;
870 devices = new log_device_t(optarg, binary);
1003 if (!devices) {
1004 dev = devices
[all...]
/system/bt/audio_a2dp_hw/
H A Daudio_a2dp_hw.c1087 audio_devices_t devices,
1099 UNUSED(devices);
1291 audio_devices_t devices,
1303 UNUSED(devices);
1085 adev_open_output_stream(struct audio_hw_device *dev, audio_io_handle_t handle, audio_devices_t devices, audio_output_flags_t flags, struct audio_config *config, struct audio_stream_out **stream_out, const char *address) argument
1289 adev_open_input_stream(struct audio_hw_device *dev, audio_io_handle_t handle, audio_devices_t devices, struct audio_config *config, struct audio_stream_in **stream_in, audio_input_flags_t flags, const char *address, audio_source_t source) argument
/system/connectivity/shill/
H A Dmanager_unittest.cc202 auto devices = manager()->FilterByTechnology(tech); local
203 return (devices.size() == 1 && devices[0].get() == device.get());
809 vector <dbus::ObjectPath> devices = local
811 EXPECT_EQ(2, devices.size());
3982 // Add devices
4034 // Add service for multiple devices
4786 // Registered devices of prohibited technology types should be disabled.
4799 // Newly registered devices should be disabled.
4857 // Set blacklisted devices
[all...]
H A Dmanager.cc102 const char Manager::kErrorNoDevice[] = "no wifi devices available";
676 // If no whitelist is specified, all devices are considered whitelisted.
772 // Reset claimer if this is not the default claimer and no more devices are
1160 // Create a default device claimer to claim devices from shill as they're
1162 // the default claimer to specify the devices for shill to manage.
1223 // means devices are being managed by remote application. Only manage the
1290 const auto& devices = device_claimer_->claimed_device_names(); local
1291 results.resize(devices.size());
1292 std::copy(devices.begin(), devices
[all...]

Completed in 8541 milliseconds