Home
last modified time | relevance | path

Searched refs:dst (Results 1 – 16 of 16) sorted by relevance

/test/testfwk/developer_test/src/core/config/
Dresource_manager.py141 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/
Dkit.py132 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/
Dresource_manager.py111 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/
Dhdi_test_render_utils.cpp22 void SetUint32(uint32_t &dst, uint32_t value) in SetUint32() argument
24 uint8_t *data = reinterpret_cast<uint8_t *>(&dst); in SetUint32()
Dhdi_test_render_utils.h24 void SetUint32(uint32_t &dst, uint32_t value);
/test/xts/hats/hdf/display/common/
Ddisplay_test_utils.cpp96 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()
Ddisplay_test_utils.h25 void SetUint32(uint32_t &dst, uint32_t value);
/test/xts/device_attest_lite/services/core/adapter/
Dattest_adapter.c260 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/
Dconstants.py63 dst = "distributedtest" variable in TestType
87 "DST": TestType.dst,
/test/xts/acts/ai/mindspore/src/
Dohos_common.h53 void PackNCHWToNHWCFp32(const char *src, char *dst, int batch, int plane, int channel);
Dohos_common.cpp402 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/
DMemApiTest.cpp643 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/
Dmatrix4.h80 void ScaleMapping(const double src[DIMENSION], double dst[DIMENSION]) const;
Dmatrix4.cpp348 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/
Dnnrt_utils.cpp344 std::ofstream dst(dstPath, std::ios::binary); in CopyFile() local
346 dst << src.rdbuf(); in CopyFile()
/test/testfwk/xdevice/plugins/ohos/src/ohos/drivers/
Ddrivers.py960 dst = None
962 test_list, dst = kit.__setup__(request.config.device,
965 self.config.device.connector_command("shell chmod -R 777 {}".format(dst))