Searched refs:output_file_name (Results 1 – 5 of 5) sorted by relevance
/system/core/fs_mgr/libfs_avb/tests/ |
D | fs_avb_test_util.cpp | 121 const std::string& output_file_name, in ExtractVBMetaImage() argument 124 vbmeta_image.path = test_dir_.Append(output_file_name); in ExtractVBMetaImage() 125 GTEST_LOG_(INFO) << "ExtractVBMetaImage: " << image_path << " to " << output_file_name; in ExtractVBMetaImage() 138 vbmeta_images_.emplace(output_file_name, std::move(vbmeta_image)); in ExtractVBMetaImage() 141 return vbmeta_images_[output_file_name].path; in ExtractVBMetaImage() 226 const std::string& output_file_name) { in ExtractAndLoadVBMetaData() argument 227 ExtractVBMetaImage(image_path, output_file_name); in ExtractAndLoadVBMetaData() 228 return LoadVBMetaData(output_file_name); in ExtractAndLoadVBMetaData()
|
D | fs_avb_test_util.h | 91 const std::string& output_file_name, 112 const std::string& output_file_name);
|
/system/iorap/src/compiler/ |
D | compiler.h | 58 std::string output_file_name,
|
D | compiler.cc | 869 std::string output_file_name, in PerformCompilation() argument 881 if (!output_file_name.empty()) { in PerformCompilation() 884 ofs.open(output_file_name); in PerformCompilation() 887 LOG(ERROR) << "compiler: Failed to open output file for writing: " << output_file_name; in PerformCompilation() 966 if (output_file_name.empty()) { in PerformCompilation() 976 LOG(DEBUG) << "compiler: WriteFully to begin into " << output_file_name; in PerformCompilation() 978 if (auto res = serialize::ProtobufIO::WriteFully(message, output_file_name); !res) { in PerformCompilation() 980 PLOG(ERROR) << "compiler: Failed to write protobuf to file: " << output_file_name; in PerformCompilation() 983 LOG(INFO) << "compiler: Wrote protobuf " << output_file_name; in PerformCompilation()
|
/system/tools/aidl/ |
D | aidl.cpp | 807 string output_file_name = options.OutputFile(); in compile_aidl() local 809 if (output_file_name.empty() && !options.OutputDir().empty()) { in compile_aidl() 810 output_file_name = GetOutputFilePath(options, *defined_type); in compile_aidl() 811 if (output_file_name.empty()) { in compile_aidl() 817 output_file_name)) { in compile_aidl() 824 cpp::GenerateCpp(output_file_name, options, typenames, *defined_type, io_delegate); in compile_aidl() 826 ndk::GenerateNdk(output_file_name, options, typenames, *defined_type, io_delegate); in compile_aidl() 833 success = java::generate_java(output_file_name, defined_type.get(), typenames, in compile_aidl() 837 success = rust::GenerateRust(output_file_name, defined_type.get(), typenames, io_delegate, in compile_aidl()
|