Home
last modified time | relevance | path

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

/development/tools/winscope/adb_proxy/
Dwinscope_proxy.py327 class RequestType(Enum): class
370 def register_endpoint(self, method: RequestType, name: str, endpoint: RequestEndpoint): argument
388 def process(self, method: RequestType): argument
788 RequestType.GET, "devices", ListDevicesEndpoint())
790 RequestType.GET, "status", StatusEndpoint())
792 RequestType.GET, "fetch", FetchFilesEndpoint())
793 self.router.register_endpoint(RequestType.POST, "start", StartTrace())
794 self.router.register_endpoint(RequestType.POST, "end", EndTrace())
795 self.router.register_endpoint(RequestType.POST, "dump", DumpEndpoint())
797 RequestType.POST, "configtrace", ConfigTrace())
[all …]