Home
last modified time | relevance | path

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

/external/webrtc/rtc_base/
Dproxy_info.h21 enum ProxyType { PROXY_NONE, PROXY_HTTPS, PROXY_SOCKS5, PROXY_UNKNOWN }; enum
22 const char* ProxyToString(ProxyType proxy);
25 ProxyType type;
Dproxy_info.cc15 const char* ProxyToString(ProxyType proxy) { in ProxyToString()
/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/libchrome/mojo/public/cpp/bindings/
Dbinding_set.h28 using ProxyType = InterfacePtr<Interface>;
33 static RequestType MakeRequest(ProxyType* proxy) {
70 using ProxyType = typename Traits::ProxyType;
Dassociated_binding_set.h17 using ProxyType = AssociatedInterfacePtr<Interface>;
Dthread_safe_interface_ptr.h44 using ProxyType = typename Interface::Proxy_;
74 ProxyType& proxy() { return proxy_; } in proxy()
248 ProxyType proxy_;
/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.py955 ProxyType = type(name, (BaseProxy,), dic)
956 ProxyType._exposed_ = exposed
957 _cache[(name, exposed)] = ProxyType
958 return ProxyType
980 ProxyType = MakeProxyType('AutoProxy[%s]' % token.typeid, exposed)
981 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.rst137 ``ProxyType`` or ``CallableProxyType``, depending on whether *object* is
303 .. data:: ProxyType
/external/protobuf/python/google/protobuf/internal/
Dpython_message.py1494 if isinstance(parent_message, weakref.ProxyType):
/external/webrtc/p2p/base/
Dp2p_transport_channel_unittest.cc490 void SetProxy(int endpoint, rtc::ProxyType type) { in SetProxy()