Home | History | Annotate | Download | only in codesighs

Lines Matching refs:retval

107     char* retval = inScan;
109 while('\0' != *retval && 0 == isspace(*retval))
111 retval++;
114 return retval;
150 int retval = 0;
160 while(0 == retval && NULL != fgets(lineBuffer, sizeof(lineBuffer), inOptions->mInput))
262 retval = __LINE__;
263 ERROR_REPORT(retval, lineBuffer, "Malformed input line.");
267 if(0 == retval && 0 != ferror(inOptions->mInput))
269 retval = __LINE__;
270 ERROR_REPORT(retval, inOptions->mInputName, "Unable to read file.");
273 return retval;
282 int retval = 0;
301 retval = __LINE__;
302 ERROR_REPORT(retval, "stdin/stdout", "Unable to strdup.");
308 for(loop = 1; loop < inArgc && 0 == retval; loop++)
313 for(switchLoop = 0; switchLoop < switchCount && 0 == retval; switchLoop++)
351 retval = __LINE__;
352 ERROR_REPORT(retval, inArgv[loop], "Unknown command line switch.");
357 retval = __LINE__;
358 ERROR_REPORT(retval, inArgv[loop], "Command line switch requires a value.");
377 retval = __LINE__;
378 ERROR_REPORT(retval, current->mValue, "Unable to open input file.");
385 retval = __LINE__;
386 ERROR_REPORT(retval, current->mValue, "Unable to strdup.");
402 retval = __LINE__;
403 ERROR_REPORT(retval, current->mValue, "Unable to open output file.");
410 retval = __LINE__;
411 ERROR_REPORT(retval, current->mValue, "Unable to strdup.");
421 retval = __LINE__;
422 ERROR_REPORT(retval, current->mLongName, "No handler for command line switch.");
427 return retval;
489 int retval = 0;
492 retval = initOptions(&options, inArgc, inArgv);
497 else if(0 == retval)
499 retval = nm2tsv(&options);
503 return retval;