Searched refs:_Py_write_noraise (Results 1 - 7 of 7) sorted by relevance

/external/python/cpython3/Modules/
H A D_posixsubprocess.c518 Use _Py_write_noraise() to retry write() if it is interrupted by a
522 _Py_write_noraise(errpipe_write, "OSError:", 8);
528 _Py_write_noraise(errpipe_write, cur, hex_errno + sizeof(hex_errno) - cur);
529 _Py_write_noraise(errpipe_write, ":", 1);
532 _Py_write_noraise(errpipe_write, "noexec", 6);
537 _Py_write_noraise(errpipe_write, "SubprocessError:0:", 18);
538 _Py_write_noraise(errpipe_write, err_msg, strlen(err_msg));
H A Dfaulthandler.c31 #define PUTS(fd, str) _Py_write_noraise(fd, str, strlen(str))
564 _Py_write_noraise(thread.fd, thread.header, (int)thread.header_len);
H A Dsignalmodule.c274 /* _Py_write_noraise() retries write() if write() is interrupted by
276 rc = _Py_write_noraise(fd, &byte, 1);
H A D_tracemalloc.c1472 #define PUTS(fd, str) _Py_write_noraise(fd, str, (int)strlen(str))
/external/python/cpython3/Include/
H A Dfileutils.h86 PyAPI_FUNC(Py_ssize_t) _Py_write_noraise(
/external/python/cpython3/Python/
H A Dtraceback.c16 #define PUTS(fd, str) _Py_write_noraise(fd, str, (int)strlen(str))
537 _Py_write_noraise(fd, ptr, end - ptr);
565 _Py_write_noraise(fd, ptr, end - ptr);
618 _Py_write_noraise(fd, &c, 1);
H A Dfileutils.c1330 _Py_write_noraise(int fd, const void *buf, size_t count) function

Completed in 262 milliseconds