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

  /external/blktrace/btt/
list.h 149 static inline int list_len(struct list_head *head_p) function
  /external/wpa_supplicant_8/src/tls/
tlsv1_client_read.c 218 size_t left, len, list_len, cert_len, idx; local
294 list_len = WPA_GET_BE24(pos);
297 if ((size_t) (end - pos) != list_len) {
300 (unsigned long) list_len,
tlsv1_server_read.c 281 size_t left, len, list_len, cert_len, idx; local
362 list_len = WPA_GET_BE24(pos);
365 if ((size_t) (end - pos) != list_len) {
368 (unsigned long) list_len,
  /external/bluetooth/bluedroid/stack/sdp/
sdp_discovery.c 384 UINT32 list_len; local
394 for (i = 0; i < p_ccb->list_len; i++)
404 list_len = p_ccb->list_len;
410 p = sdpu_get_len_from_type (p, type, &list_len);
412 if(list_len && list_len < cpy_len )
414 cpy_len = list_len;
417 SDP_TRACE_WARNING4("list_len :%d cpy_len:%d raw_size:%d raw_used:%d",
418 list_len, cpy_len, p_ccb->p_db->raw_size, p_ccb->p_db->raw_used)
    [all...]
sdp_utils.c 487 UINT32 list_len, attr_len; local
503 BE_STREAM_TO_UINT8 (list_len, p);
507 BE_STREAM_TO_UINT16 (list_len, p);
511 BE_STREAM_TO_UINT32 (list_len, p);
518 if (list_len > param_len)
521 p_end_list = p + list_len;
sdpint.h 186 UINT16 list_len; /* length of the response in the GKI buffer */ member in struct:__anon3516
  /external/wpa_supplicant_8/src/eap_common/
eap_sim_common.c 501 size_t alen, plen, i, list_len; local
643 list_len = apos[0] * 256 + apos[1];
645 if (list_len < 2 || list_len > alen - 2) {
647 "AT_VERSION_LIST (list_len=%lu "
649 (unsigned long) list_len,
654 attr->version_list_len = list_len;
  /system/core/sh/
var.c 514 static int list_len; local
518 list_len = 32;
519 list = ckmalloc(list_len * sizeof *list);
528 if (count >= list_len) {
530 (list_len << 1) * sizeof *list);
531 list_len <<= 1;

Completed in 357 milliseconds