Lines Matching refs:slashPos
1384 const char *slashPos = NULL; in ftp_state_list() local
1390 slashPos = strrchr(rawPath, '/'); in ftp_state_list()
1391 if(slashPos) { in ftp_state_list()
1394 size_t n = slashPos - rawPath; in ftp_state_list()
4118 const char *slashPos = NULL; in ftp_parse_url_path() local
4148 slashPos = strrchr(rawPath, '/'); in ftp_parse_url_path()
4149 if(slashPos) { in ftp_parse_url_path()
4151 size_t dirlen = slashPos - rawPath; in ftp_parse_url_path()
4168 fileName = slashPos + 1; /* rest is filename */ in ftp_parse_url_path()
4194 while((slashPos = strchr(curPos, '/'))) { in ftp_parse_url_path()
4195 size_t compLen = slashPos - curPos; in ftp_parse_url_path()
4212 curPos = slashPos + 1; in ftp_parse_url_path()