Lines Matching defs:obj
554 db_table::setEntryExp(entryp where, entry_obj *obj, int initialLoad) {
565 if (obj != 0) {
566 if (obj->en_type != 0 &&
567 strcmp(obj->en_type, "IN_DIRECTORY") == 0) {
595 o = unmakePseudoEntryObj(obj, 0);
650 db_table::add_entry(entry_object *obj, int initialLoad) {
666 setEntryExp(where, obj, initialLoad);
670 tab[where] = new_entry(obj);
685 db_table::replace_entry(entryp where, entry_object * obj)
692 setEntryExp(where, obj, 0);
697 tab[where] = obj;
908 db_table::dupEntry(entry_object *obj, entryp loc) {
909 if (obj == 0 || loc < 0 || loc >= table_size || tab == 0 ||
913 if (sameEntry(obj, tab[loc])) {