Home
last modified time | relevance | path

Searched refs:ts_user (Results 1 – 17 of 17) sorted by relevance

/netbsd/src/external/gpl2/xcvs/dist/src/
Dclassify.c58 if (vers->ts_user == NULL) in Classify_File()
90 if (vers->ts_user == NULL) in Classify_File()
99 else if (!pipeout && vers->ts_user && No_Difference (finfo, vers)) in Classify_File()
115 if (vers->ts_user == NULL) in Classify_File()
176 if (vers->ts_user == NULL) in Classify_File()
233 if (vers->ts_user == NULL) in Classify_File()
241 else if (strcmp (vers->ts_user, vers->ts_rcs) in Classify_File()
269 if (vers->ts_user == NULL) in Classify_File()
289 else if (!strcmp (vers->ts_user, in Classify_File()
359 if (vers->ts_user == NULL) in Classify_File()
[all …]
Dvers_ts.c273 vers_ts->ts_user = time_stamp (finfo->file); in Version_TS()
286 #define mark_lost(V) ((V)->ts_user = 0)
287 #define mark_unchanged(V) ((V)->ts_user = xstrdup ((V)->ts_rcs))
324 vers_ts->ts_user = xstrdup (""); in time_stamp_server()
331 vers_ts->ts_user = xstrdup ("Is-modified"); in time_stamp_server()
344 vers_ts->ts_user = xmalloc (25); in time_stamp_server()
357 (void) strcpy (vers_ts->ts_user, cp); in time_stamp_server()
452 if ((*versp)->ts_user) in freevers_ts()
453 free ((*versp)->ts_user); in freevers_ts()
Dupdate.c803 if (ignlist && (status != T_UNKNOWN || vers->ts_user == NULL)) in update_fileproc()
1190 if (vers->ts_user == NULL) in scratch_file()
1209 if (vers->ts_user != NULL) in scratch_file()
1211 free (vers->ts_user); in scratch_file()
1212 vers->ts_user = NULL; in scratch_file()
1404 if (xvers_ts->ts_user != NULL) in checkout_file()
1405 free (xvers_ts->ts_user); in checkout_file()
1406 xvers_ts->ts_user = xstrdup (xvers_ts->ts_rcs); in checkout_file()
1421 if (server_active && xvers_ts->ts_user == NULL) in checkout_file()
1437 xvers_ts->ts_user, xvers_ts->options, in checkout_file()
[all …]
Dno_diff.c38 if (vers->ts_user != NULL in No_Difference()
39 && strcmp (vers->ts_user, "Is-modified") == 0) in No_Difference()
Dadd.c358 if (vers->ts_user == NULL) in add()
477 if (vers->ts_user == NULL) in add()
556 timestamp ? timestamp : vers->ts_user, in add()
560 if (server_active && vers->ts_user == NULL) in add()
607 if (vers->ts_user == NULL) in add()
Ddiff.c669 if (vers->ts_user == NULL) in diff_fileproc()
674 else if (!strcmp (vers->ts_user, vers->ts_rcs)) in diff_fileproc()
1174 && vers->ts_user != NULL in diff_file_nodiff()
1175 && strcmp (vers->ts_rcs, vers->ts_user) == 0 in diff_file_nodiff()
Dcheckin.c117 Register (finfo->entries, finfo->file, vers->vn_rcs, vers->ts_user, in Checkin()
Dcommit.c245 if (vers->ts_user == NULL) in find_fileproc()
255 if (vers->ts_user != NULL) in find_fileproc()
268 if (vers->ts_user == NULL) in find_fileproc()
283 else if (vers->ts_user == NULL) in find_fileproc()
291 && (args->force || strcmp (vers->ts_user, vers->ts_rcs) != 0)) in find_fileproc()
919 if (vers->ts_user != NULL) in check_fileproc()
Dremove.c178 if (vers->ts_user != NULL) in remove_fileproc()
Dstatus.c209 if (vers->ts_user == NULL) in status_fileproc()
Dcvs.h758 char *ts_user; member
Dclient.c4475 if (vers->ts_user && !strcmp (vers->ts_conflict, vers->ts_user)) in send_fileproc()
4531 if (!vers->ts_user) in send_fileproc()
4542 ? vers->ts_conflict : vers->ts_rcs, vers->ts_user) in send_fileproc()
Dcheckout.c1121 if (vers->ts_user == NULL) in checkout_proc()
Dserver.c5090 if (vers->ts_user == NULL) in server_updated()
5261 if (vers && vers->ts_user != NULL) in server_updated()
5263 free (vers->ts_user); in server_updated()
5264 vers->ts_user = NULL; in server_updated()
DChangeLog-972501 * cvs.h (struct vers_ts): Adjust comment regarding ts_user.
2506 "M" or "D", just copy that over into ts_user.
2509 * no_diff.c (No_Difference): If ts_user is "M", conclude the files
DChangeLog-96362 DIFF_SAME if empty_file is DIFF_DIFFERENT and ts_user is not
1565 server_scratch_entry_only if ts_user is NULL.
3311 * commit.c (find_fileproc): If vn_user is NULL and ts_user is not,
DChangeLog-93953205 * diff.c (diff_fileproc): if ts_user and ts_rcs match, then the
3726 time_stamp_server to set ts_user.