Searched refs:link (Results 1 - 8 of 8) sorted by relevance
/test/testfwk/xdevice/plugins/devicetest/controllers/tools/ |
H A D | screen_agent.py | 118 def _do_capture(cls, _device, link, path, title, ext=".png"): 126 link, path = _device.capture(link, path, ext) 131 if path and link: 135 '</a>'.format(link, path, cls.resize_image(path), title, link)) 136 return path, link 145 path, link = cls.get_image_dir_path(_device, name, ext, exe_type=exe_type) 147 return cls._do_capture(_device, link, path, name, ext) 159 link [all...] |
/test/testfwk/xdevice/plugins/devicetest/core/ |
H A D | variables.py | 246 def update_step_shots(self, link, name): 247 if not link or not name: 253 self.__update_step_info(step, screenshot={"link": link.replace("\\", "/"), "name": name}) 288 path, link = ScreenAgent.capture_step_picture(TimeHandler.get_now_datetime(), step_name, device) 291 shots.append({"link": link.replace("\\", "/"), "name": step_name})
|
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | linkndk.cpp | 19 #include <link.h>
|
H A D | unistdndk.cpp | 1219 int value = link(oldPath, newPath);
in Link() 1342 int link = symlink("/data/storage/el2/base/files/symlink.txt", softptr);
in ReadLink() local 1343 if (link == PARAM_0) {
in ReadLink() 1369 int link = symlink("/data/storage/el2/base/files/symlink.txt", softptr);
in ReadLinkAt() local 1370 if (link == PARAM_0) {
in ReadLinkAt() 1697 int link = symlink("/data/storage/el2/base/files/symlink.txt", softptr);
in ReadlinkChk() local 1698 if (link == PARAM_0) {
in ReadlinkChk() 2126 {"link", nullptr, Link, nullptr, nullptr, nullptr, napi_default, nullptr},
in Init()
|
/test/testfwk/xdevice/src/xdevice/_core/report/ |
H A D | reporter_helper.py | 870 link = ["<a href='log/{task_log}'>{task_log}</a>".format(task_log=file_name) for file_name in logs] 871 return ' '.join(link) 883 link = [] 896 link.append("<a href='{}'>{}</a>".format(os.path.join('log', name), display_name)) 902 "</tr>".format(' | '.join(link)) 911 link = [] 918 link.append("<a href='{}'>{}</a>".format(os.path.join('log', name), display_name)) 919 return '<br>'.join(link)
|
/test/testfwk/xdevice/src/xdevice/_core/resource/template/static/components/ |
H A D | popoverCheckBox.js | 37 <el-button size="small" type="primary" @click="reset" link>Reset </el-button>
|
/test/xts/acts/distributeddatamgr/Pasteboardnapitest/entry/src/main/cpp/ |
H A D | napi_init.cpp | 79 OH_UdsHyperlink* link = OH_UdsHyperlink_Create();
in GetDataCallback() local 80 OH_UdsHyperlink_SetUrl(link, HYPERLINK_URL);
in GetDataCallback() 81 return link;
in GetDataCallback()
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/ |
H A D | device.py | 1153 def capture(self, link: str, path: str, ext: str = ".png") -> Tuple[str, str]: 1156 :param link: 链接 1159 :return: link path 链接 1163 link = link[:link.rfind(ext)] + new_ext 1173 return link, path
|
Completed in 14 milliseconds