HomeSort by: relevance | last modified time | path
    Searched refs:keywords (Results 1 - 20 of 20) sorted by relevancy

  /src/tests/bin/ps/
Makefile 10 FILES= keywords
t_ps.sh 37 # Parse the "keywords" file into a load of shell variables
42 # for all normal keywords (except aliases), and
66 *) atf_fail "unknown flag in keywords"
69 done <"$(atf_get_srcdir)/keywords"
91 done <"$(atf_get_srcdir)/keywords"
93 # default sets of keywords
102 # Convert a list of keywords like "pid comm" to a regexp
106 local keywords="$1"
108 regexp="$(echo "$keywords" | \
159 # from the specified keywords
    [all...]
  /src/lib/libc/gen/
fmtmsg.c 61 } keywords[] = { variable in typeref:typename:const struct keyword[]
69 static const size_t nkeywords = sizeof (keywords) / sizeof (keywords[0]);
72 * Convert a colon-separated list of known keywords to a set of MM_VERB*
74 * keywords.
88 if (memcmp(str, keywords[i].keyword, keywords[i].len)
90 (*(str + keywords[i].len) == ':' ||
91 *(str + keywords[i].len) == '\0'))
100 if (*(str += keywords[i].len) == ':'
    [all...]
  /src/distrib/utils/x_route/
Makefile 11 SRCS= keywords.c route.c rtutil.c show.c
  /src/sbin/route/
keywords.c 1 /* $NetBSD: keywords.c,v 1.11 2016/04/04 07:37:07 ozaki-r Exp $ */
3 /* WARNING! This file was generated by keywords.sh */
5 #include "keywords.h"
7 struct keytab keywords[] = { variable in typeref:struct:keytab[]
keywords.h 1 /* $NetBSD: keywords.h,v 1.14 2016/04/04 07:37:07 ozaki-r Exp $ */
3 /* WARNING! This file was generated by keywords.sh */
8 } keywords[]; variable in typeref:struct:keytab[]
Makefile 8 SRCS= route.c show.c keywords.c rtutil.c
24 # would like keywords.[ch] to always exist here, so
28 # CLEANFILES+= keywords.c keywords.h
29 # keywords.c keywords.h : keywords.sh
30 # ${HOST_SH} keywords.sh
keywords.sh 2 # $NetBSD: keywords.sh,v 1.11 2013/03/01 18:25:17 joerg Exp $
3 # @(#)keywords 8.2 (Berkeley) 3/19/94
82 exec > keywords.h
86 /* WARNING! This file was generated by keywords.sh */
91 } keywords[];
103 exec > keywords.c
107 /* WARNING! This file was generated by keywords.sh */
109 #include "keywords.h"
111 struct keytab keywords[] = {
route.c 74 #include "keywords.h"
1706 struct keytab *kt = keywords;
  /src/usr.bin/make/unit-tests/
depsrc.mk 27 # Sources that look like keywords but are not known are interpreted as
  /src/usr.sbin/traceroute/
trrt2netbsd 51 my @keywords = ("Author", "Date", "Header", "Id", "Locker", "Log",
94 foreach $key (@keywords) {
  /src/bin/ksh/
table.h 60 /* flag bits used for taliases/builtins/aliases/keywords/functions */
141 EXTERN struct table keywords; /* keywords */ variable in typeref:struct:table
syn.c 695 tinit(&keywords, APERM, 32); /* must be 2^n (currently 20 keywords) */
698 p = tenter(&keywords, tt->name, hash(tt->name));
edit.c 642 glob_table(pat, &w, &keywords);
c_ksh.c 473 tp = mytsearch(&keywords, id, hash(id));
lex.c 737 if ((cf & KEYWORD) && (p = mytsearch(&keywords, ident, h))
  /src/share/examples/puffs/pgfs/
pgfs_db.c 828 const char *keywords[3+1]; local in function:pgfs_connectdb
846 keywords[i] = "dbname";
851 keywords[i] = "user";
855 keywords[i] = "application_name";
858 keywords[i] = NULL;
868 conn = PQconnectdbParams(keywords, values, 0);
  /src/usr.bin/indent/
lexi.c 52 } keywords[] = { variable in typeref:typename:const struct keyword[]
418 const struct keyword *kw = bsearch(token.s, keywords,
419 array_length(keywords), sizeof(keywords[0]), cmp_keyword_by_name);
  /src/usr.bin/xlint/lint1/
lex.c 75 * The C11 keywords are all taken from the reserved namespace. They are added
80 * The C23 keywords are not made available in earlier modes, as they may
106 /* During initialization, these keywords are written to the symbol table. */
127 } keywords[] = { variable in typeref:typename:const struct keyword[]
210 * The symbol table containing all keywords, identifiers and labels. The hash
396 * In the 1990s, GCC defined several keywords that were later
397 * incorporated into C99, therefore in GCC mode, all C99 keywords are
398 * made available. The C11 keywords are made available as well, but
411 /* Write all keywords to the symbol table. */
416 size_t n = sizeof(keywords) / sizeof(keywords[0])
    [all...]
  /src/dist/pf/sbin/pfctl/
parse.y 4192 struct keywords {
4882 return (strcmp(k, ((const struct keywords *)e)->k_name));
4889 static const struct keywords keywords[] = {
5003 const struct keywords *p;
5005 p = bsearch(s, keywords, sizeof(keywords)/sizeof(keywords[0]),
5006 sizeof(keywords[0]), kw_cmp);

Completed in 23 milliseconds