HomeSort by: relevance | last modified time | path
    Searched defs:backend (Results 1 - 25 of 25) sorted by relevancy

  /src/external/bsd/kyua-cli/dist/store/
backend.hpp 29 /// \file store/backend.hpp
30 /// Interface to the backend database.
71 class backend { class in namespace:store
79 backend(impl*);
82 ~backend(void);
84 static backend open_ro(const utils::fs::path&);
85 static backend open_rw(const utils::fs::path&);
backend.cpp 29 #include "store/backend.hpp"
237 /// Internal implementation for the backend.
238 struct store::backend::impl {
239 /// The SQLite database this backend talks to.
273 /// Constructs a new backend.
276 store::backend::backend(impl* pimpl_) : function in class:store::backend
283 store::backend::~backend(void)
292 /// \return The backend representation
    [all...]
schema_inttest.cpp 29 #include "store/backend.hpp"
41 #include "store/backend.hpp"
73 /// \param transaction An open read transaction in the backend.
92 /// \param transaction An open read transaction in the backend.
228 /// \param transaction An open read transaction in the backend.
347 /// \param transaction An open read transaction in the backend.
434 /// \param transaction An open read-only backend.
436 check_data(store::backend& backend)
438 store::transaction transaction = backend.start()
465 store::backend backend = store::backend::open_ro(testpath); local
492 store::backend backend = store::backend::open_ro(testpath); local
    [all...]
backend_test.cpp 29 #include "store/backend.hpp"
207 store::backend backend = store::backend::open_ro(fs::path("test.db")); local
208 backend.database().exec("SELECT * FROM metadata");
216 store::backend::open_ro(fs::path("missing.db")));
236 store::backend::open_ro(fs::path("test.db")));
253 store::backend backend = store::backend::open_rw(fs::path("test.db")) local
266 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
    [all...]
