Lines Matching refs:sp_end

431     gint sp_end;  in dissect_mrcpv2_common()  local
457 sp_end = tvb_find_guint8(tvb, 0, linelen, ' '); in dissect_mrcpv2_common()
458 if ((sp_end == -1) || (sp_end > tvb_len) || (sp_end > linelen)) in dissect_mrcpv2_common()
460 field1 = tvb_get_string_enc(pinfo->pool, tvb, 0, sp_end, ENC_ASCII); in dissect_mrcpv2_common()
461 sp_start = sp_end + 1; in dissect_mrcpv2_common()
464 sp_end = tvb_find_guint8(tvb, sp_start, linelen - sp_start, ' '); in dissect_mrcpv2_common()
465 if ((sp_end == -1) || (sp_end > tvb_len) || (sp_end > linelen)) in dissect_mrcpv2_common()
467 field2 = tvb_get_string_enc(pinfo->pool, tvb, sp_start, sp_end - sp_start, ENC_ASCII); in dissect_mrcpv2_common()
468 sp_start = sp_end + 1; in dissect_mrcpv2_common()
471 sp_end = tvb_find_guint8(tvb, sp_start, linelen - sp_start, ' '); in dissect_mrcpv2_common()
472 if ((sp_end == -1) || (sp_end > tvb_len) || (sp_end > linelen)) in dissect_mrcpv2_common()
474 field3 = tvb_get_string_enc(pinfo->pool, tvb, sp_start, sp_end - sp_start, ENC_ASCII); in dissect_mrcpv2_common()
475 sp_start = sp_end + 1; in dissect_mrcpv2_common()
478 sp_end = tvb_find_guint8(tvb, sp_start, linelen - sp_start, ' '); in dissect_mrcpv2_common()
479 if (sp_end == -1) in dissect_mrcpv2_common()
486 if ((sp_end > tvb_len) || (sp_end > linelen)) in dissect_mrcpv2_common()
488 field4 = tvb_get_string_enc(pinfo->pool, tvb, sp_start, sp_end - sp_start, ENC_ASCII); in dissect_mrcpv2_common()
495 sp_start = sp_end + 1; in dissect_mrcpv2_common()
496 sp_end = linelen; in dissect_mrcpv2_common()
497 if ((sp_end > tvb_len) || (sp_end > linelen)) in dissect_mrcpv2_common()
499 field5 = tvb_get_string_enc(pinfo->pool, tvb, sp_start, sp_end - sp_start, ENC_ASCII); in dissect_mrcpv2_common()