Home
last modified time | relevance | path

Searched refs:ProxyType (Results 1 – 19 of 19) sorted by relevance

/external/webrtc/webrtc/base/
Dproxyinfo.h20 enum ProxyType { enum
26 const char * ProxyToString(ProxyType proxy);
29 ProxyType type;
Dautodetectproxy.cc18 static const ProxyType TEST_ORDER[] = {
96 ProxyType type = proxy().type; in OnMessage()
205 void AutoDetectProxy::Complete(ProxyType type) { in Complete()
Dproxy_unittest.cc59 rtc::ProxyType DetectProxyType(const SocketAddress& address) { in DetectProxyType()
60 rtc::ProxyType type; in DetectProxyType()
Dproxyinfo.cc15 const char * ProxyToString(ProxyType proxy) { in ProxyToString()
Dautodetectproxy.h68 void Complete(ProxyType type);
Dproxydetect.cc280 bool Better(ProxyType lhs, const ProxyType rhs) { in Better()
291 ProxyType ptype; in ParseProxy()
954 ProxyType type, in p_getProxyInfoForTypeFromDictWithKeys()
/external/libchrome/mojo/public/cpp/bindings/tests/
Dpickle_unittest.cc157 template <typename ProxyType = PicklePasser>
158 InterfacePtr<ProxyType> ConnectToChromiumService() { in ConnectToChromiumService()
159 InterfacePtr<ProxyType> proxy; in ConnectToChromiumService()
166 template <typename ProxyType = blink::PicklePasser>
167 InterfacePtr<ProxyType> ConnectToBlinkService() { in ConnectToBlinkService()
168 InterfacePtr<ProxyType> proxy; in ConnectToBlinkService()
/external/webrtc/webrtc/libjingle/xmpp/
Dxmppclientsettings.h82 void set_proxy(rtc::ProxyType f) { proxy_ = f; } in set_proxy()
91 rtc::ProxyType proxy() const { return proxy_; } in proxy()
101 rtc::ProxyType proxy_;
/external/libchrome/mojo/public/cpp/bindings/
Dbinding_set.h28 using ProxyType = InterfacePtr<Interface>;
33 static RequestType MakeRequest(ProxyType* proxy) {
70 using ProxyType = typename Traits::ProxyType;
Dthread_safe_interface_ptr.h44 using ProxyType = typename Interface::Proxy_;
74 ProxyType& proxy() { return proxy_; } in proxy()
248 ProxyType proxy_;
Dassociated_binding_set.h17 using ProxyType = AssociatedInterfacePtr<Interface>;
/external/python/cpython2/Lib/multiprocessing/
Dmanagers.py901 ProxyType = type(name, (BaseProxy,), dic)
902 ProxyType._exposed_ = exposed
903 _cache[(name, exposed)] = ProxyType
904 return ProxyType
926 ProxyType = MakeProxyType('AutoProxy[%s]' % token.typeid, exposed)
927 proxy = ProxyType(token, serializer, manager=manager, authkey=authkey,
/external/python/cpython3/Lib/multiprocessing/
Dmanagers.py942 ProxyType = type(name, (BaseProxy,), dic)
943 ProxyType._exposed_ = exposed
944 _cache[(name, exposed)] = ProxyType
945 return ProxyType
967 ProxyType = MakeProxyType('AutoProxy[%s]' % token.typeid, exposed)
968 proxy = ProxyType(token, serializer, manager=manager, authkey=authkey,
/external/python/cpython2/Lib/
Dweakref.py20 ProxyType,
29 ProxyTypes = (ProxyType, CallableProxyType)
/external/python/cpython3/Lib/
Dweakref.py18 ProxyType,
28 ProxyTypes = (ProxyType, CallableProxyType)
/external/python/cpython2/Doc/library/
Dweakref.rst123 ``ProxyType`` or ``CallableProxyType``, depending on whether *object* is
223 .. data:: ProxyType
/external/python/cpython3/Doc/library/
Dweakref.rst136 ``ProxyType`` or ``CallableProxyType``, depending on whether *object* is
308 .. data:: ProxyType
/external/protobuf/python/google/protobuf/internal/
Dpython_message.py1388 if isinstance(parent_message, weakref.ProxyType):
/external/webrtc/webrtc/p2p/base/
Dp2ptransportchannel_unittest.cc374 void SetProxy(int endpoint, rtc::ProxyType type) { in SetProxy()