Searched refs:token (Results 201 - 225 of 447) sorted by relevance

1234567891011>>

/freebsd-10.2-release/contrib/ipfilter/tools/
H A Dipscan_y.y62 %token <num> YY_NUMBER YY_HEX
63 %token <str> YY_STR
64 %token YY_COMMENT
65 %token YY_CMP_EQ YY_CMP_NE YY_CMP_LE YY_CMP_GE YY_CMP_LT YY_CMP_GT
66 %token YY_RANGE_OUT YY_RANGE_IN
67 %token <ip6> YY_IPV6
68 %token IPSL_START IPSL_STARTGROUP IPSL_CONTENT
70 %token IPSL_CLOSE IPSL_TRACK IPSL_EOF IPSL_REDIRECT IPSL_ELSE
/freebsd-10.2-release/bin/sh/
H A DMakefile14 GENHDRS= builtins.h nodes.h syntax.h token.h
61 token.h: mktokens
/freebsd-10.2-release/sys/netgraph/bluetooth/include/
H A Dng_btsocket_l2cap.h75 u_int32_t token; /* message token */ member in struct:ng_btsocket_l2cap_raw_pcb
167 u_int32_t token; /* message token */ member in struct:ng_btsocket_l2cap_pcb
/freebsd-10.2-release/usr.sbin/asf/
H A Dasf.c102 * token, which must have enough space for the tokens. Return the
107 tokenize(char *cptr, char *token[], int maxtoken) argument
110 int tokennr; /* index of this token */
119 token[tokennr] = cptr; /* point to it */
/freebsd-10.2-release/usr.sbin/jail/
H A Djailparse.y50 %token PLEQ
51 %token <cs> STR STR1 VAR VAR1
/freebsd-10.2-release/usr.bin/grep/
H A Dgrep.c488 char *token; local
491 while ((token = strsep(&string, "\n")) != NULL)
492 add_pattern(token, strlen(token));
682 char *token; local
685 while ((token = strsep(&string, "\n")) != NULL)
686 add_pattern(token, strlen(token));
/freebsd-10.2-release/sys/contrib/altq/altq/
H A Daltq_cdnr.c513 * internal representation of token bucket parameters
534 tb->token = tb->depth;
539 * simple token bucket meter
590 if (tbm->tb.token < len) {
594 tbm->tb.token = tbm->tb.depth;
596 tbm->tb.token += interval * tbm->tb.rate;
597 if (tbm->tb.token > tbm->tb.depth)
598 tbm->tb.token = tbm->tb.depth;
603 if (tbm->tb.token < len) {
608 tbm->tb.token
[all...]
/freebsd-10.2-release/contrib/openbsm/libbsm/
H A Dbsm_wrappers.c65 token_t *token; local
115 * subject token generation.
140 token = au_to_subject32(auid, geteuid(), getegid(),
143 token = au_to_subject_ex(auid, geteuid(), getegid(),
145 if (token == NULL) {
147 "audit: unable to build subject token");
152 if (au_write(afd, token) < 0) {
164 token = au_to_text(text);
165 if (token == NULL) {
167 "audit: failed to generate text token");
[all...]
/freebsd-10.2-release/contrib/subversion/subversion/libsvn_repos/
H A Dhooks.c516 const char *path, *token;
518 apr_hash_this(hi, (void *)&token, NULL, &val);
523 token));
727 const char **token,
758 if (token)
760 *token = buf->data;
763 else if (token)
764 *token = "";
815 const char *token,
834 args[4] = token
515 const char *path, *token; local
724 svn_repos__hooks_pre_lock(svn_repos_t *repos, apr_hash_t *hooks_env, const char **token, const char *path, const char *username, const char *comment, svn_boolean_t steal_lock, apr_pool_t *pool) argument
810 svn_repos__hooks_pre_unlock(svn_repos_t *repos, apr_hash_t *hooks_env, const char *path, const char *username, const char *token, svn_boolean_t break_lock, apr_pool_t *pool) argument
[all...]
/freebsd-10.2-release/sys/netgraph/bluetooth/socket/
H A Dng_btsocket_l2cap.c393 * so we have to have a socket associated with message token.
411 /* Look for the socket with the token */
412 pcb = ng_btsocket_l2cap_pcb_by_token(msg->header.token);
421 "%s: Got L2CA_Connect response, token=%d, src bdaddr=%x:%x:%x:%x:%x:%x, " \
423 "state=%d\n", __func__, msg->header.token,
459 /* Send disconnect request with "zero" token */
507 /* Look for the socket with the token */
508 pcb = ng_btsocket_l2cap_pcb_by_token(msg->header.token);
517 "%s: Got L2CA_ConnectRsp response, token=%d, src bdaddr=%x:%x:%x:%x:%x:%x, " \
519 __func__, msg->header.token,
567 u_int32_t token = 0; local
1191 ng_btsocket_l2cap_send_l2ca_con_rsp_req(u_int32_t token, ng_btsocket_l2cap_rtentry_p rt, bdaddr_p dst, int ident, int lcid, int result) argument
1296 ng_btsocket_l2cap_send_l2ca_discon_req(u_int32_t token, ng_btsocket_l2cap_pcb_p pcb) argument
1915 static u_int32_t token = 0; local
2621 ng_btsocket_l2cap_pcb_by_token(u_int32_t token) argument
[all...]
/freebsd-10.2-release/contrib/ntp/ntpd/
H A Dntp_scanner.h21 * normal scanning of the next token, forced scanning of the next token
32 * avoid the keyword scanner matching a token where a string is needed.
57 * (the token completed for terminal states) is implied by the index of
59 * there are more scan states than the highest T_ token number.
63 * states (which do not match a completed token) the followedby
66 * following token(s) to strings.
104 struct LCPOS tokpos; /* current token position */
124 extern const char *keyword(int token);
/freebsd-10.2-release/contrib/subversion/subversion/libsvn_diff/
H A Ddeprecated.c88 void **token,
93 return fwb->vtable->datasource_get_next_token(hash, token, fwb->old_baton,
109 void *token)
112 fwb->vtable->token_discard(fwb->old_baton, token);
85 datasource_get_next_token(apr_uint32_t *hash, void **token, void *baton, svn_diff_datasource_e datasource) argument
106 token_discard(void *baton, void *token) argument
/freebsd-10.2-release/contrib/subversion/subversion/libsvn_ra_serf/
H A Dgetlocks.c88 { LOCK, S_, "token", TOKEN,
122 const char *token = svn_hash_gets(attrs, "token");
135 if (! token)
137 /* A lock without a token is not a lock; just an answer that there
167 lock.token = token;
194 name = "token";
119 const char *token = svn_hash_gets(attrs, "token"); local
/freebsd-10.2-release/contrib/wpa/src/eap_common/
H A Deap_pwd_common.h51 u8 token[4]; member in struct:eap_pwd_id
/freebsd-10.2-release/sbin/hastctl/
H A DMakefile17 SRCS+= token.l
/freebsd-10.2-release/sbin/hastd/
H A DMakefile18 SRCS+= token.l
/freebsd-10.2-release/sbin/setkey/
H A DMakefile34 SRCS= setkey.c parse.y token.l
/freebsd-10.2-release/contrib/gdb/gdb/
H A Devent-top.h103 extern void mark_async_signal_handler_wrapper (void *token);
/freebsd-10.2-release/contrib/byacc/test/
H A Dcalc.y15 %token DIGIT LETTER
H A Dcalc2.y22 %token DIGIT LETTER
H A Dcalc3.y25 %token DIGIT LETTER
H A Dcode_calc.y17 %token DIGIT LETTER
H A Derr_syntax27.y25 %token DIGIT LETTER
H A Dpure_calc.y21 %token DIGIT LETTER
/freebsd-10.2-release/sys/cddl/boot/zfs/
H A Dlz4.c217 BYTE token; local
221 token = *ip++;
222 if ((length = (token >> ML_BITS)) == RUN_MASK) {
269 if ((length = (token & ML_MASK)) == ML_MASK) {

Completed in 303 milliseconds

1234567891011>>