Lines Matching defs:event
540 int call_blocking_lsm_notifier(enum lsm_event event, void *data)
543 event, data);
1468 * @mask: event mask
4073 * Check to see if a process is allowed to watch for event notifications from
5288 * security_perf_event_open() - Check if a perf event open is allowed
5289 * @attr: perf event attribute
5290 * @type: type of event
5302 * security_perf_event_alloc() - Allocate a perf event LSM blob
5303 * @event: perf event
5309 int security_perf_event_alloc(struct perf_event *event)
5311 return call_int_hook(perf_event_alloc, 0, event);
5315 * security_perf_event_free() - Free a perf event LSM blob
5316 * @event: perf event
5320 void security_perf_event_free(struct perf_event *event)
5322 call_void_hook(perf_event_free, event);
5326 * security_perf_event_read() - Check if reading a perf event label is allowed
5327 * @event: perf event
5333 int security_perf_event_read(struct perf_event *event)
5335 return call_int_hook(perf_event_read, 0, event);
5339 * security_perf_event_write() - Check if writing a perf event label is allowed
5340 * @event: perf event
5346 int security_perf_event_write(struct perf_event *event)
5348 return call_int_hook(perf_event_write, 0, event);