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

/frameworks/base/libs/androidfw/
H A DCursorWindow.cpp18 #define LOG_TAG "CursorWindow"
20 #include <androidfw/CursorWindow.h>
33 CursorWindow::CursorWindow(const String8& name, int ashmemFd, function in class:android::CursorWindow
39 CursorWindow::~CursorWindow() {
44 status_t CursorWindow::create(const String8& name, size_t size, CursorWindow** outCursorWindow) {
45 String8 ashmemName("CursorWindow: ");
61 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.java35 * A {@link CursorWindow} is read-write when initially created and used locally.
42 public class CursorWindow extends SQLiteClosable implements Parcelable { class in inherits:SQLiteClosable,Parcelable
49 * The native CursorWindow object pointer. (FOR INTERNAL USE ONLY)
96 public CursorWindow(String name) { method in class:CursorWindow
126 * cursor windows. Use the {@link #CursorWindow(String)} constructor instead.
129 public CursorWindow(boolean localWindow) { method in class:CursorWindow
133 private CursorWindow(Parcel source) { method in class:CursorWindow
682 public static final Parcelable.Creator<CursorWindow> CREATOR
683 = new Parcelable.Creator<CursorWindow>() {
684 public CursorWindow createFromParce
[all...]

Completed in 101 milliseconds