HomeSort by relevance Sort by last modified time
    Searched refs:stop_event (Results 1 - 2 of 2) sorted by null

  /external/autotest/site_utils/
rpc_flight_recorder.py 48 def update_shards(shards, shards_lock, period=600, stop_event=None):
54 @param stop_event: Event that can be set to stop polling
56 while(not stop_event or not stop_event.is_set()):
87 stop_event=None):
94 @param stop_event: Event that can be set to stop polling
98 while(not stop_event or not stop_event.is_set()):
141 shard_kwargs = {'stop_event': self._stop_event}
153 'stop_event':self._stop_event
    [all...]
  /external/python/cpython3/Lib/multiprocessing/
managers.py 151 self.stop_event = threading.Event()
158 while not self.stop_event.is_set():
159 self.stop_event.wait(1)
224 while not self.stop_event.is_set():
345 self.stop_event.set()
    [all...]

Completed in 350 milliseconds