• 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

776 	For functions that take a "propagation" parameter, propagation != 0 means pass on the signal to attached
777 BufferedTransformation objects, with propagation decremented at each step until it reaches 0.
778 -1 means unlimited propagation.
820 bool MessageEnd(int propagation=-1, bool blocking=true)
821 {return !!Put2(NULL, 0, propagation < 0 ? -1 : propagation+1, blocking);}
822 size_t PutMessageEnd(const byte *inString, size_t length, int propagation=-1, bool blocking=true)
823 {return Put2(inString, length, propagation < 0 ? -1 : propagation+1, blocking);}
851 virtual void Initialize(const NameValuePairs &parameters=g_nullNameValuePairs, int propagation=-1);
863 virtual bool Flush(bool hardFlush, int propagation=-1, bool blocking=true);
866 virtual bool MessageSeriesEnd(int propagation=-1, bool blocking=true);
868 //! set propagation of automatically generated and transferred signals
869 /*! propagation == 0 means do not automaticly generate signals */
870 virtual void SetAutoSignalPropagation(int propagation) {}
997 bool ChannelMessageEnd(const std::string &channel, int propagation=-1, bool blocking=true)
998 {return !!ChannelPut2(channel, NULL, 0, propagation < 0 ? -1 : propagation+1, blocking);}
999 size_t ChannelPutMessageEnd(const std::string &channel, const byte *inString, size_t length, int propagation=-1, bool blocking=true)
1000 {return ChannelPut2(channel, inString, length, propagation < 0 ? -1 : propagation+1, blocking);}
1007 virtual bool ChannelFlush(const std::string &channel, bool hardFlush, int propagation=-1, bool blocking=true);
1008 virtual bool ChannelMessageSeriesEnd(const std::string &channel, int propagation=-1, bool blocking=true);
1036 static int DecrementPropagation(int propagation)
1037 {return propagation != 0 ? propagation - 1 : 0;}