Lines Matching refs:fetch_count
2538 …def __init__(self, dbref, sql, buffer, head, tail, fetch_count, fetching_done, process_target, wai… argument
2546 self.fetch_count = fetch_count
2631 with self.fetch_count.get_lock():
2632 self.fetch_count.value += fetched
2668 self.fetch_count = Value(c_longlong)
2675 …tcherFn, args=(glb.dbref, sql, self.buffer, self.head, self.tail, self.fetch_count, self.fetching_…
2694 fetch_count = self.fetch_count.value
2695 if fetch_count != self.last_count:
2701 count = fetch_count - self.last_count
2702 self.last_count = fetch_count
2751 self.fetch_count = QSpinBox()
2752 self.fetch_count.setRange(1, 1000000)
2753 self.fetch_count.setValue(10)
2754 self.fetch_count.setSizePolicy(QSizePolicy.Fixed, QSizePolicy.Fixed)
2777 self.hbox.addWidget(self.fetch_count)
2808 self.fetch_count.setEnabled(enable)
2824 return self.fetch_count.value() * glb_chunk_sz
2830 self.fetch_count.hide()