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

  /hardware/intel/common/wrs_omxil_core/core/src/
wrs_omxcore.cpp 47 char config_file_path[256]; local
50 strncpy(config_file_path, "/etc/", 256);
51 strncat(config_file_path, config_file_name, 256);
52 config_file = fopen(config_file_path, "r");
54 strncpy(config_file_path, "./", 256);
55 strncat(config_file_path, config_file_name, 256);
56 config_file = fopen(config_file_path, "r");
  /system/extras/perfprofd/
configreader.cc 34 static const char *config_file_path = variable
49 return config_file_path;
54 config_file_path = strdup(path);
55 LOG(INFO) << "config file path set to " << config_file_path;
280 if (! android::base::ReadFileToString(config_file_path, &contents)) {
  /external/selinux/policycoreutils/newrole/
newrole.c 258 const char *config_file_path = PAM_SERVICE_CONFIG; local
296 config_file_path, lineno);
308 const char *config_file_path = PAM_SERVICE_CONFIG; local
310 cfg = fopen(config_file_path, "r");
    [all...]
  /system/core/libnativeloader/
native_loader.cpp 445 const std::string config_file_path = dirname + "/"s + filename; local
449 config_file_path.c_str());
455 config_file_path, sonames,
467 "Error reading public native library list from \"%s\": %s", config_file_path.c_str(),

Completed in 84 milliseconds