Searched defs:errorInfo (Results 1 - 3 of 3) sorted by relevance

/ast/src/lib/libtksh/include/
H A Dtksh.h79 char *errorInfo; /* Value to store in errorInfo if returnCode member in struct:Interp
220 * in $errorInfo for the current Tcl_Eval instance,
/ast/src/lib/libtk/generic/
H A DtkSend.c98 char *errorInfo; /* Information for "errorInfo" variable, member in struct:PendingCommand
173 * -i errorInfo
175 * "ErrorInfo" gives a string with which to initialize the errorInfo
983 * Tcl_AddErrorInfo will store the interp's result in errorInfo
984 * before appending riPtr's $errorInfo; we've already got
985 * everything we need in riPtr's $errorInfo.
990 "errorInfo", (char *) NULL, TCL_GLOBAL_ONLY));
1072 pending.errorInfo = NULL;
1113 if (pending.errorInfo !
1501 char *errorInfo, *errorCode, *resultString; local
[all...]
/ast/src/lib/libtksh/tcl/
H A DtclEvent.c188 char *errorInfo; /* Value of the errorInfo variable member in struct:BgError
1278 * errorInfo gets properly set. It's needed in cases where the error
1280 * in these cases errorInfo still won't have been set when this
1290 varValue = Tcl_GetVar(interp, "errorInfo", TCL_GLOBAL_ONLY);
1294 errPtr->errorInfo = (char *) ckalloc((unsigned) (strlen(varValue) + 1));
1295 strcpy(errPtr->errorInfo, varValue);
1371 Tcl_SetVar(interp, "errorInfo", assocPtr->firstBgPtr->errorInfo,
1399 Tcl_Write(errChannel, assocPtr->firstBgPtr->errorInfo,
[all...]

Completed in 18 milliseconds