Searched defs:mBlobBindings (Results 1 - 1 of 1) sorted by relevance

/frameworks/support/room/runtime/src/main/java/androidx/room/
H A DRoomSQLiteQuery.java64 final byte[][] mBlobBindings; field in class:RoomSQLiteQuery
165 mBlobBindings = new byte[limit][];
226 program.bindBlob(index, mBlobBindings[index]);
258 mBlobBindings[index] = value;
276 System.arraycopy(other.mBlobBindings, 0, mBlobBindings, 0, argCount);
284 Arrays.fill(mBlobBindings, null);

Completed in 129 milliseconds