Home
last modified time | relevance | path

Searched refs:wrapped_function (Results 1 – 7 of 7) sorted by relevance

/external/python/oauth2client/oauth2client/contrib/django_util/
Ddecorators.py70 def curry_wrapper(wrapped_function): argument
71 @wraps(wrapped_function)
87 return wrapped_function(request, *args, **kwargs)
130 def curry_wrapper(wrapped_function): argument
131 @wraps(wrapped_function)
138 return wrapped_function(request, *args, **kwargs)
/external/autotest/client/cros/
Dxmlrpc_server.py205 def decorator(wrapped_function): argument
212 @functools.wraps(wrapped_function)
221 logging.debug('%s()', wrapped_function.__name__)
223 return wrapped_function(*args, **kwargs)
227 wrapped_function.__name__,
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/_cython/
Dtest_utilities.py25 def wrapped_function(): function
33 self._thread = threading.Thread(target=wrapped_function)
/external/python/oauth2client/oauth2client/contrib/
Dflask_util.py507 def curry_wrapper(wrapped_function): argument
508 @wraps(wrapped_function)
524 return wrapped_function(*args, **kwargs)
/external/tensorflow/tensorflow/python/eager/
Dwrap_function.py553 wrapped_function = self._wrapped_function.prune(
555 self._functions[name] = wrapped_function
556 return wrapped_function
/external/tensorflow/tensorflow/python/util/
Ddeprecation.py111 def _wrap_decorator(wrapped_function): argument
128 return tf_decorator.make_decorator(wrapped_function, wrapper_func)
/external/autotest/client/cros/multimedia/
Dbluetooth_facade_native.py78 def decorator(wrapped_function): argument
86 @functools.wraps(wrapped_function)
95 logging.debug('%s()', wrapped_function.__name__)
97 return wrapped_function(*args, **kwargs)
102 wrapped_function.__name__, e.get_dbus_name(),