/developtools/profiler/device/plugins/hidump_plugin/test/unittest/ |
D | hidump_plugin_unittest.cpp | 209 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/ |
D | hidump_plugin.h | 50 static FILE* CustomPopen(const char* command, const char* type);
|
/developtools/profiler/device/plugins/hilog_plugin/include/ |
D | hilog_plugin.h | 55 static FILE* CustomPopen(const char* command, const char* type);
|
/developtools/profiler/device/base/include/ |
D | common.h | 31 FILE* CustomPopen(const std::vector<std::string>& command, const char* type, int fds[],
|
/developtools/profiler/device/plugins/hidump_plugin/src/ |
D | hidump_plugin.cpp | 69 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/ |
D | hisysevent_plugin_unittest.cpp | 234 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/ |
D | hilog_plugin.cpp | 84 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/ |
D | hisysevent_plugin.cpp | 64 COMMON::CustomPopen(fullCmd_, "r", pipeFds_, childPid_, true), [this](FILE* fp) -> int { in Start()
|
/developtools/profiler/device/plugins/hiperf_plugin/src/ |
D | hiperf_module.cpp | 92 FILE* fp = COMMON::CustomPopen(cmdArg, "r", pipeFds, childPid); in RunCommand()
|
/developtools/profiler/device/plugins/hilog_plugin/test/unittest/ |
D | hilog_plugin_unittest.cpp | 905 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/ |
D | common.cpp | 225 FILE* CustomPopen(const std::vector<std::string>& command, const char* type, int fds[], in CustomPopen() function
|