Lines Matching refs:string
55 char *string; member
1019 static inline int debug_count_numargs(char *string) in debug_count_numargs() argument
1023 while (*string) { in debug_count_numargs()
1024 if (*string++ == '%') in debug_count_numargs()
1033 debug_entry_t *__debug_sprintf_event(debug_info_t *id, int level, char *string, ...) in __debug_sprintf_event() argument
1043 numargs = debug_count_numargs(string); in __debug_sprintf_event()
1053 va_start(ap, string); in __debug_sprintf_event()
1054 curr_event->string = string; in __debug_sprintf_event()
1068 debug_entry_t *__debug_sprintf_exception(debug_info_t *id, int level, char *string, ...) in __debug_sprintf_exception() argument
1079 numargs = debug_count_numargs(string); in __debug_sprintf_exception()
1089 va_start(ap, string); in __debug_sprintf_exception()
1090 curr_event->string = string; in __debug_sprintf_exception()
1496 strcpy(out_buf, curr_event->string); in debug_sprintf_format_fn()
1497 rc = strlen(curr_event->string); in debug_sprintf_format_fn()
1509 rc = sprintf(out_buf, curr_event->string, curr_event->args[index[0]], in debug_sprintf_format_fn()