• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/

Lines Matching defs:propagation

28 	void Initialize(const NameValuePairs &parameters=g_nullNameValuePairs, int propagation=-1);
29 bool Flush(bool hardFlush, int propagation=-1, bool blocking=true);
30 bool MessageSeriesEnd(int propagation=-1, bool blocking=true);
39 void PropagateInitialize(const NameValuePairs &parameters, int propagation);
43 bool OutputMessageEnd(int outputSite, int propagation, bool blocking, const std::string &channel=DEFAULT_CHANNEL);
44 bool OutputFlush(int outputSite, bool hardFlush, int propagation, bool blocking, const std::string &channel=DEFAULT_CHANNEL);
45 bool OutputMessageSeriesEnd(int outputSite, int propagation, bool blocking, const std::string &channel=DEFAULT_CHANNEL);
467 void Initialize(const NameValuePairs &parameters, int propagation);
472 bool Flush(bool hardFlush, int propagation=-1, bool blocking=true)
473 {return m_target && GetPassSignals() ? m_target->Flush(hardFlush, propagation, blocking) : false;}
474 bool MessageSeriesEnd(int propagation=-1, bool blocking=true)
475 {return m_target && GetPassSignals() ? m_target->MessageSeriesEnd(propagation, blocking) : false;}
483 bool ChannelFlush(const std::string &channel, bool completeFlush, int propagation=-1, bool blocking=true)
484 {return m_target && GetPassSignals() ? m_target->ChannelFlush(channel, completeFlush, propagation, blocking) : false;}
485 bool ChannelMessageSeriesEnd(const std::string &channel, int propagation=-1, bool blocking=true)
486 {return m_target && GetPassSignals() ? m_target->ChannelMessageSeriesEnd(channel, propagation, blocking) : false;}
513 void Initialize(const NameValuePairs &parameters=g_nullNameValuePairs, int propagation=-1)
514 {if (m_passSignal) m_owner.AttachedTransformation()->Initialize(parameters, propagation);}
515 bool Flush(bool hardFlush, int propagation=-1, bool blocking=true)
516 {return m_passSignal ? m_owner.AttachedTransformation()->Flush(hardFlush, propagation, blocking) : false;}
517 bool MessageSeriesEnd(int propagation=-1, bool blocking=true)
518 {return m_passSignal ? m_owner.AttachedTransformation()->MessageSeriesEnd(propagation, blocking) : false;}
526 bool ChannelFlush(const std::string &channel, bool completeFlush, int propagation=-1, bool blocking=true)
527 {return m_passSignal ? m_owner.AttachedTransformation()->ChannelFlush(channel, completeFlush, propagation, blocking) : false;}
528 bool ChannelMessageSeriesEnd(const std::string &channel, int propagation=-1, bool blocking=true)
529 {return m_passSignal ? m_owner.AttachedTransformation()->ChannelMessageSeriesEnd(channel, propagation, blocking) : false;}
768 void SetAutoSignalPropagation(int propagation)
769 {m_store.SetAutoSignalPropagation(propagation);}