Searched refs:errorInfo (Results 1 - 10 of 10) sorted by relevance

/ast/src/lib/libtksh/lib/tksh7.6/
H A Dinit.tcl42 set errorInfo ""
66 global errorCode errorInfo
68 # Save the values of errorCode and errorInfo variables, since they
73 set savedErrorInfo $errorInfo
94 set errorInfo $savedErrorInfo
102 set new [split $errorInfo \n]
117 set errorInfo $savedErrorInfo
122 set errorInfo $savedErrorInfo
158 global auto_index auto_oldpath auto_path env errorInfo errorCode
201 error $msg $errorInfo
[all...]
/ast/src/lib/libtk/library/
H A Dbgerror.tcl30 global errorInfo
31 set info $errorInfo
H A Dmenu.tcl213 global tkPriv errorInfo
256 error $msg $errorInfo
/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/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/libtksh/src/
H A Dbasic.c189 iPtr->errorInfo = NULL;
577 if (iPtr->errorInfo != NULL) {
578 ckfree(iPtr->errorInfo);
579 iPtr->errorInfo = NULL;
821 * The contents of message are added to the "errorInfo" variable.
822 * If Tcl_Eval has been called since the current value of errorInfo
823 * was set, errorInfo is cleared before adding the new message.
837 * If an error is already being logged, then the new errorInfo
840 * new errorInfo is the concatenation of the message in
845 Tcl_SetVar2(interp, "errorInfo", (cha
[all...]
H A Dtcleval.c43 * The errorInfo and errorCode variables may get modified.
62 if (iPtr->errorInfo != NULL) {
63 Tcl_SetVar2((Tcl_Interp *) iPtr, "errorInfo", (char *) NULL,
64 iPtr->errorInfo, TCL_GLOBAL_ONLY);
136 char *ellipsis = ""; /* Used in setting errorInfo variable;
139 * in errorInfo. "" means that the
H A Dtclproc.c358 if (iPtr->errorInfo != NULL) {
359 Tcl_SetVar2(interp, "errorInfo", (char *) NULL,
360 iPtr->errorInfo, TCL_GLOBAL_ONLY);
/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...]
H A DtclCmdMZ.c640 if (iPtr->errorInfo != NULL) {
641 ckfree(iPtr->errorInfo);
642 iPtr->errorInfo = NULL;
670 iPtr->errorInfo = (char *) ckalloc((unsigned) (strlen(argv[1]) + 1));
671 strcpy(iPtr->errorInfo, argv[1]);

Completed in 32 milliseconds