Lines Matching refs:fetch_count
2541 …def __init__(self, dbref, sql, buffer, head, tail, fetch_count, fetching_done, process_target, wai… argument
2549 self.fetch_count = fetch_count
2634 with self.fetch_count.get_lock():
2635 self.fetch_count.value += fetched
2671 self.fetch_count = Value(c_longlong)
2678 …tcherFn, args=(glb.dbref, sql, self.buffer, self.head, self.tail, self.fetch_count, self.fetching_…
2697 fetch_count = self.fetch_count.value
2698 if fetch_count != self.last_count:
2704 count = fetch_count - self.last_count
2705 self.last_count = fetch_count
2754 self.fetch_count = QSpinBox()
2755 self.fetch_count.setRange(1, 1000000)
2756 self.fetch_count.setValue(10)
2757 self.fetch_count.setSizePolicy(QSizePolicy.Fixed, QSizePolicy.Fixed)
2780 self.hbox.addWidget(self.fetch_count)
2811 self.fetch_count.setEnabled(enable)
2827 return self.fetch_count.value() * glb_chunk_sz
2833 self.fetch_count.hide()