Searched refs:reserve_only (Results 1 – 4 of 4) sorted by relevance
/art/dexlayout/ |
D | dex_writer.h | 239 void WriteStringIds(Stream* stream, bool reserve_only); 241 void WriteProtoIds(Stream* stream, bool reserve_only); 244 void WriteClassDefs(Stream* stream, bool reserve_only); 245 void WriteCallSiteIds(Stream* stream, bool reserve_only); 255 void WriteCodeItems(Stream* stream, bool reserve_only); 265 bool reserve_only); 266 virtual void WriteCodeItem(Stream* stream, dex_ir::CodeItem* item, bool reserve_only);
|
D | dex_writer.cc | 232 void DexWriter::WriteStringIds(Stream* stream, bool reserve_only) { in WriteStringIds() argument 236 if (reserve_only) { in WriteStringIds() 300 void DexWriter::WriteProtoIds(Stream* stream, bool reserve_only) { in WriteProtoIds() argument 306 if (reserve_only) { in WriteProtoIds() 489 bool reserve_only) { in WriteCodeItemPostInstructionData() argument 495 if (!reserve_only) { in WriteCodeItemPostInstructionData() 525 bool reserve_only) { in WriteCodeItem() argument 532 if (!reserve_only) { in WriteCodeItem() 548 WriteCodeItemPostInstructionData(stream, code_item, reserve_only); in WriteCodeItem() 549 if (reserve_only) { in WriteCodeItem() [all …]
|
D | compact_dex_writer.h | 152 void WriteCodeItem(Stream* stream, dex_ir::CodeItem* code_item, bool reserve_only) OVERRIDE;
|
D | compact_dex_writer.cc | 143 bool reserve_only) { in WriteCodeItem() argument 145 DCHECK(!reserve_only) << "Not supported because of deduping."; in WriteCodeItem() 200 WriteCodeItemPostInstructionData(stream, code_item, reserve_only); in WriteCodeItem()
|