/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/wsgi/ |
D | service.py | 57 def service_mapping(service_factory, service_path=r'.*', protocols=None): argument 71 path_matcher = re.compile(_REQUEST_PATH_PATTERN % service_path) 78 service_path = path_match.group(1) 96 (service_path, 176 service_path=service_path, 245 for service_path, service_factory in services: 251 if service_path not in paths: 252 paths.add(service_path) 256 service_path.encode('utf-8')) 259 registry_map[service_path] = service_class [all …]
|
/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 420 service_path, remote_method)) 422 response_message.append('%s is a ProtoRPC service.\n\n' % service_path) 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 529 self.__show_info(service_path, remote_method) 551 service_path=service_path, [all …]
|
D | forms.py | 135 service_path = self.request.get('path', None) 138 if service_path and method_name: 140 params['service_path'] = service_path
|
D | forms_test.py | 146 service_path='/my-path',
|
D | service_handlers_test.py | 487 '/my_service' == state.service_path and
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/appstats/protorpc_appstats/ |
D | main.py | 79 service_path, registry_path = parse_service_path(path_info) 83 [(service_path, protorpc_appstats.AppStatsService)], registry_path)
|
/external/autotest/client/cros/tendo/n_faced_peerd/ |
D | peer.py | 104 service_path = '%s/services/%d' % (self._path, 107 self._bus, service_path, self.uuid, service_id,
|
/external/autotest/client/cros/networking/ |
D | apmanager_proxy.py | 192 def terminate_service(self, service_path): argument 198 self._manager.RemoveService(dbus.ObjectPath(service_path))
|
D | shill_proxy.py | 550 for service_path in all_services: 552 service_path)
|
D | shill_xmlrpc_server.py | 330 service_path = self._wifi_proxy.manager.FindMatchingService( 333 self._wifi_proxy.DBUS_TYPE_SERVICE, service_path)
|
/external/libbrillo/brillo/glib/ |
D | abstract_dbus_service.cc | 16 service_path(), in Register()
|
D | abstract_dbus_service.h | 39 virtual const char* service_path() const = 0;
|
D | dbus.cc | 214 const char* service_path, in RegisterExclusiveService() argument 272 service_path, in RegisterExclusiveService()
|
D | dbus.h | 173 const char* service_path,
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/ |
D | protorpc.js | 42 ProtoRpc.RPC = function(service_path, method_name, request, success, error) { argument 56 xhr.open('POST', service_path + '.' + method_name, true);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
D | remote.py | 785 service_path=None, argument 802 self.__service_path = service_path 820 def service_path(self): member in HttpRequestState
|
D | remote_test.py | 349 state = remote.HttpRequestState(service_path='/bar') 350 self.assertEquals('/bar', state.service_path) 383 service_path='/bar',
|