Home
last modified time | relevance | path

Searched refs:OutputRsp (Results 1 – 5 of 5) sorted by relevance

/base/hiviewdfx/hilog/frameworks/libhilog/ioctl/
Dlog_ioctl.cpp301 int LogIoctl::RequestOutput(const OutputRqst& rqst, std::function<int(const OutputRsp& rsp)> handle) in RequestOutput()
304 int ret = RequestMsgHead<OutputRqst, OutputRsp>(rqst); in RequestOutput()
312 int LogIoctl::ReceiveAndProcessOutputRsp(std::function<int(const OutputRsp& rsp)> handle) in ReceiveAndProcessOutputRsp()
315 OutputRsp *rsp = reinterpret_cast<OutputRsp *>(buffer.data()); in ReceiveAndProcessOutputRsp()
/base/hiviewdfx/hilog/frameworks/libhilog/ioctl/include/
Dlog_ioctl.h39 int RequestOutput(const OutputRqst& rqst, std::function<int(const OutputRsp& rsp)> handle);
55 int ReceiveAndProcessOutputRsp(std::function<int(const OutputRsp& rsp)> handle);
/base/hiviewdfx/hilog/frameworks/libhilog/include/
Dhilog_cmd.h88 struct OutputRsp { struct
/base/hiviewdfx/hilog/services/hilogd/
Dservice_controller.cpp127 OutputRsp rsp; in WriteQueryResponse()
147 vec[0].iov_len = sizeof(OutputRsp); in WriteQueryResponse()
498 WriteRspHeader(IoctlCmd::OUTPUT_RSP, sizeof(OutputRsp)); in HandleOutputRqst()
/base/hiviewdfx/hilog/services/hilogtool/
Dmain.cpp404 int ret = ioctl.RequestOutput(rqst, [&context](const OutputRsp& rsp) { in QueryLogHandler()