Home
last modified time | relevance | path

Searched refs:full_name (Results 1 - 25 of 218) sorted by relevance

123456789

/kernel/liteos_a/net/lwip-2.1/porting/src/
H A Ddriverif.c64 if (snprintf_s(netif->full_name, sizeof(netif->full_name), sizeof(netif->full_name) - 1,
73 if (strcmp(tmpnetif->full_name, netif->full_name) == 0) {
81 netif->full_name[0] = '\0';
337 if (snprintf_s(netif->full_name, sizeof(netif->full_name), sizeof(netif->full_name) - 1,
342 if (strcmp(tmpnetif->full_name, neti
[all...]
/kernel/liteos_m/components/net/lwip-2.1/porting/src/
H A Ddriverif.c87 if (netif->full_name[0] != '\0') { in driverif_init_ifname()
88 LWIP_DEBUGF(DRIVERIF_DEBUG, ("netif already has fullname %s\n", netif->full_name)); in driverif_init_ifname()
92 if (snprintf_s(netif->full_name, sizeof(netif->full_name), sizeof(netif->full_name) - 1, in driverif_init_ifname()
97 if (strcmp(tmpnetif->full_name, netif->full_name) == 0) { in driverif_init_ifname()
102 LWIP_DEBUGF(DRIVERIF_DEBUG, ("set fullname success %s\n", netif->full_name)); in driverif_init_ifname()
106 netif->full_name[0] = '\0'; in driverif_init_ifname()
/kernel/uniproton/src/net/lwip-2.1/src/
H A Ddriverif.c69 if (netif->full_name[0] != '\0') { in OsDriverifInitIfname()
70 LWIP_DEBUGF(DRIVERIF_DEBUG, ("netif already has fullname %s\n", netif->full_name)); in OsDriverifInitIfname()
74 if (snprintf_s(netif->full_name, sizeof(netif->full_name), sizeof(netif->full_name) - 1, in OsDriverifInitIfname()
79 if (strcmp(tmpNetif->full_name, netif->full_name) == 0) { in OsDriverifInitIfname()
84 LWIP_DEBUGF(DRIVERIF_DEBUG, ("set fullname success %s\n", netif->full_name)); in OsDriverifInitIfname()
88 netif->full_name[0] = '\0'; in OsDriverifInitIfname()
/kernel/liteos_a/net/lwip-2.1/porting/include/lwip/
H A Dnetif.h53 char full_name[IFNAMSIZ]; \
62 char full_name[IFNAMSIZ]; \
92 #define netif_get_name(netif) ((netif)->full_name)
/kernel/linux/linux-5.10/fs/9p/
H A Dxattr.c144 const char *full_name = xattr_full_name(handler, name); in v9fs_xattr_handler_get() local
146 return v9fs_xattr_get(dentry, full_name, buffer, size); in v9fs_xattr_handler_get()
154 const char *full_name = xattr_full_name(handler, name); in v9fs_xattr_handler_set() local
156 return v9fs_xattr_set(dentry, full_name, value, size, flags); in v9fs_xattr_handler_set()
/kernel/linux/linux-6.6/fs/9p/
H A Dxattr.c150 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()
/kernel/linux/linux-6.6/drivers/of/
H A Ddynamic.c340 __func__, node->parent, node->full_name); in of_node_release()
349 strcmp(node->parent->full_name, "testcase-data")) { in of_node_release()
380 __func__, node->parent, node->full_name); in of_node_release()
386 kfree(node->full_name); in of_node_release()
438 * @full_name: string value to be duplicated into new node's full_name field
448 const char *full_name) in __of_node_dup()
455 node->full_name = kstrdup(full_name, GFP_KERNEL); in __of_node_dup()
456 if (!node->full_name) { in __of_node_dup()
447 __of_node_dup(const struct device_node *np, const char *full_name) __of_node_dup() argument
497 of_changeset_create_node(struct of_changeset *ocs, struct device_node *parent, const char *full_name) of_changeset_create_node() argument
[all...]
/kernel/liteos_m/components/net/lwip-2.1/porting/include/lwip/
H A Dnetif.h50 char full_name[IFNAMSIZ]; \
76 #define netif_get_name(netif) ((netif)->full_name)
/kernel/uniproton/src/net/lwip-2.1/include/lwip/
H A Dnetif.h34 char full_name[IFNAMSIZ]; \
56 #define netif_get_name(netif) ((netif)->full_name)
/kernel/linux/linux-6.6/kernel/
H A Dkthread.c41 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()
[all...]
/kernel/linux/linux-5.10/fs/kernfs/
H A Dinode.c333 const char *full_name, in kernfs_vfs_user_xattr_add()
352 ret = simple_xattr_set(xattrs, full_name, value, size, flags, in kernfs_vfs_user_xattr_add()
367 const char *full_name, in kernfs_vfs_user_xattr_rm()
376 ret = simple_xattr_set(xattrs, full_name, value, size, flags, in kernfs_vfs_user_xattr_rm()
392 const char *full_name = xattr_full_name(handler, suffix); in kernfs_vfs_user_xattr_set() local
404 return kernfs_vfs_user_xattr_add(kn, full_name, &attrs->xattrs, in kernfs_vfs_user_xattr_set()
407 return kernfs_vfs_user_xattr_rm(kn, full_name, &attrs->xattrs, in kernfs_vfs_user_xattr_set()
332 kernfs_vfs_user_xattr_add(struct kernfs_node *kn, const char *full_name, struct simple_xattrs *xattrs, const void *value, size_t size, int flags) kernfs_vfs_user_xattr_add() argument
366 kernfs_vfs_user_xattr_rm(struct kernfs_node *kn, const char *full_name, struct simple_xattrs *xattrs, const void *value, size_t size, int flags) kernfs_vfs_user_xattr_rm() argument
/kernel/linux/linux-6.6/fs/kernfs/
H A Dinode.c344 const char *full_name, in kernfs_vfs_user_xattr_add()
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()
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()
343 kernfs_vfs_user_xattr_add(struct kernfs_node *kn, const char *full_name, struct simple_xattrs *xattrs, const void *value, size_t size, int flags) kernfs_vfs_user_xattr_add() argument
382 kernfs_vfs_user_xattr_rm(struct kernfs_node *kn, const char *full_name, struct simple_xattrs *xattrs, const void *value, size_t size, int flags) kernfs_vfs_user_xattr_rm() argument
/kernel/linux/linux-6.6/drivers/regulator/
H A Dscmi-regulator.c222 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()
/kernel/linux/linux-6.6/drivers/gpu/host1x/
H A Dsyncpt.c63 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()
/kernel/linux/linux-5.10/drivers/clocksource/
H A Dtimer-of.c74 np->full_name, clkevt) : in timer_of_irq_init()
77 np->full_name, clkevt); in timer_of_irq_init()
195 to->clkevt.name = np->full_name; in timer_of_init()
/kernel/linux/linux-6.6/drivers/clocksource/
H A Dtimer-of.c74 np->full_name, clkevt) : in timer_of_irq_init()
77 np->full_name, clkevt); in timer_of_irq_init()
195 to->clkevt.name = np->full_name; in timer_of_init()
/kernel/linux/linux-5.10/drivers/clk/renesas/
H A Dclk-emev2.c77 clk_register_clkdev(clk, np->full_name, NULL); in emev2_smu_clkdiv_init()
95 clk_register_clkdev(clk, np->full_name, NULL); in emev2_smu_gclk_init()
/kernel/linux/linux-5.10/include/linux/
H A Dof_mdio.h64 dev_err(dev, "%s has invalid PHY address\n", np->full_name); in of_mdio_parse_addr()
71 np->full_name, addr); in of_mdio_parse_addr()
/kernel/linux/linux-6.6/include/linux/
H A Dof_mdio.h61 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()
/kernel/linux/linux-6.6/tools/perf/util/
H A Dstat-shadow.c546 char full_name[64]; in perf_stat__print_metricgroup_header() local
563 scnprintf(full_name, sizeof(full_name), "%s (%s)", name, evsel->pmu_name); in perf_stat__print_metricgroup_header()
565 scnprintf(full_name, sizeof(full_name), "%s", name); in perf_stat__print_metricgroup_header()
567 out->print_metricgroup_header(config, ctxp, full_name); in perf_stat__print_metricgroup_header()
/kernel/linux/linux-5.10/arch/powerpc/platforms/pseries/
H A Dreconfig.c32 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()
/kernel/linux/linux-6.6/arch/powerpc/platforms/pseries/
H A Dreconfig.c32 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()
/kernel/linux/linux-5.10/drivers/of/
H A Ddynamic.c361 kfree(node->full_name); in of_node_release()
413 * @full_name: string value to be duplicated into new node's full_name field
422 const char *full_name) in __of_node_dup()
429 node->full_name = kstrdup(full_name, GFP_KERNEL); in __of_node_dup()
430 if (!node->full_name) { in __of_node_dup()
421 __of_node_dup(const struct device_node *np, const char *full_name) __of_node_dup() argument
/kernel/linux/linux-6.6/tools/testing/kunit/
H A Dkunit_parser.py578 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))
/kernel/linux/linux-5.10/arch/powerpc/platforms/powermac/
H A Dbootx_init.c226 namep = np->full_name ? (char *)(base + np->full_name) : NULL; in bootx_scan_dt_build_strings()
286 namep = np->full_name ? (char *)(base + np->full_name) : NULL; in bootx_scan_dt_build_struct()

Completed in 16 milliseconds

123456789