Lines Matching refs:slavePath

138 			    char *slavePath, int safe));
459 CreateSlave(interp, slavePath, safe)
461 char *slavePath; /* Path (name) of slave to create. */
470 int argc; /* Count of elements in slavePath. */
471 char **argv; /* Elements in slavePath. */
480 if (Tcl_SplitList(interp, slavePath, &argc, &argv) != TCL_OK) {
487 slavePath = argv[0];
500 slavePath = argv[argc-1];
505 hPtr = Tcl_CreateHashEntry(&(masterPtr->slaveTable), slavePath, &new);
507 Tcl_AppendResult(interp, "interpreter named \"", slavePath,
520 slavePtr->interpCmd = Tcl_CreateCommand(masterInterp, slavePath,
545 (void) Tcl_DeleteCommand(masterInterp, slavePath);
579 char *slavePath; /* Name of slave. */
590 slavePath = NULL;
612 slavePath = argv[i];
615 if (slavePath == (char *) NULL) {
618 slavePath = localSlaveName;
620 if (CreateSlave(interp, slavePath, safe) != NULL) {
621 Tcl_AppendResult(interp, slavePath, (char *) NULL);
915 * - interp alias slavePath aliasName
917 * - interp alias slavePath aliasName {}
919 * - interp alias slavePath srcCmd masterPath targetCmd args...
948 " alias slavePath slaveCmd masterPath masterCmd ?args ..?\"",
966 " alias slavePath slaveCmd masterPath masterCmd ?args ..?\"",
2264 * Creates a slave interpreter. The slavePath argument denotes the
2268 * the slavePath argument contains only one component. Optionally makes
2277 * the interpreter indicated by the slavePath argument.
2283 Tcl_CreateSlave(interp, slavePath, isSafe)
2285 char *slavePath; /* Name of slave to create. */
2288 if ((interp == (Tcl_Interp *) NULL) || (slavePath == (char *) NULL)) {
2291 return CreateSlave(interp, slavePath, isSafe);
2313 Tcl_GetSlave(interp, slavePath)
2315 char *slavePath; /* Path of slave to find. */
2319 if ((interp == (Tcl_Interp *) NULL) || (slavePath == (char *) NULL)) {
2326 return GetInterp(interp, masterPtr, slavePath, NULL);