Lines Matching defs:links
43 * @links: associated symbolic links
48 * the actual synthesized data file plus any associated symbolic links which
59 struct dentry **links;
363 * Create links to additional files (usually .c and .gcno files) which the
375 node->links = kcalloc(num, sizeof(struct dentry *), GFP_KERNEL);
376 if (!node->links)
387 node->links[i] = debugfs_create_symlink(deskew(basename),
396 debugfs_remove(node->links[i]);
397 kfree(node->links);
398 node->links = NULL;
463 /* Remove symbolic links associated with node. */
468 if (!node->links)
471 debugfs_remove(node->links[i]);
472 kfree(node->links);
473 node->links = NULL;