Lines Matching refs:params
256 char *params[LWIP_HTTPD_MAX_CGI_PARAMETERS]; /* Params extracted from the request URI */ member
300 …ct http_state *hs, struct fs_file *file, int is_09, const char *uri, u8_t tag_check, char* params);
327 #define http_cgi_params hs->params
674 extract_uri_parameters(struct http_state *hs, char *params) in extract_uri_parameters() argument
683 if(!params || (params[0] == '\0')) { in extract_uri_parameters()
688 pair = params; in extract_uri_parameters()
2086 char *params = NULL; local
2144 params = (char *)strchr(uri, '?');
2145 if (params != NULL) {
2147 *params = '\0';
2148 params++;
2161 http_cgi_paramcount = extract_uri_parameters(hs, params);
2162 uri = g_pCGIs[i].pfnCGIHandler(i, http_cgi_paramcount, hs->params,
2212 return http_init_file(hs, file, is_09, uri, tag_check, params);
2229 u8_t tag_check, char* params) argument
2281 if (params != NULL) {
2290 count = extract_uri_parameters(hs, params);
2299 LWIP_UNUSED_ARG(params);