Home
last modified time | relevance | path

Searched refs:CustomPopen (Results 1 – 11 of 11) 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/plugins/hilog_plugin/include/
Dhilog_plugin.h55 static FILE* CustomPopen(const char* command, const char* type);
/developtools/profiler/device/base/include/
Dcommon.h31 FILE* CustomPopen(const std::vector<std::string>& command, const char* type, int fds[],
/developtools/profiler/device/plugins/hidump_plugin/src/
Dhidump_plugin.cpp69 fp_ = std::unique_ptr<FILE, int (*)(FILE*)>(CustomPopen(g_fpsFormat, "r"), CustomPclose); in Start()
174 FILE* HidumpPlugin::CustomPopen(const char* command, const char* type) in CustomPopen() function in HidumpPlugin
/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/hilog_plugin/src/
Dhilog_plugin.cpp84 FILE* fp = COMMON::CustomPopen(cmdArg, "r", pipeFds, childPid); in Start()
90 fp_ = std::unique_ptr<FILE, int (*)(FILE*)>(CustomPopen(fullCmd_.c_str(), "r"), CustomPclose); in Start()
472 FILE* HilogPlugin::CustomPopen(const char* command, const char* type) in CustomPopen() function in HilogPlugin
/developtools/profiler/device/plugins/hisysevent_plugin/src/
Dhisysevent_plugin.cpp64 COMMON::CustomPopen(fullCmd_, "r", pipeFds_, childPid_, true), [this](FILE* fp) -> int { in Start()
/developtools/profiler/device/plugins/hiperf_plugin/src/
Dhiperf_module.cpp92 FILE* fp = COMMON::CustomPopen(cmdArg, "r", pipeFds, childPid); in RunCommand()
/developtools/profiler/device/plugins/hilog_plugin/test/unittest/
Dhilog_plugin_unittest.cpp905 EXPECT_EQ(plugin.CustomPopen(cmd, type), nullptr);
918 FILE* fp = plugin.CustomPopen(cmd, type);
934 FILE* fp = plugin.CustomPopen(cmd, type);
950 FILE* fp = plugin.CustomPopen(cmd, type);
966 FILE* fp = plugin.CustomPopen(cmd, type);
/developtools/profiler/device/base/src/
Dcommon.cpp225 FILE* CustomPopen(const std::vector<std::string>& command, const char* type, int fds[], in CustomPopen() function