Searched refs:repo_fd (Results 1 – 5 of 5) sorted by relevance
/openbsd/usr.bin/cvs/ |
H A D | file.c | 245 cf->repo_fd = -1; in cvs_file_get_cf() 750 cf->repo_fd = open(cf->file_rpath, O_RDONLY); in cvs_file_classify() 751 if (cf->repo_fd != -1) { in cvs_file_classify() 752 cf->file_rcs = rcs_open(cf->file_rpath, cf->repo_fd, rflags); in cvs_file_classify() 759 cf->repo_fd = open(rcsfile, O_RDONLY); in cvs_file_classify() 760 if (cf->repo_fd != -1) { in cvs_file_classify() 764 cf->repo_fd, rflags); in cvs_file_classify() 993 if (cf->repo_fd != -1) in cvs_file_free() 994 (void)close(cf->repo_fd); in cvs_file_free()
|
H A D | import.c | 340 cf->repo_fd = open(cf->file_rpath, O_CREAT | O_RDONLY); in import_new() 341 if (cf->repo_fd == -1) in import_new() 344 cf->file_rcs = rcs_open(cf->file_rpath, cf->repo_fd, RCS_CREATE, in import_new()
|
H A D | file.h | 46 int repo_fd; member
|
H A D | add.c | 259 cf->repo_fd = open(cf->file_rpath, O_CREAT|O_RDONLY); in cvs_add_tobranch() 260 if (cf->repo_fd == -1) in cvs_add_tobranch() 264 cf->file_rcs = rcs_open(cf->file_rpath, cf->repo_fd, in cvs_add_tobranch()
|
H A D | commit.c | 539 cf->repo_fd = open(cf->file_rpath, openflags); in cvs_commit_local() 540 if (cf->repo_fd == -1) in cvs_commit_local() 543 cf->file_rcs = rcs_open(cf->file_rpath, cf->repo_fd, in cvs_commit_local()
|