| /openbmc/phosphor-mrw-tools/ |
| H A D | inventory.pl | 18 my @items, my %item, my %inventory; 73 push @items, { %item }; 87 transform(\@items, \%inventory); 105 my $items = shift @_; 108 removeConnectors($items); 110 removeProcModule($items); 112 renameSegmentWithType("PROC", "cpu", $items); 114 renameSegmentWithType("SYS", "system", $items); 115 renameType("SYS", "SYSTEM", $items); 117 renameSegmentWithType("NODE", "chassis", $items); [all …]
|
| /openbmc/u-boot/lib/zlib/ |
| H A D | zutil.c | 51 extern voidp calloc OF((uInt items, uInt size)); 56 voidpf zcalloc(voidpf opaque, unsigned items, unsigned size) in zcalloc() argument 59 items += size - size; /* make compiler happy */ in zcalloc() 60 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) : in zcalloc() 61 (voidpf)calloc(items, size); in zcalloc()
|
| H A D | zutil.h | 118 voidpf zcalloc OF((voidpf opaque, unsigned items, unsigned size)); 121 #define ZALLOC(strm, items, size) \ argument 122 (*((strm)->zalloc))((strm)->opaque, (items), (size))
|
| /openbmc/webui-vue/docs/guide/components/table/ |
| H A D | index.md | 17 - `items` - renders table items 23 empty message if there are no items in the table 37 :items="items" 46 items: [ 96 :items="items" 104 items: [...], 162 <b-table hover responsive="md" :items="items" :fields="fields"> 188 items: [...], 211 total filtered items count. 224 count and total filtered items count. [all …]
|
| /openbmc/pyphosphor/obmc/dbuslib/ |
| H A D | introspection.py | 106 items = {} 109 items[path] = {} 110 items[path]['interfaces'] = interfaces 112 return items 115 items = {} 120 items.update(self._discover_flat(path, parser)) 134 items.update(callback(path + k, parser)) 136 return items
|
| /openbmc/openbmc-test-automation/lib/ |
| H A D | openbmc_ffdc_list.py | 318 return FFDC_BMC_CMD[i_type].items() 328 return FFDC_BMC_FILE[i_type].items() 338 return FFDC_GET_REQUEST[i_type].items() 348 return FFDC_GET_REDFISH_REQUEST[i_type].items() 411 return FFDC_METHOD_CALL[i_type].items() 429 return FFDC_OS_ALL_DISTROS_FILE[i_type].items() 449 return eval(distro_file)[i_type].items()
|
| H A D | func_args.py | 166 return {k: source_to_object(v) for (k, v) in args.items()} 168 return collections.OrderedDict((k, v) for (k, v) in args.items()) 170 return DotDict((k, v) for (k, v) in args.items()) 172 return NormalizedDict((k, v) for (k, v) in args.items())
|
| H A D | tally_sheet.py | 206 for row_key, value in self.__table.items(): 228 for field_key, sub_value in value.items(): 275 first_rec = next(iter(self.__table.items())) 276 for row_key, value in first_rec[1].items(): 297 for row_key, value in self.__table.items():
|
| H A D | gen_plug_in_utils.py | 151 k: v for (k, v) in os.environ.items() if re.match(regex, k) 152 }.items() 156 for key, value in non_string_defaults.items(): 172 for (k, v) in plug_var_dict.items() 200 for key, value in plug_var_dict.items(): 247 for key, value in plug_var_dict.items():
|
| /openbmc/openbmc/poky/meta/classes-recipe/ |
| H A D | uboot-config.bbclass | 121 for f, v in ubootconfigflags.items(): 124 items = v.split(',') 125 if items[0] and len(items) > 3: 127 d.appendVar('UBOOT_MACHINE', ' ' + items[0]) 129 if len(items) > 1 and items[1]: 130 bb.debug(1, "Appending '%s' to IMAGE_FSTYPES." % items[1]) 131 d.appendVar('IMAGE_FSTYPES', ' ' + items[1]) 132 if len(items) > 2 and items[2]: 133 bb.debug(1, "Appending '%s' to UBOOT_BINARIES." % items[2]) 134 d.appendVar('UBOOT_BINARIES', ' ' + items[2])
|
| H A D | meson-routines.bbclass | 10 items = d.getVar(var).split() 11 return repr(items[0] if len(items) == 1 else items)
|
| /openbmc/phosphor-host-ipmid/scripts/ |
| H A D | writesensor.cpp.mako | 71 for interface,properties in interfaces.items(): 72 for dbus_property,property_value in properties.items(): 73 for offset,values in property_value["Offsets"].items(): 108 % for interface,properties in interfaces.items(): 111 % for dbus_property,property_value in properties.items(): 120 % for preOffset,preValues in preReq.items(): 122 % for name,value in preValues.items(): 134 % for offset,values in property_value["Offsets"].items(): 154 % for name,value in values.items():
|
| H A D | readfru.cpp.mako | 11 % for instancePath,instanceInfo in instanceList.items(): 18 % for interface,properties in interfaces.items(): 21 % for dbus_property,property_value in properties.items():
|
| /openbmc/ipmi-fru-parser/scripts/ |
| H A D | writefru.cpp.mako | 11 % for instancePath,instanceInfo in instanceList.items(): 18 % for interface,properties in interfaces.items(): 21 % for dbus_property,property_value in properties.items():
|
| H A D | extra-properties.cpp.mako | 15 % for interface,properties in interfaces.items(): 17 % for property,value in properties.items():
|
| /openbmc/openbmc/poky/bitbake/lib/bb/ |
| H A D | remotedata.py | 31 def items(self): member in RemoteDatastores 32 return self.datastores.items() 52 for key, val in self.datastores.items():
|
| /openbmc/openbmc/poky/bitbake/lib/bb/pysh/ |
| H A D | pyshyacc.py | 68 def __init__(self, name, items, cmds): argument 70 self.items = list(items) 99 def __init__(self, name, items): argument 101 self.items = items 260 items = get_production(productions, 'in')[1:] 265 items = get_production(productions, 'wordlist')[1:] 267 items = [] 270 p[0] = ('for_clause', ForLoop(name, items, do_group[1:])) 293 items = [] 295 items = p[6][1:] [all …]
|
| /openbmc/u-boot/tools/patman/ |
| H A D | settings.py | 99 for setting_name, setting_value in project_defaults.items(): 132 def items(self, section, *args, **kwargs): member in _ProjectConfigParser 146 project_items = ConfigParser.SafeConfigParser.items( 155 top_items = ConfigParser.SafeConfigParser.items( 253 for name, val in config.items('settings'): 313 return config.items(section)
|
| /openbmc/openbmc/poky/meta/files/common-licenses/ |
| H A D | QPL-1.0 | 12 … this license. Whole or partial distribution of the Software, or software items that link with the… 30 …able components and other software items that link with the original or modified versions of the S… 32 …ine-executable forms of these items are also able to receive and use the complete machine-readable… 33 …licitly license all recipients of your items to use and re-distribute original and modified versio… 35 c. If the items are not available to the general public, and the initial developer of the Software …
|
| H A D | QPL-1.0-INRIA-2004 | 22 items that link with the Software, in any form signifies acceptance of 66 software items that link with the original or modified versions of the 67 Software. These items, when distributed, are subject to the following 71 forms of these items are also able to receive and use the 72 complete machine-readable source code to the items without any 75 b. You must explicitly license all recipients of your items to 77 items in both machine-executable and source code forms. The 81 c. If the items are not available to the general public, and the 82 initial developer of the Software requests a copy of the items,
|
| /openbmc/phosphor-webui/app/server-control/styles/ |
| H A D | virtual-media.scss | 7 align-items: center; 14 align-items: baseline; 46 align-items: center;
|
| /openbmc/phosphor-ipmi-flash/bmc/firmware-handler/test/ |
| H A D | firmware_canhandle_unittest.cpp | 22 std::vector<ListItem> items = { in TEST() local 38 for (const auto& item : items) in TEST()
|
| /openbmc/openbmc/poky/scripts/lib/devtool/ |
| H A D | export.py | 37 for key, name in data.items(): 55 for param, recipes in {'include':args.include,'exclude':args.exclude}.items(): 87 for recipe, data in workspace.items():
|
| /openbmc/webui-vue/src/views/SecurityAndAccess/UserManagement/ |
| H A D | TableRoles.vue | 7 :items="items" 38 items: [
|
| /openbmc/bmcweb/scripts/ |
| H A D | parse_registries.py | 131 messages_sorted = sorted(json_dict["Messages"].items()) 325 for typestring, entries in arg_nonstring_types.items(): 470 for entry_id, entry in messages.items(): 571 for entry_id, entry in messages.items(): 606 for operation, privilege_list in mapping["OperationMap"].items(): 617 ].items(): 638 for operation, privilege_list in mapping["OperationMap"].items(): 662 ].items(): 727 for registry, version in dmtf_registries.items():
|