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