Searched refs:token (Results 126 - 150 of 1018) sorted by relevance

1234567891011>>

/netbsd-current/usr.bin/ctags/
H A DC.c66 int token; /* if reading a token */ local
70 char tok[MAXTOKEN]; /* token buffer */
73 sp = tok; token = t_def = NO; t_level = -1; level = 0; lineno = 1;
107 token = YES;
111 token = NO;
149 * if we have a current token, parenthesis on
159 if (!level && token) {
190 * If looking at a typedef, we save a copy of the last token
192 * token i
[all...]
/netbsd-current/external/apache2/mDNSResponder/dist/mDNSShared/
H A Ddnsextd_parser.y102 %token OPTIONS
103 %token LISTEN_ON
104 %token NAMESERVER
105 %token PORT
106 %token ADDRESS
107 %token LLQ
108 %token PUBLIC
109 %token PRIVATE
110 %token ALLOWUPDATE
111 %token ALLOWQUER
[all...]
/netbsd-current/usr.bin/rpcgen/
H A Drpc_scan.c60 static void unget_token(token *);
64 static void findkind(char **, token *);
70 static int pushed = 0; /* is a token pushed */
71 static token lasttok; /* last token, if pushed */
74 * scan expecting 1 given token
77 scan(tok_kind expect, token *tokp)
88 scan2(tok_kind expect1, tok_kind expect2, token *tokp)
96 * scan expecting any of the 3 given token
99 scan3(tok_kind expect1, tok_kind expect2, tok_kind expect3, token *tok
[all...]
/netbsd-current/external/mpl/dhcp/dist/common/
H A Dresolv.c46 int token; local
62 token = next_token (&val, (unsigned *)0, cfile);
63 if (token == END_OF_FILE)
65 else if (token == EOL)
67 else if (token == DOMAIN || token == SEARCH) {
93 token = peek_token (&val,
95 } while (token != EOL);
96 if (token != EOL) {
102 } else if (token
[all...]
/netbsd-current/external/bsd/am-utils/dist/amd/
H A Dconf_parse.y75 %token LEFT_BRACKET RIGHT_BRACKET EQUAL
76 %token NEWLINE
77 %token <strtype> NONWS_STRING
78 %token <strtype> NONWSEQ_STRING
79 %token <strtype> QUOTED_NONWSEQ_STRING
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/src/
H A Dx-librep.c169 /* A token consists of a sequence of characters. */
170 struct token struct
174 char *chars; /* the token's constituents */
177 /* Initialize a 'struct token'. */
179 init_token (struct token *tp)
186 /* Free the memory pointed to by a 'struct token'. */
188 free_token (struct token *tp)
193 /* Ensure there is enough room in the token for one more character. */
195 grow_token (struct token *tp)
204 /* Read the next token
479 struct token *token; /* for t_symbol and t_string */ member in struct:object
1000 struct token token; local
1022 struct token token; local
[all...]
/netbsd-current/sys/external/bsd/acpica/dist/compiler/
H A Dprparser.y90 %token <op> EXPOP_EOF
91 %token <op> EXPOP_NEW_LINE
92 %token <op> EXPOP_NUMBER
93 %token <op> EXPOP_HEX_NUMBER
94 %token <op> EXPOP_RESERVED1
95 %token <op> EXPOP_RESERVED2
96 %token <op> EXPOP_PAREN_OPEN
97 %token <op> EXPOP_PAREN_CLOSE
113 %token <op> EXPOP_DEFINE
114 %token <o
[all...]
/netbsd-current/external/bsd/ntp/dist/ntpd/
H A Dntp_scanner.c30 /* ntp_keyword.h declares finite state machine and token text */
66 * keyword() - Return the keyword associated with token T_ identifier.
73 int token
80 i = token - LOWEST_KEYWORD_ID;
82 switch (token) {
92 "(keyword #%u not found)", token);
452 int token; local
456 token = 0;
468 token = curr_s;
476 return token;
688 int token; /* The return value */ local
[all...]
H A Dkeyword-gen.c33 /* Define a structure to hold a (keyword, token) pair */
36 u_short token; /* Associated Token */ member in struct:key_tok
37 follby followedby; /* nonzero indicates the next token(s)
265 char followedby; /* Forces next token(s) to T_String */
275 * array with one entry per token, and shrinking the char value to
285 char * symb[1024]; /* map token ID to symbolic name */
359 u_short token; local
371 * token number for its terminal state, so the token identifier
378 token
518 create_scan_states( char * text, u_short token, follby followedby, u_short prev_state ) argument
733 int token; local
[all...]
/netbsd-current/external/mpl/dhcp/dist/contrib/ldap/
H A Ddhcpd-conf-to-ldap71 local ($token, $newline);
90 if (($token, $newline) = $line =~ /^(.*?)\s+(.*)/)
92 if ($token =~ /^"/) {
93 #handle quoted token
94 if ($token !~ /"\s*$/)
97 $token .= " $tok";
104 $token = $line;
109 $token =~ y/[A-Z]/[a-z]/ if $lowercase;
111 return ($token);
154 print "Parse error on line number $line_number at token numbe
[all...]
/netbsd-current/external/bsd/dhcpcd/dist/src/
H A Dauth.c83 if (state->token) {
84 free(state->token->key);
85 free(state->token->realm);
86 free(state->token);
87 state->token = NULL;
103 const struct token *
114 const struct token *t;
180 if (state->token && state->replay != 0) {
267 /* Free the old token so we log acceptance */
268 if (state->token) {
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/dns/
H A Ddst_parse.c420 isc_token_t token; local
432 #define NEXTTOKEN(lex, opt, token) \
434 ret = isc_lex_gettoken(lex, opt, token); \
439 #define READLINE(lex, opt, token) \
441 ret = isc_lex_gettoken(lex, opt, token); \
446 } while ((*token).type != isc_tokentype_eol)
451 NEXTTOKEN(lex, opt, &token);
452 if (token.type != isc_tokentype_string ||
453 strcmp(DST_AS_STR(token), PRIVATE_KEY_STR) != 0)
459 NEXTTOKEN(lex, opt, &token);
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
H A Dloc_29.c139 get_degrees(isc_lex_t *lexer, isc_token_t *token, unsigned long *d) { argument
140 RETERR(isc_lex_getmastertoken(lexer, token, isc_tokentype_number,
142 *d = token->value.as_ulong;
161 get_minutes(isc_lex_t *lexer, isc_token_t *token, unsigned long *m) { argument
162 RETERR(isc_lex_getmastertoken(lexer, token, isc_tokentype_number,
165 *m = token->value.as_ulong;
171 get_seconds(isc_lex_t *lexer, isc_token_t *token, unsigned long *s) { argument
172 RETERR(isc_lex_getmastertoken(lexer, token, isc_tokentype_string,
174 RETERR(loc_getdecimal(DNS_AS_STR(*token), 59, 3, '\0', s));
180 get_direction(isc_lex_t *lexer, isc_token_t *token, cons argument
208 isc_token_t token; local
308 isc_token_t token; local
334 isc_token_t token; local
[all...]
/netbsd-current/external/mpl/bind/dist/lib/dns/
H A Ddst_parse.c418 isc_token_t token; local
430 #define NEXTTOKEN(lex, opt, token) \
432 ret = isc_lex_gettoken(lex, opt, token); \
437 #define READLINE(lex, opt, token) \
439 ret = isc_lex_gettoken(lex, opt, token); \
444 } while ((*token).type != isc_tokentype_eol)
449 NEXTTOKEN(lex, opt, &token);
450 if (token.type != isc_tokentype_string ||
451 strcmp(DST_AS_STR(token), PRIVATE_KEY_STR) != 0)
457 NEXTTOKEN(lex, opt, &token);
[all...]
/netbsd-current/external/mpl/bind/dist/lib/dns/rdata/generic/
H A Dloc_29.c139 get_degrees(isc_lex_t *lexer, isc_token_t *token, unsigned long *d) { argument
140 RETERR(isc_lex_getmastertoken(lexer, token, isc_tokentype_number,
142 *d = token->value.as_ulong;
161 get_minutes(isc_lex_t *lexer, isc_token_t *token, unsigned long *m) { argument
162 RETERR(isc_lex_getmastertoken(lexer, token, isc_tokentype_number,
165 *m = token->value.as_ulong;
171 get_seconds(isc_lex_t *lexer, isc_token_t *token, unsigned long *s) { argument
172 RETERR(isc_lex_getmastertoken(lexer, token, isc_tokentype_string,
174 RETERR(loc_getdecimal(DNS_AS_STR(*token), 59, 3, '\0', s));
180 get_direction(isc_lex_t *lexer, isc_token_t *token, cons argument
208 isc_token_t token; local
308 isc_token_t token; local
334 isc_token_t token; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/c-family/
H A Dc-ppoutput.cc33 const cpp_token *prev; /* Previous token. */
34 const cpp_token *source; /* Source token for spacing. */
38 bool prev_was_system_token; /* True if the previous token was a
39 system token.*/
197 token_streamer::stream (cpp_reader *pfile, const cpp_token *token, argument
200 if (token->type == CPP_PADDING)
205 && token->val.source == NULL))
206 print.source = token->val.source;
210 if (token->type == CPP_EOF)
219 print.source = token;
319 const cpp_token *token local
376 const cpp_token *token = va_arg (args, const cpp_token *); local
546 do_line_change(cpp_reader *pfile, const cpp_token *token, location_t src_loc, int parsing_args) argument
580 cb_line_change(cpp_reader *pfile, const cpp_token *token, int parsing_args) argument
[all...]
/netbsd-current/external/gpl2/dtc/dist/
H A Ddtc-parser.y50 %token DT_V1
51 %token DT_PLUGIN
52 %token DT_MEMRESERVE
53 %token DT_LSHIFT DT_RSHIFT DT_LE DT_GE DT_EQ DT_NE DT_AND DT_OR
54 %token DT_BITS
55 %token DT_DEL_PROP
56 %token DT_DEL_NODE
57 %token DT_OMIT_NO_REF
58 %token <propnodename> DT_PROPNODENAME
59 %token <intege
[all...]
/netbsd-current/crypto/external/bsd/libsaslc/dist/src/
H A Dparser.c65 /* token types */
74 /* token structure */
76 int type; /**< token type */
77 char *val; /**< token string value */
90 * @brief gets token from string c and updates pointer position.
92 * @return token on success, NULL on failure (e.g. at end of string).
93 * On success, c is updated to point on next token. It's position is
102 saslc__token_t *token; local
109 if ((token = calloc(1, sizeof(*token)))
[all...]
/netbsd-current/usr.sbin/faithd/
H A Dprefix.c194 char *token[4]; local
212 memset(token, 0, sizeof(token));
213 for (i = 0; i < sizeof(token) / sizeof(token[0]); i++) {
214 token[i] = strtok(p, "\t ");
216 if (token[i] == NULL)
236 if (strcasecmp(token[1], "permit") == 0)
238 else if (strcasecmp(token[1], "deny") == 0)
245 if (prefix_set(token[
[all...]
/netbsd-current/bin/sh/
H A Darithmetic.c164 arith_err("token error");
207 primary(int token, union a_token_val *val, int op, int noeval) argument
212 VTRACE(DBG_ARITH, ("Arith primary: token %d op %d%s\n",
213 token, op, noeval ? " noeval" : ""));
215 switch (token) {
259 result += (token == ARITH_INCR ? 1 : -1));
274 int token; local
280 token = arith_token();
283 b = primary(token, &val, arith_token(), noeval);
303 binop(int token, unio argument
315 and(int token, union a_token_val *val, int op, int noeval) argument
335 or(int token, union a_token_val *val, int op, int noeval) argument
355 cond(int token, union a_token_val *val, int op, int noeval) argument
410 comma_list(int token, int noeval) argument
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/ld/
H A Dldgram.y77 int token;
103 %token <bigint> INT
104 %token <name> NAME LNAME
111 %right <token> PLUSEQ MINUSEQ MULTEQ DIVEQ '=' LSHIFTEQ RSHIFTEQ ANDEQ OREQ
112 %right <token> '?' ':'
113 %left <token> OROR
114 %left <token> ANDAND
115 %left <token> '|'
116 %left <token> '^'
117 %left <token> '
[all...]
/netbsd-current/external/gpl3/binutils/dist/ld/
H A Dldgram.y80 int token;
106 %token <bigint> INT
107 %token <name> NAME LNAME
114 %right <token> PLUSEQ MINUSEQ MULTEQ DIVEQ '=' LSHIFTEQ RSHIFTEQ ANDEQ OREQ XOREQ
115 %right <token> '?' ':'
116 %left <token> OROR
117 %left <token> ANDAND
118 %left <token> '|'
119 %left <token> '^'
120 %left <token> '
[all...]
/netbsd-current/crypto/external/bsd/heimdal/dist/lib/gssapi/mech/
H A Dgss_cred.c50 gss_buffer_t token)
60 _mg_buffer_zero(token);
106 token->value = data.data;
107 token->length = data.length;
114 gss_buffer_t token,
126 if (token->length == 0) {
131 sp = krb5_storage_from_readonly_mem(token->value, token->length);
48 gss_export_cred(OM_uint32 * minor_status, gss_cred_id_t cred_handle, gss_buffer_t token) argument
113 gss_import_cred(OM_uint32 * minor_status, gss_buffer_t token, gss_cred_id_t * cred_handle) argument
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
H A Devent.h13 __u64 token; /* must be unique */ member in struct:nvif_notify_req_v0
21 __u64 token; member in struct:nvif_notify_rep_v0
/netbsd-current/external/gpl3/gdb.old/dist/gold/
H A Dtoken.h0 // token.h -- lock tokens for gold -*- C++ -*-
109 // A write lock token uses these methods.
111 // Is the token writable?
119 // Add the task as the token's writer (there may only be one
128 // Remove the task as the token's writer.
136 // A blocker token uses these methods.
138 // Add a blocker to the token.
147 // Add some number of blockers to the token.
156 // Remove a blocker from the token. Returns true if block count
167 // Is the token currentl
218 Task_write_token(Task_token* token, const Task* task) argument
241 Task_block_token(Task_token* token) argument
300 add(Task* t, Task_token* token) argument
[all...]

Completed in 383 milliseconds

1234567891011>>