Lines Matching defs:result
39 * The return value is a standard Tcl result indicating whether
41 * result in interp will be set to hold all of the file names
43 * result in interp will hold an error message.
77 int result = TCL_OK;
134 interp->result = "unmatched open-brace in file name";
135 result = TCL_ERROR;
147 result = DoGlob(interp, dir, newName.string);
148 if (result != TCL_OK) {
182 result = TCL_ERROR;
214 result = DoGlob(interp, newName.string, p+1);
215 if (result != TCL_OK) {
234 result = DoGlob(interp, newName.string, p+1);
241 * in interp-result.
255 return result;
269 * The result is a pointer to a static string containing
271 * tilde, then an error message is left in interp->result
272 * and the return value is NULL. The result may be stored
290 Tcl_DString *bufferPtr; /* May be used to hold result. Must not hold
346 * A standard Tcl result.
362 int i, result, noComplain, firstArg;
408 result = DoGlob(interp, "//", thisName+2);
410 result = DoGlob(interp, "/", thisName+1);
413 result = DoGlob(interp, "", thisName);
416 if (result != TCL_OK) {
417 return result;
420 if ((*interp->result == 0) && !noComplain) {