HomeSort by relevance Sort by last modified time
    Searched refs:this_object (Results 1 - 25 of 28) sorted by null

1 2

  /art/runtime/entrypoints/portable/
portable_invoke_entrypoints.cc 25 mirror::Object* this_object,
32 this_object,
37 method = FindMethodFromCode(method_idx, this_object, caller_method,
57 mirror::Object* this_object,
61 return FindMethodHelper(method_idx, this_object, referrer, true, kStatic, thread);
65 mirror::Object* this_object,
69 return FindMethodHelper(method_idx, this_object, referrer, true, kDirect, thread);
73 mirror::Object* this_object,
77 return FindMethodHelper(method_idx, this_object, referrer, true, kVirtual, thread);
81 mirror::Object* this_object,
    [all...]
  /art/runtime/entrypoints/quick/
quick_invoke_entrypoints.cc 30 mirror::Object* this_object,
36 method = this_object->GetClass()->FindVirtualMethodForInterface(interface_method);
39 ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch(interface_method, this_object,
121 method = FindMethodFromCode(dex_method_idx, this_object, caller_method, self,
146 static uint64_t artInvokeCommon(uint32_t method_idx, mirror::Object* this_object,
151 mirror::ArtMethod* method = FindMethodFast(method_idx, this_object, caller_method,
155 method = FindMethodFromCode(method_idx, this_object, caller_method, self, access_check, type);
181 mirror::Object* this_object,
186 return artInvokeCommon(method_idx, this_object, caller_method, self, sp, true, kInterface);
191 mirror::Object* this_object,
    [all...]
quick_instrumentation_entrypoints.cc 27 mirror::Object* this_object,
36 instrumentation->PushInstrumentationStackFrame(self, method->IsStatic() ? NULL : this_object,
  /art/runtime/
instrumentation.h 49 virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
56 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
67 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
154 void MethodEnterEvent(Thread* thread, mirror::Object* this_object,
158 MethodEnterEventImpl(thread, this_object, method, dex_pc);
163 void MethodExitEvent(Thread* thread, mirror::Object* this_object,
168 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value);
173 void MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
178 void DexPcMovedEvent(Thread* thread, mirror::Object* this_object,
182 DexPcMovedEventImpl(thread, this_object, method, dex_pc)
    [all...]
instrumentation.cc 171 mirror::Object* this_object = (*it).this_object_; local
175 instrumentation->MethodEnterEvent(thread, this_object, method, dex_pc);
404 void Instrumentation::MethodEnterEventImpl(Thread* thread, mirror::Object* this_object,
414 cur->MethodEntered(thread, this_object, method, dex_pc);
418 void Instrumentation::MethodExitEventImpl(Thread* thread, mirror::Object* this_object,
428 cur->MethodExited(thread, this_object, method, dex_pc, return_value);
432 void Instrumentation::MethodUnwindEvent(Thread* thread, mirror::Object* this_object,
442 void Instrumentation::DexPcMovedEventImpl(Thread* thread, mirror::Object* this_object,
451 listener->DexPcMoved(thread, this_object, method, dex_pc);
481 void Instrumentation::PushInstrumentationStackFrame(Thread* self, mirror::Object* this_object,
522 mirror::Object* this_object = instrumentation_frame.this_object_; local
    [all...]
trace.h 75 virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
78 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
84 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
common_throws.h 109 mirror::Object* this_object,
common_throws.cc 201 mirror::Object* this_object,
203 // Referrer is calling interface_method on this_object, however, the interface_method isn't
204 // implemented by this_object.
205 CHECK(this_object != NULL);
207 msg << "Class '" << PrettyDescriptor(this_object->GetClass())
debugger.cc 117 virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
124 Dbg::PostLocationEvent(method, 0, this_object, Dbg::kMethodEntry);
127 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
136 Dbg::PostLocationEvent(method, dex_pc, this_object, Dbg::kMethodExit);
146 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
149 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc);
1990 mirror::Object* this_object; member in struct:art::GetThisVisitor
    [all...]
trace.cc 547 void Trace::DexPcMoved(Thread* thread, mirror::Object* this_object,
553 void Trace::MethodEntered(Thread* thread, mirror::Object* this_object,
562 void Trace::MethodExited(Thread* thread, mirror::Object* this_object,
  /external/chromium_org/chrome_frame/
protocol_sink_wrap.h 28 IInternetProtocol* this_object, LPCWSTR url,
32 IInternetProtocol* this_object, void* buffer, ULONG size,
35 IInternetProtocolEx* this_object, IUri* uri,
39 IInternetProtocol* this_object, DWORD options);
41 IInternetProtocol* this_object);
43 IInternetProtocol* this_object, HRESULT hr, DWORD options);
45 IInternetProtocol* this_object, DWORD options);
  /external/chromium_org/content/browser/
child_process_launcher.cc 114 // |this_object| is NOT thread safe. Only use it to post a task back.
115 scoped_refptr<Context> this_object,
123 this_object->Notify(handle);
129 this_object,
179 // |this_object| is NOT thread safe. Only use it to post a task back.
180 scoped_refptr<Context> this_object,
217 this_object, client_thread_id, begin_launch_time));
306 this_object.get(),
  /art/runtime/entrypoints/
entrypoint_utils.cc 162 mirror::ArtMethod* FindMethodFromCode(uint32_t method_idx, mirror::Object* this_object,
171 } else if (UNLIKELY(this_object == NULL && type != kStatic)) {
184 this_object->GetClass()->FindVirtualMethodForInterface(resolved_method);
186 ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch(resolved_method, this_object,
198 vtable = this_object->GetClass()->GetVTable();
236 this_object->GetClass()->FindVirtualMethodForInterface(resolved_method);
238 ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch(resolved_method, this_object,
255 vtable = this_object->GetClass()->GetVTable();
entrypoint_utils.h 190 mirror::Object* this_object,
195 if (UNLIKELY(this_object == NULL && !is_direct)) {
219 return this_object->GetClass()->FindVirtualMethodForInterface(resolved_method);
227 return this_object->GetClass()->GetVTable()->Get(resolved_method->GetMethodIndex());
231 extern mirror::ArtMethod* FindMethodFromCode(uint32_t method_idx, mirror::Object* this_object,
  /external/chromium_org/ppapi/proxy/
ppb_var_deprecated_proxy.h 65 SerializedVarReceiveInput this_object,
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/gcov-src/
libgcov.c 185 static struct gcov_summary this_object; variable in typeref:struct:gcov_summary
930 cs_tobj = &this_object.ctrs[t_ix];
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/gcov-src/
libgcov.c 185 static struct gcov_summary this_object; variable in typeref:struct:gcov_summary
930 cs_tobj = &this_object.ctrs[t_ix];
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.6/lib/gcc/mipsel-linux-android/4.6/gcov-src/
libgcov.c 185 static struct gcov_summary this_object; variable in typeref:struct:gcov_summary
930 cs_tobj = &this_object.ctrs[t_ix];
    [all...]
  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.6/lib/gcc/i686-linux-android/4.6/gcov-src/
libgcov.c 185 static struct gcov_summary this_object; variable in typeref:struct:gcov_summary
930 cs_tobj = &this_object.ctrs[t_ix];
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/gcov-src/
libgcov.c 185 static struct gcov_summary this_object; variable in typeref:struct:gcov_summary
930 cs_tobj = &this_object.ctrs[t_ix];
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/gcov-src/
libgcov.c 185 static struct gcov_summary this_object; variable in typeref:struct:gcov_summary
930 cs_tobj = &this_object.ctrs[t_ix];
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/gcov-src/
libgcov.c 185 static struct gcov_summary this_object; variable in typeref:struct:gcov_summary
930 cs_tobj = &this_object.ctrs[t_ix];
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/gcov-src/
libgcov.c 185 static struct gcov_summary this_object; variable in typeref:struct:gcov_summary
930 cs_tobj = &this_object.ctrs[t_ix];
    [all...]
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.6/lib/gcc/mipsel-linux-android/4.6/gcov-src/
libgcov.c 185 static struct gcov_summary this_object; variable in typeref:struct:gcov_summary
930 cs_tobj = &this_object.ctrs[t_ix];
    [all...]
  /prebuilts/gcc/linux-x86/x86/i686-linux-android-4.6/lib/gcc/i686-linux-android/4.6/gcov-src/
libgcov.c 185 static struct gcov_summary this_object; variable in typeref:struct:gcov_summary
930 cs_tobj = &this_object.ctrs[t_ix];
    [all...]

Completed in 1148 milliseconds

1 2