/aosp_15_r20/external/python/cpython2/Lib/test/ |
D | test_xmlrpc.py | 804 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/ |
D | SimpleXMLRPCServer.py | 436 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler 524 if self.encode_threshold is not None: 525 if len(response) > self.encode_threshold:
|
D | xmlrpclib.py | 1263 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/ |
D | test_xmlrpc.py | 1182 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/ |
D | server.py | 435 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler 524 if self.encode_threshold is not None: 525 if len(response) > self.encode_threshold:
|
D | client.py | 1142 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/ |
D | server.py | 435 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler 524 if self.encode_threshold is not None: 525 if len(response) > self.encode_threshold:
|
D | client.py | 1142 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/ |
D | server.py | 435 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler 524 if self.encode_threshold is not None: 525 if len(response) > self.encode_threshold:
|
D | client.py | 1142 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/ |
D | server.py | 435 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler 524 if self.encode_threshold is not None: 525 if len(response) > self.encode_threshold:
|
D | client.py | 1142 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 D | server.py | 435 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 D | client.py | 1142 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/ |
D | server.py | 435 encode_threshold = 1400 #a common MTU variable in SimpleXMLRPCRequestHandler 524 if self.encode_threshold is not None: 525 if len(response) > self.encode_threshold:
|
D | client.py | 1142 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/ |
D | simplexmlrpcserver.rst | 140 .. attribute:: SimpleXMLRPCRequestHandler.encode_threshold
|
/aosp_15_r20/external/python/cpython2/Doc/whatsnew/ |
D | 2.7.rst | 1677 controlled by the :attr:`encode_threshold` attribute of
|
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/ |
D | 2.7.rst | 1701 controlled by the :attr:`encode_threshold` attribute of
|