Home
last modified time | relevance | path

Searched refs:file_path (Results 1 – 14 of 14) sorted by relevance

/test/dittosuite/src/
Dutils.cpp33 char file_path[PATH_MAX]; in GetFilePath() local
34 if (syscall.ReadLink("/proc/self/fd/" + std::to_string(fd), file_path, sizeof(file_path)) == -1) { in GetFilePath()
37 return std::string(file_path); in GetFilePath()
Dparser.cpp41 void Parser::Parse(const std::string& file_path, const std::vector<std::string>& parameters) { in Parse() argument
45 std::ifstream file(file_path); in Parse()
47 LOGF("Provided .ditto file was not found: " + file_path); in Parse()
Darg_parser.cpp138 arguments.file_path = argv[optind]; in ParseArguments()
/test/app_compat/csuite/tools/script/
Dgenerate_module.py139 file_path = os.path.join(path, filename)
140 if os.path.isdir(file_path) and not os.listdir(file_path):
141 os.rmdir(file_path)
/test/dittosuite/
Ddittobench_benchmark.cpp42 .file_path = ditto_path}; in BM_DittoBench()
44 dittosuite::Parser::GetParser().Parse(arguments.file_path, arguments.parameters); in BM_DittoBench()
Ddittobench.cpp28 dittosuite::Parser::GetParser().Parse(arguments.file_path, arguments.parameters); in main()
Ddittotrace.cpp37 std::vector<std::string> ReadLines(const std::string& file_path) { in ReadLines() argument
41 std::ifstream input(file_path); in ReadLines()
/test/dittosuite/include/ditto/
Darg_parser.h29 std::string file_path; member
Dparser.h29 void Parse(const std::string& file_path, const std::vector<std::string>& parameters);
/test/vts-testcase/hal/treble/vintf/
Dutils.cpp142 string file_path = kDataDir + PackageRoot(fq_iface_name) + kHashFileName; in ReleasedHashes() local
143 auto hashes = Hash::lookupHash(file_path, fq_iface_name.string(), &err); in ReleasedHashes()
/test/vts/vndk_utils/library/vtable/
Dvtable_dumper.py100 def __init__(self, file_path, begin_offset=0): argument
110 super(VtableDumper, self).__init__(file_path, begin_offset)
/test/vts-testcase/kernel/ltp/testcase/tools/
Dltp_test_cases.py81file_path = os.path.join(self._android_build_top, ltp_configs.LTP_CONFIG_TEMPLATE_DIR, file_name)
82 with open(file_path, 'r') as f:
/test/mlts/benchmark/tools/
Dtensor_utils.py211 def bytes_to_numpy_tensor(self, file_path): argument
213 if 'quant' in file_path or '8bit' in file_path:
217 with open(file_path, mode='rb') as f:
/test/vts/vndk_utils/library/
Delf_parser.py65 def __init__(self, file_path, begin_offset=0): argument
77 self._file = open(file_path, 'rb')