Home
last modified time | relevance | path

Searched refs:category (Results 1 – 25 of 53) sorted by relevance

123

/openbmc/skeleton/pysystemmgr/
H A Dsystem_manager.py29 for category in System.ID_LOOKUP:
30 for key in System.ID_LOOKUP[category]:
31 val = System.ID_LOOKUP[category][key]
35 System.ID_LOOKUP[category][key] = new_val
39 def doObjectLookup(self, category, key): argument
43 obj_path = System.ID_LOOKUP[category][key]
54 def getObjectFromId(self, category, key): argument
55 return self.doObjectLookup(category, key)
58 def getObjectFromByteId(self, category, key): argument
60 return self.doObjectLookup(category, byte)
/openbmc/phosphor-debug-collector/
H A Ddump_types.hpp.mako16 // Overall dump category for example BMC dump
77 * This function checks the provided dump type against the specified category.
79 * exist or does not match with the specified category, it logs an error and
83 * @param[in] category - The category to match against the dump type.
85 * @return The corresponding dump collection type if the dump type and category
90 * category or does not exist in the table.
93 const std::string& category);
H A Ddump_types.cpp.mako78 DumpTypes validateDumpType(const std::string& type, const std::string& category)
91 // Find any matching dump collection type for the category
94 return pair.first == type && pair.second.second == category;
/openbmc/u-boot/doc/
H A DREADME.log39 Logging category
43 has a category which is intended to allow messages to be filtered according to
48 LOGC_NONE - Unknown category (e.g. a debug() statement)
101 With these the log level is implicit in the name. The category is set by
134 with a level of LOGL_DEBUG and a category of LOGC_NONE.
158 LEVEL.category,file.c:123-func() message
187 log(category, level, format_string, ...)
190 as the category, so you should #define this right at the top of the source
191 file to ensure the category is correct.
224 Convenience functions to support setting the category:
[all …]
/openbmc/openbmc/poky/meta/recipes-core/glibc/glibc/
H A D0013-eglibc-Forward-port-cross-locale-generation-support.patch63 +/* Define an array of category names (also the environment variable names). */
66 +#define DEFINE_CATEGORY(category, category_name, items, a) \
74 +#define DEFINE_CATEGORY(category, category_name, items, a) \
75 + [category] = offsetof (struct catnamestr_t, CATNAMEMF (__LINE__)),
83 +#define DEFINE_CATEGORY(category, category_name, items, a) \
84 + [category] = sizeof (category_name) - 1,
283 @@ -219,8 +219,10 @@ No definition for %s category found"), "LC_TIME");
295 @@ -230,7 +232,7 @@ No definition for %s category found"), "LC_TIME");
304 @@ -456,18 +458,18 @@ No definition for %s category found"), "LC_TIME");
330 @@ -526,7 +528,16 @@ No definition for %s category found"), "LC_TIME");
[all …]
/openbmc/u-boot/arch/arm/mach-snapdragon/
H A Ddram.c33 u32 category; member
78 if (p->category == CATEGORY_SDRAM && p->type == TYPE_SYSMEM) { in msm_fixup_memory()
/openbmc/u-boot/common/
H A Dimage.c593 static const char *unknown_msg(enum ih_category category) in unknown_msg() argument
599 strncat(msg, table_info[category].desc, in unknown_msg()
615 const char *genimg_get_cat_name(enum ih_category category, uint id) in genimg_get_cat_name() argument
619 entry = get_table_entry(table_info[category].table, id); in genimg_get_cat_name()
621 return unknown_msg(category); in genimg_get_cat_name()
639 const char *genimg_get_cat_short_name(enum ih_category category, uint id) in genimg_get_cat_short_name() argument
643 entry = get_table_entry(table_info[category].table, id); in genimg_get_cat_short_name()
645 return unknown_msg(category); in genimg_get_cat_short_name()
653 int genimg_get_cat_count(enum ih_category category) in genimg_get_cat_count() argument
655 return table_info[category].count; in genimg_get_cat_count()
[all …]
/openbmc/sdeventplus/test/
H A Dexception.cpp23 EXPECT_EQ(std::generic_category(), err.code().category()); in TEST()
/openbmc/u-boot/tools/
H A Dmkimage.c40 static int show_valid_options(enum ih_category category) in show_valid_options() argument
47 count = genimg_get_cat_count(category); in show_valid_options()
55 cur_category = category; in show_valid_options()
59 genimg_get_cat_desc(category)); in show_valid_options()
63 genimg_get_cat_short_name(category, item), in show_valid_options()
64 genimg_get_cat_name(category, item)); in show_valid_options()
/openbmc/qemu/target/ppc/translate/
H A Dprocessor-ctrl-impl.c.inc29 * implemented in the "Embedded.Processor Control" category.
53 * implemented in the "Embedded.Processor Control" category.
/openbmc/phosphor-settingsd/
H A DREADME.txt13 category in the YAML file.
/openbmc/bmcweb/docs/
H A DCLIENTS.md7 category are intended to be qualification tests to ensure the bmcweb meets the
8 specification. Entries in the clients category are intended to host user-facing
/openbmc/openbmc/poky/bitbake/bin/
H A Dbitbake-server12 warnings.filterwarnings("ignore", category=DeprecationWarning, message=".*use.of.fork.*may.lead.to.…
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-webadmin/webmin/files/
H A Dnet-generic.patch16 category=net
H A Dmedia-tomb.patch68 +category=others
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dmain.py107 def _showwarning(message, category, filename, lineno, file=None, line=None): argument
110 _warnings_showwarning(message, category, filename, lineno, file, line)
112 s = warnings.formatwarning(message, category, filename, lineno)
H A D__init__.py250 category=DeprecationWarning,
/openbmc/qemu/docs/sphinx/
H A Dqapi_domain.py713 category = obj.objtype.title() + "s"
714 entries = content.setdefault(category, [])
720 for category in content:
721 content[category] = sorted(content[category])
/openbmc/qemu/scripts/qapi/
H A Dpylintrc5 # Disable the message, report, category or checker with the given id(s). You
/openbmc/u-boot/include/
H A Dimage.h528 const char *genimg_get_cat_name(enum ih_category category, uint id);
537 const char *genimg_get_cat_short_name(enum ih_category category, uint id);
545 int genimg_get_cat_count(enum ih_category category);
553 const char *genimg_get_cat_desc(enum ih_category category);
/openbmc/qemu/tests/functional/
H A Dmeson.build2 # Tests that are put in the 'quick' category are run by default during
5 # the 'thorough' category instead.
/openbmc/qemu/tests/qemu-iotests/
H A Dpylintrc3 # Disable the message, report, category or checker with the given id(s). You
/openbmc/qemu/block/
H A Dthrottle-groups.c670 } category; member
838 switch (info->category) { in throttle_group_set()
868 switch (info->category) { in throttle_group_get()
/openbmc/libpldm/
H A DREADME.md71 stable category. However, this may not always be possible. What to do when
/openbmc/openbmc-test-automation/lib/
H A Dredfish_request.py98 category=InsecureRequestWarning

123