Lines Matching refs:str
1271 static int __init resume_setup(char *str) in resume_setup() argument
1276 strncpy(resume_file, str, 255); in resume_setup()
1280 static int __init resume_offset_setup(char *str) in resume_offset_setup() argument
1287 if (sscanf(str, "%llu", &offset) == 1) in resume_offset_setup()
1293 static int __init hibernate_setup(char *str) in hibernate_setup() argument
1295 if (!strncmp(str, "noresume", 8)) { in hibernate_setup()
1297 } else if (!strncmp(str, "nocompress", 10)) { in hibernate_setup()
1299 } else if (!strncmp(str, "no", 2)) { in hibernate_setup()
1303 && !strncmp(str, "protect_image", 13)) { in hibernate_setup()
1309 static int __init noresume_setup(char *str) in noresume_setup() argument
1315 static int __init resumewait_setup(char *str) in resumewait_setup() argument
1321 static int __init resumedelay_setup(char *str) in resumedelay_setup() argument
1323 int rc = kstrtouint(str, 0, &resume_delay); in resumedelay_setup()
1326 pr_warn("resumedelay: bad option string '%s'\n", str); in resumedelay_setup()
1330 static int __init nohibernate_setup(char *str) in nohibernate_setup() argument