Searched refs:_Py_write_noraise (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Modules/ |
D | _posixsubprocess.c | 535 _Py_write_noraise(errpipe_write, "OSError:", 8); in child_exec() 541 _Py_write_noraise(errpipe_write, cur, hex_errno + sizeof(hex_errno) - cur); in child_exec() 542 _Py_write_noraise(errpipe_write, ":", 1); in child_exec() 545 _Py_write_noraise(errpipe_write, "noexec", 6); in child_exec() 550 _Py_write_noraise(errpipe_write, "SubprocessError:0:", 18); in child_exec() 551 _Py_write_noraise(errpipe_write, err_msg, strlen(err_msg)); in child_exec()
|
D | faulthandler.c | 29 #define PUTS(fd, str) _Py_write_noraise(fd, str, strlen(str)) 577 _Py_write_noraise(thread.fd, thread.header, (int)thread.header_len); in faulthandler_thread()
|
D | signalmodule.c | 284 rc = _Py_write_noraise(fd, &byte, 1); in trip_signal()
|
D | _tracemalloc.c | 1473 #define PUTS(fd, str) _Py_write_noraise(fd, str, (int)strlen(str))
|
/external/python/cpython3/Python/ |
D | traceback.c | 17 #define PUTS(fd, str) _Py_write_noraise(fd, str, (int)strlen(str)) 638 _Py_write_noraise(fd, ptr, end - ptr); in _Py_DumpDecimal() 666 _Py_write_noraise(fd, ptr, end - ptr); in _Py_DumpHexadecimal() 719 _Py_write_noraise(fd, &c, 1); in _Py_DumpASCII()
|
D | fileutils.c | 1532 _Py_write_noraise(int fd, const void *buf, size_t count) in _Py_write_noraise() function
|
/external/python/cpython3/Include/ |
D | fileutils.h | 140 PyAPI_FUNC(Py_ssize_t) _Py_write_noraise(
|