/test/testfwk/developer_test/src/core/config/ |
D | resource_manager.py | 141 dst = push_value[pos + len(find_key):len(push_value)].strip() 145 dst = dst.rstrip("/") + "/" + dir_name 146 device.execute_shell_command("mkdir -p %s" % dst) 147 device.push_file(src, dst) 153 dst = push_value[pos + len(find_key):len(push_value)].strip() 154 device.pull_file(src, dst) 173 dst = copy_value[pos + len(find_key):len(copy_value)].strip() 174 shutil.copy(src, dst) 181 dst = copy_value[pos + len(find_key):len(copy_value)].strip() 182 shutil.copyfile(dst, src)
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/testkit/ |
D | kit.py | 132 dst = files[1].strip() if files[1].strip().startswith("/") else \ 136 src, dst)) 141 device.push_file(real_src_path, dst) 142 LOG.debug("Push file finished from {} to {}".format(src, dst)) 227 dst = None 235 dst = files[1].strip() if files[1].strip().startswith("/") else \ 239 dst)) 251 device.connector_command("shell mkdir {}".format(dst)) 255 "{}".format(dst)) 258 os.path.join(root, file), dst)) [all …]
|
/test/testfwk/xdevice/src/xdevice/_core/config/ |
D | resource_manager.py | 111 dst = push_value[pos + len(find_key):len(push_value)].strip() 113 device.execute_shell_command("mkdir -p %s" % dst) 114 device.push_file(src, dst) 121 dst = push_value[pos + len(find_key):len(push_value)].strip() 123 device.pull_file(src, dst)
|
/test/xts/hats/hdf/display/device/ |
D | hdi_test_render_utils.cpp | 22 void SetUint32(uint32_t &dst, uint32_t value) in SetUint32() argument 24 uint8_t *data = reinterpret_cast<uint8_t *>(&dst); in SetUint32()
|
D | hdi_test_render_utils.h | 24 void SetUint32(uint32_t &dst, uint32_t value);
|
/test/xts/hats/hdf/display/common/ |
D | display_test_utils.cpp | 96 uint32_t dst; in GetUint32() local 97 uint8_t *data = reinterpret_cast<uint8_t *>(&dst); in GetUint32() 101 return dst; in GetUint32() 132 void SetUint32(uint32_t &dst, uint32_t value) in SetUint32() argument 135 uint8_t *data = reinterpret_cast<uint8_t *>(&dst); in SetUint32()
|
D | display_test_utils.h | 25 void SetUint32(uint32_t &dst, uint32_t value);
|
/test/xts/device_attest_lite/services/core/adapter/ |
D | attest_adapter.c | 260 static int32_t CopyNVData(char *dst, int32_t dstLen, unsigned char *src, int32_t srcLen) in CopyNVData() argument 262 if (dst == NULL || src == NULL) { in CopyNVData() 268 dst[i] = (char)src[i]; in CopyNVData()
|
/test/testfwk/xdevice/src/xdevice/_core/ |
D | constants.py | 63 dst = "distributedtest" variable in TestType 87 "DST": TestType.dst,
|
/test/xts/acts/ai/mindspore/src/ |
D | ohos_common.h | 53 void PackNCHWToNHWCFp32(const char *src, char *dst, int batch, int plane, int channel);
|
D | ohos_common.cpp | 402 void PackNCHWToNHWCFp32(const char *src, char *dst, int batch, int plane, int channel) { in PackNCHWToNHWCFp32() argument 408 dst[nhwc_index * 4] = src[nchw_index * 4]; in PackNCHWToNHWCFp32() 409 dst[nhwc_index * 4 + 1] = src[nchw_index * 4 + 1]; in PackNCHWToNHWCFp32() 410 dst[nhwc_index * 4 + 2] = src[nchw_index * 4 + 2]; in PackNCHWToNHWCFp32() 411 dst[nhwc_index * 4 + 3] = src[nchw_index * 4 + 3]; in PackNCHWToNHWCFp32()
|
/test/xts/acts/kernel_lite/mem_posix/src/ |
D | MemApiTest.cpp | 643 char dst[1024]; variable 651 memcpy(dst, src, len); 654 if (dst[i] != src[i]) { 659 ASSERT_TRUE(failure == 0) << "dst[i] != src[i], dst[i] = " << dst[i] << " src[i] = " << src[i];
|
/test/testfwk/arkxtest/uitest/record/ |
D | matrix4.h | 80 void ScaleMapping(const double src[DIMENSION], double dst[DIMENSION]) const;
|
D | matrix4.cpp | 348 void Matrix4::ScaleMapping(const double src[DIMENSION], double dst[DIMENSION]) const in ScaleMapping() 352 double* result = (src == dst) ? storage : dst; in ScaleMapping() 363 std::copy_n(result, DIMENSION, dst); in ScaleMapping()
|
/test/xts/acts/ai/neural_network_runtime/common/ |
D | nnrt_utils.cpp | 344 std::ofstream dst(dstPath, std::ios::binary); in CopyFile() local 346 dst << src.rdbuf(); in CopyFile()
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/ |
D | drivers.py | 960 dst = None 962 test_list, dst = kit.__setup__(request.config.device, 965 self.config.device.connector_command("shell chmod -R 777 {}".format(dst))
|