Lines Matching refs:bind

133 	{ sc_port_base::bind( parent_ ); }
138 { sc_port_base::bind( parent_ ); }
160 // bind to in interface
162 SC_VIRTUAL_ void bind( const in_if_type& interface_ )
163 { sc_port_base::bind( CCAST<in_if_type&>( interface_ ) ); }
165 SC_VIRTUAL_ void bind( in_if_type& interface_ )
166 { this->bind( CCAST<const in_if_type&>( interface_ ) ); }
169 { this->bind( interface_ ); }
172 // bind to parent in port
174 SC_VIRTUAL_ void bind( in_port_type& parent_ )
175 { sc_port_base::bind( parent_ ); }
178 { this->bind( parent_ ); }
181 // bind to parent inout port
183 SC_VIRTUAL_ void bind( inout_port_type& parent_ )
184 { sc_port_base::bind( parent_ ); }
187 { this->bind( parent_ ); }
264 SC_VIRTUAL_ void bind( base_port_type& parent_ )
265 { sc_port_base::bind( parent_ ); }
371 sc_port_base::bind( *in_parent );
376 sc_port_base::bind( *inout_parent );
447 { sc_port_base::bind( parent_ ); }
452 { sc_port_base::bind( parent_ ); }
483 // bind to in interface
485 SC_VIRTUAL_ void bind( const in_if_type& interface_ )
486 { sc_port_base::bind( CCAST<in_if_type&>( interface_ ) ); }
488 SC_VIRTUAL_ void bind( in_if_type& interface_ )
489 { this->bind( CCAST<const in_if_type&>( interface_ ) ); }
492 { this->bind( interface_ ); }
495 // bind to parent in port
497 SC_VIRTUAL_ void bind( in_port_type& parent_ )
498 { sc_port_base::bind( parent_ ); }
501 { this->bind( parent_ ); }
504 // bind to parent inout port
506 SC_VIRTUAL_ void bind( inout_port_type& parent_ )
507 { sc_port_base::bind( parent_ ); }
510 { this->bind( parent_ ); }
631 SC_VIRTUAL_ void bind( base_port_type& parent_ )
632 { sc_port_base::bind( parent_ ); }
721 { sc_port_base::bind( parent_ ); }
726 { sc_port_base::bind( parent_ ); }
750 // bind to in interface
752 SC_VIRTUAL_ void bind( const in_if_type& interface_ )
753 { sc_port_base::bind( CCAST<in_if_type&>( interface_ ) ); }
755 SC_VIRTUAL_ void bind( in_if_type& interface_ )
756 { this->bind( CCAST<const in_if_type&>( interface_ ) ); }
759 { this->bind( interface_ ); }
762 // bind to parent in port
764 SC_VIRTUAL_ void bind( in_port_type& parent_ )
765 { sc_port_base::bind( parent_ ); }
768 { this->bind( parent_ ); }
771 // bind to parent inout port
773 SC_VIRTUAL_ void bind( inout_port_type& parent_ )
774 { sc_port_base::bind( parent_ ); }
777 { this->bind( parent_ ); }
898 SC_VIRTUAL_ void bind( base_port_type& parent_ )
899 { sc_port_base::bind( parent_ ); }
1857 // Philipp A. Hartmann: add virtual instances of the bind function for
1861 // Andy Goodrich: catch the other bind()'s that I missed in Philipp's update.
1865 // interface signature for virtual bind(...).