HomeSort by relevance Sort by last modified time
    Searched refs:database (Results 101 - 125 of 1214) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebKit/chromium/src/
IDBDatabaseBackendProxy.cpp 49 PassRefPtr<IDBDatabaseBackendInterface> IDBDatabaseBackendProxy::create(PassOwnPtr<WebIDBDatabase> database)
51 return adoptRef(new IDBDatabaseBackendProxy(database));
54 IDBDatabaseBackendProxy::IDBDatabaseBackendProxy(PassOwnPtr<WebIDBDatabase> database)
55 : m_webIDBDatabase(database)
  /frameworks/base/core/java/android/database/sqlite/
SQLiteCustomFunction.java 17 package android.database.sqlite;
SQLiteDirectCursorDriver.java 17 package android.database.sqlite;
19 import android.database.Cursor;
20 import android.database.sqlite.SQLiteDatabase.CursorFactory;
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseErrorHandlerTest.java 17 package android.database;
20 import android.database.sqlite.SQLiteDatabase;
21 import android.database.sqlite.SQLiteDiskIOException;
22 import android.database.sqlite.SQLiteException;
60 // database file should still exist
67 // write junk into the database file
72 // since the database file is now corrupt, doing any sql on this database connection
90 // database file should be gone
92 // after corruption handler is called, the database file should be free o
    [all...]
  /frameworks/base/test-runner/src/android/test/mock/
MockCursor.java 20 import android.database.CharArrayBuffer;
21 import android.database.ContentObserver;
22 import android.database.Cursor;
23 import android.database.DataSetObserver;
31 * A mock {@link android.database.Cursor} class that isolates the test code from real
  /packages/apps/Browser/src/com/android/browser/search/
SearchEngine.java 19 import android.database.Cursor;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionCursor.java 20 import android.database.DataSetObserver;
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
MockDataSetObserver.java 19 import android.database.DataSetObserver;
  /cts/tests/tests/database/src/android/database/cts/
DataSetObservableTest.java 17 package android.database.cts;
19 import android.database.DataSetObservable;
20 import android.database.DataSetObserver;
  /external/ganymed-ssh2/examples/
UsingKnownHosts.java 18 static KnownHosts database = new KnownHosts(); field in class:UsingKnownHosts
30 /* Load known_hosts file into in-memory database */
33 database.addHostkeys(knownHosts);
41 conn.connect(new SimpleVerifier(database));
  /frameworks/base/core/java/android/database/
DefaultDatabaseErrorHandler.java 16 package android.database;
21 import android.database.sqlite.SQLiteDatabase;
22 import android.database.sqlite.SQLiteException;
27 * Default class used to define the actions to take when the database corruption is reported
34 * android.database.sqlite.SQLiteDatabase.CursorFactory, DatabaseErrorHandler)}</li>
36 * android.database.sqlite.SQLiteDatabase.CursorFactory, int, DatabaseErrorHandler)}</li>
38 * The specified {@link DatabaseErrorHandler} is used to handle database corruption errors, if they
49 * defines the default method to be invoked when database corruption is detected.
50 * @param dbObj the {@link SQLiteDatabase} object representing the database on which corruption
54 Log.e(TAG, "Corruption reported by sqlite on database: " + dbObj.getPath())
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
ProfileAndContactsLoader.java 22 import android.database.Cursor;
23 import android.database.MatrixCursor;
24 import android.database.MergeCursor;
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmDatabaseHelper.java 22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Helper class for opening the database from multiple providers. Also provides
65 "Upgrading alarms database from version " +
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteProgramTest.java 17 package android.database.sqlite.cts;
21 import android.database.Cursor;
22 import android.database.sqlite.SQLiteDatabase;
23 import android.database.sqlite.SQLiteDoneException;
24 import android.database.sqlite.SQLiteException;
25 import android.database.sqlite.SQLiteQuery;
26 import android.database.sqlite.SQLiteStatement;
SQLiteCursorTest.java 17 package android.database.sqlite.cts;
21 import android.database.AbstractCursor;
22 import android.database.Cursor;
23 import android.database.CursorWindow;
24 import android.database.DataSetObserver;
25 import android.database.StaleDataException;
26 import android.database.sqlite.SQLiteCursor;
27 import android.database.sqlite.SQLiteDatabase;
28 import android.database.sqlite.SQLiteDirectCursorDriver;
71 // get SQLiteCursor by querying database
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
DatabaseQueryView.js 26 WebInspector.DatabaseQueryView = function(database)
30 this.database = database;
40 this.promptElement.className = "database-query-prompt";
93 this.database.getTableNames(tableNamesCallback);
137 this.database.executeSql(query, this._queryFinished.bind(this, query), this._queryError.bind(this, query));
152 WebInspector.panels.resources.updateDatabaseTables(this.database);
160 var message = WebInspector.UIString("Database no longer has expected version.");
170 element.className = "database-user-query";
173 commandTextElement.className = "database-query-text"
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ProfileAggregator.java 18 import android.database.sqlite.SQLiteDatabase;
19 import android.database.sqlite.SQLiteDoneException;
20 import android.database.sqlite.SQLiteStatement;
33 * A version of the ContactAggregator for use against the profile database.
76 // Profile aggregation is simple - find the single contact in the database and attach to
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
UrlImageBinder.java 20 import android.database.Cursor;
  /development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
NotesDbAdapter.java 21 import android.database.Cursor;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
28 * Simple notes database access helper class. Defines the basic CRUD operations
48 * Database creation sql statement
74 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
82 * Constructor - takes the context to allow the database to be
92 * Open the notes database. If it cannot be opened, try to create a new
93 * instance of the database. If it cannot be created, throw an exception t
    [all...]
  /external/webkit/Source/WebCore/platform/audio/
HRTFDatabaseLoader.h 55 // Returns true once the default database has been completely loaded.
62 HRTFDatabase* database() { return m_hrtfDatabase.get(); } function in class:WebCore::HRTFDatabaseLoader
67 // defaultHRTFDatabase() gives access to the loaded database.
76 // If it hasn't already been loaded, creates a new thread and initiates asynchronous loading of the default database.

Completed in 1355 milliseconds

1 2 3 45 6 7 8 91011>>