Lines Matching refs:namespace

200 	char *namespace;  member
277 char namespace[]; member
280 static bool contains_namespace(struct list_head *head, const char *namespace) in contains_namespace() argument
288 if (!namespace[0]) in contains_namespace()
292 if (!strcmp(list->namespace, namespace)) in contains_namespace()
299 static void add_namespace(struct list_head *head, const char *namespace) in add_namespace() argument
303 if (!contains_namespace(head, namespace)) { in add_namespace()
304 ns_entry = xmalloc(sizeof(*ns_entry) + strlen(namespace) + 1); in add_namespace()
305 strcpy(ns_entry->namespace, namespace); in add_namespace()
346 bool gpl_only, const char *namespace) in sym_add_exported() argument
359 s->namespace = xstrdup(namespace); in sym_add_exported()
1561 char *namespace; in read_symbols() local
1589 namespace = get_modinfo(&info, "import_ns"); in read_symbols()
1590 while (namespace) { in read_symbols()
1591 add_namespace(&mod->imported_namespaces, namespace); in read_symbols()
1592 namespace = get_next_modinfo(&info, "import_ns", in read_symbols()
1593 namespace); in read_symbols()
1709 if (!contains_namespace(&mod->imported_namespaces, exp->namespace)) { in check_exports()
1712 basename, exp->name, exp->namespace); in check_exports()
1713 add_namespace(&mod->missing_namespaces, exp->namespace); in check_exports()
1797 sym->is_gpl_only ? "_gpl" : "", sym->namespace); in add_exported_symbols()
2006 char *symname, *namespace, *modname, *d, *export; in read_dump() local
2021 if (!(namespace = strchr(export, '\t'))) in read_dump()
2023 *namespace++ = '\0'; in read_dump()
2043 s = sym_add_exported(symname, mod, gpl_only, namespace); in read_dump()
2069 sym->namespace); in write_dump()
2090 buf_printf(&ns_deps_buf, " %s", ns->namespace); in write_namespace_deps_files()