/openbmc/skeleton/pysystemmgr/ |
H A D | system_manager.py | 29 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/openbmc/meta-openembedded/meta-networking/recipes-protocols/mdns/mdns/ |
H A D | 0001-Fix-SIGSEGV-during-DumpStateLog.patch | 6 DumpStateLog() calls LogMsgWithLevelv() with category == NULL, avoid 19 @@ -72,7 +72,7 @@ mDNSlocal void LogMsgWithLevelv(os_log_t category, os_log_type_t level, const ch 20 …mDNSlocal void LogMsgWithLevelv(const char *category, mDNSLogLevel_t level, const char *format, va… 22 // Do not print the logs if the log category is MDNS_LOG_CATEGORY_DISABLED. 23 - if (strcmp(category, MDNS_LOG_CATEGORY_DISABLED) == 0) 24 + if (category && strcmp(category, MDNS_LOG_CATEGORY_DISABLED) == 0)
|
/openbmc/linux/include/drm/ |
H A D | drm_print.h | 376 static inline bool drm_debug_enabled_raw(enum drm_debug_category category) in drm_debug_enabled_raw() argument 378 return unlikely(__drm_debug & BIT(category)); in drm_debug_enabled_raw() 381 #define drm_debug_enabled_instrumented(category) \ argument 384 drm_debug_enabled_raw(category); \ 393 #define __drm_debug_enabled(category) true argument 394 #define drm_debug_enabled(category) drm_debug_enabled_instrumented(category) argument 396 #define __drm_debug_enabled(category) drm_debug_enabled_raw(category) argument 397 #define drm_debug_enabled(category) drm_debug_enabled_raw(category) argument 412 enum drm_debug_category category, const char *format, ...); 571 void ___drm_dbg(struct _ddebug *desc, enum drm_debug_category category, const char *format, ...); [all …]
|
/openbmc/u-boot/doc/ |
H A D | README.log | 39 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/phosphor-debug-collector/ |
H A D | dump_types.hpp.mako | 16 // 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 D | dump_types.cpp.mako | 78 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/linux/drivers/platform/surface/aggregator/ |
H A D | bus.c | 27 sdev->uid.domain, sdev->uid.category, sdev->uid.target, in modalias_show() 43 sdev->uid.domain, sdev->uid.category, in ssam_device_uevent() 95 sdev->uid.domain, sdev->uid.category, sdev->uid.target, in ssam_device_alloc() 189 if (id->domain != uid.domain || id->category != uid.category) in ssam_device_id_compatible() 218 id->category == 0 && in ssam_device_id_is_null() 403 uid->category = tc; in ssam_device_uid_from_string()
|
/openbmc/linux/tools/testing/selftests/tc-testing/ |
H A D | tdc_helper.py | 12 for category in ucat: 13 testcases[category] = list(filter(lambda x: category in x['category'], alltests))
|
/openbmc/linux/drivers/hid/surface-hid/ |
H A D | surface_kbd.c | 40 rqst.target_category = shid->uid.category; in ssam_kbd_get_descriptor() 70 rqst.target_category = shid->uid.category; in ssam_kbd_set_caps_led() 88 rqst.target_category = shid->uid.category; in ssam_kbd_get_feature_report() 133 if (shid->uid.category != event->target_category) in ssam_kbd_event_fn() 252 shid->uid.category = SSAM_SSH_TC_KBD; in surface_kbd_probe() 260 shid->notif.event.id.target_category = shid->uid.category; in surface_kbd_probe()
|
H A D | surface_hid.c | 59 rqst.target_category = shid->uid.category; in ssam_hid_get_descriptor() 124 rqst.target_category = shid->uid.category; in ssam_hid_set_raw_report() 142 rqst.target_category = shid->uid.category; in ssam_hid_get_raw_report() 213 shid->notif.event.id.target_category = sdev->uid.category; in surface_hid_probe()
|
/openbmc/linux/sound/firewire/fireworks/ |
H A D | fireworks_command.c | 101 efw_transaction(struct snd_efw *efw, unsigned int category, in efw_transaction() argument 137 header->category = cpu_to_be32(category); in efw_transaction() 151 (be32_to_cpu(header->category) != category) || in efw_transaction() 155 be32_to_cpu(header->category), in efw_transaction()
|
/openbmc/openbmc/poky/meta/recipes-core/glibc/glibc/ |
H A D | 0013-eglibc-Forward-port-cross-locale-generation-support.patch | 63 +/* 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/linux/sound/firewire/dice/ |
H A D | dice.c | 38 unsigned int category; in check_dice_category() local 59 category = WEISS_CATEGORY_ID; in check_dice_category() 61 category = LOUD_CATEGORY_ID; in check_dice_category() 63 category = HARMAN_CATEGORY_ID; in check_dice_category() 65 category = DICE_CATEGORY_ID; in check_dice_category() 66 if (device->config_rom[3] != ((vendor << 8) | category) || in check_dice_category()
|
/openbmc/u-boot/common/ |
H A D | image.c | 593 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/linux/Documentation/riscv/ |
H A D | uabi.rst | 25 extension category. If multiple 'Z' extensions are named, they will be 26 ordered first by category, in canonical order, as listed above, then 27 alphabetically within a category.
|
/openbmc/linux/Documentation/driver-api/surface_aggregator/clients/ |
H A D | cdev.rst | 37 interface, associated with a specific target category and device-file-instance. 38 They forward any event of this category to the buffer of the corresponding 149 Register a notifier for the event target category specified in the given 152 notifier for a specific target category has been registered, all events of that 153 category will be forwarded to the userspace client and can then be read from 157 Only one notifier can be registered per target category and client instance. If 168 Unregisters the notifier associated with the specified target category. The 170 registered for this client instance and the given category, this IOCTL will
|
/openbmc/linux/drivers/memstick/core/ |
H A D | memstick.c | 33 && (id->category == card->id.category) in memstick_dev_match() 68 if (add_uevent_var(env, "MEMSTICK_CATEGORY=%02X", card->id.category)) in memstick_uevent() 156 MEMSTICK_ATTR(category, "%02X"); 338 card->id.category = id_reg.category; in h_memstick_read_dev_id() 455 card->id.type, card->id.category, card->id.class); in memstick_check()
|
/openbmc/linux/drivers/gpu/drm/ |
H A D | drm_print.c | 286 enum drm_debug_category category, const char *format, ...) in __drm_dev_dbg() argument 291 if (!__drm_debug_enabled(category)) in __drm_dev_dbg() 310 void ___drm_dbg(struct _ddebug *desc, enum drm_debug_category category, const char *format, ...) in ___drm_dbg() argument 315 if (!__drm_debug_enabled(category)) in ___drm_dbg()
|
/openbmc/u-boot/arch/arm/mach-snapdragon/ |
H A D | dram.c | 33 u32 category; member 78 if (p->category == CATEGORY_SDRAM && p->type == TYPE_SYSMEM) { in msm_fixup_memory()
|
/openbmc/libpldm/ |
H A D | README.md | 71 stable category. However, this may not always be possible. What to do when 123 off of deprecated APIs by constraining the library ABI to the stable category. 138 right, all new APIs must first be exposed in the testing category. Concretely: 168 category (using the `LIBPLDM_ABI_TESTING` annotation). 170 To move a function from the testing category to the stable category, its
|
/openbmc/linux/drivers/dma/idxd/ |
H A D | perfmon.h | 105 #define EVNTCAP_REG(idxd, category) \ argument 106 (PERFMON_REG_OFFSET(idxd, IDXD_EVNTCAP_OFFSET) + ((category) * 8))
|
/openbmc/u-boot/tools/ |
H A D | mkimage.c | 40 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/linux/Documentation/devicetree/bindings/powerpc/fsl/ |
H A D | cpus.txt | 20 a property named fsl,eref-[CAT], where [CAT] is the abbreviated category 22 the category is supported by the implementation.
|
/openbmc/linux/net/mac80211/ |
H A D | s1g.c | 26 if (likely(mgmt->u.action.category != WLAN_CATEGORY_S1G)) in ieee80211_s1g_is_twt_setup() 53 mgmt->u.action.category = WLAN_CATEGORY_S1G; in ieee80211_s1g_send_twt_setup() 85 mgmt->u.action.category = WLAN_CATEGORY_S1G; in ieee80211_s1g_send_twt_teardown()
|
/openbmc/linux/include/linux/ |
H A D | ieee80211.h | 1316 u8 category; member 1441 /* mgmt header + 1 byte category code */ 1533 u8 category; member 2717 * subfield encoding", and two category for each type in "Table E-12-Regulatory 3603 /* Action category code */ 4292 if (mgmt->u.action.category != WLAN_CATEGORY_PUBLIC && in ieee80211_is_bufferable_mmpdu() 4293 mgmt->u.action.category != WLAN_CATEGORY_PROTECTED_DUAL_OF_ACTION) in ieee80211_is_bufferable_mmpdu() 4314 u8 *category; in _ieee80211_is_robust_mgmt_frame() local 4325 category = ((u8 *) hdr) + 24; in _ieee80211_is_robust_mgmt_frame() 4326 return *category ! in _ieee80211_is_robust_mgmt_frame() [all...] |