Lines Matching defs:where
425 db_mindex::first(entryp *where, entry_object ** answer)
454 entry_object_p ptr = table->first_entry(where);
467 * valid and next entry is found; DB_NOTFOUND otherwise. Sets 'where' to
468 * location of where entry is found for input as subsequent 'next' operation.
471 db_mindex::next(entryp previous, entryp *where, entry_object **answer)
480 entry_object * ptr = table->next_entry(previous, where);
538 * setting the pointer 'answer' to point to a copy of it. 'where' is set
539 * so that the other answers could be gotten by passing 'where' to 'next'
545 db_next_index_desc **where, entry_object ** answer)
560 *where = copy_result_list(rp);
562 entry_object_p ptr = table->get_entry((*where)->location);
577 * valid and next entry is found; DB_NOTFOUND otherwise. Sets 'where' to
578 * location of where entry is found for input as subsequent 'next' operation.
581 db_mindex::next(db_next_index_desc *previous, db_next_index_desc **where,
592 *where = previous->next;
594 if (*where == NULL)
598 table->get_entry((*where)->location);
652 entryp where;
706 ptr = table->first_entry(&where);
714 ptr = table->next_entry(where, &where);
734 * 2. table where entry is stored.
806 /* update table where record is stored */