Home | History | Annotate | Download | only in src

Lines Matching defs:table

3 /*	$OpenBSD: table.h,v 1.7 2005/12/11 20:31:21 otto Exp $	*/
354 /* Table flag type - needs > 16 and < 32 bits */
887 struct table {
889 struct tbl **tbls; /* hashed table items */
893 struct tbl { /* table item */
1003 struct table vars; /* local variables */
1004 struct table funs; /* local functions */
1021 EXTERN struct table taliases; /* tracked aliases */
1022 EXTERN struct table builtins; /* built-in commands */
1023 EXTERN struct table aliases; /* aliases */
1024 EXTERN struct table keywords; /* keywords */
1026 EXTERN struct table homedirs; /* homedir() cache */
1587 void ktinit(struct table *, Area *, size_t);
1588 struct tbl *ktsearch(struct table *, const char *, uint32_t);
1589 struct tbl *ktenter(struct table *, const char *, uint32_t);
1591 void ktwalk(struct tstate *, struct table *);
1593 struct tbl **ktsort(struct table *);