Home
last modified time | relevance | path

Searched refs:remote_method (Results 1 – 5 of 5) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
Dremote_test.py61 def remote_method(self, request): member in MyService
85 def remote_method(self, request): member in BasicService
122 BasicService.remote_method.remote.request_type)
124 BasicService.remote_method.remote.response_type)
125 self.assertTrue(isinstance(BasicService.remote_method.remote.method,
133 def remote_method(self, request): member in MethodTest.testMethodMessageResolution.OtherService
137 OtherService.remote_method.remote.request_type)
139 OtherService.remote_method.remote.response_type)
146 def remote_method(self, request): member in MethodTest.testMethodMessageResolution_NotFound.OtherService
153 OtherService.remote_method.remote,
[all …]
Ddefinition.py190 def remote_method(self, request): function
193 remote_method.__name__ = method_name
197 class_dict[method_name] = remote_method_decorator(remote_method)
Ddescriptor_test.py287 def remote_method(request): function
296 described = descriptor.describe_method(remote_method)
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/webapp/
Dservice_handlers.py415 def __show_info(self, service_path, remote_method): argument
418 if remote_method:
420 service_path, remote_method))
436 def get(self, service_path, remote_method): argument
443 self.handle('GET', service_path, remote_method)
445 def post(self, service_path, remote_method): argument
452 self.handle('POST', service_path, remote_method)
509 def handle(self, http_method, service_path, remote_method): argument
526 if not remote_method and http_method == 'GET':
529 self.__show_info(service_path, remote_method)
[all …]
Dservice_handlers_test.py815 self.service_handler.remote_method = path_method