Searched refs:input_file_path (Results 1 – 9 of 9) sorted by relevance
/system/tools/sysprop/ |
D | RustMain.cpp | 34 std::string input_file_path; member 83 args->input_file_path = argv[optind]; in ParseArgs() 99 if (auto res = GenerateRustLibrary(args.input_file_path, args.scope, in main() 103 << args.input_file_path << ": " << res.error(); in main()
|
D | JavaMain.cpp | 35 std::string input_file_path; member 84 args->input_file_path = argv[optind]; in ParseArgs() 100 if (auto res = GenerateJavaLibrary(args.input_file_path, args.scope, in main() 104 << args.input_file_path << ": " << res.error(); in main()
|
D | CppMain.cpp | 34 std::string input_file_path; member 94 ret.input_file_path = argv[optind]; in ParseArgs() 110 if (auto res = GenerateCppFiles(args.input_file_path, args.header_dir, in main() 115 << args.input_file_path << ": " << res.error(); in main()
|
D | Common.cpp | 295 Result<sysprop::Properties> ParseProps(const std::string& input_file_path) { in ParseProps() argument 299 if (!android::base::ReadFileToString(input_file_path, &file_contents, true)) { in ParseProps() 300 return ErrnoErrorf("Error reading file {}", input_file_path); in ParseProps() 304 return Errorf("Error parsing file {}", input_file_path); in ParseProps() 318 const std::string& input_file_path) { in ParseApiFile() argument 322 if (!android::base::ReadFileToString(input_file_path, &file_contents, true)) { in ParseApiFile() 323 return ErrnoErrorf("Error reading file {}", input_file_path); in ParseApiFile() 327 return Errorf("Error parsing file {}", input_file_path); in ParseApiFile() 337 input_file_path, props->module()); in ParseApiFile()
|
D | RustGen.cpp | 345 Result<void> GenerateRustLibrary(const std::string& input_file_path, in GenerateRustLibrary() argument 350 if (auto res = ParseProps(input_file_path); res.ok()) { in GenerateRustLibrary()
|
D | JavaGen.cpp | 469 Result<void> GenerateJavaLibrary(const std::string& input_file_path, in GenerateJavaLibrary() argument 474 if (auto res = ParseProps(input_file_path); res.ok()) { in GenerateJavaLibrary()
|
/system/tools/sysprop/include/ |
D | JavaGen.h | 25 const std::string& input_file_path, sysprop::Scope scope,
|
D | RustGen.h | 26 const std::string& input_file_path, sysprop::Scope scope,
|
D | CppGen.h | 23 const std::string& input_file_path, const std::string& header_dir,
|