Searched refs:second (Results 1 - 25 of 209) sorted by path

123456789

/system/bt/btcore/include/
H A Dbdaddr.h39 // Returns true if |first| and |second| refer to the same address. Neither
41 bool bdaddr_equals(const bt_bdaddr_t *first, const bt_bdaddr_t *second);
H A Duuid.h59 // |first| and |second| may not be NULL.
60 bool uuid_is_equal(const bt_uuid_t *first, const bt_uuid_t *second);
/system/bt/btcore/src/
H A Dbdaddr.c33 bool bdaddr_equals(const bt_bdaddr_t *first, const bt_bdaddr_t *second) { argument
35 assert(second != NULL);
37 return memcmp(first, second, sizeof(bt_bdaddr_t)) == 0;
H A Duuid.c94 bool uuid_is_equal(const bt_uuid_t *first, const bt_uuid_t *second) { argument
96 assert(second != NULL);
97 return !memcmp(first, second, sizeof(bt_uuid_t));
/system/bt/doc/
H A Dpower_management.md126 the same check is done against the second action and it is used
176 with timeout set to FALSE to re-attempt with a second action (if the
/system/bt/service/example/heart_rate/
H A Dheart_rate_server.cpp152 uint8_t ccc_val = iter.second;
/system/bt/service/
H A Dgatt_client.cpp106 iter->second(result, uuid, std::move(client));
H A Dgatt_server.cpp328 for (auto tmp : iter->second) {
406 for (auto conn : conn_iter->second) {
421 handle_iter->second,
472 for (auto conn_iter = iter->second.begin(); conn_iter != iter->second.end();
477 iter->second.erase(conn_iter);
675 if (iter->second.IsCharacteristic()) {
677 this, device_address, trans_id, offset, is_long, iter->second);
678 } else if (iter->second.IsDescriptor()) {
680 this, device_address, trans_id, offset, is_long, iter->second);
[all...]
H A Dgatt_server_old.cpp227 g_internal->characteristics[target_blob->second].blob_section = ch.blob[0];
229 target_blob->second, ch.blob[0]);
H A Dlow_energy_client.cpp371 GetClientHALInterface()->disconnect(client_id_, &bda, conn_id->second);
398 GetClientHALInterface()->configure_mtu(conn_id->second, mtu);
597 if (!success.second) {
636 if (connection.second == conn_id) {
890 iter->second(result, uuid, std::move(client));
H A Dsettings.cpp43 base::FilePath path(iter.second);
53 const std::string& suffix = iter.second;
/system/bt/service/ipc/binder/
H A Dinterface_with_instances_base.cpp101 return iter->second;
H A Dremote_callback_list.h155 callback(iter.second->get_callback().get());
161 sp<CallbackDeathRecipient> dr = iter->second;
H A Dremote_callback_map.h178 return iter->second->get_callback();
189 sp<V> val = iter->second->get_callback();
205 sp<CallbackDeathRecipient> dr = iter->second;
/system/bt/service/ipc/
H A Dlinux_ipc_host.cpp324 server->second->GetCharacteristicValue(UUID(id), &value);
/system/connectivity/apmanager/dbus/
H A Dmanager_dbus_adaptor.cc95 manager_->RemoveService(watcher_context->second.service, &error);
109 manager_->RemoveService(watcher_context->second.service, nullptr);
/system/connectivity/apmanager/
H A Ddevice_info.cc187 scoped_refptr<Device> device = GetDevice(iter->second.device_name);
189 device->DeregisterInterface(iter->second);
261 iter->second.iface_type = interface_type;
315 iter->second.device_name = device_name;
317 device->RegisterInterface(iter->second);
335 return iter->second;
H A Ddevice_info_unittest.cc120 EXPECT_TRUE(interface.Equals(it->second));
131 EXPECT_EQ(device, it->second);
/system/connectivity/dhcp_client/
H A Ddhcp_message.cc187 ParserContext* context = &(it->second);
H A Ddhcp_options_parser.cc138 uint32_t second = *reinterpret_cast<const uint32_t*>(buffer); local
139 second = ntohl(second);
140 value_vector->push_back(std::pair<uint32_t, uint32_t>(first, second));
H A Ddhcp_options_writer.cc158 uint32_t second_net = htonl(element.second);
H A Dservice.cc101 const auto& value = key_and_value.second;
/system/connectivity/shill/cellular/
H A Dcellular_capability_gsm.cc580 << it->second;
583 if (base::StringToInt(it->second, &status) &&
588 LOG(ERROR) << "Unexpected status value: " << it->second;
591 parsed[kNetworkIdProperty] = it->second;
593 parsed[kLongNameProperty] = it->second;
595 parsed[kShortNameProperty] = it->second;
598 if (base::StringToInt(it->second, &tech) &&
603 LOG(ERROR) << "Unexpected technology value: " << it->second;
H A Dcellular_capability_universal.cc1421 sim_lock_status_.retries_left = it->second;
1476 operator_code = it->second;
1479 operator_name = it->second;
H A Dcellular_capability_universal_unittest.cc963 string home_provider = home_provider_map.find(kOperatorNameKey)->second;
1118 string home_provider = home_provider_map.find(kOperatorNameKey)->second;

Completed in 523 milliseconds

123456789