Searched refs:pipeline (Results 1 – 3 of 3) sorted by relevance
156 struct pipeline { struct160 } pipeline; member734 if (G.pipeline.idx == G.pipeline.len) { in pipe_putc()735 G.pipeline.buf = xrealloc(G.pipeline.buf, in pipe_putc()736 G.pipeline.len + PIPE_GROW); in pipe_putc()737 G.pipeline.len += PIPE_GROW; in pipe_putc()739 G.pipeline.buf[G.pipeline.idx++] = c; in pipe_putc()806 G.pipeline.buf = xmalloc(PIPE_GROW); in do_subst_command()807 G.pipeline.len = PIPE_GROW; in do_subst_command()808 G.pipeline.idx = 0; in do_subst_command()[all …]
193 pipeline. From a security point of view, ASCII compatibility of UTF-8 |
11743 static union node *pipeline(void);11827 n1 = pipeline(); in andor()11839 n2 = pipeline(); in andor()11849 pipeline(void) in pipeline() function