OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:STORE_METHOD
(Results
1 - 11
of
11
) sorted by null
/external/openssl/crypto/store/
str_meth.c
63
STORE_METHOD
*STORE_create_method(char *name)
65
STORE_METHOD
*
store_method
= (
STORE_METHOD
*)OPENSSL_malloc(sizeof(
STORE_METHOD
));
local
67
if (
store_method
)
69
memset(
store_method
, 0, sizeof(*
store_method
));
70
store_method
->name = BUF_strdup(name);
72
return
store_method
;
[
all
...]
store.h
81
/* typedef struct store_method_st
STORE_METHOD
; */
89
STORE *STORE_new_method(const
STORE_METHOD
*method);
121
const
STORE_METHOD
*STORE_get_method(STORE *store);
122
const
STORE_METHOD
*STORE_set_method(STORE *store, const
STORE_METHOD
*meth);
128
const
STORE_METHOD
*STORE_Memory(void);
132
const
STORE_METHOD
*STORE_Directory(void);
136
const
STORE_METHOD
*STORE_File(void);
323
STORE_METHOD
*STORE_create_method(char *name);
324
void STORE_destroy_method(
STORE_METHOD
*store_method)
[
all
...]
str_locl.h
113
const
STORE_METHOD
*meth;
str_mem.c
136
static
STORE_METHOD
store_memory =
157
const
STORE_METHOD
*STORE_Memory(void)
str_lib.c
105
STORE *STORE_new_method(const
STORE_METHOD
*method)
137
const
STORE_METHOD
*meth = 0;
222
const
STORE_METHOD
*STORE_get_method(STORE *store)
227
const
STORE_METHOD
*STORE_set_method(STORE *store, const
STORE_METHOD
*meth)
[
all
...]
/external/openssl/crypto/engine/
tb_store.c
113
const
STORE_METHOD
*ENGINE_get_STORE(const ENGINE *e)
119
int ENGINE_set_STORE(ENGINE *e, const
STORE_METHOD
*store_meth)
eng_int.h
165
const
STORE_METHOD
*store_meth;
engine.h
474
int ENGINE_set_STORE(ENGINE *e, const
STORE_METHOD
*store_meth);
513
const
STORE_METHOD
*ENGINE_get_STORE(const ENGINE *e);
[
all
...]
/external/openssl/crypto/
ossl_typ.h
162
typedef struct store_method_st
STORE_METHOD
;
/external/openssl/include/openssl/
ossl_typ.h
162
typedef struct store_method_st
STORE_METHOD
;
engine.h
474
int ENGINE_set_STORE(ENGINE *e, const
STORE_METHOD
*store_meth);
513
const
STORE_METHOD
*ENGINE_get_STORE(const ENGINE *e);
[
all
...]
Completed in 465 milliseconds