Lines Matching full:pair
690 char *pair; in extract_uri_parameters() local
702 pair = params; in extract_uri_parameters()
706 for (loop = 0; (loop < LWIP_HTTPD_MAX_CGI_PARAMETERS) && pair; loop++) { in extract_uri_parameters()
709 http_cgi_params[loop] = pair; in extract_uri_parameters()
711 /* Remember the start of this name=value pair */ in extract_uri_parameters()
712 equals = pair; in extract_uri_parameters()
714 /* Find the start of the next name=value pair and replace the delimiter in extract_uri_parameters()
715 * with a 0 to terminate the previous pair string. */ in extract_uri_parameters()
716 pair = strchr(pair, '&'); in extract_uri_parameters()
717 if (pair) { in extract_uri_parameters()
718 *pair = '\0'; in extract_uri_parameters()
719 pair++; in extract_uri_parameters()
723 pair = strchr(equals, ' '); in extract_uri_parameters()
724 if (pair) { in extract_uri_parameters()
725 *pair = '\0'; in extract_uri_parameters()
729 pair = NULL; in extract_uri_parameters()
732 /* Now find the '=' in the previous pair, replace it with '\0' and save in extract_uri_parameters()