OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pcap_assert
(Results
1 - 2
of
2
) sorted by null
/external/libpcap/
pcap-dos.h
216
#define
PCAP_ASSERT
(x) ((void)0)
219
void
pcap_assert
(const char *what, const char *file, unsigned line);
221
#define
PCAP_ASSERT
(x) do { \
223
pcap_assert
(#x, __FILE__, __LINE__); \
pcap-dos.c
233
PCAP_ASSERT
(dev->copy_rx_buf || dev->peek_rx_buf);
241
PCAP_ASSERT
(dev->release_rx_buf);
457
PCAP_ASSERT
(dev->probe);
522
PCAP_ASSERT
(dev->probe);
527
PCAP_ASSERT
(dev->close); /* set by probe routine */
571
*
pcap_assert
() is mainly used for debugging
573
void
pcap_assert
(const char *what, const char *file, unsigned line)
function
605
PCAP_ASSERT
(dev->name);
612
PCAP_ASSERT
(dev->probe);
634
PCAP_ASSERT
(dev->open)
[
all
...]
Completed in 71 milliseconds