Home
last modified time | relevance | path

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

/art/runtime/
Ddex_file.cc680 const uint8_t* handler_data = GetCatchHandlerData(code_item, 0); in GetCodeItemSize() local
682 if (tries_size == 0 || handler_data == nullptr) { in GetCodeItemSize()
687 uint32_t handlers_size = DecodeUnsignedLeb128(&handler_data); in GetCodeItemSize()
690 int32_t uleb128_count = DecodeSignedLeb128(&handler_data) * 2; in GetCodeItemSize()
695 DecodeUnsignedLeb128(&handler_data); in GetCodeItemSize()
698 return reinterpret_cast<uintptr_t>(handler_data) - code_item_start; in GetCodeItemSize()
1558 void CatchHandlerIterator::Init(const uint8_t* handler_data) { in Init() argument
1559 current_data_ = handler_data; in Init()
Ddex_file.h839 const uint8_t* handler_data = in GetCatchHandlerData() local
841 return handler_data + offset; in GetCatchHandlerData()
1607 explicit CatchHandlerIterator(const uint8_t* handler_data) { in CatchHandlerIterator() argument
1608 Init(handler_data); in CatchHandlerIterator()
1629 void Init(const uint8_t* handler_data);