Lines Matching defs:src
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
188 * kw_expand -- expand src into dst with given n value for $n (or $N)
190 * n == -1 means expand src into a reglob
196 kw_expand(struct fn *src, struct fn *dst, int n, boolean_t gz)
205 while ((c = fn_getc(src)) != '\0')
232 switch (c = fn_getc(src)) {
248 if (c == 'N' || !islower(fn_peekc(src))) {
272 while (islower(fn_peekc(src)))
273 fn_putc(kw, fn_getc(src));
308 if ((c = fn_getc(src)) == 'E' || c == 'O') {
309 c = fn_getc(src);
358 tbuf[1] = fn_getc(src);
361 tbuf[2] = fn_getc(src);
400 struct fn *src = fn_new(NULL);
419 fn_renew(src, argv[i]);
422 argv[i], n, kw_expand(src, dst, n, B_FALSE));