transaction_test.cpp 41 #include "store/backend.hpp"
77 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
78 backend.database().exec("PRAGMA foreign_keys = OFF");
79 store::transaction tx = backend.start();
87 sqlite::statement stmt = backend.database().create_statement(
113 store::backend backend = store::backend::open_rw(fs::path("test.db")) local
130 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
159 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
177 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
218 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
234 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
253 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
273 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
288 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
383 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
420 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
434 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
453 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
493 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
509 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
531 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
573 store::backend backend = store::backend::open_ro(fs::path("test.db")); local
598 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
634 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
686 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
719 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
736 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
762 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
791 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
880 store::backend backend = store::backend::open_rw(fs::path("test.db")); local
    [all...]
  /src/external/bsd/kyua-cli/dist/cli/
cmd_db_exec.cpp 38 #include "store/backend.hpp"
168 store::backend backend = store::backend::open_rw( local
170 sqlite::statement stmt = backend.database().create_statement(
  /src/external/bsd/unbound/dist/cachedb/
cachedb.h 52 /** true is cachedb is enabled, the backend is turned on */
55 /** the backend routines */
56 struct cachedb_backend* backend; member in struct:cachedb_env
58 /** backend specific data here */
70 * Backend call routines
73 /** backend name */
  /src/external/bsd/wpa/dist/src/utils/
ext_password.c 2 * External password backend
30 const struct ext_password_backend *backend; member in struct:ext_password_data
35 struct ext_password_data * ext_password_init(const char *backend,
46 if (os_strcmp(backends[i]->name, backend) == 0) {
47 data->backend = backends[i];
52 if (!data->backend) {
57 data->priv = data->backend->init(params);
69 if (data && data->backend && data->priv)
70 data->backend->deinit(data->priv);
80 return data->backend->get(data->priv, name)
    [all...]
  /src/external/gpl3/gcc/dist/libobjc/objc/
thr.h 57 void * backend; /* Specific to backend */ member in struct:objc_mutex
64 void * backend; /* Specific to backend */ member in struct:objc_condition
109 /* Backend initialization functions */
  /src/external/gpl3/gcc.old/dist/libobjc/objc/
thr.h 57 void * backend; /* Specific to backend */ member in struct:objc_mutex
64 void * backend; /* Specific to backend */ member in struct:objc_condition
109 /* Backend initialization functions */
  /src/external/bsd/kyua-cli/dist/engine/drivers/
scan_action_test.cpp 38 #include "store/backend.hpp"
116 store::backend backend = store::backend::open_rw(fs::path(db_name)); local
118 store::transaction tx = backend.start();
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
LTOBackend.cpp 1 //===-LTOBackend.cpp - LLVM Link Time Optimizer Backend -------------------===//
9 // This file implements the "backend" phase of LTO, i.e. it performs
12 // to implement a standalone ThinLTO backend.
53 #define DEBUG_TYPE "lto-backend"
106 // If this is the combined module (not a ThinLTO backend compile) or the
498 Error lto::backend(const Config &C, AddStreamFn AddStream, function in class:LTOBitcodeEmbedding::lto
  /src/external/bsd/openldap/dist/tests/progs/
ldif-filter.c 49 Usage: %s [-b backend] [-s spec[,spec]...]\n\
50 Filter standard input by first <spec> matching '[<backend>]=[a][e][n]':\n\
55 <backend> defaults to the $BACKEND environment variable.\n\
61 /* Return flags from "backend=flags" in spec; nonzero if backend found */
63 get_flags( const char *backend, const char *spec )
65 size_t len = strlen( backend );
75 if ( tmp-spec == len && !memcmp( spec, backend, len )) {
223 const char *backend = getenv( "BACKEND" ), *specs = "", *tmp local
    [all...]
  /src/external/gpl3/gdb/dist/sim/m68hc11/
dv-m68hc11sio.c 49 backend {tcp | stdio}
51 Use dv-sockser TCP-port backend or stdio for backend. Default: stdio.
83 enum {sio_tcp, sio_stdio} backend; /* backend */ member in struct:m68hc11sio
128 if (hw_find_property(me, "backend") != NULL)
130 const char *value = hw_find_string_property(me, "backend");
132 controller->backend = sio_tcp;
134 controller->backend = sio_stdio;
136 hw_abort (me, "illegal value for backend parameter `%s':
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/m68hc11/
dv-m68hc11sio.c 49 backend {tcp | stdio}
51 Use dv-sockser TCP-port backend or stdio for backend. Default: stdio.
83 enum {sio_tcp, sio_stdio} backend; /* backend */ member in struct:m68hc11sio
128 if (hw_find_property(me, "backend") != NULL)
130 const char *value = hw_find_string_property(me, "backend");
132 controller->backend = sio_tcp;
134 controller->backend = sio_stdio;
136 hw_abort (me, "illegal value for backend parameter `%s':
    [all...]
  /src/external/gpl3/gdb/dist/sim/mips/
dv-tx3904sio.c 70 backend {tcp | stdio}
72 Use dv-sockser TCP-port backend or stdio for backend. Default: stdio.
153 enum {sio_tcp, sio_stdio} backend; /* backend */ member in struct:tx3904sio
229 if (hw_find_property(me, "backend") != NULL)
231 const char* value = hw_find_string_property(me, "backend");
233 controller->backend = sio_tcp;
235 controller->backend = sio_stdio;
237 hw_abort(me, "illegal value for backend parameter `%s': use tcp or stdio", value)
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/mips/
dv-tx3904sio.c 70 backend {tcp | stdio}
72 Use dv-sockser TCP-port backend or stdio for backend. Default: stdio.
153 enum {sio_tcp, sio_stdio} backend; /* backend */ member in struct:tx3904sio
229 if (hw_find_property(me, "backend") != NULL)
231 const char* value = hw_find_string_property(me, "backend");
233 controller->backend = sio_tcp;
235 controller->backend = sio_stdio;
237 hw_abort(me, "illegal value for backend parameter `%s': use tcp or stdio", value)
    [all...]
  /src/external/bsd/openldap/dist/servers/lloadd/
lload.h 175 enum lcf_backend backend; member in union:LloadChange::__anon7738
207 LloadBackend *backend; member in struct:LloadPendingConnection
372 LLOAD_OP_RESTRICTED_WRITE, /* client is restricted to a certain backend with
374 LLOAD_OP_RESTRICTED_BACKEND, /* client is restricted to a certain backend,
381 * backend, either it is processed internally
570 * listener; need to access it from monitor backend
  /src/external/gpl3/binutils/dist/bfd/
ecoff.c 70 /* This is a hook called by coff_real_object_p to create any backend
188 below. This could be an ECOFF backend routine, with one version
434 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
441 backend->debug_swap.sym_magic)
455 external_hdr_size = backend->debug_swap.external_hdr_size;
470 (*backend->debug_swap.swap_hdr_in) (abfd, raw, internal_symhdr);
472 if (internal_symhdr->magic != backend->debug_swap.sym_magic)
507 point in the backend structure. */
514 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
547 + backend->debug_swap.external_hdr_size)
432 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
512 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
864 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
1636 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
2404 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
3331 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
3598 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
4284 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
    [all...]
  /src/external/gpl3/binutils/dist/gprofng/libcollector/
unwind.c 1194 unsigned *backend = backbegin - 12 + (instrp - (unsigned *) pc); local
1195 while (backbegin > backend)
  /src/external/gpl3/binutils.old/dist/bfd/
ecoff.c 70 /* This is a hook called by coff_real_object_p to create any backend
188 below. This could be an ECOFF backend routine, with one version
434 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
441 backend->debug_swap.sym_magic)
455 external_hdr_size = backend->debug_swap.external_hdr_size;
470 (*backend->debug_swap.swap_hdr_in) (abfd, raw, internal_symhdr);
472 if (internal_symhdr->magic != backend->debug_swap.sym_magic)
507 point in the backend structure. */
514 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
547 + backend->debug_swap.external_hdr_size)
432 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
512 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
864 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
1636 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
2394 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
3321 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
3588 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
4274 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/libcollector/
unwind.c 1194 unsigned *backend = backbegin - 12 + (instrp - (unsigned *) pc); local
1195 while (backbegin > backend)
  /src/external/gpl3/gdb/dist/bfd/
ecoff.c 70 /* This is a hook called by coff_real_object_p to create any backend
188 below. This could be an ECOFF backend routine, with one version
434 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
441 backend->debug_swap.sym_magic)
455 external_hdr_size = backend->debug_swap.external_hdr_size;
470 (*backend->debug_swap.swap_hdr_in) (abfd, raw, internal_symhdr);
472 if (internal_symhdr->magic != backend->debug_swap.sym_magic)
507 point in the backend structure. */
514 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
547 + backend->debug_swap.external_hdr_size)
432 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
512 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
876 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
1648 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
2406 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
3333 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
3600 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
4286 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
    [all...]
  /src/external/gpl3/gdb.old/dist/bfd/
ecoff.c 70 /* This is a hook called by coff_real_object_p to create any backend
188 below. This could be an ECOFF backend routine, with one version
434 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
441 backend->debug_swap.sym_magic)
455 external_hdr_size = backend->debug_swap.external_hdr_size;
470 (*backend->debug_swap.swap_hdr_in) (abfd, raw, internal_symhdr);
472 if (internal_symhdr->magic != backend->debug_swap.sym_magic)
507 point in the backend structure. */
514 const struct ecoff_backend_data * const backend = ecoff_backend (abfd);
547 + backend->debug_swap.external_hdr_size)
432 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
512 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
876 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
1645 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
2403 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
3330 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
3597 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
4283 const struct ecoff_backend_data * const backend = ecoff_backend (abfd); local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/inc/
hwmgr.h 766 void *backend; member in struct:pp_hwmgr

Completed in 50 milliseconds