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

1 2 3 4 5 67 8 91011>>

  /cts/tests/tests/database/src/android/database/cts/
CursorWrapperTest.java 17 package android.database.cts;
21 import android.database.CharArrayBuffer;
22 import android.database.ContentObserver;
23 import android.database.Cursor;
24 import android.database.CursorWrapper;
25 import android.database.DataSetObserver;
26 import android.database.StaleDataException;
27 import android.database.sqlite.SQLiteDatabase;
116 // Restore original database status
146 // After deactivating, the cursor can not provide values from database record
    [all...]
ContentObservableTest.java 17 package android.database.cts;
20 import android.database.ContentObservable;
21 import android.database.ContentObserver;
  /external/webkit/Source/WebCore/storage/
IDBTransactionBackendImpl.cpp 38 PassRefPtr<IDBTransactionBackendImpl> IDBTransactionBackendImpl::create(DOMStringList* objectStores, unsigned short mode, IDBDatabaseBackendImpl* database)
40 return adoptRef(new IDBTransactionBackendImpl(objectStores, mode, database));
43 IDBTransactionBackendImpl::IDBTransactionBackendImpl(DOMStringList* objectStores, unsigned short mode, IDBDatabaseBackendImpl* database)
47 , m_database(database)
48 , m_transaction(database->backingStore()->createTransaction())
DatabaseTracker.cpp 32 #if ENABLE(DATABASE)
154 // Since we're imminently opening a database within this context's origin, make sure this origin is being tracked by the QuotaTracker
158 // If a database already exists, ignore the passed-in estimated size and say it's OK.
162 // If the database will fit, allow its creation.
172 // Temporarily make the details of the proposed database available, so the client can get at them.
184 // If the database will fit now, allow its creation.
223 unsigned long long DatabaseTracker::getMaxSizeForDatabase(const AbstractDatabase* database)
225 // The maximum size for a database is the full quota for its origin, minus the current usage within the origin,
226 // plus the current usage of the given database
229 SecurityOrigin* origin = database->securityOrigin()
    [all...]
IDBDatabaseBackendImpl.h 47 static PassRefPtr<IDBDatabaseBackendImpl> create(const String& name, IDBBackingStore* database, IDBTransactionCoordinator* coordinator, IDBFactoryBackendImpl* factory, const String& uniqueIdentifier)
49 return adoptRef(new IDBDatabaseBackendImpl(name, database, coordinator, factory, uniqueIdentifier));
73 IDBDatabaseBackendImpl(const String& name, IDBBackingStore* database, IDBTransactionCoordinator*, IDBFactoryBackendImpl*, const String& uniqueIdentifier);
  /external/webkit/Source/WebCore/inspector/front-end/
ResourcesPanel.js 30 WebInspector.ResourcesPanel = function(database)
46 this.databasesListTreeElement = new WebInspector.StorageCategoryTreeElement(this, WebInspector.UIString("Databases"), "Databases", ["database-storage-tree-item"]);
135 var database = this._databases[i];
136 delete database._tableViews;
137 delete database._queryView;
284 addDatabase: function(database)
286 this._databases.push(database);
288 var databaseTreeElement = new WebInspector.DatabaseTreeElement(this, database);
289 database._databasesTreeElement = databaseTreeElement;
324 var database;
    [all...]
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteStatementTest.java 17 package android.database.sqlite.cts;
22 import android.database.Cursor;
23 import android.database.DatabaseUtils;
24 import android.database.SQLException;
25 import android.database.sqlite.SQLiteDatabase;
26 import android.database.sqlite.SQLiteDoneException;
27 import android.database.sqlite.SQLiteStatement;
  /external/webkit/Source/WebKit/gtk/webkit/
webkitsecurityorigin.cpp 37 * resources for client-side scripting or database access.
42 * Database quotas and usages are also defined per security origin. The
184 * WebKitSecurityOrigin:web-database-usage:
191 g_param_spec_uint64("web-database-usage",
192 _("Web Database Usage"),
197 * WebKitSecurityOrigin:web-database-quota:
199 * The web database qouta of the security origin in bytes.
204 g_param_spec_uint64("web-database-quota",
205 _("Web Database Quota"),
206 _("The web database quota of the security origin in bytes")
373 WebKitWebDatabase* database = webkit_security_origin_get_web_database(securityOrigin, databaseNames[i].utf8().data()); local
387 WebKitWebDatabase* database = (WebKitWebDatabase*) g_hash_table_lookup(databaseHash, databaseName); local
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/AppWithData/src/com/android/cts/appwithdata/
CreatePrivateDataTest.java 22 import android.database.Cursor;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
  /external/webkit/Source/WebCore/bindings/js/
JSInjectedScriptHostCustom.cpp 38 #if ENABLE(DATABASE)
39 #include "Database.h"
128 #if ENABLE(DATABASE)
129 Database* database = toDatabase(exec->argument(0));
130 if (database)
131 return jsNumber(impl()->databaseIdImpl(database));
  /frameworks/base/core/java/android/database/sqlite/
SqliteWrapper.java 18 package android.database.sqlite;
23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteException;
36 = "unable to open database file";
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseLocaleTest.java 17 package android.database;
19 import android.database.sqlite.SQLiteDatabase;
20 import android.database.Cursor;
95 // The database code currently uses PRIMARY collation strength,
97 // of case or accents), leaving the "cote" flavors in database order.
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerProvider.java 23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteDatabase;
25 import android.database.sqlite.SQLiteOpenHelper;
47 * This class helps open, create, and upgrade the database file.
69 Log.w(LOG_TAG, "Upgrading database from version " + oldVersion
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsMessageSender.java 23 import android.database.sqlite.SqliteWrapper;
28 import android.database.Cursor;
29 import android.database.sqlite.SQLiteException;
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
GroupsListFragment.java 26 import android.database.Cursor;
27 import android.database.MatrixCursor;
28 import android.database.MergeCursor;
  /cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/
PermissionContentProvider.java 21 import android.database.Cursor;
PermissionContentProviderGranting.java 21 import android.database.Cursor;
PermissionContentProviderPath.java 5 import android.database.Cursor;
PermissionContentProviderPathRestricting.java 21 import android.database.Cursor;
PrivateContentProvider.java 21 import android.database.Cursor;
PrivateContentProviderGranting.java 21 import android.database.Cursor;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete5.java 23 import android.database.Cursor;
List2.java 20 import android.database.Cursor;
46 // Map the NAME column in the people database to...
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 23 import android.database.Cursor;
24 import android.database.SQLException;
25 import android.database.sqlite.SQLiteDatabase;
26 import android.database.sqlite.SQLiteQueryBuilder;
67 // Database creation/version management helper.
83 Logger.getLogger("com.example.codelab.rssexample").info("DatabaseHelper.onCreate(): Created a database");
85 Logger.getLogger("com.example.codelab.rssexample").warning("DatabaseHelper.onCreate(): Couldn't create a database!");
92 // just drop the existing table, and recreate the database with the
101 // First we need to open the database. If this is our first time,
102 // the attempt to retrieve a database will thro
    [all...]
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryDatabase.java 23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteDatabase;
25 import android.database.sqlite.SQLiteOpenHelper;
26 import android.database.sqlite.SQLiteQueryBuilder;
129 * Performs a database query.
137 * actual columns in the database, creating a simple column alias mechanism
158 * This creates/opens the database.
188 * Starts a thread to load the database table with words
238 Log.w(TAG, "Upgrading database from version " + oldVersion + " to "

Completed in 2507 milliseconds

1 2 3 4 5 67 8 91011>>