Lines Matching refs:namespace

220 	char *namespace;  member
301 char namespace[]; member
304 static bool contains_namespace(struct list_head *head, const char *namespace) in contains_namespace() argument
312 if (!namespace[0]) in contains_namespace()
316 if (!strcmp(list->namespace, namespace)) in contains_namespace()
323 static void add_namespace(struct list_head *head, const char *namespace) in add_namespace() argument
327 if (!contains_namespace(head, namespace)) { in add_namespace()
329 strlen(namespace) + 1)); in add_namespace()
330 strcpy(ns_entry->namespace, namespace); in add_namespace()
371 bool gpl_only, const char *namespace) in sym_add_exported() argument
384 s->namespace = NOFAIL(strdup(namespace)); in sym_add_exported()
1706 char *namespace; in read_symbols() local
1734 namespace = get_modinfo(&info, "import_ns"); in read_symbols()
1735 while (namespace) { in read_symbols()
1736 add_namespace(&mod->imported_namespaces, namespace); in read_symbols()
1737 namespace = get_next_modinfo(&info, "import_ns", in read_symbols()
1738 namespace); in read_symbols()
1853 if (!contains_namespace(&mod->imported_namespaces, exp->namespace)) { in check_exports()
1856 basename, exp->name, exp->namespace); in check_exports()
1857 add_namespace(&mod->missing_namespaces, exp->namespace); in check_exports()
1964 sym->is_gpl_only ? "_gpl" : "", sym->namespace); in add_exported_symbols()
2173 char *symname, *namespace, *modname, *d, *export; in read_dump() local
2188 if (!(namespace = strchr(export, '\t'))) in read_dump()
2190 *namespace++ = '\0'; in read_dump()
2210 s = sym_add_exported(symname, mod, gpl_only, namespace); in read_dump()
2236 sym->namespace); in write_dump()
2257 buf_printf(&ns_deps_buf, " %s", ns->namespace); in write_namespace_deps_files()