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.h32 explicit CatchHandlerIterator(const uint8_t* handler_data) { in CatchHandlerIterator() argument
33 Init(handler_data); in CatchHandlerIterator()
54 void Init(const uint8_t* handler_data);
Dcode_item_accessors-inl.h140 const uint8_t* handler_data = GetCatchHandlerData(); in CodeItemDataEnd() local
142 if (TriesSize() == 0 || handler_data == nullptr) { in CodeItemDataEnd()
146 const uint32_t handlers_size = DecodeUnsignedLeb128(&handler_data); in CodeItemDataEnd()
149 int32_t uleb128_count = DecodeSignedLeb128(&handler_data) * 2; in CodeItemDataEnd()
154 DecodeUnsignedLeb128(&handler_data); in CodeItemDataEnd()
157 return reinterpret_cast<const void*>(handler_data); in CodeItemDataEnd()
Ddex_file_exception_helpers.cc69 void CatchHandlerIterator::Init(const uint8_t* handler_data) { in Init() argument
70 current_data_ = handler_data; in Init()
Ddex_file-inl.h513 const uint8_t* handler_data = in GetCatchHandlerData() local
515 return handler_data + offset; in GetCatchHandlerData()