Home
last modified time | relevance | path

Searched refs:input_file_path (Results 1 – 9 of 9) sorted by relevance

/system/tools/sysprop/
DRustMain.cpp34 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()
DJavaMain.cpp35 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()
DCppMain.cpp34 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()
DCommon.cpp295 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()
DRustGen.cpp345 Result<void> GenerateRustLibrary(const std::string& input_file_path, in GenerateRustLibrary() argument
350 if (auto res = ParseProps(input_file_path); res.ok()) { in GenerateRustLibrary()
DJavaGen.cpp469 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/
DJavaGen.h25 const std::string& input_file_path, sysprop::Scope scope,
DRustGen.h26 const std::string& input_file_path, sysprop::Scope scope,
DCppGen.h23 const std::string& input_file_path, const std::string& header_dir,