OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:old_throw_location
(Results
1 - 3
of
3
) sorted by null
/art/runtime/mirror/
class.cc
81
ThrowLocation
old_throw_location
;
local
82
Handle<mirror::Throwable> old_exception(hs.NewHandle(self->GetException(&
old_throw_location
)));
84
Handle<mirror::Object> old_throw_this_object(hs.NewHandle(
old_throw_location
.GetThis()));
85
Handle<mirror::ArtMethod> old_throw_method(hs.NewHandle(
old_throw_location
.GetMethod()));
86
uint32_t old_throw_dex_pc =
old_throw_location
.GetDexPc();
/art/runtime/
debugger.cc
3785
ThrowLocation
old_throw_location
;
local
[
all
...]
jni_internal.cc
731
ThrowLocation
old_throw_location
;
local
732
mirror::Throwable* old_exception_obj = soa.Self()->GetException(&
old_throw_location
);
733
old_throw_this_object.Assign(
old_throw_location
.GetThis());
734
old_throw_method.Assign(
old_throw_location
.GetMethod());
736
old_throw_dex_pc =
old_throw_location
.GetDexPc();
[
all
...]
Completed in 726 milliseconds