Searched refs:rows (Results 1 - 4 of 4) sorted by relevance

/httpd/modules/lua/
H A Dlua_dbd.h41 int rows; member in struct:__anon208
H A Dlua_dbd.c148 number of rows affected. If an error is encountered, returns nil as the
227 resultset(N): Fetches one or more rows from a result set.
243 /* Fetch all rows at once? */
304 returns the rows/columns found as a table. If an error is encountered,
341 resultset->rows = apr_dbd_num_tuples(db->driver, results);
379 statement and returns the number of rows matching the query.
434 resultset->rows = apr_dbd_num_tuples(st->db->driver, results);
470 statement and returns the number of rows affected.
/httpd/modules/session/
H A Dmod_session_dbd.c259 int rows = 0; local
276 rv = apr_dbd_pvbquery(dbd->driver, r->pool, dbd->handle, &rows,
286 * if some rows were updated it means a session existed and was updated,
289 if (rows != 0) {
304 rv = apr_dbd_pvbquery(dbd->driver, r->pool, dbd->handle, &rows, statement,
315 * if some rows were inserted it means a session was inserted, so we are
318 if (rows != 0) {
323 "the session insert query did not cause any rows to be added "
339 int rows = 0; local
357 rv = apr_dbd_pvbquery(dbd->driver, r->pool, dbd->handle, &rows, statemen
[all...]
/httpd/modules/ssl/
H A Dssl_engine_io.c2105 int i, j, rows, trunc; local
2111 rows = (len / DUMP_WIDTH);
2112 if ((rows * DUMP_WIDTH) < len)
2113 rows++;
2116 for(i = 0 ; i< rows; i++) {

Completed in 1633 milliseconds