Lines Matching full:low
21 // Test DevicePresence constructor with single GPIO, active low
25 std::vector<uint64_t> gpioValues = {0}; // Active low in TEST_F()
55 std::vector<uint64_t> gpioValues = {0, 1, 0}; // Active low, high, low in TEST_F()
68 // Test DevicePresence isPresent method with active low GPIO is low (device
74 std::vector<uint64_t> gpioValues = {0}; // Active low in TEST_F()
77 localGpioState["GPIO1"] = false; // GPIO is low in TEST_F()
84 // Test DevicePresence isPresent method with active low GPIO is high (device
90 std::vector<uint64_t> gpioValues = {0}; // Active low in TEST_F()
116 // Test DevicePresence isPresent method with active high GPIO is low (device
125 localGpioState["GPIO1"] = false; // GPIO is low in TEST_F()
138 std::vector<uint64_t> gpioValues = {0, 1, 0}; // Active low, high, low in TEST_F()
141 localGpioState["GPIO1"] = false; // Active low, should be low in TEST_F()
143 localGpioState["GPIO3"] = false; // Active low, should be low in TEST_F()
156 std::vector<uint64_t> gpioValues = {0, 1, 0}; // Active low, high, low in TEST_F()
159 localGpioState["GPIO1"] = false; // Active low, should be low - correct in TEST_F()
161 localGpioState["GPIO3"] = false; // Active low, should be low - correct in TEST_F()
173 std::vector<uint64_t> gpioValues = {0}; // Active low in TEST_F()