Searched refs:out_path (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/tools/aapt2/io/
H A DUtil.cpp24 bool CopyInputStreamToArchive(IAaptContext* context, InputStream* in, const std::string& out_path, argument
27 context->GetDiagnostics()->Note(DiagMessage() << "writing " << out_path << " to archive");
30 if (!writer->WriteFile(out_path, compression_flags, in)) {
31 context->GetDiagnostics()->Error(DiagMessage() << "failed to write " << out_path
38 bool CopyFileToArchive(IAaptContext* context, io::IFile* file, const std::string& out_path, argument
45 return CopyInputStreamToArchive(context, data.get(), out_path, compression_flags, writer);
49 const std::string& out_path, uint32_t compression_flags,
52 context->GetDiagnostics()->Note(DiagMessage() << "writing " << out_path << " to archive");
55 if (writer->StartEntry(out_path, compression_flags)) {
61 context->GetDiagnostics()->Error(DiagMessage() << "failed to write " << out_path
48 CopyProtoToArchive(IAaptContext* context, ::google::protobuf::MessageLite* proto_msg, const std::string& out_path, uint32_t compression_flags, IArchiveWriter* writer) argument
[all...]
H A DUtil.h32 bool CopyInputStreamToArchive(IAaptContext* context, InputStream* in, const std::string& out_path,
35 bool CopyFileToArchive(IAaptContext* context, IFile* file, const std::string& out_path,
39 const std::string& out_path, uint32_t compression_flags,
/frameworks/layoutlib/rename_font/
H A Dtest.py30 out_path = os.path.join(destdir, font_name)
31 ttx.main([out_path])
32 ttx_path = out_path[:-1] + "x"
/frameworks/base/tools/aapt2/cmd/
H A DUtil.h37 // `out_path` with the path and `out_split` with the set of ConfigDescriptions.
39 bool ParseSplitParameter(const android::StringPiece& arg, IDiagnostics* diag, std::string* out_path,
H A DLink.cpp929 std::string out_path = options_.generate_java_class_path.value(); local
930 file::AppendPath(&out_path, file::PackageToPath(out_package));
931 if (!file::mkdirs(out_path)) {
932 context_->GetDiagnostics()->Error(DiagMessage() << "failed to create directory '" << out_path
937 file::AppendPath(&out_path, "R.java");
939 std::ofstream fout(out_path, std::ofstream::binary);
942 << "failed writing to '" << out_path
961 context_->GetDiagnostics()->Error(DiagMessage(out_path) << generator.getError());
967 << "failed writing to '" << out_path
1001 std::string out_path local
1034 const std::string& out_path = out.value(); local
[all...]
H A DUtil.cpp54 bool ParseSplitParameter(const StringPiece& arg, IDiagnostics* diag, std::string* out_path, argument
57 CHECK(out_path != nullptr);
74 *out_path = parts[0];
/frameworks/rs/tests/java_api/RSUnitTests/
H A DRSUnitTests.py301 out_path = os.path.join(SupportLibGenTestDir(), java_file_name)
302 with open(in_path, 'r') as in_file, open(out_path, 'w') as out_file:
317 out_path = os.path.join(SupportLibGenTestDir(), rs_file_name)
318 with open(out_path, 'w') as out_file:
/frameworks/base/tools/aapt2/util/
H A DFiles.cpp158 std::string out_path; local
160 AppendPath(&out_path, part);
162 return out_path;
/frameworks/native/cmds/installd/
H A Ddexopt.cpp2002 char out_path[PKG_PATH_MAX]; local
2004 /*is_secondary_dex*/false, out_path)) {
2022 bool return_value_oat = unlink_and_check(out_path);
2025 bool return_value_art = unlink_and_check(create_image_filename(out_path).c_str());
2028 bool return_value_vdex = unlink_and_check(create_vdex_filename(out_path).c_str());

Completed in 205 milliseconds