Home
last modified time | relevance | path

Searched refs:Tell (Results 1 – 3 of 3) sorted by relevance

/art/dexlayout/
Ddex_writer.cc233 const uint32_t start = stream->Tell(); in WriteStringIds()
243 if (compute_offsets_ && start != stream->Tell()) { in WriteStringIds()
258 const uint32_t start = stream->Tell(); in WriteStringDatas()
262 if (compute_offsets_ && start != stream->Tell()) { in WriteStringDatas()
269 const uint32_t start = stream->Tell(); in WriteTypeIds()
276 if (compute_offsets_ && start != stream->Tell()) { in WriteTypeIds()
284 const uint32_t start = stream->Tell(); in WriteTypeLists()
295 if (compute_offsets_ && start != stream->Tell()) { in WriteTypeLists()
302 const uint32_t start = stream->Tell(); in WriteProtoIds()
315 if (compute_offsets_ && start != stream->Tell()) { in WriteProtoIds()
[all …]
Dcompact_dex_writer.cc41 const uint32_t start_offset = stream->Tell(); in WriteDebugInfoOffsetTable()
83 debug_info_offsets_pos_ = stream->Tell(); in WriteDebugInfoOffsetTable()
103 return stream->Tell() - start_offset; in WriteDebugInfoOffsetTable()
114 start_offset_(stream->Tell()) { in ScopedDataSectionItem()
124 stream_->Tell(), in ~ScopedDataSectionItem()
132 stream_->Clear(start_offset_, stream_->Tell() - start_offset_); in ~ScopedDataSectionItem()
139 return stream_->Tell() - start_offset_; in Written()
166 const uint32_t current_code_item_start = stream->Tell() + preheader_bytes; in WriteCodeItem()
405 const uint32_t string_ids_offset = main_stream->Tell(); in Write()
408 const uint32_t proto_ids_offset = main_stream->Tell(); in Write()
[all …]
Ddex_writer.h81 size_t Tell() const { in Tell() function
142 ScopedSeek(Stream* stream, uint32_t offset) : stream_(stream), offset_(stream->Tell()) { in ScopedSeek()