Lines Matching refs:curr_event
95 char *out_buf, debug_sprintf_entry_t *curr_event);
1112 debug_sprintf_entry_t *curr_event; in __debug_sprintf_event() local
1129 curr_event = (debug_sprintf_entry_t *) DEBUG_DATA(active); in __debug_sprintf_event()
1131 curr_event->string = string; in __debug_sprintf_event()
1133 curr_event->args[idx] = va_arg(ap, long); in __debug_sprintf_event()
1147 debug_sprintf_entry_t *curr_event; in __debug_sprintf_exception() local
1165 curr_event = (debug_sprintf_entry_t *)DEBUG_DATA(active); in __debug_sprintf_exception()
1167 curr_event->string = string; in __debug_sprintf_exception()
1169 curr_event->args[idx] = va_arg(ap, long); in __debug_sprintf_exception()
1535 char *out_buf, debug_sprintf_entry_t *curr_event) in debug_sprintf_format_fn() argument
1547 strcpy(out_buf, curr_event->string); in debug_sprintf_format_fn()
1548 rc = strlen(curr_event->string); in debug_sprintf_format_fn()
1560 rc = sprintf(out_buf, curr_event->string, curr_event->args[index[0]], in debug_sprintf_format_fn()
1561 curr_event->args[index[1]], curr_event->args[index[2]], in debug_sprintf_format_fn()
1562 curr_event->args[index[3]], curr_event->args[index[4]], in debug_sprintf_format_fn()
1563 curr_event->args[index[5]], curr_event->args[index[6]], in debug_sprintf_format_fn()
1564 curr_event->args[index[7]], curr_event->args[index[8]], in debug_sprintf_format_fn()
1565 curr_event->args[index[9]]); in debug_sprintf_format_fn()