HomeSort by relevance Sort by last modified time
    Searched refs:buflen (Results 276 - 300 of 368) sorted by null

<<1112131415

  /external/mdnsresponder/mDNSShared/
DebugServices.h     [all...]
  /external/openssh/openbsd-compat/
bsd-snprintf.c 169 #define DOPR_OUTCH(buf, pos, buflen, thechar) \
175 if (pos < buflen) \
  /external/srec/srec/crec/
word_lattice.c 150 int sprint_bword_token_backtrace(char* buf, int buflen, srec* rec, wtokenID wtoken_index)
162 ASSERT(pbuf + strlen(p) + 1 < buf + buflen);
  /external/mksh/src/
exec.c     [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_madwifi.c 771 wpa_printf(MSG_DEBUG, "%s buflen = %lu", __func__,
1018 size_t buflen; local
1026 buflen = sizeof(struct iw_range) + 500;
1027 range = os_zalloc(buflen);
1034 iwr.u.data.length = buflen;
    [all...]
driver_ndis.c 455 size_t buflen = sizeof(*o) + len; local
460 o = os_zalloc(buflen);
468 o, sizeof(NDISUIO_QUERY_OID), o, buflen, &written,
530 size_t buflen, reallen; local
537 buflen = sizeof(*o) + len;
538 reallen = buflen - sizeof(o->Data);
539 o = os_zalloc(buflen);
    [all...]
driver_atheros.c 642 wpa_printf(MSG_DEBUG, "%s buflen = %lu", __func__,
998 wpa_printf(MSG_DEBUG, "%s buflen = %lu frametype=%u", __func__,
1510 size_t buflen; local
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius.c 1417 size_t buflen; local
    [all...]
radius_server.c     [all...]
  /system/core/adb/
adb.c 762 static int format_listeners(char* buf, size_t buflen)
770 int len = format_listener(l, buf, buflen);
775 buflen -= len;
776 if (buflen <= 0)
    [all...]
commandline.c 374 static void format_host_command(char* buffer, size_t buflen, const char* command, transport_type ttype, const char* serial)
377 snprintf(buffer, buflen, "host-serial:%s:%s", serial, command);
385 snprintf(buffer, buflen, "%s:%s", prefix, command);
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
eap_tls_common.c 767 * @buflen: Maximum buffer length
772 char *buf, size_t buflen, int verbose)
779 ret = os_snprintf(buf + len, buflen - len,
781 if (ret < 0 || (size_t) ret >= buflen - len)
    [all...]
eap_fast.c     [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config_file.c 24 static int newline_terminated(const char *buf, size_t buflen)
29 if (len == buflen - 1 && buf[buflen - 1] != '\r' &&
  /external/kernel-headers/original/linux/
tty.h 287 int buflen);
cdrom.h 284 unsigned int buflen; member in struct:cdrom_generic_command
915 unsigned int buflen; member in struct:packet_command
    [all...]
  /external/wpa_supplicant_8/src/ap/
wpa_auth_ft.c 790 size_t buflen, ptk_len; local
892 buflen = 2 + sizeof(struct rsn_mdie) + 2 + sizeof(struct rsn_ftie) +
894 *resp_ies = os_zalloc(buflen);
900 end = *resp_ies + buflen;
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps.h 767 char *buf, size_t buflen);
  /hardware/ti/wlan/mac80211/wpa_supplicant_lib/
driver_mac80211.c 1178 size_t buflen; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
unistd.h 215 extern char *__getwd_chk (char *__buf, size_t buflen)
288 __nonnull ((2)) __warnattr ("ttyname_r called with bigger buflen than "
314 __nonnull ((1)) __warnattr ("getlogin_r called with bigger buflen than "
341 __nonnull ((1)) __warnattr ("gethostname called with bigger buflen than "
370 "buflen than size of destination "
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
unistd.h 215 extern char *__getwd_chk (char *__buf, size_t buflen)
288 __nonnull ((2)) __warnattr ("ttyname_r called with bigger buflen than "
314 __nonnull ((1)) __warnattr ("getlogin_r called with bigger buflen than "
341 __nonnull ((1)) __warnattr ("gethostname called with bigger buflen than "
370 "buflen than size of destination "
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
unistd.h 215 extern char *__getwd_chk (char *__buf, size_t buflen)
288 __nonnull ((2)) __warnattr ("ttyname_r called with bigger buflen than "
314 __nonnull ((1)) __warnattr ("getlogin_r called with bigger buflen than "
341 __nonnull ((1)) __warnattr ("gethostname called with bigger buflen than "
370 "buflen than size of destination "
  /external/bison/lib/
getopt.c 545 size_t buflen = 0;
547 FILE *fp = open_memstream (&buf, &buflen);
541 size_t buflen = 0; local
    [all...]
  /external/elfutils/src/
objdump.c 695 disasm_output (char *buf, size_t buflen, void *arg)
704 (int) (8 - cnt) * 3 + 1, "", (int) buflen, buf);
  /external/icu4c/test/cintltst/
cloctst.c 568 static int32_t UCharsToEscapedAscii(const UChar* utext, int32_t len, char* resultChars, int32_t buflen) {
589 const int32_t limit = len<0 ? buflen : len; /* buflen is long enough to hit the buffer limit */
590 const int32_t escapeLimit1 = buflen-2;
591 const int32_t escapeLimit2 = buflen-6;
594 if(utext==NULL || resultChars==NULL || buflen<0) {
598 for(i=0;i<limit && resultLen<buflen;++i) {
633 if(resultLen<buflen) {
    [all...]

Completed in 517 milliseconds

<<1112131415