Lines Matching defs:path
13 struct btrfs_path *path;
21 path = btrfs_alloc_path();
22 if (!path)
25 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
27 btrfs_free_path(path);
34 struct btrfs_path *path;
42 path = btrfs_alloc_path();
43 if (!path)
46 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
54 ret = btrfs_del_item(trans, root, path);
57 btrfs_free_path(path);