HomeSort by relevance Sort by last modified time
    Searched refs:ebuf (Results 1 - 25 of 49) sorted by null

1 2

  /external/libpcap/
pcap-bt-linux.h 38 pcap_t *bt_create(const char *device, char *ebuf, int *is_ours);
pcap-bt-monitor-linux.h 32 pcap_t *bt_monitor_create(const char *device, char *ebuf, int *is_ours);
pcap-can-linux.h 35 pcap_t* can_create(const char *device, char *ebuf, int *is_ours);
pcap-canusb-linux.h 35 pcap_t* canusb_create(const char *device, char *ebuf, int *is_ours);
pcap-netfilter-linux.h 35 pcap_t *netfilter_create(const char *device, char *ebuf, int *is_ours);
pcap-septel.h 12 pcap_t *septel_create(const char *device, char *ebuf, int *is_ours);
pcap-usb-linux.h 38 pcap_t *usb_create(const char *device, char *ebuf, int *is_ours);
pcap-null.c 39 pcap_create_interface(const char *device, char *ebuf)
41 (void)strlcpy(ebuf, nosup, PCAP_ERRBUF_SIZE);
pcap-dlpi.c 830 * Returns NULL on error, and fills "ebuf" with an error message.
833 split_dname(char *device, int *unitp, char *ebuf)
844 snprintf(ebuf, PCAP_ERRBUF_SIZE, "%s missing unit number",
856 snprintf(ebuf, PCAP_ERRBUF_SIZE, "%s bad unit number", device);
860 snprintf(ebuf, PCAP_ERRBUF_SIZE, "%s unit number too large",
865 snprintf(ebuf, PCAP_ERRBUF_SIZE, "%s unit number is negative",
874 dl_doattach(int fd, int ppa, char *ebuf)
882 if (send_request(fd, (char *)&req, sizeof(req), "attach", ebuf) < 0)
885 err = dlokack(fd, "attach", (char *)buf, ebuf);
893 dl_dohpuxbind(int fd, char *ebuf)
    [all...]
pcap-dos.c 111 static int first_init (const char *name, char *ebuf, int promisc);
152 pcap_t *pcap_create_interface (const char *device, char *ebuf)
156 p = pcap_create_common(device, ebuf, sizeof (struct pcap_dos));
467 char *pcap_lookupdev (char *ebuf)
487 if (ebuf)
488 strcpy (ebuf, "No driver found");
621 open_driver (const char *dev_name, char *ebuf, int promisc)
638 sprintf (ebuf, "failed to detect device `%s'", dev_name);
660 sprintf (ebuf, "failed to activate device `%s'", dev_name);
663 strcat (ebuf, ": ")
    [all...]
pcap-septel.c 218 pcap_t *septel_create(const char *device, char *ebuf, int *is_ours) {
235 p = pcap_create_common(device, ebuf, sizeof (struct pcap_septel));
pcap.c 488 pcap_alloc_pcap_t(char *ebuf, size_t size)
501 snprintf(ebuf, PCAP_ERRBUF_SIZE, "malloc: %s",
532 pcap_create_common(const char *source, char *ebuf, size_t size)
536 p = pcap_alloc_pcap_t(ebuf, size);
542 snprintf(ebuf, PCAP_ERRBUF_SIZE, "malloc: %s",
815 pcap_open_offline_common(char *ebuf, size_t size)
819 p = pcap_alloc_pcap_t(ebuf, size);
826 snprintf(ebuf, PCAP_ERRBUF_SIZE, "malloc: %s",
1528 static char ebuf[15+10+1]; local
    [all...]
pcap-bt-monitor-linux.c 220 bt_monitor_create(const char *device, char *ebuf, int *is_ours)
235 p = pcap_create_common(device, ebuf, 0);
pcap-can-linux.c 95 can_create(const char *device, char *ebuf, int *is_ours)
134 p = pcap_create_common(device, ebuf, sizeof (struct pcap_can));
  /system/core/toolbox/upstream-netbsd/lib/libc/stdlib/
strsuftoll.c 135 long long min, long long max, char *ebuf, size_t ebuflen, size_t depth)
142 _DIAGASSERT(ebuf != NULL);
145 snprintf(ebuf, ebuflen, "%s: Recursion limit exceeded", desc);
211 num *= __strsuftollx(desc, expr + 1, min, max, ebuf, ebuflen,
213 if (*ebuf != '\0')
218 snprintf(ebuf, ebuflen, "%s: %s", desc, strerror(errno));
224 snprintf(ebuf, ebuflen, "%s `%s': illegal number", desc, val);
229 snprintf(ebuf, ebuflen, "%s %lld is less than %lld.",
235 snprintf(ebuf, ebuflen, "%s %lld is greater than %lld.",
239 *ebuf = '\0'
    [all...]
  /external/libpcap/tests/
reactivatetest.c 40 char ebuf[PCAP_ERRBUF_SIZE]; local
44 pd = pcap_open_live("lo0", 65535, 0, 1000, ebuf);
46 pd = pcap_open_live("lo", 65535, 0, 1000, ebuf);
49 ebuf);
capturetest.c 68 char ebuf[PCAP_ERRBUF_SIZE]; local
120 device = pcap_lookupdev(ebuf);
122 error("%s", ebuf);
124 *ebuf = '\0';
125 pd = pcap_create(device, ebuf);
127 error("%s", ebuf);
157 if (pcap_lookupnet(device, &localnet, &netmask, ebuf) < 0) {
160 warning("%s", ebuf);
169 if (pcap_setnonblock(pd, nonblock, ebuf) == -1)
170 error("pcap_setnonblock failed: %s", ebuf);
    [all...]
opentest.c 55 char ebuf[PCAP_ERRBUF_SIZE]; local
117 pd = pcap_create(device, ebuf);
119 error("%s", ebuf);
162 *ebuf = '\0';
163 pd = pcap_open_live(device, 65535, 0, 1000, ebuf);
165 error("%s", ebuf);
166 else if (*ebuf)
167 warning("%s", ebuf);
selpolltest.c 62 char ebuf[PCAP_ERRBUF_SIZE]; local
116 device = pcap_lookupdev(ebuf);
118 error("%s", ebuf);
120 *ebuf = '\0';
121 pd = pcap_open_live(device, 65535, 0, 1000, ebuf);
123 error("%s", ebuf);
124 else if (*ebuf)
125 warning("%s", ebuf);
126 if (pcap_lookupnet(device, &localnet, &netmask, ebuf) < 0) {
129 warning("%s", ebuf);
    [all...]
valgrindtest.c 215 char ebuf[PCAP_ERRBUF_SIZE]; local
272 device = pcap_lookupdev(ebuf);
275 ebuf);
302 pd = pcap_create(device, ebuf);
304 error("%s: pcap_create() failed: %s", device, ebuf);
339 *ebuf = '\0';
340 pd = pcap_open_live(device, 65535, 1, 1000, ebuf);
342 error("%s", ebuf);
343 else if (*ebuf)
344 warning("%s", ebuf);
    [all...]
  /external/tcpdump/
machdep.c 63 abort_on_misalignment(char *ebuf _U_, size_t ebufsiz _U_)
69 (void)snprintf(ebuf, ebufsiz, "setsysinfo: errno %d", errno);
tcpdump.c 571 char ebuf[PCAP_ERRBUF_SIZE]; local
574 if (pcap_findalldevs(&devpointer, ebuf) < 0)
575 error("%s", ebuf);
1016 char ebuf[PCAP_ERRBUF_SIZE]; local
1068 if (abort_on_misalignment(ebuf, sizeof(ebuf)) < 0)
1069 error("%s", ebuf);
1186 if (pcap_findalldevs(&devpointer, ebuf) < 0)
1187 error("%s", ebuf);
    [all...]
  /ndk/sources/host-tools/make-3.81/
read.c 129 static long readline PARAMS ((struct ebuffer *ebuf));
132 struct ebuffer *ebuf));
306 struct ebuffer ebuf;
313 ebuf.floc.filenm = strcache_add (filename);
314 ebuf.floc.lineno = 1;
341 ebuf.fp = fopen (filename, "r");
348 if (ebuf.fp == 0 && (flags & RM_INCLUDED) && *filename != '/')
354 ebuf.fp = fopen (included, "r");
355 if (ebuf.fp)
386 if (ebuf.fp == 0
303 struct ebuffer ebuf; local
418 struct ebuffer ebuf; local
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
lex.c 538 char ebuf[300]; variable
539 char *ep = ebuf;
560 if (ep >= ebuf + sizeof ebuf)
561 ep = ebuf;
572 if (--ep < ebuf)
573 ep = ebuf + sizeof(ebuf) - 1;
  /external/opencv/cv/src/
cvstereogc.cpp 669 GCEdge* ebuf = (GCEdge*)state->edgeBuf->data.ptr; local
692 ebuf[k].dst = 0;
693 ebuf[k].next = 0;
694 ebuf[k].weight = 0;
743 delta, delta, 0, ebuf, nedges );
746 E += icvAddTerm( var, var1, 0, INFINITY, 0, 0, ebuf, nedges );
759 E += icvAddTerm( var, var1, 0, E0a, Ea0, Eaa, ebuf, nedges );
781 E += icvAddTerm( var, var1, E00, E0a, Ea0, 0, ebuf, nedges );
792 E += icvAddTerm( var, var1, E00, E0a, Ea0, 0, ebuf, nedges );
805 E += icvAddTerm( var, var1, 0, INFINITY, 0, 0, ebuf, nedges )
    [all...]

Completed in 864 milliseconds

1 2