OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:store_method
(Results
1 - 2
of
2
) 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
...]
Completed in 1571 milliseconds