Searched refs:rows (Results 1 - 5 of 5) sorted by relevance
/bind-9.11.3/contrib/dlz/drivers/ |
H A D | dlz_postgres_driver.c | 642 unsigned int rows; local 650 rows = PQntuples(rs); /* how many rows in result set */ 652 for (i=0; i < rows; i++) { 753 if (rows > 0) 773 unsigned int rows; local 792 /* count how many rows in result set */ 793 rows = PQntuples(rs); 797 /* if we returned any rows, zone is supported. */ 798 if (rows > 812 unsigned int rows; local 868 unsigned int rows; local [all...] |
H A D | dlz_mysql_driver.c | 502 my_ulonglong rows; local 520 /* count how many rows in result set */ 521 rows = mysql_num_rows(rs); 525 /* if we returned any rows, zone is supported. */ 526 if (rows > 0) { 531 /* no rows returned, zone is not supported. */ 542 my_ulonglong rows; local 574 /* count how many rows in result set */ 575 rows = mysql_num_rows(rs); 579 /* if we returned any rows, zon [all...] |
/bind-9.11.3/lib/isc/tests/ |
H A D | random_test.c | 195 matrix_binaryrank(isc_uint32_t *bits, size_t rows, size_t cols) { argument 201 for (k = 0; k < rows; k++) { 207 if (i < rows) 227 for (j = i + 1; j < rows; j++) {
|
/bind-9.11.3/contrib/dlz/modules/mysql/ |
H A D | dlz_mysql_dynamic.c | 554 my_ulonglong rows; local 573 * if we returned any rows, the zone is supported. 575 rows = mysql_num_rows(rs); 577 if (rows > 0) { 591 my_ulonglong rows; local 619 * count how many rows in result set; if we returned any, 622 rows = mysql_num_rows(rs); 624 if (rows > 0)
|
/bind-9.11.3/contrib/dlz/modules/sqlite3/ |
H A D | dlz_sqlite3_dynamic.c | 99 unsigned int pnRow; /* Number of result rows */ 629 sqlite3_uint64 rows; local 648 * if we returned any rows, the zone is supported. 650 rows = sqlite3_num_rows(rs); 652 if (rows > 0) { 667 sqlite3_uint64 rows; local 695 * count how many rows in result set; if we returned any, 698 rows = sqlite3_num_rows(rs); 700 if (rows > 0)
|
Completed in 20 milliseconds