Lines Matching defs:name
12 * <partdef> := <size>[@<offset>][<name>][ro][lk][slc]
13 * <mtd-id> := unique name used in mapping driver/device (mtd->name)
20 * <name> := '(' NAME ')'
91 char *name;
110 /* fetch partition name and flags */
121 /* now look for name */
128 name = ++s;
129 p = strchr(name, delim);
131 pr_err("no closing %c found in partition name\n", delim);
134 name_len = p - name;
137 name = NULL;
141 /* record name length for memory allocation later */
195 if (name)
196 strscpy(extra_mem, name, name_len + 1);
199 parts[this_part].name = extra_mem;
202 dbg(("partition %d: name <%s>, offset %llx, size %llx, mask flags %x\n",
203 this_part, parts[this_part].name, parts[this_part].offset,
251 * be present in the MTD name, only the last one is interpreted
340 const char *mtd_id = master->name;
350 * Search for the partition definition matching master->name.
351 * If master->name is not set, stop at first partition definition.
413 .name = "cmdlinepart",