Lines Matching full:uuid
198 UUID uuid = UUID::GetRandom();
199 auto callback = [&](BLEStatus status, const UUID& in_uuid,
201 CHECK(in_uuid == uuid);
213 factory_->RegisterInstance(uuid, callback);
215 bt_uuid_t hal_uuid = uuid.GetBlueDroid();
244 UUID uuid0 = UUID::GetRandom();
245 UUID uuid1 = UUID::GetRandom();
246 UUID uuid2 = UUID::GetRandom();
310 UUID cb_uuid;
314 auto callback = [&](BLEStatus in_status, const UUID& uuid,
317 cb_uuid = uuid;
323 UUID uuid0 = UUID::GetRandom();
333 // Calling twice with the same UUID should fail with no additional calls into
339 // Call with a different UUID while one is pending.
340 UUID uuid1 = UUID::GetRandom();
346 // Trigger callback with an unknown UUID. This should get ignored.
347 UUID uuid2 = UUID::GetRandom();
399 const UUID uuid = UUID::GetRandom();
400 auto service_id = gatt_server_->BeginServiceDeclaration(uuid, true);
405 EXPECT_FALSE(gatt_server_->BeginServiceDeclaration(uuid, false));
421 service_id = gatt_server_->BeginServiceDeclaration(uuid, true);
463 // Start new service declaration with same UUID. We should get a different ID.
464 auto service_id1 = gatt_server_->BeginServiceDeclaration(uuid, true);
481 const UUID uuid = UUID::GetRandom();
482 auto service_id = gatt_server_->BeginServiceDeclaration(uuid, true);
500 auto service_id1 = gatt_server_->BeginServiceDeclaration(uuid, true);
517 service_id = gatt_server_->BeginServiceDeclaration(uuid, true);
542 const UUID char_uuid = UUID::GetRandom();
549 const UUID service_uuid = UUID::GetRandom();
555 // Add two characteristics with the same UUID.
705 const UUID service_uuid = UUID::GetRandom();
706 const UUID char_uuid0 = UUID::GetRandom();
707 const UUID char_uuid1 = UUID::GetRandom();
708 const UUID desc_uuid = UUID::GetRandom();
738 // Add a second descriptor with the same UUID.