Lines Matching refs:str

49 void efi_printk(efi_system_table_t *sys_table_arg, char *str)  in efi_printk()  argument
53 for (s8 = str; *s8; s8++) { in efi_printk()
318 char *str; in efi_parse_options() local
324 str = strstr(cmdline, "efi="); in efi_parse_options()
325 if (!str) in efi_parse_options()
329 str += strlen("efi="); in efi_parse_options()
335 while (*str) { in efi_parse_options()
336 if (!strncmp(str, "nochunk", 7)) { in efi_parse_options()
337 str += strlen("nochunk"); in efi_parse_options()
342 while (*str && *str != ',') in efi_parse_options()
343 str++; in efi_parse_options()
345 if (*str == ',') in efi_parse_options()
346 str++; in efi_parse_options()
371 char *str; in handle_cmdline_files() local
377 str = cmd_line; in handle_cmdline_files()
387 if (!str || !*str) in handle_cmdline_files()
390 for (nr_files = 0; *str; nr_files++) { in handle_cmdline_files()
391 str = strstr(str, option_string); in handle_cmdline_files()
392 if (!str) in handle_cmdline_files()
395 str += strlen(option_string); in handle_cmdline_files()
398 while (*str == '/' || *str == '\\') in handle_cmdline_files()
399 str++; in handle_cmdline_files()
401 while (*str && *str != ' ' && *str != '\n') in handle_cmdline_files()
402 str++; in handle_cmdline_files()
415 str = cmd_line; in handle_cmdline_files()
421 str = strstr(str, option_string); in handle_cmdline_files()
422 if (!str) in handle_cmdline_files()
425 str += strlen(option_string); in handle_cmdline_files()
431 while (*str == '/' || *str == '\\') in handle_cmdline_files()
432 str++; in handle_cmdline_files()
434 while (*str && *str != ' ' && *str != '\n') { in handle_cmdline_files()
438 if (*str == '/') { in handle_cmdline_files()
440 str++; in handle_cmdline_files()
442 *p++ = *str++; in handle_cmdline_files()