Searched refs:store (Results 51 - 75 of 379) sorted by relevance

1234567891011>>

/freebsd-current/crypto/openssl/crypto/ct/
H A Dct_log.c33 * A store for multiple CTLOG instances.
50 * Creates an empty context for loading a CT log store.
56 * Deletes a CT log store load context.
138 void CTLOG_STORE_free(CTLOG_STORE *store) argument
140 if (store != NULL) {
141 OPENSSL_free(store->propq);
142 sk_CTLOG_pop_free(store->logs, CTLOG_free);
143 OPENSSL_free(store);
147 static int ctlog_new_from_conf(CTLOG_STORE *store, CTLOG **ct_log, argument
165 store
168 CTLOG_STORE_load_default_file(CTLOG_STORE *store) argument
225 CTLOG_STORE_load_file(CTLOG_STORE *store, const char *file) argument
339 CTLOG_STORE_get0_log_by_id(const CTLOG_STORE *store, const uint8_t *log_id, size_t log_id_len) argument
[all...]
/freebsd-current/crypto/openssl/crypto/evp/
H A Devp_fetch.c38 /* We want evp_method_store to be cleaned up before the provider store */
74 static void dealloc_tmp_evp_method_store(void *store) argument
76 if (store != NULL)
77 ossl_method_store_free(store);
86 static int reserve_evp_method_store(void *store, void *data) argument
90 if (store == NULL
91 && (store = get_evp_method_store(methdata->libctx)) == NULL)
94 return ossl_method_lock_store(store);
97 static int unreserve_evp_method_store(void *store, void *data) argument
101 if (store
140 get_evp_method_from_store(void *store, const OSSL_PROVIDER **prov, void *data) argument
178 put_evp_method_in_store(void *store, void *method, const OSSL_PROVIDER *prov, const char *names, const char *propdef, void *data) argument
270 OSSL_METHOD_STORE *store = get_evp_method_store(methdata->libctx); local
471 OSSL_METHOD_STORE *store = get_evp_method_store(libctx); local
481 OSSL_METHOD_STORE *store = get_evp_method_store(libctx); local
493 OSSL_METHOD_STORE *store = get_evp_method_store(libctx); local
[all...]
/freebsd-current/crypto/openssh/
H A Dgss-serv-krb5.c183 client->store.filename = xstrdup(krb5_cc_get_name(krb_context, ccache));
184 client->store.envvar = "KRB5CCNAME";
185 len = strlen(client->store.filename) + 6;
186 client->store.envval = xmalloc(len);
187 snprintf(client->store.envval, len, "FILE:%s", client->store.filename);
191 do_pam_putenv(client->store.envvar, client->store.envval);
/freebsd-current/crypto/openssl/fuzz/
H A Dx509.c40 X509_STORE *store = NULL; local
80 store = X509_STORE_new();
81 X509_STORE_add_cert(store, x509_2);
89 X509_STORE_set1_param(store, param);
91 X509_STORE_set_verify_cb(store, cb);
97 X509_STORE_CTX_init(ctx, store, x509_1, NULL);
124 OCSP_basic_verify(bs, certs, store, OCSP_PARTIAL_CHAIN);
136 X509_STORE_free(store);
/freebsd-current/crypto/openssl/crypto/x509/
H A Dx509_lu.c313 X509_STORE *store = vs->store; local
318 if (store == NULL)
324 if (!X509_STORE_lock(store))
327 tmp = X509_OBJECT_retrieve_by_subject(store->objs, type, name);
328 X509_STORE_unlock(store);
331 for (i = 0; i < sk_X509_LOOKUP_num(store->get_cert_methods); i++) {
332 lu = sk_X509_LOOKUP_value(store->get_cert_methods, i);
353 static int x509_store_add(X509_STORE *store, void *x, int crl) { argument
376 if (!X509_STORE_lock(store)) {
591 X509_STORE *store = ctx->store; local
646 X509_STORE *store = ctx->store; local
729 X509_STORE *store = ctx->store; local
[all...]
/freebsd-current/contrib/kyua/store/
H A Dread_backend.hpp29 /// \file store/read_backend.hpp
35 #include "store/read_backend_fwd.hpp"
39 #include "store/read_transaction_fwd.hpp"
43 namespace store { namespace
55 /// Public interface to the database store for read-only operations.
75 } // namespace store
H A Dlayout.hpp29 /// \file store/layout.hpp
36 /// to store such files wherever he likes so we have to deal with paths as well.
59 #include "store/layout_fwd.hpp"
66 namespace store { namespace
82 } // namespace store
H A Dwrite_backend.hpp29 /// \file store/write_backend.hpp
35 #include "store/write_backend_fwd.hpp"
39 #include "store/metadata_fwd.hpp"
40 #include "store/write_transaction_fwd.hpp"
44 namespace store { namespace
57 /// Public interface to the database store for write-only operations.
79 } // namespace store
H A Dwrite_transaction.hpp29 /// \file store/write_transaction.hpp
35 #include "store/write_transaction_fwd.hpp"
47 #include "store/write_backend_fwd.hpp"
52 namespace store { namespace
87 } // namespace store
H A Dschema_inttest.cpp37 #include "store/migrate.hpp"
38 #include "store/read_backend.hpp"
39 #include "store/read_transaction.hpp"
40 #include "store/write_backend.hpp"
85 store::read_backend backend = store::read_backend::open_ro(dbpath);
86 store::read_transaction transaction = backend.start_read();
94 store::results_iterator iter = transaction.get_results();
105 store::read_backend backend = store
[all...]
/freebsd-current/contrib/bearssl/src/ssl/
H A Dssl_lru.c29 * in the store block. "Addresses" are really offsets in the block,
98 return br_dec32be(cc->store + x + (off)); \
103 br_enc32be(cc->store + x + (off), val); \
158 r = memcmp(id, cc->store + x + SESSION_ID_OFF, SESSION_ID_LEN);
243 br_enc32be(cc->store + alx, x);
277 find_node(cc, cc->store + x + SESSION_ID_OFF, &alx);
420 memcpy(cc->store + x + SESSION_ID_OFF, id, SESSION_ID_LEN);
421 memcpy(cc->store + x + MASTER_SECRET_OFF,
423 br_enc16be(cc->store + x + VERSION_OFF, params->version);
424 br_enc16be(cc->store
494 br_ssl_session_cache_lru_init(br_ssl_session_cache_lru *cc, unsigned char *store, size_t store_len) argument
[all...]
/freebsd-current/contrib/ntp/html/hints/
H A Dsolaris.xtra.patchfreq58 store="da256000" # st %o5, [%l5 + offset]
65 let masked="(16#$store_mask & 16#$instr) - 16#$store"
/freebsd-current/usr.bin/bc/
H A Dextern.h24 ssize_t store; member in struct:lvalue
/freebsd-current/usr.sbin/pwd_mkdb/
H A Dpwd_mkdb.c94 uint32_t store; local
222 * Do some trouble to check if we should store this users
253 memmove(buf + 1, p, sizeof(store));
255 key.size = sizeof(store) + 1;
350 #define SCALAR(e) store = htonl((uint32_t)(e)); \
351 memmove(p, &store, sizeof(store)); \
352 p += sizeof(store);
353 #define LSCALAR(e) store = HTOL((uint32_t)(e)); \
354 memmove(p, &store, sizeo
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/orc/
H A Ddebug.cpp37 DebugTypes.store(&DebugTypesAll, std::memory_order_relaxed);
44 DebugTypes.store(DT, std::memory_order_relaxed);
50 DebugTypes.store(&DebugTypesNone, std::memory_order_relaxed);
/freebsd-current/crypto/openssl/crypto/encode_decode/
H A Ddecoder_meth.c68 /* Permanent decoder method store, constructor and destructor */
81 /* We want decoder_store to be cleaned up before the provider store */
104 /* Temporary decoder method store, constructor and destructor */
114 static void dealloc_tmp_decoder_store(void *store) argument
116 if (store != NULL)
117 ossl_method_store_free(store);
120 /* Get the permanent decoder store */
127 static int reserve_decoder_store(void *store, void *data) argument
131 if (store == NULL
132 && (store
138 unreserve_decoder_store(void *store, void *data) argument
150 get_decoder_from_store(void *store, const OSSL_PROVIDER **prov, void *data) argument
185 put_decoder_in_store(void *store, void *method, const OSSL_PROVIDER *prov, const char *names, const char *propdef, void *data) argument
365 OSSL_METHOD_STORE *store = get_decoder_store(methdata->libctx); local
478 OSSL_METHOD_STORE *store = get_decoder_store(libctx); local
488 OSSL_METHOD_STORE *store = get_decoder_store(libctx); local
[all...]
H A Dencoder_meth.c68 /* Permanent encoder method store, constructor and destructor */
81 /* We want encoder_store to be cleaned up before the provider store */
104 /* Temporary encoder method store, constructor and destructor */
114 static void dealloc_tmp_encoder_store(void *store) argument
116 if (store != NULL)
117 ossl_method_store_free(store);
120 /* Get the permanent encoder store */
127 static int reserve_encoder_store(void *store, void *data) argument
131 if (store == NULL
132 && (store
138 unreserve_encoder_store(void *store, void *data) argument
150 get_encoder_from_store(void *store, const OSSL_PROVIDER **prov, void *data) argument
185 put_encoder_in_store(void *store, void *method, const OSSL_PROVIDER *prov, const char *names, const char *propdef, void *data) argument
375 OSSL_METHOD_STORE *store = get_encoder_store(methdata->libctx); local
487 OSSL_METHOD_STORE *store = get_encoder_store(libctx); local
497 OSSL_METHOD_STORE *store = get_encoder_store(libctx); local
[all...]
/freebsd-current/sys/dev/bhnd/nvram/
H A Dbhnd_sprom.c104 sc->store = NULL;
135 /* Initialize NVRAM data store */
136 error = bhnd_nvram_store_parse_new(&sc->store, io,
165 if (sc->store != NULL)
166 bhnd_nvram_store_free(sc->store);
203 bhnd_nvram_store_free(sc->store);
217 return (bhnd_nvram_store_getvar(sc->store, name, buf, len, type));
229 return (bhnd_nvram_store_setvar(sc->store, name, buf, len, type));
/freebsd-current/contrib/llvm-project/lldb/source/Utility/
H A DTimer.cpp49 m_nanos.store(0, std::memory_order_release);
50 m_nanos_total.store(0, std::memory_order_release);
51 m_count.store(0, std::memory_order_release);
132 i->m_nanos.store(0, std::memory_order_release);
133 i->m_nanos_total.store(0, std::memory_order_release);
134 i->m_count.store(0, std::memory_order_release);
/freebsd-current/contrib/kyua/drivers/
H A Dscan_results.hpp48 #include "store/read_transaction_fwd.hpp"
92 virtual void got_result(store::results_iterator& iter) = 0;
H A Dreport_junit.hpp67 void got_result(store::results_iterator&);
H A Dreport_junit_test.cpp43 #include "store/write_backend.hpp"
44 #include "store/write_transaction.hpp"
99 add_context(store::write_transaction& tx, const std::size_t env_vars)
118 add_tests(store::write_transaction& tx,
253 store::write_backend backend = store::write_backend::open_rw(
255 store::write_transaction tx = backend.start_write();
294 store::write_backend backend = store::write_backend::open_rw(
296 store
[all...]
/freebsd-current/contrib/libcxxrt/
H A Dguard.cc133 * implementation here, these are both done by a single store.
137 val.store(isInitialised ? initialised : 0, memory_order::release);
235 lock_word.store(0, memory_order::release);
250 init_word.store(isInitialised ? initialised : 0,
252 lock_word.store(0, memory_order::release);
H A Datomic.h70 * Atomically store with the specified memory order.
72 void store(T v, memory_order order = memory_order::seqcst) function in class:__anon1::atomic
74 return ATOMIC_BUILTIN(store)(&val, v, order);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stack_store.cpp136 uptr *StackStore::BlockInfo::Create(StackStore *store) { argument
140 ptr = reinterpret_cast<uptr *>(store->Map(kBlockSizeBytes, "StackStore"));
146 uptr *StackStore::BlockInfo::GetOrCreate(StackStore *store) { argument
150 return Create(store);
258 uptr *StackStore::BlockInfo::GetOrUnpack(StackStore *store) { argument
279 reinterpret_cast<uptr *>(store->Map(kBlockSizeBytes, "StackStoreUnpack"));
300 store->Unmap(ptr, packed_size_aligned);
306 uptr StackStore::BlockInfo::Pack(Compression type, StackStore *store) { argument
324 reinterpret_cast<u8 *>(store->Map(kBlockSizeBytes, "StackStorePack"));
352 store
369 TestOnlyUnmap(StackStore *store) argument
[all...]

Completed in 310 milliseconds

1234567891011>>