Searched refs:req_buf (Results 1 – 8 of 8) sorted by relevance
/AliOS-Things-master/components/http/example/ |
A D | http_example.c | 14 static char req_buf[REQ_BUF_SIZE]; variable 32 memset(req_buf, 0, sizeof(req_buf)); in http_comp_example() 33 client_data.header_buf = req_buf; in http_comp_example() 34 client_data.header_buf_len = sizeof(req_buf); in http_comp_example()
|
/AliOS-Things-master/components/py_engine/modules/network/http/ |
A D | modhttp.c | 179 static char req_buf[HTTP_BUFF_SIZE]; variable 327 memset(req_buf, 0, sizeof(req_buf)); in task_http_request_func() 328 strcpy(req_buf, http_param->params); in task_http_request_func() 329 client_data.post_buf = req_buf; in task_http_request_func() 330 client_data.post_buf_len = sizeof(req_buf); in task_http_request_func() 342 memset(req_buf, 0, sizeof(req_buf)); in task_http_request_func() 343 strcpy(req_buf, http_param->params); in task_http_request_func() 344 client_data.post_buf = req_buf; in task_http_request_func() 357 memset(req_buf, 0, sizeof(req_buf)); in task_http_request_func() 358 strcpy(req_buf, http_param->params); in task_http_request_func() [all …]
|
A D | httputility.c | 154 char req_buf[HTTP_BUFF_SIZE]; variable 250 memset(req_buf, 0, sizeof(req_buf)); in task_http_request_func() 251 strcpy(req_buf, in task_http_request_func() 254 client_data.post_buf = req_buf; in task_http_request_func() 255 client_data.post_buf_len = sizeof(req_buf); in task_http_request_func()
|
A D | httpclient.c | 18 static char req_buf[REQ_BUF_SIZE]; variable 91 memset(req_buf, 0, sizeof(req_buf)); in http_client_new() 92 http_client_obj->client_data.header_buf = req_buf; in http_client_new() 93 http_client_obj->client_data.header_buf_len = sizeof(req_buf); in http_client_new()
|
/AliOS-Things-master/components/ulog/src/ |
A D | ulog_session_file.c | 174 static uint8_t *req_buf = NULL; variable 193 req_buf = (uint8_t *)aos_malloc(RSP_BUF_SIZE); in on_fs_upload() 194 if (rsp_buf != NULL && req_buf != NULL) { in on_fs_upload() 195 memset(req_buf, 0, sizeof(req_buf)); in on_fs_upload() 196 client_data.header_buf = req_buf; in on_fs_upload() 197 client_data.header_buf_len = sizeof(req_buf); in on_fs_upload() 240 aos_free(req_buf); in on_fs_upload() 241 req_buf = NULL; in on_fs_upload()
|
/AliOS-Things-master/components/uvoice/application/alicloudtts/ |
A D | alicloudtts.c | 179 char *req_buf = malloc(1024 + strlen(req_url)); in http_download() local 187 memset(req_buf, 0, sizeof(req_buf)); in http_download() 188 client_data.header_buf = req_buf; in http_download() 214 free(req_buf); in http_download()
|
/AliOS-Things-master/components/amp/engine/duktape_engine/addons/network/http/ |
A D | module_http.c | 161 char req_buf[HTTP_BUFF_SIZE]; variable 247 memset(req_buf, 0, sizeof(req_buf)); in task_http_request_func() 248 …strcpy(req_buf, "tab_index=0&count=3&group_id=6914830518563373582&item_id=6914830518563373581&aid=… in task_http_request_func() 249 client_data.post_buf = req_buf; in task_http_request_func() 250 client_data.post_buf_len = sizeof(req_buf); in task_http_request_func()
|
/AliOS-Things-master/components/ble_host/bt_host/host/ |
A D | smp.c | 1709 struct net_buf *req_buf; in bt_smp_br_send_pairing_req() local 1748 if (!req_buf) { in bt_smp_br_send_pairing_req() 1768 smp_br_send(smp, req_buf, NULL); in bt_smp_br_send_pairing_req() 2811 struct net_buf *req_buf; in smp_send_security_req() local 2851 if (!req_buf) { in smp_send_security_req() 3006 struct net_buf *req_buf; in sc_send_public_key() local 3009 if (!req_buf) { in sc_send_public_key() 3018 smp_send(smp, req_buf, NULL, NULL); in sc_send_public_key() 3032 struct net_buf *req_buf; in smp_send_pairing_req() local 3073 if (!req_buf) { in smp_send_pairing_req() [all …]
|
Completed in 29 milliseconds