Searched refs:proplist (Results 1 - 25 of 33) sorted by relevance

12

/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_iter.c108 pool_list_get(int argc, char **argv, zprop_list_t **proplist, int *err) argument
124 zlp->zl_proplist = proplist;
239 zprop_list_t **proplist, zpool_iter_f func, void *data)
244 if ((list = pool_list_get(argc, argv, proplist, &ret)) == NULL)
238 for_each_pool(int argc, char **argv, boolean_t unavail, zprop_list_t **proplist, zpool_iter_f func, void *data) argument
/freebsd-10.0-release/contrib/subversion/subversion/svn/
H A Dprops.c241 const char *const *const proplist = (revprop ? revprops : nodeprops);
280 if (0 == strcmp(proplist[i] + prefix.len, propname + prefix.len))
285 propname, SVN_PROP_PREFIX, proplist[i],
305 propbuf[i].propname = proplist[i];
306 propbuf[i].name.data = proplist[i] + prefix.len;
239 const char *const *const proplist = (revprop ? revprops : nodeprops); local
H A Dproplist-cmd.c2 * proplist-cmd.c -- List properties of files/dirs
211 apr_hash_t *proplist;
222 SVN_ERR(svn_client_revprop_list(&proplist,
236 SVN_ERR(svn_cmdline__print_xml_prop_hash(&sb, proplist,
251 SVN_ERR(svn_cmdline__print_prop_hash(NULL, proplist,
209 apr_hash_t *proplist; local
/freebsd-10.0-release/contrib/dtc/
H A Ddtc-parser.y54 struct property *proplist;
82 %type <proplist> proplist
159 '{' proplist subnodes '}' ';'
165 proplist: label
170 | proplist propdef
H A Dlivetree.c77 struct node *build_node(struct property *proplist, struct node *children) argument
84 new->proplist = reverse_properties(proplist);
115 while (new_node->proplist) {
117 new_prop = new_node->proplist;
118 new_node->proplist = new_prop->next;
184 p = &node->proplist;
551 node->proplist = tbl[0];
H A Ddtc.h146 struct property *proplist; member in struct:node
165 for ((p) = (n)->proplist; (p); (p) = (p)->next)
176 struct node *build_node(struct property *proplist, struct node *children);
/freebsd-10.0-release/contrib/subversion/subversion/include/private/
H A Dsvn_skel.h223 const apr_hash_t *proplist,
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_base/
H A Dfs.h152 apr_hash_t *proplist;
149 apr_hash_t *proplist; member in struct:transaction_t
H A Drevs-txns.c190 *(args->table_p) = txn->proplist;
228 /* Get the proplist. */
255 /* If there's no proplist, but we're just deleting a property, exit now. */
256 if ((! txn->proplist) && (! value))
259 /* Now, if there's no proplist, we know we need to make one. */
260 if (! txn->proplist)
261 txn->proplist = apr_hash_make(pool);
267 const svn_string_t *present_value = svn_hash_gets(txn->proplist, name);
280 svn_hash_sets(txn->proplist, name, value);
479 *(args->table_p) = txn->proplist;
[all...]
H A Dtree.c1193 apr_hash_t *proplist;
1196 SVN_ERR(svn_fs_base__dag_get_proplist(&proplist, node,
1199 if (proplist)
1200 *(args->value_p) = svn_hash_gets(proplist, args->propname);
1240 apr_hash_t *proplist;
1243 SVN_ERR(svn_fs_base__dag_get_proplist(&proplist, node,
1245 *args->table_p = proplist ? proplist : apr_hash_make(trail->pool);
1285 apr_hash_t *proplist;
1300 SVN_ERR(svn_fs_base__dag_get_proplist(&proplist, parent_pat
1186 apr_hash_t *proplist; local
1233 apr_hash_t *proplist; local
1278 apr_hash_t *proplist; local
5130 apr_hash_t *proplist; local
[all...]
H A Ddag.h156 const apr_hash_t *proplist,
H A Ddag.c555 apr_hash_t *proplist = NULL;
577 SVN_ERR(svn_skel__parse_proplist(&proplist, proplist_skel, pool));
579 *proplist_p = proplist;
586 const apr_hash_t *proplist,
606 _("Can't set proplist on *immutable* node-revision %s"),
615 /* Flatten the proplist into a string. */
616 SVN_ERR(svn_skel__unparse_proplist(&proplist_skel, proplist, pool));
551 apr_hash_t *proplist = NULL; local
581 svn_fs_base__dag_set_proplist(dag_node_t *node, const apr_hash_t *proplist, const char *txn_id, trail_t *trail, apr_pool_t *pool) argument
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_fs/
H A Dfs_fs.h185 svn_error_t *svn_fs_fs__get_proplist(apr_hash_t **proplist,
193 svn_error_t *svn_fs_fs__revision_proplist(apr_hash_t **proplist,
351 apr_hash_t *proplist,
403 svn_error_t *svn_fs_fs__txn_proplist(apr_hash_t **proplist,
H A Dfs.h378 apr_hash_t *proplist;
377 apr_hash_t *proplist; member in struct:transaction_t
H A Ddag.c487 apr_hash_t *proplist = NULL;
491 SVN_ERR(svn_fs_fs__get_proplist(&proplist, node->fs,
494 *proplist_p = proplist;
502 apr_hash_t *proplist,
513 "Can't set proplist on *immutable* node-revision %s",
520 /* Set the new proplist. */
521 return svn_fs_fs__set_proplist(node->fs, noderev, proplist, pool);
483 apr_hash_t *proplist = NULL; local
497 svn_fs_fs__dag_set_proplist(dag_node_t *node, apr_hash_t *proplist, apr_pool_t *pool) argument
H A Dtree.c1383 apr_hash_t *proplist;
1386 SVN_ERR(svn_fs_fs__dag_get_proplist(&proplist, node, pool));
1388 if (proplist)
1389 *value_p = svn_hash_gets(proplist, propname);
1442 apr_hash_t *proplist;
1459 SVN_ERR(svn_fs_fs__dag_get_proplist(&proplist, parent_path->node, pool));
1461 /* If there's no proplist, but we're just deleting a property, exit now. */
1462 if ((! proplist) && (! value))
1465 /* Now, if there's no proplist, we know we need to make one. */
1466 if (! proplist)
1376 apr_hash_t *proplist; local
1435 apr_hash_t *proplist; local
3796 apr_hash_t *proplist; local
3879 apr_hash_t *proplist; local
[all...]
H A Ddag.h186 apr_hash_t *proplist,
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_subr/
H A Dskel.c707 apr_hash_t *proplist = NULL;
712 return skel_err("proplist");
715 proplist = apr_hash_make(pool);
720 apr_hash_set(proplist,
727 *proplist_p = proplist;
772 return skel_err("proplist");
795 const apr_hash_t *proplist,
802 if (proplist)
805 for (hi = apr_hash_first(pool, (apr_hash_t *)proplist); hi;
827 return skel_err("proplist");
699 apr_hash_t *proplist = NULL; local
786 svn_skel__unparse_proplist(svn_skel_t **skel_p, const apr_hash_t *proplist, apr_pool_t *pool) argument
[all...]
H A Dproperties.c192 svn_categorize_props(const apr_array_header_t *proplist,
206 for (i = 0; i < proplist->nelts; i++)
211 prop = &APR_ARRAY_IDX(proplist, i, svn_prop_t);
191 svn_categorize_props(const apr_array_header_t *proplist, apr_array_header_t **entry_props, apr_array_header_t **wc_props, apr_array_header_t **regular_props, apr_pool_t *pool) argument
/freebsd-10.0-release/contrib/subversion/subversion/include/
H A Dsvn_props.h168 /** Seen if user does "svn proplist"; note that this includes some "svn:"
282 /** Given a @a proplist array of @c svn_prop_t structures, allocate
286 * @a proplist's structures.
294 svn_categorize_props(const apr_array_header_t *proplist,
/freebsd-10.0-release/usr.bin/svn/svn/
H A DMakefile17 propget-cmd.c proplist-cmd.c props.c propset-cmd.c relocate-cmd.c \
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_ra_svn/
H A Dclient.c922 apr_array_header_t *proplist;
926 SVN_ERR(svn_ra_svn__read_cmd_response(conn, pool, "l", &proplist));
927 SVN_ERR(svn_ra_svn__parse_proplist(proplist, pool, props));
1111 _("Inherited proplist element not a list"));
1147 apr_array_header_t *proplist;
1158 &rev, &proplist));
1163 SVN_ERR(svn_ra_svn__parse_proplist(proplist, pool, props));
1226 apr_array_header_t *proplist, *dirlist;
1247 SVN_ERR(svn_ra_svn__read_cmd_response(conn, pool, "rll", &rev, &proplist,
1253 SVN_ERR(svn_ra_svn__parse_proplist(proplist, poo
921 apr_array_header_t *proplist; local
1146 apr_array_header_t *proplist; local
1225 apr_array_header_t *proplist, *dirlist; local
1962 apr_array_header_t *rev_proplist, *proplist; local
[all...]
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/zfs/
H A Dzfs_iter.c368 zfs_sort_column_t *sortcol, zprop_list_t **proplist, int limit,
384 cb.cb_proplist = proplist;
367 zfs_for_each(int argc, char **argv, int flags, zfs_type_t types, zfs_sort_column_t *sortcol, zprop_list_t **proplist, int limit, zfs_iter_f callback, void *data) argument
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_base/bdb/
H A Dtxn-table.c160 txn.proplist = NULL;
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_fs_base/util/
H A Dfs_skels.c418 svn_skel_t *root_id, *base_id_or_rev, *proplist, *copies;
427 proplist = skel->children->next->next->next;
461 SVN_ERR(svn_skel__parse_proplist(&(transaction->proplist),
462 proplist, pool));
995 transaction->proplist, pool));
415 svn_skel_t *root_id, *base_id_or_rev, *proplist, *copies; local

Completed in 259 milliseconds

12