Lines Matching refs:str

54 void efi_printk(efi_system_table_t *sys_table_arg, char *str)  in efi_printk()  argument
58 for (s8 = str; *s8; s8++) { in efi_printk()
454 char *str; in efi_parse_options() local
456 str = strstr(cmdline, "nokaslr"); in efi_parse_options()
457 if (str == cmdline || (str && str > cmdline && *(str - 1) == ' ')) in efi_parse_options()
460 str = strstr(cmdline, "quiet"); in efi_parse_options()
461 if (str == cmdline || (str && str > cmdline && *(str - 1) == ' ')) in efi_parse_options()
468 str = strstr(cmdline, "efi="); in efi_parse_options()
469 if (!str) in efi_parse_options()
473 str += strlen("efi="); in efi_parse_options()
479 while (*str && *str != ' ') { in efi_parse_options()
480 if (!strncmp(str, "nochunk", 7)) { in efi_parse_options()
481 str += strlen("nochunk"); in efi_parse_options()
486 while (*str && *str != ' ' && *str != ',') in efi_parse_options()
487 str++; in efi_parse_options()
489 if (*str == ',') in efi_parse_options()
490 str++; in efi_parse_options()
515 char *str; in handle_cmdline_files() local
521 str = cmd_line; in handle_cmdline_files()
531 if (!str || !*str) in handle_cmdline_files()
534 for (nr_files = 0; *str; nr_files++) { in handle_cmdline_files()
535 str = strstr(str, option_string); in handle_cmdline_files()
536 if (!str) in handle_cmdline_files()
539 str += strlen(option_string); in handle_cmdline_files()
542 while (*str == '/' || *str == '\\') in handle_cmdline_files()
543 str++; in handle_cmdline_files()
545 while (*str && *str != ' ' && *str != '\n') in handle_cmdline_files()
546 str++; in handle_cmdline_files()
559 str = cmd_line; in handle_cmdline_files()
565 str = strstr(str, option_string); in handle_cmdline_files()
566 if (!str) in handle_cmdline_files()
569 str += strlen(option_string); in handle_cmdline_files()
575 while (*str == '/' || *str == '\\') in handle_cmdline_files()
576 str++; in handle_cmdline_files()
578 while (*str && *str != ' ' && *str != '\n') { in handle_cmdline_files()
582 if (*str == '/') { in handle_cmdline_files()
584 str++; in handle_cmdline_files()
586 *p++ = *str++; in handle_cmdline_files()