Home | History | Annotate | Download | only in cros

Lines Matching defs:wait

39         Optionally takes a wait condition before the stressor loop. Returns
42 @param start_condition: the new thread will wait until this optional
44 @param start_timeout_secs: how long to wait for |start_condition| to
45 become True, or None to wait forever.
54 Wait for |_start_condition|, and then start the stressor loop.
147 @param start_condition: the new thread will wait to until this optional
149 @param start_timeout_secs: how long to wait for |start_condition| to
150 become True, or None to wait forever.
161 @param timeout: maximum time to wait for a single run of the stressor to
174 calling thread can use wait() to block until the loop completes. If the
175 stressor thread terminates with an exception, wait() will propagate that
176 exception to the thread that called wait().
193 @param start_condition: the new thread will wait to until this optional
195 @param start_timeout_secs: how long to wait for |start_condition| to
196 become True, or None to wait forever.
202 def wait(self, timeout=None):
203 """Wait until the stressor completes.