Home
last modified time | relevance | path

Searched refs:body (Results 1 – 25 of 54) sorted by relevance

123

/test/xts/acts/distributed_schedule_lite/system_ability_manager_posix/src/
DSendRequestTest.cpp387 char body[] = "I wanna async call good result!"; variable
388 request.len = strlen(body) + 1;
393 errno_t error = strcpy_s((char *)request.data, request.len, body);
408 ASSERT_EQ(strcmp(feature->latestRequest, body), 0);
427 char body[] = "I wanna async call good result!"; variable
428 request.len = (uint32_t)(strlen(body) + 1);
433 errno_t error = strcpy_s((char *)request.data, request.len, body);
448 ASSERT_EQ(strcmp(feature->latestRequest, body), 0);
466 char body[] = "I wanna async call good result!"; variable
467 request.len = (uint32_t)(strlen(body) + 1);
[all …]
DTaskpoolSharedTaskTest.cpp314 char *body = (char*)"I wanna async call good result!"; variable
315 request.len = (uint32_t)(strlen(body) + 1);
320 errno_t error = strcpy_s((char *)request.data, request.len, body);
370 char *body = (char*)"I wanna async call good result!"; variable
371 request.len = (uint32_t)(strlen(body) + 1);
376 errno_t error = strcpy_s((char *)request.data, request.len, body);
422 char *body = (char*)"I want to call defaultFeature!"; variable
423 request.len = (uint32_t)(strlen(body) + 1);
428 errno_t error = strcpy_s((char *)request.data, request.len, body);
439 request2.len = (uint32_t)(strlen(body) + 1);
[all …]
DSendResponseTest.cpp371 char *body = (char*)"I wanna async call good result!"; variable
372 request.len = strlen(body) + 1;
377 errno_t error = strcpy_s((char *)request.data, request.len, body);
406 char *body = (char*)"I wanna async call good result!"; variable
407 request.len = strlen(body) + 1;
412 errno_t error = strcpy_s((char *)request.data, request.len, body);
440 char *body = (char*)"I wanna async call good result!"; variable
441 request.len = strlen(body) + 1;
446 errno_t error = strcpy_s((char *)request.data, request.len, body);
474 char *body = (char*)"I wanna async call good result!"; variable
[all …]
DTaskpoolSpecifiedTaskTest.cpp283 char *body = (char*)"I wanna async call good result!"; variable
284 request.len = (uint32_t)(strlen(body) + 1);
289 errno_t error = strcpy_s((char *)request.data, request.len, body);
339 char *body = (char*)"I wanna async call good result!"; variable
340 request.len = (uint32_t)(strlen(body) + 1);
345 errno_t error = strcpy_s((char *)request.data, request.len, body);
391 char *body = (char*)"I want to call defaultFeature!"; variable
392 request.len = (uint32_t)(strlen(body) + 1);
397 errno_t error = strcpy_s((char *)request.data, request.len, body);
DTaskpoolSingleTaskTest.cpp366 char *body = (char*)"I wanna async call good result!"; variable
367 request.len = (uint32_t)(strlen(body) + 1);
372 errno_t error = strcpy_s((char *)request.data, request.len, body);
422 char *body = (char*)"I wanna async call good result!"; variable
423 request.len = (uint32_t)(strlen(body) + 1);
428 errno_t error = strcpy_s((char *)request.data, request.len, body);
477 char *body = (char*)"I wanna async call good result!"; variable
478 request.len = (uint32_t)(strlen(body) + 1);
483 errno_t error = strcpy_s((char *)request.data, request.len, body);
532 char *body = (char*)"I wanna async call good result!"; variable
[all …]
DSendShareRequestTest.cpp374 char *body = (char*)"I wanna async call good result!"; variable
375 request.len = (int16)(strlen(body) + 1);
380 errno_t error = strcpy_s((char *)request.data, request.len, body);
412 char *body = (char*)"I wanna async call good result!"; variable
413 request.len = (int16)(strlen(body) + 1);
418 errno_t error = strcpy_s((char *)request.data, request.len, body);
/test/xts/device_attest/test/fuzztest/devattestcorenetwork_fuzzer/
Ddevattest_core_network_fuzz.c117 char *body = (char *)malloc(contentLen + 1); in ParseHttpsResp() local
118 if (body == NULL) { in ParseHttpsResp()
121 (void)memset_s(body, contentLen + 1, 0, contentLen + 1); in ParseHttpsResp()
123 retCode = memcpy_s(body, contentLen + 1, respMsg + headerLen, contentLen); in ParseHttpsResp()
125 free(body); in ParseHttpsResp()
126 body = NULL; in ParseHttpsResp()
129 *outBody = body; in ParseHttpsResp()
/test/xts/acts/distributed_schedule_lite/system_ability_manager_hal/src/
Dsendrequest_func_test.c445 char *body = "I wanna async call good result!"; variable
446 request.len = (int16)(strlen(body) + 1);
451 strcpy_s(request.data, request.len, body);
465 TEST_ASSERT_EQUAL_INT(strcmp(feature->latestRequest, body), 0);
482 char *body = "I wanna async call good result!"; variable
483 request.len = (int16)(strlen(body) + 1);
488 strcpy_s(request.data, request.len, body);
502 TEST_ASSERT_EQUAL_INT(strcmp(feature->latestRequest, body), 0);
519 char *body = "I wanna async call good result!"; variable
520 request.len = (int16)(strlen(body) + 1);
[all …]
Dtaskpool_sharedtask_func_test.c309 char *body = "I wanna async call good result!"; variable
310 request.len = (int16)(strlen(body) + 1);
315 strcpy_s(request.data, request.len, body);
360 char *body = "I wanna async call good result!"; variable
361 request.len = (int16)(strlen(body) + 1);
366 strcpy_s(request.data, request.len, body);
407 char *body = "I want to call defaultFeature!"; variable
408 request.len = (int16)(strlen(body) + 1);
413 strcpy_s(request.data, request.len, body);
421 request2.len = (int16)(strlen(body) + 1);
[all …]
Dsendresponse_func_test.c359 char *body = "I wanna async call good result!"; variable
360 request.len = (int16)(strlen(body) + 1);
365 strcpy_s(request.data, request.len, body);
391 char *body = "I wanna async call good result!"; variable
392 request.len = (int16)(strlen(body) + 1);
397 strcpy_s(request.data, request.len, body);
423 char *body = "I wanna async call good result!"; variable
424 request.len = (int16)(strlen(body) + 1);
429 strcpy_s(request.data, request.len, body);
455 char *body = "I wanna async call good result!"; variable
[all …]
Dtaskpool_specifiedtask_func_test.c279 char *body = "I wanna async call good result!"; variable
280 request.len = (int16)(strlen(body) + 1);
285 strcpy_s(request.data, request.len, body);
330 char *body = "I wanna async call good result!"; variable
331 request.len = (int16)(strlen(body) + 1);
336 strcpy_s(request.data, request.len, body);
377 char *body = "I want to call defaultFeature!"; variable
378 request.len = (int16)(strlen(body) + 1);
383 strcpy_s(request.data, request.len, body);
Dtaskpool_singletask_func_test.c355 char *body = "I wanna async call good result!"; variable
356 request.len = (int16)(strlen(body) + 1);
361 strcpy_s(request.data, request.len, body);
411 char *body = "I wanna async call good result!"; variable
412 request.len = (int16)(strlen(body) + 1);
417 strcpy_s(request.data, request.len, body);
466 char *body = "I wanna async call good result!"; variable
467 request.len = (int16)(strlen(body) + 1);
472 strcpy_s(request.data, request.len, body);
521 char *body = "I wanna async call good result!"; variable
[all …]
Dsendsharerequest_func_test.c381 char *body = "I wanna async call good result!"; variable
382 request.len = (int16)(strlen(body) + 1);
387 strcpy_s(request.data, request.len, body);
401 TEST_ASSERT_EQUAL_INT(strcmp(feature->latestRequest, body), 0);
418 char *body = "I wanna async call good result!"; variable
419 request.len = (int16)(strlen(body) + 1);
424 strcpy_s(request.data, request.len, body);
/test/xts/acts/arkui/ace_ets_web_enhanced_stress/ace_ets_web_enhanced_stress_one/entry/src/main/ets/MainAbility/pages/
DWebLoadDataTest.ets56 …data: "<html><head><title>LoadData</title></head><body bgcolor=\"white\">Source:<pre>source</pre</
73 …data: "<html><head><title>LoadData</title></head><body bgcolor=\"white\">Source:<pre>source</pre</
91 …data: "<html><head><title>LoadData</title></head><body bgcolor=\"white\">Source:<pre>source</pre</
110 …data: "<html><head><title>LoadData</title></head><body bgcolor=\"white\">Source:<pre>source</pre</
128 …data: "<html><head><title>LoadData</title></head><body bgcolor=\"white\">Source:<pre>source</pre</
146 …data: "<html><head><title>LoadData</title></head><body bgcolor=\"white\">Source:<pre>source</pre</
165 …data: "<html><head><title>LoadData</title></head><body bgcolor=\"white\">Source:<pre>source</pre</
183 …data: "<html><head><title>LoadData</title></head><body bgcolor=\"white\">Source:<pre>source</pre</
202 …data: "<html><head><title>LoadData</title></head><body bgcolor=\"white\">Source:<pre>source</pre</
DWebViewControllerLoadDataTest.ets57 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
75 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
94 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
114 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
134 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
154 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
DWebOnFirstContentfulPaintTest.ets35 "<body>\n" +
37 "</body>\n" +
DWebAttributeOnHttpErrorReceiveTest.ets36 "<body>\n" +
38 "</body>\n" +
/test/xts/device_attest/services/core/network/
Dattest_network.c816 static int32_t BuildHttpsMsg(char *header, char *body, char **outMsg) in BuildHttpsMsg() argument
818 if (header == NULL || body == NULL || outMsg == NULL) { in BuildHttpsMsg()
824 uint32_t bodyLen = strlen(body); in BuildHttpsMsg()
847 ret = memcpy_s(msg + headerLen, msgLen - headerLen, body, bodyLen); in BuildHttpsMsg()
866 char *body = NULL; in GenHttpsMsg() local
869 retCode = BuildHttpsBody(devPacket, actionType, &body); in GenHttpsMsg()
874 retCode = BuildHttpsHead(devPacket, strlen(body), actionType, &header); in GenHttpsMsg()
879 retCode = BuildHttpsMsg(header, body, &msg); in GenHttpsMsg()
886 ATTEST_MEM_FREE(body); in GenHttpsMsg()
1056 char *body = (char *)ATTEST_MEM_MALLOC(contentLen + 1); in ParseHttpsResp() local
[all …]
/test/xts/acts/arkui/ace_ets_web_enhanced/ace_ets_web_enhanced_one/entry/src/main/ets/MainAbility/pages/
DwebController.ets156 "<body bgcolor=\"white\">Source:<pre>source</pre</body>" +
177 "<body bgcolor=\"white\">Source:<pre>source</pre</body>" +
200 "<body bgcolor=\"white\">Source:<pre>source</pre</body>" +
225 "<body bgcolor=\"white\">Source:<pre>source</pre</body>" +
320 "<body bgcolor=\"white\">Source:<pre>source</pre</body>" +
414 "<body bgcolor=\"white\">Source:<pre>source</pre</body>" +
519 "<body bgcolor=\"white\">Source:<pre>source</pre</body>" +
562 "<body bgcolor=\"white\">Source:<pre>source</pre</body>" +
623 "<body bgcolor=\"white\">Source:<pre>source</pre</body>" +
/test/xts/acts/arkui/ace_ets_web_enhanced/ace_ets_web_enhanced_two/entry/src/main/ets/MainAbility/pages/
DWebViewControllerPart3.ets140 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
187 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
241 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
256 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
273 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
290 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
884 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
930 "<body bgcolor=\"white\">Source:<pre>source</pre></body></html>",
/test/xts/acts/arkui/ace_ets_webView/entry/src/main/resources/rawfile/css/
Dreset.css16 html, body, div, span, object, iframe, selector
36 body { selector
/test/xts/acts/arkui/ace_ets_web_dev_webviewController/entry/src/main/ets/MainAbility/pages/
DwebViewOnInterceptReqTwo.ets35 "<body>\n"+
37 "</body>\n"+
/test/xts/acts/arkui/ace_ets_web_enhanced_stress/ace_ets_web_enhanced_stress_two/entry/src/main/ets/MainAbility/pages/
DWebResourceResponseSetResponseIsReadyTest.ets32 "<body>\n" +
38 "</body>\n" +
DWebResourceResponseSetResponseEncodingTest.ets32 "<body>\n" +
38 "</body>\n" +
DWebResourceResponseSetResponseDataTest.ets32 "<body>\n" +
38 "</body>\n" +

123