Lines Matching defs:windowPtr

95 static void nativeDispose(JNIEnv* env, jclass clazz, jlong windowPtr) {
96 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
103 static jstring nativeGetName(JNIEnv* env, jclass clazz, jlong windowPtr) {
104 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
108 static void nativeWriteToParcel(JNIEnv * env, jclass clazz, jlong windowPtr,
110 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
121 static void nativeClear(JNIEnv * env, jclass clazz, jlong windowPtr) {
122 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
130 static jint nativeGetNumRows(JNIEnv* env, jclass clazz, jlong windowPtr) {
131 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
135 static jboolean nativeSetNumColumns(JNIEnv* env, jclass clazz, jlong windowPtr,
137 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
142 static jboolean nativeAllocRow(JNIEnv* env, jclass clazz, jlong windowPtr) {
143 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
148 static void nativeFreeLastRow(JNIEnv* env, jclass clazz, jlong windowPtr) {
149 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
153 static jint nativeGetType(JNIEnv* env, jclass clazz, jlong windowPtr,
155 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
168 static jbyteArray nativeGetBlob(JNIEnv* env, jclass clazz, jlong windowPtr,
170 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
203 static jstring nativeGetString(JNIEnv* env, jclass clazz, jlong windowPtr,
205 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
295 static void nativeCopyStringToBuffer(JNIEnv* env, jclass clazz, jlong windowPtr,
297 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
334 static jlong nativeGetLong(JNIEnv* env, jclass clazz, jlong windowPtr,
336 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
365 static jdouble nativeGetDouble(JNIEnv* env, jclass clazz, jlong windowPtr,
367 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
396 static jboolean nativePutBlob(JNIEnv* env, jclass clazz, jlong windowPtr,
398 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
414 static jboolean nativePutString(JNIEnv* env, jclass clazz, jlong windowPtr,
416 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
436 static jboolean nativePutLong(JNIEnv* env, jclass clazz, jlong windowPtr,
438 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
450 static jboolean nativePutDouble(JNIEnv* env, jclass clazz, jlong windowPtr,
452 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);
464 static jboolean nativePutNull(JNIEnv* env, jclass clazz, jlong windowPtr,
466 CursorWindow* window = reinterpret_cast<CursorWindow*>(windowPtr);