HomeSort by relevance Sort by last modified time
    Searched defs:latency (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/devtools/
devtools_network_conditions.h 23 double latency,
30 double latency() const { return latency_; } function in class:DevToolsNetworkConditions
devtools_network_protocol_handler.cc 72 double latency = 0.0; local
73 if (!params->GetDouble(names::kParamLatency, &latency))
75 if (latency < 0.0)
76 latency = 0.0;
92 offline, latency, download_throughput, upload_throughput));
devtools_network_interceptor.cc 101 double latency = conditions_->latency(); local
102 if (latency > 0)
103 latency_length_ = base::TimeDelta::FromMillisecondsD(latency);
  /external/chromium_org/chrome/browser/extensions/api/diagnostics/
diagnostics_api_chromeos.cc 28 double latency)>
33 double* latency) {
34 // Parses the result and returns IP and latency.
50 if (!info->GetDouble("avg", latency))
62 double latency; local
63 if (!succeeded || !ParseResult(status, &ip, &latency)) {
68 latency);
  /external/chromium_org/content/browser/renderer_host/
event_with_latency_info.h 25 ui::LatencyInfo latency; member in class:content::EventWithLatencyInfo
28 : event(e), latency(l) {}
40 // for Telemetry latency test since it will represent the longest
41 // latency.
42 if (other.latency.trace_id >= 0 &&
43 (latency.trace_id < 0 || other.latency.trace_id < latency.trace_id))
44 latency = other.latency;
    [all...]
  /external/chromium_org/third_party/webrtc/sound/
soundsysteminterface.h 42 // Enable reporting the current stream latency in
56 // Desired latency, measured as number of bytes of sample data
57 int latency; member in struct:rtc::SoundSystemInterface::OpenParams
60 // Special values for the "latency" field of OpenParams.
61 // Use this one to say you don't care what the latency is. The sound system
65 // small latency value. The sound system may pick the minimum allowed one, or
  /external/chromium_org/content/common/input/
input_param_traits_unittest.cc 146 ui::LatencyInfo latency; local
151 events.push_back(new InputEvent(key_event, latency, false));
156 latency.AddLatencyNumber(ui::INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT, 1, 1);
157 events.push_back(new InputEvent(wheel_event, latency, false));
162 latency.AddLatencyNumber(ui::INPUT_EVENT_LATENCY_UI_COMPONENT, 2, 2);
163 events.push_back(new InputEvent(mouse_event, latency, false));
168 events.push_back(new InputEvent(gesture_event, latency, false));
174 events.push_back(new InputEvent(touch_event, latency, false));
  /external/chromium_org/ppapi/shared_impl/
ppb_audio_shared.cc 40 PP_TimeDelta latency,
43 callback_(sample_buffer, buffer_size_in_bytes, latency, user_data);
218 PP_TimeDelta latency = local
221 client_buffer_.get(), client_buffer_size_bytes_, latency, user_data_);
ppb_input_event_shared.cc 196 ui::LatencyInfo latency = data_.latency_info; local
197 if (!latency.FindLatency(ui::INPUT_EVENT_LATENCY_BEGIN_PLUGIN_COMPONENT,
201 PpapiGlobals::Get()->AddLatencyInfo(latency, pp_instance());
203 latency.AddLatencyNumber(
  /external/iproute2/tc/
q_tbf.c 29 fprintf(stderr, " [ peakrate KBPS ] [ latency TIME ] ");
45 unsigned buffer=0, mtu=0, mpu=0, latency=0; local
56 if (opt.limit || latency) {
57 fprintf(stderr, "Double \"limit/latency\" spec\n");
65 } else if (matches(*argv, "latency") == 0) {
67 if (opt.limit || latency) {
68 fprintf(stderr, "Double \"limit/latency\" spec\n");
71 if (get_time(&latency, *argv)) {
72 explain1("latency");
175 if (opt.limit == 0 && latency == 0)
223 double latency; local
    [all...]
  /external/chromium_org/cc/output/
output_surface.cc 281 // We only care about GPU latency for surfaces that do not have a parent
284 // incurring GPU latency.
303 base::TimeDelta latency = base::TimeDelta::FromMicroseconds(value); local
305 gpu_latency_history_.InsertSample(latency);
309 if (latency > latency_estimate)
310 latency_underestimate = latency - latency_estimate;
312 latency_overestimate = latency_estimate - latency;
314 latency,
339 // Send new latency query
  /external/chromium_org/content/renderer/pepper/
pepper_graphics_2d_host_unittest.cc 68 std::vector<ui::LatencyInfo> latency; local
69 host_->OnHostMsgFlush(&context, latency);
  /external/chromium_org/ppapi/proxy/
audio_input_resource.cc 275 PP_TimeDelta latency = local
279 latency,
  /external/bluetooth/bluedroid/stack/gap/
gap_ble.c 265 UINT16_TO_STREAM(p, p_db_attr->attr_value.conn_param.latency); /* latency */
424 p_db_attr->attr_value.conn_param.latency = GAP_PREFER_CONN_LATENCY; /* 0 */
605 UINT16 min, max, latency, tout; local
635 STREAM_TO_UINT16 (latency, pp);
638 BTM_BleSetPrefConnParams (p_clcb->bda, min, max, latency, tout);
  /external/bluetooth/bluedroid/stack/l2cap/
l2c_ble.c 99 UINT16 latency, UINT16 timeout)
126 p_lcb->latency = latency;
312 p_lcb->latency = conn_latency;
336 p_lcb->latency = p_dev_rec->conn_params.slave_latency;
409 p_lcb->latency = conn_latency;
483 /* use 7.5 ms as fast connection parameter, 0 slave latency */
522 p_lcb->max_interval, p_lcb->latency, p_lcb->timeout, 0, 0);
528 p_lcb->latency, p_lcb->timeout);
587 UINT16 min_interval, max_interval, latency, timeout local
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
input_router_impl_perftest.cc 225 const ui::LatencyInfo& latency) {
227 GestureEventWithLatencyInfo(gesture, latency));
230 void SendEvent(const WebTouchEvent& touch, const ui::LatencyInfo& latency) {
231 input_router_->SendTouchEvent(TouchEventWithLatencyInfo(touch, latency));
261 ui::LatencyInfo latency; local
262 latency.AddLatencyNumber(
264 latency.AddLatencyNumber(
268 return latency;
  /external/chromium_org/media/cast/logging/
stats_event_subscriber_unittest.cc 290 base::TimeDelta latency = base::TimeDelta::FromMicroseconds(latency_micros); local
291 AdvanceClocks(latency);
295 total_latency += latency + delay;
351 base::TimeDelta latency = base::TimeDelta::FromMicroseconds(latency_micros); local
352 // Latency is only recorded for packets that aren't retransmitted.
354 total_latency += latency;
358 AdvanceClocks(latency);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_schedule_instructions.cpp 38 * compute a DAG of the dependencies (RAW ordering with latency, WAW
73 this->latency = 1 * chans * math_latency;
76 this->latency = 2 * chans * math_latency;
82 this->latency = 3 * chans * math_latency;
87 this->latency = 4 * chans * math_latency;
90 this->latency = 8 * chans * math_latency;
94 /* minimum latency, max is 12 rounds. */
95 this->latency = 5 * chans * math_latency;
98 this->latency = 2;
110 int latency; member in class:schedule_node
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_schedule_instructions.cpp 38 * compute a DAG of the dependencies (RAW ordering with latency, WAW
73 this->latency = 1 * chans * math_latency;
76 this->latency = 2 * chans * math_latency;
82 this->latency = 3 * chans * math_latency;
87 this->latency = 4 * chans * math_latency;
90 this->latency = 8 * chans * math_latency;
94 /* minimum latency, max is 12 rounds. */
95 this->latency = 5 * chans * math_latency;
98 this->latency = 2;
110 int latency; member in class:schedule_node
    [all...]
  /device/asus/fugu/libaudio/
AudioStreamOut.cpp 183 // 10mSec, making the total audio latency somewhere between 40 and 50
215 // The nominal latency is just the duration of a chunk * the number of
369 uint32_t AudioStreamOut::latency() const { function in class:android::AudioStreamOut
  /external/chromium_org/chrome/browser/metrics/variations/
variations_service.cc 543 const base::TimeDelta latency = local
556 latency,
  /external/chromium_org/components/suggestions/
suggestions_service.cc 324 const base::TimeDelta latency = local
326 UMA_HISTOGRAM_MEDIUM_TIMES("Suggestions.FetchSuccessLatency", latency);
  /external/chromium_org/media/audio/win/
audio_low_latency_input_win.cc 137 // shared mode and a lowest possible glitch-free latency.
664 // This setting should lead to lowest possible latency.
691 // quantum for the audio engine. This period plus the stream latency between
692 // the buffer and endpoint device represents the minimum possible latency
705 REFERENCE_TIME latency = 0; local
706 hr_dbg = audio_client_->GetStreamLatency(&latency);
708 DVLOG(1) << "stream latency: " << static_cast<double>(latency / 10000.0)
core_audio_util_win.cc 793 REFERENCE_TIME latency = 0; local
794 hr = client->GetStreamLatency(&latency);
795 DVLOG(2) << "stream latency: "
796 << RefererenceTimeToTimeDelta(latency).InMillisecondsF() << " [ms]";
    [all...]
  /external/chromium_org/net/cert/
multi_threaded_cert_verifier.cc 388 base::TimeDelta latency = base::TimeTicks::Now() - start_time_; local
390 latency,
396 latency,

Completed in 1712 milliseconds

1 2 3