/test/testfwk/xdevice/src/xdevice/_core/report/ |
D | repeater_helper.py | 41 uuid = "{}#{}".format(module_name, name_in_suite) 45 if uuid not in modules.keys(): 46 modules[uuid] = suite 48 self._update_suite(modules, suite, uuid) 74 def _update_suite(self, modules, suite, uuid): argument 82 matched_case = modules[uuid].find(pattern) 84 modules[uuid].append(testcase) 86 modules[uuid].attrib.get(ReportConstant.tests, 0)) + 1 87 modules[uuid].attrib[ReportConstant.tests] = str(tests) 90 value = int(modules[uuid].attrib.get( [all …]
|
/test/xts/acts/communication/bluetooth_standard/src/main/js/test/ |
D | BtSpp.test.js | 105 let SppOption = {uuid: '00001810-0000-1000-8000-00805F9B34FB', property 130 let sppOption = {uuid: '00001810-0000-1000-8000-00805F9B34FB', property 155 let sppOption = {uuid: '00000000', property 179 let sppOption = {uuid: '00000000-0000-1000-8000-00805F9B34FB', property 206 uuid: '00001810-0000-1000-8000-00805F9B34FB', property 271 let sppOption = {uuid: '00001810-0000-1000-8000-00805F9B34FB', property 293 let sppOption = {uuid: '0000', property 315 let sppOption = {uuid: '00001810-0000-1000-8000-00805F9B34FB', property 348 let SppOption = {uuid: '00001810-0000-1000-8000-00805F9B34FB', property
|
D | BtManagerSpp.test.js | 108 uuid: '00001810-0000-1000-8000-00805F9B34FB', property 172 uuid: '00001810-0000-1000-8000-00805F9B34FB', property
|
/test/xts/acts/multimedia/drm/drm_ndk_test/src/main/cpp/types/libentry/ |
D | index.d.ts | 15 export const Test_KeySystemSupported: (uuid: string) => number; 16 export const Test_KeySystemSupported2: (uuid: string,mineType:string) => number; 17 export const Test_KeySystemSupported3: (uuid: string,mineType:string,level:number) => number;
|
/test/testfwk/developer_test/aw/cxx/distributed/ |
D | distributed_cfg.cpp | 140 std::string uuid = GetValueInString(valueOfUuids, devNo); in GetDeviceUuid() local 141 if (!uuid.compare("")) { in GetDeviceUuid() 148 HiLog::Info(DistributedCfg::LABEL, "get %zu device's uuid : %s", devNo, uuid.c_str()); in GetDeviceUuid() 149 return uuid; in GetDeviceUuid()
|
/test/xts/acts/multimedia/drm/drm_js_standard/avPlayer/src/main/ets/test/ |
D | DrmPlayerAbility.test.ets | 22 let uuid; 26 uuid = "com.clearplay.drm"; 28 uuid = "com.wiseplay.drm"; 75 let drmMediaKeySystem = drm.createMediaKeySystem(uuid); 96 let drmMediaKeySystem = drm.createMediaKeySystem(uuid); 101 …e.info(`getMediaKeySystemInfos item:${item}, keyinfos[${item}].uuid:${keyinfos[item].uuid}, keyinf… 122 let drmMediaKeySystem = drm.createMediaKeySystem(uuid); 179 * @tc.desc : one params error uuid 194 * @tc.desc : one params null uuid 222 let isSysSupport = drm.isMediaKeySystemSupported(uuid, "video/mp4"); [all …]
|
/test/testfwk/xdevice/src/xdevice/_core/executor/ |
D | request.py | 43 def __init__(self, uuid=None, name=None, source=None, con=False, error=None): argument 44 self.unique_id = uuid 215 def __init__(self, uuid=None, root=None, listeners=None, config=None): argument 216 self.uuid = uuid
|
D | listener.py | 20 import uuid 114 self.current_suite.index = uuid.uuid4().hex 120 self.current_suites.index = uuid.uuid4().hex 129 self.current_test.index = uuid.uuid4().hex 231 rid = uuid.uuid4().hex if test_result.index == "" else \ 243 rid = uuid.uuid4().hex if test_result.index == "" else \
|
D | source.py | 311 desc = Descriptor(uuid=uid, name=filename, 377 desc = Descriptor(uuid=uid, name=filename, 382 desc = Descriptor(uuid=uid, name=filename,
|
D | scheduler.py | 24 import uuid 133 task_id = str(uuid.uuid1()).split("-")[0] 902 root = Descriptor(uuid=uid, name="component", 912 root = Descriptor(uuid=uid, name="testdict", 926 root = Descriptor(uuid=uid, name=fname,
|
/test/xts/acts/communication/bluetooth_br/src/main/ets/test/ |
D | BtSocket.test.ets | 110 uuid: '00001810-0000-1000-8000-00805F9B34FB', 141 uuid: '00001810-0000-1000-8000-00805F9B34FB', 182 uuid: '00001810-0000-1000-8000-00805F9B34FB', 211 uuid: '00001810-0000-1000-8000-00805F9B34FB', 263 uuid: '00001810-0000-1000-8000-00805F9B34FB', 320 let SppOption = {uuid: '00001810-0000-1000-8000-00805F9B34FB', 341 uuid: '00001810-0000-1000-8000-00805F9B34FB', 383 uuid: '00001810-0000-1000-8000-00805F9B34FB',
|
/test/xts/device_attest_lite/services/core/dfx/ |
D | attest_dfx.c | 99 if (tokenInfo->uuid == NULL) { in PrintDeviceTokenInfo() 102 ATTEST_LOG_INFO_ANONY("uuid = %s;", tokenInfo->uuid); in PrintDeviceTokenInfo()
|
/test/xts/device_attest/services/core/dfx/ |
D | attest_dfx.c | 99 if (tokenInfo->uuid == NULL) { in PrintDeviceTokenInfo() 102 ATTEST_LOG_INFO_ANONY("uuid = %s;", tokenInfo->uuid); in PrintDeviceTokenInfo()
|
/test/xts/acts/multimedia/drm/drm_ndk_test/src/main/cpp/ |
D | hello.cpp | 221 char *uuid = nullptr; in Test_KeySystemSupported() local 224 uuid = new char[uuidLen + 1]; in Test_KeySystemSupported() 225 napi_get_value_string_utf8(env, args[0], uuid, uuidLen + 1, &uuidLen); in Test_KeySystemSupported() 228 if(strcmp(uuid," ") != 0){ in Test_KeySystemSupported() 229 uuid_ptr = uuid; in Test_KeySystemSupported() 241 char *uuid = nullptr; in Test_KeySystemSupported2() local 247 uuid = new char[uuidLen + 1]; in Test_KeySystemSupported2() 248 napi_get_value_string_utf8(env, args[0], uuid, uuidLen + 1, &uuidLen); in Test_KeySystemSupported2() 254 if(strcmp(uuid," ") != 0){ in Test_KeySystemSupported2() 255 uuid_ptr = uuid; in Test_KeySystemSupported2() [all …]
|
/test/xts/device_attest/services/core/attest/ |
D | attest_service_reset.c | 54 devicePacket->tokenInfo.uuid = AttestStrdup((char*)tokenId); in GenResetMsg()
|
D | attest_service_active.c | 67 devicePacket->tokenInfo.uuid = AttestStrdup((char*)tokenId); in GenActiveMsg()
|
/test/xts/device_attest_lite/services/core/attest/ |
D | attest_service_reset.c | 54 devicePacket->tokenInfo.uuid = AttestStrdup((char*)tokenId); in GenResetMsg()
|
D | attest_service_active.c | 67 devicePacket->tokenInfo.uuid = AttestStrdup((char*)tokenId); in GenActiveMsg()
|
/test/xts/device_attest_lite/services/core/include/ |
D | attest_type.h | 133 char *uuid; member
|
/test/xts/device_attest/services/core/include/ |
D | attest_type.h | 146 char *uuid; member
|
/test/xts/dcts/distributedhardware/distributedscreentest/ |
D | test.cpp | 258 unsigned char uuid[UUID_BUF_LEN] = {0}; in PrintNodeProperty() local 259 if (GetNodeKeyInfo(g_pkgName, nodeInfo->networkId, key, uuid, UUID_BUF_LEN) != 0) { in PrintNodeProperty()
|
/test/xts/acts/multimedia/drm/drm_ndk_test/src/main/ets/test/ |
D | Ability.test.ets | 68 var uuid; 71 console.log("uuid is com.clearplay.drm"); 72 uuid = "com.clearplay.drm"; 74 console.log("uuid is com.wiseplay.drm"); 75 uuid = "com.wiseplay.drm"; 108 let c = testNapi.Test_KeySystemSupported(uuid); 160 let c = testNapi.Test_KeySystemSupported2(uuid,"video/mp4"); 212 let c = testNapi.Test_KeySystemSupported2(uuid,"111/mp4"); 229 let c = testNapi.Test_KeySystemSupported2(uuid,""); 242 let c = testNapi.Test_KeySystemSupported2(uuid," "); [all …]
|
/test/xts/acts/communication_lite/dsoftbus_hal/src/ |
D | softbus_bus_center_test.c | 315 char uuid[UUID_BUF_LEN] = {0}; variable 322 TEST_ASSERT_TRUE(strlen(uuid) != (UUID_BUF_LEN - 1));
|
/test/xts/device_attest_lite/services/core/network/ |
D | attest_network.c | 89 devicePacket->tokenInfo.uuid = NULL; in CreateDevicePacket() 115 ATTEST_MEM_FREE(devicePacket->tokenInfo.uuid); in DestroyDevicePacket() 379 if (cJSON_AddStringToObject(postObj, "uuid", postValue->tokenInfo.uuid) == NULL || in BuildCoapResetBody() 463 if (cJSON_AddStringToObject(tokenInfo, "uuid", postValue->tokenInfo.uuid) == NULL || in BuildCoapAuthBody() 515 if (cJSON_AddStringToObject(postObj, "uuid", postValue->tokenInfo.uuid) == NULL || in BuildCoapActiveBody()
|
/test/xts/device_attest/services/core/network/ |
D | attest_network.c | 86 devicePacket->tokenInfo.uuid = NULL; in CreateDevicePacket() 113 ATTEST_MEM_FREE(devicePacket->tokenInfo.uuid); in DestroyDevicePacket() 554 if (cJSON_AddStringToObject(tokenInfo, "uuid", postValue->tokenInfo.uuid) == NULL || in BuildTokenInfo()
|