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

  /system/extras/perfprofd/
configreader.cc 31 static const char *config_file_path = variable
46 return config_file_path;
51 config_file_path = strdup(path);
52 W_ALOGI("config file path set to %s", config_file_path);
253 if (! android::base::ReadFileToString(config_file_path, &contents)) {
  /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");
  /frameworks/av/media/vndk/xmlparser/1.0/
MediaCodecsXmlParser.cpp 88 std::string config_file_path; local
90 "media_codecs.xml", &config_file_path)) {
91 parseTopLevelXMLFile(config_file_path.c_str(), false);
96 "media_codecs_performance.xml", &config_file_path)) {
97 parseTopLevelXMLFile(config_file_path.c_str(), true);
  /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...]
  /frameworks/av/media/libstagefright/
MediaCodecList.cpp 199 char config_file_path[MEDIA_CODECS_CONFIG_FILE_PATH_MAX_LENGTH]; local
200 if (findMediaCodecListFileFullPath("media_codecs.xml", config_file_path)) {
201 parseTopLevelXMLFile(config_file_path);
204 config_file_path)) {
205 parseTopLevelXMLFile(config_file_path, true/* ignore_errors */);
    [all...]

Completed in 2016 milliseconds