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

  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
httpread.c 526 int new_alloc_nbytes; local
530 new_alloc_nbytes = h->body_alloc_nbytes +
537 new_alloc_nbytes < (h->content_length + 1))
538 new_alloc_nbytes = h->content_length + 1;
539 if ((new_body = os_realloc(h->body, new_alloc_nbytes))
544 h->body_alloc_nbytes = new_alloc_nbytes;
  /external/wpa_supplicant_8/src/wps/
httpread.c 520 int new_alloc_nbytes; local
524 new_alloc_nbytes = h->body_alloc_nbytes +
531 new_alloc_nbytes < (h->content_length + 1))
532 new_alloc_nbytes = h->content_length + 1;
533 if ((new_body = os_realloc(h->body, new_alloc_nbytes))
538 h->body_alloc_nbytes = new_alloc_nbytes;

Completed in 23 milliseconds