Home
last modified time | relevance | path

Searched refs:handler_data (Results 1 – 4 of 4) sorted by relevance

/art/libdexfile/dex/
Ddex_file_exception_helpers.h38 explicit CatchHandlerIterator(const uint8_t* handler_data) { in CatchHandlerIterator() argument
39 Init(handler_data); in CatchHandlerIterator()
60 void Init(const uint8_t* handler_data);
Dcode_item_accessors-inl.h150 const uint8_t* handler_data = GetCatchHandlerData(); in CodeItemDataEnd() local
152 if (TriesSize() == 0 || handler_data == nullptr) { in CodeItemDataEnd()
156 const uint32_t handlers_size = DecodeUnsignedLeb128(&handler_data); in CodeItemDataEnd()
159 int32_t uleb128_count = DecodeSignedLeb128(&handler_data) * 2; in CodeItemDataEnd()
164 DecodeUnsignedLeb128(&handler_data); in CodeItemDataEnd()
167 return reinterpret_cast<const void*>(handler_data); in CodeItemDataEnd()
Ddex_file_exception_helpers.cc70 void CatchHandlerIterator::Init(const uint8_t* handler_data) { in Init() argument
71 current_data_ = handler_data; in Init()
Ddex_file-inl.h449 const uint8_t* handler_data = in GetCatchHandlerData() local
451 return handler_data + offset; in GetCatchHandlerData()