Lines Matching refs:env
26 static jboolean Unsafe_compareAndSwapInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_compareAndSwapInt() argument
28 ScopedFastNativeObjectAccess soa(env); in Unsafe_compareAndSwapInt()
36 static jboolean Unsafe_compareAndSwapLong(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_compareAndSwapLong() argument
38 ScopedFastNativeObjectAccess soa(env); in Unsafe_compareAndSwapLong()
46 static jboolean Unsafe_compareAndSwapObject(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_compareAndSwapObject() argument
48 ScopedFastNativeObjectAccess soa(env); in Unsafe_compareAndSwapObject()
58 static jint Unsafe_getInt(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getInt() argument
59 ScopedFastNativeObjectAccess soa(env); in Unsafe_getInt()
64 static jint Unsafe_getIntVolatile(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getIntVolatile() argument
65 ScopedFastNativeObjectAccess soa(env); in Unsafe_getIntVolatile()
70 static void Unsafe_putInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, jint newValue) { in Unsafe_putInt() argument
71 ScopedFastNativeObjectAccess soa(env); in Unsafe_putInt()
77 static void Unsafe_putIntVolatile(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_putIntVolatile() argument
79 ScopedFastNativeObjectAccess soa(env); in Unsafe_putIntVolatile()
85 static void Unsafe_putOrderedInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_putOrderedInt() argument
87 ScopedFastNativeObjectAccess soa(env); in Unsafe_putOrderedInt()
94 static jlong Unsafe_getLong(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getLong() argument
95 ScopedFastNativeObjectAccess soa(env); in Unsafe_getLong()
100 static jlong Unsafe_getLongVolatile(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getLongVolatile() argument
101 ScopedFastNativeObjectAccess soa(env); in Unsafe_getLongVolatile()
106 static void Unsafe_putLong(JNIEnv* env, jobject, jobject javaObj, jlong offset, jlong newValue) { in Unsafe_putLong() argument
107 ScopedFastNativeObjectAccess soa(env); in Unsafe_putLong()
113 static void Unsafe_putLongVolatile(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_putLongVolatile() argument
115 ScopedFastNativeObjectAccess soa(env); in Unsafe_putLongVolatile()
121 static void Unsafe_putOrderedLong(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_putOrderedLong() argument
123 ScopedFastNativeObjectAccess soa(env); in Unsafe_putOrderedLong()
130 static jobject Unsafe_getObjectVolatile(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getObjectVolatile() argument
131 ScopedFastNativeObjectAccess soa(env); in Unsafe_getObjectVolatile()
137 static jobject Unsafe_getObject(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getObject() argument
138 ScopedFastNativeObjectAccess soa(env); in Unsafe_getObject()
144 static void Unsafe_putObject(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_putObject() argument
146 ScopedFastNativeObjectAccess soa(env); in Unsafe_putObject()
153 static void Unsafe_putObjectVolatile(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_putObjectVolatile() argument
155 ScopedFastNativeObjectAccess soa(env); in Unsafe_putObjectVolatile()
162 static void Unsafe_putOrderedObject(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_putOrderedObject() argument
164 ScopedFastNativeObjectAccess soa(env); in Unsafe_putOrderedObject()
172 static jint Unsafe_getArrayBaseOffsetForComponentType(JNIEnv* env, jclass, jobject component_class)… in Unsafe_getArrayBaseOffsetForComponentType() argument
173 ScopedFastNativeObjectAccess soa(env); in Unsafe_getArrayBaseOffsetForComponentType()
179 static jint Unsafe_getArrayIndexScaleForComponentType(JNIEnv* env, jclass, jobject component_class)… in Unsafe_getArrayIndexScaleForComponentType() argument
180 ScopedFastNativeObjectAccess soa(env); in Unsafe_getArrayIndexScaleForComponentType()
209 void register_sun_misc_Unsafe(JNIEnv* env) { in register_sun_misc_Unsafe() argument