Searched refs:backends (Results 1 - 25 of 79) sorted by relevance

1234

/external/autotest/frontend/db/backends/afe/
H A Dcreation.py1 from django.db.backends.mysql.creation import *
H A Dintrospection.py1 from django.db.backends.mysql.introspection import *
H A Dvalidation.py1 from django.db.backends.mysql.validation import *
H A Dbase.py1 from django.db.backends.mysql.base import DatabaseCreation as MySQLCreation
2 from django.db.backends.mysql.base import DatabaseOperations as MySQLOperations
3 from django.db.backends.mysql.base import DatabaseWrapper as MySQLDatabaseWrapper
4 from django.db.backends.mysql.base import DatabaseIntrospection as MySQLIntrospection
14 compiler_module = "autotest_lib.frontend.db.backends.afe.compiler"
/external/autotest/frontend/db/backends/afe_sqlite/
H A Dcreation.py1 from django.db.backends.sqlite3.creation import *
H A Dintrospection.py1 from django.db.backends.sqlite3.introspection import *
H A Dbase.py4 from django.db.backends.sqlite3.base import DatabaseOperations as SQLiteDatabaseOperations
5 from django.db.backends.sqlite3.base import DatabaseWrapper as SQLiteDatabaseWrapper
9 compiler_module = "autotest_lib.frontend.db.backends.afe_sqlite.compiler"
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/
H A Dcodepen_credentials_backend_unittest.py4 from telemetry.internal.backends import codepen_credentials_backend
5 from telemetry.internal.backends \
H A Dfacebook_credentials_backend_unittest.py4 from telemetry.internal.backends import facebook_credentials_backend
5 from telemetry.internal.backends \
H A Dgoogle_credentials_backend_unittest.py4 from telemetry.internal.backends import\
6 from telemetry.internal.backends import google_credentials_backend
H A Dcodepen_credentials_backend.py5 from telemetry.internal.backends import form_based_credentials_backend
H A Dgoogle_credentials_backend.py5 from telemetry.internal.backends import form_based_credentials_backend
H A Dfacebook_credentials_backend.py5 from telemetry.internal.backends import form_based_credentials_backend
/external/mesa3d/src/gbm/main/
H A Dbackend.c46 static const struct backend_desc backends[] = { variable in typeref:struct:backend_desc
94 for (i = 0; i < ARRAY_SIZE(backends); ++i) {
95 if (strcmp(backends[i].name, name) == 0) {
96 backend = &backends[i];
119 for (i = 0; i < ARRAY_SIZE(backends) && dev == NULL; ++i) {
120 backend = load_backend(&backends[i]);
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/
H A Dmisc_web_contents_backend.py6 from telemetry.internal.backends.chrome import oobe
7 from telemetry.internal.backends.chrome_inspector import inspector_backend_list
H A Dcros_browser_with_oobe.py5 from telemetry.internal.backends.chrome import cros_browser_backend
H A Dios_browser_finder_unittest.py7 from telemetry.internal.backends.chrome import ios_browser_finder
/external/llvm/bindings/ocaml/all_backends/
H A Dllvm_all_backends.mli10 (** Initialize all the backends targets *)
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/
H A Ddevtools_http_unittest.py7 from telemetry.internal.backends.chrome_inspector import devtools_http
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dext_password.c19 static const struct ext_password_backend *backends[] = { variable in typeref:struct:ext_password_backend
42 for (i = 0; backends[i]; i++) {
43 if (os_strcmp(backends[i]->name, backend) == 0) {
44 data->backend = backends[i];
/external/wpa_supplicant_8/src/utils/
H A Dext_password.c19 static const struct ext_password_backend *backends[] = { variable in typeref:struct:ext_password_backend
42 for (i = 0; backends[i]; i++) {
43 if (os_strcmp(backends[i]->name, backend) == 0) {
44 data->backend = backends[i];
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dext_password.c19 static const struct ext_password_backend *backends[] = { variable in typeref:struct:ext_password_backend
42 for (i = 0; backends[i]; i++) {
43 if (os_strcmp(backends[i]->name, backend) == 0) {
44 data->backend = backends[i];
/external/mesa3d/src/gallium/auxiliary/pipe-loader/
H A Dpipe_loader.c37 static int (*backends[])(struct pipe_loader_device **, int) = { variable
49 for (i = 0; i < Elements(backends); i++)
50 n += backends[i](&devs[n], MAX2(0, ndev - n));
H A Dpipe_loader_sw.c46 static struct sw_winsys *(*backends[])() = { variable in typeref:struct:backends
58 for (i = 0; i < Elements(backends); i++) {
65 sdev->ws = backends[i]();
/external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
H A Dbrowser_credentials.py10 from telemetry.internal.backends import codepen_credentials_backend
11 from telemetry.internal.backends import facebook_credentials_backend
12 from telemetry.internal.backends import google_credentials_backend
21 def __init__(self, backends=None):
26 if backends is None:
27 backends = [
35 for backend in backends:
88 """Makes the backends think we're not logged in even though we are.

Completed in 688 milliseconds

1234