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

1234567891011>>

/freebsd-current/contrib/kyua/store/
H A Dread_transaction_fwd.hpp29 /// \file store/read_transaction_fwd.hpp
30 /// Forward declarations for store/read_transaction.hpp
35 namespace store { namespace
42 } // namespace store
H A Dread_backend_fwd.hpp29 /// \file store/read_backend_fwd.hpp
30 /// Forward declarations for store/read_backend.hpp
35 namespace store { namespace
41 } // namespace store
H A Dmetadata_fwd.hpp29 /// \file store/metadata_fwd.hpp
30 /// Forward declarations for store/metadata.hpp
35 namespace store { namespace
41 } // namespace store
H A Dwrite_transaction_fwd.hpp29 /// \file store/write_transaction_fwd.hpp
30 /// Forward declarations for store/write_transaction.hpp
35 namespace store { namespace
41 } // namespace 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 Dwrite_backend_fwd.hpp29 /// \file store/write_backend_fwd.hpp
30 /// Forward declarations for store/write_backend.hpp
35 namespace store { namespace
50 } // namespace store
H A Ddbtypes_test.cpp29 #include "store/dbtypes.hpp"
35 #include "store/exceptions.hpp"
53 /// \param bind The store::bind_* function to put the value.
54 /// \param value The value to store and validate.
55 /// \param column The store::column_* function to get the value.
80 /// \param column The store::column_* function to get the value.
98 ATF_REQUIRE_THROW_RE(store::integrity_error, error_regexp,
110 do_ok_test(store::bind_bool, true, store::column_bool);
111 do_ok_test(store
[all...]
H A Dread_backend.cpp29 #include "store/read_backend.hpp"
31 #include "store/exceptions.hpp"
32 #include "store/metadata.hpp"
33 #include "store/read_transaction.hpp"
34 #include "store/write_backend.hpp"
55 /// \throw store::error If there is a problem opening or creating the database.
57 store::detail::open_and_setup(const fs::path& file, const int flags)
64 throw store::error(F("Cannot open '%s': %s") % file % e.what());
70 struct store::read_backend::impl : utils::noncopyable {
108 store
[all...]
H A Dwrite_backend.cpp29 #include "store/write_backend.hpp"
33 #include "store/exceptions.hpp"
34 #include "store/metadata.hpp"
35 #include "store/read_backend.hpp"
36 #include "store/write_transaction.hpp"
63 int store::detail::current_schema_version = 3;
90 store::detail::schema_file(void)
103 /// \throw store::error If there is a problem initializing the database.
104 store::metadata
105 store
[all...]
H A Dwrite_backend_test.cpp29 #include "store/write_backend.hpp"
33 #include "store/exceptions.hpp"
34 #include "store/metadata.hpp"
53 set_md_var("require.files", store::detail::schema_file().c_str());
59 const store::metadata md = store::detail::initialize(db);
64 ATF_REQUIRE_EQ(store::detail::current_schema_version, md.schema_version());
82 store::detail::current_schema_version = 712;
85 ATF_REQUIRE_THROW_RE(store::error,
87 store
[all...]
H A Dread_transaction_test.cpp29 #include "store/read_transaction.hpp"
40 #include "store/exceptions.hpp"
41 #include "store/read_backend.hpp"
42 #include "store/write_backend.hpp"
43 #include "store/write_transaction.hpp"
61 set_md_var("require.files", store::detail::schema_file().c_str());
65 store::write_backend::open_rw(fs::path("test.db")); // Create database.
66 store::read_backend backend = store::read_backend::open_ro(
69 store
[all...]
H A Dread_backend_test.cpp29 #include "store/read_backend.hpp"
33 #include "store/exceptions.hpp"
34 #include "store/metadata.hpp"
35 #include "store/write_backend.hpp"
58 sqlite::database db = store::detail::open_and_setup(
71 ATF_REQUIRE_THROW_RE(store::error, "Cannot open 'missing.db': ",
72 store::detail::open_and_setup(fs::path("missing.db"),
82 set_md_var("require.files", store::detail::schema_file().c_str());
89 store::detail::initialize(db);
91 store
[all...]
H A Dlayout_fwd.hpp29 /// \file store/layout_fwd.hpp
30 /// Forward declarations for store/layout.hpp
40 namespace store { namespace
52 } // namespace store
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/exceptions.hpp"
34 #include "store/write_backend.hpp"
49 /// case pointing to store::detail::schema_file().
60 store::detail::initialize(db);
73 set_md_var("require.files", store::detail::schema_file().c_str());
83 const store::metadata metadata = store::metadata::fetch_latest(db);
93 set_md_var("require.files", store::detail::schema_file().c_str());
98 ATF_REQUIRE_THROW_RE(store
[all...]
H A Dwrite_transaction_test.cpp29 #include "store/write_transaction.hpp"
42 #include "store/exceptions.hpp"
43 #include "store/write_backend.hpp"
75 store::write_backend backend = store::write_backend::open_rw(
78 store::write_transaction tx = backend.start_write();
108 set_md_var("require.files", store::detail::schema_file().c_str());
112 store::write_backend backend = store::write_backend::open_rw(
114 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 Ddbtypes.cpp29 #include "store/dbtypes.hpp"
33 #include "store/exceptions.hpp"
49 store::bind_bool(sqlite::statement& stmt, const char* field, const bool value)
61 store::bind_delta(sqlite::statement& stmt, const char* field,
77 store::bind_optional_string(sqlite::statement& stmt, const char* field,
93 store::bind_test_result_type(sqlite::statement& stmt, const char* field,
129 store::bind_timestamp(sqlite::statement& stmt, const char* field,
145 store::column_bool(sqlite::statement& stmt, const char* column)
149 throw store::integrity_error(F("Boolean value in column %s is not a "
157 throw store
[all...]
H A Dmigrate.hpp29 /// \file store/migrate.hpp
37 namespace store { namespace
53 } // namespace store
/freebsd-current/crypto/openssl/apps/include/
H A Dengine_loader.h12 # include <openssl/store.h>
/freebsd-current/contrib/llvm-project/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 std::optional<SVal> getDefaultBinding(Store store,
101 /// Return a store with the specified value bound to the given location.
102 /// \param[in] store Th
196 incrementReferenceCount(Store store) argument
201 decrementReferenceCount(Store store) argument
289 StoreRef(Store store, StoreManager & smgr) argument
[all...]
/freebsd-current/crypto/openssl/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...]
/freebsd-current/crypto/openssl/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...]
/freebsd-current/contrib/kyua/cli/
H A Dcmd_db_migrate.cpp34 #include "store/exceptions.hpp"
35 #include "store/layout.hpp"
36 #include "store/migrate.hpp"
46 namespace layout = store::layout;
76 store::migrate_schema(results_file);
78 } catch (const store::error& e) {

Completed in 138 milliseconds

1234567891011>>