Home
last modified time | relevance | path

Searched refs:IncompleteRead (Results 1 – 5 of 5) sorted by relevance

/third_party/boost/libs/fiber/examples/
Dadapt_nonblocking.cpp133 class IncompleteRead : public std::runtime_error { class
135 IncompleteRead( std::string const& what, std::string const& partial, int ec) : in IncompleteRead() function in IncompleteRead
170 throw IncompleteRead( msg.str(), data, ec); in read()
200 } catch ( IncompleteRead const& e) { in main()
/third_party/python/Lib/http/
Dclient.py476 except IncompleteRead:
561 raise IncompleteRead(b'')
582 except IncompleteRead:
583 raise IncompleteRead(b''.join(value))
606 except IncompleteRead:
607 raise IncompleteRead(bytes(b[0:total_bytes]))
618 raise IncompleteRead(data, amt-len(data))
626 raise IncompleteRead(bytes(b[:n]), amt-n)
681 raise IncompleteRead(b"")
689 except IncompleteRead:
[all …]
/third_party/boost/libs/fiber/doc/
Dnonblocking.qbk73 throws `IncompleteRead`:
/third_party/python/Lib/test/
Dtest_httplib.py857 except client.IncompleteRead as i:
900 except client.IncompleteRead as i:
967 except client.IncompleteRead as i:
/third_party/python/Doc/library/
Dhttp.client.rst178 .. exception:: IncompleteRead