Home
last modified time | relevance | path

Searched refs:list_offset (Results 1 – 2 of 2) sorted by relevance

/art/dexlayout/
Ddex_writer.cc445 size_t list_offset = offset + handlers->GetListOffset(); in WriteCodeItems() local
448 list_offset += WriteSleb128(size, list_offset); in WriteCodeItems()
451 list_offset += WriteUleb128(handler->GetTypeId()->GetIndex(), list_offset); in WriteCodeItems()
453 list_offset += WriteUleb128(handler->GetAddress(), list_offset); in WriteCodeItems()
Ddex_ir.h847 explicit CatchHandler(bool catch_all, uint16_t list_offset, TypeAddrPairVector* handlers) in CatchHandler() argument
848 : catch_all_(catch_all), list_offset_(list_offset), handlers_(handlers) { } in CatchHandler()