Searched refs:tnf_datum_t (Results 1 – 12 of 12) sorted by relevance
/titanic_44/usr/src/lib/libtnf/ |
H A D | tnf.h | 48 typedef unsigned long long tnf_datum_t; typedef 50 #define TNF_DATUM_NULL ((tnf_datum_t)0) 120 tnf_datum_t tnf_get_block_absolute(TNF *, unsigned); 121 tnf_datum_t tnf_get_block_relative(tnf_datum_t, int); 122 int tnf_is_block_header(tnf_datum_t); 128 tnf_datum_t tnf_get_next_record(tnf_datum_t); 129 tnf_datum_t tnf_get_block_header(tnf_datum_t); 130 tnf_datum_t tnf_get_file_header(TNF *); 136 int tnf_is_inline(tnf_datum_t); 137 int tnf_is_scalar(tnf_datum_t); [all …]
|
H A D | datum.c | 40 static int has_prop(tnf_datum_t, tag_props_t); 48 tnf_datum_t 55 _tnf_datum_info(tnf_datum_t datum) in _tnf_datum_info() 61 _tnf_datum_val(tnf_datum_t datum) in _tnf_datum_val() 73 _tnf_check_datum(tnf_datum_t datum) in _tnf_check_datum() 93 tnf_get_kind(tnf_datum_t datum) in tnf_get_kind() 105 has_prop(tnf_datum_t datum, tag_props_t prop) in has_prop() 114 tnf_is_inline(tnf_datum_t datum) in tnf_is_inline() 120 tnf_is_scalar(tnf_datum_t datum) in tnf_is_scalar() 126 tnf_is_record(tnf_datum_t datum) /* XXX was: tnf_is_tagged */ in tnf_is_record() [all …]
|
H A D | struct.c | 34 static struct slotinfo *get_slotinfo(tnf_datum_t); 37 static tnf_datum_t get_slot(tnf_datum_t, struct slot *); 44 _tnf_check_slots(tnf_datum_t datum) in _tnf_check_slots() 62 get_slotinfo(tnf_datum_t datum) in get_slotinfo() 102 static tnf_datum_t 103 get_slot(tnf_datum_t datum, struct slot *slot) in get_slot() 131 tnf_get_slot_count(tnf_datum_t datum) in tnf_get_slot_count() 146 tnf_get_slot_index(tnf_datum_t datum, char *name) in tnf_get_slot_index() 169 tnf_get_slot_name(tnf_datum_t datum, unsigned index) in tnf_get_slot_name() 190 tnf_datum_t [all …]
|
H A D | type.c | 35 _tnf_check_type(tnf_datum_t datum) in _tnf_check_type() 49 tnf_type_get_kind(tnf_datum_t datum) in tnf_type_get_kind() 66 tnf_type_get_name(tnf_datum_t datum) in tnf_type_get_name() 79 tnf_type_get_size(tnf_datum_t datum) in tnf_type_get_size() 100 tnf_datum_t 101 tnf_type_get_base(tnf_datum_t datum) in tnf_type_get_base() 121 tnf_datum_t 122 tnf_type_get_property(tnf_datum_t datum, char *name) in tnf_type_get_property()
|
H A D | scalar.c | 42 static void check_scalar(tnf_datum_t); 51 check_scalar(tnf_datum_t datum) in check_scalar() 66 tnf_get_char(tnf_datum_t datum) in tnf_get_char() 73 tnf_get_int8(tnf_datum_t datum) in tnf_get_int8() 80 tnf_get_int16(tnf_datum_t datum) in tnf_get_int16() 93 tnf_get_int32(tnf_datum_t datum) in tnf_get_int32() 135 tnf_get_int64(tnf_datum_t datum) in tnf_get_int64() 144 tnf_get_float32(tnf_datum_t datum) in tnf_get_float32() 159 tnf_get_float64(tnf_datum_t datum) in tnf_get_float64()
|
H A D | array.c | 39 tnf_datum_t, 49 _tnf_check_array(tnf_datum_t datum) in _tnf_check_array() 68 tnf_datum_t datum, in get_array_info() 95 tnf_get_element_count(tnf_datum_t datum) in tnf_get_element_count() 115 tnf_datum_t 116 tnf_get_element(tnf_datum_t datum, unsigned index) in tnf_get_element() 160 tnf_datum_t 161 tnf_get_element_type(tnf_datum_t datum) in tnf_get_element_type() 177 tnf_get_chars(tnf_datum_t datum) in tnf_get_chars() 196 tnf_get_elements(tnf_datum_t datum) in tnf_get_elements()
|
H A D | access.c | 34 tnf_datum_t 50 tnf_datum_t 68 tnf_datum_t 69 tnf_get_block_relative(tnf_datum_t datum, int adjust) in tnf_get_block_relative() 85 tnf_is_block_header(tnf_datum_t datum) in tnf_is_block_header() 101 tnf_datum_t 102 tnf_get_block_header(tnf_datum_t datum) in tnf_get_block_header() 121 tnf_datum_t 122 tnf_get_next_record(tnf_datum_t datum) in tnf_get_next_record()
|
H A D | record.c | 35 _tnf_check_record(tnf_datum_t datum) in _tnf_check_record() 48 tnf_datum_t 49 tnf_get_tag_arg(tnf_datum_t datum) in tnf_get_tag_arg()
|
H A D | libtnf.h | 232 tnf_datum_t _tnf_datum(struct taginfo *, caddr_t); 233 struct taginfo * _tnf_datum_info(tnf_datum_t); 234 caddr_t _tnf_datum_val(tnf_datum_t); 266 void _tnf_check_datum(tnf_datum_t); 269 void _tnf_check_record(tnf_datum_t); 272 void _tnf_check_slots(tnf_datum_t); 275 void _tnf_check_array(tnf_datum_t); 278 void _tnf_check_type(tnf_datum_t);
|
/titanic_44/usr/src/cmd/tnf/tnfdump/ |
H A D | cooked.c | 51 static void insert_event (tnf_datum_t, tnf_datum_t); 52 static void describe_c_brief (tnf_datum_t); 53 static void describe_target (tnf_datum_t); 54 static void describe_c_struct (tnf_datum_t); 55 static void describe_probe_type (tnf_datum_t); 56 static void describe_event (tnf_datum_t, tnf_datum_t, hrtime_t); 79 tnf_datum_t evt, sched; in print_event() 109 describe_c_record(tnf_datum_t datum) in describe_c_record() 112 tnf_datum_t schedule_rec; in describe_c_record() 143 describe_probe_type(tnf_datum_t datum) in describe_probe_type() [all …]
|
H A D | main.c | 53 static void describe_array (tnf_datum_t); 54 static void describe_brief (tnf_datum_t); 55 static void describe_record (tnf_datum_t); 56 static void describe_struct (tnf_datum_t); 57 static void describe_type (tnf_datum_t); 134 tnf_datum_t record; in read_tnf_file() 135 void (*desc_func)(tnf_datum_t) = describe_c_record; in read_tnf_file() 215 describe_record(tnf_datum_t datum) in describe_record() 241 describe_scalar(tnf_datum_t datum) in describe_scalar() 306 describe_struct(tnf_datum_t datum) in describe_struct() [all …]
|
H A D | state.h | 45 tnf_datum_t record; 49 void describe_c_record (tnf_datum_t); 52 void describe_scalar (tnf_datum_t);
|