Searched refs:BufferTooShort (Results 1 – 15 of 15) sorted by relevance
/external/rust/crates/quiche/src/h3/qpack/ |
D | decoder.rs | 243 .ok_or(Error::BufferTooShort)?; in decode_int() 245 val = val.checked_add(inc).ok_or(Error::BufferTooShort)?; in decode_int() 254 Err(Error::BufferTooShort) in decode_int()
|
D | mod.rs | 46 BufferTooShort, enumerator 75 Error::BufferTooShort in from()
|
/external/python/cpython3/Lib/multiprocessing/ |
D | context.py | 17 class BufferTooShort(ProcessError): class 33 BufferTooShort = BufferTooShort variable in BaseContext
|
D | connection.py | 25 from . import AuthenticationError, BufferTooShort 244 raise BufferTooShort(result.getvalue())
|
/external/python/cpython2/Modules/_multiprocessing/ |
D | multiprocessing.c | 20 PyObject *ProcessError, *BufferTooShort; variable 267 BufferTooShort = PyObject_GetAttrString(temp, "BufferTooShort"); in init_multiprocessing()
|
D | multiprocessing.h | 136 extern PyObject *BufferTooShort;
|
D | connection.h | 234 result = PyObject_CallFunction(BufferTooShort, in connection_recvbytes_into() 239 PyErr_SetObject(BufferTooShort, result); in connection_recvbytes_into()
|
/external/rust/crates/quiche/src/ |
D | dgram.rs | 68 return Err(Error::BufferTooShort); in peek_front_bytes()
|
D | lib.rs | 332 BufferTooShort = -2, enumerator 407 Error::BufferTooShort in from() 1940 return Err(Error::BufferTooShort); in send() 3081 return Err(Error::BufferTooShort); in dgram_recv() 3153 return Err(Error::BufferTooShort); in dgram_send() 6166 Err(Error::BufferTooShort) in invalid_initial_payload()
|
/external/python/cpython2/Lib/multiprocessing/ |
D | __init__.py | 74 class BufferTooShort(ProcessError): class
|
/external/rust/crates/quiche/src/h3/ |
D | mod.rs | 297 BufferTooShort, enumerator 351 Error::BufferTooShort => 0x999, in to_wire() 360 Error::BufferTooShort => -2, in to_c() 400 Error::BufferTooShort in from()
|
/external/python/cpython2/Doc/library/ |
D | multiprocessing.rst | 490 .. exception:: BufferTooShort 495 If ``e`` is an instance of :exc:`BufferTooShort` then ``e.args[0]`` will give 884 If the buffer is too short then a :exc:`BufferTooShort` exception is 2063 .. exception:: BufferTooShort
|
/external/python/cpython3/Doc/library/ |
D | multiprocessing.rst | 663 .. exception:: BufferTooShort 668 If ``e`` is an instance of :exc:`BufferTooShort` then ``e.args[0]`` will give 1156 If the buffer is too short then a :exc:`BufferTooShort` exception is
|
/external/python/cpython2/Lib/test/ |
D | test_multiprocessing.py | 1655 except multiprocessing.BufferTooShort, e:
|
/external/python/cpython3/Lib/test/ |
D | _test_multiprocessing.py | 3063 except multiprocessing.BufferTooShort as e:
|