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

1234567891011>>

/freebsd-13-stable/crypto/openssl/crypto/ct/
H A Dct_log.c31 * A store for multiple CTLOG instances.
46 * Creates an empty context for loading a CT log store.
52 * Deletes a CT log store load context.
111 void CTLOG_STORE_free(CTLOG_STORE *store) argument
113 if (store != NULL) {
114 sk_CTLOG_pop_free(store->logs, CTLOG_free);
115 OPENSSL_free(store);
138 int CTLOG_STORE_load_default_file(CTLOG_STORE *store) argument
145 return CTLOG_STORE_load_file(store, fpath);
195 int CTLOG_STORE_load_file(CTLOG_STORE *store, cons argument
293 CTLOG_STORE_get0_log_by_id(const CTLOG_STORE *store, const uint8_t *log_id, size_t log_id_len) argument
[all...]
/freebsd-13-stable/sys/dev/bhnd/nvram/
H A Dbhnd_sprom.c106 sc->store = NULL;
137 /* Initialize NVRAM data store */
138 error = bhnd_nvram_store_parse_new(&sc->store, io,
167 if (sc->store != NULL)
168 bhnd_nvram_store_free(sc->store);
205 bhnd_nvram_store_free(sc->store);
219 return (bhnd_nvram_store_getvar(sc->store, name, buf, len, type));
231 return (bhnd_nvram_store_setvar(sc->store, name, buf, len, type));
/freebsd-13-stable/crypto/openssl/crypto/x509/
H A Dx509_lu.c292 X509_STORE *store = vs->ctx; local
297 if (store == NULL)
304 X509_STORE_lock(store);
305 tmp = X509_OBJECT_retrieve_by_subject(store->objs, type, name);
306 X509_STORE_unlock(store);
309 for (i = 0; i < sk_X509_LOOKUP_num(store->get_cert_methods); i++) {
310 lu = sk_X509_LOOKUP_value(store->get_cert_methods, i);
330 static int x509_store_add(X509_STORE *store, void *x, int crl) { argument
353 X509_STORE_lock(store);
354 if (X509_OBJECT_retrieve_match(store
541 X509_STORE *store = ctx->ctx; local
598 X509_STORE *store = ctx->ctx; local
681 X509_STORE *store = ctx->ctx; local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DTimer.cpp44 m_nanos.store(0, std::memory_order_release);
45 m_nanos_total.store(0, std::memory_order_release);
46 m_count.store(0, std::memory_order_release);
124 i->m_nanos.store(0, std::memory_order_release);
125 i->m_nanos_total.store(0, std::memory_order_release);
126 i->m_count.store(0, std::memory_order_release);
/freebsd-13-stable/contrib/kyua/drivers/
H A Dreport_junit.hpp67 void got_result(store::results_iterator&);
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_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...]
H A Drun_tests.cpp43 #include "store/write_backend.hpp"
44 #include "store/write_transaction.hpp"
84 /// Puts a test program in the store and returns its identifier.
89 /// TODO(jmmv): It's possible that the store module should offer this
93 /// \param [in,out] tx Writable transaction on the store.
99 store::write_transaction& tx,
118 /// \param [in,out] tx Writable transaction where to store the result data.
122 store::write_transaction& tx)
163 /// store.
167 store
[all...]
/freebsd-13-stable/contrib/kyua/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...]
H A Ddbtypes.hpp29 /// \file store/dbtypes.hpp
47 namespace store { namespace
68 } // namespace store
H A Dlayout.cpp29 #include "store/layout.hpp"
34 #include "store/exceptions.hpp"
50 namespace layout = store::layout;
66 /// \throw store::error If no previous results file can be found.
91 throw store::error(
97 LW(F("Failed to open store dir %s: %s") % store_dir % e.what());
98 throw store::error(F("No previous results file found for test suite %s")
101 throw store::error(e.what());
142 /// \throw store::error If there is no matching entry.
223 /// Gets the path to the store director
[all...]
H A Dread_transaction.hpp29 /// \file store/read_transaction.hpp
35 #include "store/read_transaction_fwd.hpp"
47 #include "store/read_backend_fwd.hpp"
48 #include "store/read_transaction_fwd.hpp"
51 namespace store { namespace
118 } // namespace store
/freebsd-13-stable/sys/mips/broadcom/
H A Dbcm_nvram_cfevar.h64 struct bhnd_nvram_store *store; /**< nvram store */ member in struct:bhnd_nvram_cfe_softc
/freebsd-13-stable/crypto/openssl/apps/
H A Dverify.c68 X509_STORE *store = NULL; local
172 if ((store = setup_verify(CAfile, CApath, noCAfile, noCApath)) == NULL)
174 X509_STORE_set_verify_cb(store, cb);
177 X509_STORE_set1_param(store, vpm);
182 store_setup_crl_download(store);
186 if (check(store, NULL, untrusted, trusted, crls, show_chain) != 1)
190 if (check(store, argv[i], untrusted, trusted, crls,
197 X509_STORE_free(store);
221 printf("error %s: X.509 store context allocation failed\n",
229 printf("error %s: X.509 store contex
[all...]
/freebsd-13-stable/sys/i386/i386/
H A Dlocore.s358 movl $0x4778654e,cpu_vendor # store vendor string
407 movl $0x69727943,cpu_vendor # store vendor string
416 movl %ebx,cpu_vendor # store vendor string
423 movl %eax,cpu_id # store cpu_id
424 movl %ebx,cpu_procinfo # store cpu_procinfo
425 movl %edx,cpu_feature # store cpu_feature
426 movl %ecx,cpu_feature2 # store cpu_feature2
/freebsd-13-stable/crypto/openssh/
H A Dgss-serv.c322 if (gssapi_client.store.filename != NULL) {
325 gssapi_client.store.filename);
326 unlink(gssapi_client.store.filename);
348 if (gssapi_client.store.envvar != NULL &&
349 gssapi_client.store.envval != NULL) {
350 debug("Setting %s to %s", gssapi_client.store.envvar,
351 gssapi_client.store.envval);
352 child_set_env(envp, envsizep, gssapi_client.store.envvar,
353 gssapi_client.store.envval);
/freebsd-13-stable/contrib/kyua/cli/
H A Dcmd_db_exec.cpp38 #include "store/exceptions.hpp"
39 #include "store/layout.hpp"
40 #include "store/read_backend.hpp"
55 namespace layout = store::layout;
178 // TODO(jmmv): Shouldn't be using store::detail here...
179 sqlite::database db = store::detail::open_and_setup(
196 } catch (const store::error& e) {
H A Dcmd_report_junit.cpp39 #include "store/layout.hpp"
49 namespace layout = store::layout;
/freebsd-13-stable/usr.bin/chpass/
H A Dutil.c85 atot(char *p, time_t *store) argument
94 *store = 0;
142 * PR227589: The pwd.db and spwd.db files store the change and expire
151 *store = tval;
/freebsd-13-stable/contrib/unbound/cachedb/
H A Dcachedb.h86 void (*store)(struct module_env*, struct cachedb_env*, char*, member in struct:cachedb_backend
/freebsd-13-stable/contrib/kyua/integration/
H A Dcmd_db_exec_test.sh30 # Creates a new database file in the store directory.
66 test ! -d .kyua/store/ || atf_fail "Database created but it should" \
97 test -f home-dir/.kyua/store/*.db || atf_fail "Database not created in" \
107 mv .kyua/store/*.db custom.db
108 rmdir .kyua/store
/freebsd-13-stable/crypto/heimdal/kdc/
H A Dannounce.c400 update_entries(SCDynamicStoreRef store, const char *realm, int flags) argument
408 btmm = SCDynamicStoreCopyValue(store, NetworkChangedKey_BackToMyMac);
421 update_all(SCDynamicStoreRef store, CFArrayRef changedKeys, void *info) argument
429 host = SCDynamicStoreCopyLocalHostName(store);
457 update_entries(store, *r, flags);
499 SCDynamicStoreRef store; local
505 store = SCDynamicStoreCreate(kCFAllocatorDefault, CFSTR("Network watcher"),
507 if (store == NULL)
517 if (SCDynamicStoreSetNotificationKeys(store, keys, NULL) == false)
523 if (!SCDynamicStoreSetDispatchQueue(store, g_queu
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_rtl.cpp122 ASAN_REPORT_ERROR(store, true, 1)
123 ASAN_REPORT_ERROR(store, true, 2)
124 ASAN_REPORT_ERROR(store, true, 4)
125 ASAN_REPORT_ERROR(store, true, 8)
126 ASAN_REPORT_ERROR(store, true, 16)
146 ASAN_REPORT_ERROR_N(store, true)
187 ASAN_MEMORY_ACCESS_CALLBACK(store, true, 1)
188 ASAN_MEMORY_ACCESS_CALLBACK(store, true, 2)
189 ASAN_MEMORY_ACCESS_CALLBACK(store, true, 4)
190 ASAN_MEMORY_ACCESS_CALLBACK(store, tru
[all...]
/freebsd-13-stable/sys/kern/
H A Dkern_uuid.c132 kern_uuidgen(struct uuid *store, size_t count) argument
165 store[n] = *(struct uuid *)&uuid;
169 return (store);
174 struct uuid *store; member in struct:uuidgen_args
181 struct uuid *store; local
195 store = malloc(count * sizeof(struct uuid), M_TEMP, M_WAITOK);
196 kern_uuidgen(store, count);
197 error = copyout(store, uap->store, count * sizeof(struct uuid));
198 free(store, M_TEM
[all...]

Completed in 376 milliseconds

1234567891011>>