• Home
  • Raw
  • Download

Lines Matching defs:impl

38 struct ClientSocket::impl {  struct in OHOS::Bluetooth::ClientSocket
41 ~impl() in ~impl()
61 void Close() in Close()
85 bool RecvSocketSignal() in RecvSocketSignal()
119 int getSecurityFlags() in getSecurityFlags()
129 InputStream &GetInputStream() in GetInputStream()
138 OutputStream &GetOutputStream() in GetOutputStream()
147 BluetoothRemoteDevice &GetRemoteDevice() in GetRemoteDevice()
153 bool IsConnected() in IsConnected()
159 int SetBufferSize(int bufferSize) in SetBufferSize()
205 sptr<BluetoothClientSocketDeathRecipient> deathRecipient_;
207 sptr<IBluetoothSocket> proxy_;
208 std::unique_ptr<InputStream> inputStream_ {
211 std::unique_ptr<OutputStream> outputStream_ {
214 BluetoothRemoteDevice remoteDevice_;
215 UUID uuid_;
216 BtSocketType type_;
217 std::string address_;
218 int fd_;
219 bool auth_;
220 int socketStatus_;
240 ClientSocket::impl::impl(const BluetoothRemoteDevice &addr, UUID uuid, BtSocketType type, bool auth) in impl() function in OHOS::Bluetooth::ClientSocket::impl
280 ClientSocket::impl::impl(int fd, std::string address, BtSocketType type) in impl() function in OHOS::Bluetooth::ClientSocket::impl
426 struct ServerSocket::impl { struct in OHOS::Bluetooth::ServerSocket
428 ~impl() in ~impl()
446 int Listen() in Listen()
499 int getSecurityFlags() in getSecurityFlags()
509 std::shared_ptr<ClientSocket> Accept(int timeout) in Accept()
540 int RecvSocketFd() in RecvSocketFd()
597 int RecvSocketPsm() in RecvSocketPsm()
610 void Close() in Close()
632 const std::string &GetStringTag() in GetStringTag()
646 static std::string ConvertTypeToString(BtSocketType type) in ConvertTypeToString()
662 sptr<BluetoothServerSocketDeathRecipient> deathRecipient_;
664 sptr<IBluetoothSocket> proxy_;
665 UUID uuid_;
666 BtSocketType type_;
667 bool encrypt_;
668 int fd_;
669 int socketStatus_;
670 std::string name_ {
673 int acceptFd_;
674 std::string acceptAddress_;
675 std::string socketServiceType_ {
678 int psm_;
701 ServerSocket::impl::impl(const std::string &name, UUID uuid, BtSocketType type, bool encrypt) in impl() function in OHOS::Bluetooth::ServerSocket::impl