Lines Matching defs:result
66 int result;
71 result = (int) waitpid(real_pid, statPtr, options);
72 if ((result != -1) || (errno != EINTR)) {
73 return result;
146 * The result is a standard Tcl result. If an error occurs and
147 * interp isn't NULL, an error message is left in interp->result.
185 * The result is the full path name of the current working
189 * isn't NULL, an error message is left in interp->result.
213 interp->result = "working directory name is too long";
283 int result;
298 result = close(fd);
301 return result;
606 * The result is a pointer to a static string containing
609 * result is stored in bufferPtr, and the caller must call
610 * Tcl_DStringFree(bufferPtr) to free the result.
621 Tcl_DString *bufferPtr; /* May be used to hold result. Must not hold
650 * added to the interp->result. Otherwise, TclDoGlob is called
652 * is a standard Tcl result indicating whether an error occurred
675 int result = TCL_OK;
769 * the file to the result.
780 result = TclDoGlob(interp, separators, dirPtr, tail);
781 if (result != TCL_OK) {
790 return result;