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

1 2

  /art/runtime/entrypoints/portable/
portable_invoke_entrypoints.cc 25 mirror::ArtMethod* FindMethodHelper(uint32_t method_idx, mirror::Object* this_object,
27 mirror::ArtMethod* method = FindMethodFast(method_idx, this_object, caller_method,
32 method = FindMethodFromCode<type, access_check>(method_idx, &this_object, &caller_method,
58 mirror::Object* this_object, \
75 mirror::Object* this_object,
79 return FindMethodHelper<kStatic, true>(method_idx, this_object, referrer, thread);
83 mirror::Object* this_object,
87 return FindMethodHelper<kDirect, true>(method_idx, this_object, referrer, thread);
91 mirror::Object* this_object,
95 return FindMethodHelper<kVirtual, true>(method_idx, this_object, referrer, thread)
    [all...]
  /art/runtime/
instrumentation.h 61 virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
68 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
75 virtual void MethodUnwind(Thread* thread, mirror::Object* this_object,
80 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
85 virtual void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
89 virtual void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
260 void MethodEnterEvent(Thread* thread, mirror::Object* this_object,
264 MethodEnterEventImpl(thread, this_object, method, dex_pc);
269 void MethodExitEvent(Thread* thread, mirror::Object* this_object,
274 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value)
    [all...]
trace.h 78 void MethodEntered(Thread* thread, mirror::Object* this_object,
81 void MethodExited(Thread* thread, mirror::Object* this_object,
85 void MethodUnwind(Thread* thread, mirror::Object* this_object,
88 void DexPcMoved(Thread* thread, mirror::Object* this_object,
91 void FieldRead(Thread* thread, mirror::Object* this_object,
94 void FieldWritten(Thread* thread, mirror::Object* this_object,
instrumentation.cc 1082 mirror::Object* this_object = instrumentation_frame.this_object_; local
    [all...]
common_throws.cc 225 mirror::Object* this_object,
227 // Referrer is calling interface_method on this_object, however, the interface_method isn't
228 // implemented by this_object.
229 CHECK(this_object != NULL);
231 msg << "Class '" << PrettyDescriptor(this_object->GetClass())
trace.cc 568 void Trace::DexPcMoved(Thread* thread, mirror::Object* this_object,
574 void Trace::FieldRead(Thread* /*thread*/, mirror::Object* this_object,
581 void Trace::FieldWritten(Thread* /*thread*/, mirror::Object* this_object,
589 void Trace::MethodEntered(Thread* thread, mirror::Object* this_object,
598 void Trace::MethodExited(Thread* thread, mirror::Object* this_object,
609 void Trace::MethodUnwind(Thread* thread, mirror::Object* this_object,
common_throws.h 112 mirror::Object* this_object,
debugger.cc 237 void MethodEntered(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
244 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
247 void MethodExited(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
254 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, Dbg::kMethodExit, &return_value);
257 void MethodUnwind(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
265 void DexPcMoved(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
268 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, 0, nullptr);
271 void FieldRead(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method,
274 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
277 void FieldWritten(Thread* thread, mirror::Object* this_object, mirror::ArtMethod* method
2450 mirror::Object* this_object; member in struct:art::GetThisVisitor
    [all...]
debugger.h 503 static void PostFieldAccessEvent(mirror::ArtMethod* m, int dex_pc, mirror::Object* this_object,
507 mirror::Object* this_object, mirror::ArtField* f,
520 static void UpdateDebugger(Thread* thread, mirror::Object* this_object,
  /art/runtime/entrypoints/quick/
quick_instrumentation_entrypoints.cc 28 mirror::Object* this_object,
44 instrumentation->PushInstrumentationStackFrame(self, method->IsStatic() ? nullptr : this_object,
quick_trampoline_entrypoints.cc     [all...]
  /art/runtime/entrypoints/
entrypoint_utils-inl.h 354 mirror::Object** this_object,
362 hs.NewHandleWrapper(type == kStatic ? &null_this : this_object));
368 } else if (UNLIKELY(*this_object == nullptr && type != kStatic)) {
397 mirror::Class* klass = (*this_object)->GetClass();
431 mirror::ArtMethod* imt_method = (*this_object)->GetClass()->GetEmbeddedImTableEntry(imt_index);
434 mirror::Class* klass = (*this_object)->GetClass();
443 (*this_object)->GetClass()->FindVirtualMethodForInterface(resolved_method);
446 *this_object, *referrer);
462 mirror::Object** this_object, \
536 mirror::Object* this_object,
    [all...]
entrypoint_utils.h 141 mirror::Object** this_object,
153 mirror::Object* this_object,
  /external/chromium_org/content/browser/
child_process_launcher.cc 105 // |this_object| is NOT thread safe. Only use it to post a task back.
106 scoped_refptr<Context> this_object,
114 this_object->Notify(handle);
120 this_object,
170 // |this_object| is NOT thread safe. Only use it to post a task back.
171 scoped_refptr<Context> this_object,
229 this_object, client_thread_id, begin_launch_time));
324 this_object.get(),
  /external/chromium_org/ppapi/proxy/
ppb_var_deprecated_proxy.h 65 SerializedVarReceiveInput this_object,
  /art/runtime/mirror/
object.cc 129 Handle<Object> this_object(hs.NewHandle(this));
131 CopyObjectVisitor visitor(self, &this_object, num_bytes);
  /art/runtime/interpreter/
interpreter_common.cc 54 Object* this_object = f->IsStatic() ? nullptr : obj; local
55 instrumentation->FieldReadEvent(self, this_object, shadow_frame.GetMethod(),
234 Object* this_object = f->IsStatic() ? nullptr : obj; local
235 instrumentation->FieldWriteEvent(self, this_object, shadow_frame.GetMethod(),
    [all...]
interpreter_goto_table_impl.cc     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/lib/gcc/x86_64-linux/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...]
  /art/runtime/jdwp/
jdwp_event.cc 936 mirror::Object* this_object, const JValue* fieldValue,
941 DCHECK_EQ(field->IsStatic(), this_object == nullptr);
946 basket.thisPtr = this_object;
    [all...]
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/
libgcov.a 174 1 ?v0??2a>v???tname:? (mode@?s_flockC??H3fdDv-stkG ??~6ov?7nA(spA4(sepu?5?Dv5?;?6?M&-???V?3gi_ptr? ?this_program?j??all?j??(cs_ptr??3ci_ptr???3t_ix? 3c_num???3gcov_prefix??3gcov_prefix_strip?vM3prefix_length?}o3gi_filename?A?3gi_filename_up?A?7read_fatal?? 8rewrite?7read_mismatch??7read_error??90?this_object?j??~object?j??~program?j??~values???L3fi_ptr??3fi_stride? %3c_ix? G3f_ix? ?3n_counts?  (cs_obj??(cs_tobj??(cs_prg??(cs_tprg??(cs_all??3error?v[ 3tag??? :????
    [all...]
  /external/chromium_org/v8/src/
preparser.h 74 typename Traits::Type::Parser this_object)
75 : Traits(this_object),
    [all...]
  /art/runtime/arch/arm64/
quick_entrypoints_arm64.S 463 // (method_idx, *this_object, *caller_method, *self, sp)
    [all...]
  /art/runtime/arch/x86_64/
quick_entrypoints_x86_64.S 326 // (method_idx, *this_object, *caller_method, *self, sp)
    [all...]
  /art/compiler/llvm/
gbc_expander.cc 942 llvm::Value* this_object = call_inst.getArgOperand(3); local
    [all...]

Completed in 5726 milliseconds

1 2