cwd               106 global/global.c const char *cwd;			/**< current directory	*/
cwd               225 global/global.c 	if (normalize(file, get_root_with_slash(), cwd, path, sizeof(path)) == NULL)
cwd               614 global/global.c 		cwd = get_cwd();
cwd               644 global/global.c 				if (rel2abs(single_update, cwd, regular_path_name, sizeof(regular_path_name)) == NULL)
cwd               700 global/global.c 		if (strcmp(root, cwd) != 0) {
cwd               701 global/global.c 			const char *p = cwd + strlen(root);
cwd               711 global/global.c 		fprintf(stderr, "cwd=%s\n", cwd);
cwd               775 global/global.c 		parsefile(argv, cwd, root, dbpath, db);
cwd               781 global/global.c 		tagsearch(av, cwd, root, dbpath, db);
cwd              1107 global/global.c 	cv = convert_open(type, format, root, cwd, dbpath, stdout, NOTAGS);
cwd              1216 global/global.c 	cv = convert_open(type, format, root, cwd, dbpath, stdout, NOTAGS);
cwd              1233 global/global.c 			if (normalize(path, get_root_with_slash(), cwd, buf, sizeof(buf)) == NULL) {
cwd              1325 global/global.c 	cv = convert_open(type, format, root, cwd, dbpath, stdout, GPATH);
cwd              1439 global/global.c parsefile(char *const *argv, const char *cwd, const char *root, const char *dbpath, int db)
cwd              1472 global/global.c 	data.cv = convert_open(type, format, root, cwd, dbpath, stdout, db);
cwd              1499 global/global.c 		if (normalize(av, get_root_with_slash(), cwd, path, sizeof(path)) == NULL) {
cwd              1570 global/global.c search(const char *pattern, const char *root, const char *cwd, const char *dbpath, int db)
cwd              1589 global/global.c 	cv = convert_open(type, format, root, cwd, dbpath, stdout, db);
cwd              1795 global/global.c tagsearch(const char *pattern, const char *cwd, const char *root, const char *dbpath, int db)
cwd              1803 global/global.c 	count = search(pattern, root, cwd, dbpath, db);
cwd              1830 global/global.c 			count = search(pattern, libdir, cwd, libdbpath, db);
cwd                73 gozilla/gozilla.c const char *cwd, *root, *dbpath;
cwd               301 gozilla/gozilla.c 				cwd = get_cwd();
cwd               319 gozilla/gozilla.c 				char cwd[MAXPATHLEN];
cwd               322 gozilla/gozilla.c 				if (getcwd(cwd, sizeof(cwd)) == NULL)
cwd               324 gozilla/gozilla.c 				if (rel2abs(argument, cwd, result, sizeof(result)) == NULL)
cwd               403 gozilla/gozilla.c 	p = normalize(file, get_root_with_slash(), cwd, buf, sizeof(buf));
cwd               172 gtags/gtags.c  	char cwd[MAXPATHLEN];
cwd               367 gtags/gtags.c  	if (!getcwd(cwd, MAXPATHLEN))
cwd               369 gtags/gtags.c  	canonpath(cwd);
cwd               389 gtags/gtags.c  			char *q = locatestring(p, cwd, LOCATEFLAG);
cwd               416 gtags/gtags.c  		else if (!gtagsexist(cwd, dbpath, MAXPATHLEN, vflag))
cwd               417 gtags/gtags.c  			strlimcpy(dbpath, cwd, sizeof(dbpath));
cwd               422 gtags/gtags.c  			char *objdir = getobjdir(cwd, vflag);
cwd               428 gtags/gtags.c  			strlimcpy(dbpath, cwd, sizeof(dbpath));
cwd               473 gtags/gtags.c  		GTOP *gtop = gtags_open(dbpath, cwd, GTAGS, GTAGS_MODIFY, 0);
cwd               482 gtags/gtags.c  		(void)incremental(dbpath, cwd);
cwd               489 gtags/gtags.c  	createtags(dbpath, cwd);
cwd               188 libutil/abs2rel.c normalize(const char *path, const char *root, const char *cwd, char *result, const int size)
cwd               199 libutil/abs2rel.c 		if (rel2abs(result, cwd, abs, sizeof(abs)) == NULL)
cwd               192 libutil/getdbpath.c static char cwd[MAXPATHLEN];
cwd               213 libutil/getdbpath.c 	if (!getcwd(cwd, MAXPATHLEN)) {
cwd               217 libutil/getdbpath.c 	canonpath(cwd);
cwd               264 libutil/getdbpath.c 		strlimcpy(root, cwd, MAXPATHLEN);
cwd               347 libutil/getdbpath.c 	return (const char *)cwd;
cwd               197 libutil/pathconvert.c convert_open(int type, int format, const char *root, const char *cwd, const char *dbpath, FILE *op, int db)
cwd               210 libutil/pathconvert.c 	if (strlen(cwd) > MAXPATHLEN)
cwd               212 libutil/pathconvert.c 	strlimcpy(cv->basedir, cwd, sizeof(cv->basedir));