Lines Matching refs:uri_base
73 char *uri_base; member
339 oh->uri_base = malloc(len + 1); in efihttp_dev_open()
340 if (oh->uri_base == NULL) { in efihttp_dev_open()
344 strncpy(oh->uri_base, (const char *)uri->Uri, len); in efihttp_dev_open()
345 oh->uri_base[len] = '\0'; in efihttp_dev_open()
346 c = strrchr(oh->uri_base, '/'); in efihttp_dev_open()
349 c = strrchr(oh->uri_base, '/'); in efihttp_dev_open()
377 free(oh->uri_base); in efihttp_dev_close()
448 host = strdup(oh->uri_base); in _efihttp_fs_open()
470 request.Url = calloc(strlen(oh->uri_base) + strlen(path) + 1, 2); in _efihttp_fs_open()
477 cpy8to16(oh->uri_base, request.Url, strlen(oh->uri_base)); in _efihttp_fs_open()
478 cpy8to16(path, request.Url + strlen(oh->uri_base), strlen(path)); in _efihttp_fs_open()