/ohos5.0/foundation/ability/ability_runtime/tools/aa/src/ |
H A D | ability_command.cpp | 842 perfCmd = optarg; in CheckPerfCmdString() 845 if (MatchOrderString(regexDumpHeapType, perfCmd) || MatchOrderString(regexSleepType, perfCmd)) { in CheckPerfCmdString() 856 auto findPos = perfCmd.find("jsperf"); in CheckPerfCmdString() 859 if (!MatchOrderString(regexCmd, perfCmd.substr(findPos, perfCmd.length() - findPos))) { in CheckPerfCmdString() 968 std::string perfCmd = ""; in MakeWantForProcess() local 1107 perfCmd = optarg; in MakeWantForProcess() 1137 if (perfCmd.empty() && debugCmd.empty()) { in MakeWantForProcess() 1160 if (!perfCmd.empty()) { in MakeWantForProcess() 1161 want.SetParam("perfCmd", perfCmd); in MakeWantForProcess() 1269 std::string perfCmd; in MakeWantFromCmd() local [all …]
|
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/ |
H A D | app_launch_data.h | 165 inline void SetPerfCmd(const std::string &perfCmd) in SetPerfCmd() argument 167 perfCmd_ = perfCmd; in SetPerfCmd()
|
/ohos5.0/base/hiviewdfx/hiview/plugins/eventlogger/log_catcher/include/ |
H A D | peer_binder_catcher.h | 31 bool Initialize(const std::string& perfCmd, int layer, int pid) override;
|
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/runtime/include/ |
H A D | runtime.h | 72 std::string perfCmd; member
|
/ohos5.0/foundation/ability/ability_runtime/tools/aa/include/ |
H A D | ability_command.h | 259 bool CheckPerfCmdString(const char* optarg, const size_t paramLength, std::string &perfCmd);
|
/ohos5.0/base/hiviewdfx/hiview/plugins/eventlogger/log_catcher/ |
H A D | peer_binder_catcher.cpp | 52 bool PeerBinderCatcher::Initialize(const std::string& perfCmd, int layer, int pid) in Initialize() argument 56 perfCmd_ = perfCmd; in Initialize()
|
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/appkit/app/ |
H A D | main_thread.cpp | 1519 auto perfCmd = appLaunchData.GetPerfCmd(); in HandleLaunchApplication() local 1532 if (perfCmd.find(PERFCMD_PROFILE) != std::string::npos || in HandleLaunchApplication() 1533 perfCmd.find(PERFCMD_DUMPHEAP) != std::string::npos) { in HandleLaunchApplication() 1534 TAG_LOGD(AAFwkTag::APPKIT, "perfCmd is %{public}s", perfCmd.c_str()); in HandleLaunchApplication() 1535 debugOption.perfCmd = perfCmd; in HandleLaunchApplication()
|
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/include/ |
H A D | app_mgr_service_inner.h | 1293 …_t StartPerfProcess(const std::shared_ptr<AppRunningRecord> &appRecord, const std::string& perfCmd, 1577 int32_t StartPerfProcessByStartMsg(AppSpawnStartMsg &startMsg, const std::string& perfCmd,
|
H A D | app_running_record.h | 628 void SetPerfCmd(const std::string &perfCmd);
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/appkit/main_thread_test/ |
H A D | main_thread_test.cpp | 1719 std::string perfCmd = "profile jsperf 100"; variable 1720 launchData.SetPerfCmd(perfCmd); 1721 EXPECT_EQ(launchData.GetPerfCmd(), perfCmd);
|
/ohos5.0/foundation/ability/ability_runtime/services/abilitymgr/include/ |
H A D | ability_record.h | 366 std::string perfCmd; member
|
/ohos5.0/foundation/ability/ability_runtime/services/appmgr/src/ |
H A D | app_mgr_service_inner.cpp | 854 std::string perfCmd = (want == nullptr) ? "" : want->GetStringParam(PERF_CMD); in LoadAbilityNoAppRecord() local 856 (void)StartPerfProcess(appRecord, perfCmd, "", isSandboxApp); in LoadAbilityNoAppRecord() 3024 const std::string& perfCmd, const std::string& debugCmd, bool isSandboxApp) in StartPerfProcessByStartMsg() argument 3030 if (perfCmd.empty() && debugCmd.empty()) { in StartPerfProcessByStartMsg() 3042 if (!perfCmd.empty()) { in StartPerfProcessByStartMsg() 3043 startMsg.renderParam = perfCmd; in StartPerfProcessByStartMsg() 3044 TAG_LOGI(AAFwkTag::APPMGR, "debuggablePipe perfCmd:%{public}s", perfCmd.c_str()); in StartPerfProcessByStartMsg() 3059 const std::string& perfCmd, const std::string& debugCmd, bool isSandboxApp) in StartPerfProcess() argument 3067 return StartPerfProcessByStartMsg(startMsg, perfCmd, debugCmd, isSandboxApp); in StartPerfProcess()
|
H A D | app_running_record.cpp | 1844 void AppRunningRecord::SetPerfCmd(const std::string &perfCmd) in SetPerfCmd() argument 1846 perfCmd_ = perfCmd; in SetPerfCmd()
|
/ohos5.0/foundation/ability/ability_runtime/frameworks/native/runtime/ |
H A D | js_runtime.cpp | 389 if (dOption.perfCmd.find(profilerCommand) != std::string::npos) { in DebuggerConnectionManager() 391 interval = JsperfProfilerCommandParse(dOption.perfCmd, DEFAULT_INTER_VAL); in DebuggerConnectionManager()
|
/ohos5.0/foundation/ability/ability_runtime/services/abilitymgr/src/ |
H A D | ability_record.cpp | 182 perfCmd = want.GetStringParam(PERF_CMD); in Update() 2742 want_.SetParam(PERF_CMD, launchDebugInfo_.perfCmd); in SetWant() 2786 !launchDebugInfo_.perfCmd.empty() || isAttachDebug_ || isAssertDebug_) { in IsDebug()
|
/ohos5.0/foundation/ability/ability_runtime/test/unittest/runtime_test/ |
H A D | js_runtime_test.cpp | 1031 debugOption.perfCmd = "profile jsperf 100";
|