Lines Matching refs:delim
1327 char *dst, *delim; in extract_hostname() local
1340 delim = strchr(src, '\\'); in extract_hostname()
1341 if (!delim) in extract_hostname()
1344 len = delim - src; in extract_hostname()
1647 char delim; in cifs_parse_mount_options() local
1655 delim = separator[0]; in cifs_parse_mount_options()
2200 if (!(tmp_end < end && tmp_end[1] == delim)) { in cifs_parse_mount_options()
2219 if (tmp_end < end && tmp_end[1] == delim) { in cifs_parse_mount_options()
2220 tmp_end[0] = delim; in cifs_parse_mount_options()
2225 while ((tmp_end = strchr(tmp_end, delim)) in cifs_parse_mount_options()
2226 != NULL && (tmp_end[1] == delim)) { in cifs_parse_mount_options()
2251 if ((value[i] == delim) && in cifs_parse_mount_options()
2252 value[i+1] == delim) in cifs_parse_mount_options()
3082 const char *delim, *payload; in cifs_set_cifscreds() local
3141 delim = strnchr(payload, upayload->datalen, ':'); in cifs_set_cifscreds()
3143 if (!delim) { in cifs_set_cifscreds()
3150 len = delim - payload; in cifs_set_cifscreds()
3176 ++delim; in cifs_set_cifscreds()
3177 vol->password = kstrndup(delim, len, GFP_KERNEL); in cifs_set_cifscreds()