Lines Matching refs:aCond
135 ::osl::Condition aCond; in ctors_001()
136 bRes = aCond.check( ); in ctors_001()
144 ::osl::Condition aCond; in ctors_002()
145 aCond.set( ); in ctors_002()
146 bRes = aCond.check( ); in ctors_002()
169 ::osl::Condition aCond; in set_001()
170 aCond.set( ); in set_001()
171 bRes = aCond.check( ); in set_001()
179 ::osl::Condition aCond; in set_002()
180 ConditionThread myThread1( aCond, thread_type_wait ); in set_002()
184 ConditionThread myThread2( aCond, thread_type_set ); in set_002()
188 bRes2 = aCond.check( ); in set_002()
215 ::osl::Condition aCond; in reset_001()
216 aCond.reset( ); in reset_001()
218 ConditionThread myThread( aCond, thread_type_wait ); in reset_001()
221 bRes2 = aCond.check( ); in reset_001()
223 aCond.set( ); in reset_001()
233 ::osl::Condition aCond; in reset_002()
234 aCond.reset( ); in reset_002()
235 bRes = aCond.check( ); in reset_002()
236 aCond.set( ); in reset_002()
237 bRes1 = aCond.check( ); in reset_002()
294 ::osl::Condition aCond; in wait_002()
297 aCond.reset( ); in wait_002()
298 bRes = aCond.check( ); in wait_002()
299 wRes = aCond.wait( tv1 ); in wait_002()
301 aCond.set( ); in wait_002()
302 wRes1 = aCond.wait( tv1 ); in wait_002()
303 bRes1 = aCond.check( ); in wait_002()
328 ::osl::Condition aCond; in check_001()
330 aCond.reset( ); in check_001()
331 bRes = aCond.check( ); in check_001()
332 aCond.set( ); in check_001()
333 bRes1 = aCond.check( ); in check_001()
341 ::osl::Condition aCond; in check_002()
342 aCond.reset( ); in check_002()
344 ConditionThread myThread( aCond, thread_type_set ); in check_002()
347 bRes = aCond.check( ); in check_002()
349 ConditionThread myThread1( aCond, thread_type_reset ); in check_002()
352 bRes1 = aCond.check( ); in check_002()