Home
last modified time | relevance | path

Searched refs:service_path (Results 1 – 17 of 17) sorted by relevance

/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/wsgi/
Dservice.py57 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/
Dservice_handlers.py415 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 …]
Dforms.py135 service_path = self.request.get('path', None)
138 if service_path and method_name:
140 params['service_path'] = service_path
Dforms_test.py146 service_path='/my-path',
Dservice_handlers_test.py487 '/my_service' == state.service_path and
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/appstats/protorpc_appstats/
Dmain.py79 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/
Dpeer.py104 service_path = '%s/services/%d' % (self._path,
107 self._bus, service_path, self.uuid, service_id,
/external/autotest/client/cros/networking/
Dapmanager_proxy.py192 def terminate_service(self, service_path): argument
198 self._manager.RemoveService(dbus.ObjectPath(service_path))
Dshill_proxy.py550 for service_path in all_services:
552 service_path)
Dshill_xmlrpc_server.py330 service_path = self._wifi_proxy.manager.FindMatchingService(
333 self._wifi_proxy.DBUS_TYPE_SERVICE, service_path)
/external/libbrillo/brillo/glib/
Dabstract_dbus_service.cc16 service_path(), in Register()
Dabstract_dbus_service.h39 virtual const char* service_path() const = 0;
Ddbus.cc214 const char* service_path, in RegisterExclusiveService() argument
272 service_path, in RegisterExclusiveService()
Ddbus.h173 const char* service_path,
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/
Dprotorpc.js42 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/
Dremote.py785 service_path=None, argument
802 self.__service_path = service_path
820 def service_path(self): member in HttpRequestState
Dremote_test.py349 state = remote.HttpRequestState(service_path='/bar')
350 self.assertEquals('/bar', state.service_path)
383 service_path='/bar',