Searched refs:app_type (Results 1 – 4 of 4) sorted by relevance
/system/extras/simpleperf/ |
D | environment.cpp | 733 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()
|
D | cmd_report_sample.cpp | 473 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()
|
D | cmd_report_sample.proto | 138 optional string app_type = 3; // debuggable, profileable or non_profileable field
|
D | cmd_record_test.cpp | 757 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()
|