Lines Matching defs:value
28 * the value of gpio. If the user want to do lots of read and write of
103 * gpiotools_set_values() - Set the value of gpio(s)
127 * gpiotools_get_values() - Get the value of gpio(s)
172 * gpiotools_get() - Get value from specific line
183 unsigned int value;
186 ret = gpiotools_gets(device_name, lines, 1, &value);
189 return value;
233 * gpiotools_set() - Set value to specific line
237 * @value: The value of gpio, must be 0(low) or 1(high).
243 unsigned int value)
247 return gpiotools_sets(device_name, lines, 1, &value);