Lines Matching refs:PUTS
29 #define PUTS(fd, str) _Py_write_noraise(fd, str, strlen(str)) macro
342 PUTS(fd, "Fatal Python error: "); in faulthandler_fatal_error()
343 PUTS(fd, handler->name); in faulthandler_fatal_error()
344 PUTS(fd, "\n\n"); in faulthandler_fatal_error()
392 PUTS(fd, "Windows fatal exception: "); in faulthandler_exc_handler()
396 case EXCEPTION_ACCESS_VIOLATION: PUTS(fd, "access violation"); break; in faulthandler_exc_handler()
397 case EXCEPTION_FLT_DIVIDE_BY_ZERO: PUTS(fd, "float divide by zero"); break; in faulthandler_exc_handler()
398 case EXCEPTION_FLT_OVERFLOW: PUTS(fd, "float overflow"); break; in faulthandler_exc_handler()
399 case EXCEPTION_INT_DIVIDE_BY_ZERO: PUTS(fd, "int divide by zero"); break; in faulthandler_exc_handler()
400 case EXCEPTION_INT_OVERFLOW: PUTS(fd, "integer overflow"); break; in faulthandler_exc_handler()
401 case EXCEPTION_IN_PAGE_ERROR: PUTS(fd, "page error"); break; in faulthandler_exc_handler()
402 case EXCEPTION_STACK_OVERFLOW: PUTS(fd, "stack overflow"); break; in faulthandler_exc_handler()
404 PUTS(fd, "code 0x"); in faulthandler_exc_handler()
407 PUTS(fd, "\n\n"); in faulthandler_exc_handler()