Lines Matching refs:arg
221 struct pps_fetch_args arg; in time_pps_fetch() local
223 arg.tsformat = tsformat; in time_pps_fetch()
225 arg.timeout.tv_sec = -1; in time_pps_fetch()
226 arg.timeout.tv_nsec = -1; in time_pps_fetch()
228 arg.timeout = *timeout; in time_pps_fetch()
229 error = ioctl(handle, PPS_IOC_FETCH, &arg); in time_pps_fetch()
230 *ppsinfobuf = arg.pps_info_buf; in time_pps_fetch()
238 struct pps_fetch_ffc_args arg; in time_pps_fetch_ffc() local
241 arg.tsformat = tsformat; in time_pps_fetch_ffc()
243 arg.timeout.tv_sec = -1; in time_pps_fetch_ffc()
244 arg.timeout.tv_nsec = -1; in time_pps_fetch_ffc()
246 arg.timeout = *timeout; in time_pps_fetch_ffc()
248 error = ioctl(handle, PPS_IOC_FETCH_FFCOUNTER, &arg); in time_pps_fetch_ffc()
249 *ppsinfobuf = arg.pps_info_buf_ffc; in time_pps_fetch_ffc()
257 struct pps_kcbind_args arg; in time_pps_kcbind() local
259 arg.kernel_consumer = kernel_consumer; in time_pps_kcbind()
260 arg.edge = edge; in time_pps_kcbind()
261 arg.tsformat = tsformat; in time_pps_kcbind()
262 return (ioctl(handle, PPS_IOC_KCBIND, &arg)); in time_pps_kcbind()