Lines Matching refs:newShell
2300 Shell newShell; in Job_ParseShell() local
2309 memset(&newShell, 0, sizeof newShell); in Job_ParseShell()
2326 newShell.name = arg + 5; in Job_ParseShell()
2329 newShell.echoOff = arg + 6; in Job_ParseShell()
2331 newShell.echoOn = arg + 5; in Job_ParseShell()
2333 newShell.noPrint = arg + 7; in Job_ParseShell()
2334 newShell.noPrintLen = strlen(newShell.noPrint); in Job_ParseShell()
2336 newShell.echoFlag = arg + 9; in Job_ParseShell()
2338 newShell.errFlag = arg + 8; in Job_ParseShell()
2341 newShell.hasErrCtl = c == 'Y' || c == 'y' || in Job_ParseShell()
2344 newShell.newline = arg + 8; in Job_ParseShell()
2350 newShell.errOn = arg + 6; in Job_ParseShell()
2351 newShell.echoTmpl = arg + 6; in Job_ParseShell()
2357 newShell.errOff = arg + 7; in Job_ParseShell()
2358 newShell.runIgnTmpl = arg + 7; in Job_ParseShell()
2360 newShell.runChkTmpl = arg + 7; in Job_ParseShell()
2362 newShell.commentChar = arg[8]; in Job_ParseShell()
2374 if (newShell.name == NULL) { in Job_ParseShell()
2380 if ((sh = FindShellByName(newShell.name)) == NULL) { in Job_ParseShell()
2382 "%s: No matching shell", newShell.name); in Job_ParseShell()
2387 shellName = newShell.name; in Job_ParseShell()
2397 shellName = newShell.name != NULL ? newShell.name in Job_ParseShell()
2409 *shell = newShell; in Job_ParseShell()