Lines Matching defs:name
15 * @function: Function's name.
148 * @name: The string to store into the permernent memory.
152 const struct tomoyo_path_info *tomoyo_get_name(const char *name)
159 if (!name)
161 len = strlen(name) + 1;
162 hash = full_name_hash(NULL, (const unsigned char *) name, len - 1);
167 if (hash != ptr->entry.hash || strcmp(name, ptr->entry.name) ||
175 ptr->entry.name = ((char *) ptr) + sizeof(*ptr);
176 memmove((char *) ptr->entry.name, name, len);
201 tomoyo_kernel_namespace.name = "<kernel>";