Home
last modified time | relevance | path

Searched refs:items (Results 1 – 25 of 566) sorted by relevance

12345678910>>...23

/openbmc/phosphor-mrw-tools/
H A Dinventory.pl18 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 Dzutil.c51 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 Dzutil.h118 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 Dindex.md17 - `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 Dintrospection.py106 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 Dopenbmc_ffdc_list.py318 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 Dfunc_args.py166 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 Dtally_sheet.py206 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 Dgen_plug_in_utils.py151 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 Duboot-config.bbclass121 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 Dmeson-routines.bbclass10 items = d.getVar(var).split()
11 return repr(items[0] if len(items) == 1 else items)
/openbmc/phosphor-host-ipmid/scripts/
H A Dwritesensor.cpp.mako71 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 Dreadfru.cpp.mako11 % 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 Dwritefru.cpp.mako11 % for instancePath,instanceInfo in instanceList.items():
18 % for interface,properties in interfaces.items():
21 % for dbus_property,property_value in properties.items():
H A Dextra-properties.cpp.mako15 % for interface,properties in interfaces.items():
17 % for property,value in properties.items():
/openbmc/openbmc/poky/bitbake/lib/bb/
H A Dremotedata.py31 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 Dpyshyacc.py68 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 Dsettings.py99 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 DQPL-1.012 … 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 DQPL-1.0-INRIA-200422 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 Dvirtual-media.scss7 align-items: center;
14 align-items: baseline;
46 align-items: center;
/openbmc/phosphor-ipmi-flash/bmc/firmware-handler/test/
H A Dfirmware_canhandle_unittest.cpp22 std::vector<ListItem> items = { in TEST() local
38 for (const auto& item : items) in TEST()
/openbmc/openbmc/poky/scripts/lib/devtool/
H A Dexport.py37 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 DTableRoles.vue7 :items="items"
38 items: [
/openbmc/bmcweb/scripts/
H A Dparse_registries.py131 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():

12345678910>>...23