Lines Matching defs:j
148 db_dictlog_entry *j;
158 j = get();
159 if (j == NULL)
161 if ((*func)(j, dict, &count) == FALSE) done = TRUE;
162 if (clean) delete_log_entry(j);
171 print_log_entry(db_dictlog_entry *j, char*, int *count)
173 j->print();
192 db_dictlog_entry *j;
200 j = new db_dictlog_entry;
202 if (j == NULL) {
206 if (xdr_db_dictlog_entry(&(xdr), j) == FALSE) {
207 delete_log_entry (j);
212 if (! j->sane()) {
214 delete_log_entry(j);
215 j = NULL;
217 READUNLOCK(this, j, "ru db_dictlog::get");
218 return (j);
223 db_dictlog::append(db_dictlog_entry *j)
234 status = ((xdr_db_dictlog_entry(&(xdr), j)) ? 0 : -1);