HomeSort by relevance Sort by last modified time
    Searched refs:flow_id (Results 1 - 25 of 42) sorted by null

1 2

  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
packet.h 31 Packet(int flow_id, int64_t send_time_us, size_t payload_size);
36 virtual int flow_id() const { return flow_id_; } function in class:webrtc::testing::bwe::Packet
67 MediaPacket(int flow_id,
71 MediaPacket(int flow_id,
100 FeedbackPacket(int flow_id,
103 : Packet(flow_id, this_send_time_us, 0),
116 RembFeedback(int flow_id,
134 SendSideBweFeedback(int flow_id,
150 NadaFeedback(int flow_id,
158 : FeedbackPacket(flow_id, this_send_time_us, latest_send_time_ms)
    [all...]
packet_receiver.cc 28 int flow_id,
33 : PacketProcessor(listener, flow_id, kReceiver),
34 bwe_receiver_(CreateBweReceiver(bwe_type, flow_id, plot_bwe)),
63 int flow_id,
68 flow_id,
87 (*it)->flow_id() == *flow_ids().begin()) {
packet_receiver.h 29 int flow_id,
34 int flow_id,
bwe_test_logging.h 107 #define BWE_TEST_LOGGING_BAR(figure, name, value, flow_id)
109 error_title, flow_id)
111 figure, name, value, ylow, yhigh, error_title, ymax, limit_title, flow_id)
113 #define BWE_TEST_LOGGING_BASELINEBAR(figure, name, value, flow_id)
197 #define BWE_TEST_LOGGING_BAR(figure, name, value, flow_id) \
201 flow_id); \
204 #define BWE_TEST_LOGGING_BASELINEBAR(figure, name, value, flow_id) \
208 figure, name, value, flow_id); \
212 flow_id) \
216 figure, name, value, ylow, yhigh, title, flow_id); \
    [all...]
bwe.cc 31 BweReceiver::BweReceiver(int flow_id)
32 : flow_id_(flow_id),
38 BweReceiver::BweReceiver(int flow_id, int64_t window_size_ms)
39 : flow_id_(flow_id),
106 int flow_id,
110 return new RembReceiver(flow_id, plot);
112 return new SendSideBweReceiver(flow_id);
114 return new NadaBweReceiver(flow_id);
116 return new TcpBweReceiver(flow_id);
118 return new BweReceiver(flow_id);
    [all...]
