Lines Matching refs:result
555 int result;
562 result = fcntl(f, F_SETLK, &lockStruct);
563 if (result != -1)
585 int result;
592 result = fcntl(f, F_SETLK, &lockStruct);
593 if (result != -1)
730 char *result;
739 result = fgets(*lineBuf, LINEALLOCUNIT, fp);
741 if (result) {
742 int bufLen = strlen(result);
744 while (result[bufLen-1] != 0xa) {
759 result = fgets((newBuf)+bufLen,
762 if (!result) {
769 result = newBuf;
772 while (isspace(*result) && *result != '#' && *result)
773 result++;
774 if (*result == '#' || *result == (char)0) {
897 int result;
926 while ((result = readPair(lineBuf, nameBuf, valBuf,
946 result = OWconfigSetAttribute(classVal, nameVal,
948 if (result != OWCFG_OK) {
955 return(result);
973 if (result == OWCFG_SYNTAX1)
974 syntaxResult = result;
1267 int result = OWCFG_PKGNAME;
1283 result = OWCFG_OK;
1291 return(result);
1313 int result = OWCFG_OK;
1321 result = OWconfigSetAttribute(class, name,
1324 if (result != OWCFG_OK)
1328 return(result);
1703 int result = OWCFG_OK;
1706 result = writeOWconfig(writeFile);
1709 return(result);
1729 int result=OWCFG_OK;
1770 result = OWconfigInit(readFile1, readFile2, OWconfigFlags,
1772 if (result != OWCFG_OK) {
1781 return(result);
1813 int result, result1, result2;