HomeSort by relevance Sort by last modified time
    Searched defs:policy_path (Results 1 - 2 of 2) sorted by null

  /external/libbrillo/policy/
device_policy_impl.cc 189 const base::FilePath& policy_path = map_pair.second; local
190 if (LoadPolicyFromFile(policy_path)) {
662 bool DevicePolicyImpl::VerifyPolicyFile(const base::FilePath& policy_path) {
668 if (!base::PathExists(policy_path) || !base::PathExists(keyfile_path_)) {
674 stat(policy_path.value().c_str(), &file_stat);
706 bool DevicePolicyImpl::LoadPolicyFromFile(const base::FilePath& policy_path) {
708 if (policy::LoadPolicyFromPath(policy_path, &policy_data_str, &policy_) !=
731 if (verify_policy && !VerifyPolicyFile(policy_path)) {
  /external/selinux/libselinux/src/
selinux_config.c 352 static char policy_path[PATH_MAX]; local
355 snprintf(policy_path, sizeof(policy_path), "%s/policy", selinux_mnt);
356 if (access(policy_path, F_OK) == 0 ) {
357 return policy_path;
363 snprintf(policy_path, sizeof(policy_path), "%s.%d",
365 } while ((rc = access(policy_path, F_OK)) && --vers > 0);
368 return policy_path;

Completed in 431 milliseconds