/external/libmicrohttpd/src/examples/ |
mhd2spdy_structures.c | 32 free(uri->full_uri); 70 char * full_uri, 79 if (0 != (ret = regexec(preg, full_uri, nmatch, pmatch, 0))) 86 (*uri)->full_uri = strdup(full_uri); 88 asprintf(&((*uri)->scheme), "%.*s",pmatch[2].rm_eo - pmatch[2].rm_so, &full_uri[pmatch[2].rm_so]); 89 asprintf(&((*uri)->host_and_port), "%.*s",pmatch[4].rm_eo - pmatch[4].rm_so, &full_uri[pmatch[4].rm_so]); 90 asprintf(&((*uri)->path), "%.*s",pmatch[5].rm_eo - pmatch[5].rm_so, &full_uri[pmatch[5].rm_so]); 91 asprintf(&((*uri)->path_and_more), "%.*s",pmatch[9].rm_eo - pmatch[5].rm_so, &full_uri[pmatch[5].rm_so]); 92 asprintf(&((*uri)->query), "%.*s",pmatch[7].rm_eo - pmatch[7].rm_so, &full_uri[pmatch[7].rm_so]) [all...] |
mhd2spdy_structures.h | 88 char * full_uri; member in struct:URI 281 char * full_uri,
|
/external/autotest/frontend/shared/ |
resource_test_utils.py | 59 full_uri = uri 62 full_uri = self.URI_PREFIX + '/' + uri 64 response = self.raw_request(method, full_uri, **kwargs) 68 % (full_uri, expected_status, response.status_code,
|
rest_client.py | 125 full_uri = ''.join(uri_parts) 132 logging.debug('%s %s', method, full_uri) 140 full_uri, method, body=entity_body, 147 full_uri, method, body=entity_body,
|
/external/libmicrohttpd/src/spdy2http/ |
proxy.c | 77 char * full_uri; member in struct:URI 193 free(uri->full_uri); 233 parse_uri(regex_t * preg, const char * full_uri, struct URI ** uri) 242 if (0 != (ret = regexec(preg, full_uri, nmatch, pmatch, 0))) 249 (*uri)->full_uri = strdup(full_uri); 254 &full_uri[pmatch[2].rm_so]); 257 &full_uri[pmatch[4].rm_so]); 261 &full_uri[pmatch[5].rm_so]); 265 &full_uri[pmatch[5].rm_so]) [all...] |