Home | History | Annotate | Download | only in pwm

Lines Matching defs:out

22  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
68 char out[MAX_SIZE];
69 int length = snprintf(out, MAX_SIZE, "%d", period);
70 if (write(period_f, out, length * sizeof(char)) == -1) {
269 char out[MAX_SIZE];
270 int size = snprintf(out, MAX_SIZE, "%d", dev->pin);
271 if (write(export_f, out, size * sizeof(char)) == -1) {
368 char out[2];
369 int size = snprintf(out, sizeof(out), "%d", enable);
370 if (write(enable_f, out, size * sizeof(char)) == -1) {
391 char out[MAX_SIZE];
392 int size = snprintf(out, MAX_SIZE, "%d", dev->pin);
393 if (write(unexport_f, out, size * sizeof(char)) == -1) {