Lines Matching defs:err
56 int err = errno;
90 if (err == EINTR) {
125 int err = 0;
136 err = GetLastError();
139 if (n_read == (DWORD)-1 && (err = GetLastError()) == ERROR_OPERATION_ABORTED) {
144 err = GetLastError();
145 if (err != ERROR_OPERATION_ABORTED)
147 err = 0;
228 if (err) {
230 PyErr_SetFromWindowsErr(err);
319 int err = my_fgets(tstate, p + n, (int)incr, sys_stdin);
320 if (err == 1) {
324 } else if (err != 0) {