/test/xts/device_attest_lite/services/core/utils/ |
D | attest_utils_list.c | 30 list->head = NULL; in CreateList() 39 ListNode* head = list->head; in AddListNode() local 41 if (head == NULL) { in AddListNode() 45 while (head != NULL && head->next != NULL) { in AddListNode() 46 head = head->next; in AddListNode() 60 if (list->head == NULL) { in AddListNode() 61 list->head = node; in AddListNode() 62 } else if (head != NULL) { in AddListNode() 63 head->next = node; in AddListNode() 74 ListNode* head = list->head; in GetListSize() local [all …]
|
D | attest_utils_memleak.c | 53 list->head = NULL; in InitMemNodeList() 88 ListNode* head = list->head; in DestroyMemNodeList() local 89 while (head != NULL) { in DestroyMemNodeList() 90 ListNode* curr = head; in DestroyMemNodeList() 91 head = head->next; in DestroyMemNodeList() 112 ListNode* head = list->head; in AddMemNode() local 113 if (head == NULL) { in AddMemNode() 114 list->head = node; in AddMemNode() 117 while (head->next != NULL) { in AddMemNode() 118 head = head->next; in AddMemNode() [all …]
|
/test/xts/device_attest/services/core/utils/ |
D | attest_utils_list.c | 30 list->head = NULL; in CreateList() 39 ListNode* head = list->head; in AddListNode() local 41 if (head == NULL) { in AddListNode() 45 while (head != NULL && head->next != NULL) { in AddListNode() 46 head = head->next; in AddListNode() 60 if (list->head == NULL) { in AddListNode() 61 list->head = node; in AddListNode() 62 } else if (head != NULL) { in AddListNode() 63 head->next = node; in AddListNode() 74 ListNode* head = list->head; in GetListSize() local [all …]
|
D | attest_utils_memleak.c | 53 list->head = NULL; in InitMemNodeList() 88 ListNode* head = list->head; in DestroyMemNodeList() local 89 while (head != NULL) { in DestroyMemNodeList() 90 ListNode* curr = head; in DestroyMemNodeList() 91 head = head->next; in DestroyMemNodeList() 112 ListNode* head = list->head; in AddMemNode() local 113 if (head == NULL) { in AddMemNode() 114 list->head = node; in AddMemNode() 117 while (head->next != NULL) { in AddMemNode() 118 head = head->next; in AddMemNode() [all …]
|
/test/xts/acts/arkui/ace_ets_web_enhanced_stress/ace_ets_web_enhanced_stress_one/entry/src/main/ets/MainAbility/pages/ |
D | WebLoadDataTest.ets | 56 …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</…
|
D | WebViewControllerLoadDataTest.ets | 56 "<html><head><title>LoadData</title></head>" + 74 "<html><head><title>LoadData</title></head>" + 93 "<html><head><title>LoadData</title></head>" + 113 "<html><head><title>LoadData</title></head>" + 133 "<html><head><title>LoadData</title></head>" + 153 "<html><head><title>LoadData</title></head>" +
|
D | WebOnFirstContentfulPaintTest.ets | 32 "<head>\n" + 34 "</head>\n" +
|
D | WebAttributeOnHttpErrorReceiveTest.ets | 33 "<head>\n" + 35 "</head>\n" +
|
/test/xts/device_attest_lite/services/core/ |
D | attest_entry.c | 105 int32_t *head = resultArray; in CopyAttestResult() local 106 attestResultInfo->authResult = *head; in CopyAttestResult() 107 head++; in CopyAttestResult() 108 attestResultInfo->softwareResult = *head; in CopyAttestResult() 110 attestResultInfo->softwareResultDetail[i] = *(++head); in CopyAttestResult()
|
/test/xts/device_attest_lite/services/core/attest/ |
D | attest_service.c | 379 int32_t *head = *resultArray; in CopyResultArray() local 380 head[ATTEST_RESULT_AUTH] = AttestStatusTrans(authStatus->hardwareResult); in CopyResultArray() 381 head[ATTEST_RESULT_SOFTWARE] = AttestStatusTrans(authStatus->softwareResult); in CopyResultArray() 387 head[ATTEST_RESULT_VERSIONID] = AttestStatusTrans(softwareResultDetail->versionIdResult); in CopyResultArray() 388 head[ATTEST_RESULT_PATCHLEVEL] = AttestStatusTrans(softwareResultDetail->patchLevelResult); in CopyResultArray() 389 head[ATTEST_RESULT_ROOTHASH] = AttestStatusTrans(softwareResultDetail->rootHashResult); in CopyResultArray() 390 head[ATTEST_RESULT_PCID] = AttestStatusTrans(softwareResultDetail->pcidResult); in CopyResultArray() 391 head[ATTEST_RESULT_RESERVE] = DEVICE_ATTEST_INIT; // Always equal to DEVICE_ATTEST_INIT in CopyResultArray() 400 int32_t *head = *resultArray; in SetAttestResultArray() local 402 head[i] = value; in SetAttestResultArray() [all …]
|
/test/xts/device_attest/services/core/attest/ |
D | attest_service.c | 344 int32_t *head = *resultArray; in CopyResultArray() local 345 head[ATTEST_RESULT_AUTH] = AttestStatusTrans(authStatus->hardwareResult); in CopyResultArray() 346 head[ATTEST_RESULT_SOFTWARE] = AttestStatusTrans(authStatus->softwareResult); in CopyResultArray() 352 head[ATTEST_RESULT_VERSIONID] = AttestStatusTrans(softwareResultDetail->versionIdResult); in CopyResultArray() 353 head[ATTEST_RESULT_PATCHLEVEL] = AttestStatusTrans(softwareResultDetail->patchLevelResult); in CopyResultArray() 354 head[ATTEST_RESULT_ROOTHASH] = AttestStatusTrans(softwareResultDetail->rootHashResult); in CopyResultArray() 355 head[ATTEST_RESULT_PCID] = AttestStatusTrans(softwareResultDetail->pcidResult); in CopyResultArray() 356 head[ATTEST_RESULT_RESERVE] = DEVICE_ATTEST_INIT; // Always equal to DEVICE_ATTEST_INIT in CopyResultArray() 365 int32_t *head = *resultArray; in SetAttestResultArray() local 367 head[i] = value; in SetAttestResultArray() [all …]
|
/test/xts/device_attest/services/devattest_ability/src/ |
D | devattest_service.cpp | 151 int32_t *head = resultArray; in CopyAttestResult() local 152 attestResultInfo.authResult_ = *head; in CopyAttestResult() 153 head++; in CopyAttestResult() 154 attestResultInfo.softwareResult_ = *head; in CopyAttestResult() 156 attestResultInfo.softwareResultDetail_[i] = *(++head); in CopyAttestResult()
|
/test/xts/device_attest_lite/services/core/network/ |
D | attest_network.c | 143 ListNode* head = optionList->head; in BuildCoapMsg() local 145 while ((head != NULL) && (index < COAP_MAX_OPTION)) { in BuildCoapMsg() 146 Option* option = (Option*)head->data; in BuildCoapMsg() 150 head = head->next; in BuildCoapMsg() 213 ListNode* head = g_attestNetworkList.head; in ConnectNetWork() local 216 while (head != NULL && currentIndex < MAX_NETWORK_CFG_LIST_SIZE) { in ConnectNetWork() 218 ServerInfo* networkInfo = (ServerInfo*)head->data; in ConnectNetWork() 219 head = head->next; in ConnectNetWork() 661 ListNode* head = uriList.head; in BuildUriOption() local 662 while (head != NULL) { in BuildUriOption() [all …]
|
/test/xts/acts/arkui/ace_ets_web_enhanced/ace_ets_web_enhanced_one/entry/src/main/ets/MainAbility/pages/ |
D | webController.ets | 153 "<head>" + 155 "</head>" + 174 "<head>" + 176 "</head>" + 197 "<head>" + 199 "</head>" + 222 "<head>" + 224 "</head>" + 317 "<head>" + 319 "</head>" + [all …]
|
/test/xts/acts/kernel_lite/sys_posix/src/ |
D | SysApiTest.cpp | 472 int CountQue(Myque *head) in CountQue() argument 474 Myque *first = head; in CountQue() 477 LOG("name=%s", head->name); in CountQue() 478 head = head->next; in CountQue() 480 } while (head != first); in CountQue()
|
/test/xts/device_attest/services/core/include/utils/ |
D | attest_utils_list.h | 33 ListNode* head; member
|
/test/xts/device_attest_lite/services/core/include/utils/ |
D | attest_utils_list.h | 33 ListNode* head; member
|
/test/xts/acts/arkui/ace_ets_web_enhanced/ace_ets_web_enhanced_two/entry/src/main/ets/MainAbility/pages/ |
D | WebViewControllerPart3.ets | 139 "<html><head><title>LoadData</title></head>" + 186 "<html><head><title>LoadData</title></head>" + 240 "<html><head><title>LoadData</title></head>" + 255 "<html><head><title>LoadData</title></head>" + 272 "<html><head><title>LoadData</title></head>" + 289 "<html><head><title>LoadData</title></head>" + 883 "<html><head><title>LoadData</title></head>" + 929 "<html><head><title>LoadData</title></head>" +
|
/test/xts/acts/arkui/ace_ets_web_dev_webviewController/entry/src/main/ets/MainAbility/pages/ |
D | webViewOnInterceptReqTwo.ets | 32 "<head>\n"+ 34 "</head>\n"+
|
/test/xts/acts/arkui/ace_ets_web_enhanced_stress/ace_ets_web_enhanced_stress_two/entry/src/main/ets/MainAbility/pages/ |
D | WebResourceResponseSetResponseIsReadyTest.ets | 29 "<head>\n" + 31 "</head>\n" +
|
D | WebResourceResponseSetResponseEncodingTest.ets | 29 "<head>\n" + 31 "</head>\n" +
|
D | WebResourceResponseSetResponseDataTest.ets | 29 "<head>\n" + 31 "</head>\n" +
|
D | WebResourceResponseSetResponseCodeTest.ets | 29 "<head>\n" + 31 "</head>\n" +
|
/test/xts/acts/arkui/ace_ets_web_enhanced/ace_ets_web_enhanced_three/entry/src/main/ets/MainAbility/pages/ |
D | webResourceError.ets | 27 "<head>\n" + 29 "</head>\n" +
|
/test/xts/acts/arkui/ace_ets_web_dev_webController/entry/src/main/ets/MainAbility/pages/ |
D | webOnInterceptReqOne.ets | 31 "<head>\n"+ 33 "</head>\n"+
|