Home | History | Annotate | Download | only in codesighs

Lines Matching refs:retval

208     int retval = 0;
218 retval = 1;
222 retval = -1;
226 retval = strcmp(one->mModule, two->mModule);
229 retval *= -1;
233 return retval;
242 int retval = 0;
249 retval = 1;
253 retval = -1;
257 retval = strcmp(one->mSegment, two->mSegment);
260 retval *= -1;
264 return retval;
273 int retval = 0;
280 retval = 1;
284 retval = -1;
288 retval = strcmp(one->mObject, two->mObject);
291 retval *= -1;
295 return retval;
304 int retval = 0;
311 retval = 1;
315 retval = -1;
319 retval = strcmp(one->mSymbol, two->mSymbol);
322 retval *= -1;
326 return retval;
358 int retval = 0;
379 while(0 == retval && NULL != fgets(lineBuffer, sizeof(lineBuffer), inOptions->mInput))
433 retval = __LINE__;
434 ERROR_REPORT(retval, segClass, "Unable to determine segment class.");
437 if(0 == retval)
472 retval = __LINE__;
473 ERROR_REPORT(retval, module, "Unable to duplicate string.");
478 retval = __LINE__;
479 ERROR_REPORT(retval, inOptions->mProgramName, "Unable to increase module array.");
483 if(0 == retval)
511 retval = __LINE__;
512 ERROR_REPORT(retval, segment, "Unable to duplicate string.");
517 retval = __LINE__;
518 ERROR_REPORT(retval, inOptions->mProgramName, "Unable to increase segment array.");
522 if(0 == retval)
549 retval = __LINE__;
550 ERROR_REPORT(retval, object, "Unable to duplicate string.");
555 retval = __LINE__;
556 ERROR_REPORT(retval
560 if(0 == retval)
588 retval = __LINE__;
589 ERROR_REPORT(retval, symbol, "Unable to duplicate string.");
594 retval = __LINE__;
595 ERROR_REPORT(retval, inOptions->mProgramName, "Unable to increase symbol array.");
599 if(0 == retval)
648 retval = __LINE__;
649 ERROR_REPORT(retval, inOptions->mInputName, "Unable to scan line data.");
654 if(0 == retval && 0 != ferror(inOptions->mInput))
656 retval = __LINE__;
657 ERROR_REPORT(retval, inOptions->mInputName, "Unable to read file.");
674 if(0 == retval && 0 != inOptions->mNegation)
688 retval = __LINE__;
689 ERROR_REPORT(retval, inOptions->mProgramName, "Unable to allocate negation array memory.");
824 if(0 == retval)
1069 return retval;
1078 int retval = 0;
1097 retval = __LINE__;
1098 ERROR_REPORT(retval, "stdin/stdout", "Unable to strdup.");
1104 for(loop = 1; loop < inArgc && 0 == retval; loop++)
1109 for(switchLoop = 0; switchLoop < switchCount && 0 == retval; switchLoop++)
1147 retval = __LINE__;
1148 ERROR_REPORT(retval, inArgv[loop], "Unknown command line switch.");
1153 retval = __LINE__;
1154 ERROR_REPORT(retval, inArgv[loop], "Command line switch requires a value.");
1173 retval = __LINE__;
1174 ERROR_REPORT(retval, current->mValue, "Unable to open input file.");
1181 retval = __LINE__;
1182 ERROR_REPORT(retval, current->mValue, "Unable to strdup.");
1198 retval = __LINE__;
1199 ERROR_REPORT(retval, current->mValue, "Unable to open output file.");
1206 retval = __LINE__;
1207 ERROR_REPORT(retval, current->mValue, "Unable to strdup.");
1229 retval = __LINE__;
1230 ERROR_REPORT(retval, current->mLongName, "No handler for command line switch.");
1235 return retval;
1295 int retval = 0;
1298 retval = initOptions(&options, inArgc, inArgv);
1303 else if(0 == retval)
1305 retval = difftool(&options);
1309 return retval;