Home
last modified time | relevance | path

Searched full:renames (Results 1 – 25 of 41) sorted by relevance

12

/openbmc/openbmc/poky/meta/classes/
H A Drecipe_sanity.bbclass38 renames = d.getVar("__recipe_sanity_renames", False)
39 if renames:
40 for (key, newkey, oldvalue, newvalue) in renames:
149 renames = self.getVar("__recipe_sanity_renames", 0) or set()
150 renames.add((key, newkey, oldvalue, newvalue))
151 self.setVar("__recipe_sanity_renames", renames)
/openbmc/qemu/tests/unit/
H A Dcheck-block-qdict.c530 QDictRenames *renames; in qdict_rename_keys_test() local
540 renames = (QDictRenames[]) { in qdict_rename_keys_test()
544 qdict_rename_keys(copy, renames, &error_abort); in qdict_rename_keys_test()
556 renames = (QDictRenames[]) { in qdict_rename_keys_test()
565 qdict_rename_keys(copy, renames, &error_abort); in qdict_rename_keys_test()
582 /* Renames are processed top to bottom */ in qdict_rename_keys_test()
583 renames = (QDictRenames[]) { in qdict_rename_keys_test()
593 qdict_rename_keys(copy, renames, &error_abort); in qdict_rename_keys_test()
606 renames = (QDictRenames[]) { in qdict_rename_keys_test()
611 qdict_rename_keys(copy, renames, &local_err); in qdict_rename_keys_test()
[all …]
/openbmc/openbmc/poky/scripts/contrib/
H A Dconvert-variable-renames.py23 renames = { variable
74 # Do the renames
75 for old_name, new_name in renames.items():
H A Dpatchreview.py52 "--follow", "--find-renames", "--diff-filter=A",
/openbmc/qemu/qobject/
H A Dblock-qdict.c684 * specified in the array renames. The array must be terminated by an entry
687 * The renames are performed individually in the order of the array, so entries
689 * order of the renames array.
693 bool qdict_rename_keys(QDict *qdict, const QDictRenames *renames, Error **errp) in qdict_rename_keys() argument
697 while (renames->from) { in qdict_rename_keys()
698 if (qdict_haskey(qdict, renames->from)) { in qdict_rename_keys()
699 if (qdict_haskey(qdict, renames->to)) { in qdict_rename_keys()
701 "same time", renames->to, renames->from); in qdict_rename_keys()
705 qobj = qdict_get(qdict, renames->from); in qdict_rename_keys()
706 qdict_put_obj(qdict, renames->to, qobject_ref(qobj)); in qdict_rename_keys()
[all …]
/openbmc/qemu/include/block/
H A Dqdict.h31 bool qdict_rename_keys(QDict *qdict, const QDictRenames *renames, Error **errp);
/openbmc/openbmc/poky/bitbake/lib/bb/
H A D__init__.py259 def deprecate_import(current, modulename, fromlist, renames = None): argument
267 if renames:
268 newname = renames[position]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/lmbench/lmbench/
H A Drename-line-binary.patch8 This patch renames lmbench's line binary as lm_line to avoid conflicts with
/openbmc/google-ipmi-sys/
H A Dfile_system_wrapper.hpp43 * Moves or renames the filesystem object identified by oldPath to newPath
/openbmc/libpldm/scripts/
H A Dapply-renames11 : "${LIBPLDM_ROOT:="${ABSPATH%scripts/apply-renames}"}"
/openbmc/openbmc/poky/meta/lib/oe/
H A Dbuildhistory_analysis.py342 # We want to detect renames of large trees of files like
345 renames = {}
366 if commondir not in renames:
367 renames[commondir] = commondir2
380 for rename in renames:
381 filechanges.append(FileChange(renames[rename], FileChange.changetype_move, rename))
/openbmc/openbmc/poky/documentation/migration-guides/
H A Dmigration-1.4.rst176 .. _migration-1.4-removals-and-renames:
178 Removals and Renames
H A Dmigration-4.0.rst63 A :oe_git:`convert-variable-renames.py
64 </openembedded-core/tree/scripts/contrib/convert-variable-renames.py>`
H A Dmigration-2.7.rst171 - ``update-alternatives``: Convert file renames to
/openbmc/qemu/system/
H A Dmain.c34 * some platforms; it does so via a macro that renames our main function, so
/openbmc/phosphor-mrw-tools/
H A Dinventory.pl143 #Renames a segment in all target names based on its type
189 #Renames a segment in all target names based on its target type
H A DInventory.pm107 #Removes unnecessary segments of the path name, renames
245 #Renames segments of the paths to the name passed in
/openbmc/openbmc/meta-security/recipes-ids/tripwire/files/
H A Dtripwire.txt16 …he configuration script). This script signs the modified policy file and renames it to tw.pol. Thi…
/openbmc/openbmc/poky/meta/lib/patchtest/tests/
H A Dtest_metadata.py169 # TODO: we are not taking into account renames, so test may raise false positives
H A Dbase.py208 # on renames (usually upgrades), we need to check (FILE) base names
/openbmc/qemu/scripts/
H A Dclean-header-guards.pl22 # renames guard symbols, and explain how to find occurrences of these
/openbmc/qemu/docs/devel/
H A Dsubmitting-a-patch.rst108 semantic changes (or even function renames) are done in a separate patch
110 diff.renames true;`` ``git config diff.algorithm patience`` (refer to
111 `git-config <http://git-scm.com/docs/git-config>`__). The 'diff.renames'
/openbmc/openbmc/meta-arm/ci/
H A Dpatchreview62 "--follow", "--find-renames", "--diff-filter=A",
/openbmc/openbmc/poky/meta/recipes-core/ncurses/
H A Dncurses.inc92 --without-manpage-renames \
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dupdate-alternatives.bbclass201 # Do these after other renames so we can correct broken links

12