Searched refs:store (Results 1 - 25 of 1018) sorted by relevance

1234567891011>>

/netbsd-current/external/bsd/kyua-cli/dist/store/
H A Dexceptions.cpp29 #include "store/exceptions.hpp"
37 store::error::error(const std::string& message) :
44 store::error::~error(void) throw()
52 store::integrity_error::integrity_error(const std::string& message) :
59 store::integrity_error::~integrity_error(void) throw()
67 store::old_schema_error::old_schema_error(const int version) :
76 store::old_schema_error::~old_schema_error(void) throw()
85 store::old_schema_error::old_version(void) const
H A Ddbtypes_test.cpp29 #include "store/dbtypes.hpp"
34 #include "store/exceptions.hpp"
52 /// \param bind The store::bind_* function to put the value.
53 /// \param value The value to store and validate.
54 /// \param column The store::column_* function to get the value.
79 /// \param column The store::column_* function to get the value.
97 ATF_REQUIRE_THROW_RE(store::integrity_error, error_regexp,
109 do_ok_test(store::bind_bool, true, store::column_bool);
110 do_ok_test(store
[all...]
H A Dbackend_test.cpp29 #include "store/backend.hpp"
37 #include "store/exceptions.hpp"
38 #include "store/metadata.hpp"
57 store::detail::backup_database(fs::path("test.db"), 13);
69 store::detail::backup_database(fs::path("test.db"), 1);
80 ATF_REQUIRE_THROW_RE(store::error, "Cannot open.*foo.db",
81 store::detail::backup_database(fs::path("foo.db"), 5));
96 store::error, "Cannot create.*dir/test.db.v13.backup",
97 store::detail::backup_database(fs::path("dir/test.db"), 13));
105 set_md_var("require.files", store
[all...]
H A Dmetadata.cpp29 #include "store/metadata.hpp"
31 #include "store/exceptions.hpp"
51 /// \throw store::integrity_error If there is a problem fetching the value
64 throw store::integrity_error(F("The '%s' column in 'metadata' table "
77 store::metadata::metadata(const int schema_version_, const int64_t timestamp_) :
88 store::metadata::timestamp(void) const
98 store::metadata::schema_version(void) const
112 /// \throw store::integrity_error If the metadata in the database is empty,
114 store::metadata
115 store
[all...]
H A Dmetadata_test.cpp29 #include "store/metadata.hpp"
33 #include "store/backend.hpp"
34 #include "store/exceptions.hpp"
48 /// case pointing to store::detail::schema_file().
59 store::detail::initialize(db);
72 set_md_var("require.files", store::detail::schema_file().c_str());
82 const store::metadata metadata = store::metadata::fetch_latest(db);
92 set_md_var("require.files", store::detail::schema_file().c_str());
97 ATF_REQUIRE_THROW_RE(store
[all...]
H A Ddbtypes.cpp29 #include "store/dbtypes.hpp"
32 #include "store/exceptions.hpp"
47 store::bind_bool(sqlite::statement& stmt, const char* field, const bool value)
59 store::bind_delta(sqlite::statement& stmt, const char* field,
76 store::bind_optional_string(sqlite::statement& stmt, const char* field,
92 store::bind_timestamp(sqlite::statement& stmt, const char* field,
108 store::column_bool(sqlite::statement& stmt, const char* column)
112 throw store::integrity_error(F("Boolean value in column %s is not a "
120 throw store::integrity_error(F("Unknown boolean value '%s'") % value);
133 store
[all...]
H A Dexceptions_test.cpp29 #include "store/exceptions.hpp"
39 const store::error e("Some text");
47 const store::integrity_error e("Some text");
55 const store::old_schema_error e(15);
H A Dtransaction_test.cpp29 #include "store/transaction.hpp"
41 #include "store/backend.hpp"
42 #include "store/exceptions.hpp"
77 store::backend backend = store::backend::open_rw(fs::path("test.db"));
79 store::transaction tx = backend.start();
109 set_md_var("require.files", store::detail::schema_file().c_str());
113 store::backend backend = store::backend::open_rw(fs::path("test.db"));
114 store
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/or1k/
H A Dreloc-2.l2 .*:2: Error: relocation invalid for store .*
3 .*:3: Error: relocation invalid for store .*
4 .*:4: Error: relocation invalid for store .*
5 .*:6: Error: relocation invalid for store .*
6 .*:7: Error: relocation invalid for store .*
7 .*:8: Error: relocation invalid for store .*
8 .*:9: Error: relocation invalid for store .*
9 .*:11: Error: relocation invalid for store .*
10 .*:12: Error: relocation invalid for store .*
11 .*:13: Error: relocation invalid for store
[all...]
/netbsd-current/external/bsd/kyua-cli/share/kyua-cli/
H A DMakefile3 SUBDIR= misc store
/netbsd-current/regress/lib/libc/ieeefp/testfloat/arch/i386/
H A DMakefile.inc3 CFLAGS+= -ffloat-store -DFLOATX80 ## -DLONG_DOUBLE_IS_FLOATX80
/netbsd-current/external/bsd/kyua-cli/lib/
H A DMakefile3 SUBDIR= utils store engine cli
/netbsd-current/crypto/external/bsd/openssl/dist/apps/include/
H A Dengine_loader.h12 # include <openssl/store.h>
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DStoreRef.h1 //===- StoreRef.h - Smart pointer for store objects -------------*- C++ -*-===//
30 Store store; member in class:clang::ento::StoreRef
34 StoreRef(Store store, StoreManager &smgr);
41 return x.store == store;
46 Store getStore() const { return store; }
H A DStore.h68 /// \param[in] store The store in which to make the lookup.
74 virtual SVal getBinding(Store store, Loc loc, QualType T = QualType()) = 0;
76 /// Return the default value bound to a region in a given store. The default
82 /// \param[in] store The store in which to make the lookup.
84 /// \return The default value bound to the region in the store, if a default
86 virtual Optional<SVal> getDefaultBinding(Store store, const MemRegion *R) = 0;
100 /// Return a store with the specified value bound to the given location.
101 /// \param[in] store Th
194 incrementReferenceCount(Store store) argument
199 decrementReferenceCount(Store store) argument
287 StoreRef(Store store, StoreManager & smgr) argument
[all...]
/netbsd-current/external/bsd/kyua-cli/tests/kyua-cli/store/
H A DMakefile3 KYUA_LIBS= store engine utils
7 TESTSDIR= ${TESTSBASE}/kyua-cli/store
9 .PATH: ${SRCDIR}/store
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/mips/
H A Dulh-pic.s1 # Test unaligned load and store macros with PIC code. We don't bother
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/property/
H A Dproperty.c73 * Lock to reserve the whole store. This is used when fetching a set
105 static void ossl_method_cache_flush_alg(OSSL_METHOD_STORE *store,
107 static void ossl_method_cache_flush(OSSL_METHOD_STORE *store, int nid);
232 OSSL_METHOD_STORE *store = arg; local
240 if (store != NULL)
241 ossl_sa_ALGORITHM_set(store->algs, idx, NULL);
265 void ossl_method_store_free(OSSL_METHOD_STORE *store) argument
267 if (store != NULL) {
268 if (store->algs != NULL)
269 ossl_sa_ALGORITHM_doall_arg(store
277 ossl_method_lock_store(OSSL_METHOD_STORE *store) argument
282 ossl_method_unlock_store(OSSL_METHOD_STORE *store) argument
287 ossl_method_store_retrieve(OSSL_METHOD_STORE *store, int nid) argument
292 ossl_method_store_insert(OSSL_METHOD_STORE *store, ALGORITHM *alg) argument
297 ossl_method_store_add(OSSL_METHOD_STORE *store, const OSSL_PROVIDER *prov, int nid, const char *properties, void *method, int (*method_up_ref)(void *), void (*method_destruct)(void *)) argument
379 ossl_method_store_remove(OSSL_METHOD_STORE *store, int nid, const void *method) argument
417 OSSL_METHOD_STORE *store; member in struct:alg_cleanup_by_provider_data_st
451 ossl_method_store_remove_all_provided(OSSL_METHOD_STORE *store, const OSSL_PROVIDER *prov) argument
489 ossl_method_store_do_all(OSSL_METHOD_STORE *store, void (*fn)(int id, void *method, void *fnarg), void *fnarg) argument
501 ossl_method_store_fetch(OSSL_METHOD_STORE *store, int nid, const char *prop_query, const OSSL_PROVIDER **prov_rw, void **method) argument
584 ossl_method_cache_flush_alg(OSSL_METHOD_STORE *store, ALGORITHM *alg) argument
591 ossl_method_cache_flush(OSSL_METHOD_STORE *store, int nid) argument
599 ossl_method_store_cache_flush_all(OSSL_METHOD_STORE *store) argument
660 ossl_method_cache_flush_some(OSSL_METHOD_STORE *store) argument
680 ossl_method_store_cache_get(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov, int nid, const char *prop_query, void **method) argument
710 ossl_method_store_cache_set(OSSL_METHOD_STORE *store, OSSL_PROVIDER *prov, int nid, const char *prop_query, void *method, int (*method_up_ref)(void *), void (*method_destruct)(void *)) argument
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/include/internal/
H A Dproperty.h52 /* Implementation store functions */
54 void ossl_method_store_free(OSSL_METHOD_STORE *store);
56 int ossl_method_lock_store(OSSL_METHOD_STORE *store);
57 int ossl_method_unlock_store(OSSL_METHOD_STORE *store);
59 int ossl_method_store_add(OSSL_METHOD_STORE *store, const OSSL_PROVIDER *prov,
63 int ossl_method_store_remove(OSSL_METHOD_STORE *store, int nid,
65 void ossl_method_store_do_all(OSSL_METHOD_STORE *store,
68 int ossl_method_store_fetch(OSSL_METHOD_STORE *store,
71 int ossl_method_store_remove_all_provided(OSSL_METHOD_STORE *store,
79 int ossl_method_store_cache_get(OSSL_METHOD_STORE *store, OSSL_PROVIDE
[all...]
/netbsd-current/external/bsd/kyua-cli/lib/store/
H A DMakefile7 .PATH: ${SRCDIR}/store
9 LIB= store
/netbsd-current/external/zlib/pigz/dist/zopfli/
H A Dsqueeze.h43 ZopfliLZ77Store* store);
58 ZopfliLZ77Store* store);
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/arm/
H A Dgroup-reloc-ldc-encoding-bad.s7 .macro ldctest load store cst
17 \store 0, c0, [r0, #:pc_g0:(f + \cst)]
18 \store 0, c0, [r0, #:pc_g1:(f + \cst)]
19 \store 0, c0, [r0, #:pc_g2:(f + \cst)]
21 \store 0, c0, [r0, #:sb_g0:(f + \cst)]
22 \store 0, c0, [r0, #:sb_g1:(f + \cst)]
23 \store 0, c0, [r0, #:sb_g2:(f + \cst)]
33 \store 0, c0, [r0, #:pc_g0:(f - \cst)]
34 \store 0, c0, [r0, #:pc_g1:(f - \cst)]
35 \store
[all...]
H A Dgroup-reloc-ldc.s7 .macro ldctest load store
17 \store 0, c0, [r0, #:pc_g0:(f + 0x214)]
18 \store 0, c0, [r0, #:pc_g1:(f + 0x214)]
19 \store 0, c0, [r0, #:pc_g2:(f + 0x214)]
21 \store 0, c0, [r0, #:sb_g0:(f + 0x214)]
22 \store 0, c0, [r0, #:sb_g1:(f + 0x214)]
23 \store 0, c0, [r0, #:sb_g2:(f + 0x214)]
33 \store 0, c0, [r0, #:pc_g0:(f - 0x214)]
34 \store 0, c0, [r0, #:pc_g1:(f - 0x214)]
35 \store
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/i386/
H A Dx86-64-pseudos.s7 {vex3} {store} vmovaps %xmm7,%xmm2
11 {vex} {store} vmovaps %xmm7,%xmm2
27 {store} mov %rcx, %rax
30 {store} adc %ecx, %eax
33 {store} add %ecx, %eax
36 {store} and %ecx, %eax
39 {store} cmp %ecx, %eax
42 {store} or %ecx, %eax
45 {store} sbb %ecx, %eax
48 {store} su
[all...]
H A Dpseudos.s7 {vex3} {store} vmovaps %xmm7,%xmm2
11 {vex} {store} vmovaps %xmm7,%xmm2
27 {store} mov %ecx, %eax
30 {store} adc %ecx, %eax
33 {store} add %ecx, %eax
36 {store} and %ecx, %eax
39 {store} cmp %ecx, %eax
42 {store} or %ecx, %eax
45 {store} sbb %ecx, %eax
48 {store} su
[all...]

Completed in 200 milliseconds

1234567891011>>