Home
last modified time | relevance | path

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

/platform_testing/libraries/sts-common-util/host-side/src/com/android/sts/common/
DRootcanalUtils.java239 int hciPort = findOpenPort(); in enableRootcanal() local
240 device.executeAdbCommand("forward", String.format("tcp:%d", hciPort), "tcp:6211"); in enableRootcanal()
242 return new RootcanalController(testPort, hciPort); in enableRootcanal()
424 private final int hciPort; field in RootcanalUtils.RootcanalController
428 private RootcanalController(int testPort, int hciPort) in RootcanalController() argument
431 this.hciPort = hciPort; in RootcanalController()
432 CLog.d("Rootcanal controller initialized; testPort=%d, hciPort=%d", testPort, hciPort); in RootcanalController()
450 HciDevice dev = new HciDevice(new Socket("localhost", hciPort)); in createHciDevice()