Lines Matching defs:windowPtr

61     private static native void nativeDispose(long windowPtr);
62 private static native void nativeWriteToParcel(long windowPtr, Parcel parcel);
64 private static native void nativeClear(long windowPtr);
66 private static native int nativeGetNumRows(long windowPtr);
67 private static native boolean nativeSetNumColumns(long windowPtr, int columnNum);
68 private static native boolean nativeAllocRow(long windowPtr);
69 private static native void nativeFreeLastRow(long windowPtr);
71 private static native int nativeGetType(long windowPtr, int row, int column);
72 private static native byte[] nativeGetBlob(long windowPtr, int row, int column);
73 private static native String nativeGetString(long windowPtr, int row, int column);
74 private static native long nativeGetLong(long windowPtr, int row, int column);
75 private static native double nativeGetDouble(long windowPtr, int row, int column);
76 private static native void nativeCopyStringToBuffer(long windowPtr, int row, int column,
79 private static native boolean nativePutBlob(long windowPtr, byte[] value, int row, int column);
80 private static native boolean nativePutString(long windowPtr, String value, int row, int column);
81 private static native boolean nativePutLong(long windowPtr, long value, int row, int column);
82 private static native boolean nativePutDouble(long windowPtr, double value, int row, int column);
83 private static native boolean nativePutNull(long windowPtr, int row, int column);
85 private static native String nativeGetName(long windowPtr);