• Home
  • Raw
  • Download

Lines Matching refs:STORE

110 static int mem_init(STORE *s);
111 static void mem_clean(STORE *s);
112 static STORE_OBJECT *mem_generate(STORE *s, STORE_OBJECT_TYPES type,
114 static STORE_OBJECT *mem_get(STORE *s, STORE_OBJECT_TYPES type,
116 static int mem_store(STORE *s, STORE_OBJECT_TYPES type,
119 static int mem_modify(STORE *s, STORE_OBJECT_TYPES type,
123 static int mem_delete(STORE *s, STORE_OBJECT_TYPES type,
125 static void *mem_list_start(STORE *s, STORE_OBJECT_TYPES type,
127 static STORE_OBJECT *mem_list_next(STORE *s, void *handle);
128 static int mem_list_end(STORE *s, void *handle);
129 static int mem_list_endp(STORE *s, void *handle);
130 static int mem_lock(STORE *s, OPENSSL_ITEM attributes[],
132 static int mem_unlock(STORE *s, OPENSSL_ITEM attributes[],
134 static int mem_ctrl(STORE *s, int cmd, long l, void *p, void (*f)(void));
162 static int mem_init(STORE *s) in mem_init()
167 static void mem_clean(STORE *s) in mem_clean()
172 static STORE_OBJECT *mem_generate(STORE *s, STORE_OBJECT_TYPES type, in mem_generate()
178 static STORE_OBJECT *mem_get(STORE *s, STORE_OBJECT_TYPES type, in mem_get()
192 static int mem_store(STORE *s, STORE_OBJECT_TYPES type, in mem_store()
199 static int mem_modify(STORE *s, STORE_OBJECT_TYPES type, in mem_modify()
207 static int mem_delete(STORE *s, STORE_OBJECT_TYPES type, in mem_delete()
221 static void *mem_list_start(STORE *s, STORE_OBJECT_TYPES type, in mem_list_start()
269 static STORE_OBJECT *mem_list_next(STORE *s, void *handle) in mem_list_next()
328 static int mem_list_end(STORE *s, void *handle) in mem_list_end()
342 static int mem_list_endp(STORE *s, void *handle) in mem_list_endp()
352 static int mem_lock(STORE *s, OPENSSL_ITEM attributes[], in mem_lock()
357 static int mem_unlock(STORE *s, OPENSSL_ITEM attributes[], in mem_unlock()
362 static int mem_ctrl(STORE *s, int cmd, long l, void *p, void (*f)(void)) in mem_ctrl()