Searched refs:database (Results 1 - 25 of 535) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DDatabaseCallback.idl32 boolean handleEvent(Database database);
33 boolean handleEvent(DatabaseSync database);
H A DSQLTransactionClient.cpp45 void SQLTransactionClient::didCommitWriteTransaction(DatabaseBackendBase* database) argument
48 database->securityOrigin(), database->stringIdentifier());
51 bool SQLTransactionClient::didExceedQuota(DatabaseBackendBase* database) argument
53 ASSERT(database->databaseContext()->scriptExecutionContext()->isContextThread());
54 unsigned long long currentQuota = DatabaseManager::manager().quotaForOrigin(database->securityOrigin());
55 database->databaseContext()->databaseExceededQuota(database->stringIdentifier(), database->details());
56 unsigned long long newQuota = DatabaseManager::manager().quotaForOrigin(database
[all...]
H A DChangeVersionWrapper.cpp48 ASSERT(transaction && transaction->database());
50 DatabaseBackend* database = transaction->database(); local
53 if (!database->getVersionFromDatabase(actualVersion)) {
54 int sqliteError = database->sqliteDatabase().lastError();
56 sqliteError, database->sqliteDatabase().lastErrorMsg());
61 m_sqlError = SQLError::create(SQLError::VERSION_ERR, "current version of the database and `oldVersion` argument do not match");
70 ASSERT(transaction && transaction->database());
72 DatabaseBackend* database = transaction->database(); local
[all...]
H A DWorkerContextWebDatabase.cpp46 RefPtr<Database> database; local
49 database = dbManager.openDatabase(context, name, version, displayName, estimatedSize, creationCallback, error);
50 ASSERT(database || error != DatabaseError::None);
55 return database.release();
61 RefPtr<DatabaseSync> database; local
64 database = dbManager.openDatabaseSync(context, name, version, displayName, estimatedSize, creationCallback, error);
66 ASSERT(database || error != DatabaseError::None);
71 return database.release();
H A DDatabaseThread.cpp115 // Clean up the list of all pending transactions on this database thread
120 // Close the databases that we ran transactions on. This ensures that if any transactions are still open, they are rolled back and we don't leave the database in an
143 void DatabaseThread::recordDatabaseOpen(DatabaseBackend* database) argument
146 ASSERT(database);
147 ASSERT(!m_openDatabaseSet.contains(database));
148 m_openDatabaseSet.add(database);
151 void DatabaseThread::recordDatabaseClosed(DatabaseBackend* database) argument
154 ASSERT(database);
155 ASSERT(m_queue.killed() || m_openDatabaseSet.contains(database));
156 m_openDatabaseSet.remove(database);
173 SameDatabasePredicate(const DatabaseBackend* database) argument
179 unscheduleDatabaseTasks(DatabaseBackend* database) argument
[all...]
H A DDatabaseTask.cpp63 DatabaseTask::DatabaseTask(DatabaseBackend* database, DatabaseTaskSynchronizer* synchronizer) argument
64 : m_database(database)
100 // Opens the database file and verifies the version matches the expected version.
102 DatabaseBackend::DatabaseOpenTask::DatabaseOpenTask(DatabaseBackend* database, bool setVersionInNewDatabase, DatabaseTaskSynchronizer* synchronizer, DatabaseError& error, String& errorMessage, bool& success) argument
103 : DatabaseTask(database, synchronizer)
115 m_success = database()->performOpenAndVerify(m_setVersionInNewDatabase, m_error, errorMessage);
128 // Closes the database.
130 DatabaseBackend::DatabaseCloseTask::DatabaseCloseTask(DatabaseBackend* database, DatabaseTaskSynchronizer* synchronizer) argument
131 : DatabaseTask(database, synchronizer)
137 Database::from(database())
187 DatabaseTableNamesTask(DatabaseBackend* database, DatabaseTaskSynchronizer* synchronizer, Vector<String>& names) argument
[all...]
H A DDOMWindowWebDatabase.cpp48 RefPtr<Database> database = 0;
52 database = dbManager.openDatabase(window->document(), name, version, displayName, estimatedSize, creationCallback, error);
53 ASSERT(database || error != DatabaseError::None);
58 return database;
/macosx-10.9.5/WebKit-7537.78.2/efl/ewk/
H A Dewk_web_database.cpp41 const char* ewk_web_database_display_name_get(Ewk_Web_Database* database) argument
44 if (database->displayName)
45 return database->displayName;
47 WebCore::SecurityOrigin* origin = database->securityOrigin.get();
48 WebCore::DatabaseDetails details = WebCore::DatabaseManager::manager().detailsForNameAndOrigin(database->name, origin);
49 database->displayName = eina_stringshare_add(details.displayName().utf8().data());
51 return database->displayName;
53 UNUSED_PARAM(database);
58 uint64_t ewk_web_database_expected_size_get(const Ewk_Web_Database* database) argument
61 WebCore::SecurityOrigin* origin = database
70 ewk_web_database_filename_get(Ewk_Web_Database* database) argument
87 ewk_web_database_name_get(Ewk_Web_Database* database) argument
102 ewk_web_database_security_origin_get(const Ewk_Web_Database* database) argument
107 ewk_web_database_size_get(const Ewk_Web_Database* database) argument
119 ewk_web_database_remove(Ewk_Web_Database* database) argument
135 ewk_web_database_free(Ewk_Web_Database* database) argument
150 void* database; local
168 Ewk_Web_Database* database = new Ewk_Web_Database; local
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/tests/data/
H A Dslapd-config-undo.conf8 database @BACKEND@
18 #monitor#database monitor
20 database config
H A Dslapd-relay.conf39 # database definitions
42 database @BACKEND@
52 database @RELAY@
77 database @RELAY@
80 ### which causes the target database to be selected after DN massaging
90 database @RELAY@
103 #monitor#database monitor
H A Dslapd-2db.conf30 # database definitions
33 database @BACKEND@
42 database @BACKEND@
52 #monitor#database monitor
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DFeedbackHandler.java15 A function called with progress information when the database environment is being recovered.
20 A reference to the enclosing database environment.
28 A function called with progress information when the database is being upgraded.
32 @param database
33 A reference to the enclosing database.
38 void upgradeFeedback(Database database, int percent); argument
41 A function called with progress information when the database is being verified.
45 @param database
46 A reference to the enclosing database.
51 void verifyFeedback(Database database, in argument
[all...]
/macosx-10.9.5/WebKit-7537.78.2/gtk/webkit/
H A Dwebkitwebplugindatabase.cpp59 static void webkit_web_plugin_database_init(WebKitWebPluginDatabase* database) argument
61 WebKitWebPluginDatabasePrivate* priv = G_TYPE_INSTANCE_GET_PRIVATE(database, WEBKIT_TYPE_WEB_PLUGIN_DATABASE, WebKitWebPluginDatabasePrivate);
62 database->priv = priv;
88 * @database: a #WebKitWebPluginDatabase
90 * Returns all #WebKitWebPlugin available in @database.
97 GSList* webkit_web_plugin_database_get_plugins(WebKitWebPluginDatabase* database) argument
99 g_return_val_if_fail(WEBKIT_IS_WEB_PLUGIN_DATABASE(database), 0);
102 const Vector<PluginPackage*>& plugins = database->priv->coreDatabase->plugins();
114 * @database: a #WebKitWebPluginDatabase
118 * @database, o
124 webkit_web_plugin_database_get_plugin_for_mimetype(WebKitWebPluginDatabase* database, const char* mimeType) argument
142 webkit_web_plugin_database_refresh(WebKitWebPluginDatabase* database) argument
[all...]
H A Dwebkiticondatabase.cpp37 * @short_description: A WebKit web application database
41 * the same icon database.
43 * The icon database is enabled by default and stored in
53 * of the database and also to disable it by passing %NULL.
56 * won't be added to the database on disk and no existing icons will
101 WebKitIconDatabase* database = WEBKIT_ICON_DATABASE(object); local
105 webkit_icon_database_set_path(database, g_value_get_string(value));
115 WebKitIconDatabase* database = WEBKIT_ICON_DATABASE(object); local
119 g_value_set_string(value, webkit_icon_database_get_path(database));
140 * The absolute path of the icon database folde
182 webkit_icon_database_init(WebKitIconDatabase* database) argument
201 webkit_icon_database_get_path(WebKitIconDatabase* database) argument
229 webkit_icon_database_set_path(WebKitIconDatabase* database, const gchar* path) argument
268 webkit_icon_database_get_icon_uri(WebKitIconDatabase* database, const gchar* pageURI) argument
298 webkit_icon_database_get_icon_pixbuf(WebKitIconDatabase* database, const gchar* pageURI) argument
325 webkit_icon_database_clear(WebKitIconDatabase* database) argument
[all...]
H A Dwebkitfavicondatabase.cpp44 * @short_description: A WebKit favicon database
53 * to an on-disk database for persistence.
55 * The database is disabled by default. In order for icons to be
56 * stored and accessed, you will need to set an icon database path
57 * using webkit_favicon_database_set_path(). Disable the database
61 * won't be added to the on-disk database and no existing icons will
76 static void webkitFaviconDatabaseClose(WebKitFaviconDatabase* database);
87 // Called whenever a retained icon is read from database.
90 WebKitFaviconDatabase* database = webkit_get_favicon_database(); local
93 // when icon data is imported from the database
199 WebKitFaviconDatabase* database = WEBKIT_FAVICON_DATABASE(object); local
209 WebKitFaviconDatabase* database = WEBKIT_FAVICON_DATABASE(object); local
223 WebKitFaviconDatabase* database = WEBKIT_FAVICON_DATABASE(object); local
286 webkit_favicon_database_init(WebKitFaviconDatabase* database) argument
293 webkitFaviconDatabaseDispatchDidReceiveIcon(WebKitFaviconDatabase* database, const char* frameURI) argument
311 webkit_favicon_database_get_path(WebKitFaviconDatabase* database) argument
318 webkitFaviconDatabaseClose(WebKitFaviconDatabase* database) argument
339 webkit_favicon_database_set_path(WebKitFaviconDatabase* database, const gchar* path) argument
376 webkit_favicon_database_get_favicon_uri(WebKitFaviconDatabase* database, const gchar* pageURI) argument
389 getIconPixbufSynchronously(WebKitFaviconDatabase* database, const String& pageURL, const IntSize& iconSize) argument
436 webkit_favicon_database_try_get_favicon_pixbuf(WebKitFaviconDatabase* database, const gchar* pageURI, guint width, guint height) argument
445 webkitFaviconDatabaseGetOrCreateRequests(WebKitFaviconDatabase* database, const String& pageURL) argument
456 webkitfavicondatabaseDeleteRequests(WebKitFaviconDatabase* database, PendingIconRequestVector* requests, const String& pageURL) argument
468 WebKitFaviconDatabase* database = webkit_get_favicon_database(); local
515 webkit_favicon_database_get_favicon_pixbuf(WebKitFaviconDatabase* database, const gchar* pageURI, guint width, guint height, GCancellable* cancellable, GAsyncReadyCallback callback, gpointer userData) argument
569 webkit_favicon_database_get_favicon_pixbuf_finish(WebKitFaviconDatabase* database, GAsyncResult* result, GError** error) argument
590 webkitFaviconDatabaseProcessPendingIconsForURI(WebKitFaviconDatabase* database, const String& pageURL) argument
604 webkitFaviconDatabaseImportFinished(WebKitFaviconDatabase* database) argument
640 webkit_favicon_database_clear(WebKitFaviconDatabase* database) argument
[all...]
H A Dwebkitfavicondatabase.h60 webkit_favicon_database_get_path (WebKitFaviconDatabase* database);
63 webkit_favicon_database_set_path (WebKitFaviconDatabase* database,
67 webkit_favicon_database_get_favicon_uri (WebKitFaviconDatabase* database,
71 webkit_favicon_database_try_get_favicon_pixbuf (WebKitFaviconDatabase* database,
77 webkit_favicon_database_get_favicon_pixbuf (WebKitFaviconDatabase* database,
86 webkit_favicon_database_get_favicon_pixbuf_finish (WebKitFaviconDatabase* database,
91 webkit_favicon_database_clear (WebKitFaviconDatabase* database);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_favicon_database.h51 * Retrieves from the database the favicon for the given @a page_url
53 * @param database database object to query
60 EAPI Evas_Object *ewk_favicon_database_icon_get(Ewk_Favicon_Database *database, const char *page_url, Evas *evas);
65 * @param database database object to register the callback
69 EAPI void ewk_favicon_database_icon_change_callback_add(Ewk_Favicon_Database *database, Ewk_Favicon_Database_Icon_Change_Cb callback, void *data);
74 * @param database database object to unregister the callback.
77 EAPI void ewk_favicon_database_icon_change_callback_del(Ewk_Favicon_Database *database, Ewk_Favicon_Database_Icon_Change_C
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-shell/
H A Dsearchexample.conf27 database shell
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/servers/slapd/back-sock/
H A Dsearchexample.conf21 database sock
/macosx-10.9.5/WebKit-7537.78.2/qt/tests/qwebplugindatabase/
H A Dtst_qwebplugindatabase.cpp98 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
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...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorDatabaseInstrumentation.h41 inline void InspectorInstrumentation::didOpenDatabase(ScriptExecutionContext* context, PassRefPtr<Database> database, const String& domain, const String& name, const String& version) argument
45 didOpenDatabaseImpl(instrumentingAgents, database, domain, name, version);
48 UNUSED_PARAM(database);
H A DInspectorDatabaseResource.cpp45 PassRefPtr<InspectorDatabaseResource> InspectorDatabaseResource::create(PassRefPtr<Database> database, const String& domain, const String& name, const String& version) argument
47 return adoptRef(new InspectorDatabaseResource(database, domain, name, version));
50 InspectorDatabaseResource::InspectorDatabaseResource(PassRefPtr<Database> database, const String& domain, const String& name, const String& version) argument
51 : m_database(database)
H A DInspectorDatabaseResource.h47 static PassRefPtr<InspectorDatabaseResource> create(PassRefPtr<Database> database, const String& domain, const String& name, const String& version);
50 Database* database() { return m_database.get(); } function in class:WebCore::InspectorDatabaseResource
51 void setDatabase(PassRefPtr<Database> database) { m_database = database; } argument
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitFaviconDatabase.cpp40 * @Short_description: A WebKit favicon database
49 * is frozen to an on-disk database for persistence.
52 * won't be added to the on-disk database and no existing icons will
79 WebKitFaviconDatabase* database = WEBKIT_FAVICON_DATABASE(object); local
81 WebKitFaviconDatabasePrivate* priv = database->priv;
95 * @database: the object on which the signal is emitted
100 * been changed to @favicon_uri in the database. You can connect
133 static PassRefPtr<cairo_surface_t> getIconSurfaceSynchronously(WebKitFaviconDatabase* database, const String& pageURL, GError** error) argument
139 WebCore::Image* iconImage = database->priv->iconDatabase->imageForPageURL(pageURL, WebCore::IntSize(1, 1));
154 static void deletePendingIconRequests(WebKitFaviconDatabase* database, PendingIconRequestVecto argument
160 processPendingIconsForPageURL(WebKitFaviconDatabase* database, const String& pageURL) argument
188 WebKitFaviconDatabase* database = WEBKIT_FAVICON_DATABASE(clientInfo); local
230 getOrCreatePendingIconRequests(WebKitFaviconDatabase* database, const String& pageURL) argument
285 webkit_favicon_database_get_favicon(WebKitFaviconDatabase* database, const gchar* pageURI, GCancellable* cancellable, GAsyncReadyCallback callback, gpointer userData) argument
361 webkit_favicon_database_get_favicon_finish(WebKitFaviconDatabase* database, GAsyncResult* result, GError** error) argument
384 webkit_favicon_database_get_favicon_uri(WebKitFaviconDatabase* database, const gchar* pageURL) argument
404 webkit_favicon_database_clear(WebKitFaviconDatabase* database) argument
[all...]
/macosx-10.9.5/securityd-55199.3/src/
H A Dtokenkey.cpp48 database().token().tokend().releaseKey(mKey);
59 TokenDatabase &TokenKey::database() const function in class:TokenKey
66 return database().token();
113 // The related database is, naturally enough, the TokenDatabase we're in
117 return &database();

Completed in 658 milliseconds

1234567891011>>