Searched refs:local_cb (Results 1 – 2 of 2) sorted by relevance
/art/runtime/ |
D | dex_file.cc | 762 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb, in DecodeDebugInfo0() argument 768 bool need_locals = (local_cb != NULL); in DecodeDebugInfo0() 852 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb); in DecodeDebugInfo0() 873 InvokeLocalCbIfLive(context, reg, address, local_in_reg, local_cb); in DecodeDebugInfo0() 925 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb, in DecodeDebugInfo() argument 929 std::unique_ptr<LocalInfo[]> local_in_reg(local_cb != NULL ? in DecodeDebugInfo() 933 …DecodeDebugInfo0(code_item, is_static, method_idx, position_cb, local_cb, context, stream, &local_… in DecodeDebugInfo() 936 …nvokeLocalCbIfLive(context, reg, code_item->insns_size_in_code_units_, &local_in_reg[0], local_cb); in DecodeDebugInfo()
|
D | dex_file.h | 830 LocalInfo* local_in_reg, DexDebugNewLocalCb local_cb) const { in InvokeLocalCbIfLive() argument 831 if (local_cb != NULL && local_in_reg[reg].is_live_) { in InvokeLocalCbIfLive() 832 local_cb(context, reg, local_in_reg[reg].start_address_, end_address, in InvokeLocalCbIfLive() 850 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb, 949 DexDebugNewPositionCb position_cb, DexDebugNewLocalCb local_cb,
|