OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:database
(Results
226 - 250
of
2668
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium/app/sql/
init_status.h
18
// The
database
is from a future version of the app and cannot be read.
/external/chromium/chrome/browser/autofill/
personal_data_manager.h
28
// Handles loading and saving Autofill profile information to the web
database
.
29
// This class also stores the profiles loaded from the
database
for use during
37
// when it has finished loading personal data from the web
database
. Register
78
//
database
by adding, updating and removing profiles.
91
//
database
by adding, updating and removing credit cards.
94
// Adds |profile| to the web
database
.
97
// Updates |profile| which already exists in the web
database
.
107
// Adds |credit_card| to the web
database
.
110
// Updates |credit_card| which already exists in the web
database
.
128
// Returns whether the personal data has been loaded from the web
database
[
all
...]
/external/chromium/chrome/browser/password_manager/
login_database_mac.cc
8
// rest of the
database
as a suplemental storage system to complement Keychain,
/external/chromium/crypto/
mac_security_services_lock.h
17
// thread-safe. In particular, code that accesses the CSSM
database
is
/external/collada/include/dae/
daeIOPlugin.h
38
* @param topMeta Top meta object to use to create objects to fill the
database
.
43
/** @name
Database
setup */
46
* Sets the
database
to use.
50
* @param
database
Database
to set.
52
virtual void setDatabase(daeDatabase*
database
) = 0;
59
* Imports content into the
database
from an input.
60
* The input can be a file, a
database
or another runtime.
120
virtual void setDatabase(daeDatabase*
database
) { }
/external/iproute2/doc/
arpd.sgml
27
<item><tt/-l/ - dump <tt/arpd/
database
to stdout and exit. Output consists
33
<item><tt/-f FILE/ - read and load <tt/arpd/
database
from <tt/FILE/
35
probably listing resulting
database
, if option <tt/-l/ is also given.
38
<item><tt/-b
DATABASE
/ - location of
database
file. Default location is
76
<p> <tt/arpd/ exits gracefully syncing
database
and restoring adjusted
78
<tt/SIGHUP/ syncs
database
to disk. <tt/SIGUSR1/ sends some statistics
80
database
and leave <tt/sysctl/ parameters in an unpredictable state.
89
in its
database
.
/external/iproute2/man/man8/
arpd.8
20
Dump arpd
database
to stdout and exit. Output consists of three columns: interface index, IP address and MAC address. Negative entries for dead hosts are also shown, in this case MAC address is replaced by word FAILED followed by colon and time when the fact that host is dead was proven the last time.
23
Read and load arpd
database
from FILE in text format similar dumped by option -l. Exit after load, probably listing resulting
database
, if option -l is also given. If FILE is -, stdin is read to get ARP table.
25
-b <
DATABASE
>
26
location of
database
file. Default location is /var/lib/arpd/arpd.db
47
arpd exits gracefully syncing
database
and restoring adjusted sysctl parameters, when receives SIGINT or SIGTERM. SIGHUP syncs
database
to disk. SIGUSR1 sends some statistics to syslog. Effect of another signals is undefined, they may corrupt
database
and leave sysctl praameters in an unpredictable state.
51
In order for arpd to be able to serve as ARP resolver, kernel must be compiled with the option CONFIG_ARPD and, in the case when interface list in not given on command line, variable app_solicit on interfaces of interest should be in /proc/sys/net/ipv4/neigh/*. If this is not made arpd still collects gratuitous ARP information in its
database
.
/external/javasqlite/src/main/java/SQLite/
Authorizer.java
15
* @param arg3 third argument (
database
name)
TableResult.java
8
* <A HREF="
Database
.html#get_table(java.lang.String)">
Database
.get_table</A>
15
* SQLite.
Database
db = new SQLite.
Database
();
/external/webkit/LayoutTests/storage/
close-during-stress-test.html
4
It actually helps to cause
database
activity by throwing an exception from a callback.</p>
empty-statement.html
25
var db = openDatabase("EmptyStatementTest", "1.0", "
Database
for an empty statement test", 1);
multiple-transactions.js
11
var db = openDatabaseWithSuffix("MultipleTransactionsTest", "1.0", "Test to make sure multiple transactions can be queued at once for an HTML5
database
", 32768);
open-database-over-quota.html
21
FAIL: We shouldn't have been able to open the
database
.
/external/webkit/Source/WebCore/inspector/
InspectorDatabaseAgent.h
38
class
Database
;
70
int databaseId(
Database
*);
72
void didOpenDatabase(PassRefPtr<
Database
>, const String& domain, const String& name, const String& version);
76
Database
* databaseForId(int databaseId);
/external/webkit/Source/WebCore/page/
GeolocationPositionCache.cpp
141
SQLiteDatabase
database
;
local
144
if (!
database
.open(m_databaseFile))
150
if (!
database
.executeCommand("CREATE TABLE IF NOT EXISTS CachedPosition ("
161
SQLiteStatement statement(
database
, "SELECT * FROM CachedPosition");
200
SQLiteDatabase
database
;
local
203
if (!
database
.open(m_databaseFile))
214
SQLiteTransaction transaction(
database
);
216
if (!
database
.executeCommand("DELETE FROM CachedPosition"))
219
SQLiteStatement statement(
database
, "INSERT INTO CachedPosition ("
/frameworks/base/core/java/android/database/sqlite/
SQLiteCompiledSql.java
17
package android.
database
.sqlite;
27
* 2. if this is not cached in {@link SQLiteDatabase}, {@link android.
database
.Cursor#close()}
34
/** The
database
this program is compiled against. */
38
* Native linkage, do not modify. This comes from the
database
.
45
* checked in this class when the
database
lock is held to determine if there
93
// if it is not in use, release its memory from the
database
112
// but if the
database
itself is not closed and is GC'ed, then
113
// all sub-objects attached to the
database
could end up getting GC'ed too.
150
* <P>The
database
lock must be held when calling this method.
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/
DatabaseLockTest.java
17
package android.
database
;
21
import android.
database
.sqlite.SQLiteDatabase;
32
* This is a series of unit tests for
database
locks.
69
* attempting to access a
database
concurrently.
71
* same
database
at the same time with the same prioritization, neither thread
72
* is locked out and prevented from accessing the
database
.
119
* testLockLatency() tests the latency of
database
locks.
121
* the same
database
, the locking/unlocking of the
database
is done within an
/frameworks/base/core/tests/coretests/src/android/database/sqlite/
SQLiteUnfinalizedExceptionTest.java
17
package android.
database
.sqlite;
20
import android.
database
.sqlite.SQLiteDatabaseTest.ClassToTestSqlCompilationAndCaching;
54
// and should automatically be finalized when
database
is closed
70
// since the above is NOT closed, closing
database
should fail
/libcore/luni/src/main/java/javax/sql/
PooledConnection.java
24
* An interface which provides facilities for handling connections to a
database
30
* process both to establish a connection to a
database
and to destroy the
37
* infrastructure that supports use of the
database
by applications.
39
* Applications obtain connections to the
database
by calling the
55
* The connection to the
database
represented by the {@code PooledConnection} is
77
* Closes the connection to the
database
held by this {@code
83
* if there is a problem accessing the
database
.
88
* Creates a connection to the
database
. This method is typically called by
95
* if there is a problem accessing the
database
.
RowSetWriter.java
28
* The writer must establish a connection to the {@code RowSet}'s
database
33
* written back to the
database
, but has already been updated there in the mean
43
* {@code RowSetWriter}, back to the
database
.
55
* if a problem occurs accessing the
database
.
/packages/apps/Gallery/src/com/android/camera/
PhotoAppWidgetProvider.java
25
import android.
database
.Cursor;
26
import android.
database
.sqlite.SQLiteDatabase;
27
import android.
database
.sqlite.SQLiteException;
28
import android.
database
.sqlite.SQLiteOpenHelper;
63
// Clean deleted photos out of our
database
120
* Store the given bitmap in this
database
for the given appWidgetId.
145
Log.e(TAG, "Could not open
database
", e);
186
Log.e(TAG, "Could not load photo from
database
", e);
205
Log.e(TAG, "Could not delete photo from
database
", e);
/packages/providers/CalendarProvider/res/values-nl/
strings.xml
20
<string name="upgrade_msg" msgid="2792831029435070926">"Agenda-
database
bijwerken."</string>
30
<string name="debug_tool_message" msgid="4414152820946316089">"U staat op het punt 1) een kopie van uw agenda-
database
te maken op de SD-kaart/USB-opslag die kan worden gelezen via een app en 2) deze te e-mailen. Verwijder de kopie zodra u deze van het apparaat heeft gekopieerd of de e-mail is ontvangen."</string>
32
<string name="debug_tool_email_subject" msgid="2403590332256471194">"
Database
voor Agenda bijgevoegd"</string>
33
<string name="debug_tool_email_body" msgid="740309162644398319">"Bijgevoegd vindt u mijn agenda-
database
met al mijn afspraken en persoonlijke gegevens. Gelieve hier zorgvuldig mee om te gaan."</string>
/packages/providers/DrmProvider/src/com/android/providers/drm/
DrmProvider.java
21
import android.
database
.Cursor;
22
import android.
database
.sqlite.SQLiteDatabase;
23
import android.
database
.sqlite.SQLiteException;
24
import android.
database
.sqlite.SQLiteOpenHelper;
25
import android.
database
.sqlite.SQLiteQueryBuilder;
26
import android.
database
.sqlite.SQLiteStatement;
50
* Creates and updated
database
on demand when opening it.
51
* Helper class to create
database
the first time the provider is
53
* an updated version of the
database
.
64
* Creates
database
the first time we try to open it
[
all
...]
/external/chromium/chrome/browser/history/
expire_history_backend.h
58
// history, as well as moving data from the main
database
to the archived
59
//
database
as it gets old.
120
// TODO(brettw) when we have an "archived" history
database
, this should take
134
// Moves the given visits from the main
database
to the archived one.
159
// Adds or merges the given URL row with the archived
database
, returning the
160
// ID of the URL in the archived
database
, or 0 on failure. The main (source)
161
//
database
will not be affected (the URL will have to be deleted later).
163
// Assumes the archived
database
is not NULL.
182
//
database
, and the list of affected URLs already be filled into
191
// Creates entries in the archived
database
for the unique URLs reference
[
all
...]
Completed in 251 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>