Home
last modified time | relevance | path

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

/freebsd-14-stable/usr.bin/rpcgen/
HDrpc_scan.c73 scan(tok_kind expect, token *tokp) in scan() argument
75 get_token(tokp); in scan()
76 if (tokp->kind != expect) { in scan()
85 scan2(tok_kind expect1, tok_kind expect2, token *tokp) in scan2() argument
87 get_token(tokp); in scan2()
88 if (tokp->kind != expect1 && tokp->kind != expect2) { in scan2()
97 scan3(tok_kind expect1, tok_kind expect2, tok_kind expect3, token *tokp) in scan3() argument
99 get_token(tokp); in scan3()
100 if (tokp->kind != expect1 && tokp->kind != expect2 in scan3()
101 && tokp->kind != expect3) { in scan3()
[all …]
HDrpc_scan.h129 void scan(tok_kind expect, token *tokp);
130 void scan2(tok_kind expect1, tok_kind expect2, token *tokp);
131 void scan3(tok_kind expect1, tok_kind expect2, tok_kind expect3, token *tokp);
132 void scan_num(token *tokp);
133 void peek(token *tokp);
134 int peekscan(tok_kind expect, token *tokp);
135 void get_token(token *tokp);