Searched defs:buflen (Results 1 - 25 of 287) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/hostapd/src/ap/
H A Dp2p_hostapd.h15 char *buf, size_t buflen);
26 char *buf, size_t buflen)
24 hostapd_p2p_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, char *buf, size_t buflen) argument
H A Dieee802_11.h27 int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen);
29 char *buf, size_t buflen);
32 size_t buflen)
39 char *buf, size_t buflen)
31 ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen) argument
37 ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, char *buf, size_t buflen) argument
H A Dp2p_hostapd.c24 char *buf, size_t buflen)
29 return p2p_ie_text(sta->p2p_ie, buf, buf + buflen);
23 hostapd_p2p_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, char *buf, size_t buflen) argument
H A Dwps_hostapd.h26 char *buf, size_t buflen);
74 char *buf, size_t buflen)
72 hostapd_wps_get_mib_sta(struct hostapd_data *hapd, const u8 *addr, char *buf, size_t buflen) argument
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dip_addr.c15 size_t buflen)
17 if (buflen == 0 || addr == NULL)
21 os_strlcpy(buf, inet_ntoa(addr->u.v4), buflen);
27 if (inet_ntop(AF_INET6, &addr->u.v6, buf, buflen) == NULL)
14 hostapd_ip_txt(const struct hostapd_ip_addr *addr, char *buf, size_t buflen) argument
/external/wpa_supplicant_8/src/ap/
H A Dp2p_hostapd.h15 char *buf, size_t buflen);
26 char *buf, size_t buflen)
24 hostapd_p2p_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, char *buf, size_t buflen) argument
H A Dieee802_11.h27 int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen);
29 char *buf, size_t buflen);
32 size_t buflen)
39 char *buf, size_t buflen)
31 ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen) argument
37 ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, char *buf, size_t buflen) argument
H A Dp2p_hostapd.c24 char *buf, size_t buflen)
29 return p2p_ie_text(sta->p2p_ie, buf, buf + buflen);
23 hostapd_p2p_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, char *buf, size_t buflen) argument
H A Dwps_hostapd.h26 char *buf, size_t buflen);
74 char *buf, size_t buflen)
72 hostapd_wps_get_mib_sta(struct hostapd_data *hapd, const u8 *addr, char *buf, size_t buflen) argument
/external/wpa_supplicant_8/src/utils/
H A Dip_addr.c15 size_t buflen)
17 if (buflen == 0 || addr == NULL)
21 os_strlcpy(buf, inet_ntoa(addr->u.v4), buflen);
27 if (inet_ntop(AF_INET6, &addr->u.v6, buf, buflen) == NULL)
14 hostapd_ip_txt(const struct hostapd_ip_addr *addr, char *buf, size_t buflen) argument
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dp2p_hostapd.h15 char *buf, size_t buflen);
26 char *buf, size_t buflen)
24 hostapd_p2p_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, char *buf, size_t buflen) argument
H A Dieee802_11.h27 int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen);
29 char *buf, size_t buflen);
32 size_t buflen)
39 char *buf, size_t buflen)
31 ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen) argument
37 ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, char *buf, size_t buflen) argument
H A Dp2p_hostapd.c24 char *buf, size_t buflen)
29 return p2p_ie_text(sta->p2p_ie, buf, buf + buflen);
23 hostapd_p2p_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, char *buf, size_t buflen) argument
H A Dwps_hostapd.h26 char *buf, size_t buflen);
74 char *buf, size_t buflen)
72 hostapd_wps_get_mib_sta(struct hostapd_data *hapd, const u8 *addr, char *buf, size_t buflen) argument
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dip_addr.c15 size_t buflen)
17 if (buflen == 0 || addr == NULL)
21 os_strlcpy(buf, inet_ntoa(addr->u.v4), buflen);
27 if (inet_ntop(AF_INET6, &addr->u.v6, buf, buflen) == NULL)
14 hostapd_ip_txt(const struct hostapd_ip_addr *addr, char *buf, size_t buflen) argument
/external/android-clat/
H A Dring.c67 size_t buflen = TP_BLOCK_SIZE * ring->numblocks; local
68 ring->base = mmap(NULL, buflen, PROT_READ|PROT_WRITE, MAP_SHARED|MAP_LOCKED|MAP_POPULATE,
71 logmsg(ANDROID_LOG_FATAL, "mmap %lu failed: %s", buflen, strerror(errno));
81 total_frames, buflen, ring->base);
/external/boringssl/src/crypto/ecdh/
H A Decdh.c86 size_t buflen; local
120 buflen = (EC_GROUP_get_degree(group) + 7) / 8;
121 buf = OPENSSL_malloc(buflen);
127 if (!BN_bn2bin_padded(buf, buflen, x)) {
133 if (KDF(buf, buflen, out, &outlen) == NULL) {
140 if (outlen > buflen) {
141 outlen = buflen;
/external/elfutils/src/lib/
H A Dmd5.h53 md5_uint32 buflen; member in struct:md5_ctx
H A Dsha1.h54 sha1_uint32 buflen; member in struct:sha1_ctx
/external/ipsec-tools/src/racoon/
H A Dprivsep.h49 size_t buflen[PRIVSEP_NBUF_MAX]; member in struct:admin_com_bufs
/external/jemalloc/test/src/
H A Dtimer.c43 timer_ratio(timedelta_t *a, timedelta_t *b, char *buf, size_t buflen) argument
53 n = malloc_snprintf(&buf[i], buflen-i, "%"PRIu64, t0 / t1);
55 if (i >= buflen)
62 n = malloc_snprintf(&buf[i], buflen-i, ".");
66 while (i < buflen-1) {
67 uint64_t round = (i+1 == buflen-1 && ((t0 * mult * 10 / t1) % 10
69 n = malloc_snprintf(&buf[i], buflen-i,
/external/libvncserver/common/
H A Dmd5.h90 md5_uint32 buflen; member in struct:md5_ctx
/external/linux-tools-perf/src/tools/perf/util/
H A Dtarget.c108 char *buf, size_t buflen)
113 BUG_ON(buflen == 0);
116 const char *err = strerror_r(errnum, buf, buflen);
120 memcpy(buf, err, min(buflen - 1, len));
121 *(buf + min(buflen - 1, len)) = '\0';
137 snprintf(buf, buflen, "%s", msg);
142 snprintf(buf, buflen, msg, target->uid_str);
107 perf_target__strerror(struct perf_target *target, int errnum, char *buf, size_t buflen) argument
/external/tcpdump/
H A Dcpack.c83 cpack_init(struct cpack_state *cs, u_int8_t *buf, size_t buflen) argument
88 cs->c_len = buflen;
/external/wpa_supplicant_8/hostapd/src/eap_peer/
H A Deap_methods.h27 size_t eap_get_names(char *buf, size_t buflen);
44 static inline size_t eap_get_names(char *buf, size_t buflen) argument

Completed in 502 milliseconds

1234567891011>>