Lines Matching refs:the_data
243 the_data = databuilder.mcdata[mc]
244 the_data.setVar("BB_WORKERCONTEXT", "1")
245 the_data.setVar("BB_TASKDEPDATA", taskdepdata)
246 the_data.setVar('BB_CURRENTTASK', taskname.replace("do_", ""))
248 the_data.setVar("BB_LIMITEDDEPS", "1")
249 the_data.setVar("BUILDNAME", workerdata["buildname"])
250 the_data.setVar("DATE", workerdata["date"])
251 the_data.setVar("TIME", workerdata["time"])
253 the_data.setVar(varname, value)
260 the_data = bb_cache.loadDataFull(fn, appends)
261 the_data.setVar('BB_TASKHASH', taskhash)
262 the_data.setVar('BB_UNIHASH', unihash)
264 … bb.utils.set_process_name("%s:%s" % (the_data.getVar("PN"), taskname.replace("do_", "")))
266 if not the_data.getVarFlag(taskname, 'network', False):
275 exports = bb.data.exported_vars(the_data)
283 the_data.setVar(e, fakeenv[e])
284 the_data.setVarFlag(e, 'export', "1")
286 task_exports = the_data.getVarFlag(taskname, 'exports')
289 the_data.setVarFlag(e, 'export', '1')
290 v = the_data.getVar(e)
295 the_data.setVarFlag(taskname, "quieterrors", "1")
305 ret = bb.build.exec_task(fn, taskname, the_data, cfg.profile)
308 fakerootcmd = shlex.split(the_data.getVar("FAKEROOTCMD"))