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

  /external/tcpdump/missing/
dlnames.c 59 static struct dlt_choice dlt_choices[] = { variable in typeref:struct:dlt_choice
144 for (i = 0; dlt_choices[i].name != NULL; i++) {
145 if (strcasecmp(dlt_choices[i].name + sizeof("DLT_") - 1,
147 return (dlt_choices[i].dlt);
157 for (i = 0; dlt_choices[i].name != NULL; i++) {
158 if (dlt_choices[i].dlt == dlt)
159 return (dlt_choices[i].name + sizeof("DLT_") - 1);
170 for (i = 0; dlt_choices[i].name != NULL; i++) {
171 if (dlt_choices[i].dlt == dlt)
172 return (dlt_choices[i].description)
    [all...]
  /external/libpcap/
pcap.c 326 static struct dlt_choice dlt_choices[] = { variable in typeref:struct:dlt_choice
484 for (i = 0; dlt_choices[i].name != NULL; i++) {
485 if (pcap_strcasecmp(dlt_choices[i].name + sizeof("DLT_") - 1,
487 return (dlt_choices[i].dlt);
497 for (i = 0; dlt_choices[i].name != NULL; i++) {
498 if (dlt_choices[i].dlt == dlt)
499 return (dlt_choices[i].name + sizeof("DLT_") - 1);
509 for (i = 0; dlt_choices[i].name != NULL; i++) {
510 if (dlt_choices[i].dlt == dlt)
511 return (dlt_choices[i].description)
    [all...]

Completed in 23 milliseconds