Lines Matching defs:value
83 static void print_kernel_option(const char *name, const char *value,
90 if (!value) {
95 res = strtol(value, &endptr, 0);
99 jsonw_string_field(json_wtr, name, value);
101 if (value)
103 name, value);
107 if (value)
108 printf("%s is set to %s\n", name, value);
184 printf("bpf() syscall restriction has unknown value %ld\n", res);
213 printf("JIT-compiler status has unknown value %ld\n",
243 printf("JIT hardening status has unknown value %ld\n",
270 printf("JIT kallsyms exports status has unknown value %ld\n", res);
296 char **value)
311 /* Split on '=' and ensure that a value is present. */
316 *value = sep + 1;
407 char *value;
440 while (read_next_kernel_config_option(file, buf, sizeof(buf), &value)) {
446 values[i] = strdup(value);