Home
last modified time | relevance | path

Searched refs:dex_layout (Results 1 – 6 of 6) sorted by relevance

/art/dexlayout/
Ddexlayout_main.cc198 DexLayout dex_layout(options, profile_info.get(), out_file, /*header*/ nullptr); in DexlayoutDriver() local
203 result |= dex_layout.ProcessFile(argv[optind++]); in DexlayoutDriver()
Ddex_writer.h214 DexWriter(DexLayout* dex_layout, bool compute_offsets);
216 static bool Output(DexLayout* dex_layout,
Ddex_writer.cc112 DexWriter::DexWriter(DexLayout* dex_layout, bool compute_offsets) in DexWriter() argument
113 : header_(dex_layout->GetHeader()), in DexWriter()
114 dex_layout_(dex_layout), in DexWriter()
913 bool DexWriter::Output(DexLayout* dex_layout, in Output() argument
917 CHECK(dex_layout != nullptr); in Output()
919 if (dex_layout->GetOptions().compact_dex_level_ != CompactDexLevel::kCompactDexLevelNone) { in Output()
921 writer.reset(new CompactDexWriter(dex_layout)); in Output()
923 writer.reset(new DexWriter(dex_layout, compute_offsets)); in Output()
Dcompact_dex_writer.h33 explicit CompactDexWriter(DexLayout* dex_layout);
Dcompact_dex_writer.cc28 CompactDexWriter::CompactDexWriter(DexLayout* dex_layout) in CompactDexWriter() argument
29 : DexWriter(dex_layout, /*compute_offsets*/ true) { in CompactDexWriter()
/art/openjdkjvmti/
Dfixed_up_dex_file.cc130 art::DexLayout dex_layout(options, in Create() local
135 bool result = dex_layout.ProcessDexFile( in Create()