Home
last modified time | relevance | path

Searched refs:read_save (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dllex.c356 case 'a': c = '\a'; goto read_save; in read_string()
357 case 'b': c = '\b'; goto read_save; in read_string()
358 case 'f': c = '\f'; goto read_save; in read_string()
359 case 'n': c = '\n'; goto read_save; in read_string()
360 case 'r': c = '\r'; goto read_save; in read_string()
361 case 't': c = '\t'; goto read_save; in read_string()
362 case 'v': c = '\v'; goto read_save; in read_string()
363 case 'x': c = readhexaesc(ls); goto read_save; in read_string()
367 c = ls->current; goto read_save; in read_string()
385 read_save: next(ls); /* read next character */ in read_string()
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/bltins/
H A Dread.c51 struct read_save struct
71 struct read_save *rp; in b_read() argument
73 rp = (struct read_save*)(context->data); in b_read()
156 if(argc==fixargs && (rp=newof(NIL(struct read_save*),struct read_save,1,0))) in b_read()