Lines Matching defs:uuid
84 impl(const BluetoothRemoteDevice &addr, UUID uuid, BtSocketType type, bool auth);
86 impl(const BluetoothRemoteDevice &addr, UUID uuid, BtSocketType type, bool auth,
321 HILOGD("dev: %{public}s, uuid:%{public}s, status: %{public}d, psm: %{public}d, result: %{public}d",
322 GetEncryptAddr((callbackParam.dev).GetAddress()).c_str(), callbackParam.uuid.ToString().c_str(),
325 UUID btUuid = UUID::ConvertFrom128Bits(callbackParam.uuid.ConvertTo128Bits());
337 .uuid = btUuid,
362 ClientSocket::impl::impl(const BluetoothRemoteDevice &addr, UUID uuid, BtSocketType type, bool auth)
366 uuid_(uuid),
388 ClientSocket::impl::impl(const BluetoothRemoteDevice &addr, UUID uuid, BtSocketType type, bool auth,
394 uuid_(uuid),
403 ClientSocket::ClientSocket(const BluetoothRemoteDevice &bda, UUID uuid, BtSocketType type, bool auth)
404 : pimpl(new ClientSocket::impl(bda, uuid, type, auth))
411 ClientSocket::ClientSocket(const BluetoothRemoteDevice &bda, UUID uuid, BtSocketType type, bool auth,
413 : pimpl(new ClientSocket::impl(bda, uuid, type, auth, observer))
455 .uuid = tempUuid,
558 impl(const std::string &name, UUID uuid, BtSocketType type, bool encrypt);
590 .uuid = bluetooth::Uuid::ConvertFrom128Bits(uuid_.ConvertTo128Bits()),
816 ServerSocket::impl::impl(const std::string &name, UUID uuid, BtSocketType type, bool encrypt)
817 : uuid_(uuid), type_(type), encrypt_(encrypt), fd_(-1), socketStatus_(SOCKET_INIT), name_(name)
823 ServerSocket::ServerSocket(const std::string &name, UUID uuid, BtSocketType type, bool encrypt)
824 : pimpl(new ServerSocket::impl(name, uuid, type, encrypt))
894 const BluetoothRemoteDevice &device, const UUID &uuid)
898 return std::make_shared<ClientSocket>(device, uuid, TYPE_RFCOMM, false);
906 const BluetoothRemoteDevice &device, const UUID &uuid)
910 return std::make_shared<ClientSocket>(device, uuid, TYPE_RFCOMM, true);
918 const std::string &name, const UUID &uuid)
921 return std::make_shared<ServerSocket>(name, uuid, TYPE_RFCOMM, false);
924 std::shared_ptr<ServerSocket> SocketFactory::DataListenRfcommByServiceRecord(const std::string &name, const UUID &uuid)
927 return std::make_shared<ServerSocket>(name, uuid, TYPE_RFCOMM, true);