Home
last modified time | relevance | path

Searched refs:CustomPopen (Results 1 – 9 of 9) sorted by relevance

/developtools/profiler/device/plugins/hidump_plugin/test/unittest/
Dhidump_plugin_unittest.cpp209 fp = plugin.CustomPopen("", "r");
253 fp = plugin.CustomPopen(cmd.c_str(), "w");
274 fp = plugin.CustomPopen(nullptr, "w");
290 fp = plugin.CustomPopen(cmd.c_str(), nullptr);
304 fp = plugin.CustomPopen(nullptr, nullptr);
/developtools/profiler/device/plugins/hidump_plugin/include/
Dhidump_plugin.h50 static FILE* CustomPopen(const char* command, const char* type);
/developtools/profiler/device/base/include/
Dcommon.h33 FILE* CustomPopen(const std::vector<std::string>& command, const char* type, int fds[],
/developtools/profiler/device/plugins/hisysevent_plugin/test/unittest/
Dhisysevent_plugin_unittest.cpp234 FILE* fpr = COMMON::CustomPopen(fullCmdTest, nullptr, pipeFds, childPid, true);
241 FILE* fpw = COMMON::CustomPopen(fullCmdTest, "w", pipeFds, childPid);
/developtools/profiler/device/plugins/hidump_plugin/src/
Dhidump_plugin.cpp72 …fp_ = std::unique_ptr<FILE, int (*)(FILE*)>(CustomPopen(std::to_string(protoConfig_.sections()).c_… in Start()
200 FILE* HidumpPlugin::CustomPopen(const char* command, const char* type) in CustomPopen() function in HidumpPlugin
/developtools/profiler/device/plugins/hiperf_plugin/src/
Dhiperf_module.cpp95 FILE* fp = COMMON::CustomPopen(cmdArg, "r", pipeFds, childPid); in RunCommand()
/developtools/profiler/device/plugins/hilog_plugin/src/
Dhilog_plugin.cpp82 FILE* fp = COMMON::CustomPopen(cmdArg, "r", pipeFds, childPid); in Start()
89 COMMON::CustomPopen(fullCmd_, "r", pipeFds_, childPid_, true), [this](FILE* fp) -> int { in Start()
/developtools/profiler/device/plugins/hisysevent_plugin/src/
Dhisysevent_plugin.cpp67 COMMON::CustomPopen(fullCmd_, "r", pipeFds_, childPid_, true), [this](FILE* fp) -> int { in Start()
/developtools/profiler/device/base/src/
Dcommon.cpp242 FILE* CustomPopen(const std::vector<std::string>& command, const char* type, int fds[], in CustomPopen() function