OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:databases
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebKit2/Shared/
OriginAndDatabases.h
47
Vector<WebCore::DatabaseDetails>
databases
;
member in struct:WebKit::OriginAndDatabases
/external/webkit/Source/WebKit/qt/Api/
qwebsecurityorigin.cpp
45
scripting or
databases
.
66
Use
databases
() to access the
databases
defined within a security origin. The
67
disk usage of the origin's
databases
can be limited with setDatabaseQuota().
118
Returns the number of bytes all
databases
in the security origin
131
Returns the quota for the
databases
in the security origin.
143
Sets the quota for the
databases
in the security origin to \a quota bytes.
147
to
databases
in this origin.
198
Returns a list of all
databases
defined in the security origin.
200
QList<QWebDatabase> QWebSecurityOrigin::
databases
() cons
function in class:QWebSecurityOrigin
202
QList<QWebDatabase>
databases
;
local
[
all
...]
/external/chromium/chrome/browser/
browsing_data_database_helper.cc
99
std::vector<string16>
databases
;
local
100
ori->GetAllDatabaseNames(&
databases
);
101
for (std::vector<string16>::const_iterator db =
databases
.begin();
102
db !=
databases
.end(); ++db) {
/external/chromium/chrome/browser/tab_contents/
tab_specific_content_settings.h
135
CannedBrowsingDataDatabaseHelper*
databases
() const {
function in class:TabSpecificContentSettings::LocalSharedObjectsContainer
/external/webkit/Source/WebKit/gtk/webkit/
webkitsecurityorigin.cpp
43
* cumulative disk usage of an origin's
databases
may be retrieved with
186
* The cumulative size of all web
databases
in the security origin in bytes.
193
_("The cumulative size of all web
databases
in the security origin"),
291
* Returns: the cumulative size of all
databases
353
* Returns a list of all Web
Databases
in the security origin.
356
* #GList of
databases
in the security origin.
363
GList*
databases
= NULL;
local
374
databases
= g_list_append(
databases
, database);
378
return
databases
;
[
all
...]
/packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java
92
* Separate
databases
are kept for each external storage card we see (using the
342
* For devices that have removable storage, we support keeping multiple
databases
344
* On such devices, touch this particular database and garbage collect old
databases
.
345
* An LRU cache system is used to clean up
databases
for old external
370
// delete least recently used
databases
if we are over the limit
371
String[]
databases
= mContext.databaseList();
local
372
int count =
databases
.length;
375
// delete external
databases
that have not been used in the past two months
377
for (int i = 0; i <
databases
.length; i++) {
378
File other = mContext.getDatabasePath(
databases
[i])
[
all
...]
Completed in 439 milliseconds