Lines Matching full:void
20 extern void *(*avc_func_malloc) (size_t) hidden;
21 extern void (*avc_func_free) (void *)hidden;
23 extern void (*avc_func_log) (const char *, ...)hidden;
24 extern void (*avc_func_audit) (void *, security_class_t, char *, size_t)hidden;
28 extern void *(*avc_func_create_thread) (void (*)(void))hidden;
29 extern void (*avc_func_stop_thread) (void *)hidden;
31 extern void *(*avc_func_alloc_lock) (void)hidden;
32 extern void (*avc_func_get_lock) (void *)hidden;
33 extern void (*avc_func_release_lock) (void *)hidden;
34 extern void (*avc_func_free_lock) (void *)hidden;
36 static inline void set_callbacks(const struct avc_memory_callback *mem_cb,
70 static inline void *avc_malloc(size_t size)
75 static inline void avc_free(void *ptr)
90 static inline void avc_suppl_audit(void *ptr, security_class_t class,
99 static inline void *avc_create_thread(void (*run) (void))
104 static inline void avc_stop_thread(void *thread)
110 static inline void *avc_alloc_lock(void)
115 static inline void avc_get_lock(void *lock)
121 static inline void avc_release_lock(void *lock)
127 static inline void avc_free_lock(void *lock)