Home | History | Annotate | Download | only in database

Lines Matching defs:mWindow

40     protected CursorWindow mWindow;
45 return mWindow.getBlob(mPos, columnIndex);
51 return mWindow.getString(mPos, columnIndex);
57 mWindow.copyStringToBuffer(mPos, columnIndex, buffer);
63 return mWindow.getShort(mPos, columnIndex);
69 return mWindow.getInt(mPos, columnIndex);
75 return mWindow.getLong(mPos, columnIndex);
81 return mWindow.getFloat(mPos, columnIndex);
87 return mWindow.getDouble(mPos, columnIndex);
93 return mWindow.getType(mPos, columnIndex) == Cursor.FIELD_TYPE_NULL;
131 return mWindow.getType(mPos, columnIndex);
138 if (mWindow == null) {
146 return mWindow;
163 if (window != mWindow) {
165 mWindow = window;
175 return mWindow != null;
179 * Closes the cursor window and sets {@link #mWindow} to null.
183 if (mWindow != null) {
184 mWindow.close();
185 mWindow = null;
197 if (mWindow == null) {
198 mWindow = new CursorWindow(name);
200 mWindow.clear();