Searched defs:handlers_size (Results 1 - 4 of 4) 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/runtime/
H A Ddex_file_verifier.cc448 uint32_t* handler_offsets, uint32_t handlers_size) {
451 for (uint32_t i = 0; i < handlers_size; i++) {
995 uint32_t handlers_size = DecodeUnsignedLeb128(&ptr_); local
997 if (UNLIKELY((handlers_size == 0) || (handlers_size >= 65536))) {
998 ErrorStringPrintf("Invalid handlers_size: %ud", handlers_size);
1002 std::unique_ptr<uint32_t[]> handler_offsets(new uint32_t[handlers_size]);
1003 if (!CheckAndGetHandlerOffsets(code_item, &handler_offsets[0], handlers_size)) {
1020 for (i = 0; i < handlers_size;
447 CheckAndGetHandlerOffsets(const DexFile::CodeItem* code_item, uint32_t* handler_offsets, uint32_t handlers_size) argument
[all...]
H A Dclass_linker.cc4129 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); local
4130 for (uint32_t idx = 0; idx < handlers_size; idx++) {
/art/runtime/verifier/
H A Dmethod_verifier.cc1029 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); local
1031 for (uint32_t idx = 0; idx < handlers_size; idx++) {
3697 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); local
3698 for (uint32_t i = 0; i < handlers_size; i++) {

Completed in 277 milliseconds