Home
last modified time | relevance | path

Searched refs:proplist (Results 1 – 25 of 58) sorted by relevance

123

/freebsd-11-stable/contrib/subversion/subversion/svn/
HDprops.c183 const char *const *const proplist = (revprop ? revprops : nodeprops); in svn_cl__check_svn_prop_name() local
223 if (0 == strcmp(proplist[i] + prefix.len, propname + prefix.len)) in svn_cl__check_svn_prop_name()
228 propname, SVN_PROP_PREFIX, proplist[i]), in svn_cl__check_svn_prop_name()
248 propbuf[i].token.data = proplist[i] + prefix.len; in svn_cl__check_svn_prop_name()
250 propbuf[i].data = proplist[i]; in svn_cl__check_svn_prop_name()
HDproplist-cmd.c209 apr_hash_t *proplist; in svn_cl__proplist() local
220 SVN_ERR(svn_client_revprop_list(&proplist, in svn_cl__proplist()
234 SVN_ERR(svn_cmdline__print_xml_prop_hash(&sb, proplist, in svn_cl__proplist()
249 SVN_ERR(svn_cmdline__print_prop_hash(NULL, proplist, in svn_cl__proplist()
/freebsd-11-stable/contrib/dtc/
HDdtc-parser.y53 struct property *proplist; member
86 %type <proplist> proplist
208 '{' proplist subnodes '}' ';'
214 proplist:
219 | proplist propdef
HDlivetree.c100 struct node *build_node(struct property *proplist, struct node *children) in build_node() argument
107 new->proplist = reverse_properties(proplist); in build_node()
151 while (new_node->proplist) { in merge_nodes()
153 new_prop = new_node->proplist; in merge_nodes()
154 new_node->proplist = new_prop->next; in merge_nodes()
233 p = &node->proplist; in add_property()
242 struct property *prop = node->proplist; in delete_property_by_name()
672 node->proplist = tbl[0]; in sort_properties()
HDdtc.h152 struct property *proplist; member
175 for ((p) = (n)->proplist; (p); (p) = (p)->next)
196 struct node *build_node(struct property *proplist, struct node *children);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zpool/
HDzpool_iter.c109 pool_list_get(int argc, char **argv, zprop_list_t **proplist, int *err) in pool_list_get() argument
125 zlp->zl_proplist = proplist; in pool_list_get()
241 zprop_list_t **proplist, zpool_iter_f func, void *data) in for_each_pool() argument
246 if ((list = pool_list_get(argc, argv, proplist, &ret)) == NULL) in for_each_pool()
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/
HDrevs-txns.c188 *(args->table_p) = txn->proplist; in txn_body_revision_proplist()
257 present_value = svn_hash_gets(txn->proplist, name); in svn_fs_base__set_rev_prop()
260 if ((! txn->proplist) && (! value)) in svn_fs_base__set_rev_prop()
264 if (! txn->proplist) in svn_fs_base__set_rev_prop()
265 txn->proplist = apr_hash_make(pool); in svn_fs_base__set_rev_prop()
290 svn_hash_sets(txn->proplist, name, value); in svn_fs_base__set_rev_prop()
487 *(args->table_p) = txn->proplist; in txn_body_txn_proplist()
581 if ((! txn->proplist) && (! value)) in svn_fs_base__set_txn_prop()
585 if (! txn->proplist) in svn_fs_base__set_txn_prop()
586 txn->proplist = apr_hash_make(pool); in svn_fs_base__set_txn_prop()
[all …]
HDfs.h153 apr_hash_t *proplist; member
HDtree.c1212 apr_hash_t *proplist; in txn_body_node_prop() local
1215 SVN_ERR(svn_fs_base__dag_get_proplist(&proplist, node, in txn_body_node_prop()
1218 if (proplist) in txn_body_node_prop()
1219 *(args->value_p) = svn_hash_gets(proplist, args->propname); in txn_body_node_prop()
1259 apr_hash_t *proplist; in txn_body_node_proplist() local
1262 SVN_ERR(svn_fs_base__dag_get_proplist(&proplist, node, in txn_body_node_proplist()
1264 *args->table_p = proplist ? proplist : apr_hash_make(trail->pool); in txn_body_node_proplist()
1319 apr_hash_t *proplist; in txn_body_change_node_prop() local
1334 SVN_ERR(svn_fs_base__dag_get_proplist(&proplist, parent_path->node, in txn_body_change_node_prop()
1338 if ((! proplist) && (! args->value)) in txn_body_change_node_prop()
[all …]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
HDskel.c699 apr_hash_t *proplist = NULL; in svn_skel__parse_proplist() local
707 proplist = apr_hash_make(pool); in svn_skel__parse_proplist()
712 apr_hash_set(proplist, in svn_skel__parse_proplist()
719 *proplist_p = proplist; in svn_skel__parse_proplist()
787 const apr_hash_t *proplist, in svn_skel__unparse_proplist() argument
794 if (proplist) in svn_skel__unparse_proplist()
797 for (hi = apr_hash_first(pool, (apr_hash_t *)proplist); hi; in svn_skel__unparse_proplist()
HDproperties.c191 svn_categorize_props(const apr_array_header_t *proplist, in svn_categorize_props() argument
205 for (i = 0; i < proplist->nelts; i++) in svn_categorize_props()
210 prop = &APR_ARRAY_IDX(proplist, i, svn_prop_t); in svn_categorize_props()
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
HDrevprops.h57 apr_hash_t *proplist,
82 apr_hash_t *proplist,
HDtree.c430 apr_hash_t *proplist; in x_node_prop() local
434 SVN_ERR(svn_fs_x__dag_get_proplist(&proplist, node, scratch_pool, in x_node_prop()
437 if (proplist) in x_node_prop()
438 *value_p = svn_string_dup(svn_hash_gets(proplist, propname), pool); in x_node_prop()
512 apr_hash_t *proplist; in x_change_node_prop() local
532 SVN_ERR(svn_fs_x__dag_get_proplist(&proplist, dag_path->node, subpool, in x_change_node_prop()
536 if ((! proplist) && (! value)) in x_change_node_prop()
540 if (! proplist) in x_change_node_prop()
541 proplist = apr_hash_make(subpool); in x_change_node_prop()
565 svn_hash_sets(proplist, name, value); in x_change_node_prop()
[all …]
HDrevprops.c1017 apr_hash_t *proplist, in svn_fs_x__write_non_packed_revprops() argument
1027 SVN_ERR(svn_fs_x__write_properties(stream, proplist, scratch_pool)); in svn_fs_x__write_non_packed_revprops()
1051 apr_hash_t *proplist, in write_non_packed_revprop() argument
1063 SVN_ERR(svn_fs_x__write_non_packed_revprops(file, proplist, scratch_pool)); in write_non_packed_revprop()
1238 apr_hash_t *proplist, in write_packed_revprop() argument
1264 SVN_ERR(svn_fs_x__write_properties(stream, proplist, scratch_pool)); in write_packed_revprop()
1383 apr_hash_t *proplist, in svn_fs_x__set_revision_proplist() argument
1423 fs, rev, proplist, batch, scratch_pool, in svn_fs_x__set_revision_proplist()
1427 fs, rev, proplist, batch, in svn_fs_x__set_revision_proplist()
HDlow_level.h229 apr_hash_t *proplist,
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
HDdag.c489 apr_hash_t *proplist = NULL; in svn_fs_fs__dag_get_proplist() local
493 SVN_ERR(svn_fs_fs__get_proplist(&proplist, node->fs, in svn_fs_fs__dag_get_proplist()
496 *proplist_p = proplist; in svn_fs_fs__dag_get_proplist()
519 apr_hash_t *proplist; in svn_fs_fs__dag_has_props() local
521 SVN_ERR(svn_fs_fs__get_proplist(&proplist, node->fs, in svn_fs_fs__dag_has_props()
524 *has_props = proplist ? (0 < apr_hash_count(proplist)) : FALSE; in svn_fs_fs__dag_has_props()
538 apr_hash_t *proplist, in svn_fs_fs__dag_set_proplist() argument
557 return svn_fs_fs__set_proplist(node->fs, noderev, proplist, pool); in svn_fs_fs__dag_set_proplist()
HDrevprops.c834 apr_hash_t *proplist, in write_non_packed_revprop() argument
848 SVN_ERR(svn_hash_write2(proplist, stream, SVN_HASH_TERMINATOR, pool)); in write_non_packed_revprop()
1085 apr_hash_t *proplist, in write_packed_revprop() argument
1102 SVN_ERR(svn_hash_write2(proplist, stream, SVN_HASH_TERMINATOR, pool)); in write_packed_revprop()
1228 apr_hash_t *proplist, in svn_fs_fs__set_revision_proplist() argument
1245 fs, rev, proplist, pool)); in svn_fs_fs__set_revision_proplist()
1248 fs, rev, proplist, pool)); in svn_fs_fs__set_revision_proplist()
HDtree.c1561 apr_hash_t *proplist; in fs_node_prop() local
1564 SVN_ERR(svn_fs_fs__dag_get_proplist(&proplist, node, pool)); in fs_node_prop()
1566 if (proplist) in fs_node_prop()
1567 *value_p = svn_hash_gets(proplist, propname); in fs_node_prop()
1633 apr_hash_t *proplist; in fs_change_node_prop() local
1651 SVN_ERR(svn_fs_fs__dag_get_proplist(&proplist, parent_path->node, pool)); in fs_change_node_prop()
1654 if ((! proplist) && (! value)) in fs_change_node_prop()
1658 if (! proplist) in fs_change_node_prop()
1659 proplist = apr_hash_make(pool); in fs_change_node_prop()
1684 svn_hash_sets(proplist, name, value); in fs_change_node_prop()
[all …]
HDrevprops.h93 apr_hash_t *proplist,
HDcached_data.h168 svn_fs_fs__get_proplist(apr_hash_t **proplist,
/freebsd-11-stable/crypto/openssh/
HDfreebsd-pre-merge.sh10 svn proplist -v $f | grep -q 'FreeBSD=%H' || continue
/freebsd-11-stable/contrib/subversion/subversion/libsvn_ra_svn/
HDprotocol234 proplist: ( ( name:string value:string ) ... )
235 iproplist: ( ( name:string proplist ) ... )
288 rev-proplist
290 response: ( props:proplist )
298 keep-locks:bool ? rev-props:proplist )
313 response: ( [ checksum:string ] rev:number props:proplist
326 response: ( rev:number props:proplist ( entry:dirent ... )
405 revprop-count:number rev-props:proplist
429 file-rev: ( path:string rev:number rev-props:proplist
483 revprops: ( revprops:word props:proplist )
HDclient.c1222 svn_ra_svn__list_t *proplist; in ra_svn_rev_proplist() local
1226 SVN_ERR(svn_ra_svn__read_cmd_response(conn, pool, "l", &proplist)); in ra_svn_rev_proplist()
1227 SVN_ERR(svn_ra_svn__parse_proplist(proplist, pool, props)); in ra_svn_rev_proplist()
1447 svn_ra_svn__list_t *proplist; in ra_svn_get_file() local
1459 &rev, &proplist)); in ra_svn_get_file()
1464 SVN_ERR(svn_ra_svn__parse_proplist(proplist, pool, props)); in ra_svn_get_file()
1556 svn_ra_svn__list_t *proplist, *dirlist; in ra_svn_get_dir() local
1570 SVN_ERR(svn_ra_svn__read_cmd_response(conn, pool, "rll", &rev, &proplist, in ra_svn_get_dir()
1576 SVN_ERR(svn_ra_svn__parse_proplist(proplist, pool, props)); in ra_svn_get_dir()
2378 svn_ra_svn__list_t *rev_proplist, *proplist; in ra_svn_get_file_revs() local
[all …]
/freebsd-11-stable/contrib/subversion/subversion/include/private/
HDsvn_skel.h220 const apr_hash_t *proplist,
/freebsd-11-stable/contrib/subversion/subversion/svn/schema/
HDprops.rnc20 # For "svn proplist"

123