Lines Matching refs:str
1274 static int __init resume_setup(char *str) in resume_setup() argument
1279 strncpy(resume_file, str, 255); in resume_setup()
1283 static int __init resume_offset_setup(char *str) in resume_offset_setup() argument
1290 if (sscanf(str, "%llu", &offset) == 1) in resume_offset_setup()
1296 static int __init hibernate_setup(char *str) in hibernate_setup() argument
1298 if (!strncmp(str, "noresume", 8)) { in hibernate_setup()
1300 } else if (!strncmp(str, "nocompress", 10)) { in hibernate_setup()
1302 } else if (!strncmp(str, "no", 2)) { in hibernate_setup()
1306 && !strncmp(str, "protect_image", 13)) { in hibernate_setup()
1312 static int __init noresume_setup(char *str) in noresume_setup() argument
1318 static int __init resumewait_setup(char *str) in resumewait_setup() argument
1324 static int __init resumedelay_setup(char *str) in resumedelay_setup() argument
1326 int rc = kstrtouint(str, 0, &resume_delay); in resumedelay_setup()
1329 pr_warn("resumedelay: bad option string '%s'\n", str); in resumedelay_setup()
1333 static int __init nohibernate_setup(char *str) in nohibernate_setup() argument