HomeSort by relevance Sort by last modified time
    Searched refs:dlt_list (Results 1 - 12 of 12) sorted by null

  /external/libpcap/
pcap-dag.c 1097 if (p->dlt_list == NULL && (p->dlt_list = malloc(255*sizeof(*(p->dlt_list)))) == NULL) {
1134 if (p->dlt_list != NULL) {
1135 p->dlt_list[dlt_index++] = DLT_CHDLC;
1136 p->dlt_list[dlt_index++] = DLT_PPP_SERIAL;
1137 p->dlt_list[dlt_index++] = DLT_FRELAY;
1157 if (p->dlt_list != NULL) {
1158 p->dlt_list[dlt_index++] = DLT_EN10MB;
1159 p->dlt_list[dlt_index++] = DLT_DOCSIS
    [all...]
dlpisubs.c 233 p->dlt_list = (u_int *)malloc(sizeof(u_int) * 2);
237 if (p->dlt_list != NULL) {
238 p->dlt_list[0] = DLT_EN10MB;
239 p->dlt_list[1] = DLT_DOCSIS;
pcap-nit.c 329 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
333 if (p->dlt_list != NULL) {
334 p->dlt_list[0] = DLT_EN10MB;
335 p->dlt_list[1] = DLT_DOCSIS;
pcap-snit.c 408 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
412 if (p->dlt_list != NULL) {
413 p->dlt_list[0] = DLT_EN10MB;
414 p->dlt_list[1] = DLT_DOCSIS;
pcap-snoop.c 282 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
286 if (p->dlt_list != NULL) {
287 p->dlt_list[0] = DLT_EN10MB;
288 p->dlt_list[1] = DLT_DOCSIS;
pcap-pf.c 386 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
390 if (p->dlt_list != NULL) {
391 p->dlt_list[0] = DLT_EN10MB;
392 p->dlt_list[1] = DLT_DOCSIS;
pcap-netfilter-linux.c 498 handle->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
499 if (handle->dlt_list != NULL) {
500 handle->dlt_list[0] = DLT_NFLOG;
501 handle->dlt_list[1] = DLT_IPV4;
pcap-win32.c 529 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
533 if (p->dlt_list != NULL) {
534 p->dlt_list[0] = DLT_EN10MB;
535 p->dlt_list[1] = DLT_DOCSIS;
pcap-bpf.c     [all...]
pcap.c 921 (void)memcpy(*dlt_buffer, p->dlt_list,
939 pcap_free_datalinks(int *dlt_list)
941 free(dlt_list);
967 if (p->dlt_list[i] == dlt)
971 if (p->dlt_count == 2 && p->dlt_list[0] == DLT_EN10MB &&
    [all...]
pcap-int.h 191 u_int *dlt_list; member in struct:pcap
pcap-linux.c     [all...]

Completed in 76 milliseconds