Home
last modified time | relevance | path

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

12

/third_party/pulseaudio/src/pulsecore/
H A Ddatabase-simple.c36 #include "database.h"
259 void pa_database_close(pa_database *database) { in pa_database_close() argument
260 simple_data *db = (simple_data*)database; in pa_database_close()
263 pa_database_sync(database); in pa_database_close()
270 pa_datum* pa_database_get(pa_database *database, const pa_datum *key, pa_datum* data) { in pa_database_get() argument
271 simple_data *db = (simple_data*)database; in pa_database_get()
289 int pa_database_set(pa_database *database, const pa_datum *key, const pa_datum* data, bool overwrite) { in pa_database_set() argument
290 simple_data *db = (simple_data*)database; in pa_database_set()
321 int pa_database_unset(pa_database *database, const pa_datum *key) { in pa_database_unset() argument
322 simple_data *db = (simple_data*)database; in pa_database_unset()
330 pa_database_clear(pa_database *database) pa_database_clear() argument
340 pa_database_size(pa_database *database) pa_database_size() argument
347 pa_database_first(pa_database *database, pa_datum *key, pa_datum *data) pa_database_first() argument
370 pa_database_next(pa_database *database, const pa_datum *key, pa_datum *next, pa_datum *data) pa_database_next() argument
455 pa_database_sync(pa_database *database) pa_database_sync() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DdecoratorMetadataWithImportDeclarationNameCollision8.js10 import database = require('./db');
16 db: database.db;
18 constructor(db: database.db) { // no collision
42 var database = require("./db"); variable
53 __metadata("design:paramtypes", [database.db])
H A DdecoratorMetadataWithImportDeclarationNameCollision6.js10 import database from './db';
16 db: database;
18 constructor(db: database) { // no collision
/third_party/benchmark/
H A D.ycm_extra_conf.py5 # compilation database set (by default, one is not set).
35 database = ycm_core.CompilationDatabase( compilation_database_folder ) variable
37 database = None variable
89 compilation_info = database.GetCompilationInfoForFile(
94 return database.GetCompilationInfoForFile( filename )
98 if database:
/third_party/ffmpeg/libavcodec/
H A Dh274.c104 static void init_slice(H274FilmGrainDatabase *database, uint8_t h, uint8_t v) in init_slice() argument
106 if (database->residency[h] & (1 << v)) in init_slice()
109 database->residency[h] |= (1 << v); in init_slice()
110 init_slice_c(database->db[h][v], h, v, database->slice_tmp); in init_slice()
158 H274FilmGrainDatabase *database, in generate()
196 init_slice(database, h, v); in generate()
203 &database->db[h][v][y_offset][x_offset]); in generate()
218 H274FilmGrainDatabase *database, in ff_h274_apply_film_grain()
273 database, in ff_h274_apply_film_grain()
156 generate(int8_t *out, int out_stride, const uint8_t *in, int in_stride, H274FilmGrainDatabase *database, const AVFilmGrainH274Params *h274, int c, int invert, int deblock, int y_offset, int x_offset) generate() argument
217 ff_h274_apply_film_grain(AVFrame *out_frame, const AVFrame *in_frame, H274FilmGrainDatabase *database, const AVFilmGrainParams *params) ff_h274_apply_film_grain() argument
[all...]
/third_party/protobuf/python/google/protobuf/pyext/
H A Ddescriptor_pool.cc113 cpool->database = NULL; in _CreateDescriptorPool()
154 DescriptorDatabase* database) { in PyDescriptorPool_NewWithDatabase()
159 if (database != NULL) { in PyDescriptorPool_NewWithDatabase()
161 cpool->pool = new DescriptorPool(database, cpool->error_collector); in PyDescriptorPool_NewWithDatabase()
162 cpool->database = database; in PyDescriptorPool_NewWithDatabase()
184 DescriptorDatabase* database = NULL; in New() local
186 database = new PyDescriptorDatabase(py_database); in New()
189 PyDescriptorPool_NewWithDatabase(database)); in New()
202 delete self->database; in Dealloc()
153 PyDescriptorPool_NewWithDatabase( DescriptorDatabase* database) PyDescriptorPool_NewWithDatabase() argument
[all...]
H A Ddescriptor_pool.h70 // The C++ descriptor database used to fetch unknown protos. Can be NULL.
72 const DescriptorDatabase* database; member
/third_party/pulseaudio/src/modules/
H A Dmodule-card-restore.c44 #include <pulsecore/database.h>
66 pa_database *database; member
97 pa_database_sync(u->database); in save_time_callback()
237 r = (pa_database_set(u->database, &key, &data, true) == 0); in entry_write()
296 if (!pa_database_get(u->database, &key, &data)) { in entry_read()
681 if (!(u->database = pa_database_open(state_path, "card-database", true, true))) { in pa__init()
710 pa_database_sync(u->database); in pa__done()
713 if (u->database) in pa__done()
714 pa_database_close(u->database); in pa__done()
[all...]
H A Dmodule-equalizer-sink.c63 #include <pulsecore/database.h>
126 pa_database *database; member
937 pa_database_set(u->database, &key, &data, true); in save_profile()
938 pa_database_sync(u->database); in save_profile()
951 pa_database *database; in save_state() local
976 pa_assert_se(database = pa_database_open(state_path, EQ_STATE_DB, false, true)); in save_state()
979 pa_database_set(database, &key, &data, true); in save_state()
980 pa_database_sync(database); in save_state()
981 pa_database_close(database); in save_state()
987 pa_database *database; in remove_profile() local
1025 pa_database *database; load_state() local
1742 pa_database *database; get_profiles() local
[all...]
H A Dmodule-device-manager.c49 #include <pulsecore/database.h>
114 pa_database *database; member
165 pa_database_sync(u->database); in save_time_callback()
221 r = (pa_database_set(u->database, &key, &data, true) == 0); in entry_write()
293 if (!pa_database_get(u->database, &key, &data)) { in entry_read()
386 done = !pa_database_first(u->database, &key, NULL); in dump_database()
388 pa_log_debug("Dumping database"); in dump_database()
394 done = !pa_database_next(u->database, &key, &next_key, NULL); in dump_database()
438 pa_log_debug("Completed database dump"); in dump_database()
509 done = !pa_database_first(u->database, in load_or_initialize_entry()
[all...]
H A Dmodule-device-restore.c52 #include <pulsecore/database.h>
80 pa_database *database; member
131 pa_database_sync(u->database); in save_time_callback()
202 r = (pa_database_set(u->database, &key, &data, true) == 0); in entry_write()
223 if (!pa_database_get(u->database, &key, &data)) { in entry_read()
381 r = (pa_database_set(u->database, &key, &data, true) == 0); in perportentry_write()
406 if (!pa_database_get(u->database, &key, &data)) in perportentry_read()
437 pa_log_warn("Invalid channel map stored in database for device %s", name); in perportentry_read()
442 pa_log_warn("Volume and channel map don't match in database entry for device %s", name); in perportentry_read()
1265 if (!(u->database in pa__init()
[all...]
H A Dmodule-stream-restore.c50 #include <pulsecore/database.h>
100 pa_database* database; member
941 pa_assert_se(pa_database_unset(de->userdata->database, &key) == 0); in handle_entry_remove()
964 pa_database_sync(u->database); in save_time_callback()
1007 r = (pa_database_set(u->database, &key, &data, replace) == 0); in entry_write()
1043 if (!pa_database_get(u->database, &key, &data)) in legacy_entry_read()
1069 pa_log_warn("Invalid device name stored in database for legacy stream"); in legacy_entry_read()
1074 pa_log_warn("Invalid card name stored in database for legacy stream"); in legacy_entry_read()
1084 pa_log_warn("Invalid channel map stored in database for legacy stream"); in legacy_entry_read()
1089 pa_log_warn("Invalid volume stored in database fo in legacy_entry_read()
[all...]
/third_party/skia/third_party/externals/angle2/src/android_system_settings/src/com/android/angle/common/
H A DSearchProvider.java31 import android.database.Cursor;
32 import android.database.MatrixCursor;
H A DReceiver.java22 import android.database.ContentObserver;
/third_party/astc-encoder/Test/
H A Dastc_test_competitive_plot.py37 def get_series(database, compressor, quality, block_size):
44 with open(database) as csvfile:
/third_party/node/deps/openssl/openssl/util/perl/OpenSSL/
H A DOrdinals.pm110 Two internal databases are created. One database is simply a copy of the file
111 contents and is treated as read-only. The other database is an exact copy of
112 the first, but is treated as a work database, i.e. it can be modified and added
196 the current work database.
215 Writes the current work database data to the ordinals file FILENAME.
657 Invalidates the whole working database. The practical effect is that all
658 symbols are set to not exist, but are kept around in the database to retain
676 Validates the current working database by collection statistics on how many
/third_party/openssl/util/perl/OpenSSL/
H A DOrdinals.pm110 Two internal databases are created. One database is simply a copy of the file
111 contents and is treated as read-only. The other database is an exact copy of
112 the first, but is treated as a work database, i.e. it can be modified and added
196 the current work database.
215 Writes the current work database data to the ordinals file FILENAME.
657 Invalidates the whole working database. The practical effect is that all
658 symbols are set to not exist, but are kept around in the database to retain
676 Validates the current working database by collection statistics on how many
/third_party/libphonenumber/java/demoapp/app/src/main/java/com/google/phonenumbers/demoapp/contacts/
H A DContactsRead.java5 import android.database.Cursor;
/third_party/python/Modules/_sqlite/clinic/
H A Dconnection.c.h6 pysqlite_connection_init_impl(pysqlite_Connection *self, PyObject *database,
16 static const char * const _keywords[] = {"database", "timeout", "detect_types", "isolation_level", "check_same_thread", "factory", "cached_statements", "uri", NULL}; in pysqlite_connection_init()
22 PyObject *database; in pysqlite_connection_init() local
35 database = fastargs[0]; in pysqlite_connection_init()
100 return_value = pysqlite_connection_init_impl((pysqlite_Connection *)self, database, timeout, detect_types, isolation_level, check_same_thread, factory, cache_size, uri); in pysqlite_connection_init()
250 "Close the database connection.\n"
270 "Commit any pending transaction to the database.\n"
765 "Abort any pending database operation.");
783 "Returns iterator to the dump of the database in an SQL text format.");
802 "Makes a backup of the database
[all...]
/third_party/protobuf/src/google/protobuf/
H A Ddescriptor_database_unittest.cc56 static void AddToDatabase(SimpleDescriptorDatabase* database, in AddToDatabase() argument
60 database->Add(file_proto); in AddToDatabase()
/third_party/python/Lib/test/test_sqlite3/
H A Dtest_dbapi.py48 # Temporarily limit a database connection parameter
309 err_msg = "unable to open database file"
371 A commit should also work when no changes were made to the database.
381 A rollback should also work when no changes were made to the database.
560 # This uses the old database, old row factory, but new text factory
571 "unable to open database file",
633 regex = "file is not a database"
637 # deserialized database.
652 """ Checks that we can successfully connect to a database using an object that
721 def factory(database, *arg
[all...]
/third_party/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface.cc1086 std::unique_ptr<SimpleDescriptorDatabase> database{ in PopulateSingleSimpleDescriptorDatabase()
1091 if (database->FindFileByName(file_descriptor_set.file(j).name(), in PopulateSingleSimpleDescriptorDatabase()
1096 if (!database->Add(file_descriptor_set.file(j))) { in PopulateSingleSimpleDescriptorDatabase()
1100 return database; in PopulateSingleSimpleDescriptorDatabase()
1125 DescriptorDatabase* database) { in VerifyInputFilesInDescriptors()
1128 if (!database->FindFileByName(input_file, &file_descriptor)) { in VerifyInputFilesInDescriptors()
1129 std::cerr << "Could not find file in descriptor database: " << input_file in VerifyInputFilesInDescriptors()
1124 VerifyInputFilesInDescriptors( DescriptorDatabase* database) VerifyInputFilesInDescriptors() argument
/third_party/protobuf/src/google/protobuf/util/
H A Djson_util_test.cc335 DescriptorPoolDatabase database(*DescriptorPool::generated_pool()); in TEST_F()
336 DescriptorPool pool(&database); in TEST_F()
/third_party/eudev/hm_src/
H A Dkeyboard-keys-from-name.h159 {"database", KEY_DATABASE}, in keyboard_lookup_key()
/third_party/gn/src/gn/
H A Dcommand_gen.cc393 // The compilation database is written if either the .gn setting is set or if in RunCompileCommandsWriter()
402 return true; // No compilation database needs to be written. in RunCompileCommandsWriter()
407 // The compilation database file goes in the build directory. in RunCompileCommandsWriter()
523 dependency database after the ninja build graph has been generated. This
698 target to add to the compilation database. This pattern is appended to any
701 targets to the compilation database that the project doesn't add by default.

Completed in 39 milliseconds

12