Searched refs:remote_method (Results 1 – 5 of 5) sorted by relevance
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
D | remote_test.py | 61 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 …]
|
D | definition.py | 190 def remote_method(self, request): function 193 remote_method.__name__ = method_name 197 class_dict[method_name] = remote_method_decorator(remote_method)
|
D | descriptor_test.py | 287 def remote_method(request): function 296 described = descriptor.describe_method(remote_method)
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/webapp/ |
D | service_handlers.py | 415 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 …]
|
D | service_handlers_test.py | 815 self.service_handler.remote_method = path_method
|