Lines Matching refs:params
267 char *params[LWIP_HTTPD_MAX_CGI_PARAMETERS]; /* Params extracted from the request URI */
311 static err_t http_init_file(struct http_state *hs, struct fs_file *file, int is_09, const char *uri, u8_t tag_check, char *params);
341 #define http_cgi_params hs->params
684 * @param params pointer to the NULL-terminated parameter string from the URI
688 extract_uri_parameters(struct http_state *hs, char *params)
697 if (!params || (params[0] == '\0')) {
702 pair = params;
2196 char *params = NULL;
2255 params = (char *)strchr(uri, '?');
2256 if (params != NULL) {
2258 *params = '\0';
2259 params++;
2272 http_cgi_paramcount = extract_uri_parameters(hs, params);
2273 uri = httpd_cgis[i].pfnCGIHandler(i, http_cgi_paramcount, hs->params,
2305 return http_init_file(hs, file, is_09, uri, tag_check, params);
2316 * @param params != NULL if URI has parameters (separated by '?')
2322 u8_t tag_check, char *params)
2351 if (params != NULL) {
2360 count = extract_uri_parameters(hs, params);
2369 LWIP_UNUSED_ARG(params);