Home
last modified time | relevance | path

Searched refs:catch_count (Results 1 – 3 of 3) sorted by relevance

/tools/dexter/slicer/
Dtryblocks_encoder.cc39 dex::s4 catch_count = try_end->handlers.size(); in Visit() local
40 handlers_.PushSLeb128(try_end->catch_all ? -catch_count : catch_count); in Visit()
41 for (int catch_index = 0; catch_index < catch_count; ++catch_index) { in Visit()
Dwriter.cc920 int catch_count = dex::ReadSLeb128(&ptr); in WriteTryBlocks() local
921 handlers_list.PushSLeb128(catch_count); in WriteTryBlocks()
923 for (int catch_index = 0; catch_index < std::abs(catch_count); ++catch_index) { in WriteTryBlocks()
932 if (catch_count < 1) { in WriteTryBlocks()
Dreader.cc744 int catch_count = dex::ReadSLeb128(&ptr); in ExtractCode() local
746 for (int catch_index = 0; catch_index < std::abs(catch_count); ++catch_index) { in ExtractCode()
754 if (catch_count < 1) { in ExtractCode()