Lines Matching defs:noPrint
238 * echoOn, noPrint and noPrintLen. When echoOff is executed by the shell, it
240 * it is filtered out using noPrint and noPrintLen.
273 const char *noPrint; /* text to skip when printing output from the
275 size_t noPrintLen; /* length of noPrint command */
386 "", /* .noPrint */
409 "", /* .noPrint */
435 "set +v", /* .noPrint */
458 "unset verbose", /* .noPrint */
1764 * print the output of the child process, skipping the noPrint text of the
1775 if (shell->noPrint == NULL || shell->noPrint[0] == '\0')
1779 while ((ep = strstr(p, shell->noPrint)) != NULL && ep < endp) {
1798 * In the output of the shell, the 'noPrint' lines are removed. If the
2290 newShell.noPrint = arg + 7;
2291 newShell.noPrintLen = strlen(newShell.noPrint);