Home
last modified time | relevance | path

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

/aosp12/system/tools/sysprop/
H A 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()
H A 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()
H A 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()
H A DJavaGen.cpp468 Result<void> GenerateJavaLibrary(const std::string& input_file_path, in GenerateJavaLibrary() argument
473 if (auto res = ParseProps(input_file_path); res.ok()) { in GenerateJavaLibrary()
/aosp12/system/tools/sysprop/include/
H A DJavaGen.h25 const std::string& input_file_path, sysprop::Scope scope,
H A DCppGen.h23 const std::string& input_file_path, const std::string& header_dir,
/aosp12/frameworks/av/media/tests/benchmark/MediaBenchmarkTest/src/androidTest/java/com/android/media/benchmark/tests/
H A DExtractorTest.java52 private static final String mInputFilePath = mContext.getString(R.string.input_file_path);
H A DMuxerTest.java59 private static final String mInputFilePath = mContext.getString(R.string.input_file_path);
H A DDecoderTest.java57 private static final String mInputFilePath = mContext.getString(R.string.input_file_path);
H A DEncoderTest.java62 private static final String mInputFilePath = mContext.getString(R.string.input_file_path);
/aosp12/art/odrefresh/
H A Dodrefresh.cc169 const std::string input_file_path = file->GetPath(); in MoveOrEraseFiles() local