Home
last modified time | relevance | path

Searched refs:meth_name (Results 1 – 6 of 6) sorted by relevance

/external/autotest/frontend/afe/
Drpc_handler.py78 def validate_rpc_only_called_by_master(self, meth_name, remote_ip): argument
91 if meth_name in self._shard_rpc_methods:
97 meth_name, remote_ip, global_afe_ip))
224 meth_name = decoded_request['method']
226 meth_name, remote_ip)
/external/python/cpython2/Lib/
Dpyclbr.py166 tokentype, meth_name, start = g.next()[0:3]
173 cur_class._addmethod(meth_name, lineno)
177 dict[meth_name] = Function(fullmodule, meth_name,
Durllib2.py399 def _call_chain(self, chain, kind, meth_name, *args): argument
405 func = getattr(handler, meth_name)
424 meth_name = protocol+"_request"
426 meth = getattr(processor, meth_name)
432 meth_name = protocol+"_response"
434 meth = getattr(processor, meth_name)
459 meth_name = 'http_error_%s' % proto
464 meth_name = proto + '_error'
466 args = (dict, proto, meth_name) + args
/external/python/cpython2/Lib/test/
Dtest_ssl.py2588 for meth_name, send_meth, expect_success, args in send_methods:
2589 indata = (data_prefix + meth_name).encode('ascii')
2598 name=meth_name, outdata=outdata[:20],
2607 "expected to succeed.\n".format(name=meth_name)
2609 if not str(e).startswith(meth_name):
2613 name=meth_name, exp=e
2617 for meth_name, recv_meth, expect_success, args in recv_methods:
2618 indata = (data_prefix + meth_name).encode('ascii')
2627 name=meth_name, outdata=outdata[:20],
2636 "expected to succeed.\n".format(name=meth_name)
[all …]
Dtest_urllib2.py273 def __init__(self, meth_name, action, handle): argument
274 self.meth_name = meth_name
278 return self.handle(self.meth_name, self.action, *args)
Dtest_unicode.py453 for meth_name in ('islower', 'isupper', 'istitle'):
454 meth = getattr(unicode, meth_name)
456 self.assertFalse(meth(s), '%r.%s() is False' % (s, meth_name))
458 for meth_name in ('isalpha', 'isalnum', 'isdigit', 'isspace',
460 meth = getattr(unicode, meth_name)
464 self.assertFalse(meth(s), '%r.%s() is False' % (s, meth_name))