Searched refs:ebuf (Results 1 - 25 of 52) sorted by relevance

123

/external/libpcap/
H A Dpcap-bt-linux.h38 pcap_t *bt_create(const char *device, char *ebuf, int *is_ours);
H A Dpcap-bt-monitor-linux.h32 pcap_t *bt_monitor_create(const char *device, char *ebuf, int *is_ours);
H A Dpcap-can-linux.h35 pcap_t* can_create(const char *device, char *ebuf, int *is_ours);
H A Dpcap-canusb-linux.h35 pcap_t* canusb_create(const char *device, char *ebuf, int *is_ours);
H A Dpcap-netfilter-linux.h35 pcap_t *netfilter_create(const char *device, char *ebuf, int *is_ours);
H A Dpcap-septel.h12 pcap_t *septel_create(const char *device, char *ebuf, int *is_ours);
H A Dpcap-usb-linux.h38 pcap_t *usb_create(const char *device, char *ebuf, int *is_ours);
H A Dpcap-null.c39 pcap_create_interface(const char *device, char *ebuf) argument
41 (void)strlcpy(ebuf, nosup, PCAP_ERRBUF_SIZE);
H A Dpcap-dlpi.c830 * Returns NULL on error, and fills "ebuf" with an error message.
833 split_dname(char *device, int *unitp, char *ebuf) argument
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) argument
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) argument
1007 send_request(int fd, char *ptr, int len, char *what, char *ebuf) argument
1027 recv_ack(int fd, int size, const char *what, char *bufp, char *ebuf, int *uerror) argument
1309 dlbindreq(int fd, bpf_u_int32 sap, char *ebuf) argument
1329 dlbindack(int fd, char *bufp, char *ebuf, int *uerror) argument
1336 dlokack(int fd, const char *what, char *bufp, char *ebuf) argument
1344 dlinforeq(int fd, char *ebuf) argument
1354 dlinfoack(int fd, char *bufp, char *ebuf) argument
1366 dlpassive(int fd, char *ebuf) argument
1481 get_dlpi_ppa(register int fd, register const char *device, register int unit, register char *ebuf) argument
1668 get_dlpi_ppa(register int fd, register const char *ifname, register int unit, register char *ebuf) argument
1720 dlpi_kread(register int fd, register off_t addr, register void *buf, register u_int len, register char *ebuf) argument
1745 pcap_create_interface(const char *device, char *ebuf) argument
[all...]
H A Dpcap-dos.c111 static int first_init (const char *name, char *ebuf, int promisc);
152 pcap_t *pcap_create_interface (const char *device, char *ebuf) argument
156 p = pcap_create_common(device, ebuf, sizeof (struct pcap_dos));
467 char *pcap_lookupdev (char *ebuf) argument
487 if (ebuf)
488 strcpy (ebuf, "No driver found");
621 open_driver (const char *dev_name, char *ebuf, int promisc) argument
638 sprintf (ebuf, "failed to detect device `%s'", dev_name);
660 sprintf (ebuf, "failed to activate device `%s'", dev_name);
663 strcat (ebuf, "
767 first_init(const char *name, char *ebuf, int promisc) argument
[all...]
H A Dpcap-septel.c218 pcap_t *septel_create(const char *device, char *ebuf, int *is_ours) { argument
235 p = pcap_create_common(device, ebuf, sizeof (struct pcap_septel));
H A Dpcap.c488 pcap_alloc_pcap_t(char *ebuf, size_t size) argument
501 snprintf(ebuf, PCAP_ERRBUF_SIZE, "malloc: %s",
532 pcap_create_common(const char *source, char *ebuf, size_t size) argument
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) argument
819 p = pcap_alloc_pcap_t(ebuf, size);
826 snprintf(ebuf, PCAP_ERRBUF_SIZE, "malloc: %s",
1528 static char ebuf[15+10+1]; local
1577 (void)snprintf(ebuf, sizeo
[all...]
H A Dpcap-bt-monitor-linux.c220 bt_monitor_create(const char *device, char *ebuf, int *is_ours) argument
235 p = pcap_create_common(device, ebuf, 0);
H A Dpcap-can-linux.c95 can_create(const char *device, char *ebuf, int *is_ours) argument
134 p = pcap_create_common(device, ebuf, sizeof (struct pcap_can));
H A Dpcap-dbus.c249 dbus_create(const char *device, char *ebuf, int *is_ours) argument
262 p = pcap_create_common(device, ebuf, sizeof (struct pcap_dbus));
/external/libpcap/tests/
H A Dreactivatetest.c40 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);
H A Dcapturetest.c68 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...]
H A Dopentest.c55 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);
H A Dselpolltest.c62 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...]
H A Dvalgrindtest.c215 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/
H A Dmachdep.c63 abort_on_misalignment(char *ebuf _U_, size_t ebufsiz _U_)
69 (void)snprintf(ebuf, ebufsiz, "setsysinfo: errno %d", errno);
H A Dtcpdump.c571 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);
1564 gndo->ndo_tstamp_precision, ebuf);
[all...]
/external/ltp/testcases/kernel/syscalls/nftw/
H A Dtools.c32 extern char ebuf[ERR_BUF_SIZ];
73 sprintf(ebuf, "Can't mkdir ./tmp");
74 perror(ebuf);
81 sprintf(ebuf, "Can't mkdir %s %d",
83 perror(ebuf);
91 sprintf(ebuf, "Can't symlink %s ",
93 perror(ebuf);
102 sprintf(ebuf, "Can't open %s", pathdat[i].name);
103 perror(ebuf);
124 sprintf(ebuf, "Ca
[all...]
H A Dtools64.c32 extern char ebuf[ERR_BUF_SIZ];
72 sprintf(ebuf, "Can't mkdir ./tmp");
73 perror(ebuf);
80 sprintf(ebuf, "Can't mkdir %s %d",
82 perror(ebuf);
90 sprintf(ebuf, "Can't symlink %s ",
92 perror(ebuf);
101 sprintf(ebuf, "Can't open %s", pathdat[i].name);
102 perror(ebuf);
123 sprintf(ebuf, "Ca
[all...]
/external/opencv/cv/src/
H A Dcvstereogc.cpp669 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, nedge
[all...]

Completed in 4968 milliseconds

123