Searched refs:part_str (Results 1 - 6 of 6) sorted by relevance

/u-boot/env/
H A Dext4.c48 static char *part_str; local
50 if (!part_str) {
51 part_str = CONFIG_ENV_EXT4_DEVICE_AND_PART;
52 if (!strcmp(CONFIG_ENV_EXT4_INTERFACE, "mmc") && part_str[0] == ':') {
53 part_str = "0" CONFIG_ENV_EXT4_DEVICE_AND_PART;
54 part_str[0] += mmc_get_env_dev();
58 return part_str;
H A Dfat.c45 static char *part_str; local
47 if (!part_str) {
48 part_str = CONFIG_ENV_FAT_DEVICE_AND_PART;
49 if (!strcmp(CONFIG_ENV_FAT_INTERFACE, "mmc") && part_str[0] == ':') {
50 part_str = "0" CONFIG_ENV_FAT_DEVICE_AND_PART;
51 part_str[0] += mmc_get_env_dev();
55 return part_str;
/u-boot/test/dm/
H A Dpart.c15 const char *part_str, bool whole)
20 int ret = part_get_info_by_dev_and_name_or_num("mmc", part_str,
25 part_str, whole, ret);
59 #define test(expected, part_str, whole) \
60 ut_assertok(do_test(uts, expected, part_str, whole))
14 do_test(struct unit_test_state *uts, int expected, const char *part_str, bool whole) argument
/u-boot/disk/
H A Dpart.c453 const char *part_str; local
510 part_str = strchr(dev_part_str, ':');
511 if (part_str) {
513 dup_str[part_str - dev_part_str] = 0;
515 part_str++;
530 if (!part_str || !*part_str) {
532 } else if (!strcmp(part_str, "auto")) {
536 part = (int)hextoul(part_str, &ep);
715 const char *dev_str, *part_str; local
[all...]
/u-boot/lib/efi_loader/
H A Defi_var_file.c37 char part_str[PART_STR_LEN]; local
44 snprintf(part_str, PART_STR_LEN, "%x:%x",
47 part_str, FS_TYPE_ANY);
/u-boot/test/py/tests/
H A Dtest_gpt.py31 for part_str in disk_str.split(';'):
33 for option in part_str.split(","):

Completed in 62 milliseconds