Home
last modified time | relevance | path

Searched refs:BufferTooShort (Results 1 – 15 of 15) sorted by relevance

/external/rust/crates/quiche/src/h3/qpack/
Ddecoder.rs243 .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()
Dmod.rs46 BufferTooShort, enumerator
75 Error::BufferTooShort in from()
/external/python/cpython3/Lib/multiprocessing/
Dcontext.py17 class BufferTooShort(ProcessError): class
33 BufferTooShort = BufferTooShort variable in BaseContext
Dconnection.py25 from . import AuthenticationError, BufferTooShort
244 raise BufferTooShort(result.getvalue())
/external/python/cpython2/Modules/_multiprocessing/
Dmultiprocessing.c20 PyObject *ProcessError, *BufferTooShort; variable
267 BufferTooShort = PyObject_GetAttrString(temp, "BufferTooShort"); in init_multiprocessing()
Dmultiprocessing.h136 extern PyObject *BufferTooShort;
Dconnection.h234 result = PyObject_CallFunction(BufferTooShort, in connection_recvbytes_into()
239 PyErr_SetObject(BufferTooShort, result); in connection_recvbytes_into()
/external/rust/crates/quiche/src/
Ddgram.rs68 return Err(Error::BufferTooShort); in peek_front_bytes()
Dlib.rs332 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__.py74 class BufferTooShort(ProcessError): class
/external/rust/crates/quiche/src/h3/
Dmod.rs297 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/
Dmultiprocessing.rst490 .. 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/
Dmultiprocessing.rst663 .. 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/
Dtest_multiprocessing.py1655 except multiprocessing.BufferTooShort, e:
/external/python/cpython3/Lib/test/
D_test_multiprocessing.py3063 except multiprocessing.BufferTooShort as e: