Home
last modified time | relevance | path

Searched full:parts (Results 1 – 25 of 713) sorted by relevance

12345678910>>...29

/openbmc/rest-dbus/
H A Drest-dbus222 def dispatch_bus(self, parts):
224 if not parts:
227 self.bus_name = parts.pop(0)
234 if not parts:
237 bus_name = parts.pop(0)
239 if not parts:
245 while parts:
246 if '.' in parts[0]:
248 object_path += '/' + parts.pop(0)
252 if not parts:
[all …]
/openbmc/openbmc/poky/meta/recipes-support/debianutils/
H A Ddebianutils_5.22.bb30 for app in run-parts; do
39 PACKAGES =+ "${PN}-run-parts"
40 FILES:${PN}-run-parts = "${base_bindir}/run-parts.debianutils"
42 RDEPENDS:${PN} += "${PN}-run-parts"
48 ALTERNATIVE_PRIORITY_${PN}-run-parts = "60"
49 ALTERNATIVE:${PN}-run-parts = "run-parts"
54 ALTERNATIVE_LINK_NAME[run-parts] = "${base_bindir}/run-parts"
/openbmc/openpower-pnor-code-mgmt/test/
H A Dtest_item_updater_static.cpp94 auto parts = utils::getPartsToClear(info); in TEST() local
95 EXPECT_EQ(11, parts.size()); in TEST()
97 EXPECT_EQ("HBEL", parts[0].first); in TEST()
98 EXPECT_TRUE(parts[0].second); in TEST()
100 EXPECT_EQ("GUARD", parts[1].first); in TEST()
101 EXPECT_TRUE(parts[1].second); in TEST()
103 EXPECT_EQ("NVRAM", parts[2].first); in TEST()
104 EXPECT_FALSE(parts[2].second); in TEST()
106 EXPECT_EQ("HB_VOLATILE", parts[10].first); in TEST()
107 EXPECT_TRUE(parts[10].second); in TEST()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/vk-gl-cts/files/
H A Dgenerate-srcuri.py26 parts = urllib.parse.urlparse(repo_url)
27 protocol = parts.scheme
28 parts = parts._replace(scheme="git")
29 url = urllib.parse.urlunparse(parts)
85 parts = urllib.parse.urlparse(repo.url)
86 protocol = parts.scheme
87 parts = parts._replace(scheme="git")
88 url = urllib.parse.urlunparse(parts)
/openbmc/openbmc/poky/meta/recipes-extended/cronie/cronie/
H A Dcrontab11 # 1 * * * * root cd / && run-parts /etc/cron.hourly
12 # 30 7 * * * root cd / && run-parts /etc/cron.daily
13 # 42 7 * * 7 root cd / && run-parts /etc/cron.weekly
14 # 55 7 1 * * root cd / && run-parts /etc/cron.monthly
/openbmc/openbmc/poky/scripts/tiny/
H A Dksize.py56 r.parts.append(oreport)
62 r.parts.append(Report.create(f, path, str(path) + "/*/built-in.[o,a]"))
63 r.parts.sort(reverse=True)
65 for b in r.parts:
82 self.parts = []
93 for p in self.parts:
146 for b in vmlinux.parts:
147 if b.totals["total"] > 0 and len(b.parts) > 1:
150 for d in b.parts:
151 if d.totals["total"] > 0 and len(d.parts) > 1:
/openbmc/qemu/tests/tcg/multiarch/system/
H A Dvalidate-memory-counts.py69 parts = line.strip().split(', ')
70 if len(parts) != 4:
73 region_base = int(parts[0], 16)
74 reads = int(parts[1])
75 writes = int(parts[2])
80 seen_all = parts[3] == "true"
/openbmc/openbmc/poky/meta/recipes-support/ca-certificates/ca-certificates/
H A D0001-update-ca-certificates-don-t-use-Debianisms-in-run-p.patch4 Subject: [PATCH] ca-certificates: remove Debianism in run-parts invocation
7 have a leaner run-parts provided by cron which doesn't support --verbose or the
34 - eval run-parts "$VERBOSE_ARG" --test -- "$HOOKSDIR" | while read -r hook
35 + eval run-parts --test "$HOOKSDIR" | while read -r hook
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/ptpd/
H A Dptpd_2.3.1.bb18 parts = d.getVar('PV').split('-')
20 return parts[0] + '/' + parts[1]
22 return parts[0]
/openbmc/openbmc/poky/meta/recipes-connectivity/ppp/ppp/
H A Dip-down6 # It uses run-parts to run scripts in /etc/ppp/ip-down.d, so to delete
25 # These variables are for the use of the scripts run by run-parts
41 run-parts /etc/ppp/ip-down.d
H A Dip-up6 # It uses run-parts to run scripts in /etc/ppp/ip-up.d, so to add routes,
25 # These variables are for the use of the scripts run by run-parts
42 run-parts /etc/ppp/ip-up.d
/openbmc/openbmc/poky/bitbake/lib/bb/parse/
H A D__init__.py158 parts = myfile[0].split('_')
159 __pkgsplit_cache__[mypkg] = parts
160 if len(parts) > 3:
162 exp = 3 - len(parts)
167 parts.extend(tmplist)
168 return parts
/openbmc/openbmc-test-automation/lib/
H A Dsensor_info_record.py134 - Splitting by "|" gives parts where `parts[4:10]` are thresholds:
144 parts = [p.strip() for p in line.split("|")]
145 if len(parts) >= 10:
146 thresholds = parts[4:10]
/openbmc/webui-vue/docs/guide/unit-testing/
H A Dreadme.md124 store parts separately or testing a running store instance. Each strategy has
127 `test store parts separately`.
129 ### Testing Store Parts Separately
131 Testing the parts separately is easy since each of the parts is a JavaScript
132 function. Store parts to test include `actions`, `getters`, and `mutations`.
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dcrate.py55 parts = ud.url.split('/')
56 if len(parts) < 5:
62 version = parts[-1].split(";")[0]
64 name = parts[-2]
66 host = '/'.join(parts[2:-2])
/openbmc/u-boot/drivers/mtd/
H A Dmtdpart.c205 struct mtd_partition partition = {}, *parts; in mtd_parse_partitions() local
223 parts = malloc(sizeof(*parts) * nparts); in mtd_parse_partitions()
224 if (!parts) { in mtd_parse_partitions()
231 ret = mtd_parse_partition(_mtdparts, &parts[idx]); in mtd_parse_partitions()
235 if (parts[idx].size == MTD_SIZE_REMAINING) in mtd_parse_partitions()
236 parts[idx].size = parent->size - cur_sz; in mtd_parse_partitions()
237 cur_sz += parts[idx].size; in mtd_parse_partitions()
239 sz = parts[idx].size; in mtd_parse_partitions()
246 if (parts[idx].offset == MTD_OFFSET_NOT_SPECIFIED) in mtd_parse_partitions()
247 parts[idx].offset = cur_off; in mtd_parse_partitions()
[all …]
H A Dmtd_uboot.c231 * Remove all old parts. Note that partition removal can fail in case in mtd_probe_devices()
239 * parts removal loop. in mtd_probe_devices()
254 struct mtd_partition *parts; in mtd_probe_devices() local
323 * pointer, create an array of parts (that must be freed), and in mtd_probe_devices()
326 ret = mtd_parse_partitions(mtd, &mtdparts, &parts, &nparts); in mtd_probe_devices()
337 add_mtd_partitions(mtd, parts, nparts); in mtd_probe_devices()
340 mtd_free_parsed_partitions(parts, nparts); in mtd_probe_devices()
347 * parts registration loop. in mtd_probe_devices()
/openbmc/qemu/scripts/
H A Dget-wraps-from-cargo-registry.py23 """Split a subproject name into its name and semantic version parts"""
24 parts = namever.rsplit("-", 1)
25 if len(parts) != 2:
28 return parts[0], parts[1]
/openbmc/phosphor-mrw-tools/docs/
H A Dmrw-xml-requirements.md28 modeled in the MRW XML. For a system built with parts that already have existing
36 parts or pulled in from an include file.
89 LEDS will be listed in the device tree when LED parts in the MRW are wired to
112 `ti,423` or `bosch,bmp280`. For existing parts, this should already be set.
/openbmc/u-boot/tools/binman/
H A Delf.py54 parts = rest[7:].split()
55 section, size = parts[:2]
56 if len(parts) > 2:
57 name = parts[2]
/openbmc/u-boot/cmd/
H A Dgpt.c382 disk_partition_t *parts; in set_gpt_info() local
440 parts = calloc(sizeof(disk_partition_t), p_count); in set_gpt_info()
441 if (parts == NULL) in set_gpt_info()
456 gen_rand_uuid_str(parts[i].uuid, UUID_STR_FORMAT_STD); in set_gpt_info()
464 if (strnlen(p, max_str_part) >= sizeof(parts[i].uuid)) { in set_gpt_info()
469 strncpy((char *)parts[i].uuid, p, max_str_part); in set_gpt_info()
479 if (strnlen(p, max_str_part) >= sizeof(parts[i].type_guid)) { in set_gpt_info()
485 strncpy((char *)parts[i].type_guid, p, max_str_part); in set_gpt_info()
497 if (strnlen(p, max_str_part) >= sizeof(parts[i].name)) { in set_gpt_info()
501 strncpy((char *)parts[i].name, p, max_str_part); in set_gpt_info()
[all …]
/openbmc/u-boot/include/linux/
H A Dlibfdt.h93 * the regions of the device tree which describe those included parts.
96 * those parts are invariant. For example, if you request a list of regions
101 * function to verify that critical parts of the FDT have not changed.
113 * When used with FITs this provides the ability to hash and sign parts of
152 * the regions of the device tree which describe those included parts.
163 * Secondly it makes it easy to hash parts of the tree and detect changes.
165 * those parts are invariant. For example, if you request a list of regions
170 * function to verify that critical parts of the FDT have not changed.
209 * When used with FITs this provides the ability to hash and sign parts of
/openbmc/u-boot/board/isee/igep00x0/
H A Digep00x0.c207 * Description: Configure board specific parts
248 static char parts[48]; in board_mtdparts_default() local
253 snprintf(parts, sizeof(parts), "mtdparts=%s:%dk(SPL),-(UBI)", in board_mtdparts_default()
256 *mtdparts = parts; in board_mtdparts_default()
/openbmc/qemu/
H A DLICENSE11 2) Parts of the QEMU emulator have specific licenses which are compatible
22 but some parts may be GPLv2 or other licenses. Again, see the
/openbmc/skeleton/pyinventorymgr/
H A Dinventory_items.py68 parts = line.rstrip("\n").split("=")
69 if parts[0] == "VERSION_ID":
70 version = parts[1]

12345678910>>...29