Home | History | Annotate | Download | only in androidfw

Lines Matching refs:row

43  * window has first chunk of RowSlots, which are offsets to the row directory, followed by
45 * the pre-allocated chunk isn't big enough to refer to all rows. Each row directory has a
98 * Allocate a row slot and its directory.
99 * The row is initialized will null entries for each field.
104 status_t putBlob(uint32_t row, uint32_t column, const void* value, size_t size);
105 status_t putString(uint32_t row, uint32_t column, const char* value, size_t sizeIncludingNull);
106 status_t putLong(uint32_t row, uint32_t column, int64_t value);
107 status_t putDouble(uint32_t row, uint32_t column, double value);
108 status_t putNull(uint32_t row, uint32_t column);
111 * Gets the field slot at the specified row and column.
112 * Returns null if the requested row or column is not in the window.
114 FieldSlot* getFieldSlot(uint32_t row, uint32_t column);
146 // Offset of the first row slot chunk.
184 RowSlot* getRowSlot(uint32_t row);
187 status_t putBlobOrString(uint32_t row, uint32_t column,