Searched defs:token (Results 1 - 7 of 7) sorted by relevance

/ndk/sources/host-tools/nawk-20071023/
H A Dmaketab.c38 { int token; member in struct:xx
149 /* fprintf(stderr, "maketab funny token %d %s ignored\n", tok, buf); */
159 for (p=proc; p->token!=0; p++)
160 table[p->token-FIRSTTOKEN] = p->name;
173 printf(" sprintf(buf, \"token %%d\", n);\n");
/ndk/sources/host-tools/ndk-stack/
H A Dndk-stack-parser.c108 /* Returns pointer to the next token (a character other than space, or a tab)
113 /* Gets next token from the string.
115 * str - String where to get the next token from. Note that if string begins
116 * with a separator, this routine will return first token after that
117 * separator. If string begins with a token, this routine will return next
118 * token after that.
119 * token - Upon success contains a copy of the next token in the string.
120 * size - Size of the 'token' buffer.
122 * Beginning of the returned token i
260 get_next_token(const char* str, char* token, size_t size) argument
[all...]
/ndk/sources/host-tools/sed-4.2.1/lib/
H A Dregex_internal.c1406 /* Add the token TOKEN to dfa->nodes, and return the index of the token.
1411 re_dfa_add_node (re_dfa_t *dfa, re_token_t token)
1445 dfa->nodes[dfa->nodes_len] = token;
1449 int type = token.type;
1408 re_dfa_add_node(re_dfa_t *dfa, re_token_t token) argument
H A Dregcomp.c58 static Idx fetch_number (re_string_t *input, re_token_t *token,
60 static int peek_token (re_token_t *token, re_string_t *input,
65 re_token_t *token, reg_syntax_t syntax,
68 re_token_t *token, reg_syntax_t syntax,
71 re_token_t *token, reg_syntax_t syntax,
74 re_token_t *token, reg_syntax_t syntax,
77 re_dfa_t *dfa, re_token_t *token,
80 re_token_t *token, reg_syntax_t syntax,
84 re_token_t *token, int token_len,
90 re_token_t *token);
1766 peek_token(re_token_t *token, re_string_t *input, reg_syntax_t syntax) argument
2005 peek_token_bracket(re_token_t *token, re_string_t *input, reg_syntax_t syntax) argument
2135 parse_reg_exp(re_string_t *regexp, regex_t *preg, re_token_t *token, reg_syntax_t syntax, Idx nest, reg_errcode_t *err) argument
2176 parse_branch(re_string_t *regexp, regex_t *preg, re_token_t *token, reg_syntax_t syntax, Idx nest, reg_errcode_t *err) argument
2216 parse_expression(re_string_t *regexp, regex_t *preg, re_token_t *token, reg_syntax_t syntax, Idx nest, reg_errcode_t *err) argument
2432 parse_sub_exp(re_string_t *regexp, regex_t *preg, re_token_t *token, reg_syntax_t syntax, Idx nest, reg_errcode_t *err) argument
2470 parse_dup_op(bin_tree_t *elem, re_string_t *regexp, re_dfa_t *dfa, re_token_t *token, reg_syntax_t syntax, reg_errcode_t *err) argument
2755 parse_bracket_exp(re_string_t *regexp, re_dfa_t *dfa, re_token_t *token, reg_syntax_t syntax, reg_errcode_t *err) argument
3313 parse_bracket_element(bracket_elem_t *elem, re_string_t *regexp, re_token_t *token, int token_len, re_dfa_t *dfa, reg_syntax_t syntax, bool accept_hyphen) argument
3353 parse_bracket_symbol(bracket_elem_t *elem, re_string_t *regexp, re_token_t *token) argument
3688 fetch_number(re_string_t *input, re_token_t *token, reg_syntax_t syntax) argument
3739 create_token_tree(re_dfa_t *dfa, bin_tree_t *left, bin_tree_t *right, const re_token_t *token) argument
[all...]
H A Dregex_internal.h236 /* Node type, These are used by token, node, tree. */
260 /* Token type, these are used only by token. */
492 re_token_t token; member in struct:bin_tree_t
/ndk/sources/host-tools/make-3.81/
H A Djob.c856 job, put a token back into the pipe for it. */
860 char token = '+';
863 /* Write a job token back to the pipe. */
865 EINTRLOOP (r, write (job_fds[1], &token, 1));
869 DB (DB_JOBS, (_("Released token for child %p (%s).\n"),
1634 /* If we are controlling multiple jobs make sure we have a token before
1640 obtaining a token until just before we need it, in start_job_command.
1642 token (since start_job_command is called for each line of the job, not
1649 char token;
1653 DB (DB_JOBS, ("Need a job token; w
855 char token = '+'; local
1643 char token; local
[all...]
H A Dmain.c734 find_and_set_default_shell (char *token)
742 if (!token)
745 search_token = token;
769 (token == NULL || !strcmp (search_token, default_shell))) {
773 /* search token path was found */
1546 jobserver pipe in job.c if we're waiting for a token.
1717 submakes it's the token they were given by their parent. For the
2991 char token = '+';
3009 EINTRLOOP (r, write (job_fds[1], &token, 1));
3026 while (read (job_fds[0], &token,
730 find_and_set_default_shell(char *token) argument
2984 char token = '+'; local
[all...]

Completed in 101 milliseconds