OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:store_method
(Results
1 - 3
of
3
) 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
75
/* typedef struct store_method_st
STORE_METHOD
; */
83
STORE *STORE_new_method(const
STORE_METHOD
*method);
115
const
STORE_METHOD
*STORE_get_method(STORE *store);
116
const
STORE_METHOD
*STORE_set_method(STORE *store, const
STORE_METHOD
*meth);
122
const
STORE_METHOD
*STORE_Memory(void);
126
const
STORE_METHOD
*STORE_Directory(void);
130
const
STORE_METHOD
*STORE_File(void);
317
STORE_METHOD
*STORE_create_method(char *name);
318
void STORE_destroy_method(
STORE_METHOD
*store_method)
[
all
...]
/external/openssl/include/openssl/
store.h
75
/* typedef struct store_method_st
STORE_METHOD
; */
83
STORE *STORE_new_method(const
STORE_METHOD
*method);
115
const
STORE_METHOD
*STORE_get_method(STORE *store);
116
const
STORE_METHOD
*STORE_set_method(STORE *store, const
STORE_METHOD
*meth);
122
const
STORE_METHOD
*STORE_Memory(void);
126
const
STORE_METHOD
*STORE_Directory(void);
130
const
STORE_METHOD
*STORE_File(void);
317
STORE_METHOD
*STORE_create_method(char *name);
318
void STORE_destroy_method(
STORE_METHOD
*store_method)
[
all
...]
Completed in 51 milliseconds