Home
last modified time | relevance | path

Searched refs:blob (Results 1 – 3 of 3) sorted by relevance

/sqlite/sqlite-framework/src/nativeMain/kotlin/androidx/sqlite/driver/
DNativeSQLiteStatement.kt145 val blob = sqlite3_column_blob(stmtPointer, index) in getBlob() constant
146 if (blob == null) throwIfOutOfMemory() in getBlob()
149 return if (blob != null && size > 0) { in getBlob()
150 blob.readBytes(size) in getBlob()
/sqlite/sqlite-bundled/src/jvmAndroidMain/jni/
Dsqlite_bindings.cpp119 jbyte* blob = static_cast<jbyte*>(env->GetPrimitiveArrayCritical(value, nullptr)); in Java_androidx_sqlite_driver_bundled_BundledSQLiteStatementKt_nativeBindBlob() local
120 int rc = sqlite3_bind_blob(stmt, index, blob, valueLength, SQLITE_TRANSIENT); in Java_androidx_sqlite_driver_bundled_BundledSQLiteStatementKt_nativeBindBlob()
121 env->ReleasePrimitiveArrayCritical(value, blob, JNI_ABORT); in Java_androidx_sqlite_driver_bundled_BundledSQLiteStatementKt_nativeBindBlob()
211 const void *blob = sqlite3_column_blob(stmt, index); in Java_androidx_sqlite_driver_bundled_BundledSQLiteStatementKt_nativeGetBlob() local
212 if (blob == nullptr && throwIfOutOfMemory(env, stmt)) return nullptr; in Java_androidx_sqlite_driver_bundled_BundledSQLiteStatementKt_nativeGetBlob()
217 env->SetByteArrayRegion(byteArray, 0, size, static_cast<const jbyte*>(blob)); in Java_androidx_sqlite_driver_bundled_BundledSQLiteStatementKt_nativeGetBlob()
/sqlite/sqlite-bundled/
DPrepareSqliteSourcesTask.groovy41 // defined in https://github.com/sqlite/sqlite/blob/master/src/sqlite.h.in#L149