Searched refs:path (Results 1 - 4 of 4) sorted by relevance

/lib/
H A Dearlycpio.c52 * @path: The directory to search for, including a slash at the end
58 * to find all files inside of a directory path.
61 * filename (with the directory path cut off) of the found file.
63 * pass the absolute path of the filename in the cpio and make sure
67 struct cpio_data find_cpio_data(const char *path, void *data, argument
75 size_t mypathsize = strlen(path);
127 !memcmp(p, path, mypathsize)) {
H A Dkobject.c121 static void fill_kobj_path(struct kobject *kobj, char *path, int length) argument
130 strncpy(path + length, kobject_name(parent), cur);
131 *(path + --length) = '/';
134 pr_debug("kobject: '%s' (%p): %s: path = '%s'\n", kobject_name(kobj),
135 kobj, __func__, path);
139 * kobject_get_path - generate and return the path associated with a given kobj and kset pair.
141 * @kobj: kobject in question, with which to build the path
142 * @gfp_mask: the allocation type used to allocate the path
148 char *path; local
154 path
[all...]
H A Dradix-tree.c41 * path as height 0 holds only 1 entry.
352 node->path = newheight;
410 slot->path = height;
415 slot->path |= offset << RADIX_TREE_HEIGHT_SHIFT;
509 height = node->path & RADIX_TREE_HEIGHT_MASK;
715 height = node->path & RADIX_TREE_HEIGHT_MASK;
783 height = rnode->path & RADIX_TREE_HEIGHT_MASK;
872 * path to the root. We must do this so that we resolve the full path before
934 /* walk back up the path taggin
[all...]
H A Ddynamic_debug.c68 /* Return the path relative to source root */
69 static inline const char *trim_prefix(const char *path) argument
73 if (strncmp(path, __FILE__, skip))
76 return path + skip;

Completed in 147 milliseconds