Lines Matching refs:cb

335 static void output_quoted_string(char *str, void (*cb)(const char *,void *),  in output_quoted_string()
341 cb("\"", data); in output_quoted_string()
343 cb("\"", data); in output_quoted_string()
350 cb("\\\\", data); in output_quoted_string()
353 cb("\\n", data); in output_quoted_string()
356 cb("\\t", data); in output_quoted_string()
359 cb("\\b", data); in output_quoted_string()
366 cb(buf, data); in output_quoted_string()
370 cb("\"", data); in output_quoted_string()
385 void (*cb)(const char *, void *), void *data) in dump_profile()
400 cb("\t", data); in dump_profile()
402 cb(name, data); in dump_profile()
403 cb(" = ", data); in dump_profile()
404 output_quoted_string(value, cb, data); in dump_profile()
405 cb(EOL, data); in dump_profile()
407 cb(name, data); in dump_profile()
408 cb(" = ", data); in dump_profile()
409 cb(value, data); in dump_profile()
410 cb(EOL, data); in dump_profile()
421 cb("[", data); in dump_profile()
422 cb(name, data); in dump_profile()
423 cb("]", data); in dump_profile()
424 cb(profile_is_node_final(p) ? "*" : "", data); in dump_profile()
425 cb(EOL, data); in dump_profile()
426 dump_profile(p, level+1, cb, data); in dump_profile()
427 cb(EOL, data); in dump_profile()
430 cb("\t", data); in dump_profile()
431 cb(name, data); in dump_profile()
432 cb(" = {", data); in dump_profile()
433 cb(EOL, data); in dump_profile()
434 dump_profile(p, level+1, cb, data); in dump_profile()
436 cb("\t", data); in dump_profile()
437 cb("}", data); in dump_profile()
438 cb(profile_is_node_final(p) ? "*" : "", data); in dump_profile()
439 cb(EOL, data); in dump_profile()