HomeSort by relevance Sort by last modified time
    Searched full:arrival (Results 1 - 25 of 180) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/content/browser/renderer_host/input/
touchpad_tap_suppression_controller.h 35 // Should be called on arrival of GestureFlingCancel events.
38 // Should be called on arrival of ACK for a GestureFlingCancel event.
42 // Should be called on arrival of MouseDown events. Returns true if the caller
47 // Should be called on arrival of MouseUp events. Returns true if the caller
touchscreen_tap_suppression_controller.h 27 // Should be called on arrival of GestureFlingCancel events.
30 // Should be called on arrival of ACK for a GestureFlingCancel event.
34 // Should be called on arrival of any tap-related events. Returns true if the
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
delay_manager.h 39 // Read the inter-arrival time histogram. Mainly for testing purposes.
44 // inter-arrival time histogram and other statistics, as well as the
58 // The method updates the DelayPeakDetector too, and resets the inter-arrival
65 // Calculates the average inter-arrival time deviation from the histogram.
67 // inter-arrival time. That is, if the average inter-arrival time is equal to
82 // Reset the inter-arrival time counter to 0.
114 static const int kMaxIat = 64; // Max inter-arrival time to register.
124 // Updates the histogram |iat_vector_|. The probability for inter-arrival time
136 IATVector iat_vector_; // Histogram of inter-arrival times
    [all...]
delay_manager_unittest.cc 127 // First packet arrival.
131 // Second packet arrival.
132 // Expect detector update method to be called once with inter-arrival time
151 // First packet arrival.
155 // Second packet arrival.
156 // Expect detector update method to be called once with inter-arrival time
175 // First packet arrival.
179 // Second packet arrival.
180 // Expect detector update method to be called once with inter-arrival time
199 // First packet arrival
    [all...]
delay_peak_detector_unittest.cc 39 // Load up normal arrival times; 0 ms, 30 ms, 60 ms, 90 ms, ...
83 // 2, in order to raise the bar for delay peaks to inter-arrival times > 4.
90 // Load up normal arrival times; 0 ms, 30 ms, 60 ms, 90 ms, ...
delay_peak_detector.cc 17 // The DelayPeakDetector keeps track of severe inter-arrival times, called
19 // the previous packet arrival) and the peak "period" (the time since the last
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/delay_tool/
plot_neteq_delay.m 43 one_desc_ix=find(isnan(s.arrival));
48 s.arrival(one_desc_ix(k))=s.arrival(ix)+s.decode(one_desc_ix(k))-s.decode(ix);
56 s.arrival=s.arrival(ix);
74 s.arrival=s.arrival(sort_ix);
100 send_t=send_t+max(min(s.arrival-send_t),0);
105 plot_nw_delay(seq_ix)=s.arrival-send_t;
117 s.arrival(cng_ix(peak_ix))+abs(s.optbuf(cng_ix(peak_ix)))-send_t(cng_ix(peak_ix)),..
    [all...]
  /external/chromium_org/extensions/browser/api/system_info/
system_info_api.h 14 // to observe the systemInfo event listener arrival/removal.
  /external/chromium_org/third_party/webrtc/voice_engine/include/
voe_video_sync.h 63 // inter-arrival times) dictates a higher required delay. The overall
65 // computes based on inter-arrival times and its playout mode.
71 // Such a latency is computed based on inter-arrival times and NetEq's
82 // the jitter buffer based on the inter-arrival time of RTP packets and
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
data_log_unittest.cc 133 DataLog::AddColumn(DataLog::Combine("table", 1), "arrival", 1);
138 DataLog::InsertCell(DataLog::Combine("table", 1), "arrival",
164 expected["arrival,"] = ExpectedValues(
184 DataLog::AddColumn(DataLog::Combine("table", 2), "arrival", 1);
189 DataLog::AddColumn(DataLog::Combine("table", 3), "arrival", 1);
192 DataLog::InsertCell(DataLog::Combine("table", 2), "arrival",
200 DataLog::InsertCell(DataLog::Combine("table", 3), "arrival",
232 expected["arrival,"] = ExpectedValues(
255 expected["arrival,"] = ExpectedValues(
  /external/webrtc/src/system_wrappers/source/
data_log_unittest.cc 132 DataLog::AddColumn(DataLog::Combine("table", 1), "arrival", 1);
137 DataLog::InsertCell(DataLog::Combine("table", 1), "arrival",
163 expected["arrival,"] = ExpectedValues(
183 DataLog::AddColumn(DataLog::Combine("table", 2), "arrival", 1);
188 DataLog::AddColumn(DataLog::Combine("table", 3), "arrival", 1);
191 DataLog::InsertCell(DataLog::Combine("table", 2), "arrival",
199 DataLog::InsertCell(DataLog::Combine("table", 3), "arrival",
231 expected["arrival,"] = ExpectedValues(
254 expected["arrival,"] = ExpectedValues(
  /external/libpcap/
pcap-tstamp.manmisc.in 27 for incoming packets, the arrival time of the packet and, for outgoing
29 approximation of the arrival or transmission time. If it is supplied by
32 arrival or transmission time:
75 stamp of an event on the host triggered by the arrival of that packet.
  /frameworks/base/core/java/android/net/dhcp/
DhcpDeclinePacket.java 60 * Informs the state machine of the arrival of a DECLINE packet.
DhcpDiscoverPacket.java 64 * Informs the state machine of the arrival of a DISCOVER packet.
DhcpInformPacket.java 67 * Informs the state machine of the arrival of an INFORM packet. Not
  /libcore/luni/src/main/java/java/util/concurrent/
Phaser.java 25 * optionally deregistered upon any arrival (using {@link
41 * control of actions upon arrival at a phaser and upon awaiting
47 * <li> <b>Arrival.</b> Methods {@link #arrive} and
48 * {@link #arriveAndDeregister} record arrival. These methods
49 * do not block, but return an associated <em>arrival phase
51 * the arrival applied. When the final party for a given phase
61 * argument indicating an arrival phase number, and returns when
328 * Returns message string for bounds exceptions on arrival.
331 return "Attempted arrival of unregistered party for " +
555 * @return the arrival phase number to which this registratio
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
rtp_to_text.cc 88 DataLog::AddColumn(table_name, "arrival", 1);
114 DataLog::InsertCell(table_name, "arrival", packet->time());
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
packet.h 35 // associated with this packet, typically used to denote arrival time.
114 double time_ms_; // Used to denote a packet's arrival time.
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/include/
remote_bitrate_estimator.h 49 // where d_arrival is the delta of the arrival times of the frame and the
61 // The arrival times for the frames arrived in the last kProcessIntervalMs
  /external/chromium_org/device/serial/
serial_io_handler_win.h 54 // Indicates if a pending read is waiting on initial data arrival via
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
decode_bwe.c 72 // arrival timestamp in 16 kHz
  /external/iptables/extensions/
libxt_LED.man 20 Always make the LED blink on packet arrival, even if the LED is already on.
  /external/iptables/include/linux/netfilter_ipv4/
ip_queue.h 24 long timestamp_sec; /* Packet arrival time (seconds) */
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
decode_bwe.c 71 // arrival timestamp in 16 kHz
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/netfilter_ipv4/
ip_queue.h 16 long timestamp_sec; /* Packet arrival time (seconds) */

Completed in 1571 milliseconds

1 2 3 4 5 6 7 8