Lines Matching refs:curr_event
1102 debug_sprintf_entry_t *curr_event; in __debug_sprintf_event() local
1119 curr_event = (debug_sprintf_entry_t *) DEBUG_DATA(active); in __debug_sprintf_event()
1121 curr_event->string = string; in __debug_sprintf_event()
1123 curr_event->args[idx] = va_arg(ap, long); in __debug_sprintf_event()
1137 debug_sprintf_entry_t *curr_event; in __debug_sprintf_exception() local
1155 curr_event = (debug_sprintf_entry_t *)DEBUG_DATA(active); in __debug_sprintf_exception()
1157 curr_event->string = string; in __debug_sprintf_exception()
1159 curr_event->args[idx] = va_arg(ap, long); in __debug_sprintf_exception()
1527 debug_sprintf_entry_t *curr_event = (debug_sprintf_entry_t *)inbuf; in debug_sprintf_format_fn() local
1538 strcpy(out_buf, curr_event->string); in debug_sprintf_format_fn()
1539 rc = strlen(curr_event->string); in debug_sprintf_format_fn()
1551 rc = sprintf(out_buf, curr_event->string, curr_event->args[index[0]], in debug_sprintf_format_fn()
1552 curr_event->args[index[1]], curr_event->args[index[2]], in debug_sprintf_format_fn()
1553 curr_event->args[index[3]], curr_event->args[index[4]], in debug_sprintf_format_fn()
1554 curr_event->args[index[5]], curr_event->args[index[6]], in debug_sprintf_format_fn()
1555 curr_event->args[index[7]], curr_event->args[index[8]], in debug_sprintf_format_fn()
1556 curr_event->args[index[9]]); in debug_sprintf_format_fn()