Searched defs:handlers_size (Results 1 - 5 of 5) sorted by relevance

/art/compiler/optimizing/
H A Dblock_builder.cc66 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); local
67 for (uint32_t idx = 0; idx < handlers_size; ++idx) {
277 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); local
278 for (uint32_t idx = 0; idx < handlers_size; ++idx) {
/art/dexlayout/
H A Ddex_ir.cc70 uint32_t handlers_size = DecodeUnsignedLeb128(&handler_data); local
72 for (uint32_t i = 0; i < handlers_size; ++i) {
647 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_data); local
648 while (handlers_size > handler_list->size()) {
/art/runtime/
H A Ddex_file_verifier.cc572 uint32_t* handler_offsets, uint32_t handlers_size) {
575 for (uint32_t i = 0; i < handlers_size; i++) {
1264 DECODE_UNSIGNED_CHECKED_FROM(ptr_, handlers_size);
1266 if (UNLIKELY((handlers_size == 0) || (handlers_size >= 65536))) {
1267 ErrorStringPrintf("Invalid handlers_size: %ud", handlers_size);
1271 std::unique_ptr<uint32_t[]> handler_offsets(new uint32_t[handlers_size]);
1272 if (!CheckAndGetHandlerOffsets(code_item, &handler_offsets[0], handlers_size)) {
1289 for (i = 0; i < handlers_size;
571 CheckAndGetHandlerOffsets(const DexFile::CodeItem* code_item, uint32_t* handler_offsets, uint32_t handlers_size) argument
[all...]
H A Dclass_linker.cc4267 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); local
4268 for (uint32_t idx = 0; idx < handlers_size; idx++) {
/art/runtime/verifier/
H A Dmethod_verifier.cc1072 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); local
1074 for (uint32_t idx = 0; idx < handlers_size; idx++) {
3777 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); local
3778 for (uint32_t i = 0; i < handlers_size; i++) {

Completed in 593 milliseconds