Home
last modified time | relevance | path

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

/platform_testing/libraries/sts-common-util/host-side/src/com/android/sts/common/
DRootcanalUtils.java236 int testPort = findOpenPort(); in enableRootcanal() local
237 device.executeAdbCommand("forward", String.format("tcp:%d", testPort), "tcp:6111"); in enableRootcanal()
242 return new RootcanalController(testPort, hciPort); in enableRootcanal()
423 private final int testPort; field in RootcanalUtils.RootcanalController
428 private RootcanalController(int testPort, int hciPort) in RootcanalController() argument
430 this.testPort = testPort; in RootcanalController()
432 CLog.d("Rootcanal controller initialized; testPort=%d, hciPort=%d", testPort, hciPort); in RootcanalController()
467 rootcanalTestChannel = new Socket("localhost", testPort); in sendTestChannelCommand()