Lines Matching refs:slashPos
1454 const char *slashPos = NULL; in ftp_state_list() local
1460 slashPos = strrchr(rawPath, '/'); in ftp_state_list()
1461 if(slashPos) { in ftp_state_list()
1464 size_t n = slashPos - rawPath; in ftp_state_list()
4095 const char *slashPos = NULL; in ftp_parse_url_path() local
4123 slashPos = strrchr(rawPath, '/'); in ftp_parse_url_path()
4124 if(slashPos) { in ftp_parse_url_path()
4126 size_t dirlen = slashPos - rawPath; in ftp_parse_url_path()
4144 fileName = slashPos + 1; /* rest is file name */ in ftp_parse_url_path()
4169 while((slashPos = strchr(curPos, '/')) != NULL) { in ftp_parse_url_path()
4170 size_t compLen = slashPos - curPos; in ftp_parse_url_path()
4188 curPos = slashPos + 1; in ftp_parse_url_path()