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

  /art/test/709-checker-varhandles/src/
Main.java 17 import java.lang.invoke.VarHandle;
40 VarHandle.fullFence();
52 VarHandle.acquireFence();
64 VarHandle.releaseFence();
76 VarHandle.loadLoadFence();
88 VarHandle.storeStoreFence();
  /art/runtime/mirror/
var_handle.h 46 // C++ mirror of java.lang.invoke.VarHandle
47 class MANAGED VarHandle : public Object {
49 // The maximum number of parameters a VarHandle accessor method can
55 // The maximum number of VarType parameters a VarHandle accessor
60 // in java.lang.invoke.VarHandle.
131 // Gets the variable type that is operated on by this VarHandle instance.
138 // Returns the AccessMode corresponding to a VarHandle accessor intrinsic.
142 // VarHandle access method, such as "setOpaque". Returns false otherwise.
156 ObjPtr<VarHandle> var_handle,
161 return MemberOffset(OFFSETOF_MEMBER(VarHandle, var_type_))
    [all...]
  /libcore/ojluni/src/main/java/java/lang/invoke/
VarHandle.java 38 * A VarHandle is a dynamically strongly typed reference to a variable, or to a
48 * <p>A VarHandle has:
51 * by this VarHandle; and
54 * jointly locate a variable referenced by this VarHandle.
61 * lookup} VarHandle instances document the supported variable type and the list
66 * for the access mode. When an access mode method is invoked on a VarHandle
80 * types of a VarHandle instance and the types for values of importance to the
82 * the variable type of a VarHandle instance. When an access mode method is
83 * invoked on a VarHandle instance, the symbolic type descriptor at the
90 * its receiver is a VarHandle instance with coordinate type
    [all...]

Completed in 597 milliseconds