Lines Matching defs:impl
83 struct ClientSocket::impl {
84 impl(const BluetoothRemoteDevice &addr, UUID uuid, BtSocketType type, bool auth);
85 impl(int fd, std::string address, BtSocketType type);
86 impl(const BluetoothRemoteDevice &addr, UUID uuid, BtSocketType type, bool auth,
88 ~impl()
90 HILOGI("ClientSocket::impl ~impl");
297 class ClientSocket::impl::BluetoothSocketObserverImp : public BluetoothClientSocketObserverStub {
332 HILOGE("impl is nullptr");
350 bool ClientSocket::impl::Init(std::weak_ptr<ClientSocket> client)
362 ClientSocket::impl::impl(const BluetoothRemoteDevice &addr, UUID uuid, BtSocketType type, bool auth)
375 ClientSocket::impl::impl(int fd, std::string address, BtSocketType type)
388 ClientSocket::impl::impl(const BluetoothRemoteDevice &addr, UUID uuid, BtSocketType type, bool auth,
404 : pimpl(new ClientSocket::impl(bda, uuid, type, auth))
408 : pimpl(new ClientSocket::impl(fd, address, type))
413 : pimpl(new ClientSocket::impl(bda, uuid, type, auth, observer))
557 struct ServerSocket::impl {
558 impl(const std::string &name, UUID uuid, BtSocketType type, bool encrypt);
559 ~impl()
816 ServerSocket::impl::impl(const std::string &name, UUID uuid, BtSocketType type, bool encrypt)
824 : pimpl(new ServerSocket::impl(name, uuid, type, encrypt))