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

1234567891011>>

/freebsd-13-stable/contrib/kyua/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 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 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 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...]
/freebsd-13-stable/lib/kyua/store/
H A DMakefile3 KYUA_LIB= store
/freebsd-13-stable/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 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
293 StoreRef(Store store, StoreManager & smgr) argument
[all...]
/freebsd-13-stable/lib/kyua/
H A DMakefile7 store \
/freebsd-13-stable/bin/uuidgen/
H A Duuidgen.c51 uuid_t *store, *uuid; local
95 store = (uuid_t*)malloc(sizeof(uuid_t) * count);
96 if (store == NULL)
101 if (uuidgen(store, count) != 0)
104 uuid = store;
111 uuid = store;
120 free(store);
/freebsd-13-stable/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) {
/freebsd-13-stable/crypto/openssl/crypto/store/
H A Dstore_strings.c10 #include <openssl/store.h>

Completed in 367 milliseconds

1234567891011>>