| /netbsd-src/external/gpl2/xcvs/dist/src/ |
| H A D | fileattr.c | 26 static List *attrlist; variable 52 assert (attrlist == NULL); in fileattr_startdir() 96 attrlist = getlist (); in fileattr_read() 125 if (addnode (attrlist, newnode) != 0) in fileattr_read() 177 if (attrlist == NULL) in fileattr_get() 179 if (attrlist == NULL) in fileattr_get() 188 node = findnode (attrlist, filename); in fileattr_get() 342 if (attrlist == NULL) in fileattr_set() 344 if (attrlist == NULL) in fileattr_set() 349 attrlist = getlist (); in fileattr_set() [all …]
|
| /netbsd-src/usr.bin/config/ |
| H A D | sem.h | 49 int defattr0(const char *, struct loclist *, struct attrlist *, int); 50 int defattr(const char *, struct loclist *, struct attrlist *, int); 51 int defiattr(const char *, struct loclist *, struct attrlist *, int); 52 int defdevclass(const char *, struct loclist *, struct attrlist *, int); 53 void defdev(struct devbase *, struct loclist *, struct attrlist *, int); 55 struct attrlist *); 86 int has_attr(struct attrlist *, const char *);
|
| H A D | defs.h | 165 struct attrlist *m_deps; 167 struct attrlist *m_attrs; 217 struct attrlist { struct 218 struct attrlist *al_next; argument 283 struct attrlist *d_attrs; /* attributes, if any */ 300 struct attrlist *d_attrs; /* attributes, if any */ 677 struct attrlist *attrlist_create(void); 678 struct attrlist *attrlist_cons(struct attrlist *, struct attr *); 679 void attrlist_destroy(struct attrlist *); 680 void attrlist_destroyall(struct attrlist *);
|
| H A D | util.c | 334 struct attrlist * 337 struct attrlist *al; in attrlist_create() 345 struct attrlist * 346 attrlist_cons(struct attrlist *next, struct attr *a) in attrlist_cons() 348 struct attrlist *al; in attrlist_cons() 357 attrlist_destroy(struct attrlist *al) in attrlist_destroy() 365 attrlist_destroyall(struct attrlist *al) in attrlist_destroyall() 367 struct attrlist *next; in attrlist_destroyall()
|
| H A D | gram.y | 90 DECL_ALLOCWRAP(attrlist); 135 static struct attrlist *mk_attrlist(struct attrlist *, struct attr *); 162 struct attrlist *attrlist; member 210 %type <attrlist> depend_list depends 614 depend { $$ = MK2(attrlist, NULL, $1); } 615 | depends ',' depend { $$ = MK2(attrlist, $1, $3); } 1195 struct attrlist *al = wrapstack[i].ptr; in wrap_cleanup() 1238 DEF_ALLOCWRAP(attrlist); 1271 static struct attrlist * 1272 mk_attrlist(struct attrlist *next, struct attr *a) in mk_attrlist()
|
| H A D | sem.c | 78 static int has_errobj(struct attrlist *, struct attr *); 178 struct attrlist *al; in finddep() 206 struct attrlist *al; in fixdev() 328 defattr0(const char *name, struct loclist *locs, struct attrlist *deps, in defattr0() 341 defattr(const char *name, struct loclist *locs, struct attrlist *deps, in defattr() 345 struct attrlist *al; in defattr() 401 defiattr(const char *name, struct loclist *locs, struct attrlist *deps, in defiattr() 431 defdevclass(const char *name, struct loclist *locs, struct attrlist *deps, in defdevclass() 467 has_errobj(struct attrlist *al, struct attr *obj) in has_errobj() 481 has_attr(struct attrlist *a [all...] |
| H A D | lint.c | 131 struct attrlist *al; in do_emit_instances()
|
| H A D | mkioconf.c | 217 struct attrlist *al; in emitcfdrivers()
|
| H A D | mkmakefile.c | 438 struct attrlist *al; in weighattr()
|
| H A D | main.c | 2010 struct attrlist *al; in do_kill_orphans()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/darwin/sys/ |
| H A D | attr.d | 29 void getattrlist(scope const char* path, scope attrlist* attrList, scope void* attrBuf, 32 void setattrlist(scope const char* path, scope attrlist* attrList, scope void* attrBuf, 55 struct attrlist struct 295 attrlist* returnattrs; 304 attrlist searchattrs; 329 attrlist al;
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/ |
| H A D | friend.c | 480 tree attrlist, enum overload_flags flags, in do_friend() argument 509 cplus_decl_attributes (&decl, attrlist, 0); in do_friend()
|
| H A D | decl2.c | 829 tree attrlist) in grokfield() argument 841 value = grokdeclarator (declarator, declspecs, FIELD, init != 0, &attrlist); in grokfield() 874 if (attrlist) in grokfield() 884 cplus_decl_attributes (&value, attrlist, attrflags); in grokfield() 989 if (attrlist) in grokfield() 990 cplus_decl_attributes (&value, attrlist, 0); in grokfield() 1046 tree attrlist) in grokbitfield() argument 1049 init != NULL_TREE, &attrlist); in grokbitfield() 1134 if (attrlist) in grokbitfield() 1135 cplus_decl_attributes (&value, attrlist, /*flags=*/0); in grokbitfield()
|
| H A D | decl.c | 9463 tree* attrlist, in grokfndecl() argument 9836 tree ods = lookup_attribute ("omp declare simd", *attrlist); in grokfndecl() 9879 *attrlist); in grokfndecl() 9886 if (attrlist) in grokfndecl() 9888 cplus_decl_attributes (&decl, *attrlist, 0); in grokfndecl() 9889 *attrlist = NULL_TREE; in grokfndecl() 11024 tree* attrlist) in grokdeclarator() argument 12770 if (attrlist) in grokdeclarator() 12771 *attrlist = chainon (returned_attrs, *attrlist); in grokdeclarator() 12773 attrlist = &returned_attrs; in grokdeclarator() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
| H A D | decl2.cc | 961 tree attrlist) in grokfield() argument 983 value = grokdeclarator (declarator, declspecs, FIELD, initialized, &attrlist); in grokfield() 1016 if (attrlist) in grokfield() 1026 cplus_decl_attributes (&value, attrlist, attrflags); in grokfield() 1112 if (attrlist) in grokfield() 1113 cplus_decl_attributes (&value, attrlist, 0); in grokfield() 1128 if (attrlist) in grokfield() 1129 cplus_decl_attributes (&value, attrlist, 0); in grokfield() 1182 tree attrlist) in grokbitfield() argument 1185 init != NULL_TREE, &attrlist); in grokbitfield() [all …]
|
| H A D | decl.cc | 10090 tree* attrlist, in grokfndecl() argument 10465 tree ods = lookup_attribute ("omp declare simd", *attrlist); in grokfndecl() 10510 *attrlist); in grokfndecl() 10517 if (attrlist) in grokfndecl() 10519 cplus_decl_attributes (&decl, *attrlist, 0); in grokfndecl() 10520 *attrlist = NULL_TREE; in grokfndecl() 11694 tree* attrlist) in grokdeclarator() argument 12113 if (attrlist && *attrlist == error_mark_node) in grokdeclarator() 12114 *attrlist = NULL_TREE; in grokdeclarator() 12121 if (attrlist && lookup_attribute ("unavailable", *attrlist)) in grokdeclarator() [all …]
|
| /netbsd-src/crypto/dist/ipsec-tools/src/racoon/ |
| H A D | isakmp_cfg.c | 1723 int attrlist[] = { local 1736 attrcount = sizeof(attrlist) / sizeof(*attrlist); 1752 attr->type = htons(attrlist[i]);
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | attribs.c | 1868 decls_mismatched_attributes (tree tmpl, tree decl, tree attrlist, in decls_mismatched_attributes() argument 1893 decl_attrs[0] = attrlist; in decls_mismatched_attributes() 1895 decl_attrs[1] = attrlist; in decls_mismatched_attributes()
|
| /netbsd-src/external/bsd/openldap/dist/doc/guide/admin/ |
| H A D | access-control.sdf | 42 > [filter=<ldapfilter>] [attrs=<attrlist>] 45 > <attrlist> ::= <attr> [val[.<basic-style>]=<regex>] | <attr> , <attrlist> 380 > [filter=<ldapfilter>] [attrs=<attrlist>] 383 > <attrlist> ::= <attr> [val[.<basic-style>]=<regex>] | <attr> , <attrlist> 953 Actually, names in {{attrlist}} that are prefixed by {{@}} are directly treated
|
| H A D | dbtools.sdf | 77 > index {<attrlist> | default} [pres,eq,approx,sub,none] 162 > index {<attrlist> | default} [pres,eq,approx,sub,none]
|
| H A D | slapdconfig.sdf | 681 H4: index: {<attrlist> | default} [pres,eq,approx,sub,none] 684 attribute. If only an {{EX:<attrlist>}} is given, the default 773 H4: multival: { <attrlist> | default } <integer> hi,<integer> lo
|
| H A D | aspell.en.pws | 556 attrlist
|
| H A D | slapdconf2.sdf | 824 H4: olcDbIndex: {<attrlist> | default} [pres,eq,approx,sub,none] 827 attribute. If only an {{EX:<attrlist>}} is given, the default 922 H4: olcDbMultival: { <attrlist> | default } <integer> hi,<integer> lo
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | attribs.cc | 2067 decls_mismatched_attributes (tree tmpl, tree decl, tree attrlist, in decls_mismatched_attributes() argument 2092 decl_attrs[0] = attrlist; in decls_mismatched_attributes() 2094 decl_attrs[1] = attrlist; in decls_mismatched_attributes()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | file.d | 1481 static struct attrlist in version() struct 1486 extern(C) int setattrlist(in char* path, scope ref attrlist attrs, in version() 1582 attrlist attrs = { bitmapcount: 5, reserved: 0, in setTimesImpl()
|