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 1137 if (p->dlt_list == NULL && (p->dlt_list = malloc(255*sizeof(*(p->dlt_list)))) == NULL) {
1174 if (p->dlt_list != NULL) {
1175 p->dlt_list[dlt_index++] = DLT_CHDLC;
1176 p->dlt_list[dlt_index++] = DLT_PPP_SERIAL;
1177 p->dlt_list[dlt_index++] = DLT_FRELAY;
1197 if (p->dlt_list != NULL) {
1198 p->dlt_list[dlt_index++] = DLT_EN10MB;
1199 p->dlt_list[dlt_index++] = DLT_DOCSIS
    [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 325 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
329 if (p->dlt_list != NULL) {
330 p->dlt_list[0] = DLT_EN10MB;
331 p->dlt_list[1] = DLT_DOCSIS;
pcap-snit.c 403 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
407 if (p->dlt_list != NULL) {
408 p->dlt_list[0] = DLT_EN10MB;
409 p->dlt_list[1] = DLT_DOCSIS;
pcap-snoop.c 278 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
282 if (p->dlt_list != NULL) {
283 p->dlt_list[0] = DLT_EN10MB;
284 p->dlt_list[1] = DLT_DOCSIS;
pcap-pf.c 381 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
385 if (p->dlt_list != NULL) {
386 p->dlt_list[0] = DLT_EN10MB;
387 p->dlt_list[1] = DLT_DOCSIS;
pcap-netfilter-linux.c 500 handle->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
501 if (handle->dlt_list != NULL) {
502 handle->dlt_list[0] = DLT_NFLOG;
503 handle->dlt_list[1] = DLT_IPV4;
pcap-win32.c 559 p->dlt_list = (u_int *) malloc(sizeof(u_int) * 2);
563 if (p->dlt_list != NULL) {
564 p->dlt_list[0] = DLT_EN10MB;
565 p->dlt_list[1] = DLT_DOCSIS;
pcap-bpf.c     [all...]
pcap.c 933 (void)memcpy(*dlt_buffer, p->dlt_list,
951 pcap_free_datalinks(int *dlt_list)
953 free(dlt_list);
979 if (p->dlt_list[i] == dlt)
983 if (p->dlt_count == 2 && p->dlt_list[0] == DLT_EN10MB &&
    [all...]
pcap-int.h 217 u_int *dlt_list; member in struct:pcap
pcap-linux.c     [all...]

Completed in 459 milliseconds