Lines Matching refs:curr_event
100 char *out_buf, debug_sprintf_entry_t *curr_event);
973 debug_sprintf_entry_t *curr_event; in __debug_sprintf_event() local
990 curr_event = (debug_sprintf_entry_t *) DEBUG_DATA(active); in __debug_sprintf_event()
992 curr_event->string = string; in __debug_sprintf_event()
994 curr_event->args[idx] = va_arg(ap, long); in __debug_sprintf_event()
1008 debug_sprintf_entry_t *curr_event; in __debug_sprintf_exception() local
1026 curr_event = (debug_sprintf_entry_t *)DEBUG_DATA(active); in __debug_sprintf_exception()
1028 curr_event->string = string; in __debug_sprintf_exception()
1030 curr_event->args[idx] = va_arg(ap, long); in __debug_sprintf_exception()
1412 char *out_buf, debug_sprintf_entry_t *curr_event) in debug_sprintf_format_fn() argument
1424 strcpy(out_buf, curr_event->string); in debug_sprintf_format_fn()
1425 rc = strlen(curr_event->string); in debug_sprintf_format_fn()
1437 rc = sprintf(out_buf, curr_event->string, curr_event->args[index[0]], in debug_sprintf_format_fn()
1438 curr_event->args[index[1]], curr_event->args[index[2]], in debug_sprintf_format_fn()
1439 curr_event->args[index[3]], curr_event->args[index[4]], in debug_sprintf_format_fn()
1440 curr_event->args[index[5]], curr_event->args[index[6]], in debug_sprintf_format_fn()
1441 curr_event->args[index[7]], curr_event->args[index[8]], in debug_sprintf_format_fn()
1442 curr_event->args[index[9]]); in debug_sprintf_format_fn()