HomeSort by: relevance | last modified time | path
    Searched defs:token (Results 1 - 25 of 62) sorted by relevancy

1 2 3

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_symbolizer_test.cc 21 char *token; local in function:__sanitizer::TEST
24 rest = ExtractToken("a;b;c", ";", &token);
25 EXPECT_STREQ("a", token);
27 InternalFree(token);
29 rest = ExtractToken("aaa-bbb.ccc", ";.-*", &token);
30 EXPECT_STREQ("aaa", token);
32 InternalFree(token);
36 int token; local in function:__sanitizer::TEST
37 const char *rest = ExtractInt("123,456;789", ";,", &token);
38 EXPECT_EQ(123, token);
43 uptr token; local in function:__sanitizer::TEST
50 char *token; local in function:__sanitizer::TEST
    [all...]
  /src/bin/sh/
arith_token.c 65 * Scan next arithmetic token, return its type,
69 * refer to the next char after the token returned, except
75 int token; local in function:arith_token
81 token = *buf;
83 if (isdigit(token)) {
91 token = *end;
96 "%.*s", token, (int)(end - buf), buf);
99 VTRACE(DBG_ARITH, ("Arith token ARITH_NUM=%jd\n",
103 } else if (is_name(token)) {
117 VTRACE(DBG_ARITH, ("Arith token ARITH_VAR=\"%s\"\n"
    [all...]
Makefile 12 GENHDRS=builtins.h nodes.h token.h nodenames.h optinit.h
60 token.h: mktokens
arithmetic.c 164 arith_err("token error");
207 primary(int token, union a_token_val *val, int op, int noeval)
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 in function:binop2
280 token = arith_token();
283 b = primary(token, &val, arith_token(), noeval);
303 binop(int token, union a_token_val *val, int op, int noeval
    [all...]
  /src/sbin/cgdconfig/
cgdparse.y 53 } token;
64 %type <token> token deptoken
66 %token <integer> INTEGER
67 %token <string> STRINGLIT
69 %token <token> ALGORITHM KEYLENGTH IVMETHOD VERIFY_METHOD
70 %token <token> KEYGEN SALT ITERATIONS MEMORY PARALLELISM VERSION KEY CMD SHARED
71 %token <token> SUBKE
116 token: ALGORITHM | KEYLENGTH label
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
clc36f.h 16 __u32 token; member in struct:volta_channel_gpfifo_a_v0
event.h 13 __u64 token; /* must be unique */ member in struct:nvif_notify_req_v0
21 __u64 token; member in struct:nvif_notify_rep_v0
ioctl.h 36 __u64 token; member in struct:nvif_ioctl_v0
62 __u64 token; member in struct:nvif_ioctl_new_v0
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
oclass.h 27 u64 token; member in struct:nvkm_oclass
object.h 20 u64 token; member in struct:nvkm_object
  /src/sys/arch/ia64/stand/common/
interp_parse.c 49 * separated token will be returned as a single argv[] element, not
88 char token, tmp, quote, *buf; local in function:parse
100 token = 0;
123 token = isdelim(*(p + 1));
124 if (token)
143 if (token) {
144 PARSE_FAIL((q = strchr(p, token)) == NULL);
159 p = q + (token ? 1 : 0);
164 /* If at end of token, add it */
  /src/usr.bin/ctags/
C.c 66 int token; /* if reading a token */ local in function:c_entries
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 if it starts with a valid token name, else we tak
    [all...]
  /src/usr.bin/tabs/
tabs.c 85 char *term, *arg, *token, *end, *tabs = NULL, *p; local in function:main
154 while ((token = strsep(&p, ", ")) != NULL) {
155 if (*token == '\0')
161 num = strtol(token, &end, 10);
163 errx(EXIT_FAILURE, "%s: invalid tab stop", token);
165 if (*token == '+') {
  /src/usr.sbin/faithd/
prefix.c 194 char *token[4]; local in function:config_load1
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[0], &conf->match, 1) < 0
    [all...]
  /src/sys/arch/alpha/alpha/
mcclock.c 136 uint64_t token = xc_unicast(0, mcclock_trampoline, local in function:mcclock_bounce
138 xc_wait(token);
  /src/usr.bin/ftp/
ruserpass.c 55 static int token(void);
119 while ((t = token()) > 0) switch(t) {
127 if ((t = token()) == -1)
143 while ((t = token()) > 0 &&
147 if ((t = token()) == -1)
166 if ((t = token()) == -1)
178 if ((t = token()) == -1)
276 token(void) function in typeref:typename:int
297 warnx("Token in .netrc too long");
310 warnx("Token in .netrc too long")
    [all...]
  /src/sys/arch/hpc/stand/hpcboot/
file_http.cpp 135 TCHAR *token = wcstok(server, sep); local in function:HttpFile::setRoot
136 for (int i = 0; i < 3 && token; i++, token = wcstok(0, sep)) {
139 if (wcsicmp(token, TEXT("http"))) {
144 if (!_to_ascii(_server_name, token, MAX_PATH))
149 port = _wtoi(token);
333 char *token = libsa::strtok(buf, sep); local in function:HttpFile::_parse_header
334 while (token) {
335 DPRINTFN(2, (TEXT("+token: %S\n"), token));
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_chan.h 17 u32 token; member in struct:nouveau_channel
  /src/tests/net/icmp/
t_ping.c 71 char token; local in function:ATF_TC_BODY
95 ATF_CHECK(read(channel[0], &token, 1) == 1 && token == 'U');
  /src/usr.bin/mklocale/
mklocaledb.c 232 const token_t *token; local in function:mklocaledb
258 token = &category->tokens[0];
259 while (token->key != NULL) {
264 if ((*token->save)(df, token->key, (const char *)line))
267 ++token;
  /src/sys/dev/ppbus/
ppbus_base.c 475 * Search the first occurrence of a token within a string
479 search_token(char *str, int slen, const char *token)
491 /* get token's length */
492 for (tlen = 0, p = token; *p != '\0'; p++)
500 if (str[i+j] != token[j])
520 char * token; local in function:ppbus_pnp_detect
551 if ((token = search_token(str, len, "MFG")) != NULL ||
552 (token = search_token(str, len, "MANUFACTURER")) != NULL)
554 search_token(token, UNKNOWN_LENGTH, ":") + 1);
558 if ((token = search_token(str, len, "MDL")) != NULL |
    [all...]
  /src/lib/libc/gen/
sysctlgetmibinfo.c 415 char sep[2], token[SYSCTL_NAMELEN], local in function:sysctlgetmibinfo_unlocked
456 token[0] = '\0';
490 l = strlcpy(token, piece, sizeof(token));
491 if (l > sizeof(token)) {
497 else if (dot - piece > (intptr_t)(sizeof(token) - 1)) {
498 COPY_OUT_DATA(token, cname, csz, namelenp, nl);
503 strncpy(token, piece, (size_t)(dot - piece));
504 token[dot - piece] = '\0';
508 * i wonder if this "token" is an integer
    [all...]
  /src/lib/libcompat/4.3/
ruserpass.c 60 static int token __P((void));
129 while ((t = token()) != 0) switch(t) {
137 if (token() != ID)
155 while ((t = token()) && t != MACH && t != DEFAULT) switch(t) {
158 if (token()) {
177 if (token() && *apass == NULL) {
268 token() function in typeref:typename:int
  /src/lib/libterminfo/
compile.c 525 char esc, *token; local in function:_ti_get_token
534 for (token = *cap;
553 return token;
595 char *token, *p, *e, *name, *desc, *alias; local in function:_ti_compile
657 for (token = _ti_get_token(&cap, ',');
658 token != NULL && *token != '\0';
659 token = _ti_get_token(&cap, ','))
662 if (!(flags & TIC_COMMENT) && token[0] == '.')
666 if (token[0] == 'O' && token[1] == 'T')
    [all...]
  /src/sys/dev/dm/
dm_target_delay.c 65 kmutex_t token; /* lwkt_token in DragonFly */ member in struct:dm_delay_info
206 mutex_init(&di->token, MUTEX_DEFAULT, IPL_NONE);
407 mutex_enter(&di->token);
416 mutex_exit(&di->token);
421 mutex_destroy(&di->token);
469 mutex_enter(&di->token);
472 mutex_exit(&di->token);
475 mutex_enter(&di->token);
478 mutex_exit(&di->token);

Completed in 26 milliseconds

1 2 3