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

  /art/runtime/mirror/
method_handle_impl.h 64 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/native/
java_lang_invoke_MethodHandleImpl.cc 41 const mirror::MethodHandle::Kind handle_kind = handle->GetHandleKind(); local
48 if (handle_kind >= mirror::MethodHandle::kFirstAccessorKind) {
  /art/runtime/
method_handles.cc 362 inline bool IsInvoke(const mirror::MethodHandle::Kind handle_kind) {
363 return handle_kind <= mirror::MethodHandle::Kind::kLastInvokeKind;
366 inline bool IsInvokeTransform(const mirror::MethodHandle::Kind handle_kind) {
367 return (handle_kind == mirror::MethodHandle::Kind::kInvokeTransform
368 || handle_kind == mirror::MethodHandle::Kind::kInvokeCallSiteTransform);
371 inline bool IsInvokeVarHandle(const mirror::MethodHandle::Kind handle_kind) {
372 return (handle_kind == mirror::MethodHandle::Kind::kInvokeVarHandle ||
373 handle_kind == mirror::MethodHandle::Kind::kInvokeVarHandleExact);
376 inline bool IsFieldAccess(mirror::MethodHandle::Kind handle_kind) {
377 return (handle_kind >= mirror::MethodHandle::Kind::kFirstAccessorKin
711 const mirror::MethodHandle::Kind handle_kind = method_handle->GetHandleKind(); local
892 const mirror::MethodHandle::Kind handle_kind = method_handle->GetHandleKind(); local
1087 const mirror::MethodHandle::Kind handle_kind = method_handle->GetHandleKind(); local
1136 const mirror::MethodHandle::Kind handle_kind = method_handle->GetHandleKind(); local
    [all...]

Completed in 101 milliseconds