Searched defs:cursor (Results 1 - 4 of 4) sorted by relevance

/bind-9.11.3/bin/tools/
H A Dnamed-nzd2nzf.c29 MDB_cursor *cursor = NULL; local
68 status = mdb_cursor_open(txn, dbi, &cursor);
75 for (status = mdb_cursor_get(cursor, &key, &data, MDB_FIRST);
77 status = mdb_cursor_get(cursor, &key, &data, MDB_NEXT))
94 mdb_cursor_close(cursor);
/bind-9.11.3/contrib/dlz/bin/dlzbdb/
H A Ddlzbdb.c53 * 5 unable to perform BDB cursor operation
150 DBC *cursor; /* database cursor */ member in struct:bdb_instance
151 DBC *cursor2; /* second cursor used during list operation. */
152 DBC *cursor3; /* third cursor used during list operation */
153 DBC *cursor4; /* fourth cursor used during list operation */
415 if (db.cursor != NULL) {
416 db.cursor->c_close(db.cursor);
417 db.cursor
[all...]
/bind-9.11.3/lib/isc/
H A Dentropy.c89 isc_uint32_t cursor; /*%< current add point in the pool */ member in struct:__anon218
277 val ^= rp->pool[(rp->cursor + TAP1) & (RND_POOLWORDS - 1)];
278 val ^= rp->pool[(rp->cursor + TAP2) & (RND_POOLWORDS - 1)];
279 val ^= rp->pool[(rp->cursor + TAP3) & (RND_POOLWORDS - 1)];
280 val ^= rp->pool[(rp->cursor + TAP4) & (RND_POOLWORDS - 1)];
281 val ^= rp->pool[(rp->cursor + TAP5) & (RND_POOLWORDS - 1)];
283 rp->pool[rp->cursor++] ^= val;
285 rp->pool[rp->cursor++] ^=
296 if (rp->cursor == RND_POOLWORDS) {
297 rp->cursor
[all...]
/bind-9.11.3/bin/named/
H A Dserver.c6980 MDB_cursor *cursor = NULL; local
6984 status = mdb_cursor_open(txn, dbi, &cursor);
6989 for (status = mdb_cursor_get(cursor, &key, &data, MDB_FIRST);
6991 status = mdb_cursor_get(cursor, &key, &data, MDB_NEXT))
7034 mdb_cursor_close(cursor);

Completed in 72 milliseconds