Lines Matching refs:handlereq
344 struct gpiohandle_request handlereq; in linehandle_create() local
350 if (copy_from_user(&handlereq, ip, sizeof(handlereq))) in linehandle_create()
352 if ((handlereq.lines == 0) || (handlereq.lines > GPIOHANDLES_MAX)) in linehandle_create()
355 lflags = handlereq.flags; in linehandle_create()
366 if (handlereq.consumer_label[0] != '\0') { in linehandle_create()
368 lh->label = kstrndup(handlereq.consumer_label, in linehandle_create()
369 sizeof(handlereq.consumer_label) - 1, in linehandle_create()
377 lh->num_descs = handlereq.lines; in linehandle_create()
380 for (i = 0; i < handlereq.lines; i++) { in linehandle_create()
381 u32 offset = handlereq.lineoffsets[i]; in linehandle_create()
393 linehandle_flags_to_desc_flags(handlereq.flags, &desc->flags); in linehandle_create()
404 int val = !!handlereq.default_values[i]; in linehandle_create()
436 handlereq.fd = fd; in linehandle_create()
437 if (copy_to_user(ip, &handlereq, sizeof(handlereq))) { in linehandle_create()