Lines Matching refs:newShell
2408 Shell newShell; in Job_ParseShell() local
2417 memset(&newShell, 0, sizeof newShell); in Job_ParseShell()
2437 newShell.name = arg + 5; in Job_ParseShell()
2440 newShell.echoOff = arg + 6; in Job_ParseShell()
2442 newShell.echoOn = arg + 5; in Job_ParseShell()
2444 newShell.noPrint = arg + 7; in Job_ParseShell()
2445 newShell.noPrintLen = strlen(newShell.noPrint); in Job_ParseShell()
2447 newShell.echoFlag = arg + 9; in Job_ParseShell()
2449 newShell.errFlag = arg + 8; in Job_ParseShell()
2452 newShell.hasErrCtl = c == 'Y' || c == 'y' || in Job_ParseShell()
2455 newShell.newline = arg + 8; in Job_ParseShell()
2461 newShell.errOn = arg + 6; in Job_ParseShell()
2462 newShell.echoTmpl = arg + 6; in Job_ParseShell()
2468 newShell.errOff = arg + 7; in Job_ParseShell()
2469 newShell.runIgnTmpl = arg + 7; in Job_ParseShell()
2471 newShell.runChkTmpl = arg + 7; in Job_ParseShell()
2473 newShell.commentChar = arg[8]; in Job_ParseShell()
2491 if (newShell.name == NULL) { in Job_ParseShell()
2497 if ((sh = FindShellByName(newShell.name)) == NULL) { in Job_ParseShell()
2499 "%s: No matching shell", newShell.name); in Job_ParseShell()
2504 shellName = newShell.name; in Job_ParseShell()
2530 if (newShell.name != NULL) { in Job_ParseShell()
2531 shellName = newShell.name; in Job_ParseShell()
2545 *shell = newShell; in Job_ParseShell()