Home
last modified time | relevance | path

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

/ohos5.0/drivers/hdf_core/framework/test/unittest/platform/common/
H A Dgpio_test.c163 uint16_t dirGet; in GpioTestSetGetDir() local
173 dirGet = GPIO_DIR_IN; in GpioTestSetGetDir()
180 ret = GpioGetDir(tester->cfg.gpio, &dirGet); in GpioTestSetGetDir()
185 if (dirSet != dirGet) { in GpioTestSetGetDir()
186 HDF_LOGE("GpioTestSetGetDir: set dir:%u, but get:%u!", dirSet, dirGet); in GpioTestSetGetDir()
191 dirGet = GPIO_DIR_OUT; in GpioTestSetGetDir()
197 ret = GpioGetDir(tester->cfg.gpio, &dirGet); in GpioTestSetGetDir()
202 if (dirSet != dirGet) { in GpioTestSetGetDir()
203 HDF_LOGE("GpioTestSetGetDir: set dir:%hu, but get:%hu!", dirSet, dirGet); in GpioTestSetGetDir()
/ohos5.0/drivers/hdf_core/adapter/khdf/linux/platform/gpio/
H A Dgpio_adapter.c95 int dirGet; in LinuxGpioGetDir() local
101 dirGet = gpiod_get_direction(gpio_to_desc(cntlr->start + local)); in LinuxGpioGetDir()
102 if (dirGet < 0) { in LinuxGpioGetDir()
105 *dir = (dirGet == GPIOF_DIR_IN) ? GPIO_DIR_IN : GPIO_DIR_OUT; in LinuxGpioGetDir()