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_add_immediate() - Add immediate property to directory
506 * @parent: Directory to add the property
531 * tb_property_add_data() - Adds arbitrary data property to directory
532 * @parent: Directory to add the property
537 * Function takes a copy of @buf and adds it to the directory.
568 * tb_property_add_text() - Adds string property to directory
569 * @parent: Directory to add the property
573 * Function takes a copy of @text and adds it to the directory.
604 * tb_property_add_dir() - Adds a directory to the parent directory
605 * @parent: Directory to add the property
607 * @dir: Directory to add
629 * tb_property_remove() - Removes property from a parent directory
643 * tb_property_find() - Find a property from a directory
644 * @dir: Directory where the property is searched
648 * Finds and returns property from the given directory. Does not recurse
666 * tb_property_get_next() - Get next property from directory
667 * @dir: Directory holding properties
668 * @prev: Previous property in the directory (%NULL returns the first)