HomeSort by: relevance | last modified time | path
    Searched refs:store (Results 1 - 25 of 1201) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/kyua-cli/dist/store/
exceptions.cpp 29 #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
dbtypes_test.cpp 29 #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::bind_bool, false, store::column_bool)
    [all...]
backend_test.cpp 29 #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::detail::schema_file().c_str())
    [all...]
metadata.cpp 29 #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::metadata::fetch_latest(sqlite::database& db
    [all...]
metadata_test.cpp 29 #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::integrity_error, "metadata.*empty"
    [all...]
dbtypes.cpp 29 #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::column_delta(sqlite::statement& stmt, const char* column
    [all...]
exceptions_test.cpp 29 #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);
transaction_test.cpp 29 #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::transaction tx = backend.start()
    [all...]
  /src/external/bsd/kyua-cli/share/kyua-cli/
Makefile 3 SUBDIR= misc store
  /src/external/mpl/bind/dist/bin/tests/system/checkconf-keys/
bad-keystore.conf.j2 14 key-store "ksk" {
18 key-store "zsk" {
24 ksk key-store "ksk" lifetime unlimited algorithm ECDSAP256SHA256;
25 zsk key-store "zsk" lifetime unlimited algorithm ECDSAP256SHA256;
  /src/crypto/external/apache2/openssl/dist/apps/include/
engine_loader.h 12 #include <openssl/store.h>
  /src/crypto/external/bsd/openssl/dist/apps/include/
engine_loader.h 12 # include <openssl/store.h>
  /src/external/bsd/kyua-cli/lib/
Makefile 3 SUBDIR= utils store engine cli
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
StoreRef.h 1 //===- StoreRef.h - Smart pointer for store objects -------------*- C++ -*-===//
23 /// Store - This opaque type encapsulates an immutable mapping from
27 using Store = const void *;
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;
    [all...]
Store.h 1 //===- Store.h - Interface for maps from Locations to Values ----*- C++ -*-===//
9 // This file defined the types Store and StoreManager.
68 /// \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 defaul
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/property/
property.c 73 * Lock to reserve the whole store. This is used when fetching a set
107 static void ossl_method_cache_flush_alg(OSSL_METHOD_STORE *store,
109 static void ossl_method_cache_flush(OSSL_METHOD_STORE *store, int nid);
234 OSSL_METHOD_STORE *store = arg; local
242 if (store != NULL)
243 ossl_sa_ALGORITHM_set(store->algs, idx, NULL);
267 void ossl_method_store_free(OSSL_METHOD_STORE *store)
269 if (store != NULL) {
270 if (store->algs != NULL)
271 ossl_sa_ALGORITHM_doall_arg(store->algs, &alg_cleanup, store)
419 OSSL_METHOD_STORE *store; member in struct:alg_cleanup_by_provider_data_st
    [all...]
  /src/external/bsd/kyua-cli/tests/kyua-cli/store/
Makefile 3 KYUA_LIBS= store engine utils
7 TESTSDIR= ${TESTSBASE}/kyua-cli/store
9 .PATH: ${SRCDIR}/store
  /src/crypto/external/apache2/openssl/dist/test/
x509_dup_cert_test.c 20 X509_STORE *store = NULL; local
24 if (TEST_ptr(store = X509_STORE_new())
25 && TEST_ptr(lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file()))
30 X509_STORE_free(store);
  /src/crypto/external/apache2/openssl/dist/include/internal/
property.h 52 /* 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_PROVIDER *prov
    [all...]
  /src/crypto/external/bsd/openssl/dist/include/internal/
property.h 52 /* 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_PROVIDER *prov
    [all...]
  /src/external/bsd/kyua-cli/lib/store/
Makefile 7 .PATH: ${SRCDIR}/store
9 LIB= store
  /src/external/mpl/bind/dist/bin/tests/system/enginepkcs11/ns2/
named.conf.j2 39 key-store "hsm" {
44 key-store "hsm2" {
49 key-store "pin" {
54 key-store "disk" {
  /src/external/zlib/pigz/dist/zopfli/
squeeze.h 43 ZopfliLZ77Store* store);
58 ZopfliLZ77Store* store);
  /src/crypto/external/apache2/openssl/dist/crypto/x509/
by_store.c 11 #include <openssl/store.h>
25 static int cache_objects(X509_LOOKUP *lctx, CACHED_STORE *store,
32 if ((ctx = OSSL_STORE_open_ex(store->uri, store->libctx, store->propq,
78 substore.libctx = store->libctx;
79 substore.propq = store->propq;
109 static void free_store(CACHED_STORE *store)
111 if (store != NULL) {
112 OPENSSL_free(store->uri)
132 CACHED_STORE *store = OPENSSL_zalloc(sizeof(*store)); local
173 CACHED_STORE store; local
220 X509_STORE *store = X509_LOOKUP_get_store(ctx); local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/
provider_core.c 21 #include "crypto/store.h" /* ossl_store_loader_store_cache_flush */
54 * provider store. Each provider that exists in the parent provider store, has
55 * an associated child provider in the child library context's provider store.
85 * The store default_path_lock: Used to control access to the provider store's
88 * The store lock: Used to control the stack of provider's held within the
89 * provider store, as well as the stack of registered child provider callbacks.
103 * provider store lock, the provider activatecnt_lock and the provider flag_lock.
106 * 1) provider store loc
160 struct provider_store_st *store; \/* The store this instance belongs to *\/ member in struct:ossl_provider_st
289 struct provider_store_st *store = vstore; local
311 struct provider_store_st *store = OPENSSL_zalloc(sizeof(*store)); local
331 struct provider_store_st *store = NULL; local
341 struct provider_store_st *store; local
358 struct provider_store_st *store = get_provider_store(libctx); local
402 struct provider_store_st *store = NULL; local
526 struct provider_store_st *store = NULL; local
634 struct provider_store_st *store = prov->store; local
655 struct provider_store_st *store; local
910 struct provider_store_st *store; local
931 struct provider_store_st *store; local
1162 struct provider_store_st *store; local
1258 struct provider_store_st *store; local
1325 struct provider_store_st *store; local
1357 struct provider_store_st *store; local
1515 struct provider_store_st *store = get_provider_store(ctx); local
1529 struct provider_store_st *store = get_provider_store(ctx); local
1664 struct provider_store_st *store = get_provider_store(libctx); local
2094 struct provider_store_st *store = NULL; local
2134 struct provider_store_st *store = NULL; local
2209 struct provider_store_st *store = NULL; local
    [all...]

Completed in 44 milliseconds

1 2 3 4 5 6 7 8 91011>>