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

  /external/google-breakpad/src/common/mac/
launch_reporter.h 37 // |config_file_path| is the path to the config file.
39 const char *config_file_path);
launch_reporter.cc 37 const char *config_file_path) {
38 const char* argv[] = { reporter_executable_path, config_file_path, NULL };
57 unlink(config_file_path); // launch failed - get rid of config file
  /external/tensorflow/tensorflow/python/debug/cli/
cli_config_test.py 44 config = cli_config.CLIConfig(config_file_path=self._tmp_config_path)
52 config = cli_config.CLIConfig(config_file_path=self._tmp_config_path)
60 config = cli_config.CLIConfig(config_file_path=self._tmp_config_path)
64 config = cli_config.CLIConfig(config_file_path=self._tmp_config_path)
71 config = cli_config.CLIConfig(config_file_path=self._tmp_config_path)
78 config = cli_config.CLIConfig(config_file_path=self._tmp_config_path)
83 config = cli_config.CLIConfig(config_file_path=self._tmp_config_path)
86 config2 = cli_config.CLIConfig(config_file_path=self._tmp_config_path)
91 config = cli_config.CLIConfig(config_file_path=self._tmp_config_path)
100 config = cli_config.CLIConfig(config_file_path=self._tmp_config_path
    [all...]
cli_config.py 40 def __init__(self, config_file_path=None):
41 self._config_file_path = (config_file_path or
readline_ui_test.py 38 config=cli_config.CLIConfig(config_file_path=tempfile.mktemp()))
analyzer_cli_test.py 52 config_file_path=os.path.join(tempfile.mkdtemp(), ".tfdbg_config"))
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/hidl/1.1/
supplicant.cpp 88 * Ensure that the specified config file pointed by |config_file_path| exists.
89 * a) If the |config_file_path| exists with the correct permissions, return.
90 * b) If the |config_file_path| does not exist, but |old_config_file_path|
92 * |config_file_path|.
93 * c) If the |config_file_path| & |old_config_file_path|
97 const std::string& config_file_path,
100 int ret = access(config_file_path.c_str(), R_OK | W_OK);
105 ret = chmod(config_file_path.c_str(), kConfigFileMode);
111 config_file_path.c_str(), strerror(errno));
117 config_file_path.c_str(), strerror(errno))
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/hidl/1.0/
supplicant.cpp 74 * Ensure that the specified config file pointed by |config_file_path| exists.
75 * a) If the |config_file_path| exists with the correct permissions, return.
76 * b) If the |config_file_path| does not exists, copy over the contents of
80 const std::string& config_file_path,
83 int ret = access(config_file_path.c_str(), R_OK | W_OK);
88 ret = chmod(config_file_path.c_str(), kConfigFileMode);
94 config_file_path.c_str(), strerror(errno));
100 config_file_path.c_str(), strerror(errno));
103 ret = copyFileIfItExists(template_config_file_path, config_file_path);
107 template_config_file_path.c_str(), config_file_path.c_str())
    [all...]
  /test/vts-testcase/kernel/config/
VtsKernelConfigTest.py 178 config_file_path = os.path.join(
181 logging.info("Pulling base cfg from %s", config_file_path)
182 with open(config_file_path, 'r') as config_file:
198 config_file_path = os.path.join(self.data_file_path,
203 if os.path.isfile(config_file_path):
204 logging.info("Pulling arch cfg from %s", config_file_path)
205 with open(config_file_path, 'r') as config_file:
  /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)) {
  /development/vndk/tools/sourcedr/sourcedr/
project.py 169 config_file_path = Config.get_default_path(project_dir)
170 if os.path.exists(config_file_path):
  /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(),
  /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/iot/attestation/at-factory-tool/
atft.py 378 config_file_path = os.path.join(self._GetCurrentPath(), self.CONFIG_FILE)
379 if not os.path.exists(config_file_path):
382 with open(config_file_path, 'r') as config_file:
411 config_file_path = os.path.join(self._GetCurrentPath(), self.CONFIG_FILE)
412 with open(config_file_path, 'w') as config_file:
    [all...]

Completed in 563 milliseconds