Home
last modified time | relevance | path

Searched refs:outhash (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/yocto/poky/bitbake/lib/hashserv/
H A Dtests.py80 outhash = '2765d4a5884be49b28601445c2760c5f21e7e5c0ee2b7e3fce98fd7e5970796f'
85 result = self.client.report_unihash(taskhash, self.METHOD, outhash, unihash)
92 outhash = '5a9cb1649625f0bf41fc7791b635cd9c2d7118c7f021ba87dcd03f72b67ce7a8'
95 result = self.client.report_unihash(taskhash, self.METHOD, outhash, unihash)
102 result = self.client.report_unihash(taskhash2, self.METHOD, outhash, unihash2)
110 outhash = 'afe240a439959ce86f5e322f8c208e1fedefea9e813f2140c81af866cc9edf7e'
112 self.client.report_unihash(taskhash, self.METHOD, outhash, unihash)
131 outhash = '3c979c3db45c569f51ab7626a4651074be3a9d11a84b1db076f5b14f7d39db44'
138 result = self.client.report_unihash(taskhash, self.METHOD, outhash, unihash, {
148 result_outhash = self.client.get_outhash(self.METHOD, outhash, taskhash)
[all …]
H A Dclient.py63 async def report_unihash(self, taskhash, method, outhash, unihash, extra={}): argument
68 m["outhash"] = outhash
86 async def get_outhash(self, method, outhash, taskhash): argument
89 {"get-outhash": {"outhash": outhash, "taskhash": taskhash, "method": method}}
H A Dserver.py270 outhash = request['outhash']
274 d = await self.get_outhash(cursor, method, outhash, taskhash)
278 async def get_outhash(self, cursor, method, outhash, taskhash): argument
290 'outhash': outhash,
298 d = await self.upstream_client.get_outhash(method, outhash, taskhash)
/OK3568_Linux_fs/yocto/poky/bitbake/bin/
H A Dbitbake-hashclient107 outhash = hashlib.sha256()
108 outhash.update(args.outhash_seed.encode('utf-8'))
109 outhash.update(str(i).encode('utf-8'))
111 … client.report_unihash(taskhash.hexdigest(), METHOD, outhash.hexdigest(), taskhash.hexdigest())
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dnative.bbclass207 # recipe has the same outhash and therefore is equivalent. This can result in
211 # to this tasks outhash calculation. Unfortunately, don't know specifically
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dsiggen.py627 outhash = bb.utils.better_eval('method(path, sigfile, task, d)', locs)
629 outhash = bb.utils.better_eval(self.method + '(path, sigfile, task, d)', locs)
651 data = self.client().report_unihash(taskhash, method, outhash, unihash, extra_data)