Searched defs:rs (Results 1 - 5 of 5) sorted by relevance

/bind-9.11.3/contrib/dlz/drivers/
H A Ddlz_mysql_driver.c126 void *dbdata, MYSQL_RES **rs)
136 REQUIRE(*rs == NULL);
138 REQUIRE(rs == NULL);
325 *rs = mysql_store_result((MYSQL *) dbi->dbconn);
326 if (*rs == NULL)
368 mysql_process_rs(dns_sdlzlookup_t *lookup, MYSQL_RES *rs) argument
379 row = mysql_fetch_row(rs); /* get a row from the result set */
380 fields = mysql_num_fields(rs); /* how many columns in result set */
385 * one column in rs, it's the data field. use
439 mysql_free_result(rs);
124 mysql_get_resultset(const char *zone, const char *record, const char *client, unsigned int query, void *dbdata, MYSQL_RES **rs) argument
501 MYSQL_RES *rs = NULL; local
541 MYSQL_RES *rs = NULL; local
597 MYSQL_RES *rs = NULL; local
711 MYSQL_RES *rs = NULL; local
744 MYSQL_RES *rs = NULL; local
[all...]
H A Ddlz_postgres_driver.c278 void *dbdata, PGresult **rs)
291 REQUIRE(*rs == NULL);
532 *rs = PQexec((PGconn *)dbi->dbconn, querystring );
538 for (i=0; *rs == NULL && i < 3; i++) {
553 if (PQresultStatus(*rs) == PGRES_TUPLES_OK) {
558 "%d rs ok", dlz_thread_num);
567 "%d clearing rs", dlz_thread_num);
569 PQclear(*rs); /* get rid of it */
571 *rs = NULL;
638 postgres_process_rs(dns_sdlzlookup_t *lookup, PGresult *rs) argument
276 postgres_get_resultset(const char *zone, const char *record, const char *client, unsigned int query, void *dbdata, PGresult **rs) argument
772 PGresult *rs = NULL; local
811 PGresult *rs = NULL; local
866 PGresult *rs = NULL; local
987 PGresult *rs = NULL; local
1022 PGresult *rs = NULL; local
[all...]
/bind-9.11.3/contrib/dlz/modules/mysql/
H A Ddlz_mysql_dynamic.c228 void *dbdata, MYSQL_RES **rs)
397 *rs = mysql_store_result((MYSQL *) dbi->dbconn);
398 if (*rs == NULL)
437 MYSQL_RES *rs)
447 fields = mysql_num_fields(rs); /* how many columns in result set */
448 row = mysql_fetch_row(rs); /* get a row from the result set */
455 * one column in rs, it's the data field. use
504 mysql_free_result(rs);
529 mysql_free_result(rs);
535 row = mysql_fetch_row(rs);
226 mysql_get_resultset(const char *zone, const char *record, const char *client, unsigned int query, void *dbdata, MYSQL_RES **rs) argument
436 mysql_process_rs(mysql_instance_t *db, dns_sdlzlookup_t *lookup, MYSQL_RES *rs) argument
553 MYSQL_RES *rs = NULL; local
590 MYSQL_RES *rs = NULL; local
639 MYSQL_RES *rs = NULL; local
740 MYSQL_RES *rs = NULL; local
771 MYSQL_RES *rs = NULL; local
[all...]
/bind-9.11.3/contrib/dlz/modules/sqlite3/
H A Ddlz_sqlite3_dynamic.c256 sqlite3_res_t *rs = NULL; local
413 rs = malloc(sizeof(sqlite3_res_t));
414 if (rs == NULL) {
419 memset(rs, 0, sizeof(sqlite3_res_t));
421 qres = sqlite3_get_table(dbi->dbconn, querystring, &rs->pazResult,
422 &rs->pnRow, &rs->pnColumn, &rs->pzErrmsg);
425 rs->pzErrmsg != NULL ? rs
474 sqlite3_fetch_row(sqlite3_res_t *rs) argument
487 sqlite3_num_fields(sqlite3_res_t *rs) argument
495 sqlite3_num_rows(sqlite3_res_t *rs) argument
503 sqlite3_free_result(sqlite3_res_t *rs) argument
511 sqlite3_process_rs(sqlite3_instance_t *db, dns_sdlzlookup_t *lookup, sqlite3_res_t *rs) argument
628 sqlite3_res_t *rs = NULL; local
666 sqlite3_res_t *rs = NULL; local
715 sqlite3_res_t *rs = NULL; local
816 sqlite3_res_t *rs = NULL; local
848 sqlite3_res_t *rs = NULL; local
[all...]
/bind-9.11.3/bin/named/
H A Dxfrout.c194 rrstream_noop_pause(rrstream_t *rs) { argument
195 UNUSED(rs);
258 ixfr_rrstream_first(rrstream_t *rs) { argument
259 ixfr_rrstream_t *s = (ixfr_rrstream_t *) rs;
264 ixfr_rrstream_next(rrstream_t *rs) { argument
265 ixfr_rrstream_t *s = (ixfr_rrstream_t *) rs;
270 ixfr_rrstream_current(rrstream_t *rs, argument
274 ixfr_rrstream_t *s = (ixfr_rrstream_t *) rs;
346 axfr_rrstream_first(rrstream_t *rs) { argument
347 axfr_rrstream_t *s = (axfr_rrstream_t *) rs;
369 axfr_rrstream_next(rrstream_t *rs) argument
390 axfr_rrstream_current(rrstream_t *rs, dns_name_t **name, isc_uint32_t *ttl, dns_rdata_t **rdata) argument
398 axfr_rrstream_pause(rrstream_t *rs) argument
467 soa_rrstream_first(rrstream_t *rs) argument
473 soa_rrstream_next(rrstream_t *rs) argument
479 soa_rrstream_current(rrstream_t *rs, dns_name_t **name, isc_uint32_t *ttl, dns_rdata_t **rdata) argument
573 compound_rrstream_first(rrstream_t *rs) argument
584 compound_rrstream_next(rrstream_t *rs) argument
604 compound_rrstream_current(rrstream_t *rs, dns_name_t **name, isc_uint32_t *ttl, dns_rdata_t **rdata) argument
616 compound_rrstream_pause(rrstream_t *rs) argument
[all...]

Completed in 23 milliseconds