HomeSort by relevance Sort by last modified time
    Searched refs:_Method (Results 1 - 22 of 22) sorted by null

  /external/python/cpython3/Lib/
crypt.py 13 class _Method(_namedtuple('_Method', 'name ident salt_chars total_size')):
45 if salt is None or isinstance(salt, _Method):
51 METHOD_CRYPT = _Method('CRYPT', None, 2, 13)
52 METHOD_MD5 = _Method('MD5', '1', 8, 34)
53 METHOD_SHA256 = _Method('SHA256', '5', 16, 63)
54 METHOD_SHA512 = _Method('SHA512', '6', 16, 106)
57 for _method in (METHOD_SHA512, METHOD_SHA256, METHOD_MD5, METHOD_CRYPT):
58 _result = crypt('', _method)
59 if _result and len(_result) == _method.total_size
    [all...]
  /external/autotest/server/cros/faft/
rpc_proxy.py 14 class _Method:
30 return _Method(self.__call_method, "%s.%s" % (self.__name, name))
58 """Return a _Method object only, not its real object."""
59 return _Method(self.__call_faft_client, name)
  /external/wpa_supplicant_8/wpa_supplicant/
win_if_list.c 27 #define _NDISUIO_CTL_CODE(_Function, _Method, _Access) \
28 CTL_CODE(FSCTL_NDISUIO_BASE, _Function, _Method, _Access)
  /external/autotest/server/cros/multimedia/
remote_facade_factory.py 38 class _Method:
56 return _Method(self.__call_method, "%s.%s" % (self.__name, name))
98 """Return a _Method object only, not its real object."""
99 return _Method(self.__call_proxy, name)
  /external/autotest/client/cros/chameleon/
chameleon.py 39 class _Method(object):
54 """Constructs a _Method.
74 @return: a callable _Method object.
77 return _Method(self.__call_server, "%s.%s" % (self._name, name))
193 """Get the callable _Method object.
198 @return: a callable _Method object.
201 return _Method(self.__call_server, name)
  /external/wpa_supplicant_8/src/l2_packet/
l2_packet_ndis.c 34 #define _NDISUIO_CTL_CODE(_Function, _Method, _Access) \
35 CTL_CODE(FSCTL_NDISUIO_BASE, _Function, _Method, _Access)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
random.py 245 _Method=_MethodType, _BuiltinMethod=_BuiltinMethodType):
260 if type(self.random) is _BuiltinMethod or type(getrandbits) is _Method:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
random.py 244 _Method=_MethodType, _BuiltinMethod=_BuiltinMethodType):
259 if type(self.random) is _BuiltinMethod or type(getrandbits) is _Method:
    [all...]
xmlrpclib.py     [all...]
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
translate.py 383 def _Method(module, parsed_method, interface):
615 _Method(module, method, interface), interface.methods_data)
  /external/python/cpython2/Lib/
random.py 245 _Method=_MethodType, _BuiltinMethod=_BuiltinMethodType):
260 if type(self.random) is _BuiltinMethod or type(getrandbits) is _Method:
xmlrpclib.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
random.py 244 _Method=_MethodType, _BuiltinMethod=_BuiltinMethodType):
259 if type(self.random) is _BuiltinMethod or type(getrandbits) is _Method:
xmlrpclib.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
random.py 244 _Method=_MethodType, _BuiltinMethod=_BuiltinMethodType):
259 if type(self.random) is _BuiltinMethod or type(getrandbits) is _Method:
xmlrpclib.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
random.py 244 _Method=_MethodType, _BuiltinMethod=_BuiltinMethodType):
259 if type(self.random) is _BuiltinMethod or type(getrandbits) is _Method:
xmlrpclib.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
random.py 244 _Method=_MethodType, _BuiltinMethod=_BuiltinMethodType):
259 if type(self.random) is _BuiltinMethod or type(getrandbits) is _Method:
xmlrpclib.py     [all...]
  /external/python/cpython3/Lib/xmlrpc/
client.py     [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_ndis.c 400 #define _NDISUIO_CTL_CODE(_Function, _Method, _Access) \
401 CTL_CODE(FSCTL_NDISUIO_BASE, _Function, _Method, _Access)
    [all...]

Completed in 1143 milliseconds