Lines Matching refs:hashindex
59 int hashindex; in username() local
61 hashindex = hashit(uid); in username()
62 if (is_empty_hash(hashindex) || (hash_table[hashindex].uid != uid)) in username()
65 hashindex = get_user(uid); in username()
67 return(hash_table[hashindex].name); in username()
95 int hashindex; in enter_user() local
101 hashindex = hashit(uid); in enter_user()
103 if (!is_empty_hash(hashindex)) in enter_user()
107 if (hash_table[hashindex].uid == uid) in enter_user()
108 return(hashindex); /* Fortuitous find */ in enter_user()
112 hash_table[hashindex].uid = uid; in enter_user()
113 (void) strncpy(hash_table[hashindex].name, name, MAXLOGNAME - 1); in enter_user()
114 return(hashindex); in enter_user()