Searched refs:ret (Results 1 - 17 of 17) sorted by relevance
/build/tools/component_tools/ |
H A D | full_components_generator.py | 43 ret, files, folders = [], [], [path] 54 ret.append(file) 55 return ret 59 ret = {"subsystem": "", "components": []} 62 ret["subsystem"] = data.get("subsystem") 64 ret.get("components").append(k) 65 return ret 69 ret = {"subsystem": "", "components": []} 72 ret["subsystem"] = data.get("component").get("subsystem") 73 ret [all...] |
/build/templates/rust/ |
H A D | rust_cxxbridge.py | 45 ret = run(args.cxxbridge, args.args, args.header, True) 46 if ret != 0: 47 return ret
|
/build/lite/ |
H A D | utils.py | 80 ret = subprocess.check_output(cmd, 85 ret = e.output 86 raise Exception("{} failed, failed log is {}".format(cmd, ret)) 88 return ret
|
/build/tools/component_tools/static_check/bundle_check/ |
H A D | get_subsystem_with_component.py | 72 ret = dict() 76 return ret 80 ret.update({value: {'subsystem': subsystem_k, 'component': key}}) 81 return ret
|
H A D | bundle_check_online.py | 45 ret = BundleCheckOnline.check_diff_by_line(i[1]) 46 if not ret: 48 line = list(("line" + str(i[0]) + ": " + i[1], ret))
|
H A D | bundle_json_check.py | 134 ret = pd.DataFrame(errors_list, columns=columns) 135 return ret
|
/build/tools/component_tools/static_check/ |
H A D | csct_online_entry.py | 43 ret = subprocess.Popen( 50 result, errcode = ret.communicate(timeout=30)
|
H A D | csct_online.py | 71 ret = subprocess.Popen( 79 _, __ = ret.communicate()
|
H A D | csct_online_prehandle.py | 149 ret = subprocess.Popen( 155 gitee_pr_diff, errorout = ret.communicate()
|
/build/lite/make_rootfs/ |
H A D | rootfsimg_linux.sh | 31 local ret='0' 32 command -v "$1" >/dev/null 2>&1 || { local ret='1'; } 33 if [ "$ret" -ne 0 ]; then
|
H A D | rootfsimg_liteos.sh | 29 local ret='0' 30 command -v "$1" >/dev/null 2>&1 || { local ret='1'; } 31 if [ "$ret" -ne 0 ]; then
|
/build/toolchain/ |
H A D | rustc_wrapper.py | 66 ret = subprocess.run([args.clippy_driver, *rustc_args], env=env, check=False) 67 if ret.returncode != 0: 68 sys.exit(ret.returncode)
|
/build/scripts/util/ |
H A D | md5_check.py | 280 ret = cls() 282 ret._files_md5 = obj['files-md5'] 283 ret._strings_md5 = obj['strings-md5'] 284 ret._files = obj['input-files'] 285 ret._strings = obj['input-strings'] 286 return ret 356 ret = self._get_entry(path, subpath) 357 return ret and ret['tag']
|
H A D | build_utils.py | 110 ret = [] 112 ret.extend(parse_gn_list(arg)) 113 return ret
|
/build/ohos/update/ |
H A D | check_abi_and_copy_deps.py | 112 ret = subprocess.call([abidw, "--out-file", out_file, check_file]) 113 if ret != 0: 114 raise Exception("Execute abidw failed! Return value: " + str(ret)) 123 ret = subprocess.call([abidiff, out_file, base_file]) 124 if ret != 0:
|
/build/hb/util/preloader/ |
H A D | preloader_process_data.py | 381 ret = {} 387 ret[part] = featrue 388 return ret
|
/build/scripts/ |
H A D | cargo2gn.py | 869 ret = subprocess.run(cargo_cmd, shell=False) 870 if ret.returncode != 0:
|
Completed in 9 milliseconds