Lines Matching defs:wait

81 void wait( sc_simcontext* );
82 void wait( const sc_event&, sc_simcontext* );
83 void wait( const sc_event_or_list&, sc_simcontext* );
84 void wait( const sc_event_and_list&, sc_simcontext* );
85 void wait( const sc_time&, sc_simcontext* );
86 void wait( const sc_time&, const sc_event&, sc_simcontext* );
87 void wait( const sc_time&, const sc_event_or_list&, sc_simcontext* );
88 void wait( const sc_time&, const sc_event_and_list&, sc_simcontext* );
107 friend void wait( sc_simcontext* );
108 friend void wait( const sc_event&, sc_simcontext* );
109 friend void wait( const sc_event_or_list&, sc_simcontext* );
110 friend void wait( const sc_event_and_list&, sc_simcontext* );
111 friend void wait( const sc_time&, sc_simcontext* );
112 friend void wait( const sc_time&, const sc_event&, sc_simcontext* );
113 friend void wait( const sc_time&, const sc_event_or_list&, sc_simcontext* );
114 friend void wait( const sc_time&, const sc_event_and_list&, sc_simcontext*);
152 void wait( const sc_event& );
153 void wait( const sc_event_or_list& );
154 void wait( const sc_event_and_list& );
155 void wait( const sc_time& );
156 void wait( const sc_time&, const sc_event& );
157 void wait( const sc_time&, const sc_event_or_list& );
158 void wait( const sc_time&, const sc_event_and_list& );
265 //"sc_thread_process::wait"
270 sc_thread_process::wait( const sc_event& e )
283 sc_thread_process::wait( const sc_event_or_list& el )
296 sc_thread_process::wait( const sc_event_and_list& el )
310 sc_thread_process::wait( const sc_time& t )
323 sc_thread_process::wait( const sc_time& t, const sc_event& e )
338 sc_thread_process::wait( const sc_time& t, const sc_event_or_list& el )
353 sc_thread_process::wait( const sc_time& t, const sc_event_and_list& el )
371 // A cycle is defined as the event the thread is set up to staticly wait on.
453 // (4) The process' static wait count is zero.
467 // (d) its wait count is not satisfied
487 // If we get here then the thread is has satisfied its wait criteria, if
561 // do the down-count on wait(N), allowing the elimination of
571 // Andy Goodrich: added error for performing a wait() during unwinding.