Home | History | Annotate | Download | only in codesighs

Lines Matching refs:retval

188     int retval = 0;
197 retval = 1;
201 retval = -1;
204 return retval;
236 int retval = 0;
257 while(0 == retval && NULL != fgets(lineBuffer, sizeof(lineBuffer), inOptions->mInput))
289 retval = __LINE__;
290 ERROR_REPORT(retval, segClass, "Unable to determine segment class.");
293 if(0 == retval)
506 retval = __LINE__;
507 ERROR_REPORT(retval, module, "Unable to duplicate string.");
512 retval = __LINE__;
513 ERROR_REPORT(retval, inOptions->mProgramName, "Unable to allocate module memory.");
517 if(0 == retval)
534 retval = __LINE__;
535 ERROR_REPORT(retval, inOptions->mInputName, "Problem extracting values from file.");
539 if(0 == retval && 0 != ferror(inOptions->mInput))
541 retval = __LINE__;
542 ERROR_REPORT(retval, inOptions->mInputName, "Unable to read file.");
548 if(0 == retval)
597 return retval;
606 int retval = 0;
626 retval = __LINE__;
627 ERROR_REPORT(retval, "stdin/stdout", "Unable to strdup.");
633 for(loop = 1; loop < inArgc && 0 == retval; loop++)
638 for(switchLoop = 0; switchLoop < switchCount && 0 == retval; switchLoop++)
676 retval = __LINE__;
677 ERROR_REPORT(retval, inArgv[loop], "Unknown command line switch.");
682 retval = __LINE__;
683 ERROR_REPORT(retval, inArgv[loop], "Command line switch requires a value.");
702 retval = __LINE__;
703 ERROR_REPORT(retval, current->mValue, "Unable to open input file.");
710 retval = __LINE__;
711 ERROR_REPORT(retval, current->mValue, "Unable to strdup.");
727 retval = __LINE__;
728 ERROR_REPORT(retval, current->mValue, "Unable to open output file.");
735 retval = __LINE__;
736 ERROR_REPORT(retval, current->mValue, "Unable to strdup.");
765 retval = __LINE__;
766 ERROR_REPORT(retval, current->mValue, "Unable to convert to a number.");
782 retval = __LINE__;
783 ERROR_REPORT(retval, current->mValue, "Unable to convert to a number.");
804 retval = __LINE__;
805 ERROR_REPORT(retval, current->mLongName, "Unable to expand array.");
810 retval = __LINE__;
811 ERROR_REPORT(retval, current->mValue, "Unable to duplicate string.");
832 retval = __LINE__;
833 ERROR_REPORT(retval, current->mLongName, "Unable to expand array.");
838 retval = __LINE__;
839 ERROR_REPORT(retval, current->mValue, "Unable to duplicate string.");
860 retval = __LINE__;
861 ERROR_REPORT(retval, current->mLongName, "Unable to expand array.");
866 retval = __LINE__;
867 ERROR_REPORT(retval, current->mValue, "Unable to duplicate string.");
888 retval = __LINE__;
889 ERROR_REPORT(retval, current->mLongName, "Unable to expand array.");
894 retval = __LINE__;
895 ERROR_REPORT(retval, current->mValue, "Unable to duplicate string.");
916 retval = __LINE__;
917 ERROR_REPORT(retval, current->mLongName, "Unable to expand array.");
922 retval = __LINE__;
923 ERROR_REPORT(retval, current->mValue, "Unable to duplicate string.");
944 retval = __LINE__;
945 ERROR_REPORT(retval, current->mLongName, "Unable to expand array.");
950 retval = __LINE__;
951 ERROR_REPORT(retval, current->mValue, "Unable to duplicate string.");
956 retval = __LINE__;
957 ERROR_REPORT(retval, current->mLongName, "No handler for command line switch.");
962 return retval;
1059 int retval = 0;
1062 retval = initOptions(&options, inArgc, inArgv);
1067 else if(0 == retval)
1069 retval = codesighs(&options);
1073 return retval;