Searched refs:return_value (Results 1 - 17 of 17) sorted by relevance

/art/compiler/jni/quick/
H A Dcalling_convention.cc255 bool return_value; local
260 &return_value)) {
261 return return_value;
277 bool return_value; local
282 &return_value)) {
283 return return_value;
291 bool return_value; local
296 &return_value)) {
297 return return_value;
305 bool return_value; local
[all...]
H A Dcalling_convention.h411 // Puts the case value into return_value.
420 bool* return_value) const;
/art/runtime/entrypoints/quick/
H A Dquick_deoptimization_entrypoints.cc74 JValue return_value; local
75 return_value.SetJ(0); // we never deoptimize from compiled code with an invoke result.
76 self->PushDeoptimizationContext(return_value,
/art/tools/bisection_search/
H A Dbisection_test.py54 self.testable_mock.GetAllMethods.return_value = self._METHODS
55 self.testable_mock.GetAllPassesForMethod.return_value = self._PASSES
65 self.testable_mock.Test.return_value = True
70 self.testable_mock.Test.return_value = False
85 self.testable_mock.GetAllPassesForMethod.return_value += (
/art/runtime/
H A Dinstrumentation.cc58 Handle<mirror::Object> return_value) {
62 v.SetL(return_value.Get());
1028 const JValue& return_value) const {
1037 listener->MethodExited(thread, thiz, method, dex_pc, return_value);
1041 Handle<mirror::Object> ret(hs.NewHandle(return_value.GetL()));
1338 // have return value. We don't need to set return_value since MethodExitEvent()
1354 JValue return_value; local
1356 return_value.SetJ(0);
1358 return_value.SetJ(*fpr_result);
1360 return_value
54 MethodExited(Thread* thread, Handle<mirror::Object> this_object, ArtMethod* method, uint32_t dex_pc, Handle<mirror::Object> return_value) argument
[all...]
H A Dinstrumentation.h77 Handle<mirror::Object> return_value)
87 const JValue& return_value)
400 const JValue& return_value) const
403 MethodExitEventImpl(thread, this_object, method, dex_pc, return_value);
568 const JValue& return_value) const
H A Ddebugger.h413 static void OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value,
443 static void OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply)
535 int event_flags, const JValue* return_value)
769 const JValue* return_value)
H A Dtrace.h154 const JValue& return_value)
H A Ddebugger.cc178 const JValue& return_value)
191 Dbg::UpdateDebugger(thread, this_object.Get(), method, dex_pc, events, &return_value);
1780 void Dbg::OutputMethodReturnValue(JDWP::MethodId method_id, const JValue* return_value, argument
1784 OutputJValue(tag, return_value, pReply);
2072 void Dbg::OutputJValue(JDWP::JdwpTag tag, const JValue* return_value, JDWP::ExpandBuf* pReply) { argument
2076 expandBufAdd1(pReply, return_value->GetI());
2078 expandBufAdd2BE(pReply, return_value->GetI());
2080 expandBufAdd4BE(pReply, return_value->GetI());
2082 expandBufAdd8BE(pReply, return_value->GetJ());
2088 mirror::Object* value = return_value
2964 PostLocationEvent(ArtMethod* m, int dex_pc, mirror::Object* this_object, int event_flags, const JValue* return_value) argument
3136 UpdateDebugger(Thread* thread, mirror::Object* this_object, ArtMethod* m, uint32_t dex_pc, int event_flags, const JValue* return_value) argument
[all...]
H A Dinstrumentation_test.cc70 Handle<mirror::Object> return_value ATTRIBUTE_UNUSED)
79 const JValue& return_value ATTRIBUTE_UNUSED)
H A Dthread.h1022 void PushDeoptimizationContext(const JValue& return_value,
H A Dtrace.cc794 const JValue& return_value ATTRIBUTE_UNUSED) {
H A Dthread.cc242 void Thread::PushDeoptimizationContext(const JValue& return_value, argument
248 return_value,
/art/openjdkjvmti/
H A Devents.cc503 art::Handle<art::mirror::Object> return_value)
512 ScopedLocalRef<jobject> return_jobj(jnienv, AddLocalRef<jobject>(jnienv, return_value.Get()));
529 const art::JValue& return_value)
540 val.j = return_value.GetJ();
/art/compiler/optimizing/
H A Dnodes.cc2414 HInstruction* return_value = nullptr; local
2433 return_value = last->InputAt(0);
2523 DCHECK(return_value == nullptr);
2529 } else if (return_value == nullptr) {
2530 return_value = last->InputAt(0);
2536 return_value_phi->AddInput(return_value);
2538 return_value = return_value_phi;
2601 if (current == return_value) {
2602 DCHECK_EQ(entry_block_, return_value->GetBlock());
2603 return_value
[all...]
/art/test/ti-agent/
H A Dtrace_helper.cc243 jvalue return_value) {
263 was_popped_by_exception ? nullptr : GetJavaValue(jvmti, jnienv, method, return_value);
238 methodExitCB(jvmtiEnv* jvmti, JNIEnv* jnienv, jthread thr, jmethodID method, jboolean was_popped_by_exception, jvalue return_value) argument
/art/openjdkjvmti/include/
H A Djvmti.h839 jvalue return_value);

Completed in 3889 milliseconds