Searched refs:ape (Results 1 – 1 of 1) sorted by relevance
258 audit_pipe_entry_free(struct audit_pipe_entry *ape) in audit_pipe_entry_free() argument260 kfree_data(ape->ape_record, ape->ape_record_len); in audit_pipe_entry_free()261 kfree_type(struct audit_pipe_entry, ape); in audit_pipe_entry_free()460 struct audit_pipe_entry *ape; in audit_pipe_append() local470 ape = kalloc_type(struct audit_pipe_entry, Z_NOWAIT | Z_ZERO); in audit_pipe_append()471 if (ape == NULL) { in audit_pipe_append()477 ape->ape_record = kalloc_data(record_len, Z_NOWAIT); in audit_pipe_append()478 if (ape->ape_record == NULL) { in audit_pipe_append()479 kfree_type(struct audit_pipe_entry, ape); in audit_pipe_append()485 bcopy(record, ape->ape_record, record_len); in audit_pipe_append()[all …]