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

  /art/runtime/
instrumentation.h 64 virtual void MethodEntered(Thread* thread, mirror::Object* this_object,
69 virtual void MethodExited(Thread* thread, mirror::Object* this_object,
76 virtual void MethodUnwind(Thread* thread, mirror::Object* this_object,
81 virtual void DexPcMoved(Thread* thread, mirror::Object* this_object,
86 virtual void FieldRead(Thread* thread, mirror::Object* this_object, ArtMethod* method,
90 virtual void FieldWritten(Thread* thread, mirror::Object* this_object, ArtMethod* method,
106 mirror::Object* this_object,
316 void MethodEnterEvent(Thread* thread, mirror::Object* this_object,
320 MethodEnterEventImpl(thread, this_object, method, dex_pc);
325 void MethodExitEvent(Thread* thread, mirror::Object* this_object,
    [all...]
trace.h 141 void MethodEntered(Thread* thread, mirror::Object* this_object,
145 void MethodExited(Thread* thread, mirror::Object* this_object,
150 void MethodUnwind(Thread* thread, mirror::Object* this_object,
154 void DexPcMoved(Thread* thread, mirror::Object* this_object,
158 void FieldRead(Thread* thread, mirror::Object* this_object,
161 void FieldWritten(Thread* thread, mirror::Object* this_object,
170 mirror::Object* this_object,
instrumentation.cc 1079 mirror::Object* this_object = instrumentation_frame.this_object_; local
    [all...]
common_throws.cc 231 mirror::Object* this_object,
233 // Referrer is calling interface_method on this_object, however, the interface_method isn't
234 // implemented by this_object.
235 CHECK(this_object != nullptr);
237 msg << "Class '" << PrettyDescriptor(this_object->GetClass())
246 mirror::Object* this_object,
248 // Referrer is calling interface_method on this_object, however, the interface_method isn't
249 // implemented by this_object.
250 CHECK(this_object != nullptr);
252 msg << "Class '" << PrettyDescriptor(this_object->GetClass()
    [all...]
common_throws.h 119 mirror::Object* this_object,
124 mirror::Object* this_object,
instrumentation_test.cc 46 mirror::Object* this_object ATTRIBUTE_UNUSED,
54 mirror::Object* this_object ATTRIBUTE_UNUSED,
63 mirror::Object* this_object ATTRIBUTE_UNUSED,
71 mirror::Object* this_object ATTRIBUTE_UNUSED,
79 mirror::Object* this_object ATTRIBUTE_UNUSED,
88 mirror::Object* this_object ATTRIBUTE_UNUSED,
112 mirror::Object* this_object ATTRIBUTE_UNUSED,
    [all...]
trace.cc 757 mirror::Object* this_object ATTRIBUTE_UNUSED,
765 mirror::Object* this_object ATTRIBUTE_UNUSED,
775 mirror::Object* this_object ATTRIBUTE_UNUSED,
785 void Trace::MethodEntered(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED,
794 void Trace::MethodExited(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED,
804 void Trace::MethodUnwind(Thread* thread, mirror::Object* this_object ATTRIBUTE_UNUSED,
    [all...]
debugger.cc 142 void MethodEntered(Thread* thread, mirror::Object* this_object, ArtMethod* method,
164 Dbg::UpdateDebugger(thread, this_object, method, 0, Dbg::kMethodEntry, nullptr);
168 void MethodExited(Thread* thread, mirror::Object* this_object, ArtMethod* method,
182 Dbg::UpdateDebugger(thread, this_object, method, dex_pc, events, &return_value);
185 void MethodUnwind(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object ATTRIBUTE_UNUSED,
193 void DexPcMoved(Thread* thread, mirror::Object* this_object, ArtMethod* method,
210 Dbg::UpdateDebugger(thread, this_object, method, new_dex_pc, events, nullptr);
214 void FieldRead(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
217 Dbg::PostFieldAccessEvent(method, dex_pc, this_object, field);
220 void FieldWritten(Thread* thread ATTRIBUTE_UNUSED, mirror::Object* this_object,
2462 mirror::Object* this_object; member in struct:art::GetThisVisitor
    [all...]
debugger.h 494 static void PostFieldAccessEvent(ArtMethod* m, int dex_pc, mirror::Object* this_object,
498 mirror::Object* this_object, ArtField* f,
510 static void UpdateDebugger(Thread* thread, mirror::Object* this_object,
    [all...]
  /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...]
  /external/webrtc/webrtc/modules/audio_device/android/
audio_record_jni.cc 217 webrtc::AudioRecordJni* this_object = local
219 this_object->OnCacheDirectBufferAddress(env, byte_buffer);
236 webrtc::AudioRecordJni* this_object = local
238 this_object->OnDataIsRecorded(length);
audio_track_jni.cc 212 webrtc::AudioTrackJni* this_object = local
214 this_object->OnCacheDirectBufferAddress(env, byte_buffer);
233 webrtc::AudioTrackJni* this_object = local
235 this_object->OnGetPlayoutData(static_cast<size_t>(length));
audio_manager.cc 186 webrtc::AudioManager* this_object = local
188 this_object->OnCacheAudioParameters(
  /art/runtime/entrypoints/
entrypoint_utils-inl.h 437 inline ArtMethod* FindMethodFromCode(uint32_t method_idx, mirror::Object** this_object,
445 hs.NewHandleWrapper(type == kStatic ? &null_this : this_object));
454 } else if (UNLIKELY(*this_object == nullptr && type != kStatic)) {
490 mirror::Class* klass = (*this_object)->GetClass();
542 if (!method_reference_class->IsAssignableFrom((*this_object)->GetClass())) {
545 *this_object,
564 ArtMethod* imt_method = (*this_object)->GetClass()->GetImt(pointer_size)->
568 mirror::Class* klass = (*this_object)->GetClass();
577 ArtMethod* interface_method = (*this_object)->GetClass()->FindVirtualMethodForInterface(
581 *this_object, referrer)
    [all...]
entrypoint_utils.h 143 uint32_t method_idx, mirror::Object** this_object, ArtMethod* referrer, Thread* self)
153 uint32_t method_idx, mirror::Object* this_object, ArtMethod* referrer, bool access_check,
  /art/runtime/mirror/
object.cc 133 Handle<Object> this_object(hs.NewHandle(this));
135 CopyObjectVisitor visitor(self, &this_object, num_bytes);
  /art/runtime/jit/
jit.h 110 mirror::Object* this_object,
jit.cc 682 mirror::Object* this_object,
687 DCHECK(this_object != nullptr);
690 info->AddInvokeInfo(dex_pc, this_object->GetClass());
  /art/runtime/interpreter/
interpreter_common.cc 65 Object* this_object = f->IsStatic() ? nullptr : obj; local
66 instrumentation->FieldReadEvent(self, this_object, shadow_frame.GetMethod(),
263 Object* this_object = f->IsStatic() ? nullptr : obj; local
264 instrumentation->FieldWriteEvent(self, this_object, shadow_frame.GetMethod(),
    [all...]
interpreter_goto_table_impl.cc     [all...]
  /art/runtime/jdwp/
jdwp_event.cc 926 mirror::Object* this_object, const JValue* fieldValue,
931 DCHECK_EQ(field->IsStatic(), this_object == nullptr);
936 basket.thisPtr.Assign(this_object);
    [all...]
  /external/v8/src/parsing/
parser-base.h 179 ParserRecorder* log, typename Traits::Type::Parser this_object)
180 : Traits(this_object),
    [all...]

Completed in 454 milliseconds