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

1234567891011>>

/freebsd-10.0-release/usr.sbin/kbdcontrol/
H A Dkbdcontrol.c114 static int token; variable
184 switch ((token = yylex())) {
275 if (token < 0)
276 token = yylex();
277 switch (token) {
321 if ((token = yylex()) != TFLAG)
324 token = yylex();
344 switch ((token = yylex())) {
355 for (i = 0; (token = yylex()) == '(';) {
356 switch ((token
[all...]
/freebsd-10.0-release/contrib/one-true-awk/
H A Dawkgram.y48 %token <i> FIRSTTOKEN /* must be first */
49 %token <p> PROGRAM PASTAT PASTAT2 XBEGIN XEND
50 %token <i> NL ',' '{' '(' '|' ';' '/' ')' '}' '[' ']'
51 %token <i> ARRAY
52 %token <i> MATCH NOTMATCH MATCHOP
53 %token <i> FINAL DOT ALL CCL NCCL CHAR OR STAR QUEST PLUS EMPTYRE
54 %token <i> AND BOR APPEND EQ GE GT LE LT NE IN
55 %token <i> ARG BLTIN BREAK CLOSE CONTINUE DELETE DO EXIT FOR FUNC
56 %token <i> SUB GSUB IF INDEX LSUBSTR MATCHFCN NEXT NEXTFILE
57 %token <
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/ts/
H A Dts_rsp_verify.c74 PKCS7 *token, TS_TST_INFO *tst_info);
140 int TS_RESP_verify_signature(PKCS7 *token, STACK_OF(X509) *certs, argument
153 if (!token)
160 if(!PKCS7_type_is_signed(token))
167 sinfos = PKCS7_get_signer_info(token);
177 if (PKCS7_get_detached(token))
185 signers = PKCS7_get0_signers(token, certs, 0);
197 p7bio = PKCS7_dataInit(token, NULL);
203 j = PKCS7_signatureVerify(p7bio, token, si, signer);
360 * - Calls _TS_RESP_verify_token to verify the token conten
364 PKCS7 *token = TS_RESP_get_token(response); local
384 TS_RESP_verify_token(TS_VERIFY_CTX *ctx, PKCS7 *token) argument
408 int_TS_RESP_verify_token(TS_VERIFY_CTX *ctx, PKCS7 *token, TS_TST_INFO *tst_info) argument
[all...]
H A Dts_asn1.c188 if (a->token) {
195 a->tst_info = PKCS7_to_TS_TST_INFO(a->token);
226 ASN1_OPT(TS_RESP, token, PKCS7),
279 TS_TST_INFO *PKCS7_to_TS_TST_INFO(PKCS7 *token)
287 if (!PKCS7_type_is_signed(token))
294 if (PKCS7_get_detached(token))
301 pkcs7_signed = token->d.sign;
/freebsd-10.0-release/lib/libc/rpc/
H A Dgetnetpath.c62 int valid; /* token that indicates a valid netpath_vars */
191 /* couldn't find this token in the database; go to next one. */
233 * Returns pointer to the rest-of-the-string after the current token.
234 * The token itself starts at arg, and we null terminate it. We return NULL
235 * if either the arg is empty, or if this is the last token.
239 _get_next_token(npp, token)
241 int token; /* char to parse string for */
247 if ((cp = strchr(npp, token)) == NULL) {
251 * did find a token, but it might be escaped.
254 /* if slash was also escaped, carry on, otherwise find next token */
[all...]
/freebsd-10.0-release/sys/dev/random/
H A Drandom_adaptors.c106 char rngs[128], *token, *cp; local
116 while ((token = strsep(&cp, ",")) != NULL)
117 if ((*adaptor = random_adaptor_get(token)) != NULL)
121 " skipping\n", token);
/freebsd-10.0-release/sys/netgraph/bluetooth/include/
H A Dng_btsocket_hci_raw.h51 u_int32_t token; /* message token */ member in struct:ng_btsocket_hci_raw_pcb
/freebsd-10.0-release/usr.bin/svn/lib/libsvn_diff/
H A DMakefile11 diff_tree.c lcs.c parse-diff.c token.c util.c
/freebsd-10.0-release/usr.sbin/ctld/
H A DMakefile4 SRCS= ctld.c discovery.c kernel.c keys.c log.c login.c parse.y pdu.c token.l y.tab.h
/freebsd-10.0-release/usr.sbin/ndiscvt/
H A DMakefile8 SRCS+= inf.c inf-token.l inf-parse.y y.tab.h
/freebsd-10.0-release/usr.bin/m4/
H A Dmain.c291 * Look ahead for `token'.
292 * (on input `t == token[0]')
294 * Returns 1 if `token' present; copied to output.
295 * 0 if `token' not found; all characters pushed back
298 do_look_ahead(int t, const char *token) argument
302 assert((unsigned char)t == (unsigned char)token[0]);
304 for (i = 1; *++token; i++) {
306 if (t == EOF || (unsigned char)t != (unsigned char)*token) {
309 pushback(*--token);
316 #define LOOK_AHEAD(t, token) (
326 char token[MAXTOK+1]; local
[all...]
/freebsd-10.0-release/sys/geom/vinum/
H A Dgeom_vinum_share.c71 * token, which must have enough space for the tokens. Return the
76 gv_tokenize(char *cptr, char *token[], int maxtoken) argument
78 int tokennr; /* Index of this token. */
92 token[tokennr] = cptr; /* Point to it. */
439 gv_new_drive(int max, char *token[]) argument
445 if (token[1] == NULL || *token[1] == '\0')
452 if (!strcmp(token[j], "state")) {
458 d->state = gv_drivestatei(token[j]);
459 } else if (!strcmp(token[
489 gv_new_volume(int max, char *token[]) argument
529 gv_new_plex(int max, char *token[]) argument
603 gv_new_sd(int max, char *token[]) argument
[all...]
/freebsd-10.0-release/lib/libc/posix1e/
H A Dmac.c157 char *token; local
159 token = strsep(string, " \t");
160 while (token != NULL && *token == '\0')
161 token = strsep(string, " \t");
163 return (token);
/freebsd-10.0-release/contrib/ipfilter/tools/
H A Dipf_y.y118 %token <num> YY_NUMBER YY_HEX
119 %token <str> YY_STR
120 %token YY_COMMENT
121 %token YY_CMP_EQ YY_CMP_NE YY_CMP_LE YY_CMP_GE YY_CMP_LT YY_CMP_GT
122 %token YY_RANGE_OUT YY_RANGE_IN
123 %token <ip6> YY_IPV6
125 %token IPFY_SET
126 %token IPFY_PASS IPFY_BLOCK IPFY_COUNT IPFY_CALL IPFY_NOMATCH
127 %token IPFY_RETICMP IPFY_RETRST IPFY_RETICMPASDST
128 %token IPFY_I
[all...]
H A Dippool_y.y76 %token <num> YY_NUMBER YY_HEX
77 %token <str> YY_STR
78 %token <ip6> YY_IPV6
79 %token YY_COMMENT
80 %token YY_CMP_EQ YY_CMP_NE YY_CMP_LE YY_CMP_GE YY_CMP_LT YY_CMP_GT
81 %token YY_RANGE_OUT YY_RANGE_IN
82 %token IPT_IPF IPT_NAT IPT_COUNT IPT_AUTH IPT_IN IPT_OUT IPT_ALL
83 %token IPT_TABLE IPT_GROUPMAP IPT_HASH IPT_SRCHASH IPT_DSTHASH
84 %token IPT_ROLE IPT_TYPE IPT_TREE
85 %token IPT_GROU
[all...]
/freebsd-10.0-release/contrib/binutils/binutils/
H A Drcparse.y113 %token BEG END
114 %token ACCELERATORS VIRTKEY ASCII NOINVERT SHIFT CONTROL ALT
115 %token BITMAP
116 %token CURSOR
117 %token DIALOG DIALOGEX EXSTYLE CAPTION CLASS STYLE
118 %token AUTO3STATE AUTOCHECKBOX AUTORADIOBUTTON CHECKBOX COMBOBOX CTEXT
119 %token DEFPUSHBUTTON EDITTEXT GROUPBOX LISTBOX LTEXT PUSHBOX PUSHBUTTON
120 %token RADIOBUTTON RTEXT SCROLLBAR STATE3 USERBUTTON
121 %token BEDIT HEDIT IEDIT
122 %token FON
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dada-exp.y159 %token <typed_val> INT NULL_PTR CHARLIT
160 %token <typed_val_float> FLOAT
161 %token <tval> TYPENAME
162 %token <bval> BLOCKNAME
172 %token <sval> STRING
173 %token <ssym> NAME DOT_ID OBJECT_RENAMING
179 %token DOT_ALL
183 %token <lval> LAST REGNAME
185 %token <ivar> INTERNAL_VARIABLE
203 %token ARRO
[all...]
H A Dc-exp.y166 %token <typed_val_int> INT
167 %token <typed_val_float> FLOAT
177 %token <sval> STRING
178 %token <ssym> NAME /* BLOCKNAME defined below to give it higher precedence. */
179 %token <tsym> TYPENAME
189 %token <ssym> NAME_OR_INT
191 %token STRUCT CLASS UNION ENUM SIZEOF UNSIGNED COLONCOLON
192 %token TEMPLATE
193 %token ERROR
197 %token SIGNED_KEYWOR
[all...]
H A Dobjc-exp.y168 %token <typed_val_int> INT
169 %token <typed_val_float> FLOAT
178 %token <sval> STRING
179 %token <sval> NSSTRING /* ObjC Foundation "NSString" literal */
180 %token <sval> SELECTOR /* ObjC "@selector" pseudo-operator */
181 %token <ssym> NAME /* BLOCKNAME defined below to give it higher precedence. */
182 %token <tsym> TYPENAME
183 %token <class> CLASSNAME /* ObjC Class name */
193 %token <ssym> NAME_OR_INT
195 %token STRUC
[all...]
H A Dm2-exp.y159 %token <lval> INT HEX ERROR
160 %token <ulval> UINT M2_TRUE M2_FALSE CHAR
161 %token <dval> FLOAT
172 %token <sval> STRING
173 %token <sval> NAME BLOCKNAME IDENT VARNAME
174 %token <sval> TYPENAME
176 %token SIZE CAP ORD HIGH ABS MIN_FUNC MAX_FUNC FLOAT_FUNC VAL CHR ODD TRUNC
177 %token INC DEC INCL EXCL
180 %token COLONCOLON
182 %token <voidva
[all...]
/freebsd-10.0-release/usr.sbin/i2c/
H A Di2c.c86 char *token; local
91 token = strsep(&skip_addr, "..");
92 if (token) {
93 addr_range.start = strtoul(token, 0, 16);
94 token = strsep(&skip_addr, "..");
95 if ((token != NULL) && !atoi(token)) {
96 token = strsep(&skip_addr, "..");
97 if (token)
98 addr_range.end = strtoul(token,
109 char *token; local
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dexpand_path.c42 * Expand a %{TEMP} token
44 * The %{TEMP} token expands to the temporary path for the current
85 * Expand a %{BINDIR} token
128 * Expand a %{USERID} token
130 * The %{USERID} token expands to the string representation of the
132 * corresponding to the current thread's security token. This means
135 * - If the current thread token has the anonymous impersonation
138 * - If the current thread is impersonating a token at
155 FALSE, /* Open the thread token as the
172 "Can't open thread token (GL
331 static const struct token { struct
374 _expand_token(krb5_context context, const char *token, const char *token_end, char **ret) argument
[all...]
/freebsd-10.0-release/lib/libcompat/4.3/
H A Drexec.c97 token() function
161 while ((t = token())) switch(t) {
169 if (token() != ID)
186 while ((t = token()) && t != MACH && t != DEFAULT) switch(t) {
189 if (token())
206 if (token() && *apass == 0) {
218 if (token() && *aacct == 0) {
/freebsd-10.0-release/lib/libnetgraph/
H A Dmsg.c53 /* Next message token value */
63 * If successful, returns the message ID (token) used.
77 msg.header.token = gMsgId;
85 return (msg.header.token);
98 int token; local
148 binary->header.token = gMsgId;
155 token = binary->header.token;
157 return (token);
/freebsd-10.0-release/contrib/gcclibs/libcpp/
H A Dlex.c50 #define TOKEN_SPELL(token) (token_spellings[(token)->type].category)
51 #define TOKEN_NAME(token) (token_spellings[(token)->type].name)
69 Compares, the token TOKEN to the NUL-terminated string STRING.
72 cpp_ideq (const cpp_token *token, const char *string) argument
74 if (token->type != CPP_NAME)
77 return !ustrcmp (NODE_NAME (token->val.node), (const uchar *) string);
416 /* See if the characters of a number token are valid in a name (no
434 const cpp_token *token,
433 warn_about_normalization(cpp_reader *pfile, const cpp_token *token, const struct normalize_state *s) argument
588 create_literal(cpp_reader *pfile, cpp_token *token, const uchar *base, unsigned int len, enum cpp_ttype type) argument
608 lex_string(cpp_reader *pfile, cpp_token *token, const uchar *base) argument
659 save_comment(cpp_reader *pfile, cpp_token *token, const unsigned char *from, cppchar_t type) argument
1223 cpp_token_len(const cpp_token *token) argument
1279 cpp_spell_token(cpp_reader *pfile, const cpp_token *token, unsigned char *buffer, bool forstring) argument
1343 cpp_token_as_text(cpp_reader *pfile, const cpp_token *token) argument
1366 cpp_output_token(const cpp_token *token, FILE *fp) argument
1505 const cpp_token *token; local
[all...]

Completed in 171 milliseconds

1234567891011>>