• Home
  • Raw
  • Download

Lines Matching refs:jobject

55 static jboolean Unsafe_compareAndSetInt(JNIEnv* env, jobject, jobject javaObj, jlong offset,  in Unsafe_compareAndSetInt()  argument
68 static jboolean Unsafe_compareAndSwapInt(JNIEnv* env, jobject obj, jobject javaObj, jlong offset, in Unsafe_compareAndSwapInt()
76 static jboolean Unsafe_compareAndSetLong(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_compareAndSetLong() argument
87 static jboolean Unsafe_compareAndSwapLong(JNIEnv* env, jobject obj, jobject javaObj, jlong offset, in Unsafe_compareAndSwapLong()
96 jobject, in Unsafe_compareAndSetReference() argument
97 jobject javaObj, in Unsafe_compareAndSetReference()
99 jobject javaExpectedValue, in Unsafe_compareAndSetReference()
100 jobject javaNewValue) { in Unsafe_compareAndSetReference()
127 static jboolean Unsafe_compareAndSwapObject(JNIEnv* env, jobject obj, jobject javaObj, jlong offset, in Unsafe_compareAndSwapObject()
128 jobject javaExpectedValue, jobject javaNewValue) { in Unsafe_compareAndSwapObject()
135 static jint Unsafe_getInt(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getInt() argument
141 static jint Unsafe_getIntVolatile(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getIntVolatile() argument
147 static void Unsafe_putInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, jint newValue) { in Unsafe_putInt() argument
154 static void Unsafe_putIntVolatile(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_putIntVolatile() argument
162 static void Unsafe_putOrderedInt(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_putOrderedInt() argument
172 static jlong Unsafe_getLong(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getLong() argument
178 static jlong Unsafe_getLongVolatile(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getLongVolatile() argument
184 static void Unsafe_putLong(JNIEnv* env, jobject, jobject javaObj, jlong offset, jlong newValue) { in Unsafe_putLong() argument
191 static void Unsafe_putLongVolatile(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_putLongVolatile() argument
199 static void Unsafe_putOrderedLong(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_putOrderedLong() argument
208 static jobject Unsafe_getReferenceVolatile(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getReferenceVolatile() argument
212 return soa.AddLocalReference<jobject>(value); in Unsafe_getReferenceVolatile()
215 static jobject Unsafe_getReference(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getReference() argument
219 return soa.AddLocalReference<jobject>(value); in Unsafe_getReference()
223 JNIEnv* env, jobject, jobject javaObj, jlong offset, jobject javaNewValue) { in Unsafe_putReference() argument
232 JNIEnv* env, jobject, jobject javaObj, jlong offset, jobject javaNewValue) { in Unsafe_putReferenceVolatile() argument
240 static void Unsafe_putOrderedObject(JNIEnv* env, jobject, jobject javaObj, jlong offset, in Unsafe_putOrderedObject() argument
241 jobject javaNewValue) { in Unsafe_putOrderedObject()
264 static jint Unsafe_addressSize(JNIEnv* env ATTRIBUTE_UNUSED, jobject ob ATTRIBUTE_UNUSED) { in Unsafe_addressSize()
268 static jint Unsafe_pageSize(JNIEnv* env ATTRIBUTE_UNUSED, jobject ob ATTRIBUTE_UNUSED) { in Unsafe_pageSize()
272 static jlong Unsafe_allocateMemory(JNIEnv* env, jobject, jlong bytes) { in Unsafe_allocateMemory() argument
291 static void Unsafe_freeMemory(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_freeMemory() argument
295 static void Unsafe_setMemory(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jlong bytes, jby… in Unsafe_setMemory() argument
299 static jbyte Unsafe_getByteJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getByteJ() argument
303 static void Unsafe_putByteJB(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jbyte value) { in Unsafe_putByteJB() argument
307 static jshort Unsafe_getShortJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getShortJ() argument
311 static void Unsafe_putShortJS(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jshort value) { in Unsafe_putShortJS() argument
315 static jchar Unsafe_getCharJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getCharJ() argument
319 static void Unsafe_putCharJC(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jchar value) { in Unsafe_putCharJC() argument
323 static jint Unsafe_getIntJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getIntJ() argument
327 static void Unsafe_putIntJI(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jint value) { in Unsafe_putIntJI() argument
331 static jlong Unsafe_getLongJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getLongJ() argument
335 static void Unsafe_putLongJJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jlong value) { in Unsafe_putLongJJ() argument
339 static jfloat Unsafe_getFloatJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getFloatJ() argument
343 static void Unsafe_putFloatJF(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jfloat value) { in Unsafe_putFloatJF() argument
346 static jdouble Unsafe_getDoubleJ(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address) { in Unsafe_getDoubleJ() argument
350 static void Unsafe_putDoubleJD(JNIEnv* env ATTRIBUTE_UNUSED, jobject, jlong address, jdouble value)… in Unsafe_putDoubleJD() argument
354 static void Unsafe_copyMemory0(JNIEnv *env, jobject unsafe ATTRIBUTE_UNUSED, in Unsafe_copyMemory0()
355 jobject srcObj, jlong srcOffset, in Unsafe_copyMemory0()
356 jobject dstObj, jlong dstOffset, in Unsafe_copyMemory0()
376 static jboolean Unsafe_getBoolean(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getBoolean() argument
382 static void Unsafe_putBoolean(JNIEnv* env, jobject, jobject javaObj, jlong offset, jboolean newValu… in Unsafe_putBoolean() argument
389 static jbyte Unsafe_getByte(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getByte() argument
395 static void Unsafe_putByte(JNIEnv* env, jobject, jobject javaObj, jlong offset, jbyte newValue) { in Unsafe_putByte() argument
402 static jchar Unsafe_getChar(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getChar() argument
408 static void Unsafe_putChar(JNIEnv* env, jobject, jobject javaObj, jlong offset, jchar newValue) { in Unsafe_putChar() argument
415 static jshort Unsafe_getShort(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getShort() argument
421 static void Unsafe_putShort(JNIEnv* env, jobject, jobject javaObj, jlong offset, jshort newValue) { in Unsafe_putShort() argument
428 static jfloat Unsafe_getFloat(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getFloat() argument
436 static void Unsafe_putFloat(JNIEnv* env, jobject, jobject javaObj, jlong offset, jfloat newValue) { in Unsafe_putFloat() argument
445 static jdouble Unsafe_getDouble(JNIEnv* env, jobject, jobject javaObj, jlong offset) { in Unsafe_getDouble() argument
453 static void Unsafe_putDouble(JNIEnv* env, jobject, jobject javaObj, jlong offset, jdouble newValue)… in Unsafe_putDouble() argument
462 static void Unsafe_loadFence(JNIEnv*, jobject) { in Unsafe_loadFence() argument
466 static void Unsafe_storeFence(JNIEnv*, jobject) { in Unsafe_storeFence() argument
470 static void Unsafe_fullFence(JNIEnv*, jobject) { in Unsafe_fullFence() argument
474 static void Unsafe_park(JNIEnv* env, jobject, jboolean isAbsolute, jlong time) { in Unsafe_park() argument
479 static void Unsafe_unpark(JNIEnv* env, jobject, jobject jthread) { in Unsafe_unpark() argument