Lines Matching refs:bucket
688 hashentry_t *bucket; local
690 bucket = hash_tbl[opt_hash(name)];
691 for (; bucket != NULL; bucket = bucket->next) {
692 if (bucket->opt.p->name != NULL) {
693 if ((strcmp(bucket->opt.p->name, name) == 0) &&
694 !(bucket->opt.p->flags & OPT_DISABLE)) {
695 return (bucket->opt.p);
899 register hashentry_t *bucket; local
919 bucket = hash_tbl[loc];
920 if (bucket != NULL) {
922 if (!(bucket->opt.p->flags & OPT_DISABLE) &&
923 strcmp(sopt->name, bucket->opt.p->name) == 0) {
926 bucket->opt.p->flags |= OPT_DISABLE;
928 if (bucket->next == NULL)
930 bucket = bucket->next;
932 bucket->next = he;
1000 hashentry_t *bucket; local
1020 for (bucket = hash_tbl[i]; bucket != NULL; bucket = bucket->next) {
1024 sopt[sofar++].p = bucket->opt.p;