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

1 2 3 4 5 6 7 8 9

  /src/external/bsd/kyua-cli/dist/store/
dbtypes.hpp 29 /// \file store/dbtypes.hpp
41 #include "store/transaction.hpp"
49 namespace store { namespace
66 } // namespace store
metadata.hpp 29 /// \file store/metadata.hpp
39 namespace store { namespace
60 } // namespace store
exceptions.hpp 29 /// \file store/exceptions.hpp
30 /// Exception types raised by the store module.
37 namespace store { namespace
40 /// Base exception for store errors.
69 } // namespace store
transaction.hpp 29 /// \file store/transaction.hpp
54 namespace store { namespace
138 } // namespace store
backend.hpp 29 /// \file store/backend.hpp
46 namespace store { namespace
70 /// Public interface to the database store.
95 } // namespace 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);
x509_load_cert_file_test.c 20 X509_STORE *store = NULL; local
25 if (!TEST_ptr(store = X509_STORE_new())
26 || !TEST_ptr(lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file()))
28 || !TEST_ptr(certs = X509_STORE_get1_all_certs(store))
30 || !TEST_ptr(objs = X509_STORE_get1_objects(store))
48 X509_STORE_free(store);
pkcs7_test.c 135 X509_STORE *store = NULL; local
158 && TEST_ptr(store = X509_STORE_new())
159 && TEST_true(X509_STORE_add_cert(store, cert))
162 && TEST_true(PKCS7_verify(p7, NULL, store, msg_bio, NULL, PKCS7_TEXT))
165 X509_STORE_free(store);
226 X509_STORE *store = NULL; local
370 && TEST_ptr(store = X509_STORE_new())
371 && TEST_true(X509_STORE_add_cert(store, cert))
372 && TEST_ptr(param = X509_STORE_get0_param(store))
375 && TEST_true(X509_STORE_set1_param(store, param)
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/
x509_dup_cert_test.c 21 X509_STORE *store = NULL; local
25 if (TEST_ptr(store = X509_STORE_new())
26 && TEST_ptr(lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file()))
32 X509_STORE_free(store);
pkcs7_test.c 57 X509_STORE *store = NULL; local
80 && TEST_ptr(store = X509_STORE_new())
81 && TEST_true(X509_STORE_add_cert(store, cert))
84 && TEST_true(PKCS7_verify(p7, NULL, store, msg_bio, NULL, PKCS7_TEXT))
87 X509_STORE_free(store);
  /src/crypto/external/bsd/openssl.old/dist/test/
x509_dup_cert_test.c 21 X509_STORE *store = NULL; local
25 if (TEST_ptr(store = X509_STORE_new())
26 && TEST_ptr(lookup = X509_STORE_add_lookup(store, X509_LOOKUP_file()))
32 X509_STORE_free(store);
  /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...]
  /src/sys/kern/
kern_uuid.c 70 struct uuid *store, tmp; local
83 for (store = SCARG(uap,store), count = SCARG(uap,count);
85 store++, count--) {
87 error = copyout(&tmp, store, sizeof tmp);
96 uuidgen(struct uuid *store, int count)
100 uuid_generate(store++);
  /src/tests/rump/kernspace/
alloc.c 48 static void *store[32]; variable
72 for (i = 0; i < __arraycount(store); i++) {
73 pool_put(&pp1, store[i]);
95 for (i = 0; i < __arraycount(store); i++) {
96 store[i] = pool_get(&pp1, PR_NOWAIT);
97 if (store[i] == NULL) {
98 panic("pool_get store failed");
  /src/tests/usr.sbin/inetd/
test_server.c 129 struct iovec store = { local
136 .msg_iov = &store,
  /src/usr.bin/uuidgen/
uuidgen.c 80 uuid_t *store, *uuid; local
124 store = (uuid_t*)malloc(sizeof(uuid_t) * count);
125 if (store == NULL)
130 if (uuidgen(store, count) != 0)
133 uuid = store;
140 uuid = store;
181 free(store);
  /src/usr.sbin/ypserv/revnetgroup/
hash.c 140 * Store an entry in the main netgroup hash table. Here's how this
157 store(struct group_entry *table[], const char *key, const char *data) function
174 * Store a group member entry and/or update its grouplist. This is
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
store-int.h 1 /* $NetBSD: store-int.h,v 1.2 2017/01/28 21:31:49 christos Exp $ */
42 ssize_t (*store)(struct krb5_storage_data*, const void*, size_t); member in struct:krb5_storage_data
  /src/external/bsd/unbound/dist/cachedb/
cachedb.h 86 /** Store (env, cachedb_env, key, data, data_len) */
87 void (*store)(struct module_env*, struct cachedb_env*, char*, member in struct:cachedb_backend
  /src/usr.sbin/services_mkdb/
output_db.c 67 static void store(DBT *, DBT *, int);
105 store(&data, &key, warndup);
110 store(&key, &data, warndup);
114 store(&key, &data, warndup);
121 store(&key, &data, warndup);
125 store(&key, &data, warndup);
142 store(DBT *key, DBT *data, int warndup) function
147 (void)printf("store [%*.*s] [%*.*s]\n",
  /src/crypto/external/apache2/openssl/dist/crypto/
core_fetch.c 21 OSSL_METHOD_STORE *store; member in struct:construct_data_st
39 if (is_temporary_method_store(no_store, data) && data->store == NULL) {
41 * If we have been told not to store the method "permanently", we
42 * ask for a temporary store, and store the method there.
44 * that temporary store.
46 if ((data->store = data->mcm->get_tmp_store(data->mcm_data)) == NULL)
50 return data->mcm->lock_store(data->store, data->mcm_data);
57 return data->mcm->unlock_store(data->store, data->mcm_data);
115 "ossl_method_construct_this: putting an algo to the store %p with no_store %d\n"
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/
core_fetch.c 20 OSSL_METHOD_STORE *store; member in struct:construct_data_st
38 if (is_temporary_method_store(no_store, data) && data->store == NULL) {
40 * If we have been told not to store the method "permanently", we
41 * ask for a temporary store, and store the method there.
43 * that temporary store.
45 if ((data->store = data->mcm->get_tmp_store(data->mcm_data)) == NULL)
49 return data->mcm->lock_store(data->store, data->mcm_data);
56 return data->mcm->unlock_store(data->store, data->mcm_data);
118 * ossl_method_construct() tries to get it from the store
    [all...]
  /src/external/bsd/kyua-cli/dist/cli/
common.cpp 77 /// Standard definition of the option to specify the store.
79 's', "store",
80 "Path to the store database",
81 "file", "~/.kyua/store.db");
199 /// Gets the path to the store to be used.
201 /// This has the side-effect of creating the directory in which to store the
210 /// \return The path to the store to be used.
216 fs::path store = cmdline.get_option< cmdline::path_option >( local
218 if (store == fs::path(store_option.default_value())) {
221 store = home.get() / ".kyua/store.db"
    [all...]
  /src/external/mpl/bind/dist/lib/ns/
listenlist.c 41 isc_tls_cert_store_t *store = NULL, *found_store = NULL; local
60 * and store it within the cache.
89 tls_params->ca_file, &store);
94 store = found_store;
98 sslctx, true, store, NULL, false);
180 transport, family, sslctx, store,
212 if (store != NULL && store != found_store) {
213 isc_tls_cert_store_free(&store);
  /src/sys/dev/
midictl.h 159 midictl_store *store; member in struct:__anon3189

Completed in 66 milliseconds

1 2 3 4 5 6 7 8 9