Home
last modified time | relevance | path

Searched refs:maxrows (Results 1 – 22 of 22) sorted by relevance

/external/javasqlite/src/main/java/SQLite/
DTableResult.java66 public int maxrows = 0; field in TableResult
86 public TableResult(int maxrows) { in TableResult() argument
87 this.maxrows = maxrows; in TableResult()
126 if (maxrows > 0 && nrows >= maxrows) { in newrow()
DDatabase.java293 public TableResult get_table(String sql, int maxrows) in get_table() argument
295 TableResult ret = new TableResult(maxrows); in get_table()
300 if (maxrows <= 0 || !ret.atmaxrows) { in get_table()
309 if (ret.maxrows > 0) { in get_table()
310 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table()
346 public TableResult get_table(String sql, int maxrows, String args[]) in get_table() argument
348 TableResult ret = new TableResult(maxrows); in get_table()
353 if (maxrows <= 0 || !ret.atmaxrows) { in get_table()
362 if (ret.maxrows > 0) { in get_table()
363 while (ret.nrows < ret.maxrows && vm.step(ret)) { in get_table()
[all …]
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DTableResultX.java17 public TableResultX(int maxrows) { in TableResultX() argument
18 super(maxrows); in TableResultX()
31 this.maxrows = tr.maxrows; in TableResultX()
DJDBCStatement.java11 protected int maxrows = 0; field in JDBCStatement
32 return maxrows; in getMaxRows()
39 maxrows = max; in setMaxRows()
108 tr = conn.db.get_table(sql, maxrows); in executeQuery()
114 tr = conn.db.get_table(sql, maxrows, args); in executeQuery()
/external/bcc/tools/
Dslabratetop.py50 maxrows = int(args.maxrows) variable
136 if line >= maxrows:
Dbiotop.py48 maxrows = int(args.maxrows) variable
229 if line >= maxrows:
Dfiletop.py55 maxrows = int(args.maxrows) variable
204 if line >= maxrows:
Djavastat_example.txt68 -r MAXROWS, --maxrows MAXROWS
Dphpstat_example.txt68 -r MAXROWS, --maxrows MAXROWS
Dnodestat_example.txt68 -r MAXROWS, --maxrows MAXROWS
Drubystat_example.txt68 -r MAXROWS, --maxrows MAXROWS
Dpythonstat_example.txt68 -r MAXROWS, --maxrows MAXROWS
Dtclstat_example.txt68 -r MAXROWS, --maxrows MAXROWS
Dperlstat_example.txt68 -r MAXROWS, --maxrows MAXROWS
Dslabratetop_example.txt127 -r MAXROWS, --maxrows MAXROWS
Dfiletop_example.txt148 -r MAXROWS, --maxrows MAXROWS
Dbiotop_example.txt180 -r MAXROWS, --maxrows MAXROWS
/external/bc/include/
Dhistory.h136 l->maxrows, old_rows); \
/external/python/cpython3/Modules/_sqlite/
Dcursor.c792 int maxrows = self->arraysize; in pysqlite_cursor_fetchmany() local
795 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|i:fetchmany", kwlist, &maxrows)) { in pysqlite_cursor_fetchmany()
808 if (++counter == maxrows) { in pysqlite_cursor_fetchmany()
/external/python/cpython2/Modules/_sqlite/
Dcursor.c942 int maxrows = self->arraysize; in pysqlite_cursor_fetchmany() local
945 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|i:fetchmany", kwlist, &maxrows)) { in pysqlite_cursor_fetchmany()
966 if (++counter == maxrows) { in pysqlite_cursor_fetchmany()
/external/bcc/tools/lib/
Dustat_example.txt68 -r MAXROWS, --maxrows MAXROWS
Dustat.py283 if line >= self.args.maxrows: