Lines Matching refs:str
1419 static int __init resume_setup(char *str) in resume_setup() argument
1424 strscpy(resume_file, str); in resume_setup()
1428 static int __init resume_offset_setup(char *str) in resume_offset_setup() argument
1435 if (sscanf(str, "%llu", &offset) == 1) in resume_offset_setup()
1441 static int __init hibernate_setup(char *str) in hibernate_setup() argument
1443 if (!strncmp(str, "noresume", 8)) { in hibernate_setup()
1445 } else if (!strncmp(str, "nocompress", 10)) { in hibernate_setup()
1447 } else if (!strncmp(str, "no", 2)) { in hibernate_setup()
1451 && !strncmp(str, "protect_image", 13)) { in hibernate_setup()
1457 static int __init noresume_setup(char *str) in noresume_setup() argument
1463 static int __init resumewait_setup(char *str) in resumewait_setup() argument
1469 static int __init resumedelay_setup(char *str) in resumedelay_setup() argument
1471 int rc = kstrtouint(str, 0, &resume_delay); in resumedelay_setup()
1474 pr_warn("resumedelay: bad option string '%s'\n", str); in resumedelay_setup()
1478 static int __init nohibernate_setup(char *str) in nohibernate_setup() argument