Home
last modified time | relevance | path

Searched refs:hex_errno (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Modules/
D_posixsubprocess.c453 char hex_errno[sizeof(saved_errno)*2+1]; in child_exec() local
592 cur = hex_errno + sizeof(hex_errno); in child_exec()
593 while (saved_errno != 0 && cur != hex_errno) { in child_exec()
597 _Py_write_noraise(errpipe_write, cur, hex_errno + sizeof(hex_errno) - cur); in child_exec()
/external/python/cpython3/Lib/
Dsubprocess.py1794 exception_name, hex_errno, err_msg = (
1802 hex_errno = b'0'
1808 if issubclass(child_exception_type, OSError) and hex_errno:
1809 errno_num = int(hex_errno, 16)