HomeSort by relevance Sort by last modified time
    Searched defs:rtc (Results 226 - 250 of 465) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/p2p/base/
basicpacketsocketfactory.cc 25 namespace rtc { namespace
51 rtc::AsyncSocket* socket =
63 return new rtc::AsyncUDPSocket(socket);
77 rtc::AsyncSocket* socket =
94 socket = new rtc::AsyncSSLSocket(socket);
99 socket->SetOption(rtc::Socket::OPT_NODELAY, 1);
104 return new rtc::AsyncTCPSocket(socket, true);
111 rtc::AsyncSocket* socket =
125 if (proxy_info.type == rtc::PROXY_SOCKS5) {
126 socket = new rtc::AsyncSocksProxySocket
    [all...]
transportdescriptionfactory.h 17 namespace rtc { namespace
38 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate() const {
46 const rtc::scoped_refptr<rtc::RTCCertificate>& certificate) {
64 rtc::scoped_refptr<rtc::RTCCertificate> certificate_;
  /external/linux-kselftest/tools/testing/selftests/timers/
rtctest.c 15 #include <linux/rtc.h>
29 * This expects the new RTC class driver framework, working with
31 * Use the command line to specify another RTC if you need one.
99 const char *rtc = default_rtc; local
107 rtc = argv[1];
116 fd = open(rtc, O_RDONLY);
119 perror(rtc);
145 rtc);
159 fprintf(stderr, "\nAgain, from using select(2) on /dev/rtc:");
167 /* The select will wait until an RTC interrupt happens. *
    [all...]
  /external/skia/src/gpu/vk/
GrVkSecondaryCBDrawContext.cpp 33 sk_sp<GrRenderTargetContext> rtc(
36 int width = rtc->width();
37 int height = rtc->height();
39 sk_sp<SkGpuDevice> device(SkGpuDevice::Make(ctx, std::move(rtc), width, height,
81 GrRenderTargetContext* rtc = fDevice->accessRenderTargetContext(); local
89 SkASSERT(!rtc->asTextureProxy());
93 if (!GrPixelConfigToColorType(rtc->colorSpaceInfo().config(), &ct)) {
97 SkImageInfo ii = SkImageInfo::Make(rtc->width(), rtc->height(), ct, kPremul_SkAlphaType,
98 rtc->colorSpaceInfo().refColorSpace())
113 GrRenderTargetContext* rtc = fDevice->accessRenderTargetContext(); local
165 GrRenderTargetContext* rtc = fDevice->accessRenderTargetContext(); local
    [all...]
  /external/u-boot/arch/m68k/cpu/mcf5445x/
cpu_init.c 15 #include <asm/rtc.h>
226 rtc_t *rtc = (rtc_t *)(CONFIG_SYS_MCFRTC_BASE); local
227 rtcex_t *rtcex = (rtcex_t *)&rtc->extended;
  /external/webrtc/talk/app/webrtc/
peerconnectionfactory.h 42 namespace rtc { namespace
49 typedef rtc::RefCountedObject<DtlsIdentityStoreImpl>
58 rtc::scoped_refptr<PeerConnectionInterface> CreatePeerConnection(
61 rtc::scoped_ptr<cricket::PortAllocator> allocator,
62 rtc::scoped_ptr<DtlsIdentityStoreInterface> dtls_identity_store,
67 rtc::scoped_refptr<MediaStreamInterface>
70 rtc::scoped_refptr<AudioSourceInterface> CreateAudioSource(
73 rtc::scoped_refptr<VideoSourceInterface> CreateVideoSource(
77 rtc::scoped_refptr<VideoTrackInterface>
81 rtc::scoped_refptr<AudioTrackInterface
    [all...]
  /external/webrtc/talk/media/devices/
yuvframescapturer.h 40 namespace rtc { namespace
61 return rtc::starts_with(device.id.c_str(), kYuvFrameDeviceName);
  /external/webrtc/webrtc/base/
array_view.h 16 namespace rtc { namespace
30 // std::vector, rtc::Buffer, ...), but it's error-prone because the caller has
41 // Enter rtc::ArrayView<T>. It contains a T pointer (to an array it doesn't
45 // bool Contains17(rtc::ArrayView<const int> arr) {
58 // Contains17(rtc::ArrayView<int>(arr, size)); // pointer + size
94 // rtc::Buffer to ArrayView<uint8_t> (with the same const behavior as
131 } // namespace rtc
array_view_unittest.cc 20 namespace rtc { namespace
122 rtc::Buffer b = "so buffer";
134 const rtc::Buffer cb = "very const";
233 } // namespace rtc
asyncinvoker-inl.h 23 namespace rtc { namespace
128 } // namespace rtc
asyncinvoker.cc 16 namespace rtc { namespace
89 rtc::CritScope cs(&crit_);
97 rtc::CritScope cs(&crit_);
132 } // namespace rtc
autodetectproxy.h 22 namespace rtc { namespace
55 rtc::ProxyInfo* proxy);
87 } // namespace rtc
autodetectproxy_unittest.cc 16 namespace rtc { namespace
89 void OnWorkDone(rtc::SignalThread *thread) {
91 static_cast<rtc::AutoDetectProxy *>(thread);
103 TestCopesWithProxy(rtc::SocketAddress("localhost", 9999));
107 TestCopesWithProxy(rtc::SocketAddress("invalid", 9999));
111 TestCopesWithProxy(rtc::SocketAddress("::1", 9999));
115 TestCopesWithProxy(rtc::SocketAddress("127.0.0.1", 9999));
131 } // namespace rtc
bitbuffer_unittest.cc 17 namespace rtc { namespace
330 } // namespace rtc
bytebuffer.h 20 namespace rtc { namespace
120 } // namespace rtc
callback.h 68 namespace rtc { namespace
258 } // namespace rtc
callback_unittest.cc 17 namespace rtc { namespace
140 } // namespace rtc
checks.cc 25 #define LOG_TAG "rtc"
37 namespace rtc { namespace
127 } // namespace rtc
ipaddress.h 34 namespace rtc { namespace
186 } // namespace rtc
linked_ptr.h 23 namespace rtc { namespace
122 } // namespace rtc
md5.cc 28 namespace rtc { namespace
35 buf[i] = rtc::GetLE32(&buf[i]);
222 } // namespace rtc
networkmonitor.cc 21 rtc::NetworkMonitorFactory* network_monitor_factory = nullptr;
24 namespace rtc { namespace
62 } // namespace rtc
optionsfile.cc 19 namespace rtc { namespace
186 } // namespace rtc
pathutils.h 18 namespace rtc { namespace
163 } // namespace rtc
platform_thread.h 22 namespace rtc { namespace
82 rtc::ThreadChecker thread_checker_;
91 rtc::Event stop_event_;
98 } // namespace rtc

Completed in 468 milliseconds

1 2 3 4 5 6 7 8 91011>>