Home
last modified time | relevance | path

Searched refs:hp_allocated (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dsocketmodule.c3362 struct hostent hp_allocated; local
3382 result = gethostbyname_r(name, &hp_allocated, buf, buf_len,
3385 h = gethostbyname_r(name, &hp_allocated, buf, buf_len, &errnop);
3388 result = gethostbyname_r(name, &hp_allocated, &data);
3389 h = (result != 0) ? NULL : &hp_allocated;
3434 struct hostent hp_allocated; local
3480 &hp_allocated, buf, buf_len,
3484 &hp_allocated, buf, buf_len, &errnop);
3487 result = gethostbyaddr_r(ap, al, af, &hp_allocated, &data);
3488 h = (result != 0) ? NULL : &hp_allocated;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dsocketmodule.c3444 struct hostent hp_allocated; local
3464 result = gethostbyname_r(name, &hp_allocated, buf, buf_len,
3467 h = gethostbyname_r(name, &hp_allocated, buf, buf_len, &errnop);
3470 result = gethostbyname_r(name, &hp_allocated, &data);
3471 h = (result != 0) ? NULL : &hp_allocated;
3516 struct hostent hp_allocated; local
3562 &hp_allocated, buf, buf_len,
3566 &hp_allocated, buf, buf_len, &errnop);
3569 result = gethostbyaddr_r(ap, al, af, &hp_allocated, &data);
3570 h = (result != 0) ? NULL : &hp_allocated;