HomeSort by relevance Sort by last modified time
    Searched refs:_Py_write_noraise (Results 1 - 7 of 7) sorted by null

  /external/python/cpython3/Modules/
_posixsubprocess.c 531 Use _Py_write_noraise() to retry write() if it is interrupted by a
535 _Py_write_noraise(errpipe_write, "OSError:", 8);
541 _Py_write_noraise(errpipe_write, cur, hex_errno + sizeof(hex_errno) - cur);
542 _Py_write_noraise(errpipe_write, ":", 1);
545 _Py_write_noraise(errpipe_write, "noexec", 6);
550 _Py_write_noraise(errpipe_write, "SubprocessError:0:", 18);
551 _Py_write_noraise(errpipe_write, err_msg, strlen(err_msg));
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);
    [all...]
_tracemalloc.c     [all...]
signalmodule.c 282 /* _Py_write_noraise() retries write() if write() is interrupted by
284 rc = _Py_write_noraise(fd, &byte, 1);
    [all...]
  /external/python/cpython3/Include/
fileutils.h 140 PyAPI_FUNC(Py_ssize_t) _Py_write_noraise(
  /external/python/cpython3/Python/
traceback.c 17 #define PUTS(fd, str) _Py_write_noraise(fd, str, (int)strlen(str))
638 _Py_write_noraise(fd, ptr, end - ptr);
666 _Py_write_noraise(fd, ptr, end - ptr);
719 _Py_write_noraise(fd, &c, 1);
fileutils.c     [all...]

Completed in 4008 milliseconds