Home
last modified time | relevance | path

Searched refs:app_type (Results 1 – 4 of 4) sorted by relevance

/system/extras/simpleperf/
Denvironment.cpp733 SimpleperfAppRunner(int user_id, const std::string& package_name, const std::string& app_type) in SimpleperfAppRunner() argument
737 app_type_ = app_type == "unknown" ? "profileable" : app_type; in SimpleperfAppRunner()
805 std::string app_type = GetAppType(app_package_name); in RunInAppContext() local
806 if (app_type == "unknown" && IsAppDebuggable(user_id, app_package_name)) { in RunInAppContext()
807 app_type = "debuggable"; in RunInAppContext()
810 if (allow_run_as && app_type == "debuggable") { in RunInAppContext()
817 if (app_type == "debuggable" || app_type == "profileable" || app_type == "unknown") { in RunInAppContext()
818 in_app_runner.reset(new SimpleperfAppRunner(user_id, app_package_name, app_type)); in RunInAppContext()
Dcmd_report_sample.cpp473 FprintIndented(report_fp_, 1, "app_type: %s\n", meta_info.app_type().c_str()); in DumpProtobufReport()
557 std::string app_type = get_meta_info_value("app_type"); in PrintMetaInfo() local
570 if (!app_type.empty()) { in PrintMetaInfo()
571 proto_meta_info->set_app_type(app_type); in PrintMetaInfo()
590 if (!app_type.empty()) { in PrintMetaInfo()
591 FprintIndented(report_fp_, 1, "app_type: %s\n", app_type.c_str()); in PrintMetaInfo()
Dcmd_report_sample.proto138 optional string app_type = 3; // debuggable, profileable or non_profileable field
Dcmd_record_test.cpp757 static void TestRecordingApps(const std::string& app_name, const std::string& app_type) { in TestRecordingApps() argument
783 ASSERT_EQ(it->second, app_type); in TestRecordingApps()