Lines Matching defs:noerror
259 int noerror; /* TRUE if no error yet */
268 noerror = TRUE;
271 while (noerror && !locked) {
276 if (sleep(2)) noerror = FALSE;
277 } else noerror = FALSE;
344 int noerror; /* TRUE if all is well */
349 noerror = TRUE;
360 noerror = FALSE;
363 if (!noerror) free(alloc);
365 } else noerror = FALSE; /* malloc() failed */
367 } else if (lockcount < 0) noerror = FALSE;
370 if (noerror)
372 return (noerror);
399 int noerror; /* TRUE if all's well */
403 noerror = TRUE;
412 if (!readlocks()) noerror = FALSE;
415 if (!noerror) (void) freelkfile();
417 } else noerror = FALSE; /* Lock failed */
420 if (!noerror)
423 } else noerror = FALSE; /* Open failed */
426 return (noerror);