Home
last modified time | relevance | path

Searched refs:ret (Results 1 - 17 of 17) sorted by relevance

/build/tools/component_tools/
H A Dfull_components_generator.py43 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 Drust_cxxbridge.py45 ret = run(args.cxxbridge, args.args, args.header, True)
46 if ret != 0:
47 return ret
/build/lite/
H A Dutils.py80 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 Dget_subsystem_with_component.py72 ret = dict()
76 return ret
80 ret.update({value: {'subsystem': subsystem_k, 'component': key}})
81 return ret
H A Dbundle_check_online.py45 ret = BundleCheckOnline.check_diff_by_line(i[1])
46 if not ret:
48 line = list(("line" + str(i[0]) + ": " + i[1], ret))
H A Dbundle_json_check.py134 ret = pd.DataFrame(errors_list, columns=columns)
135 return ret
/build/tools/component_tools/static_check/
H A Dcsct_online_entry.py43 ret = subprocess.Popen(
50 result, errcode = ret.communicate(timeout=30)
H A Dcsct_online.py71 ret = subprocess.Popen(
79 _, __ = ret.communicate()
H A Dcsct_online_prehandle.py149 ret = subprocess.Popen(
155 gitee_pr_diff, errorout = ret.communicate()
/build/lite/make_rootfs/
H A Drootfsimg_linux.sh31 local ret='0'
32 command -v "$1" >/dev/null 2>&1 || { local ret='1'; }
33 if [ "$ret" -ne 0 ]; then
H A Drootfsimg_liteos.sh29 local ret='0'
30 command -v "$1" >/dev/null 2>&1 || { local ret='1'; }
31 if [ "$ret" -ne 0 ]; then
/build/toolchain/
H A Drustc_wrapper.py66 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 Dmd5_check.py280 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 Dbuild_utils.py110 ret = []
112 ret.extend(parse_gn_list(arg))
113 return ret
/build/ohos/update/
H A Dcheck_abi_and_copy_deps.py112 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 Dpreloader_process_data.py381 ret = {}
387 ret[part] = featrue
388 return ret
/build/scripts/
H A Dcargo2gn.py869 ret = subprocess.run(cargo_cmd, shell=False)
870 if ret.returncode != 0:

Completed in 9 milliseconds