Lines Matching defs:noerr

208 	int	noerr;
211 noerr = (unlink(tempname) == 0);
215 return (noerr);
242 int noerr; /* FLAG, TRUE if all's well */
251 noerr = (link(tempname, dgrpname) == 0) ? TRUE : FALSE;
254 if (noerr)
255 noerr = rmnewdgrptab(tempname);
258 noerr = FALSE; /* unlink() failed */
265 noerr = FALSE; /* dgrptabpath() failed */
269 return (noerr);
295 int noerr; /* FLAG, TRUE if no error */
303 noerr = TRUE;
322 !noerr) {
335 noerr = FALSE;
339 noerr = FALSE;
345 noerr = FALSE; /* fcntl() failed hard */
347 } /* End while (fcntl() && !noerr) */
350 if (!noerr) _enddgrptab();
353 noerr = FALSE; /* _opendgrptab() failed */
356 return (noerr);
375 int noerr; /* FLAG, TRUE if all's well */
384 noerr = (fcntl(fileno(oam_dgroup), F_SETLK, &lockinfo) != -1);
388 return (noerr);
422 int noerr; /* TRUE if all's well */
426 noerr = TRUE;
445 while (*pp && noerr) {
456 noerr = FALSE;
459 } else noerr = FALSE;
463 } else noerr = FALSE; /* malloc() failed */
469 if (!noerr) {
474 } /* if (noerr) */
476 } else noerr = FALSE; /* if (malloc(dgrptabent space)) */
604 int noerr; /* FLAG, TRUE if all's well */
626 noerr = TRUE;
669 while (((p = _getdgrptabent()) != NULL) && noerr) {
678 noerr = _putdgrptabrec(fd, p) != EOF;
679 else noerr = _putdgrptabrec(fd, ent) != EOF;
684 if (noerr) {
686 noerr = mknewdgrptab(path);
706 noerr = (_putdgrptabrec(oam_dgroup, new) != EOF);
707 } else noerr = FALSE;
712 return (noerr); /* Return with success indicator */
737 int noerr; /* FLAG, TRUE if all's well */
739 noerr = TRUE;
745 while (((p = _getdgrptabent()) != NULL) && noerr) {
747 noerr = _putdgrptabrec(fd, p) != EOF;
750 if (noerr) {
752 noerr = mknewdgrptab(path);
757 } else noerr = FALSE;
759 } else noerr = FALSE;
761 return (noerr);
803 int noerr; /* TRUE if all's well */
807 noerr = TRUE;
866 } else noerr = FALSE;
874 while (((p = _getdgrptabent()) != NULL) && noerr) {
876 noerr = _putdgrptabrec(fd, p) != EOF;
877 else noerr = _putdgrptabrec(fd, ent) != EOF;
880 if (noerr) {
882 noerr = mknewdgrptab(path);
887 } else noerr = FALSE; /* if (opennewdgrptab()) */
895 if (noerr && (pnf != nflst)) {
898 noerr = FALSE;
902 if (!noerr) *notfounds = NULL;
904 } else noerr = FALSE;
909 } else noerr = FALSE; /* _getdgrprec() failed */
913 return (noerr);