Home
last modified time | relevance | path

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

/xnu-11215.1.10/osfmk/kern/
H A Dext_paniclog.h100 } ext_paniclog_handle_t; typedef
109 int ext_paniclog_handle_set_active(ext_paniclog_handle_t *handle);
110 int ext_paniclog_handle_set_inactive(ext_paniclog_handle_t *handle);
111 ext_paniclog_handle_t *ext_paniclog_handle_alloc_with_uuid(uuid_t uuid, const char *data_id, uint32…
112 ext_paniclog_handle_t *ext_paniclog_handle_alloc_with_buffer(uuid_t uuid, const char *data_id, uint…
113 void ext_paniclog_handle_free(ext_paniclog_handle_t *handle);
114 int ext_paniclog_insert_data(ext_paniclog_handle_t *handle, void *addr, uint32_t len);
115 int ext_paniclog_append_data(ext_paniclog_handle_t *handle, void *addr, uint32_t len);
116 void *ext_paniclog_get_buffer(ext_paniclog_handle_t *handle);
118 void *ext_paniclog_claim_buffer(ext_paniclog_handle_t *handle);
[all …]
H A Dext_paniclog.c49 ext_paniclog_handle_t *panic_with_data_handle;
74 ext_paniclog_handle_t *
86 ext_paniclog_handle_t *handle = kalloc_type(ext_paniclog_handle_t, Z_WAITOK | Z_ZERO); in ext_paniclog_handle_alloc_with_uuid()
98 kfree_type(ext_paniclog_handle_t, handle); in ext_paniclog_handle_alloc_with_uuid()
115 ext_paniclog_handle_t *
119 ext_paniclog_handle_t *handle = NULL; in ext_paniclog_handle_alloc_with_buffer()
132 ext_paniclog_handle_free(ext_paniclog_handle_t *handle) in ext_paniclog_handle_free()
144 kfree_type(ext_paniclog_handle_t, handle); in ext_paniclog_handle_free()
148 ext_paniclog_handle_set_active(ext_paniclog_handle_t *handle) in ext_paniclog_handle_set_active()
169 ext_paniclog_handle_set_inactive(ext_paniclog_handle_t *handle) in ext_paniclog_handle_set_inactive()
[all …]
/xnu-11215.1.10/iokit/IOKit/
H A DIOExtensiblePaniclog.h47 ext_paniclog_handle_t *extPaniclogHandle;