Home
last modified time | relevance | path

Searched refs:pdu_len (Results 1 – 12 of 12) sorted by relevance

/external/blktrace/
Dblkparse_fmt.c115 static char *dump_pdu(unsigned char *pdu_buf, int pdu_len) in dump_pdu() argument
120 if (!pdu_buf || !pdu_len) in dump_pdu()
123 for (len = 0, i = 0; i < pdu_len; i++) { in dump_pdu()
134 if (!pdu_buf[i] && pdu_rest_is_zero(pdu_buf + i, pdu_len - i)) { in dump_pdu()
164 int pdu_len, unsigned char *pdu_buf, char field, in print_field() argument
219 char *p = dump_pdu(pdu_buf, pdu_len); in print_field()
258 int pdu_len, unsigned char *pdu_buf, in parse_field() argument
277 print_field(act, pci, t, elapsed, pdu_len, pdu_buf, *p++, in parse_field()
285 int pdu_len, unsigned char *pdu_buf) in process_default() argument
316 char *p = dump_pdu(pdu_buf, pdu_len); in process_default()
[all …]
Dblkrawverify.c116 fprintf(ofp, " %8s: %u\n", "pdu_len", bit->pdu_len); in dump_trace()
195 if (bit->pdu_len) { in process()
198 pdu_buf = malloc(bit->pdu_len); in process()
199 n = fread(pdu_buf, bit->pdu_len, 1, ifp); in process()
Dblkiomon.c124 fprintf(debug.fp, "pdu_len %16d\n", bit->pdu_len); in dump_bit()
151 fprintf(debug.fp, "pdu_len %16d %16d\n", bit1->pdu_len, bit2->pdu_len); in dump_bits()
438 if (fwrite(pdu_buf, bit->pdu_len, 1, drvdata.fp) != 1) in blkiomon_dump_drvdata()
488 if (bit->pdu_len) { in blkiomon_do_fifo()
489 pdu_buf = realloc(pdu_buf, bit->pdu_len); in blkiomon_do_fifo()
490 if (fread(pdu_buf, bit->pdu_len, 1, ifp) != 1) { in blkiomon_do_fifo()
Dblkparse.c584 if (bit->pdu_len != sizeof(two32)) in handle_notify()
602 if (bit->pdu_len > 0) { in handle_notify()
603 char msg[bit->pdu_len+1]; in handle_notify()
605 memcpy(msg, (char *)payload, bit->pdu_len); in handle_notify()
606 msg[bit->pdu_len] = '\0'; in handle_notify()
753 if (bit_alloc_cache < 1024 && !bit->pdu_len) { in bit_free()
1469 process_fmt(act, pci, t, -1ULL, t->pdu_len, buf); in log_pc()
1624 output_binary(t, sizeof(*t) + t->pdu_len); in dump_trace()
2141 return bit->pdu_len; in get_pdulen()
2143 return __bswap_16(bit->pdu_len); in get_pdulen()
[all …]
Dblktrace.h119 t->pdu_len = be16_to_cpu(t->pdu_len); in trace_to_cpu()
Dblktrace_api.h106 __u16 pdu_len; /* length of data after this trace */ member
Dblktrace.c1352 t_len = sizeof(*t) + t->pdu_len; in handle_list_file()
/external/blktrace/btt/
Dmmap.c69 tp->pdu_len = be16_to_cpu(t->pdu_len); in convert_to_cpu()
72 if (tp->pdu_len) { in convert_to_cpu()
73 *pdu = malloc(tp->pdu_len); in convert_to_cpu()
74 memcpy(*pdu, t+1, tp->pdu_len); in convert_to_cpu()
78 return sizeof(*tp) + tp->pdu_len; in convert_to_cpu()
Dtrace.c60 char msg[iop->t.pdu_len + 1]; in trace_message()
65 memcpy(msg, iop->pdu, iop->t.pdu_len); in trace_message()
66 msg[iop->t.pdu_len] = '\0'; in trace_message()
/external/tcpdump/
Dprint-isoclns.c561 u_int8_t pdu_len[2]; member
570 u_int8_t pdu_len[2]; member
575 u_int8_t pdu_len[2]; member
584 u_int8_t pdu_len[2]; member
591 u_int8_t pdu_len[2]; member
1747 u_short packet_len,pdu_len; in isis_print() local
1897 pdu_len=EXTRACT_16BITS(header_iih_lan->pdu_len); in isis_print()
1898 if (packet_len>pdu_len) { in isis_print()
1899 packet_len=pdu_len; /* do TLV decoding as long as it makes sense */ in isis_print()
1900 length=pdu_len; in isis_print()
[all …]
Dprint-ldp.c503 u_short pdu_len,msg_len,msg_type,msg_tlen; in ldp_msg_print() local
521 pdu_len = EXTRACT_16BITS(&ldp_com_header->pdu_length); in ldp_msg_print()
526 pdu_len); in ldp_msg_print()
533 tlen=pdu_len; in ldp_msg_print()
609 return pdu_len+4; in ldp_msg_print()
/external/blktrace/btreplay/
Dbtrecord.c490 __u16 pdu_len; in next_io() local
516 pdu_len = t.pdu_len; in next_io()
523 pdu_len = be16_to_cpu(t.pdu_len); in next_io()
527 if (pdu_len) { in next_io()
528 char buf[pdu_len]; in next_io()
530 ret = read(iip->ifd, buf, pdu_len); in next_io()
535 else if (ret < (ssize_t)pdu_len) { in next_io()