Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_posixsubprocess.c416 char hex_errno[sizeof(saved_errno)*2+1]; in child_exec() local
536 cur = hex_errno + sizeof(hex_errno); in child_exec()
537 while (saved_errno != 0 && cur != hex_errno) { in child_exec()
541 _Py_write_noraise(errpipe_write, cur, hex_errno + sizeof(hex_errno) - cur); in child_exec()
/external/python/cpython3/Lib/
Dsubprocess.py1495 exception_name, hex_errno, err_msg = (
1503 hex_errno = b'0'
1509 if issubclass(child_exception_type, OSError) and hex_errno:
1510 errno_num = int(hex_errno, 16)