Home
last modified time | relevance | path

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

/hardware/libhardware/modules/radio/
Dradio_hw.c666 struct stub_radio_device *rdev = (struct stub_radio_device *)dev; in rdev_open_tuner() local
669 ALOGI("%s rdev %p", __func__, rdev); in rdev_open_tuner()
670 pthread_mutex_lock(&rdev->lock); in rdev_open_tuner()
672 if (rdev->tuner != NULL) { in rdev_open_tuner()
683 rdev->tuner = (struct stub_radio_tuner *)calloc(1, sizeof(struct stub_radio_tuner)); in rdev_open_tuner()
684 if (rdev->tuner == NULL) { in rdev_open_tuner()
689 rdev->tuner->interface.set_configuration = tuner_set_configuration; in rdev_open_tuner()
690 rdev->tuner->interface.get_configuration = tuner_get_configuration; in rdev_open_tuner()
691 rdev->tuner->interface.scan = tuner_scan; in rdev_open_tuner()
692 rdev->tuner->interface.step = tuner_step; in rdev_open_tuner()
[all …]
/hardware/nxp/uwb/halimpl/hal/
DsessionTrack.cc502 std::random_device rdev; in PickRandomStsIndex() local
503 std::mt19937 rng(rdev()); in PickRandomStsIndex()