Lines Matching defs:void
19 extern void *(*avc_func_malloc) (size_t) ;
20 extern void (*avc_func_free) (void *);
22 extern void (*avc_func_log) (const char *, ...) __attribute__((__format__(printf,1,2))) ;
23 extern void (*avc_func_audit) (void *, security_class_t, char *, size_t);
27 extern void *(*avc_func_create_thread) (void (*)(void));
28 extern void (*avc_func_stop_thread) (void *);
30 extern void *(*avc_func_alloc_lock) (void);
31 extern void (*avc_func_get_lock) (void *);
32 extern void (*avc_func_release_lock) (void *);
33 extern void (*avc_func_free_lock) (void *);
39 static inline void set_callbacks(const struct avc_memory_callback *mem_cb,
73 static inline void *avc_malloc(size_t size)
78 static inline void avc_free(void *ptr)
95 static inline void avc_suppl_audit(void *ptr, security_class_t class,
104 static inline void *avc_create_thread(void (*run) (void))
109 static inline void avc_stop_thread(void *thread)
115 static inline void *avc_alloc_lock(void)
120 static inline void avc_get_lock(void *lock)
126 static inline void avc_release_lock(void *lock)
132 static inline void avc_free_lock(void *lock)