Searched defs:handle_kind (Results 1 - 3 of 3) sorted by relevance

/art/runtime/native/
H A Djava_lang_invoke_MethodHandleImpl.cc41 const mirror::MethodHandle::Kind handle_kind = handle->GetHandleKind(); local
48 if (handle_kind >= mirror::MethodHandle::kFirstAccessorKind) {
/art/runtime/mirror/
H A Dmethod_handle_impl.h64 const int32_t handle_kind = GetField32(OFFSET_OF_OBJECT_MEMBER(MethodHandle, handle_kind_)); local
65 DCHECK(handle_kind >= 0 &&
66 handle_kind <= static_cast<int32_t>(Kind::kLastValidKind));
67 return static_cast<Kind>(handle_kind);
/art/runtime/
H A Dmethod_handles.cc360 inline bool IsInvoke(const mirror::MethodHandle::Kind handle_kind) { argument
361 return handle_kind <= mirror::MethodHandle::Kind::kLastInvokeKind;
364 inline bool IsInvokeTransform(const mirror::MethodHandle::Kind handle_kind) { argument
365 return (handle_kind == mirror::MethodHandle::Kind::kInvokeTransform
366 || handle_kind == mirror::MethodHandle::Kind::kInvokeCallSiteTransform);
369 inline bool IsInvokeVarHandle(const mirror::MethodHandle::Kind handle_kind) { argument
370 return (handle_kind == mirror::MethodHandle::Kind::kInvokeVarHandle ||
371 handle_kind == mirror::MethodHandle::Kind::kInvokeVarHandleExact);
374 inline bool IsFieldAccess(mirror::MethodHandle::Kind handle_kind) { argument
375 return (handle_kind >
709 const mirror::MethodHandle::Kind handle_kind = method_handle->GetHandleKind(); local
890 const mirror::MethodHandle::Kind handle_kind = method_handle->GetHandleKind(); local
1085 const mirror::MethodHandle::Kind handle_kind = method_handle->GetHandleKind(); local
1134 const mirror::MethodHandle::Kind handle_kind = method_handle->GetHandleKind(); local
[all...]

Completed in 146 milliseconds