Lines Matching refs:off
148 int off, noff; in cifs_compose_mount_options() local
200 off = 0; in cifs_compose_mount_options()
204 off += 5; in cifs_compose_mount_options()
208 tkn_e = strchr(sb_mountdata + off, sep); in cifs_compose_mount_options()
210 noff = strlen(sb_mountdata + off); in cifs_compose_mount_options()
212 noff = tkn_e - (sb_mountdata + off) + 1; in cifs_compose_mount_options()
214 if (strncasecmp(sb_mountdata + off, "cruid=", 6) == 0) { in cifs_compose_mount_options()
215 off += noff; in cifs_compose_mount_options()
218 if (strncasecmp(sb_mountdata + off, "unc=", 4) == 0) { in cifs_compose_mount_options()
219 off += noff; in cifs_compose_mount_options()
222 if (strncasecmp(sb_mountdata + off, "ip=", 3) == 0) { in cifs_compose_mount_options()
223 off += noff; in cifs_compose_mount_options()
226 if (strncasecmp(sb_mountdata + off, "prefixpath=", 11) == 0) { in cifs_compose_mount_options()
227 off += noff; in cifs_compose_mount_options()
230 strncat(mountdata, sb_mountdata + off, noff); in cifs_compose_mount_options()
231 off += noff; in cifs_compose_mount_options()
233 strcat(mountdata, sb_mountdata + off); in cifs_compose_mount_options()