Home
last modified time | relevance | path

Searched refs:change (Results 1 – 25 of 964) sorted by relevance

12345678910>>...39

/NextBSD/contrib/subversion/subversion/libsvn_delta/
HDcompat.c211 struct change_node *change = svn_hash_gets(eb->changes, relpath); in locate_change() local
213 if (change != NULL) in locate_change()
214 return change; in locate_change()
221 change = apr_pcalloc(eb->edit_pool, sizeof(*change)); in locate_change()
222 change->changing = SVN_INVALID_REVNUM; in locate_change()
223 change->deleting = SVN_INVALID_REVNUM; in locate_change()
224 change->kind = svn_node_unknown; in locate_change()
226 svn_hash_sets(eb->changes, relpath, change); in locate_change()
228 return change; in locate_change()
241 struct change_node *change = locate_change(eb, relpath); in apply_propedit() local
[all …]
/NextBSD/contrib/subversion/subversion/libsvn_fs_x/
HDchanges.c138 svn_fs_x__change_t *change) in append_change() argument
144 SVN_ERR_ASSERT(change); in append_change()
145 SVN_ERR_ASSERT(change->path.data); in append_change()
148 binary_change.noderev_id = change->noderev_id; in append_change()
152 binary_change.flags = (change->text_mod ? CHANGE_TEXT_MOD : 0) in append_change()
153 | (change->prop_mod ? CHANGE_PROP_MOD : 0) in append_change()
155 | ((int)change->change_kind << CHANGE_KIND_SHIFT) in append_change()
156 | ((int)change->node_kind << CHANGE_NODE_SHIFT); in append_change()
161 change->path.data, in append_change()
162 change->path.len); in append_change()
[all …]
HDlow_level.c785 svn_fs_x__change_t *change; in read_change() local
797 change = apr_pcalloc(result_pool, sizeof(*change)); in read_change()
806 SVN_ERR(svn_fs_x__id_parse(&change->noderev_id, str)); in read_change()
816 change->node_kind = svn_node_unknown; in read_change()
824 change->node_kind = svn_node_file; in read_change()
826 change->node_kind = svn_node_dir; in read_change()
834 change->change_kind = svn_fs_path_change_modify; in read_change()
838 change->change_kind = svn_fs_path_change_add; in read_change()
842 change->change_kind = svn_fs_path_change_delete; in read_change()
846 change->change_kind = svn_fs_path_change_replace; in read_change()
[all …]
/NextBSD/contrib/subversion/subversion/libsvn_fs_base/bdb/
HDchanges-table.c79 change_t *change, in svn_fs_bdb__changes_add() argument
88 SVN_ERR(svn_fs_base__unparse_change_skel(&skel, change, pool)); in svn_fs_bdb__changes_add()
128 change_to_fs_change(const change_t *change, in change_to_fs_change() argument
132 svn_fs_base__id_copy(change->noderev_id, in change_to_fs_change()
134 change->kind, in change_to_fs_change()
136 result->text_mod = change->text_mod; in change_to_fs_change()
137 result->prop_mod = change->prop_mod; in change_to_fs_change()
150 const change_t *change) in fold_change() argument
156 if ((old_change = svn_hash_gets(changes, change->path))) in fold_change()
163 path = change->path; in fold_change()
[all …]
/NextBSD/contrib/diff/src/
HDdiff.h218 struct change struct
220 struct change *link; /* Previous or next edit command */ argument
325 void print_context_script (struct change *, bool);
331 void print_ed_script (struct change *);
332 void pr_forward_ed_script (struct change *);
335 void print_ifdef_script (struct change *);
342 void print_normal_script (struct change *);
345 void print_rcs_script (struct change *);
348 void print_sdiff_script (struct change *);
357 struct change *find_change (struct change *);
[all …]
HDed.c25 static void print_ed_hunk (struct change *);
26 static void print_rcs_hunk (struct change *);
27 static void pr_forward_ed_hunk (struct change *);
32 print_ed_script (struct change *script) in print_ed_script()
40 print_ed_hunk (struct change *hunk) in print_ed_hunk()
87 pr_forward_ed_script (struct change *script) in pr_forward_ed_script()
93 pr_forward_ed_hunk (struct change *hunk) in pr_forward_ed_hunk()
127 print_rcs_script (struct change *script) in print_rcs_script()
135 print_rcs_hunk (struct change *hunk) in print_rcs_hunk()
HDcontext.c35 static struct change *find_hunk (struct change *);
36 static void mark_ignorable (struct change *);
37 static void pr_context_hunk (struct change *);
38 static void pr_unidiff_hunk (struct change *);
91 print_context_script (struct change *script, bool unidiff) in print_context_script()
97 struct change *e; in print_context_script()
157 pr_context_hunk (struct change *hunk) in pr_context_hunk()
203 struct change *next = hunk; in pr_context_hunk()
232 struct change *next = hunk; in pr_context_hunk()
287 pr_unidiff_hunk (struct change *hunk) in pr_unidiff_hunk()
[all …]
HDutil.c455 struct change *
456 find_change (struct change *start) in find_change()
461 struct change *
462 find_reverse_change (struct change *start) in find_reverse_change()
479 print_script (struct change *script, in print_script() argument
480 struct change * (*hunkfun) (struct change *), in print_script()
481 void (*printfun) (struct change *)) in print_script()
483 struct change *next = script; in print_script()
487 struct change *this, *end; in print_script()
653 analyze_hunk (struct change *hunk, in analyze_hunk()
[all …]
/NextBSD/contrib/subversion/subversion/libsvn_repos/
HDreplay.c201 svn_fs_path_change2_t *change; in add_subdir() local
216 change = svn_hash_gets(changed_paths, new_edit_path); in add_subdir()
217 if (change) in add_subdir()
222 if (change->change_kind == svn_fs_path_change_delete) in add_subdir()
227 if (change->change_kind == svn_fs_path_change_replace) in add_subdir()
229 if (! change->copyfrom_known) in add_subdir()
231 SVN_ERR(svn_fs_copied_from(&change->copyfrom_rev, in add_subdir()
232 &change->copyfrom_path, in add_subdir()
234 change->copyfrom_known = TRUE; in add_subdir()
236 copyfrom_path = change->copyfrom_path; in add_subdir()
[all …]
/NextBSD/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/
HDtst.localtcpstate.ksh.out7 tcp:::state-change to syn-sent - yes
8 tcp:::state-change to syn-received - yes
9 tcp:::state-change to established - yes
10 tcp:::state-change to fin-wait-1 - yes
11 tcp:::state-change to close-wait - yes
12 tcp:::state-change to fin-wait-2 - yes
13 tcp:::state-change to last-ack - yes
14 tcp:::state-change to time-wait - yes
HDtst.remotetcpstate.ksh.out7 tcp:::state-change to syn-sent - yes
8 tcp:::state-change to established - yes
9 tcp:::state-change to fin-wait-1 - yes
10 tcp:::state-change to close-wait - yes
11 tcp:::state-change to fin-wait-2 - yes
12 tcp:::state-change to time-wait - yes
/NextBSD/contrib/netbsd-tests/usr.sbin/mtree/
HDd_merge.in7 ./a/change-dir-to-link type=dir mode=0755
8 ./a/change-dir-to-link type=link mode=0755
12 ./b/change-link-to-dir type=link mode=0755
13 ./b/change-link-to-dir type=dir mode=0755
19 ./c/change-dir-to-link type=dir mode=0755
20 ./c/change-dir-to-link type=link mode=0755
26 ./d/change-link-to-dir type=link mode=0755
27 ./d/change-link-to-dir type=dir mode=0755
HDd_merge_C_M.out3 ./a/change-dir-to-link type=link mode=0755
5 ./b/change-link-to-dir type=dir mode=0755
9 ./c/change-dir-to-link type=link mode=0755
13 ./d/change-link-to-dir type=dir mode=0755
HDd_merge_C_M_S.out3 ./a/change-dir-to-link type=link mode=0755
5 ./b/change-link-to-dir type=dir mode=0755
8 ./c/change-dir-to-link type=link mode=0755
13 ./d/change-link-to-dir type=dir mode=0755
/NextBSD/contrib/subversion/subversion/libsvn_fs_fs/
HDlow_level.c272 change_t *change; in read_change() local
285 change = apr_pcalloc(result_pool, sizeof(*change)); in read_change()
286 info = &change->info; in read_change()
421 change->path.len = strlen(last_str); in read_change()
422 change->path.data = apr_pstrdup(result_pool, last_str); in read_change()
444 *change_p = change; in read_change()
455 change_t *change; in svn_fs_fs__read_changes() local
468 SVN_ERR(read_change(&change, stream, result_pool, scratch_pool)); in svn_fs_fs__read_changes()
470 while (change) in svn_fs_fs__read_changes()
472 APR_ARRAY_PUSH(*changes, change_t*) = change; in svn_fs_fs__read_changes()
[all …]
/NextBSD/contrib/ntp/sntp/libevent/
HDevmap.c707 const struct event_change *change) argument
710 if (change->read_change & EV_CHANGE_SIGNAL) {
712 GET_SIGNAL_SLOT(ctx, &base->sigmap, change->fd, evmap_signal);
716 GET_IO_SLOT(ctx, &base->io, change->fd, evmap_io);
829 struct event_change *change; local
841 change = &changelist->changes[idx];
844 memset(change, 0, sizeof(struct event_change));
845 change->fd = fd;
846 change->old_events = old_events;
848 change = &changelist->changes[fdinfo->idxplus1 - 1];
[all …]
/NextBSD/contrib/binutils/bfd/doc/
HDMakefile.am66 $(SHELL) $(srcdir)/../../move-if-change chew.$$$$ $(MKDOC)
84 $(SHELL) $(srcdir)/../../move-if-change aoutx.tmp aoutx.texi
89 $(SHELL) $(srcdir)/../../move-if-change archive.tmp archive.texi
94 $(SHELL) $(srcdir)/../../move-if-change archures.tmp archures.texi
101 $(SHELL) $(srcdir)/../../move-if-change bfd.tmp bfdt.texi
106 $(SHELL) $(srcdir)/../../move-if-change cache.tmp cache.texi
111 $(SHELL) $(srcdir)/../../move-if-change coffcode.tmp coffcode.texi
116 $(SHELL) $(srcdir)/../../move-if-change core.tmp core.texi
121 $(SHELL) $(srcdir)/../../move-if-change elf.tmp elf.texi
126 $(SHELL) $(srcdir)/../../move-if-change elfcode.tmp elfcode.texi
[all …]
/NextBSD/contrib/nvi/vi/
HDv_increment.c57 long change, ltmp, lval; in v_increment() local
77 change = vp->count; in v_increment()
79 change = 1; in v_increment()
192 ltmp = vp->character == '-' ? -change : change; in v_increment()
210 if (!NPFITS(ULONG_MAX, ulval, change)) { in v_increment()
214 ulval += change; in v_increment()
216 if (ulval < change) { in v_increment()
220 ulval -= change; in v_increment()
/NextBSD/contrib/subversion/doc/programmer/
HDWritingChangeLogs.txt18 see the context in which a change was made, and
20 * the date at which the change entered the code, so you can relate the
21 change to outside events, like branch cuts, code freezes, and
24 In the case of CVS, these refer to when the change was committed,
26 change.
28 Every change to the sources should have a ChangeLog entry. The value
53 * If you have made a change which requires trivial changes throughout
84 The second change to `configure.host' is grouped with another change
165 ChangeLog, so we maintain both. When you commit a change, you should
176 when writing ChangeLog entries. For example, one might write a change
[all …]
/NextBSD/contrib/binutils/opcodes/
HDcgen.sh114 ${rootdir}/move-if-change tmp-desc.h ${srcdir}/${prefix}-desc.h
118 ${rootdir}/move-if-change tmp-desc.c ${srcdir}/${prefix}-desc.c
121 ${rootdir}/move-if-change tmp-opc.h ${srcdir}/${prefix}-opc.h
125 ${rootdir}/move-if-change tmp-opc.c ${srcdir}/${prefix}-opc.c
131 ${rootdir}/move-if-change tmp-opinst.c ${srcdir}/${prefix}-opinst.c
138 ${rootdir}/move-if-change tmp-ibld.c ${srcdir}/${prefix}-ibld.c
143 ${rootdir}/move-if-change tmp-asm.c ${srcdir}/${prefix}-asm.c
148 ${rootdir}/move-if-change tmp-dis.c ${srcdir}/${prefix}-dis.c
/NextBSD/contrib/subversion/subversion/libsvn_fs_util/
HDfs-util.c204 svn_fs_path_change2_t *change; in svn_fs__path_change_create_internal() local
206 change = apr_pcalloc(pool, sizeof(*change)); in svn_fs__path_change_create_internal()
207 change->node_rev_id = node_rev_id; in svn_fs__path_change_create_internal()
208 change->change_kind = change_kind; in svn_fs__path_change_create_internal()
209 change->mergeinfo_mod = svn_tristate_unknown; in svn_fs__path_change_create_internal()
210 change->copyfrom_rev = SVN_INVALID_REVNUM; in svn_fs__path_change_create_internal()
212 return change; in svn_fs__path_change_create_internal()
/NextBSD/crypto/heimdal/lib/asn1/
HDsetchgpw2.asn140 Req-change-pw ::= SEQUENCE {
47 Rep-change-pw ::= SEQUENCE {
53 Err-change-pw ::= SEQUENCE {
60 pw-change-too-short(4),
134 change-pw[1] Req-change-pw,
144 change-pw[1] Rep-change-pw,
154 change-pw[1] Err-change-pw,
/NextBSD/crypto/openssh/
HDauth2-passwd.c54 int change; in userauth_passwd() local
57 change = packet_get_char(); in userauth_passwd()
59 if (change) { in userauth_passwd()
67 if (change) in userauth_passwd()
/NextBSD/contrib/elftoolchain/brandelf/
HDbrandelf.c97 int ch, change = 0, force = 0, listed = 0; in main() local
106 if (change) in main()
136 change = 1; in main()
160 if ((fd = open(argv[0], (change || force) ? O_RDWR : in main()
167 if ((elf = elf_begin(fd, (change || force) ? ELF_C_RDWR : in main()
190 if (!change && !force) { in main()
/NextBSD/usr.bin/brandelf/
HDbrandelf.c67 int ch, change = 0, force = 0, listed = 0; in main() local
72 if (change) in main()
92 change = 1; in main()
119 if ((fd = open(argv[0], change || force ? O_RDWR : O_RDONLY, 0)) < 0) { in main()
135 if (!change && !force) { in main()

12345678910>>...39