Lines Matching refs:value
89 static void print_kernel_option(const char *name, const char *value,
96 if (!value) {
101 res = strtol(value, &endptr, 0);
105 jsonw_string_field(json_wtr, name, value);
107 if (value)
109 name, value);
113 if (value)
114 printf("%s is set to %s\n", name, value);
219 printf("bpf() syscall restriction has unknown value %ld\n", res);
248 printf("JIT-compiler status has unknown value %ld\n",
278 printf("JIT hardening status has unknown value %ld\n",
305 printf("JIT kallsyms exports status has unknown value %ld\n", res);
331 char **value)
346 /* Split on '=' and ensure that a value is present. */
351 *value = sep + 1;
446 char *value;
479 while (read_next_kernel_config_option(file, buf, sizeof(buf), &value)) {
485 values[i] = strdup(value);