Home
last modified time | relevance | path

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

/development/tools/winscope/adb_proxy/
Dwinscope_proxy.py160 class RequestType(Enum): class
201 def register_endpoint(self, method: RequestType, name: str, endpoint: RequestEndpoint): argument
218 def process(self, method: RequestType): argument
512 self.router.register_endpoint(RequestType.GET, "devices", ListDevicesEndpoint())
513 self.router.register_endpoint(RequestType.GET, "status", StatusEndpoint())
514 self.router.register_endpoint(RequestType.GET, "fetch", FetchFileEndpoint())
515 self.router.register_endpoint(RequestType.POST, "start", StartTrace())
516 self.router.register_endpoint(RequestType.POST, "end", EndTrace())
517 self.router.register_endpoint(RequestType.POST, "dump", DumpEndpoint())
527 self.router.process(RequestType.GET)
[all …]