Searched refs:cursor (Results 1 - 5 of 5) sorted by relevance

/bind-9.6-ESV-R11/contrib/dlz/bin/dlzbdb/
H A Ddlzbdb.c62 * 5 unable to perform BDB cursor operation
159 DBC *cursor; /* database cursor */ member in struct:bdb_instance
160 DBC *cursor2; /* second cursor used during list operation. */
161 DBC *cursor3; /* third cursor used during list operation */
162 DBC *cursor4; /* fourth cursor used during list operation */
424 if (db.cursor != NULL) {
425 db.cursor->c_close(db.cursor);
426 db.cursor
[all...]
/bind-9.6-ESV-R11/lib/isc/
H A Dentropy.c93 isc_uint32_t cursor; /*%< current add point in the pool */ member in struct:__anon150
281 val ^= rp->pool[(rp->cursor + TAP1) & (RND_POOLWORDS - 1)];
282 val ^= rp->pool[(rp->cursor + TAP2) & (RND_POOLWORDS - 1)];
283 val ^= rp->pool[(rp->cursor + TAP3) & (RND_POOLWORDS - 1)];
284 val ^= rp->pool[(rp->cursor + TAP4) & (RND_POOLWORDS - 1)];
285 val ^= rp->pool[(rp->cursor + TAP5) & (RND_POOLWORDS - 1)];
287 rp->pool[rp->cursor++] ^= val;
289 rp->pool[rp->cursor++] ^=
300 if (rp->cursor == RND_POOLWORDS) {
301 rp->cursor
[all...]
/bind-9.6-ESV-R11/contrib/sdb/bdb/
H A Dbdb.c113 if ((ret = ((DB *)dbdata)->cursor((DB *)dbdata, NULL, &c, 0)) != 0) {
117 ISC_MSG_FAILED, "DB->cursor: %s",
165 if ((ret = ((DB *)dbdata)->cursor((DB *)dbdata, NULL, &c, 0)) != 0) {
169 ISC_MSG_FAILED, "DB->cursor: %s",
/bind-9.6-ESV-R11/contrib/dlz/drivers/
H A Ddlz_bdb_driver.c251 /* get a cursor to loop through zone data */
252 if (db->client->cursor(db->client, NULL, &client_cursor, 0) != 0) {
313 /* get a cursor to loop through zone data */
314 if (db->zone->cursor(db->zone, NULL, &zone_cursor, 0) != 0) {
417 /* get a cursor to loop through zone data */
418 if (db->zone->cursor(db->zone, NULL, &zone_cursor, 0) != 0) {
482 /* get a cursor to loop through zone data */
483 if (db->zone->cursor(db->zone, NULL, &zone_cursor, 0) != 0) {
502 /* get a cursor to loop through host data */
503 if (db->host->cursor(d
[all...]
H A Ddlz_bdbhpt_driver.c318 * 3) Loop through the dns_xfr database with a cursor to get
357 /* get a cursor to loop through dns_xfr table */
358 if (db->xfr->cursor(db->xfr, NULL, &xfr_cursor, 0) != 0) {
363 /* get a cursor to loop through dns_data table */
364 if (db->data->cursor(db->data, NULL, &dns_cursor, 0) != 0) {
567 /* get a cursor to loop through data */
568 if (db->data->cursor(db->data, NULL, &data_cursor, 0) != 0) {
598 /* get rid of cursor */

Completed in 16 milliseconds