Lines Matching refs:current_cvsroot
166 p = repository + strlen(current_cvsroot->cr_dir) + 1; in client_check_directory()
211 switch (current_cvsroot->cr_method) { in cvs_client_connect_to_server()
244 if (current_cvsroot->cr_user != NULL) { in cvs_client_connect_to_server()
246 argv[argc++] = current_cvsroot->cr_user; in cvs_client_connect_to_server()
250 argv[argc++] = current_cvsroot->cr_host; in cvs_client_connect_to_server()
256 current_cvsroot->cr_host); in cvs_client_connect_to_server()
267 if ((current_cvsroot->cr_srvin = fdopen(ifd[1], "w")) == NULL) in cvs_client_connect_to_server()
269 if ((current_cvsroot->cr_srvout = fdopen(ofd[0], "r")) == NULL) in cvs_client_connect_to_server()
272 setvbuf(current_cvsroot->cr_srvin, NULL,_IOLBF, 0); in cvs_client_connect_to_server()
273 setvbuf(current_cvsroot->cr_srvout, NULL, _IOLBF, 0); in cvs_client_connect_to_server()
278 cvs_client_send_request("Root %s", current_cvsroot->cr_dir); in cvs_client_connect_to_server()