HomeSort by relevance Sort by last modified time
    Searched defs:database (Results 126 - 150 of 244) sorted by null

1 2 3 4 56 7 8 910

  /external/webkit/Source/WebCore/platform/audio/
HRTFPanner.cpp 96 HRTFDatabase* database = HRTFDatabaseLoader::defaultHRTFDatabase(); local
97 ASSERT(database);
99 int numberOfAzimuths = database->numberOfAzimuths();
130 // This code only runs as long as the context is alive and after database has been loaded.
131 HRTFDatabase* database = HRTFDatabaseLoader::defaultHRTFDatabase(); local
132 ASSERT(database);
133 if (!database) {
138 // IRCAM HRTF azimuths values from the loaded database is reversed from the panner's notion of azimuth.
178 int numberOfAzimuths = database->numberOfAzimuths();
198 database->getKernelsFromAzimuthElevation(azimuthBlend, m_azimuthIndex, elevation, kernelL, kernelR, frameDe (…)
    [all...]
  /external/webkit/Source/WebCore/storage/
Database.cpp 30 #include "Database.h"
32 #if ENABLE(DATABASE)
67 static PassOwnPtr<DatabaseCreationCallbackTask> create(PassRefPtr<Database> database, PassRefPtr<DatabaseCallback> creationCallback)
69 return adoptPtr(new DatabaseCreationCallbackTask(database, creationCallback));
78 DatabaseCreationCallbackTask(PassRefPtr<Database> database, PassRefPtr<DatabaseCallback> callback)
79 : m_database(database)
84 RefPtr<Database> m_database;
88 PassRefPtr<Database> Database::openDatabase(ScriptExecutionContext* context, const String& name
98 RefPtr<Database> database = adoptRef(new Database(context, name, expectedVersion, displayName, estimatedSize)); local
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/
GeolocationPermissions.cpp 331 SQLiteDatabase database; local
332 if (!openDatabase(&database))
337 if (!database.executeCommand("CREATE TABLE IF NOT EXISTS Permissions (origin TEXT UNIQUE NOT NULL, allow INTEGER NOT NULL)")) {
338 database.close();
342 SQLiteStatement statement(database, "SELECT * FROM Permissions");
344 database.close();
352 database.close();
363 SQLiteDatabase database;
364 if (!openDatabase(&database))
367 SQLiteTransaction transaction(database);
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebplugindatabase/
tst_qwebplugindatabase.cpp 98 QWebPluginDatabase* database = QWebSettings::pluginDatabase(); local
99 QList<QWebPluginInfo> plugins = database->plugins();
100 QStringList directories = database->searchPaths();
103 database->setSearchPaths(directories);
105 QCOMPARE(database->searchPaths(), directories);
106 QCOMPARE(database->plugins(), plugins);
107 database->refresh();
108 QCOMPARE(database->plugins(), plugins);
110 database->setSearchPaths(QStringList());
112 QCOMPARE(database->searchPaths(), QStringList())
175 QWebPluginDatabase* database = QWebSettings::pluginDatabase(); local
216 QWebPluginDatabase* database = QWebSettings::pluginDatabase(); local
277 QWebPluginDatabase* database = QWebSettings::pluginDatabase(); local
306 QWebPluginDatabase* database = QWebSettings::pluginDatabase(); local
406 QWebPluginDatabase* database = QWebSettings::pluginDatabase(); local
    [all...]
  /frameworks/base/core/java/android/database/
Cursor.java 17 package android.database;
27 * by a database query.
355 * Since this method could execute a query on the database and potentially take
CursorToBulkCursorAdaptor.java 17 package android.database;
CursorWrapper.java 17 package android.database;
  /frameworks/base/core/java/android/database/sqlite/
SQLiteCursor.java 17 package android.database.sqlite;
19 import android.database.AbstractWindowedCursor;
20 import android.database.CursorWindow;
21 import android.database.DatabaseUtils;
70 * @param db a reference to a Database object that is already constructed
112 * Get the database that this cursor is associated with.
268 "database = " + mQuery.getDatabase().getLabel() +
SQLiteOpenHelper.java 17 package android.database.sqlite;
20 import android.database.DatabaseErrorHandler;
21 import android.database.DefaultDatabaseErrorHandler;
22 import android.database.sqlite.SQLiteDatabase.CursorFactory;
26 * A helper class to manage database creation and version management.
29 * optionally {@link #onOpen}, and this class takes care of opening the database
31 * Transactions are used to make sure the database is always in a sensible state.
34 * implementations to defer opening and upgrading the database until first use,
35 * to avoid blocking application startup with long-running database upgrades.
46 // When true, getReadableDatabase returns a read-only database if it is just being opened
    [all...]
SQLiteQueryBuilder.java 17 package android.database.sqlite;
19 import android.database.Cursor;
20 import android.database.DatabaseUtils;
126 * from column names that the caller passes into query to database
133 * @param columnMap maps from the user column names to the database column names
141 * one factory for all queries on a database but it is normally
265 * @param db the database to query on
302 * @param db the database to query on
341 * @param db the database to query on
SQLiteSession.java 17 package android.database.sqlite;
19 import android.database.CursorWindow;
20 import android.database.DatabaseUtils;
26 * Provides a single client the ability to use a database.
28 * <h2>About database sessions</h2>
30 * Database access is always performed using a session. The session
31 * manages the lifecycle of transactions and database connections.
39 * When <em>Write Ahead Logging (WAL)</em> is enabled, the database can
54 * A thread has at most one session per database. This constraint ensures that
55 * a thread can never use more than one database connection at a time for
    [all...]
  /frameworks/base/core/java/com/android/internal/database/
SortCursor.java 17 package com.android.internal.database;
19 import android.database.AbstractCursor;
20 import android.database.Cursor;
21 import android.database.DataSetObserver;
26 * performance is ever obtained, it can be put back under android.database.
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseLockTest.java 17 package android.database;
19 import android.database.sqlite.SQLiteDatabase;
27 * This is a series of unit tests for database locks.
64 * attempting to access a database concurrently.
66 * same database at the same time with the same prioritization, neither thread
67 * is locked out and prevented from accessing the database.
114 * testLockLatency() tests the latency of database locks.
116 * the same database, the locking/unlocking of the database is done within an
NewDatabasePerformanceTests.java 17 package android.database;
20 import android.database.sqlite.SQLiteDatabase;
29 * Database Performance Tests
    [all...]
DatabasePerformanceTests.java 17 package android.database;
23 import android.database.Cursor;
24 import android.database.sqlite.SQLiteDatabase;
34 * Database Performance Tests
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/sqlite/
SQLiteCursorTest.java 17 package android.database.sqlite;
21 import android.database.Cursor;
70 // a new database page for each row.
  /bionic/libc/include/
nsswitch.h 144 * and its dispatch control flags for a given database.
154 * or the requested database doesn't have an entry)
167 * An nsswitch module provides a mapping from (database name, method name)
172 const char *database; member in struct:__anon31
195 * ns_dbt - `nsswitch database thang'
196 * For each database in /etc/nsswitch.conf there is a ns_dbt, with its
200 const char *name; /* name of database */
  /bionic/libc/private/
nsswitch.h 144 * and its dispatch control flags for a given database.
155 * or the requested database doesn't have an entry)
168 * An nsswitch module provides a mapping from (database name, method name)
173 const char *database; member in struct:__anon650
196 * ns_dbt - `nsswitch database thang'
197 * For each database in /etc/nsswitch.conf there is a ns_dbt, with its
201 const char *name; /* name of database */
  /cts/tests/tests/database/src/android/database/cts/
CursorJoinerTest.java 17 package android.database.cts;
21 import android.database.Cursor;
22 import android.database.CursorJoiner;
23 import android.database.CursorJoiner.Result;
24 import android.database.sqlite.SQLiteDatabase;
  /development/ndk/platforms/android-3/include/
nsswitch.h 144 * and its dispatch control flags for a given database.
154 * or the requested database doesn't have an entry)
168 * An nsswitch module provides a mapping from (database name, method name)
173 const char *database; member in struct:__anon1222
196 * ns_dbt - `nsswitch database thang'
197 * For each database in /etc/nsswitch.conf there is a ns_dbt, with its
201 const char *name; /* name of database */
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
nsswitch.h 144 * and its dispatch control flags for a given database.
154 * or the requested database doesn't have an entry)
167 * An nsswitch module provides a mapping from (database name, method name)
172 const char *database; member in struct:__anon30590
195 * ns_dbt - `nsswitch database thang'
196 * For each database in /etc/nsswitch.conf there is a ns_dbt, with its
200 const char *name; /* name of database */
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
nsswitch.h 144 * and its dispatch control flags for a given database.
154 * or the requested database doesn't have an entry)
167 * An nsswitch module provides a mapping from (database name, method name)
172 const char *database; member in struct:__anon30944
195 * ns_dbt - `nsswitch database thang'
196 * For each database in /etc/nsswitch.conf there is a ns_dbt, with its
200 const char *name; /* name of database */
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
nsswitch.h 144 * and its dispatch control flags for a given database.
154 * or the requested database doesn't have an entry)
167 * An nsswitch module provides a mapping from (database name, method name)
172 const char *database; member in struct:__anon31298
195 * ns_dbt - `nsswitch database thang'
196 * For each database in /etc/nsswitch.conf there is a ns_dbt, with its
200 const char *name; /* name of database */
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
nsswitch.h 144 * and its dispatch control flags for a given database.
154 * or the requested database doesn't have an entry)
167 * An nsswitch module provides a mapping from (database name, method name)
172 const char *database; member in struct:__anon31723
195 * ns_dbt - `nsswitch database thang'
196 * For each database in /etc/nsswitch.conf there is a ns_dbt, with its
200 const char *name; /* name of database */
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
nsswitch.h 144 * and its dispatch control flags for a given database.
154 * or the requested database doesn't have an entry)
167 * An nsswitch module provides a mapping from (database name, method name)
172 const char *database; member in struct:__anon32080
195 * ns_dbt - `nsswitch database thang'
196 * For each database in /etc/nsswitch.conf there is a ns_dbt, with its
200 const char *name; /* name of database */

Completed in 1382 milliseconds

1 2 3 4 56 7 8 910