HomeSort by relevance Sort by last modified time
    Searched defs:ebuf (Results 1 - 4 of 4) sorted by null

  /external/tcpdump/
tcpdump.c 463 char ebuf[PCAP_ERRBUF_SIZE]; local
495 if (abort_on_misalignment(ebuf, sizeof(ebuf)) < 0)
496 error("%s", ebuf);
541 if (pcap_findalldevs(&devpointer, ebuf) < 0)
542 error("%s", ebuf);
597 if (pcap_findalldevs(&devpointer, ebuf) < 0)
598 error("%s", ebuf);
851 pd = pcap_open_offline(RFileName, ebuf);
853 error("%s", ebuf);
    [all...]
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 1194 static char ebuf[512]; local
1205 n = snprintf(ebuf + len, sizeof(ebuf) - len,
1209 if (n < 0 || n >= sizeof(ebuf) - len)
1212 if (sizeof(ebuf) < len)
1216 return ebuf;
    [all...]
  /external/qemu/
qemu-char-android.c 308 char ebuf[15] = "Escape-Char"; local
313 snprintf(ebuf, sizeof(ebuf), "C-%c", term_escape_char - 1 + 'a');
323 chr->chr_write(chr, (uint8_t *)ebuf, strlen(ebuf));
    [all...]
qemu-char.c 300 char ebuf[15] = "Escape-Char"; local
305 snprintf(ebuf, sizeof(ebuf), "C-%c", term_escape_char - 1 + 'a');
315 chr->chr_write(chr, (uint8_t *)ebuf, strlen(ebuf));
    [all...]

Completed in 805 milliseconds