HomeSort by relevance Sort by last modified time
    Searched defs:LeakyBucket (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/remoting/test/
leaky_bucket.cc 11 LeakyBucket::LeakyBucket(double depth, double rate)
18 LeakyBucket::~LeakyBucket() {
21 base::TimeDelta LeakyBucket::AddPacket(int size) {
33 void LeakyBucket::UpdateLevel() {
leaky_bucket.h 13 class LeakyBucket {
16 LeakyBucket(double depth, double rate);
17 ~LeakyBucket();
33 DISALLOW_COPY_AND_ASSIGN(LeakyBucket);
  /external/chromium_org/net/quic/congestion_control/
leaky_bucket.h 21 class NET_EXPORT_PRIVATE LeakyBucket {
23 explicit LeakyBucket(QuicBandwidth draining_rate);
44 DISALLOW_COPY_AND_ASSIGN(LeakyBucket);
leaky_bucket.cc 11 LeakyBucket::LeakyBucket(QuicBandwidth draining_rate)
17 void LeakyBucket::SetDrainingRate(QuicTime now, QuicBandwidth draining_rate) {
22 void LeakyBucket::Add(QuicTime now, QuicByteCount bytes) {
27 QuicTime::Delta LeakyBucket::TimeRemaining(QuicTime now) const {
38 QuicByteCount LeakyBucket::BytesPending(QuicTime now) {
43 void LeakyBucket::Update(QuicTime now) {
  /external/chromium_org/jingle/glue/
pseudotcp_adapter_unittest.cc 42 class LeakyBucket : public RateLimiter {
45 LeakyBucket(double volume, double rate)
52 virtual ~LeakyBucket() { }
350 LeakyBucket host_limiter(kBurstPackets, kPacketsPerSecond);
354 LeakyBucket client_limiter(kBurstPackets, kPacketsPerSecond);

Completed in 1064 milliseconds