Lines Matching defs:offset
35 offset_t full; /* full 64 bit offset value */
43 pr_lseek(struct ps_prochandle *Pr, int filedes, off_t offset, int whence)
54 return (lseek(filedes, offset, whence));
63 adp++; /* offset argument */
67 adp->arg_value = offset;
75 off.full = offset;
104 offset = rval.sys_rval1;
108 offset = (off_t)off.full;
111 return (offset);
118 pr_llseek(struct ps_prochandle *Pr, int filedes, offset_t offset, int whence)
129 return (llseek(filedes, offset, whence));
138 adp++; /* offset argument */
142 adp->arg_value = offset;
150 off.full = offset;
179 offset = rval.sys_rval1;
183 offset = off.full;
186 return (offset);