Home
last modified time | relevance | path

Searched refs:kobj_getc (Results 1 – 4 of 4) sorted by relevance

/titanic_50/usr/src/uts/intel/io/acpica/
H A Dmaster_ops.c173 while ((ch = kobj_getc(file)) == ' ' || ch == '\t') in mf_lex()
178 while ((ch = kobj_getc(file)) != '\n' && ch != '\r' && in mf_lex()
203 while (!badquote && (ch = kobj_getc(file)) != '"') { in mf_lex()
233 *cp++ = (char)(ch = kobj_getc(file)); in mf_lex()
/titanic_50/usr/src/uts/common/os/
H A Dmodsysfile.c216 while ((ch = kobj_getc(file)) == ' ' || ch == '\t') in kobj_lex()
252 while ((ch = kobj_getc(file)) == ' ' || in kobj_lex()
271 while (!badquote && (ch = kobj_getc(file)) != '"') { in kobj_lex()
289 ch = (char)kobj_getc(file); in kobj_lex()
299 ch = (char)kobj_getc(file); in kobj_lex()
336 *cp++ = (char)(ch = kobj_getc(file)); in kobj_lex()
349 *cp++ = (char)(ch = kobj_getc(file)); in kobj_lex()
355 if ((ch = kobj_getc(file)) == 'x') { in kobj_lex()
361 ch = kobj_getc(file); in kobj_lex()
368 ch = kobj_getc(file); in kobj_lex()
[all …]
/titanic_50/usr/src/uts/common/sys/
H A Dkobj.h149 #define kobj_getc(p) (--(p)->_cnt >= 0 ? ((int)*(p)->_ptr++):kobj_filbuf(p)) macro
/titanic_50/usr/src/uts/common/krtld/
H A Dkobj.c4005 return (kobj_getc(f)); in kobj_filbuf()