Lines Matching refs:tvb
30 + proto_tree_add_text(ppi_tree, tvb, offset, data_len,
36 + next_tvb = tvb_new_subset(tvb, offset + 4, data_len - 4 , -1);
42 proto_tree_add_text(ppi_tree, tvb, offset, data_len,
108 +dissect_ppi_btle(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) {
109 + /* These are locals used for processing the current tvb */
131 + ti = proto_tree_add_protocol_format(tree, proto_ppi_btle, tvb, 0, length, "BTLE:");
134 + length = tvb_length(tvb);
142 + channel = tvb_get_letohs(tvb, 1);
143 + clkn_high = tvb_get_guint8(tvb, 3);
144 + clk100ns = tvb_get_letohl(tvb, 4);
145 + urssi_max = tvb_get_guint8(tvb, 8);
146 + urssi_min = tvb_get_guint8(tvb, 9);
147 + urssi_avg = tvb_get_guint8(tvb, 10);
148 + rssi_count = tvb_get_guint8(tvb, 11);
155 + proto_tree_add_uint(ppi_btle_tree, hf_ppi_btle_version, tvb, 0, 1, version);
156 + proto_tree_add_uint(ppi_btle_tree, hf_ppi_btle_channel, tvb, 1, 2, channel);
157 + proto_tree_add_uint(ppi_btle_tree, hf_ppi_btle_clkn_high, tvb, 3, 1, clkn_high);
158 + proto_tree_add_uint(ppi_btle_tree, hf_ppi_btle_clk100ns, tvb, 4, 4, clk100ns);
159 + proto_tree_add_int(ppi_btle_tree, hf_ppi_btle_rssi_max, tvb, 8, 1, rssi_max);
160 + proto_tree_add_int(ppi_btle_tree, hf_ppi_btle_rssi_min, tvb, 9, 1, rssi_min);
161 + proto_tree_add_int(ppi_btle_tree, hf_ppi_btle_rssi_avg, tvb, 10, 1, rssi_avg);
162 + proto_tree_add_uint(ppi_btle_tree, hf_ppi_btle_rssi_count, tvb, 11, 1, rssi_count);
165 + version = tvb_get_guint8(tvb, 0);