Lines Matching defs:address
62 void BluetoothAddress::ParseAddressToString(std::vector<uint8_t> &address, std::string &outString)
66 address[0], address[1], address[2], address[3], address[4], address[5]);
93 bool BluetoothAddress::GetConstantAddress(char *address, int len)
95 if (address == nullptr || len < ADDRESS_STR_LEN + 1) {
114 int ret = getMac(MAC_TYPE_BLUETOOTH, address, len);
196 void BluetoothAddress::ReadAddress(std::vector<uint8_t> &address) const
198 address = address_;
201 void BluetoothAddress::ReadAddress(std::string &address) const
203 address.resize(ADDRESS_STR_LEN + 1);
208 &address[offset], (ADDRESS_STR_LEN + 1) - offset, ADDRESS_STR_LEN - offset, "%02x:", address_[ii]);