Searched refs:ServerSocket (Results 1 - 9 of 9) sorted by relevance
/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_socket.h | 267 class BLUETOOTH_API ServerSocket { class 270 * @brief A constructor used to create an ServerSocket instance. 278 ServerSocket(const std::string &name, UUID uuid, BtSocketType type, bool encrypt); 281 * @brief Destroy the ServerSocket object. 285 ~ServerSocket(); 371 * @return A ServerSocket. 374 static std::shared_ptr<ServerSocket> DataListenInsecureRfcommByServiceRecord( 382 * @return A ServerSocket. 385 static std::shared_ptr<ServerSocket> DataListenRfcommByServiceRecord(const std::string &name, const UUID &uuid);
|
/foundation/communication/bluetooth/frameworks/js/napi/include/ |
H A D | napi_bluetooth_spp_server.h | 25 std::shared_ptr<ServerSocket> server_ = nullptr; 31 std::shared_ptr<ServerSocket> server_ = nullptr; 49 std::shared_ptr<ServerSocket> server_ = nullptr;
|
/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_socket.cpp | 557 struct ServerSocket::impl { 773 socketServiceType_ = "ServerSocket:"; in GetStringTag() 816 ServerSocket::impl::impl(const std::string &name, UUID uuid, BtSocketType type, bool encrypt) in impl() 823 ServerSocket::ServerSocket(const std::string &name, UUID uuid, BtSocketType type, bool encrypt) in ServerSocket() function in OHOS::Bluetooth::ServerSocket::impl::ServerSocket 824 : pimpl(new ServerSocket::impl(name, uuid, type, encrypt)) in ServerSocket() 829 ServerSocket::~ServerSocket() in ~ServerSocket() 832 int ServerSocket::Listen() in Listen() 839 std::shared_ptr<ClientSocket> ServerSocket [all...] |
/foundation/communication/bluetooth/frameworks/inner/c_adapter/ |
H A D | ohos_bt_socket.cpp | 42 static BluetoothObjectMap<std::shared_ptr<ServerSocket>, MAX_OBJECT_NUM> g_serverMap; 127 std::shared_ptr<ServerSocket> server = std::make_shared<ServerSocket>(serverName, serverUuid, in SocketServerCreate() 156 std::shared_ptr<ServerSocket> server = g_serverMap.GetObject(serverId); in SocketServerAccept() 182 std::shared_ptr<ServerSocket> server = g_serverMap.GetObject(serverId); in SocketServerClose() 450 std::shared_ptr<ServerSocket> server = g_serverMap.GetObject(serverId); in SocketGetPsm() 466 std::shared_ptr<ServerSocket> server = g_serverMap.GetObject(serverId); in SocketGetScn()
|
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/interface/ |
H A D | nstackx_socket.h | 43 Socket *ServerSocket(SocketProtocol protocol, const struct sockaddr_in *sockAddr);
|
/foundation/communication/bluetooth_service/test/unittest/spp/ |
H A D | spp_test.cpp | 43 std::shared_ptr<ServerSocket> sppServerSocket_ = nullptr;
|
/foundation/communication/bluetooth/frameworks/js/napi/src/socket/ |
H A D | napi_bluetooth_spp_server.cpp | 131 callbackInfo->server_ = std::make_shared<ServerSocket>(callbackInfo->name_, in SppListen() 135 HILOGI("SppListen ServerSocket constructor end"); in SppListen()
|
/foundation/communication/dsoftbus/components/nstackx/nstackx_util/core/ |
H A D | nstackx_socket.c | 337 Socket *ServerSocket(SocketProtocol protocol, const struct sockaddr_in *sockAddr) in ServerSocket() function
|
/foundation/communication/dsoftbus/components/nstackx/nstackx_core/dfile/core/ |
H A D | nstackx_dfile.c | 1023 Socket *socket = ServerSocket(protocol, sockAddr); in DFileRecverInit()
|
Completed in 8 milliseconds