Lines Matching refs:tclExecutableName
113 * Frees the string stored in the tclExecutableName variable. This
121 * Frees the memory occuppied by the tclExecutableName value.
131 if (tclExecutableName != (char *) NULL) {
132 ckfree(tclExecutableName);
133 tclExecutableName = (char *) NULL;
482 * The variable tclExecutableName gets filled in with the file
498 if (tclExecutableName != NULL) {
499 ckfree(tclExecutableName);
500 tclExecutableName = NULL;
556 * If the name starts with "/" then just copy it to tclExecutableName.
561 tclExecutableName = (char *) ckalloc((unsigned) (strlen(name) + 1));
562 strcpy(tclExecutableName, name);
577 tclExecutableName = NULL;
581 tclExecutableName = (char *) ckalloc((unsigned)
583 strcpy(tclExecutableName, cwd);
584 tclExecutableName[length] = '/';
585 strcpy(tclExecutableName + length + 1, name);