Searched refs:req_url (Results 1 – 8 of 8) sorted by relevance
/AliOS-Things-master/components/http/example/ |
A D | http_example.c | 24 char * req_url = "http://www.baidu.com/"; in http_comp_example() local 29 req_url = argv[1]; in http_comp_example() 40 printf("http request %s\r\n", req_url); in http_comp_example() 43 ret = httpclient_get(&client, req_url, &client_data); in http_comp_example()
|
/AliOS-Things-master/components/uvoice/application/alicloudtts/ |
A D | alicloudtts.c | 176 static void http_download(char *req_url, tts_recv_callback_t *recv_cb) in http_download() argument 179 char *req_buf = malloc(1024 + strlen(req_url)); in http_download() 189 client_data.header_buf_len = 1024 + strlen(req_url); in http_download() 195 ret = httpclient_conn(&client, req_url); in http_download() 197 ret = httpclient_send(&client, req_url, HTTP_GET, &client_data); in http_download()
|
/AliOS-Things-master/components/py_engine/external/app_mgr/ |
A D | app_mgr.c | 109 char *req_url = url; in task_http_download_func() local 116 ret = httpclient_conn(&client, req_url); in task_http_download_func() 119 ret = httpclient_send(&client, req_url, HTTP_GET, &client_data); in task_http_download_func()
|
/AliOS-Things-master/components/py_engine/modules/network/http/ |
A D | httputility.c | 168 char *req_url = in task_http_download_func() local 177 ret = httpclient_conn(&client, req_url); in task_http_download_func() 180 ret = httpclient_send(&client, req_url, HTTP_GET, &client_data); in task_http_download_func()
|
A D | modhttp.c | 192 char *req_url = http_param->url; in task_http_download_func() local 212 ret = httpclient_conn(&client, req_url); in task_http_download_func() 215 ret = httpclient_send(&client, req_url, HTTP_GET, &client_data); in task_http_download_func()
|
A D | httpclient.c | 592 char *req_url = url; in task_http_download_func() local 599 ret = httpclient_conn(&client, req_url); in task_http_download_func() 602 ret = httpclient_send(&client, req_url, HTTP_GET, &client_data); in task_http_download_func()
|
/AliOS-Things-master/components/amp/engine/duktape_engine/addons/network/http/ |
A D | module_http.c | 175 char * req_url = "http://wangguan-498.oss-cn-beijing.aliyuncs.com/SHOPAD/public/mould5.png"; in task_http_download_func() local 182 ret = httpclient_conn(&client, req_url); in task_http_download_func() 185 ret = httpclient_send(&client, req_url, HTTP_GET, &client_data); in task_http_download_func()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/network/http/ |
A D | module_http.c | 170 char *req_url = param->url; in http_download_func() local 192 ret = httpclient_conn(&client, req_url); in http_download_func() 194 ret = httpclient_send(&client, req_url, HTTP_GET, &client_data); in http_download_func()
|
Completed in 11 milliseconds