bwe_test_framework.cc 104 Packet::Packet(int flow_id, int64_t send_time_us, size_t payload_size)
105 : flow_id_(flow_id),
129 MediaPacket::MediaPacket(int flow_id,
133 : Packet(flow_id, send_time_us, payload_size) {
138 MediaPacket::MediaPacket(int flow_id,
142 : Packet(flow_id, send_time_us, payload_size), header_(header) {
157 RembFeedback::RembFeedback(int flow_id,
162 : FeedbackPacket(flow_id, send_time_us, last_send_time_ms),
168 int flow_id,
172 : FeedbackPacket(flow_id, send_time_us, last_send_time_ms)
229 ss << name << "_" << flow_id; local
246 ss << delimiter << flow_id; local
    [all...]
bwe_test.h 122 int flow_id,
164 DefaultEvaluationFilter(PacketProcessorListener* listener, int flow_id)
165 : choke(listener, flow_id),
166 delay(listener, flow_id),
167 jitter(listener, flow_id) {
bwe_test_framework.h 196 int flow_id,
230 int flow_id,
262 LossFilter(PacketProcessorListener* listener, int flow_id);
278 DelayFilter(PacketProcessorListener* listener, int flow_id);
294 JitterFilter(PacketProcessorListener* listener, int flow_id);
315 ReorderFilter(PacketProcessorListener* listener, int flow_id);
332 ChokeFilter(PacketProcessorListener* listener, int flow_id);
355 TraceBasedDeliveryFilter(PacketProcessorListener* listener, int flow_id);
359 int flow_id,
393 VideoSource(int flow_id,
402 virtual int flow_id() const { return flow_id_; } function in class:webrtc::testing::bwe::VideoSource
    [all...]
metric_recorder.h 33 void PauseFlow(int flow_id); // Increases available capacity per flow.
34 void ResumeFlow(int flow_id); // Decreases available capacity per flow.
38 uint32_t AvailablePerFlowKbps(int flow_id);
68 int flow_id,
packet_sender.h 33 PacketSender(PacketProcessorListener* listener, int flow_id)
34 : PacketProcessor(listener, flow_id, kSender),
138 TcpSender(PacketProcessorListener* listener, int flow_id, int64_t offset_ms);
140 int flow_id,
packet_sender.cc 55 int flow_id) {
61 flow_id == (*it)->flow_id()) {
74 : PacketSender(listener, source->flow_id()),
99 in_out, clock_.TimeInMilliseconds() + time_ms, source_->flow_id());
180 GetFeedbackPackets(in_out, end_time_ms, source_->flow_id());
183 BWE_TEST_LOGGING_CONTEXT(source_->flow_id());
322 int flow_id,
324 : TcpSender(listener, flow_id, offset_ms, kNoLimit) {
328 int flow_id,
    [all...]
bwe_test_logging.cc 120 int flow_id) {
126 printf("BAR\t%d\t%s_%d\t%f\n", figure, name.c_str(), flow_id, value);
133 int flow_id) {
139 printf("BASELINE\t%d\t%s_%d\t%f\n", figure, name.c_str(), flow_id, value);
149 int flow_id) {
156 flow_id, value, ylow, yhigh, error_title.c_str());
168 int flow_id) {
175 name.c_str(), flow_id, value, ylow, yhigh, error_title.c_str(), ymax,
bwe.h 133 explicit BweReceiver(int flow_id);
134 BweReceiver(int flow_id, int64_t window_size_ms);
192 int flow_id,
metric_recorder.cc 35 void LinkShare::PauseFlow(int flow_id) {
36 running_flows_.erase(flow_id);
39 void LinkShare::ResumeFlow(int flow_id) {
40 running_flows_.insert(flow_id);
47 uint32_t LinkShare::AvailablePerFlowKbps(int flow_id) {
49 if (running_flows_.find(flow_id) != running_flows_.end()) {
57 int flow_id,
61 flow_id_(flow_id),
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
tcp.cc 25 TcpBweReceiver::TcpBweReceiver(int flow_id)
26 : BweReceiver(flow_id),
tcp.h 23 explicit TcpBweReceiver(int flow_id);
remb.h 54 RembReceiver(int flow_id, bool plot);
send_side.h 53 explicit SendSideBweReceiver(int flow_id);
remb.cc 64 RembReceiver::RembReceiver(int flow_id, bool plot)
65 : BweReceiver(flow_id),
send_side.cc 119 SendSideBweReceiver::SendSideBweReceiver(int flow_id)
120 : BweReceiver(flow_id), last_feedback_ms_(0) {
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_rmnet.h 52 unsigned long flow_id; member in struct:QMI_QOS_HDR_S
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_rmnet.h 53 unsigned long flow_id; member in struct:QMI_QOS_HDR_S
  /device/google/dragon/audio/hal/
cras_dsp_ini.h 36 int flow_id; member in struct:port
cras_dsp_ini.c 122 p->flow_id = lookup_or_add_flow(ini, str);
133 p->flow_id = INVALID_FLOW_ID;
177 int flow_id = port->flow_id; local
178 if (flow_id == INVALID_FLOW_ID)
180 flow = ARRAY_ELEMENT(&ini->flows, flow_id);
cras_dsp_pipeline.c 170 int flow_id; local
177 flow_id = port->flow_id;
178 if (flow_id == INVALID_FLOW_ID)
180 flow = ARRAY_ELEMENT(&ini->flows, flow_id);
285 int flow_id; local
295 if (port->flow_id == INVALID_FLOW_ID)
297 flow_id = port->flow_id;
298 flow = ARRAY_ELEMENT(&ini->flows, flow_id);
    [all...]

Completed in 282 milliseconds

1 2