HomeSort by relevance Sort by last modified time
    Searched refs:ntp (Results 1 - 13 of 13) sorted by null

  /external/webrtc/webrtc/system_wrappers/source/
ntp_time_unittest.cc 22 NtpTime ntp; local
23 EXPECT_FALSE(ntp.Valid());
27 NtpTime ntp(kNtpSec, kNtpFrac);
28 EXPECT_TRUE(ntp.Valid());
29 ntp.Reset();
30 EXPECT_FALSE(ntp.Valid());
34 NtpTime ntp; local
35 ntp.Set(kNtpSec, kNtpFrac);
36 EXPECT_EQ(kNtpSec, ntp.seconds());
37 EXPECT_EQ(kNtpFrac, ntp.fractions())
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
time_util.h 19 // Converts NTP timestamp to RTP timestamp.
20 inline uint32_t NtpToRtp(NtpTime ntp, uint32_t freq) {
21 uint32_t tmp = (static_cast<uint64_t>(ntp.fractions()) * freq) >> 32;
22 return ntp.seconds() * freq + tmp;
24 // Return the current RTP timestamp from the NTP timestamp
30 // Helper function for compact ntp representation:
33 // the Network Time Protocol (NTP).
38 inline uint32_t CompactNtp(NtpTime ntp) {
39 return (ntp.seconds() << 16) | (ntp.fractions() >> 16)
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
rrtr.h 39 void WithNtp(const NtpTime& ntp) { ntp_ = ntp; }
41 NtpTime ntp() const { return ntp_; } function in class:webrtc::rtcp::Rrtr
rrtr_unittest.cc 46 EXPECT_EQ(kNtpSec, parsed.ntp().seconds());
47 EXPECT_EQ(kNtpFrac, parsed.ntp().fractions());
  /external/dhcpcd-6.8.2/dhcpcd-hooks/
50-ntp.conf 1 # Sample dhcpcd hook script for ntp
2 # Like our resolv.conf hook script, we store a database of ntp.conf files
3 # and merge into /etc/ntp.conf
9 # to use OpenNTPD instead of the default NTP.
14 [ -e /var/lib/ntp ] || mkdir /var/lib/ntp
15 : ${ntp_service:=ntp}
16 : ${NTP_DHCP_CONF:=/var/lib/ntp/ntp.conf.dhcp}
21 ntp_conf_dir="$state_dir/ntp.conf
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NetworkTimeUpdateService.java 81 // NTP lookup is done on this thread and handler
86 // The last time that we successfully fetched the NTP time.
98 // Keeps track of how many quick attempts were made to fetch NTP time.
123 /** Initialize the receivers and initiate the first NTP request */
176 // no need to sync to NTP.
183 // Get the NTP time
186 if (DBG) Log.d(TAG, "Before Ntp fetch");
188 // force refresh NTP cache when outdated
193 // only update when NTP time is fresh
195 final long ntp = mTime.currentTimeMillis() local
    [all...]
  /external/libpcap/
pcap-snit.c 122 register struct nit_iftime *ntp; local
175 ntp = (struct nit_iftime *)cp;
176 cp += sizeof(*ntp);
195 h.ts = ntp->nh_timestamp;
  /external/tcpdump/
Android.mk 100 print-ntp.c \
  /external/tcpdump/win32/prj/
GNUmakefile 104 ../../print-ntp.o \
  /external/ipsec-tools/src/libipsec/
key_debug.c 527 struct sadb_x_nat_t_port *ntp = (void *)ext; local
533 printf("sadb_x_nat_t_port{ port=%u }\n", ntohs(ntp->sadb_x_nat_t_port_port));
  /frameworks/av/media/libstagefright/rtsp/
ARTPWriter.cpp 435 uint64_t ntp = GetNowNTP(); local
436 sdp.append(ntp);
438 sdp.append(ntp);
MyTransmitter.h 160 uint64_t ntp = ntpTime(); local
161 sdp.append(ntp);
163 sdp.append(ntp);
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 

Completed in 200 milliseconds