Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython2/Lib/test/
Dtest_xmlrpc.py804 t.encode_threshold = None
808 t.encode_threshold = 0 #turn on request encoding
815 t.encode_threshold = None
826 old = self.requestHandler.encode_threshold
827 self.requestHandler.encode_threshold = None #no encoding
830 self.requestHandler.encode_threshold = 0 #always encode
833 self.requestHandler.encode_threshold = old
/aosp_15_r20/external/python/cpython2/Lib/
DSimpleXMLRPCServer.py436 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler
524 if self.encode_threshold is not None:
525 if len(response) > self.encode_threshold:
Dxmlrpclib.py1263 encode_threshold = None #None = don't encode variable in Transport
1452 if (self.encode_threshold is not None and
1453 self.encode_threshold < len(request_body) and
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_xmlrpc.py1182 t.encode_threshold = None
1186 t.encode_threshold = 0 #turn on request encoding
1194 t.encode_threshold = None
1206 old = self.requestHandler.encode_threshold
1207 self.requestHandler.encode_threshold = None #no encoding
1210 self.requestHandler.encode_threshold = 0 #always encode
1214 self.requestHandler.encode_threshold = old
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/xmlrpc/
Dserver.py435 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler
524 if self.encode_threshold is not None:
525 if len(response) > self.encode_threshold:
Dclient.py1142 encode_threshold = None #None = don't encode variable in Transport
1314 if (self.encode_threshold is not None and
1315 self.encode_threshold < len(request_body) and
/aosp_15_r20/external/python/cpython3/Lib/xmlrpc/
Dserver.py435 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler
524 if self.encode_threshold is not None:
525 if len(response) > self.encode_threshold:
Dclient.py1142 encode_threshold = None #None = don't encode variable in Transport
1314 if (self.encode_threshold is not None and
1315 self.encode_threshold < len(request_body) and
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/xmlrpc/
Dserver.py435 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler
524 if self.encode_threshold is not None:
525 if len(response) > self.encode_threshold:
Dclient.py1142 encode_threshold = None #None = don't encode variable in Transport
1314 if (self.encode_threshold is not None and
1315 self.encode_threshold < len(request_body) and
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/xmlrpc/
Dserver.py435 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler
524 if self.encode_threshold is not None:
525 if len(response) > self.encode_threshold:
Dclient.py1142 encode_threshold = None #None = don't encode variable in Transport
1314 if (self.encode_threshold is not None and
1315 self.encode_threshold < len(request_body) and
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/xmlrpc/
H A Dserver.py435 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler
524 if self.encode_threshold is not None:
525 if len(response) > self.encode_threshold:
H A Dclient.py1142 encode_threshold = None #None = don't encode variable in Transport
1314 if (self.encode_threshold is not None and
1315 self.encode_threshold < len(request_body) and
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/xmlrpc/
Dserver.py435 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler
524 if self.encode_threshold is not None:
525 if len(response) > self.encode_threshold:
Dclient.py1142 encode_threshold = None #None = don't encode variable in Transport
1314 if (self.encode_threshold is not None and
1315 self.encode_threshold < len(request_body) and
/aosp_15_r20/external/python/cpython2/Doc/library/
Dsimplexmlrpcserver.rst140 .. attribute:: SimpleXMLRPCRequestHandler.encode_threshold
/aosp_15_r20/external/python/cpython2/Doc/whatsnew/
D2.7.rst1677 controlled by the :attr:`encode_threshold` attribute of
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D2.7.rst1701 controlled by the :attr:`encode_threshold` attribute of