Home
last modified time | relevance | path

Searched refs:NotifyParam (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/filemanagement/dfs_service/services/distributedfiledaemon/test/unittest/network/
H A Dsession_pool_test.cpp134 …auto kernelTalker = std::make_shared<KernelTalker>(wmp, [](NotifyParam &param) {}, [](int32_t fd) … in __anon2a640b6c0302()
160 …auto kernelTalker = std::make_shared<KernelTalker>(wmp, [](NotifyParam &param) {}, [](int32_t fd) … in __anon2a640b6c0502()
190 …auto kernelTalker = std::make_shared<KernelTalker>(wmp, [](NotifyParam &param) {}, [](int32_t fd) … in __anon2a640b6c0702()
220 …auto kernelTalker = std::make_shared<KernelTalker>(wmp, [](NotifyParam &param) {}, [](int32_t fd) … in __anon2a640b6c0902()
248 …auto kernelTalker = std::make_shared<KernelTalker>(wmp, [](NotifyParam &param) {}, [](int32_t fd) … in __anon2a640b6c0a02()
280 …auto kernelTalker = std::make_shared<KernelTalker>(wmp, [](NotifyParam &param) {}, [](int32_t fd) … in __anon2a640b6c0c02()
306 …auto kernelTalker = std::make_shared<KernelTalker>(wmp, [](NotifyParam &param) {}, [](int32_t fd) … in __anon2a640b6c0e02()
352 …auto kernelTalker = std::make_shared<KernelTalker>(wmp, [](NotifyParam &param) {}, [](int32_t fd) … in __anon2a640b6c1002()
378 …auto kernelTalker = std::make_shared<KernelTalker>(wmp, [](NotifyParam &param) {}, [](int32_t fd) … in __anon2a640b6c1202()
425 …auto kernelTalker = std::make_shared<KernelTalker>(wmp, [](NotifyParam &param) {}, [](int32_t fd) … in __anon2a640b6c1402()
[all …]
H A Dkernel_talker_test.cpp58 …g_talker = std::make_shared<KernelTalker>(g_wmp, [](NotifyParam &param) {}, [](const std::string &… in SetUpTestCase()
220 NotifyParam param;
242 NotifyParam param;
264 NotifyParam param;
H A Dnetwork_agent_template_test.cpp295 NotifyParam param;
316 NotifyParam param;
H A Ddevsl_dispatcher_test.cpp146 …auto kernelTalker = std::make_shared<KernelTalker>(wmp, [](NotifyParam &param) {}, [](const std::s… in __anonaf5940d30102()
/ohos5.0/foundation/filemanagement/dfs_service/services/distributedfiledaemon/include/network/
H A Dnetwork_agent_template.h51 [&](NotifyParam &param) { GetSessionProcess(param); }, in NetworkAgentTemplate()
82 void NotifyHandler(NotifyParam &param);
83 void GetSessionProcess(NotifyParam &param);
86 void GetSessionProcessInner(NotifyParam param);
H A Dkernel_talker.h36 struct NotifyParam { struct
45 std::function<void(NotifyParam &)> getSessionCallback, in KernelTalker() argument
92 void NotifyHandler(NotifyParam &param);
98 std::function<void(NotifyParam &)> GetSessionCallback_ {nullptr};
/ohos5.0/foundation/filemanagement/dfs_service/services/distributedfiledaemon/src/network/
H A Dkernel_talker.cpp210 NotifyParam param; in HandleAllNotify()
215 int readSize = read(fd, &param, sizeof(NotifyParam)); in HandleAllNotify()
216 if ((readSize < (int)sizeof(NotifyParam)) || (param.notify == NOTIFY_NONE)) { in HandleAllNotify()
223 void KernelTalker::NotifyHandler(NotifyParam &param) in NotifyHandler()
H A Dnetwork_agent_template.cpp141 void NetworkAgentTemplate::GetSessionProcess(NotifyParam &param) in GetSessionProcess()
143 auto cmd = make_unique<DfsuCmd<NetworkAgentTemplate, NotifyParam>>( in GetSessionProcess()
149 void NetworkAgentTemplate::GetSessionProcessInner(NotifyParam param) in GetSessionProcessInner()