Lines Matching full:pair
676 char *pair; in extract_uri_parameters() local
688 pair = params; in extract_uri_parameters()
692 for(loop = 0; (loop < LWIP_HTTPD_MAX_CGI_PARAMETERS) && pair; loop++) { in extract_uri_parameters()
695 http_cgi_params[loop] = pair; in extract_uri_parameters()
697 /* Remember the start of this name=value pair */ in extract_uri_parameters()
698 equals = pair; in extract_uri_parameters()
700 /* Find the start of the next name=value pair and replace the delimiter in extract_uri_parameters()
701 * with a 0 to terminate the previous pair string. */ in extract_uri_parameters()
702 pair = strchr(pair, '&'); in extract_uri_parameters()
703 if(pair) { in extract_uri_parameters()
704 *pair = '\0'; in extract_uri_parameters()
705 pair++; in extract_uri_parameters()
709 pair = strchr(equals, ' '); in extract_uri_parameters()
710 if(pair) { in extract_uri_parameters()
711 *pair = '\0'; in extract_uri_parameters()
715 pair = NULL; in extract_uri_parameters()
718 /* Now find the '=' in the previous pair, replace it with '\0' and save in extract_uri_parameters()