Lines Matching defs:export
357 error("%s: '%s' exported twice. Previous export was in %s%s\n",
1094 error("%s: .export_symbol section references '%s', but it does not seem to be an export symbol\n",
1694 * @namespace: export symbol namespace
1828 buf_printf(b, "#include <linux/export-internal.h>\n");
2073 "#include <linux/export-internal.h>\n");
2090 write_if_changed(&buf, ".vmlinux.export.c");
2130 * 0x12345678<tab>symbol<tab>module<tab>export<tab>namespace
2144 char *symname, *namespace, *modname, *d, *export;
2156 if (!(export = strchr(modname, '\t')))
2158 *export++ = '\0';
2159 if (!(namespace = strchr(export, '\t')))
2167 if (!strcmp(export, "EXPORT_SYMBOL_GPL")) {
2169 } else if (!strcmp(export, "EXPORT_SYMBOL")) {
2172 error("%s: unknown license %s. skip", symname, export);