Searched refs:row_slot_t (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/jni/
H A DCursorWindow.h37 #define ROW_SLOT_CHUNK_SIZE ((ROW_SLOT_CHUNK_NUM_ROWS * sizeof(row_slot_t)) + sizeof(uint32_t))
70 } row_slot_t; typedef in namespace:android
172 row_slot_t * allocRowSlot();
174 row_slot_t * getRowSlot(int row);
H A DCursorWindow.cpp113 row_slot_t * rowSlot = allocRowSlot();
175 row_slot_t * CursorWindow::getRowSlot(int row)
184 chunkPtrOffset = rowChunk - mData + (ROW_SLOT_CHUNK_NUM_ROWS * sizeof(row_slot_t));
186 return (row_slot_t *)(rowChunk + (chunkPos * sizeof(row_slot_t)));
190 row_slot_t * CursorWindow::allocRowSlot()
214 chunkPtrOffset = rowChunk - mData + (ROW_SLOT_CHUNK_NUM_ROWS * sizeof(row_slot_t));
219 return (row_slot_t *)(rowChunk + (chunkPos * sizeof(row_slot_t)));
228 row_slot_t * rowSlo
[all...]

Completed in 252 milliseconds