Home
last modified time | relevance | path

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

/system/core/libprocessgroup/
Dtask_profiles.cpp881 std::string profile_name = profile_val["Name"].asString(); in Load() local
883 auto profile = std::make_shared<TaskProfile>(profile_name); in Load()
898 LOG(WARNING) << "A JoinCgroup action in the " << profile_name in Load()
966 auto iter = profiles_.find(profile_name); in Load()
968 profiles_[profile_name] = profile; in Load()
987 std::string profile_name = aggregateprofiles[pf_idx].asString(); in Load() local
989 if (profile_name == aggregateprofile_name) { in Load()
990 LOG(WARNING) << "AggregateProfiles: recursive profile name: " << profile_name; in Load()
993 } else if (profiles_.find(profile_name) == profiles_.end()) { in Load()
994 LOG(WARNING) << "AggregateProfiles: undefined profile name: " << profile_name; in Load()
[all …]
Dprocessgroup.cpp755 bool isProfileValidForProcess(const std::string& profile_name, uid_t uid, pid_t pid) { in isProfileValidForProcess() argument
756 const TaskProfile* tp = TaskProfiles::GetInstance().GetProfile(profile_name); in isProfileValidForProcess()
/system/core/libprocessgroup/include/processgroup/
Dprocessgroup.h99 bool isProfileValidForProcess(const std::string& profile_name, uid_t uid, pid_t pid);
/system/authgraph/core/src/
Dkey.rs346 pub profile_name: Option<String>, field
777 (PROFILE_NAME, Value::Text(profile_name)) => { in from_cbor_value()
778 match dice_chain_entry_payload.profile_name { in from_cbor_value()
779 None => dice_chain_entry_payload.profile_name = Some(profile_name), in from_cbor_value()