/openbmc/u-boot/drivers/i2c/muxes/ |
H A D | i2c-mux-uclass.c | 63 char *full_name; in i2c_mux_post_bind() local 74 full_name = calloc(1, parent_name_len + arrow_len + in i2c_mux_post_bind() 76 if (!full_name) in i2c_mux_post_bind() 80 strcat(full_name, mux->parent->name); in i2c_mux_post_bind() 81 strcat(full_name, arrow); in i2c_mux_post_bind() 82 strcat(full_name, mux->name); in i2c_mux_post_bind() 83 strcat(full_name, arrow); in i2c_mux_post_bind() 84 strcat(full_name, name); in i2c_mux_post_bind() 87 full_name, node, &dev); in i2c_mux_post_bind()
|
/openbmc/qemu/tests/unit/ |
H A D | test-qgraph.c | 124 char *full_name = g_strdup_printf("%s-tests/%s", interface, test); in check_test() local 128 g_assert_cmpint(qos_graph_has_machine(full_name), ==, FALSE); in check_test() 129 g_assert_nonnull(qos_graph_get_node(full_name)); in check_test() 130 g_assert_cmpint(qos_graph_has_node(full_name), ==, TRUE); in check_test() 131 g_assert_cmpint(qos_graph_get_node_type(full_name), ==, QNODE_TEST); in check_test() 132 edge = qos_graph_get_edge(interface, full_name); in check_test() 136 g_assert_cmpint(qos_graph_has_edge(interface, full_name), ==, TRUE); in check_test() 137 g_assert_cmpint(qos_graph_get_node_availability(full_name), ==, TRUE); in check_test() 138 qos_graph_node_set_availability(full_name, FALSE); in check_test() 139 g_assert_cmpint(qos_graph_get_node_availability(full_name), ==, FALSE); in check_test() [all …]
|
/openbmc/qemu/qapi/ |
H A D | qobject-input-visitor.c | 114 static const char *full_name(QObjectInputVisitor *qiv, const char *name) in full_name() function 171 error_setg(errp, QERR_MISSING_PARAMETER, full_name(qiv, name)); in qobject_input_get_object() 194 full_name(qiv, name)); in qobject_input_get_keyval() 199 full_name(qiv, name)); in qobject_input_get_keyval() 253 full_name(qiv, key)); in qobject_input_check_struct() 292 full_name(qiv, name)); in qobject_input_start_struct() 330 full_name(qiv, name)); in qobject_input_start_list() 409 full_name(qiv, name)); in qobject_input_type_int64() 428 full_name(qiv, name), "integer"); in qobject_input_type_int64_keyval() 462 full_name(qiv, name), "uint64"); in qobject_input_type_uint64() [all …]
|
/openbmc/linux/fs/9p/ |
H A D | xattr.c | 150 const char *full_name = xattr_full_name(handler, name); in v9fs_xattr_handler_get() local 152 return v9fs_xattr_get(dentry, full_name, buffer, size); in v9fs_xattr_handler_get() 161 const char *full_name = xattr_full_name(handler, name); in v9fs_xattr_handler_set() local 163 return v9fs_xattr_set(dentry, full_name, value, size, flags); in v9fs_xattr_handler_set()
|
/openbmc/linux/fs/kernfs/ |
H A D | inode.c | 344 const char *full_name, in kernfs_vfs_user_xattr_add() argument 363 old_xattr = simple_xattr_set(xattrs, full_name, value, size, flags); in kernfs_vfs_user_xattr_add() 383 const char *full_name, in kernfs_vfs_user_xattr_rm() argument 391 old_xattr = simple_xattr_set(xattrs, full_name, value, size, flags); in kernfs_vfs_user_xattr_rm() 410 const char *full_name = xattr_full_name(handler, suffix); in kernfs_vfs_user_xattr_set() local 422 return kernfs_vfs_user_xattr_add(kn, full_name, &attrs->xattrs, in kernfs_vfs_user_xattr_set() 425 return kernfs_vfs_user_xattr_rm(kn, full_name, &attrs->xattrs, in kernfs_vfs_user_xattr_set()
|
/openbmc/linux/drivers/of/ |
H A D | dynamic.c | 341 __func__, node->parent, node->full_name); in of_node_release() 350 strcmp(node->parent->full_name, "testcase-data")) { in of_node_release() 381 __func__, node->parent, node->full_name); in of_node_release() 387 kfree(node->full_name); in of_node_release() 449 const char *full_name) in __of_node_dup() argument 456 node->full_name = kstrdup(full_name, GFP_KERNEL); in __of_node_dup() 457 if (!node->full_name) { in __of_node_dup() 500 const char *full_name) in of_changeset_create_node() argument 505 np = __of_node_dup(NULL, full_name); in of_changeset_create_node()
|
H A D | overlay.c | 414 node_kbasename = kbasename(node->full_name); in add_changeset_node() 417 if (!of_node_cmp(node_kbasename, kbasename(tchild->full_name))) in add_changeset_node() 543 of_node_cmp(ce_1->np->full_name, ce_2->np->full_name)) in find_dup_cset_node_entry() 578 of_node_cmp(ce_1->np->full_name, ce_2->np->full_name)) in find_dup_cset_prop()
|
H A D | pdt.c | 162 dp->full_name = of_pdt_build_full_name(dp); in of_pdt_create_node() 206 of_root->full_name = "/"; in of_pdt_build_devicetree()
|
H A D | unittest.c | 321 const char *full_name = "/testcase-data/platform-tests/test-device@1/dev@100"; in of_unittest_printf() local 324 np = of_find_node_by_path(full_name); in of_unittest_printf() 332 of_unittest_printf_one(np, "%pOF", full_name); in of_unittest_printf() 333 of_unittest_printf_one(np, "%pOFf", full_name); in of_unittest_printf() 650 i, args.np->full_name, rc); in of_unittest_parse_phandle_with_args_map() 1596 const char *full_name; in attach_node_and_children() local 1598 full_name = kasprintf(GFP_KERNEL, "%pOF", np); in attach_node_and_children() 1599 if (!full_name) in attach_node_and_children() 1602 if (!strcmp(full_name, "/__local_fixups__") || in attach_node_and_children() 1603 !strcmp(full_name, "/__fixups__")) { in attach_node_and_children() [all …]
|
/openbmc/linux/kernel/ |
H A D | kthread.c | 41 char *full_name; member 65 char *full_name; member 103 if (!kthread || !kthread->full_name) { in get_kthread_comm() 108 strscpy_pad(buf, kthread->full_name, buf_size); in get_kthread_comm() 145 kfree(kthread->full_name); in free_kthread_struct() 356 kfree(create->full_name); in kthread() 361 self->full_name = create->full_name; in kthread() 411 pid = kernel_thread(kthread, create, create->full_name, in create_kthread() 417 kfree(create->full_name); in create_kthread() 444 create->full_name = kvasprintf(GFP_KERNEL, namefmt, args); in __kthread_create_on_node() [all …]
|
/openbmc/u-boot/include/dm/ |
H A D | of.h | 47 const char *full_name; member 109 return np ? np->full_name : "<no-node>"; in of_node_full_name()
|
/openbmc/u-boot/common/ |
H A D | image-sig.c | 118 struct checksum_algo *image_get_checksum_algo(const char *full_name) in image_get_checksum_algo() argument 126 if (!strncmp(name, full_name, strlen(name)) && in image_get_checksum_algo() 127 full_name[strlen(name)] == ',') in image_get_checksum_algo() 134 struct crypto_algo *image_get_crypto_algo(const char *full_name) in image_get_crypto_algo() argument 140 name = strchr(full_name, ','); in image_get_crypto_algo()
|
/openbmc/linux/drivers/gpu/host1x/ |
H A D | syncpt.c | 63 char *full_name; in host1x_syncpt_alloc() local 83 full_name = kasprintf(GFP_KERNEL, "%u-%s", sp->id, name); in host1x_syncpt_alloc() 84 if (!full_name) in host1x_syncpt_alloc() 87 sp->name = full_name; in host1x_syncpt_alloc()
|
/openbmc/linux/drivers/regulator/ |
H A D | scmi-regulator.c | 222 sreg->of_node->full_name); in scmi_regulator_common_init() 234 sreg->desc.of_match = sreg->of_node->full_name; in scmi_regulator_common_init() 272 dom, np->full_name); in process_scmi_regulator_of_node() 292 dom, np->full_name); in process_scmi_regulator_of_node()
|
/openbmc/linux/tools/perf/util/ |
H A D | stat-shadow.c | 553 char full_name[64]; in perf_stat__print_metricgroup_header() local 570 scnprintf(full_name, sizeof(full_name), "%s (%s)", name, evsel->pmu_name); in perf_stat__print_metricgroup_header() 572 scnprintf(full_name, sizeof(full_name), "%s", name); in perf_stat__print_metricgroup_header() 574 out->print_metricgroup_header(config, ctxp, full_name); in perf_stat__print_metricgroup_header()
|
/openbmc/linux/include/linux/ |
H A D | of_mdio.h | 61 dev_err(dev, "%s has invalid PHY address\n", np->full_name); in of_mdio_parse_addr() 68 np->full_name, addr); in of_mdio_parse_addr()
|
/openbmc/openbmc/poky/scripts/contrib/ |
H A D | oe-build-perf-report-email.py | 69 full_name = pw_data.pw_gecos.split(',')[0] 72 msg['From'] = "{} <{}>".format(full_name, email)
|
/openbmc/linux/tools/testing/kunit/ |
H A D | kunit_parser.py | 578 full_name = test.name 580 full_name = parent_name + '.' + test.name 583 return [full_name] 589 return [full_name] 593 all_failures.extend(failed_names(t, full_name))
|
/openbmc/u-boot/drivers/core/ |
H A D | of_access.c | 298 const char *name = strrchr(child->full_name, '/'); in __of_find_node_by_path() 614 np->full_name); in __of_parse_phandle_with_args() 622 np->full_name, cells_name, in __of_parse_phandle_with_args() 623 node->full_name); in __of_parse_phandle_with_args() 636 np->full_name); in __of_parse_phandle_with_args()
|
/openbmc/linux/arch/powerpc/platforms/pseries/ |
H A D | reconfig.c | 32 np->full_name = kstrdup(kbasename(path), GFP_KERNEL); in pSeries_reconfig_add_node() 33 if (!np->full_name) in pSeries_reconfig_add_node() 59 kfree(np->full_name); in pSeries_reconfig_add_node()
|
/openbmc/linux/drivers/clocksource/ |
H A D | timer-of.c | 68 np->full_name, clkevt); in timer_of_irq_init() 186 to->clkevt.name = np->full_name; in timer_of_init()
|
/openbmc/qemu/tests/qtest/ |
H A D | npcm_gmac-test.c | 244 g_autofree char *full_name = g_strdup_printf( in gmac_add_test() local 246 qtest_add_data_func(full_name, td, fn); in gmac_add_test()
|
/openbmc/linux/arch/powerpc/platforms/powermac/ |
H A D | bootx_init.c | 227 namep = np->full_name ? (char *)(base + np->full_name) : NULL; in bootx_scan_dt_build_strings() 287 namep = np->full_name ? (char *)(base + np->full_name) : NULL; in bootx_scan_dt_build_struct()
|
/openbmc/linux/arch/powerpc/include/asm/ |
H A D | bootx.h | 40 u32 full_name; member
|
/openbmc/linux/fs/openpromfs/ |
H A D | inode.c | 204 const char *node_name = kbasename(child->full_name); in openpromfs_lookup() 303 kbasename(child->full_name), in openpromfs_readdir() 304 strlen(kbasename(child->full_name)), in openpromfs_readdir()
|