Lines Matching refs:store
131 void CTLOG_STORE_free(CTLOG_STORE *store) in CTLOG_STORE_free() argument
133 if (store != NULL) { in CTLOG_STORE_free()
134 OPENSSL_free(store->propq); in CTLOG_STORE_free()
135 sk_CTLOG_pop_free(store->logs, CTLOG_free); in CTLOG_STORE_free()
136 OPENSSL_free(store); in CTLOG_STORE_free()
140 static int ctlog_new_from_conf(CTLOG_STORE *store, CTLOG **ct_log, in ctlog_new_from_conf() argument
158 store->libctx, store->propq); in ctlog_new_from_conf()
161 int CTLOG_STORE_load_default_file(CTLOG_STORE *store) in CTLOG_STORE_load_default_file() argument
168 return CTLOG_STORE_load_file(store, fpath); in CTLOG_STORE_load_default_file()
215 int CTLOG_STORE_load_file(CTLOG_STORE *store, const char *file) in CTLOG_STORE_load_file() argument
223 load_ctx->log_store = store; in CTLOG_STORE_load_file()
323 const CTLOG *CTLOG_STORE_get0_log_by_id(const CTLOG_STORE *store, in CTLOG_STORE_get0_log_by_id() argument
329 for (i = 0; i < sk_CTLOG_num(store->logs); ++i) { in CTLOG_STORE_get0_log_by_id()
330 const CTLOG *log = sk_CTLOG_value(store->logs, i); in CTLOG_STORE_get0_log_by_id()