Lines Matching refs:lens
396 toplevel_format_lens(struct lens *lens, FILE *stream, in toplevel_format_lens() argument
445 default_lens_format_cb(struct lens *lens, FILE *stream, in default_lens_format_cb() argument
448 return toplevel_format_lens(lens, stream, value, arguments, in default_lens_format_cb()
452 struct lens default_lens = {
458 blind_lens_format_cb(struct lens *lens, FILE *stream, in blind_lens_format_cb() argument
464 struct lens blind_lens = {
470 octal_lens_format_cb(struct lens *lens, FILE *stream, in octal_lens_format_cb() argument
473 return toplevel_format_lens(lens, stream, value, arguments, INT_FMT_o); in octal_lens_format_cb()
476 struct lens octal_lens = {
482 hex_lens_format_cb(struct lens *lens, FILE *stream, in hex_lens_format_cb() argument
485 return toplevel_format_lens(lens, stream, value, arguments, INT_FMT_x); in hex_lens_format_cb()
488 struct lens hex_lens = {
494 dec_lens_format_cb(struct lens *lens, FILE *stream, in dec_lens_format_cb() argument
497 return toplevel_format_lens(lens, stream, value, arguments, INT_FMT_u); in dec_lens_format_cb()
500 struct lens dec_lens = {
506 guess_lens_format_cb(struct lens *lens, FILE *stream, in guess_lens_format_cb() argument
509 return toplevel_format_lens(lens, stream, value, arguments, in guess_lens_format_cb()
513 struct lens guess_lens = {
519 bool_lens_format_cb(struct lens *lens, FILE *stream, in bool_lens_format_cb() argument
529 return toplevel_format_lens(lens, stream, value, in bool_lens_format_cb()
550 struct lens bool_lens = {
555 redispatch_as_array(struct lens *lens, FILE *stream, in redispatch_as_array() argument
557 int (*cb)(struct lens *, FILE *, in redispatch_as_array() argument
564 info->lens = lens; in redispatch_as_array()
570 int ret = cb(lens, stream, &tmp, arguments); in redispatch_as_array()
601 string_lens_format_cb(struct lens *lens, FILE *stream, in string_lens_format_cb() argument
619 return redispatch_as_array(lens, stream, value, in string_lens_format_cb()
630 return toplevel_format_lens(lens, stream, value, in string_lens_format_cb()
639 if (value->parent != NULL && value->type->lens == NULL) in string_lens_format_cb()
656 struct lens string_lens = {
670 bitvect_lens_format_cb(struct lens *lens, FILE *stream, in bitvect_lens_format_cb() argument
761 struct lens bitvect_lens = {