Lines Matching refs:string
56 char *string; member
1086 static inline int debug_count_numargs(char *string) in debug_count_numargs() argument
1090 while (*string) { in debug_count_numargs()
1091 if (*string++ == '%') in debug_count_numargs()
1100 debug_entry_t *__debug_sprintf_event(debug_info_t *id, int level, char *string, ...) in __debug_sprintf_event() argument
1110 numargs = debug_count_numargs(string); in __debug_sprintf_event()
1120 va_start(ap, string); in __debug_sprintf_event()
1121 curr_event->string = string; in __debug_sprintf_event()
1135 debug_entry_t *__debug_sprintf_exception(debug_info_t *id, int level, char *string, ...) in __debug_sprintf_exception() argument
1146 numargs = debug_count_numargs(string); in __debug_sprintf_exception()
1156 va_start(ap, string); in __debug_sprintf_exception()
1157 curr_event->string = string; in __debug_sprintf_exception()
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()