Lines Matching refs:PUTS
30 #define PUTS(fd, str) _Py_write_noraise(fd, str, strlen(str)) macro
347 PUTS(fd, "Fatal Python error: "); in faulthandler_fatal_error()
348 PUTS(fd, handler->name); in faulthandler_fatal_error()
349 PUTS(fd, "\n\n"); in faulthandler_fatal_error()
399 PUTS(fd, "Windows fatal exception: "); in faulthandler_exc_handler()
403 case EXCEPTION_ACCESS_VIOLATION: PUTS(fd, "access violation"); break; in faulthandler_exc_handler()
404 case EXCEPTION_FLT_DIVIDE_BY_ZERO: PUTS(fd, "float divide by zero"); break; in faulthandler_exc_handler()
405 case EXCEPTION_FLT_OVERFLOW: PUTS(fd, "float overflow"); break; in faulthandler_exc_handler()
406 case EXCEPTION_INT_DIVIDE_BY_ZERO: PUTS(fd, "int divide by zero"); break; in faulthandler_exc_handler()
407 case EXCEPTION_INT_OVERFLOW: PUTS(fd, "integer overflow"); break; in faulthandler_exc_handler()
408 case EXCEPTION_IN_PAGE_ERROR: PUTS(fd, "page error"); break; in faulthandler_exc_handler()
409 case EXCEPTION_STACK_OVERFLOW: PUTS(fd, "stack overflow"); break; in faulthandler_exc_handler()
411 PUTS(fd, "code 0x"); in faulthandler_exc_handler()
414 PUTS(fd, "\n\n"); in faulthandler_exc_handler()