Searched refs:dex_layout (Results 1 – 6 of 6) sorted by relevance
/art/dexlayout/ |
D | dexlayout_main.cc | 198 DexLayout dex_layout(options, profile_info.get(), out_file, /*header*/ nullptr); in DexlayoutDriver() local 203 result |= dex_layout.ProcessFile(argv[optind++]); in DexlayoutDriver()
|
D | dex_writer.h | 214 DexWriter(DexLayout* dex_layout, bool compute_offsets); 216 static bool Output(DexLayout* dex_layout,
|
D | dex_writer.cc | 112 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()
|
D | compact_dex_writer.h | 33 explicit CompactDexWriter(DexLayout* dex_layout);
|
D | compact_dex_writer.cc | 28 CompactDexWriter::CompactDexWriter(DexLayout* dex_layout) in CompactDexWriter() argument 29 : DexWriter(dex_layout, /*compute_offsets*/ true) { in CompactDexWriter()
|
/art/openjdkjvmti/ |
D | fixed_up_dex_file.cc | 130 art::DexLayout dex_layout(options, in Create() local 135 bool result = dex_layout.ProcessDexFile( in Create()
|