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

1234567891011>>

/openbsd-current/gnu/llvm/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...]
/openbsd-current/lib/libc/arch/i386/sys/
H A Dsigpending.S38 movl %eax,(%ecx) # store old mask
/openbsd-current/lib/libcrypto/x509/
H A Dx509_lu.c141 X509_STORE *store; local
143 if ((store = calloc(1, sizeof(*store))) == NULL)
146 if ((store->objs = sk_X509_OBJECT_new(x509_object_cmp)) == NULL)
148 if ((store->get_cert_methods = sk_X509_LOOKUP_new_null()) == NULL)
150 if ((store->param = X509_VERIFY_PARAM_new()) == NULL)
153 if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_X509_STORE, store,
154 &store->ex_data))
157 store->references = 1;
159 return store;
223 X509_STORE_free(X509_STORE *store) argument
241 X509_STORE_up_ref(X509_STORE *store) argument
248 X509_STORE_add_lookup(X509_STORE *store, X509_LOOKUP_METHOD *method) argument
334 X509_STORE_add_object(X509_STORE *store, X509_OBJECT *obj) argument
362 X509_STORE_add_cert(X509_STORE *store, X509 *x) argument
385 X509_STORE_add_crl(X509_STORE *store, X509_CRL *x) argument
554 X509_STORE *store = ctx->store; local
577 X509_STORE *store = ctx->store; local
857 X509_STORE_set_verify(X509_STORE *store, X509_STORE_CTX_verify_fn verify) argument
864 X509_STORE_get_verify(X509_STORE *store) argument
871 X509_STORE_set_verify_cb(X509_STORE *store, X509_STORE_CTX_verify_cb verify_cb) argument
878 X509_STORE_get_verify_cb(X509_STORE *store) argument
[all...]
/openbsd-current/gnu/usr.bin/perl/lib/
H A Ddbm_filter_util.pl10 my $store = shift ;
15 ok ref $store eq 'HASH', "Store Data is a hash reference";
18 while (my ($k, $v) = each %$store) {
/openbsd-current/gnu/usr.bin/perl/dist/Storable/t/
H A Dforgive.t22 use Storable qw(store retrieve);
39 eval {$result = store ($bad , "store$$")};
51 eval {$result = store ($bad , "store$$")};
58 my $ret = retrieve("store$$");
65 END { 1 while unlink "store$$" }
H A Dtestlib.pl9 use Storable qw (store retrieve freeze thaw nstore nfreeze);
/openbsd-current/gnu/usr.bin/perl/amigaos4/
H A Damigaio.h23 void amigaos_stdio_get(pTHX_ StdioStore *store);
26 void amigaos_stdio_save(pTHX_ StdioStore *store);
29 void amigaos_stdio_restore(pTHX_ const StdioStore *store);
/openbsd-current/usr.bin/find/
H A Dmisc.c55 brace_subst(char *orig, char **store, char *path, int len) argument
61 for (p = *store; (ch = *orig); ++orig)
63 while ((p - *store) + plen > len) {
67 p_off = (p - *store);
68 newstore = reallocarray(*store, len, 2);
72 *store = newstore;
/openbsd-current/usr.sbin/unbound/testcode/
H A Dunittcpreuse.c274 struct outside_network* outnet, struct waiting_tcp* store,
281 outnet_waiting_tcp_list_add(outnet, &store[i], 0);
283 check_waiting_tcp_list(outnet, &store[0], &store[total-1], total);
304 check_waiting_tcp_list(outnet, &store[1], &store[total-1], total-1);
307 check_waiting_tcp_list(outnet, &store[0], &store[total-2], total-1);
310 check_waiting_tcp_list(outnet, &store[0], &store[tota
273 check_waiting_tcp_removal(int is_pop, struct outside_network* outnet, struct waiting_tcp* store, size_t position, size_t total) argument
319 struct waiting_tcp store[MAX_TCP_WAITING_NODES]; local
414 check_reuse_write_wait_removal(int is_pop, struct reuse_tcp* reuse, struct waiting_tcp* store, size_t position, size_t total) argument
454 struct waiting_tcp store[MAX_TCP_WAITING_NODES]; local
[all...]
H A Dreplay.c2 * testcode/replay.c - store and use a replay of events for the DNS resolver.
61 * @param store: value storage
67 static char* macro_expand(rbtree_type* store,
563 macro_store_delete(rbtree_type* store) argument
565 if(!store)
567 traverse_postorder(store, del_macro, NULL);
568 free(store);
613 do_macro_recursion(rbtree_type* store, struct replay_runtime* runtime, argument
617 char* expand = macro_expand(store, runtime, &after);
628 /** get var from store */
630 macro_getvar(rbtree_type* store, char* name) argument
640 do_macro_variable(rbtree_type* store, char* buf, size_t remain) argument
779 macro_expand(rbtree_type* store, struct replay_runtime* runtime, char** text) argument
852 macro_process(rbtree_type* store, struct replay_runtime* runtime, char* text) argument
880 macro_lookup(rbtree_type* store, char* name) argument
887 macro_print_debug(rbtree_type* store) argument
896 macro_assign(rbtree_type* store, char* name, char* value) argument
926 rbtree_type* store = macro_store_create(); local
[all...]
H A Dreplay.h2 * testcode/replay.h - store and use a replay of events for the DNS resolver.
213 /** store infra rtt cache entry: addr and string (int) */
439 * @param store: the macro storage to free up.
441 void macro_store_delete(rbtree_type* store);
445 * @param store: variable store.
450 char* macro_process(rbtree_type* store, struct replay_runtime* runtime,
455 * @param store: variable store
460 char* macro_lookup(rbtree_type* store, cha
[all...]
/openbsd-current/usr.sbin/nsd/
H A Dixfrcreate.c322 /* store the old soa record when we encounter it on the spool */
323 static int process_store_oldsoa(struct ixfr_store* store, uint8_t* dname, argument
327 if(store->data->oldsoa) {
331 if(!ixfr_store_oldsoa_uncompressed(store, dname, dname_len, tp, kl,
399 struct ixfr_store* store, struct domain* domain,
427 if(!process_store_oldsoa(store,
440 if(!ixfr_store_delrr_uncompressed(store,
460 if(!ixfr_store_addrr_rdatas(store, domain_dname(domain),
473 struct ixfr_store* store, uint8_t* dname, size_t dname_len,
499 if(!process_store_oldsoa(store, dnam
398 process_diff_rrset(FILE* spool, struct ixfr_create* ixfrcr, struct ixfr_store* store, struct domain* domain, uint16_t tp, uint16_t kl, uint16_t rrcount, struct rrset* rrset) argument
472 process_spool_delrrset(FILE* spool, struct ixfr_create* ixfrcr, struct ixfr_store* store, uint8_t* dname, size_t dname_len, uint16_t tp, uint16_t kl, uint16_t rrcount) argument
530 process_marktypes(struct ixfr_store* store, struct zone* zone, struct domain* domain, uint16_t* marktypes, size_t marktypes_used) argument
553 process_diff_domain(FILE* spool, struct ixfr_create* ixfrcr, struct ixfr_store* store, struct zone* zone, struct domain* domain) argument
611 process_domain_add_RRs(struct ixfr_store* store, struct zone* zone, struct domain* domain) argument
625 process_domain_del_RRs(struct ixfr_create* ixfrcr, struct ixfr_store* store, FILE* spool, uint8_t* dname, size_t dname_len) argument
709 ixfr_create_too_large(struct ixfr_create* ixfrcr, struct ixfr_store* store) argument
732 process_spool_before_domain(FILE* spool, struct ixfr_create* ixfrcr, struct ixfr_store* store, struct domain* domain, struct spool_dname_iterator* iter, struct region* tmp_region) argument
774 process_spool_for_domain(FILE* spool, struct ixfr_create* ixfrcr, struct ixfr_store* store, struct zone* zone, struct domain* domain, struct spool_dname_iterator* iter, struct region* tmp_region) argument
808 process_spool_remaining(FILE* spool, struct ixfr_create* ixfrcr, struct ixfr_store* store, struct spool_dname_iterator* iter) argument
835 ixfr_create_walk_zone(FILE* spool, struct ixfr_create* ixfrcr, struct ixfr_store* store, struct zone* zone) argument
912 ixfr_create_store_newsoa(struct ixfr_store* store, struct zone* zone) argument
934 ixfr_perform_init(struct ixfr_create* ixfrcr, struct zone* zone, struct ixfr_store* store_mem, struct ixfr_store** store, FILE** spool) argument
993 ixfr_create_finishup(struct ixfr_create* ixfrcr, struct ixfr_store* store, struct zone* zone, int append_mem, struct nsd* nsd, const char* zfile, uint32_t ixfr_number) argument
1057 struct ixfr_store store_mem, *store; local
[all...]
/openbsd-current/lib/libc/arch/amd64/sys/
H A Dsigpending.S45 movl %eax,(%rdi) # store old mask
/openbsd-current/gnu/usr.bin/perl/dist/Attribute-Handlers/demo/
H A Ddemo4.pl4 : Purpose(to store max storage capacity for files)
/openbsd-current/usr.bin/chpass/
H A Dutil.c59 atot(char *p, time_t *store) argument
65 *store = 0;
75 *store = mktime(&tm);
76 if (*store == (time_t) -1)
/openbsd-current/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Dsvpv.t32 is tied($scalar_bin)->{store}, 0;
37 is tied($scalar_bin)->{store}, 0;
42 is tied($scalar_bin)->{store}, 0;
49 is tied($scalar_uni)->{store}, 0;
54 is tied($scalar_uni)->{store}, 0;
59 is tied($scalar_uni)->{store}, 0;
84 return bless { fetch => 0, store => 0, value => $value }, $class;
95 $self->{store}++;
/openbsd-current/sys/dev/pci/drm/amd/display/dc/gpio/
H A Dhw_gpio.c45 REG_GET(MASK_reg, MASK, &gpio->store.mask);
46 REG_GET(A_reg, A, &gpio->store.a);
47 REG_GET(EN_reg, EN, &gpio->store.en);
48 /* TODO store GPIO_MUX_CONTROL if we ever use it */
54 REG_UPDATE(MASK_reg, MASK, gpio->store.mask);
55 REG_UPDATE(A_reg, A, gpio->store.a);
56 REG_UPDATE(EN_reg, EN, gpio->store.en);
191 pin->store.mask = 0;
192 pin->store.a = 0;
193 pin->store
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stack_store.h71 // But this is not a problem as we will not be able to store anything after
90 // Counter to track store progress to know when we can Pack() the block.
102 uptr *Create(StackStore *store);
106 uptr *GetOrCreate(StackStore *store);
107 uptr *GetOrUnpack(StackStore *store);
108 uptr Pack(Compression type, StackStore *store);
109 void TestOnlyUnmap(StackStore *store);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/ieee/
H A D980619-1.x1 # This used to fail on ia32, with or without -ffloat-store.
/openbsd-current/usr.bin/bc/
H A Dextern.h24 ssize_t store; member in struct:lvalue
/openbsd-current/gnu/llvm/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);
/openbsd-current/lib/libcrypto/ct/
H A Dct_log.c83 * A store for multiple CTLOG instances.
98 * Creates an empty context for loading a CT log store.
104 * Deletes a CT log store load context.
168 CTLOG_STORE_free(CTLOG_STORE *store) argument
170 if (store != NULL) {
171 sk_CTLOG_pop_free(store->logs, CTLOG_free);
172 free(store);
199 CTLOG_STORE_load_default_file(CTLOG_STORE *store) argument
201 return CTLOG_STORE_load_file(store, CTLOG_FILE);
253 CTLOG_STORE_load_file(CTLOG_STORE *store, cons argument
362 CTLOG_STORE_get0_log_by_id(const CTLOG_STORE *store, const uint8_t *log_id, size_t log_id_len) argument
[all...]
/openbsd-current/gnu/llvm/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);
/openbsd-current/sbin/iked/
H A Dca.c110 struct ca_store *store; local
121 if ((store = calloc(1, sizeof(*store))) == NULL)
122 fatal("%s: failed to allocate cert store", __func__);
124 env->sc_priv = store;
132 struct ca_store *store; local
135 if ((store = env->sc_priv) == NULL)
137 X509_STORE_free(store->ca_cas);
138 X509_STORE_free(store->ca_certs);
139 ibuf_free(store
148 struct ca_store *store = env->sc_priv; local
180 struct ca_store *store = env->sc_priv; local
397 struct ca_store *store = env->sc_priv; local
602 struct ca_store *store = env->sc_priv; local
708 ca_chain_by_issuer(struct ca_store *store, X509_NAME *subject, struct iked_static_id *id, X509 **dst, size_t dstlen) argument
755 struct ca_store *store = env->sc_priv; local
907 struct ca_store *store = env->sc_priv; local
968 struct ca_store *store = env->sc_priv; local
1257 struct ca_store *store = env->sc_priv; local
1836 struct ca_store *store = env->sc_priv; local
[all...]

Completed in 593 milliseconds

1234567891011>>