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

12

/freebsd-11-stable/crypto/openssh/
H A Dfreebsd-pre-merge.sh10 svn proplist -v $f | grep -q 'FreeBSD=%H' || continue
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Drevprops.h57 apr_hash_t *proplist,
82 apr_hash_t *proplist,
H A Dlow_level.h229 apr_hash_t *proplist,
H A Dcached_data.h178 svn_fs_x__get_proplist(apr_hash_t **proplist,
H A Drevprops.c1017 apr_hash_t *proplist,
1027 SVN_ERR(svn_fs_x__write_properties(stream, proplist, scratch_pool));
1051 apr_hash_t *proplist,
1063 SVN_ERR(svn_fs_x__write_non_packed_revprops(file, proplist, scratch_pool));
1238 apr_hash_t *proplist,
1264 SVN_ERR(svn_fs_x__write_properties(stream, proplist, scratch_pool));
1383 apr_hash_t *proplist,
1423 fs, rev, proplist, batch, scratch_pool,
1427 fs, rev, proplist, batch,
1016 svn_fs_x__write_non_packed_revprops(apr_file_t *file, apr_hash_t *proplist, apr_pool_t *scratch_pool) argument
1047 write_non_packed_revprop(const char **final_path, const char **tmp_path, svn_fs_t *fs, svn_revnum_t rev, apr_hash_t *proplist, svn_fs_x__batch_fsync_t *batch, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1233 write_packed_revprop(const char **final_path, const char **tmp_path, apr_array_header_t **files_to_delete, svn_fs_t *fs, svn_revnum_t rev, apr_hash_t *proplist, svn_fs_x__batch_fsync_t *batch, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1381 svn_fs_x__set_revision_proplist(svn_fs_t *fs, svn_revnum_t rev, apr_hash_t *proplist, apr_pool_t *scratch_pool) argument
H A Dtree.c436 apr_hash_t *proplist;
440 SVN_ERR(svn_fs_x__dag_get_proplist(&proplist, node, scratch_pool,
443 if (proplist)
444 *value_p = svn_string_dup(svn_hash_gets(proplist, propname), pool);
518 apr_hash_t *proplist;
538 SVN_ERR(svn_fs_x__dag_get_proplist(&proplist, dag_path->node, subpool,
541 /* If there's no proplist, but we're just deleting a property, exit now. */
542 if ((! proplist) && (! value))
545 /* Now, if there's no proplist, we know we need to make one. */
546 if (! proplist)
430 apr_hash_t *proplist; local
512 apr_hash_t *proplist; local
2944 apr_hash_t *proplist; local
3009 apr_hash_t *proplist; local
[all...]
H A Dtransaction.h223 apr_hash_t *proplist,
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/zpool/
H A Dzpool_iter.c109 pool_list_get(int argc, char **argv, zprop_list_t **proplist, int *err) argument
125 zlp->zl_proplist = proplist;
241 zprop_list_t **proplist, zpool_iter_f func, void *data)
246 if ((list = pool_list_get(argc, argv, proplist, &ret)) == NULL)
240 for_each_pool(int argc, char **argv, boolean_t unavail, zprop_list_t **proplist, zpool_iter_f func, void *data) argument
/freebsd-11-stable/contrib/subversion/subversion/svn/
H A Dprops.c185 const char *const *const proplist = (revprop ? revprops : nodeprops);
225 if (0 == strcmp(proplist[i] + prefix.len, propname + prefix.len))
230 propname, SVN_PROP_PREFIX, proplist[i]),
250 propbuf[i].token.data = proplist[i] + prefix.len;
252 propbuf[i].data = proplist[i];
183 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-11-stable/contrib/dtc/
H A Ddtc-parser.y53 struct property *proplist;
86 %type <proplist> proplist
208 '{' proplist subnodes '}' ';'
214 proplist: label
219 | proplist propdef
H A Ddtc.h152 struct property *proplist; member in struct:node
175 for ((p) = (n)->proplist; (p); (p) = (p)->next)
196 struct node *build_node(struct property *proplist, struct node *children);
H A Dlivetree.c100 struct node *build_node(struct property *proplist, struct node *children) argument
107 new->proplist = reverse_properties(proplist);
151 while (new_node->proplist) {
153 new_prop = new_node->proplist;
154 new_node->proplist = new_prop->next;
233 p = &node->proplist;
242 struct property *prop = node->proplist;
672 node->proplist = tbl[0];
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_base/
H A Drevs-txns.c190 *(args->table_p) = txn->proplist;
232 /* Get the proplist. */
259 present_value = svn_hash_gets(txn->proplist, name);
261 /* If there's no proplist, but we're just deleting a property, exit now. */
262 if ((! txn->proplist) && (! value))
265 /* Now, if there's no proplist, we know we need to make one. */
266 if (! txn->proplist)
267 txn->proplist = apr_hash_make(pool);
292 svn_hash_sets(txn->proplist, name, value);
491 *(args->table_p) = txn->proplist;
[all...]
H A Dfs.h156 apr_hash_t *proplist;
153 apr_hash_t *proplist; member in struct:transaction_t
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Drevprops.h93 apr_hash_t *proplist,
H A Dcached_data.h169 svn_fs_fs__get_proplist(apr_hash_t **proplist,
H A Ddag.c493 apr_hash_t *proplist = NULL;
497 SVN_ERR(svn_fs_fs__get_proplist(&proplist, node->fs,
500 *proplist_p = proplist;
523 apr_hash_t *proplist;
525 SVN_ERR(svn_fs_fs__get_proplist(&proplist, node->fs,
528 *has_props = proplist ? (0 < apr_hash_count(proplist)) : FALSE;
542 apr_hash_t *proplist,
553 "Can't set proplist on *immutable* node-revision %s",
560 /* Set the new proplist
489 apr_hash_t *proplist = NULL; local
519 apr_hash_t *proplist; local
537 svn_fs_fs__dag_set_proplist(dag_node_t *node, apr_hash_t *proplist, apr_pool_t *pool) argument
[all...]
H A Dtransaction.h198 apr_hash_t *proplist,
H A Drevprops.c834 apr_hash_t *proplist,
848 SVN_ERR(svn_hash_write2(proplist, stream, SVN_HASH_TERMINATOR, pool));
1085 apr_hash_t *proplist,
1102 SVN_ERR(svn_hash_write2(proplist, stream, SVN_HASH_TERMINATOR, pool));
1228 apr_hash_t *proplist,
1245 fs, rev, proplist, pool));
1248 fs, rev, proplist, pool));
830 write_non_packed_revprop(const char **final_path, const char **tmp_path, svn_fs_t *fs, svn_revnum_t rev, apr_hash_t *proplist, apr_pool_t *pool) argument
1080 write_packed_revprop(const char **final_path, const char **tmp_path, apr_array_header_t **files_to_delete, svn_fs_t *fs, svn_revnum_t rev, apr_hash_t *proplist, apr_pool_t *pool) argument
1226 svn_fs_fs__set_revision_proplist(svn_fs_t *fs, svn_revnum_t rev, apr_hash_t *proplist, apr_pool_t *pool) argument
/freebsd-11-stable/contrib/subversion/subversion/include/private/
H A Dsvn_skel.h223 const apr_hash_t *proplist,
/freebsd-11-stable/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-11-stable/usr.bin/svn/svn/
H A DMakefile41 proplist-cmd.c \
/freebsd-11-stable/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,

Completed in 428 milliseconds

12