Lines Matching refs:noerror
258 int noerror; /* TRUE if no error yet */ in locklkfile() local
267 noerror = TRUE; in locklkfile()
270 while (noerror && !locked) { in locklkfile()
275 if (sleep(2)) noerror = FALSE; in locklkfile()
276 } else noerror = FALSE; in locklkfile()
343 int noerror; /* TRUE if all is well */ in readlocks() local
348 noerror = TRUE; in readlocks()
359 noerror = FALSE; in readlocks()
362 if (!noerror) free(alloc); in readlocks()
364 } else noerror = FALSE; /* malloc() failed */ in readlocks()
366 } else if (lockcount < 0) noerror = FALSE; in readlocks()
369 if (noerror) in readlocks()
371 return (noerror); in readlocks()
398 int noerror; /* TRUE if all's well */ in getlocks() local
402 noerror = TRUE; in getlocks()
411 if (!readlocks()) noerror = FALSE; in getlocks()
414 if (!noerror) (void) freelkfile(); in getlocks()
416 } else noerror = FALSE; /* Lock failed */ in getlocks()
419 if (!noerror) in getlocks()
422 } else noerror = FALSE; /* Open failed */ in getlocks()
425 return (noerror); in getlocks()