Home
last modified time | relevance | path

Searched refs:subsystem_strings (Results 1 – 2 of 2) sorted by relevance

/xnu-12377.61.12/bsd/kern/
H A Dkdebug_triage.c111 const char **subsystem_strings = ktriage_subsystems_strings[subsystem].strings; in ktriage_convert_to_string() local
115 if (subsystem_num_strings < 1 || subsystem_strings == NULL || strindx >= subsystem_num_strings) { in ktriage_convert_to_string()
120 snprintf(buf, bufsz, "%s(arg = 0x%lx) %s", subsystem_strings[0], arg, subsystem_strings[strindx]); in ktriage_convert_to_string()
358 ktriage_register_subsystem_strings(uint8_t subsystem, ktriage_strings_t *subsystem_strings) in ktriage_register_subsystem_strings() argument
360 if (subsystem == 0 || subsystem > KDBG_TRIAGE_SUBSYS_MAX || subsystem_strings == NULL) { in ktriage_register_subsystem_strings()
366 ktriage_subsystems_strings[subsystem].num_strings = subsystem_strings->num_strings; in ktriage_register_subsystem_strings()
367 ktriage_subsystems_strings[subsystem].strings = subsystem_strings->strings; in ktriage_register_subsystem_strings()
/xnu-12377.61.12/bsd/sys/
H A Dkdebug_kernel.h495 int ktriage_register_subsystem_strings(uint8_t subsystem, ktriage_strings_t *subsystem_strings);