Home
last modified time | relevance | path

Searched refs:ext_paniclog_handle_t (Results 1 – 3 of 3) sorted by relevance

/xnu-10063.141.1/osfmk/kern/
H A Dext_paniclog.h86 } ext_paniclog_handle_t; typedef
94 int ext_paniclog_handle_set_active(ext_paniclog_handle_t *handle);
95 int ext_paniclog_handle_set_inactive(ext_paniclog_handle_t *handle);
96 ext_paniclog_handle_t *ext_paniclog_handle_alloc_with_uuid(uuid_t uuid, const char *data_id, uint32…
97 ext_paniclog_handle_t *ext_paniclog_handle_alloc_with_buffer(uuid_t uuid, const char *data_id, uint…
98 void ext_paniclog_handle_free(ext_paniclog_handle_t *handle);
99 int ext_paniclog_insert_data(ext_paniclog_handle_t *handle, void *addr, uint32_t len);
100 int ext_paniclog_append_data(ext_paniclog_handle_t *handle, void *addr, uint32_t len);
101 void *ext_paniclog_get_buffer(ext_paniclog_handle_t *handle);
103 void *ext_paniclog_claim_buffer(ext_paniclog_handle_t *handle);
[all …]
H A Dext_paniclog.c48 ext_paniclog_handle_t *panic_with_data_handle;
73 ext_paniclog_handle_t *
85 ext_paniclog_handle_t *handle = kalloc_type(ext_paniclog_handle_t, Z_WAITOK | Z_ZERO); in ext_paniclog_handle_alloc_with_uuid()
97 kfree_type(ext_paniclog_handle_t, handle); in ext_paniclog_handle_alloc_with_uuid()
113 ext_paniclog_handle_t *
117 ext_paniclog_handle_t *handle = NULL; in ext_paniclog_handle_alloc_with_buffer()
130 ext_paniclog_handle_free(ext_paniclog_handle_t *handle) in ext_paniclog_handle_free()
142 kfree_type(ext_paniclog_handle_t, handle); in ext_paniclog_handle_free()
146 ext_paniclog_handle_set_active(ext_paniclog_handle_t *handle) in ext_paniclog_handle_set_active()
167 ext_paniclog_handle_set_inactive(ext_paniclog_handle_t *handle) in ext_paniclog_handle_set_inactive()
[all …]
/xnu-10063.141.1/iokit/IOKit/
H A DIOExtensiblePaniclog.h47 ext_paniclog_handle_t *extPaniclogHandle;