HomeSort by relevance Sort by last modified time
    Searched refs:shf (Results 1 - 21 of 21) sorted by null

  /external/mksh/src/
shf.c 1 /* $OpenBSD: shf.c,v 1.16 2013/04/19 17:36:09 millert Exp $ */
28 __RCSID("$MirOS: src/bin/mksh/shf.c,v 1.61 2013/07/21 18:36:03 tg Exp $");
40 static int shf_fillbuf(struct shf *);
41 static int shf_emptybuf(struct shf *, int);
48 struct shf *
51 struct shf *shf; local
58 shf = alloc(sizeof(struct shf) + bsize, ATEMP);
59 shf->areap = ATEMP
717 struct shf shf; local
737 struct shf shf; local
    [all...]
tree.c 30 static void ptree(struct op *, int, struct shf *);
31 static void pioact(struct shf *, struct ioword *);
32 static const char *wdvarput(struct shf *, const char *, int, int);
33 static void vfptreef(struct shf *, int, const char *, va_list);
46 ptree(struct op *t, int indent, struct shf *shf)
73 fptreef(shf, indent, "%S", t->vars[0]);
80 fptreef(shf, indent, "%S ", *w++);
82 shf_puts("#no-vars# ", shf);
86 fptreef(shf, indent, "%S ", *w++)
436 struct shf shf; local
458 shf_putchar(va_arg(va, int), shf); local
462 shf_puts(va_arg(va, char *), shf); local
478 ptree(va_arg(va, struct op *), indent, shf); local
650 struct shf shf; local
    [all...]
sh.h 2 /* $OpenBSD: shf.h,v 1.6 2005/12/11 18:53:51 deraadt Exp $ */
820 struct shf *shf; member in struct:temp
1026 #define shf_fileno(shf) ((shf)->fd)
1027 #define shf_setfileno(shf,nfd) ((shf)->fd = (nfd))
1028 #define shf_getc_i(shf) ((shf)->rnleft > 0 ? \
1029 (shf)->rnleft--, *(shf)->rp++ :
1061 struct shf { struct
1495 struct shf *shf; \/* shell file *\/ member in union:source::__anon31792
    [all...]
eval.c 45 struct shf *shf; member in union:__anon31774::__anon31775
437 struct shf shf; local
439 shf_sopen(NULL, 0, SHF_WR|SHF_DYNAMIC, &shf);
440 print_value_quoted(&shf, str_val(st->var));
441 x.str = shf_sclose(&shf);
872 if (x.u.shf == NULL) {
882 while ((c = shf_getc(x.u.shf)) == 0 || c == '\n')
887 shf_ungetc(c, x.u.shf);
1314 struct shf *shf; local
    [all...]
main.c 508 s->u.shf = shf_open(s->file, O_RDONLY, 0,
510 if (s->u.shf == NULL) {
522 s->u.shf = shf_fdopen(0, SHF_RD | can_seek(0),
528 s->u.shf->flags |= SHF_INTERRUPT;
702 struct shf *shf; local
707 shf = shf_open(name, O_RDONLY, 0, SHF_MAPHI | SHF_CLEXEC);
708 if (shf == NULL)
720 quitenv(s ? s->u.shf : NULL);
753 s->u.shf = shf
    [all...]
misc.c 1115 print_value_quoted(struct shf *shf, const char *s)
1130 shf_puts(s, shf);
1143 shf_putc('\'', shf);
1146 shf_putc('\\', shf);
1148 shf_putc('\'', shf);
1151 shf_putc(c, shf);
1158 shf_putc('$', shf);
1159 shf_putc('\'', shf);
1165 shf_fprintf(shf, "\\u%04X", wc)
    [all...]
histrap.c 90 struct shf *shf; local
298 if (!(shf = tf->shf)) {
305 shf_fprintf(shf, "%s\n", *hp);
306 if (shf_close(shf) == EOF) {
332 if (!(shf = shf_open(tf->tffn, O_RDONLY, 0, 0))) {
347 while ((n = shf_read(xp, Xnleft(xs, xp), shf)) > 0) {
354 "read", tf->tffn, cstrerror(shf_errno(shf)));
356 shf_close(shf);
    [all...]
exec.c 1487 struct shf *shf; local
    [all...]
jobs.c 133 static struct shf *shl_j;
143 static void j_print(Job *, int, struct shf *);
185 * an interrupt handler, so need a distinct shf)
    [all...]
lex.c 1405 char *p = shf_getse(xp, Xnleft(s->xs, xp), s->u.shf);
1407 if (!p && shf_error(s->u.shf) &&
1408 shf_errno(s->u.shf) == EINTR) {
1409 shf_clearerr(s->u.shf);
1428 * TODO: reduce size of shf buffer (~128?) if SSTDIN
1431 shf_flush(s->u.shf);
1449 shf_fdclose(s->u.shf);
1482 struct shf *shf; local
    [all...]
funcs.c 221 static void p_time(struct shf *, bool, long, int, int,
    [all...]
  /external/llvm/test/MC/Mips/msa/
test_i8.s 9 # CHECK: shf.b $w19, $w30, 105 # encoding: [0x78,0x69,0xf4,0xc2]
10 # CHECK: shf.h $w17, $w8, 76 # encoding: [0x79,0x4c,0x44,0x42]
11 # CHECK: shf.w $w14, $w3, 93 # encoding: [0x7a,0x5d,0x1b,0x82]
20 shf.b $w19, $w30, 105
21 shf.h $w17, $w8, 76
22 shf.w $w14, $w3, 93
  /libcore/luni/src/test/java/libcore/java/net/
URLStreamHandlerFactoryTest.java 52 TestURLStreamHandlerFactory shf = new TestURLStreamHandlerFactory(); local
55 URL.setURLStreamHandlerFactory(shf);
62 URL.setURLStreamHandlerFactory(shf);
  /external/mksh/
Android.mk 28 src/lex.c src/main.c src/misc.c src/shf.c \
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.osgi/3.9.1.v20130814-1242/
org.eclipse.osgi-3.9.1.v20130814-1242.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.osgi_3.9.1.v20140110-1610.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.osgi/3.9.0.v20130529-1710/
org.eclipse.osgi-3.9.0.v20130529-1710.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.osgi_3.9.0.v20130529-1710.jar 

Completed in 163 milliseconds