Home | History | Annotate | Download | only in runtime

Lines Matching full:receiver

47     size_t num_slots = shorty_len + 1;  // +1 in case of receiver.
93 void BuildArgArray(const ScopedObjectAccess& soa, mirror::Object* receiver, va_list ap)
95 // Set receiver if non-null (method is not static)
96 if (receiver != NULL) {
97 Append(reinterpret_cast<int32_t>(receiver));
131 void BuildArgArray(const ScopedObjectAccess& soa, mirror::Object* receiver, jvalue* args)
133 // Set receiver if non-null (method is not static)
134 if (receiver != NULL) {
135 Append(reinterpret_cast<int32_t>(receiver));
169 // Set receiver if non-null (method is not static)