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

/u-boot/boot/
H A Dimage-sig.c59 struct checksum_algo *image_get_checksum_algo(const char *full_name) argument
67 if (!strncmp(name, full_name, strlen(name)) &&
68 full_name[strlen(name)] == ',')
75 struct crypto_algo *image_get_crypto_algo(const char *full_name) argument
81 name = strchr(full_name, ',');
H A Dimage-cipher.c55 struct cipher_algo *image_get_cipher_algo(const char *full_name) argument
62 if (!strncmp(name, full_name, strlen(name)))
/u-boot/tools/
H A Dimage-sig-host.c92 struct checksum_algo *image_get_checksum_algo(const char *full_name) argument
100 if (!strncmp(name, full_name, strlen(name)) &&
101 full_name[strlen(name)] == ',')
108 struct crypto_algo *image_get_crypto_algo(const char *full_name) argument
114 name = strchr(full_name, ',');
/u-boot/drivers/i2c/muxes/
H A Di2c-mux-uclass.c67 char *full_name; local
78 full_name = calloc(1, parent_name_len + arrow_len +
80 if (!full_name)
84 strcat(full_name, mux->parent->name);
85 strcat(full_name, arrow);
86 strcat(full_name, mux->name);
87 strcat(full_name, arrow);
88 strcat(full_name, name);
91 full_name, node, &dev);
/u-boot/include/dm/
H A Dof.h48 * @full_name: Full path to node, e.g. "/bus@1/spi@1100" ("/" for the root node)
58 const char *full_name; member in struct:device_node
114 return np ? np->full_name : "<no-node>";
/u-boot/drivers/core/
H A Dof_access.c334 const char *name = strrchr(child->full_name, '/');
712 np->full_name);
720 np->full_name, cells_name,
721 node->full_name);
734 np->full_name);
985 char *new_name, *full_name; local
1018 parent_fnl = *parent->name ? strlen(parent->full_name) : 0;
1019 full_name = calloc(1, parent_fnl + 1 + len + 1);
1020 if (!full_name) {
1027 strcpy(full_name, paren
[all...]
H A Dof_addr.c420 r->name = name ? name : dev->full_name;
H A Dofnode.c688 if (strlen(node.np->full_name) >= buflen)
691 strcpy(buf, node.np->full_name);
/u-boot/lib/
H A Dof_live.c111 np->full_name = fn;
115 strcpy(fn, dad->full_name);
360 root->full_name = "";
/u-boot/include/
H A Dimage.h1610 * @param full_name Name of algorithm in the form "checksum,crypto"
1613 struct checksum_algo *image_get_checksum_algo(const char *full_name);
1618 * @param full_name Name of algorithm in the form "checksum,crypto"
1621 struct crypto_algo *image_get_crypto_algo(const char *full_name);
1812 struct cipher_algo *image_get_cipher_algo(const char *full_name);
/u-boot/test/dm/
H A Dofnode.c1071 ut_asserteq_str("/lcd/ed", child->full_name);

Completed in 143 milliseconds