Searched refs:databaseName (Results 1 - 25 of 63) sorted by relevance

123

/macosx-10.9.5/BerkeleyDB-21/db/examples_java/src/db/
H A DSequenceExample.java32 String databaseName = "access.db";
44 databaseName = argv[i];
51 app.run(removeExistingDatabase, databaseName);
62 public void run(boolean removeExistingDatabase, String databaseName) argument
67 new File(databaseName).delete();
76 Database table = new Database(databaseName, null, dbConfig);
H A DAccessExample.java34 String databaseName = "access.db";
46 databaseName = argv[i];
53 app.run(removeExistingDatabase, databaseName);
101 public void run(boolean removeExistingDatabase, String databaseName) argument
106 new File(databaseName).delete();
115 Database table = new Database(databaseName, null, dbConfig);
/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DDatabaseManagerClient.h40 virtual void dispatchDidModifyDatabase(SecurityOrigin*, const String& databaseName) = 0;
H A DDatabaseDetails.h50 DatabaseDetails(const String& databaseName, const String& displayName, unsigned long long expectedUsage, unsigned long long currentUsage) argument
51 : m_name(databaseName)
H A DDatabaseAuthorizer.h58 int allowAlterTable(const String& databaseName, const String& tableName);
92 int allowDetach(const String& databaseName);
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebDatabaseManager.idl57 HRESULT detailsForDatabase([in] BSTR databaseName, [in] IWebSecurityOrigin* origin, [out, retval] IPropertyBag **result);
61 HRESULT deleteDatabase([in] BSTR databaseName, [in] IWebSecurityOrigin* origin);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebDatabaseManager.h62 /* [in] */ BSTR databaseName,
72 /* [in] */ BSTR databaseName,
81 virtual void dispatchDidModifyDatabase(WebCore::SecurityOrigin*, const WTF::String& databaseName);
H A DWebDatabaseManager.cpp258 /* [in] */ BSTR databaseName,
274 DatabaseDetails details = DatabaseManager::manager().detailsForNameAndOrigin(String(databaseName, SysStringLen(databaseName)),
313 /* [in] */ BSTR databaseName,
319 if (!databaseName)
329 DatabaseManager::manager().deleteDatabase(webSecurityOrigin->securityOrigin(), String(databaseName, SysStringLen(databaseName)));
391 void WebDatabaseManager::dispatchDidModifyDatabase(SecurityOrigin* origin, const String& databaseName) argument
404 userInfo.set(WebDatabaseNameKey, databaseName);
257 detailsForDatabase( BSTR databaseName, IWebSecurityOrigin* origin, IPropertyBag** result) argument
312 deleteDatabase( BSTR databaseName, IWebSecurityOrigin* origin) argument
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DIndexedDBModel.js229 for (var databaseName in oldDatabaseNames) {
230 if (!newDatabaseNames[databaseName])
231 this._databaseRemoved(securityOrigin, databaseName);
233 for (var databaseName in newDatabaseNames) {
234 if (!oldDatabaseNames[databaseName])
235 this._databaseAdded(securityOrigin, databaseName);
241 * @param {string} databaseName
243 _databaseAdded: function(securityOrigin, databaseName)
245 var databaseId = new WebInspector.IndexedDBModel.DatabaseId(securityOrigin, databaseName);
251 * @param {string} databaseName
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorIndexedDBAgent.h62 virtual void requestDatabase(ErrorString*, const String& securityOrigin, const String& databaseName, PassRefPtr<RequestDatabaseCallback>);
63 virtual void requestData(ErrorString*, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<InspectorObject>* keyRange, PassRefPtr<RequestDataCallback>);
H A DInspectorIndexedDBAgent.cpp151 void start(IDBFactory*, SecurityOrigin*, const String& databaseName);
205 void ExecutableWithDatabase::start(IDBFactory* idbFactory, SecurityOrigin*, const String& databaseName) argument
209 RefPtr<IDBOpenDBRequest> idbOpenDBRequest = idbFactory->open(context(), databaseName, ec);
636 void InspectorIndexedDBAgent::requestDatabase(ErrorString* errorString, const String& securityOrigin, const String& databaseName, PassRefPtr<RequestDatabaseCallback> requestCallback) argument
647 databaseLoader->start(idbFactory, document->securityOrigin(), databaseName);
650 void InspectorIndexedDBAgent::requestData(ErrorString* errorString, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<InspectorObject>* keyRange, PassRefPtr<RequestDataCallback> requestCallback) argument
669 dataLoader->start(idbFactory, document->securityOrigin(), databaseName);
755 void InspectorIndexedDBAgent::clearObjectStore(ErrorString* errorString, const String& securityOrigin, const String& databaseName, const String& objectStoreName, PassRefPtr<ClearObjectStoreCallback> requestCallback) argument
766 clearObjectStore->start(idbFactory, document->securityOrigin(), databaseName);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DQtWebPageUIClient.h46 quint64 exceededDatabaseQuota(const QString& databaseName, const QString& displayName, WKSecurityOriginRef, quint64 currentQuota, quint64 currentOriginUsage, quint64 currentDatabaseUsage, quint64 expectedUsage);
60 static unsigned long long exceededDatabaseQuota(WKPageRef, WKFrameRef, WKSecurityOriginRef, WKStringRef databaseName, WKStringRef displayName, unsigned long long currentQuota, unsigned long long currentOriginUsage, unsigned long long currentDatabaseUsage, unsigned long long expectedUsage, const void *clientInfo);
H A DQtWebPageUIClient.cpp55 quint64 QtWebPageUIClient::exceededDatabaseQuota(const QString& databaseName, const QString& displayName, WKSecurityOriginRef securityOrigin, quint64 currentQuota, quint64 currentOriginUsage, quint64 currentDatabaseUsage, quint64 expectedUsage) argument
57 return m_webView->d_func()->exceededDatabaseQuota(databaseName, displayName, securityOrigin, currentQuota, currentOriginUsage, currentDatabaseUsage, expectedUsage);
101 unsigned long long QtWebPageUIClient::exceededDatabaseQuota(WKPageRef, WKFrameRef, WKSecurityOriginRef securityOrigin, WKStringRef databaseName, WKStringRef displayName, unsigned long long currentQuota, unsigned long long currentOriginUsage, unsigned long long currentDatabaseUsage, unsigned long long expectedUsage, const void *clientInfo) argument
104 QString qDatabaseName = WKStringCopyQString(databaseName);
H A DQtDialogRunner.cpp249 Q_PROPERTY(QString databaseName READ databaseName CONSTANT)
258 DatabaseQuotaDialogContextObject(const QString& databaseName, const QString& displayName, WKSecurityOriginRef securityOrigin, quint64 currentQuota, quint64 currentOriginUsage, quint64 currentDatabaseUsage, quint64 expectedUsage) argument
260 , m_databaseName(databaseName)
278 QString databaseName() const { return m_databaseName; } function in class:WebKit::DatabaseQuotaDialogContextObject
399 bool QtDialogRunner::initForDatabaseQuotaDialog(const QString& databaseName, const QString& displayName, WKSecurityOriginRef securityOrigin, quint64 currentQuota, quint64 currentOriginUsage, quint64 currentDatabaseUsage, quint64 expectedUsage) argument
405 DatabaseQuotaDialogContextObject* contextObject = new DatabaseQuotaDialogContextObject(databaseName, displayName, securityOrigin, currentQuota, currentOriginUsage, currentDatabaseUsage, expectedUsage);
H A DQtDialogRunner.h52 bool initForDatabaseQuotaDialog(const QString& databaseName, const QString& displayName, WKSecurityOriginRef, quint64 currentQuota, quint64 currentOriginUsage, quint64 currentDatabaseUsage, quint64 expectedUsage);
/macosx-10.9.5/BerkeleyDB-21/db/examples_java/src/collections/access/
H A DAccessExample.java63 String databaseName = "access.db";
75 databaseName = argv[i];
92 env.removeDatabase(null, databaseName, null);
96 AccessExample app = new AccessExample(env, databaseName);
123 public AccessExample(Environment env, String databaseName) argument
143 this.db = env.openDatabase(null, databaseName, null, dbConfig);
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/db/
H A DEnvironment.java278 created by setting both the fileName and databaseName parameters to
298 @param databaseName
300 databases in a single file. Although no databaseName parameter needs
302 a physical file that was not initially created using a databaseName
303 parameter. Further, the databaseName parameter is not supported by the
310 final String databaseName,
317 fileName, databaseName));
342 created by setting both the fileName and databaseName parameters to
362 @param databaseName
364 databases in a single file. Although no databaseName paramete
308 openDatabase(final Transaction txn, final String fileName, final String databaseName, DatabaseConfig config) argument
375 openSecondaryDatabase( final Transaction txn, final String fileName, final String databaseName, final Database primaryDatabase, SecondaryConfig config) argument
434 removeDatabase(final Transaction txn, final String fileName, final String databaseName) argument
493 renameDatabase(final Transaction txn, final String fileName, final String databaseName, final String newName) argument
[all...]
H A DSecondaryConfig.java251 final String databaseName,
262 final Db db = super.openDatabase(dbenv, txn, fileName, databaseName);
248 openSecondaryDatabase(final DbEnv dbenv, final DbTxn txn, final String fileName, final String databaseName, final Db primary) argument
H A DSecondaryDatabase.java99 created by setting both the fileName and databaseName parameters to
110 @param databaseName
112 databases in a single file. Although no databaseName parameter needs
114 a physical file that was not initially created using a databaseName
115 parameter. Further, the databaseName parameter is not supported by the
124 final String databaseName,
130 null, null, fileName, databaseName, primaryDatabase.db),
123 SecondaryDatabase(final String fileName, final String databaseName, final Database primaryDatabase, final SecondaryConfig config) argument
H A DDatabase.java77 created by setting both the fileName and databaseName parameters to
88 @param databaseName
90 databases in a single file. Although no databaseName parameter needs
92 a physical file that was not initially created using a databaseName
93 parameter. Further, the databaseName parameter is not supported by the
99 final String databaseName,
104 filename, databaseName));
1028 @param databaseName
1037 final String databaseName,
1042 db.remove(fileName, databaseName,
98 Database(final String filename, final String databaseName, final DatabaseConfig config) argument
1036 remove(final String fileName, final String databaseName, DatabaseConfig config) argument
1238 verify(final String fileName, final String databaseName, final java.io.PrintStream dumpStream, VerifyConfig verifyConfig, DatabaseConfig dbConfig) argument
[all...]
/macosx-10.9.5/WebKit-7537.78.2/gtk/webkit/
H A Dwebkitsecurityorigin.cpp381 WebKitWebDatabase* webkit_security_origin_get_web_database(WebKitSecurityOrigin* securityOrigin, const gchar* databaseName) argument
387 WebKitWebDatabase* database = (WebKitWebDatabase*) g_hash_table_lookup(databaseHash, databaseName);
392 "name", databaseName,
394 g_hash_table_insert(databaseHash, g_strdup(databaseName), database);
/macosx-10.9.5/CPANInternal-140/Log-Log4perl/lib/Log/Log4perl/JavaMap/
H A DJDBCAppender.pm28 my $databaseName = $2;
32 $dsn = "dbi:$driverName:database=$databaseName;host=$hostname;port=$port;$params";
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKDatabaseManager.h98 WK_EXPORT void WKDatabaseManagerDeleteDatabasesWithNameForOrigin(WKDatabaseManagerRef databaseManager, WKStringRef databaseName, WKSecurityOriginRef origin);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/
H A DInjectedBundlePageUIClient.h71 uint64_t didExceedDatabaseQuota(WebPage*, WebSecurityOrigin*, const String& databaseName, const String& databaseDisplayName, uint64_t currentQuotaBytes, uint64_t currentOriginUsageBytes, uint64_t currentDatabaseUsageBytes, uint64_t expectedUsageBytes);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebUIClient.h101 unsigned long long exceededDatabaseQuota(WebPageProxy*, WebFrameProxy*, WebSecurityOrigin*, const String& databaseName, const String& databaseDisplayName, unsigned long long currentQuota, unsigned long long currentOriginUsage, unsigned long long currentDatabaseUsage, unsigned long long expectedUsage);

Completed in 149 milliseconds

123