Lines Matching full:directory
214 * Upon success returns the parsed directory. In case of error returns
218 * The @block is expected to be root directory.
236 * tb_property_create_dir() - Creates new property directory
237 * @uuid: UUID used to identify the particular directory
239 * Creates new, empty property directory. If @uuid is %NULL then the
240 * directory is assumed to be root directory.
286 * tb_property_free_dir() - Release memory allocated for property directory
287 * @dir: Directory to release
289 * This will release all the memory the directory occupies including all
329 /* Reserve dword padding after each directory */ in tb_property_dir_length()
359 * data/text is included right after the directory and each in __tb_property_format_dir()
360 * directory follows each other (even nested ones). in __tb_property_format_dir()
363 * | header | <-- root directory header in __tb_property_format_dir()
383 * | UUID | <-- directory UUID (child directory) in __tb_property_format_dir()
398 * We use dir_end to hold pointer to the end of the directory. It in __tb_property_format_dir()
399 * will increase as we add directories and each directory should be in __tb_property_format_dir()
478 * tb_property_format_dir() - Formats directory to the packed XDomain format
479 * @dir: Directory to format
483 * This function formats the directory to the packed format that can be
505 * tb_property_copy_dir() - Take a deep copy of directory
506 * @dir: Directory to copy
509 * case of error returns %NULL. The resulting directory needs to be
576 * tb_property_add_immediate() - Add immediate property to directory
577 * @parent: Directory to add the property
602 * tb_property_add_data() - Adds arbitrary data property to directory
603 * @parent: Directory to add the property
608 * Function takes a copy of @buf and adds it to the directory.
639 * tb_property_add_text() - Adds string property to directory
640 * @parent: Directory to add the property
644 * Function takes a copy of @text and adds it to the directory.
675 * tb_property_add_dir() - Adds a directory to the parent directory
676 * @parent: Directory to add the property
678 * @dir: Directory to add
700 * tb_property_remove() - Removes property from a parent directory
714 * tb_property_find() - Find a property from a directory
715 * @dir: Directory where the property is searched
719 * Finds and returns property from the given directory. Does not recurse
737 * tb_property_get_next() - Get next property from directory
738 * @dir: Directory holding properties
739 * @prev: Previous property in the directory (%NULL returns the first)