/external/javasqlite/src/main/java/SQLite/ |
D | TableResult.java | 66 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()
|
D | Database.java | 293 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/ |
D | TableResultX.java | 17 public TableResultX(int maxrows) { in TableResultX() argument 18 super(maxrows); in TableResultX() 31 this.maxrows = tr.maxrows; in TableResultX()
|
D | JDBCStatement.java | 11 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/ |
D | slabratetop.py | 50 maxrows = int(args.maxrows) variable 136 if line >= maxrows:
|
D | biotop.py | 48 maxrows = int(args.maxrows) variable 229 if line >= maxrows:
|
D | filetop.py | 55 maxrows = int(args.maxrows) variable 204 if line >= maxrows:
|
D | javastat_example.txt | 68 -r MAXROWS, --maxrows MAXROWS
|
D | phpstat_example.txt | 68 -r MAXROWS, --maxrows MAXROWS
|
D | nodestat_example.txt | 68 -r MAXROWS, --maxrows MAXROWS
|
D | rubystat_example.txt | 68 -r MAXROWS, --maxrows MAXROWS
|
D | pythonstat_example.txt | 68 -r MAXROWS, --maxrows MAXROWS
|
D | tclstat_example.txt | 68 -r MAXROWS, --maxrows MAXROWS
|
D | perlstat_example.txt | 68 -r MAXROWS, --maxrows MAXROWS
|
D | slabratetop_example.txt | 127 -r MAXROWS, --maxrows MAXROWS
|
D | filetop_example.txt | 148 -r MAXROWS, --maxrows MAXROWS
|
D | biotop_example.txt | 180 -r MAXROWS, --maxrows MAXROWS
|
/external/bc/include/ |
D | history.h | 136 l->maxrows, old_rows); \
|
/external/python/cpython3/Modules/_sqlite/ |
D | cursor.c | 792 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/ |
D | cursor.c | 942 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/ |
D | ustat_example.txt | 68 -r MAXROWS, --maxrows MAXROWS
|
D | ustat.py | 283 if line >= self.args.maxrows:
|