Lines Matching full:high
36 // Test DevicePresence constructor with single GPIO, active high
40 std::vector<uint64_t> gpioValues = {1}; // Active high in TEST_F()
55 std::vector<uint64_t> gpioValues = {0, 1, 0}; // Active low, high, low in TEST_F()
84 // Test DevicePresence isPresent method with active low GPIO is high (device
93 localGpioState["GPIO1"] = true; // GPIO is high in TEST_F()
100 // Test DevicePresence isPresent method with active high GPIO is high (device
106 std::vector<uint64_t> gpioValues = {1}; // Active high in TEST_F()
109 localGpioState["GPIO1"] = true; // GPIO is high in TEST_F()
116 // Test DevicePresence isPresent method with active high GPIO is low (device
122 std::vector<uint64_t> gpioValues = {1}; // Active high in TEST_F()
138 std::vector<uint64_t> gpioValues = {0, 1, 0}; // Active low, high, low in TEST_F()
142 localGpioState["GPIO2"] = true; // Active high, should be high in TEST_F()
156 std::vector<uint64_t> gpioValues = {0, 1, 0}; // Active low, high, low in TEST_F()
160 localGpioState["GPIO2"] = false; // Active high, should be high - incorrect in TEST_F()