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.py482 except IncompleteRead:
567 raise IncompleteRead(b'')
596 except IncompleteRead:
597 raise IncompleteRead(b''.join(value))
620 except IncompleteRead:
621 raise IncompleteRead(bytes(b[0:total_bytes]))
632 raise IncompleteRead(data, amt-len(data))
640 raise IncompleteRead(bytes(b[:n]), amt-n)
695 raise IncompleteRead(b"")
703 except IncompleteRead:
[all …]
/third_party/boost/libs/fiber/doc/
Dnonblocking.qbk73 throws `IncompleteRead`:
/third_party/python/Lib/test/
Dtest_httplib.py888 except client.IncompleteRead as i:
931 except client.IncompleteRead as i:
998 except client.IncompleteRead as i:
/third_party/python/Doc/library/
Dhttp.client.rst183 .. exception:: IncompleteRead