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

/frameworks/base/libs/androidfw/
H A DCursorWindow.cpp18 #define LOG_TAG "CursorWindow"
21 #include <androidfw/CursorWindow.h>
32 CursorWindow::CursorWindow(const String8& name, int ashmemFd, function in class:android::CursorWindow
38 CursorWindow::~CursorWindow() {
43 status_t CursorWindow::create(const String8& name, size_t size, CursorWindow** outCursorWindow) {
44 String8 ashmemName("CursorWindow: ");
60 CursorWindow* windo
[all...]
/frameworks/base/include/androidfw/
H A DCursorWindow.h34 #define IF_LOG_WINDOW() IF_ALOG(LOG_DEBUG, "CursorWindow")
35 #define LOG_WINDOW(...) ALOG(LOG_DEBUG, "CursorWindow", __VA_ARGS__)
51 class CursorWindow { class in namespace:android
52 CursorWindow(const String8& name, int ashmemFd,
78 friend class CursorWindow;
81 ~CursorWindow();
83 static status_t create(const String8& name, size_t size, CursorWindow** outCursorWindow);
84 static status_t createFromParcel(Parcel* parcel, CursorWindow** outCursorWindow);
/frameworks/base/core/java/android/database/
H A DCursorWindow.java34 * A {@link CursorWindow} is read-write when initially created and used locally.
41 public class CursorWindow extends SQLiteClosable implements Parcelable { class in inherits:SQLiteClosable,Parcelable
52 * The native CursorWindow object pointer. (FOR INTERNAL USE ONLY)
99 public CursorWindow(String name) { method in class:CursorWindow
122 * cursor windows. Use the {@link #CursorWindow(String)} constructor instead.
125 public CursorWindow(boolean localWindow) { method in class:CursorWindow
129 private CursorWindow(Parcel source) { method in class:CursorWindow
678 public static final Parcelable.Creator<CursorWindow> CREATOR
679 = new Parcelable.Creator<CursorWindow>() {
680 public CursorWindow createFromParce
[all...]

Completed in 67 milliseconds