Searched refs:MsgWithLocalRemoteInfo (Results 1 – 1 of 1) sorted by relevance
70 struct MsgWithLocalRemoteInfo { struct71 MsgWithLocalRemoteInfo() = delete;72 MsgWithLocalRemoteInfo(void *d, size_t length, const std::string &path) : data(d), len(length) in MsgWithLocalRemoteInfo() argument76 ~MsgWithLocalRemoteInfo() in ~MsgWithLocalRemoteInfo() argument167 …alue MakeJsLocalSocketMessageParam(napi_env env, napi_value msgBuffer, MsgWithLocalRemoteInfo *msg) in MakeJsLocalSocketMessageParam()184 auto *msg = reinterpret_cast<MsgWithLocalRemoteInfo *>(manager->GetQueueData()); in MakeLocalSocketMessage()185 auto deleter = [](const MsgWithLocalRemoteInfo *p) { delete p; }; in MakeLocalSocketMessage()186 std::unique_ptr<MsgWithLocalRemoteInfo, decltype(deleter)> handler(msg, deleter); in MakeLocalSocketMessage()228 MsgWithLocalRemoteInfo *msg = new (std::nothrow) MsgWithLocalRemoteInfo(data, len, path); in OnRecvLocalSocketMessage()