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

  /external/libpcap/
pcap-dag.c 1226 if (p->dlt_list == NULL && (p->dlt_list = malloc(255*sizeof(*(p->dlt_list)))) == NULL) {
    [all...]
dlpisubs.c 229 p->dlt_list = (u_int *)malloc(sizeof(u_int) * 2);
233 if (p->dlt_list != NULL) {
234 p->dlt_list[0] = DLT_EN10MB;
235 p->dlt_list[1] = DLT_DOCSIS;
pcap-nit.c 332 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
336 if (p->dlt_list != NULL) {
337 p->dlt_list[0] = DLT_EN10MB;
338 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 285 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
289 if (p->dlt_list != NULL) {
290 p->dlt_list[0] = DLT_EN10MB;
291 p->dlt_list[1] = DLT_DOCSIS;
pcap-pf.c 384 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
388 if (p->dlt_list != NULL) {
389 p->dlt_list[0] = DLT_EN10MB;
390 p->dlt_list[1] = DLT_DOCSIS;
pcap-netfilter-linux.c 503 handle->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
504 if (handle->dlt_list != NULL) {
505 handle->dlt_list[0] = DLT_NFLOG;
506 handle->dlt_list[1] = DLT_IPV4;
pcap-bpf.c     [all...]
pcap.c 962 (void)memcpy(*dlt_buffer, p->dlt_list,
980 pcap_free_datalinks(int *dlt_list)
982 free(dlt_list);
1011 if (p->dlt_list[i] == (u_int)dlt)
1015 if (p->dlt_count == 2 && p->dlt_list[0] == DLT_EN10MB &&
    [all...]
pcap-int.h 229 u_int *dlt_list; member in struct:pcap
pcap-tc.c 597 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
601 if (p->dlt_list != NULL) {
602 p->dlt_list[0] = DLT_EN10MB;
603 p->dlt_list[1] = DLT_PPI;
    [all...]
pcap-win32.c 968 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
972 if (p->dlt_list != NULL) {
973 p->dlt_list[0] = DLT_EN10MB;
974 p->dlt_list[1] = DLT_DOCSIS;
    [all...]
pcap-linux.c     [all...]

Completed in 191 milliseconds