Searched refs:repository (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-9.3-release/contrib/cvs/src/
H A Drepos.c18 /* Determine the name of the RCS repository for directory DIR in the
53 * The assumption here is that the repository is always contained in the
110 * If this is a relative repository pathname, turn it into an absolute
123 error (1, 0, "illegal repository setting");
129 error (1, 0, "illegal source repository");
146 * Return a pointer to the repository name relative to CVSROOT from a
147 * possibly fully qualified repository
150 Short_Repository (repository)
151 const char *repository;
153 if (repository
[all...]
H A Dedit.h20 extern void cvs_notify_check PROTO ((const char *repository,
31 const char *repository));
H A Dcheckout.c15 * "checkout" creates a "version" of an RCS repository. This version is owned
25 * exist in the repository.
35 * repository. The second contains one line for each registered file,
38 * edited by the user, if necessary (when the repository is moved, e.g.)
62 "\t-T\tCreate Template file from local repository for remote commit.\n",
276 error(1, 0, "Cannot check out files into the repository itself");
538 char *repository; member in struct:dir_to_build
555 build_one_dir (repository, dirpath, sticky)
556 char *repository;
570 if (!isdir (repository))
620 char *repository; local
1196 char *repository; local
[all...]
H A Dlock.c23 the consequences of hacking CVS to read a repository without creating
94 char *repository; member in struct:lock
112 static int readers_exist PROTO((char *repository));
120 static void lock_wait PROTO((char *repository));
121 static void lock_obtained PROTO((char *repository));
141 repository field is NULL if there is no such lock. */
152 the malloc'd name of the repository directory which we have locked.
161 static char *lock_name PROTO ((const char *repository, const char *name));
164 repository REPOSITORY and the lock file name within that directory
170 lock_name (repository, nam
[all...]
H A Dserver.h84 * repository.
87 PROTO((const char *file, const char *update_dir, const char *repository));
90 PROTO((const char *file, const char *update_dir, const char *repository,
99 user version to repository version, SERVER_RCS_DIFF, yes, like
127 const char *repository));
130 const char *repository));
134 const char *repository, const char *tag,
140 PROTO((const char *file, const char *update_dir, const char *repository,
H A Dupdate.h21 int xpull_template, char *repository));
H A Drecurse.c30 static char *repository = NULL; variable
45 char *repository; /* Keep track of repository for rtag */ member in struct:recursion_frame
92 directory when we are called must be the repository and
93 recursion proceeds according to what exists in the repository.
99 repository which does not correspond to the working directory
106 directory *or* it exists in the repository. If a directory
116 /* Keep track of the repository string. This is only for the remote mode,
118 * used to locate the repository. Things would break when xgetwd() was
119 * used with a symlinked repository becaus
[all...]
H A Dannotate.c176 char *repository; local
181 repository = xmalloc (strlen (current_parsed_root->directory) + strlen (argv[0])
183 (void) sprintf (repository, "%s/%s", current_parsed_root->directory, argv[0]);
198 (void) strcat (repository, "/");
199 (void) strcat (repository, mfile);
206 path = xmalloc (strlen (repository) + strlen (mfile) + 5);
207 (void) sprintf (path, "%s/%s", repository, mfile);
210 /* directory means repository gets the dir tacked on */
211 (void) strcpy (repository, path);
225 /* cd to the starting repository */
[all...]
H A Dadd.c15 * Adds a file or directory to the RCS source repository. For a file,
17 * directory, and really added to the repository when it is committed.
19 * repository and a CVS directory is generated within the directory.
38 static int build_entry PROTO((const char *repository, const char *user,
59 char *repository; local
192 repository = Name_Repository (NULL, NULL);
193 send_a_repository ("", repository, "");
194 free (repository);
235 /* find the repository associated with our current dir */
236 repository
739 const char *repository = finfo->repository; local
[all...]
H A Dcreate_adm.c15 * Creates a CVS administration directory based on the argument repository; the
30 Create_Admin (dir, update_dir, repository, tag, date, nonbranch, warn,
34 const char *repository;
50 dir, update_dir, repository, tag ? tag : "",
102 reposcopy = xstrdup (repository);
105 /* The top level of the repository is a special case -- we need to
169 WriteTag (dir, tag, date, nonbranch, update_dir, repository);
174 server_template (update_dir, repository);
H A Dlogmsg.c23 static int logfile_write PROTO((const char *repository, const char *filter,
26 static int rcsinfo_proc PROTO((const char *repository, const char *template));
28 static int update_logfile_proc PROTO((const char *repository,
31 static int editinfo_proc PROTO((const char *repository, const char *template));
32 static int verifymsg_proc PROTO((const char *repository, const char *script));
187 * If REPOSITORY is non-NULL, process rcsinfo for that repository; if it
192 do_editor (dir, messagep, repository, changes)
195 const char *repository;
206 assert (!current_parsed_root->isremote != !repository);
235 if (repository !
[all...]
H A Dfind_names.c16 * repository
21 * repository (and optionally the attic)
56 /* Find files in the repository and/or working directory. On error,
62 Find_Names (repository, which, aflag, optentries)
63 char *repository;
92 if ((which & W_REPOS) && repository && !isreadable (CVSADM_ENTSTAT))
94 /* search the repository */
95 if (find_rcs (repository, files) != 0)
97 error (0, errno, "cannot open directory %s", repository);
105 dir = xmalloc (strlen (repository)
[all...]
H A Dimport.c14 * the CVS source repository. The CVS vendor branch support is utilized.
17 * repository Where the source belongs relative to the CVSROOT
46 static char *repository; variable
54 " [-W spec] repository vendor-tag release-tags...\n",
201 repository = xmalloc (strlen (current_parsed_root->directory)
204 (void) sprintf (repository, "%s/%s", current_parsed_root->directory, argv[0]);
212 error (1, 0, "directory %s not relative within the repository",
254 current_parsed_root->isremote ? (char *) NULL : repository,
257 do_verify (&message, repository);
299 client_import_setup (repository);
[all...]
H A Dtag.c33 static int pretag_proc PROTO((const char *repository, const char *filter));
265 /* XXX last arg should be repository, but doesn't make sense here */
306 char *repository; local
311 repository = xmalloc (strlen (current_parsed_root->directory) + strlen (argv[0])
313 (void) sprintf (repository, "%s/%s", current_parsed_root->directory, argv[0]);
328 (void) strcat (repository, "/");
329 (void) strcat (repository, mfile);
336 path = xmalloc (strlen (repository) + strlen (mfile) + 5);
337 (void) sprintf (path, "%s/%s", repository, mfile);
340 /* directory means repository get
1410 CVS_LOCK_READ, NULL, 1, repository); local
[all...]
H A Dcommit.c15 * "commit" commits the present version to the RCS repository, AFTER
39 static int checkaddfile PROTO((const char *file, const char *repository,
51 const char *repository,
58 const char *repository));
60 static int precommit_proc PROTO((const char *repository, const char *filter));
133 the repository (pointer into storage managed by the recursion
135 const char *repository; member in struct:find_data
145 const char *repository,
150 find_dirent_proc (callerdat, dir, repository, update_dir, entries)
153 const char *repository;
[all...]
H A Dparseinfo.c32 Parse_Info (infofile, repository, callproc, all)
34 const char *repository;
51 assert (repository);
77 /* strip off the CVSROOT if repository was absolute */
78 srepos = Short_Repository (repository);
164 err += callproc (repository, expanded_value);
176 /* see if the repository matched this regular expression */
189 err += callproc (repository, expanded_value);
206 err += callproc (repository, expanded_value);
337 repository ca
[all...]
H A Dclient.h216 extern void client_import_setup PROTO((char *repository));
219 int targc, char *targv[], char *repository, int all_files_binary,
H A Dcvs.h169 per-directory information in the repository. It must be the same as
182 * entire source repository beginning at $CVSROOT.
210 otherwise they go in the regular repository directories. The whole
275 #define CVSREADONLYFS_ENV "CVSREADONLYFS" /* repository is read-only */
292 #define CVSUMASK_ENV "CVSUMASK" /* Effective umask for repository */
359 #define W_REPOS 0x02 /* look for files in the repository */
457 List *Find_Directories PROTO((char *repository, int which, List *entries));
471 const char *Short_Repository PROTO((const char *repository));
472 void Sanitize_Repository_Name PROTO((char *repository));
488 typedef int (*CALLPROC) PROTO((const char *repository, cons
543 const char *repository; member in struct:file_info
[all...]
H A Dpatch.c293 char *repository; local
296 repository = xmalloc (strlen (current_parsed_root->directory)
299 (void)sprintf (repository, "%s/%s",
315 (void)strcat (repository, "/");
316 (void)strcat (repository, mfile);
323 path = xmalloc (strlen (repository) + strlen (mfile) + 2);
324 (void)sprintf (path, "%s/%s", repository, mfile);
327 /* directory means repository gets the dir tacked on */
328 (void)strcpy (repository, path);
342 /* cd to the starting repository */
[all...]
H A Dcheckin.c132 finfo->file, finfo->repository);
184 server_checked_in (finfo->file, finfo->update_dir, finfo->repository);
H A Dno_diff.c73 (finfo->file, finfo->update_dir, finfo->repository, SERVER_UPDATED);
/freebsd-9.3-release/contrib/cvs/contrib/
H A Drcs-to-cvs.sh24 # The repository is the directory where the sources should be deposited.
27 # identical directory structure exists in the repository directory. It
41 usage="Usage: rcs-to-cvs [-v] [-m message] [-f message_file] repository"
78 repository=$1
97 update_dir=${CVSROOT}/${repository}
115 echo "Updating ${repository}/${name}"
119 echo "WARNING: Creating new directory ${repository}/${name}"
132 $0 -v -f $message_file "${repository}/${name}"
134 $0 -f $message_file "${repository}/${name}"
163 if [ ! -f "$file" ]; then # If not exists in repository
[all...]
H A Drcs2log.sh17 # Generate a change log prefix from RCS files (perhaps in the CVS repository)
261 # If CVS is in use, examine its repository, not the normal RCS files.
265 repository=
268 repository=`sed 1q <CVS/Repository` || exit
275 # remote repository
276 pository=`expr "X$repository" : '.*:\(/.*\)'`;;
278 # local repository
279 case $repository in
281 *) repository=${CVSROOT?}/$repository;;
[all...]
/freebsd-9.3-release/sys/dev/sym/
H A DREADME.sym64 the FreeBSD repository. It described how to install the driver,
70 I haven't removed this README file from the repository since
/freebsd-9.3-release/contrib/gcc/cp/
H A Drepo.c1 /* Code to maintain a C++ template repository.
164 So, we have to reread the repository file. */
201 error ("mysterious repository information in %s", repo_name);
215 error ("can't create repository information file %qs", repo_name);
273 because it will be emitted elsewhere. Returns 1 if the repository
275 unit, or 2 if the repository file is not in use. */
285 /* When not using the repository, emit everything. */
289 /* Only template instantiations are managed by the repository. This
292 the repository. */
314 /* For constructors and destructors, the repository contain
[all...]

Completed in 106 milliseconds

12