Home
last modified time | relevance | path

Searched refs:outfd (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/base/hiviewdfx/hidumper/services/zidl/src/
H A Ddump_broker_stub.cpp62 int outfd = data.ReadFileDescriptor(); in RequestFileFdStub() local
63 if (outfd < 0) { in RequestFileFdStub()
66 int32_t res = Request(args, outfd); in RequestFileFdStub()
H A Ddump_broker_proxy.cpp22 int32_t DumpBrokerProxy::Request(std::vector<std::u16string> &args, int outfd) in Request() argument
38 if (!data.WriteFileDescriptor(outfd)) { in Request()
/ohos5.0/base/hiviewdfx/hidumper/services/native/src/
H A Ddump_manager_client.cpp38 int32_t DumpManagerClient::Request(std::vector<std::u16string> &args, int outfd) in Request() argument
40 if ((args.size() < 1) || (outfd < 0)) { in Request()
55 int32_t ret = proxy_->Request(args, outfd); in Request()
H A Draw_param.cpp33 …ram(int calllingUid, int calllingPid, uint32_t reqId, std::vector<std::u16string> &args, int outfd) in RawParam() argument
34 …_(calllingUid), pid_(calllingPid), canceled_(false), finished_(false), reqId_(reqId), outfd_(outfd) in RawParam()
H A Ddump_manager_service.cpp157 int32_t DumpManagerService::Request(std::vector<std::u16string> &args, int outfd) in Request() argument
180 const std::shared_ptr<RawParam> rawParam = AddRequestRawParam(args, outfd); in Request()
371 …_ptr<RawParam> DumpManagerService::AddRequestRawParam(std::vector<std::u16string> &args, int outfd) in AddRequestRawParam() argument
385 std::make_shared<RawParam>(calllingUid, calllingPid, requestId, args, outfd); in AddRequestRawParam()
/ohos5.0/base/hiviewdfx/hidumper/services/native/include/
H A Ddump_manager_service.h54 int32_t Request(std::vector<std::u16string> &args, int outfd) override;
75 std::shared_ptr<RawParam> AddRequestRawParam(std::vector<std::u16string> &args, int outfd);
H A Draw_param.h28 …am(int calllingUid, int calllingPid, uint32_t reqId, std::vector<std::u16string>& args, int outfd);
/ohos5.0/base/hiviewdfx/hidumper/interfaces/native/innerkits/include/
H A Didump_broker.h32 virtual int32_t Request(std::vector<std::u16string> &args, int outfd) = 0;
H A Ddump_broker_proxy.h30 int32_t Request(std::vector<std::u16string> &args, int outfd) override;
H A Ddump_manager_client.h29 int32_t Request(std::vector<std::u16string> &args, int outfd);
/ohos5.0/base/hiviewdfx/hidumper/test/unittest/common/
H A Dhidumper_zidl_test.cpp37 int32_t Request(std::vector<std::u16string> &args, int outfd) in Request() argument