Searched refs:readlen (Results 1 - 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Dsocketmodule.c2538 ssize_t readlen; local
2567 readlen = sock_recv_guts(s, buf.buf, recvlen, flags);
2568 if (readlen < 0) {
2575 special here in the case that readlen < recvlen. */
2576 return PyInt_FromSsize_t(readlen);
2720 ssize_t readlen; local
2746 readlen = sock_recvfrom_guts(s, buf.buf, recvlen, flags, &addr);
2747 if (readlen < 0) {
2754 not do anything special here in the case that readlen < recvlen. */
2755 return Py_BuildValue("lN", readlen, add
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dsocketmodule.c2474 ssize_t readlen; local
2503 readlen = sock_recv_guts(s, buf.buf, recvlen, flags);
2504 if (readlen < 0) {
2511 special here in the case that readlen < recvlen. */
2512 return PyInt_FromSsize_t(readlen);
2654 ssize_t readlen; local
2677 readlen = sock_recvfrom_guts(s, buf.buf, recvlen, flags, &addr);
2678 if (readlen < 0) {
2685 not do anything special here in the case that readlen < recvlen. */
2686 return Py_BuildValue("lN", readlen, add
[all...]

Completed in 755 milliseconds