diff -ruN dpkg-1.10.10.org/archtable dpkg-1.10.10.0lib641-dep64/archtable
--- dpkg-1.10.10.org/archtable	2003-04-15 12:34:28.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/archtable	2003-07-23 05:48:05.000000000 -0400
@@ -58,3 +58,5 @@
 s390x-linux-gnu		s390x		s390x
 s390x-ibm-linux-gnu	s390x		s390x
 s390x-unknown-linux-gnu	s390x		s390x
+amd64-linux-gnu		i386		i486
+x86_64-linux-gnu	i386		i486
diff -ruN dpkg-1.10.10.org/config.guess dpkg-1.10.10.0lib641-dep64/config.guess
--- dpkg-1.10.10.org/config.guess	2003-04-15 02:09:21.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/config.guess	2003-05-21 13:05:20.000000000 -0400
@@ -3,7 +3,7 @@
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
 #   2000, 2001, 2002, 2003 Free Software Foundation, Inc.
 
-timestamp='2003-01-10'
+timestamp='2003-05-19'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -235,72 +235,51 @@
     *:OpenBSD:*:*)
 	echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE}
 	exit 0 ;;
-    *:MicroBSD:*:*)
-	echo ${UNAME_MACHINE}-unknown-microbsd${UNAME_RELEASE}
-	exit 0 ;;
     alpha:OSF1:*:*)
 	if test $UNAME_RELEASE = "V4.0"; then
 		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
 	fi
+	# According to Compaq, /usr/sbin/psrinfo has been available on
+	# OSF/1 and Tru64 systems produced since 1995.  I hope that
+	# covers most systems running today.  This code pipes the CPU
+	# types through head -n 1, so we only detect the type of CPU 0.
+	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
+	case "$ALPHA_CPU_TYPE" in
+	    "EV4 (21064)")
+		UNAME_MACHINE="alpha" ;;
+	    "EV4.5 (21064)")
+		UNAME_MACHINE="alpha" ;;
+	    "LCA4 (21066/21068)")
+		UNAME_MACHINE="alpha" ;;
+	    "EV5 (21164)")
+		UNAME_MACHINE="alphaev5" ;;
+	    "EV5.6 (21164A)")
+		UNAME_MACHINE="alphaev56" ;;
+	    "EV5.6 (21164PC)")
+		UNAME_MACHINE="alphapca56" ;;
+	    "EV5.7 (21164PC)")
+		UNAME_MACHINE="alphapca57" ;;
+	    "EV6 (21264)")
+		UNAME_MACHINE="alphaev6" ;;
+	    "EV6.7 (21264A)")
+		UNAME_MACHINE="alphaev67" ;;
+	    "EV6.8CB (21264C)")
+		UNAME_MACHINE="alphaev68" ;;
+	    "EV6.8AL (21264B)")
+		UNAME_MACHINE="alphaev68" ;;
+	    "EV6.8CX (21264D)")
+		UNAME_MACHINE="alphaev68" ;;
+	    "EV6.9A (21264/EV69A)")
+		UNAME_MACHINE="alphaev69" ;;
+	    "EV7 (21364)")
+		UNAME_MACHINE="alphaev7" ;;
+	    "EV7.9 (21364A)")
+		UNAME_MACHINE="alphaev79" ;;
+	esac
 	# A Vn.n version is a released version.
 	# A Tn.n version is a released field test version.
 	# A Xn.n version is an unreleased experimental baselevel.
 	# 1.2 uses "1.2" for uname -r.
-	eval $set_cc_for_build
-	cat <<EOF >$dummy.s
-	.data
-\$Lformat:
-	.byte 37,100,45,37,120,10,0	# "%d-%x\n"
-
-	.text
-	.globl main
-	.align 4
-	.ent main
-main:
-	.frame \$30,16,\$26,0
-	ldgp \$29,0(\$27)
-	.prologue 1
-	.long 0x47e03d80 # implver \$0
-	lda \$2,-1
-	.long 0x47e20c21 # amask \$2,\$1
-	lda \$16,\$Lformat
-	mov \$0,\$17
-	not \$1,\$18
-	jsr \$26,printf
-	ldgp \$29,0(\$26)
-	mov 0,\$16
-	jsr \$26,exit
-	.end main
-EOF
-	$CC_FOR_BUILD -o $dummy $dummy.s 2>/dev/null
-	if test "$?" = 0 ; then
-		case `$dummy` in
-			0-0)
-				UNAME_MACHINE="alpha"
-				;;
-			1-0)
-				UNAME_MACHINE="alphaev5"
-				;;
-			1-1)
-				UNAME_MACHINE="alphaev56"
-				;;
-			1-101)
-				UNAME_MACHINE="alphapca56"
-				;;
-			2-303)
-				UNAME_MACHINE="alphaev6"
-				;;
-			2-307)
-				UNAME_MACHINE="alphaev67"
-				;;
-			2-1307)
-				UNAME_MACHINE="alphaev68"
-				;;
-			3-1307)
-				UNAME_MACHINE="alphaev7"
-				;;
-		esac
-	fi
 	echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
 	exit 0 ;;
     Alpha\ *:Windows_NT*:*)
@@ -765,7 +744,7 @@
     *:BSD/OS:*:*)
 	echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
 	exit 0 ;;
-    *:FreeBSD:*:*)
+    *:FreeBSD:*:*|*:GNU/FreeBSD:*:*)
 	# Determine whether the default compiler uses glibc.
 	eval $set_cc_for_build
 	sed 's/^	//' << EOF >$dummy.c
@@ -818,6 +797,9 @@
     arm*:Linux:*:*)
 	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit 0 ;;
+    cris:Linux:*:*)
+	echo cris-axis-linux-gnu
+	exit 0 ;;
     ia64:Linux:*:*)
 	echo ${UNAME_MACHINE}-unknown-linux-gnu
 	exit 0 ;;
@@ -1054,7 +1036,7 @@
 	exit 0 ;;
     M68*:*:R3V[567]*:*)
 	test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;;
-    3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0)
+    3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0)
 	OS_REL=''
 	test -r /etc/.relid \
 	&& OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
diff -ruN dpkg-1.10.10.org/config.sub dpkg-1.10.10.0lib641-dep64/config.sub
--- dpkg-1.10.10.org/config.sub	2003-04-15 02:09:21.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/config.sub	2003-05-21 13:05:20.000000000 -0400
@@ -3,7 +3,7 @@
 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
 #   2000, 2001, 2002, 2003 Free Software Foundation, Inc.
 
-timestamp='2003-01-03'
+timestamp='2003-05-09'
 
 # This file is (in principle) common to ALL GNU software.
 # The presence of a machine in this file suggests that SOME GNU software
@@ -257,7 +257,7 @@
 	| pdp10 | pdp11 | pj | pjl \
 	| powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
 	| pyramid \
-	| sh | sh[1234] | sh3e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
+	| sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \
 	| sh64 | sh64le \
 	| sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \
 	| strongarm \
@@ -296,7 +296,7 @@
 	| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
 	| avr-* \
 	| bs2000-* \
-	| c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* \
+	| c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \
 	| clipper-* | cydra-* \
 	| d10v-* | d30v-* | dlx-* \
 	| elxsi-* \
@@ -329,11 +329,13 @@
 	| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
 	| pyramid-* \
 	| romp-* | rs6000-* \
-	| sh-* | sh[1234]-* | sh3e-* | sh[34]eb-* | shbe-* \
+	| sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \
 	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
 	| sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \
 	| sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \
-	| tahoe-* | thumb-* | tic30-* | tic4x-* | tic54x-* | tic80-* | tron-* \
+	| tahoe-* | thumb-* \
+	| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
+	| tron-* \
 	| v850-* | v850e-* | vax-* \
 	| we32k-* \
 	| x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \
@@ -371,6 +373,9 @@
 		basic_machine=a29k-none
 		os=-bsd
 		;;
+	amd64)
+		basic_machine=x86_64-pc
+		;;
 	amdahl)
 		basic_machine=580-amdahl
 		os=-sysv
@@ -925,6 +930,14 @@
 		basic_machine=tic54x-unknown
 		os=-coff
 		;;
+	tic55x | c55x*)
+		basic_machine=tic55x-unknown
+		os=-coff
+		;;
+	tic6x | c6x*)
+		basic_machine=tic6x-unknown
+		os=-coff
+		;;
 	tx39)
 		basic_machine=mipstx39-unknown
 		;;
@@ -1027,7 +1040,7 @@
 	we32k)
 		basic_machine=we32k-att
 		;;
-	sh3 | sh4 | sh3eb | sh4eb | sh[1234]le | sh3ele)
+	sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele)
 		basic_machine=sh-unknown
 		;;
 	sh64)
@@ -1118,7 +1131,7 @@
 	      | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \
 	      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
 	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
-	      | -powermax* | -dnix* | -microbsd*)
+	      | -powermax* | -dnix*)
 	# Remember, each alternative MUST END IN *, to match a version number.
 		;;
 	-qnx*)
@@ -1227,6 +1240,12 @@
 	-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*)
 		os=-mint
 		;;
+	-aros*)
+		os=-aros
+		;;
+	-kaos*)
+		os=-kaos
+		;;
 	-none)
 		;;
 	*)
diff -ruN dpkg-1.10.10.org/DEBIAN/conffiles dpkg-1.10.10.0lib641-dep64/DEBIAN/conffiles
--- dpkg-1.10.10.org/DEBIAN/conffiles	1969-12-31 19:00:00.000000000 -0500
+++ dpkg-1.10.10.0lib641-dep64/DEBIAN/conffiles	2001-07-14 18:46:54.000000000 -0400
@@ -0,0 +1 @@
+/etc/dpkg/dselect.cfg
diff -ruN dpkg-1.10.10.org/DEBIAN/control dpkg-1.10.10.0lib641-dep64/DEBIAN/control
--- dpkg-1.10.10.org/DEBIAN/control	1969-12-31 19:00:00.000000000 -0500
+++ dpkg-1.10.10.0lib641-dep64/DEBIAN/control	2003-07-12 15:41:52.000000000 -0400
@@ -0,0 +1,15 @@
+Package: dselect
+Version: 1.10.10.0lib641
+Section: base
+Priority: required
+Architecture: amd64
+Depends: lib64c6 (>= 2.3.2-1), lib64gcc1 (>= 1:3.3-0pre9), lib64stdc++5 (>= 1:3.3-0pre9)
+Replaces: dpkg (<< 1.10.3)
+Installed-Size: 536
+Origin: debian
+Maintainer: Dpkg Development <debian-dpkg@lists.debian.org>
+Bugs: debbugs://bugs.debian.org
+Source: dpkg
+Description: a user tool to manage Debian packages
+ dselect is the primary user interface for installing, removing and
+ managing Debian packages. It is a front-end to dpkg.
diff -ruN dpkg-1.10.10.org/debian/changelog dpkg-1.10.10.0lib641-dep64/debian/changelog
--- dpkg-1.10.10.org/debian/changelog	2003-04-26 16:11:53.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/debian/changelog	2003-07-23 05:46:44.000000000 -0400
@@ -1,3 +1,16 @@
+dpkg (1.10.10.0lib641-dep64) unstable; urgency=low
+
+  * removed amd64 architecture, using i386.
+  * added Depends: {64} for 64bit packages.
+
+ -- Bart Trojanowski <bart@jukie.net>  Wed, 23 Jul 2003 05:44:53 -0400
+
+dpkg (1.10.10.0lib641) unstable; urgency=low
+
+  * lib64 support added.
+
+ -- Gerhard Tonn <gt@debian.org>  Thu,  9 Jun 2003 15:10:24 +0200
+
 dpkg (1.10.10) unstable; urgency=low
 
   * Update archtable for hurd.  Closes: #187509.
diff -ruN dpkg-1.10.10.org/debian/control dpkg-1.10.10.0lib641-dep64/debian/control
--- dpkg-1.10.10.org/debian/control	2003-04-26 16:10:12.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/debian/control	2003-07-24 10:21:54.000000000 -0400
@@ -12,6 +12,7 @@
 Package: dpkg
 Architecture: any
 Essential: yes
+Depends: ${shlibs:Depends}
 Pre-Depends: dselect, ${shlibs:Pre-Depends}
 Conflicts: sysvinit (<< 2.82-1), dpkg-iasearch (<< 0.11), dpkg-static, dpkg-dev (<< 1.9)
 Replaces: dpkg-doc-ja, dpkg-static, manpages-de (<= 0.4-3)
@@ -29,6 +30,7 @@
 Package: dpkg-static
 Architecture: any
 Priority: optional
+Depends: ${shlibs:Depends}
 Pre-Depends: dselect, ${shlibs:Pre-Depends}
 Replaces: dpkg-doc-ja, dpkg, manpages-de (<= 0.4-3)
 Conflicts: sysvinit (<< 2.82-1), dpkg-iasearch (<< 0.11), dpkg, dpkg-dev (<< 1.9)
diff -ruN dpkg-1.10.10.org/debian/dselect.substvars dpkg-1.10.10.0lib641-dep64/debian/dselect.substvars
--- dpkg-1.10.10.org/debian/dselect.substvars	1969-12-31 19:00:00.000000000 -0500
+++ dpkg-1.10.10.0lib641-dep64/debian/dselect.substvars	2003-07-24 15:51:02.000000000 -0400
@@ -0,0 +1 @@
+shlibs:Depends={64}, lib64c6 (>= 2.3.2-1), lib64gcc1 (>= 1:3.3-1), lib64stdc++5 (>= 1:3.3-1)
diff -ruN dpkg-1.10.10.org/debian/rules dpkg-1.10.10.0lib641-dep64/debian/rules
--- dpkg-1.10.10.org/debian/rules	2003-04-26 16:10:12.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/debian/rules	2003-07-24 15:49:29.000000000 -0400
@@ -175,6 +175,7 @@
 		$(TMP_DPKG)/sbin/start-stop-daemon \
 		`test -z "$(static)" && echo $(TMP_DPKG)/usr/bin/dpkg $(TMP_DPKG)/usr/bin/md5sum $(TMP_DPKG)/usr/bin/dpkg-deb`
 
+
 binary-dpkg binary-dpkg-static: %: %-most
 	$(GENCONTROL) -Tdebian/dpkg$(static).substvars -pdpkg$(static) -P$(TMP_DPKG)
 	dpkg --build $(TMP_DPKG) ..
@@ -196,7 +197,7 @@
 	set -e ; for i in dpkg-name dpkg-source dpkg-genchanges dpkg-gencontrol \
 		dpkg-shlibdeps dpkg-buildpackage dpkg-distaddfile 822-date \
 		dpkg-scanpackages dpkg-scansources dpkg-architecture \
-		dpkg-parsechangelog dpkg-checkbuilddeps ; do \
+		dpkg-parsechangelog dpkg-checkbuilddeps dpkg-libinfo ; do \
 		mv $(INSTALL_TMP)/usr/bin/$$i $(TMP_DPKG_DEV)/usr/bin/ ; \
 	done
 	set -e ; for i in "" de fr ja sv ; do \
@@ -204,7 +205,7 @@
 		for m in dpkg-name.1 dpkg-source.1 822-date.1 dpkg-architecture.1 \
 			dpkg-buildpackage.1 dpkg-distaddfile.1 dpkg-genchanges.1 \
 			dpkg-gencontrol.1 dpkg-parsechangelog.1 dpkg-shlibdeps.1 \
-			dpkg-checkbuilddeps.1 ; do \
+			dpkg-checkbuilddeps.1 dpkg-libinfo.1 ; do \
 			if [ -e $(INSTALL_TMP)/usr/share/man/$$i/man1/$$m ] ; then \
 				mv $(INSTALL_TMP)/usr/share/man/$$i/man1/$$m $(TMP_DPKG_DEV)/usr/share/man/$$i/man1/$$m ; \
 			fi ; \
diff -ruN dpkg-1.10.10.org/include/dpkg-db.h dpkg-1.10.10.0lib641-dep64/include/dpkg-db.h
--- dpkg-1.10.10.org/include/dpkg-db.h	2002-05-06 12:18:15.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/include/dpkg-db.h	2003-07-23 15:08:54.000000000 -0400
@@ -196,7 +196,10 @@
   pdb_ignorefiles       =010  /* Ignore files info if we already have them             */
 };
 
-const char *illegal_packagename(const char *p, const char **ep);
+#define illegal_packagename(p,ep) \
+({ /* fprintf (stderr, "%s (%s:%d)\n", __FUNCTION__, __FILE__, __LINE__); */ \
+   __illegal_packagename (p, ep); })
+const char *__illegal_packagename(const char *p, const char **ep);
 int parsedb(const char *filename, enum parsedbflags, struct pkginfo **donep,
             FILE *warnto, int *warncount);
 void copy_dependency_links(struct pkginfo *pkg,
@@ -204,6 +207,9 @@
                            struct dependency *newdepends,
                            int available);
 
+/*** from hwdep.c ***/
+void assert_hw_dependency (const char *hwdep);
+
 /*** from parsehelp.c ***/
 
 struct namevalue {
diff -ruN dpkg-1.10.10.org/lib/fields.c dpkg-1.10.10.0lib641-dep64/lib/fields.c
--- dpkg-1.10.10.org/lib/fields.c	2002-08-24 15:47:47.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/lib/fields.c	2003-07-24 15:48:48.000000000 -0400
@@ -274,13 +274,14 @@
   static int depnameused= 0, versionused= 0;
   static char *depname= NULL, *version= NULL;
 
-  struct dependency *dyp, **ldypp;
+  struct dependency *dyp=NULL, **ldypp, *lldypp=NULL;
   struct deppossi *dop, **ldopp;
 
   if (!*value) return; /* empty fields are ignored */
   p= value;
   ldypp= &pifp->depends; while (*ldypp) ldypp= &(*ldypp)->next;
   for (;;) { /* loop creating new struct dependency's */
+    lldypp = ldypp;
     dyp= nfmalloc(sizeof(struct dependency));
     dyp->up= NULL; /* Set this to zero for now, as we don't know what our real
                  * struct pkginfo address (in the database) is going to be yet.
@@ -304,21 +305,33 @@
       if (!*depname)
         parseerr(NULL,filename,lno, warnto,warncount,pigp,0, _("`%s' field, missing"
                  " package name, or garbage where package name expected"), fip->name);
+      /* {...} is a hardware dependency */
+      if (*depname == '{') {
+	/* test the hardware dependency */
+	assert_hw_dependency (depname);
+	/* skip over the comma after this dependency */
+	while (isspace(*p)) p++;
+        if (*p == ',') p++; 
+	/* fall back to the previous dependency list link */
+	ldypp = lldypp;
+	(*ldypp) = NULL;
+	break;
+      }
       emsg= illegal_packagename(depname,NULL);
       if (emsg) parseerr(NULL,filename,lno, warnto,warncount,pigp,0, _("`%s' field,"
-                         " invalid package name `%.255s': %s"),
-                         fip->name,depname,emsg);
+                       " invalid package name `%.255s': %s"),
+                       fip->name,depname,emsg);
       dop= nfmalloc(sizeof(struct deppossi));
       dop->up= dyp;
       dop->ed= findpackage(depname);
       dop->next= NULL; *ldopp= dop; ldopp= &dop->next;
       dop->nextrev= NULL; /* Don't link this (which is after all only `newpig' from */
       dop->backrev= NULL; /* the main parsing loop in parsedb) into the depended on
-                        * packages' lists yet.  This will be done later when we
-                        * install this (in parse.c).  For the moment we do the
-                        * `forward' links in deppossi (`ed') only, and the backward
-                        * links from the depended on packages to dop are left undone.
-                        */
+                      * packages' lists yet.  This will be done later when we
+                      * install this (in parse.c).  For the moment we do the
+                      * `forward' links in deppossi (`ed') only, and the backward
+                      * links from the depended on packages to dop are left undone.
+                      */
       dop->cyclebreak= 0;
 /* skip whitespace after packagename */
       while (isspace(*p)) p++;
diff -ruN dpkg-1.10.10.org/lib/hwdep.c dpkg-1.10.10.0lib641-dep64/lib/hwdep.c
--- dpkg-1.10.10.org/lib/hwdep.c	1969-12-31 19:00:00.000000000 -0500
+++ dpkg-1.10.10.0lib641-dep64/lib/hwdep.c	2003-07-23 17:36:26.000000000 -0400
@@ -0,0 +1,69 @@
+#include <stdio.h>
+#include <string.h>
+#include <sys/utsname.h>
+
+static inline hw_is_64bit (const char*);
+
+void
+assert_hw_dependency (const char *hwdep)
+{
+        struct utsname utsname;
+        int rc;
+
+        rc = uname (&utsname);
+        if (rc<0) {
+                perror ("uname");
+                exit (1);
+        }
+
+        if (0 == strcmp (hwdep, "{64}")) {
+
+                if (hw_is_64bit (utsname.machine)) {
+			fprintf (stderr, "<<<<< %s supports %s >>>>>\n",
+					utsname.machine, hwdep);
+                        return;         /* all good */
+		}
+
+                fprintf (stdout, "64bit is not supported on %s\n",
+                                utsname.machine);
+
+
+        } else {
+
+                fprintf (stderr, "%s: invalid hardware dependency tag\n",
+                                hwdep);
+
+        }
+}
+
+static inline
+hw_is_64bit (const char *machine)
+{
+        static const char * valid_list[] = {
+                "x86_64", "amd64", "x86-64",
+                "sparc64",
+                "s390x",
+                NULL };
+        const char **p;
+
+        p = valid_list;
+        while (*p) {
+                if (0 == strcmp (machine, *p))
+                        return 1;
+                p++;
+        }
+
+        return 0;
+}
+
+#if 0
+int main (int argc, char *argv[])
+{
+        if (argc < 2) return 1;
+
+        assert_hw_dependency (argv[1]);
+
+        return 0;
+}
+#endif
+
diff -ruN dpkg-1.10.10.org/lib/Makefile.in dpkg-1.10.10.0lib641-dep64/lib/Makefile.in
--- dpkg-1.10.10.org/lib/Makefile.in	2002-05-24 01:16:43.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/lib/Makefile.in	2003-07-23 15:05:20.000000000 -0400
@@ -9,7 +9,7 @@
 SOURCES		= compat.c database.c dbmodify.c dump.c ehandle.c fields.c \
 		    lock.c mlib.c myopt.c nfmalloc.c parse.c parsehelp.c \
 		    showcright.c showpkg.c tarfn.c varbuf.c vercmp.c md5.c \
-		    utils.c startup.c
+		    utils.c startup.c hwdep.c
 
 OBJECTS		= $(patsubst %.c, %.o, $(SOURCES))
 GENFILES	= $(OBJECTS) libdpkg.a
diff -ruN dpkg-1.10.10.org/lib/parsehelp.c dpkg-1.10.10.0lib641-dep64/lib/parsehelp.c
--- dpkg-1.10.10.org/lib/parsehelp.c	2002-08-29 15:39:07.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/lib/parsehelp.c	2003-07-23 13:44:26.000000000 -0400
@@ -105,7 +105,7 @@
   {  NULL                           }
 };
 
-const char *illegal_packagename(const char *p, const char **ep) {
+const char *__illegal_packagename(const char *p, const char **ep) {
   static const char alsoallowed[]= "-+._"; /* _ is deprecated */
   static char buf[150];
   int c;
diff -ruN dpkg-1.10.10.org/main/packages.c dpkg-1.10.10.0lib641-dep64/main/packages.c
--- dpkg-1.10.10.org/main/packages.c	2002-05-06 12:18:15.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/main/packages.c	2003-07-24 14:11:21.000000000 -0400
@@ -350,6 +350,9 @@
     debug(dbg_depcondetail,"  checking group ...");
     matched= 0; varbufreset(&oemsgs);
     found= 0; /* 0=none, 1=defer, 2=withwarning, 3=ok */
+    /* if dep->list is NULL skip to tne next dependency entry */
+    if (dep->list == NULL)
+      continue;
     for (possi= dep->list; found != 3 && possi; possi= possi->next) {
       debug(dbg_depcondetail,"    checking possibility  -> %s",possi->ed->name);
       if (possi->cyclebreak) {
diff -ruN dpkg-1.10.10.org/scripts/controllib.pl dpkg-1.10.10.0lib641-dep64/scripts/controllib.pl
--- dpkg-1.10.10.org/scripts/controllib.pl	2002-05-24 22:46:50.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/scripts/controllib.pl	2003-07-12 15:39:03.000000000 -0400
@@ -144,11 +144,25 @@
     open(CDATA,"< $controlfile") || &error("cannot read control file $controlfile: $!");
     $indices= &parsecdata('C',1,"control file $controlfile");
     $indices >= 2 || &error("control file must have at least one binary package part");
+    $lib64_arch=`dpkg-libinfo -qDEB_LIB64_ARCH`;
 
     for ($i=1;$i<$indices;$i++) {
         defined($fi{"C$i Package"}) ||
             &error("per-package paragraph $i in control info file is ".
                    "missing Package line");
+	if (defined($fi{"C$i Package.64"}) && $lib64_arch == 1) {
+	    if (defined($fi{"C$i Substvarname"})) {
+	        $substvar{$fi{"C$i Substvarname"}} = $fi{"C$i Package.64"};
+	    } else {
+	        $substvar{$fi{"C$i Package"}} = $fi{"C$i Package.64"};
+	    }
+	} else {
+	    if (defined($fi{"C$i Substvarname"})) {
+	        $substvar{$fi{"C$i Substvarname"}} = $fi{"C$i Package"};
+	    } else {
+	        $substvar{$fi{"C$i Package"}} = $fi{"C$i Package"};
+	    }
+	}
     }
 }
 
@@ -182,7 +196,10 @@
     # many=1: many paragraphs like in source control file
     # many=-1: single paragraph of control data optionally signed
     local ($index,$cf,$paraborder);
+    local ($pkg,$pkg64,$vold,$lib64_arch);
     $index=''; $cf=''; $paraborder=1;
+    $pkg=0; $pkg64=0;
+    $lib64_arch=`dpkg-libinfo -qDEB_LIB64_ARCH`;
     while (<CDATA>) {
         s/\s*\n$//;
 	next if (m/^$/ and $paraborder);
@@ -191,7 +208,8 @@
             $cf=$1; $v=$2;
             $cf= &capit($cf);
             $fi{"$source$index $cf"}= $v;
-            if (lc $cf eq 'package') { $p2i{"$source $v"}= $index; }
+            if (lc $cf eq 'package.64' && $lib64_arch == 1) { if ($pkg == 1) { $vold = $fi{"$source$index Package"}; delete $p2i{"$source $vold"}; } $p2i{"$source $v"}= $index; $pkg64 = 1;}
+            elsif (lc $cf eq 'package' && $pkg64 == 0) { $p2i{"$source $v"}= $index; $pkg = 1;}
         } elsif (m/^\s+\S/) {
             length($cf) || &syntax("continued value line not in field");
             $fi{"$source$index $cf"}.= "\n$_";
@@ -201,6 +219,7 @@
             $many= -2;
         } elsif (m/^$/) {
 	    $paraborder = 1;
+    	    $pkg=0; $pkg64=0;
             if ($many>0) {
                 $index++; $cf='';
             } elsif ($many == -2) {
diff -ruN dpkg-1.10.10.org/scripts/dpkg-architecture.pl dpkg-1.10.10.0lib641-dep64/scripts/dpkg-architecture.pl
--- dpkg-1.10.10.org/scripts/dpkg-architecture.pl	2003-04-15 12:34:28.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/scripts/dpkg-architecture.pl	2003-07-23 05:57:34.000000000 -0400
@@ -40,7 +40,7 @@
 #  1.0.7  -q should not imply -f, because this prevents setting
 #         make variables with non-standard names correctly.
 
-$version="1.0.0";
+$version="1.10.10";
 $0 = `basename $0`; chomp $0;
 
 $dpkglibdir="/usr/lib/dpkg";
@@ -69,7 +69,8 @@
 	    'freebsd-i386',	'i386-freebsd',
 	    'netbsd-i386',	'i386-netbsdelf-gnu',
 	    'darwin-powerpc',	'powerpc-darwin',
-	    'darwin-i386',	'i386-darwin');
+	    'darwin-i386',	'i386-darwin',
+	    'i386',		'x86_64-linux');
 
 sub usageversion {
     print STDERR
@@ -134,9 +135,13 @@
     &warn("Couldn't determine gcc system type, falling back to default (native compilation)");
     $gcc = '';
 } else {
-    $gcc =~ s!^.*gcc-lib/([^/]*)/(?:egcs-)?\d+(?:[.\da-z]*)/libgcc.*$!$1!s;
-    if (defined $1 and $1 ne '') {
-	$gcc = $1;
+    if ($gcc =~ m!^.*gcc-lib/([^/]*)/(?:egcs-)?\d+(?:[.\da-z]*)/(64/)?libgcc.*$!) {
+	# special hack for a biarch i386/x86_64 compiler
+	if (defined $1 and $1 eq 'i386-linux' and defined $2 and $2 eq '64/' ) {
+	   $gcc = 'x86_64-linux';
+	} elsif (defined $1 and $1 ne '') {
+	   $gcc = $1;
+	}
     } else {
 	&warn("Couldn't determine gcc system type, falling back to default (native compilation)");
 	$gcc = '';
diff -ruN dpkg-1.10.10.org/scripts/dpkg-genchanges.pl dpkg-1.10.10.0lib641-dep64/scripts/dpkg-genchanges.pl
--- dpkg-1.10.10.org/scripts/dpkg-genchanges.pl	2002-07-02 03:47:47.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/scripts/dpkg-genchanges.pl	2003-07-12 15:39:03.000000000 -0400
@@ -156,6 +156,8 @@
     close(FL);
 }
 
+$lib64_arch=`dpkg-libinfo -qDEB_LIB64_ARCH`;
+
 for $_ (keys %fi) {
     $v= $fi{$_};
     if (s/^C //) {
@@ -166,7 +168,10 @@
 	elsif (m/|^X[BS]+-|^Standards-Version$/i) { }
 	else { &unknown('general section of control info file'); }
     } elsif (s/^C(\d+) //) {
-	$i=$1; $p=$fi{"C$i Package"}; $a=$fi{"C$i Architecture"};
+	$i=$1; 
+	if (defined($fi{"C$i Package.64"}) && $lib64_arch==1) { $p=$fi{"C$i Package.64"}; }
+	else { $p=$fi{"C$i Package"}; }
+	$a=$fi{"C$i Architecture"};
 	if (!defined($p2f{$p}) && not $sourceonly) {
 	    if ($a eq 'any' || ($a eq 'all' && !$archspecific) ||
 		grep($_ eq $substvar{'Arch'}, split(/\s+/, $a))) {
@@ -200,7 +205,7 @@
 		    $v = '';
 		}
 		push(@archvalues,$v) unless !$v || $archadded{$v}++;
-	    } elsif (m/^(Package|Essential|Pre-Depends|Depends|Provides)$/ ||
+	    } elsif (m/^(Package|Package.64|Substvarname|Essential|Pre-Depends|Depends|Provides)$/ ||
 		     m/^(Recommends|Suggests|Enhances|Optional|Conflicts|Replaces)$/ ||
 		     m/^X[CS]+-/i) {
 	    } else {
diff -ruN dpkg-1.10.10.org/scripts/dpkg-gencontrol.pl dpkg-1.10.10.0lib641-dep64/scripts/dpkg-gencontrol.pl
--- dpkg-1.10.10.org/scripts/dpkg-gencontrol.pl	2002-05-24 23:04:04.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/scripts/dpkg-gencontrol.pl	2003-07-12 15:39:03.000000000 -0400
@@ -46,7 +46,7 @@
 }
 
 $i=100;grep($fieldimps{$_}=$i--,
-          qw(Package Version Section Priority Architecture Essential
+          qw(Package Package.64 Substvarname Version Section Priority Architecture Essential
              Pre-Depends Depends Recommends Suggests Enhances Optional 
 	     Conflicts Replaces Provides Installed-Size Origin Maintainer
 	     Bugs Source Description Build-Depends Build-Depends-Indep
@@ -96,6 +96,8 @@
     }
 }
 
+$lib64_arch=`dpkg-libinfo -qDEB_LIB64_ARCH`;
+
 &findarch;
 &parsechangelog;
 &parsecontrolfile;
@@ -124,9 +126,13 @@
         else { &unknown('general section of control info file'); }
     } elsif (s/^C$myindex //) {
 #print STDERR "P key >$_< value >$v<\n";
-        if (m/^(Package|Description|Essential|Pre-Depends|Depends)$/ ||
+        if (m/^(Description|Essential|Pre-Depends|Depends)$/ ||
             m/^(Recommends|Suggests|Enhances|Optional|Conflicts|Provides|Replaces)$/) {
             $f{$_}= $v;
+        } elsif (m/^Package$/) {
+           if (defined($fi{"C$myindex Package.64"}) && $lib64_arch==1) { $f{$_}= $fi{"C$myindex Package.64"}; }
+           else { $f{$_}= $v; }
+        } elsif (m/^Package.64$|^Substvarname$/) {
         } elsif (m/^Section$|^Priority$/) {
             $spvalue{$_}= $v;
         } elsif (m/^Architecture$/) {
diff -ruN dpkg-1.10.10.org/scripts/dpkg-libinfo.pl dpkg-1.10.10.0lib641-dep64/scripts/dpkg-libinfo.pl
--- dpkg-1.10.10.org/scripts/dpkg-libinfo.pl	1969-12-31 19:00:00.000000000 -0500
+++ dpkg-1.10.10.0lib641-dep64/scripts/dpkg-libinfo.pl	2003-07-23 05:57:47.000000000 -0400
@@ -0,0 +1,147 @@
+#! /usr/bin/perl
+#
+# dpkg-libinfo
+#
+# Copyright 2003 Gerhard Tonn <gt@debian.org>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+
+# History
+#  0.0.1  Initial release.
+
+$version="0.0.1";
+$0 = `basename $0`; chomp $0;
+
+$dpkglibdir="/usr/lib/dpkg";
+push(@INC,$dpkglibdir);
+require 'controllib.pl';
+
+%archtable=('i386',             'i386-linux',
+            'sparc',            'sparc-linux',
+            'sparc64',          'sparc64-linux',
+            'alpha',            'alpha-linux',
+            'm68k',             'm68k-linux',
+            'arm',              'arm-linux',
+            'powerpc',          'powerpc-linux',
+            'mips',             'mips-linux',
+            'mipsel',           'mipsel-linux',
+            'sh3',              'sh3-linux',
+            'sh4',              'sh4-linux',
+            'sh3eb',            'sh3eb-linux',
+            'sh4eb',            'sh4eb-linux',
+            'hppa',             'hppa-linux',
+            'hurd-i386',        'i386-gnu',
+            's390',             's390-linux',
+            's390x',            's390x-linux',
+            'ia64',             'ia64-linux',
+            'openbsd-i386',     'i386-openbsd',
+            'freebsd-i386',     'i386-freebsd',
+            'netbsd-i386',      'i386-netbsdelf-gnu',
+            'darwin-powerpc',   'powerpc-darwin',
+            'darwin-i386',      'i386-darwin',
+            'i386',		'x86_64-linux');
+
+sub usageversion {
+    print STDERR
+"Debian $0 $version.  Copyright (C) 2003 Gerhard Tonn.
+This is free software; see the GNU General Public Licence version 2
+or later for copying conditions.  There is NO warranty.
+
+Usage:
+  $0 [<option> ...] [<action>]
+Options:
+       -a<debian-arch>    set Debian architecture
+Actions:
+       -l                 list variables (default)
+       -q<variable>       prints only the value of <variable>.
+
+Known Debian Architectures are ".join(", ",keys %archtable)."
+";
+}
+
+$deb_host_arch = `dpkg-architecture -qDEB_HOST_ARCH`;
+chomp $deb_host_arch;
+
+$action='l';
+
+while (@ARGV) {
+    $_=shift(@ARGV);
+    if (m/^-a/) {
+        $req_host_arch = $';
+    } elsif (m/^-[lsu]$/) {
+	$action = $_;
+	$action =~ s/^-//;
+    } elsif (m/^-q/) {
+        $req_variable_to_print = $';
+        $action = 'q';
+    } else {
+	usageerr("unknown option \`$_'");
+    }
+}
+
+$deb_host_arch = $req_host_arch if $req_host_arch ne '';
+
+if ($deb_host_arch eq "amd64" || $deb_host_arch eq "s390x") {
+	$deb_libqual="64";
+	$deb_lib64_arch=1;
+} else {
+	$deb_libqual="";
+	$deb_lib64_arch=0;
+}
+$deb_libname="lib$deb_libqual";
+$deb_libdir="/usr/$deb_libname";
+
+@ordered = qw(DEB_LIBQUAL DEB_LIBNAME DEB_LIBDIR
+              DEB_LIB64_ARCH);
+
+$env{'DEB_LIBQUAL'}=$deb_libqual;
+$env{'DEB_LIBNAME'}=$deb_libname;
+$env{'DEB_LIBDIR'}=$deb_libdir;
+$env{'DEB_LIB64_ARCH'}=$deb_lib64_arch;
+
+if ($action eq 'l') {
+    foreach $k (@ordered) {
+	print "$k=$env{$k}\n";
+    }
+} elsif ($action eq 'q') {
+    if (exists $env{$req_variable_to_print}) {
+        print "$env{$req_variable_to_print}\n";
+    } else {
+        die "$req_variable_to_print is not a supported variable name";
+    }
+}
+
+__END__
+
+=head1 NAME
+
+dpkg-libinfo - determine the locations of libraries for package building
+
+=head1 SYNOPSIS
+
+dpkg-libinfo [options] [action]
+
+Valid options:
+B<-a>Debian-Architecture
+
+Valid actions:
+B<-l>, B<-q>Variable-Name Command
+
+=head1 DESCRIPTION
+
+dpkg-libinfo provides a facility to determine the locations of libraries
+for package building, i.e. /lib and /usr/lib or /lib64 and /usr/lib64,
+respectively.
+
diff -ruN dpkg-1.10.10.org/scripts/dpkg-shlibdeps.pl dpkg-1.10.10.0lib641-dep64/scripts/dpkg-shlibdeps.pl
--- dpkg-1.10.10.org/scripts/dpkg-shlibdeps.pl	2001-06-20 12:30:15.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/scripts/dpkg-shlibdeps.pl	2003-07-24 09:34:56.000000000 -0400
@@ -48,6 +48,8 @@
 
 $i=0; grep($depstrength{$_}= ++$i, @depfields);
 
+system ("echo @ARGV >> /tmp/foo");
+
 while (@ARGV) {
     $_=shift(@ARGV);
     if (m/^-T/) {
@@ -93,6 +95,17 @@
 
 for ($i=0;$i<=$#exec;$i++) {
     if (!isbin ($exec[$i])) { next; }
+
+    # test for 64bit binaries
+    defined($c= open(P,"-|")) || syserr("cannot fork for file");
+    if (!$c) { exec("file",$exec[$i]); syserr("cannot exec file"); }
+    while (<P>) {
+        if (m/:.*64-bit[^,]*executable/) {
+	    $hwdeps{"64"} = 1;
+	}
+    }
+    close(P); $? && subprocerr("ldd on \`$exec[$i]'");
+
     
     # First we get an ldd output to see what libs + paths we have at out
     # disposal.
@@ -280,6 +293,10 @@
 } else {
     $fh= 'STDOUT';
 }
+for $dh (keys %hwdeps) {
+    $defdepf{Depends}.= ', ' if length($defdepf{Depends});
+    $defdepf{Depends}.= "{$dh}";
+}
 for $dv (sort keys %predefdepfdep) {
     $lf= $predefdepfdep{$dv};
     $defdepf{$lf}.= ', ' if length($defdepf{$lf});
diff -ruN dpkg-1.10.10.org/scripts/dpkg-source.pl dpkg-1.10.10.0lib641-dep64/scripts/dpkg-source.pl
--- dpkg-1.10.10.org/scripts/dpkg-source.pl	2002-07-04 20:36:28.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/scripts/dpkg-source.pl	2003-07-12 15:39:03.000000000 -0400
@@ -189,6 +189,7 @@
             } elsif (m/^(Package|Essential|Pre-Depends|Depends|Provides)$/i ||
                      m/^(Recommends|Suggests|Optional|Conflicts|Replaces)$/i ||
                      m/^(Description|Section|Priority)$/i ||
+                     m/^(Package.64|Substvarname)$/i ||
                      m/^X[CS]+-/i) {
             } else {
                 &unknown("package's section of control info file");
diff -ruN dpkg-1.10.10.org/scripts/Makefile.in dpkg-1.10.10.0lib641-dep64/scripts/Makefile.in
--- dpkg-1.10.10.org/scripts/Makefile.in	2002-05-20 00:40:27.000000000 -0400
+++ dpkg-1.10.10.0lib641-dep64/scripts/Makefile.in	2003-07-12 15:39:03.000000000 -0400
@@ -9,7 +9,8 @@
 			  dpkg-gencontrol dpkg-shlibdeps dpkg-buildpackage \
 			  dpkg-parsechangelog dpkg-distaddfile 822-date \
 			  dpkg-scanpackages dpkg-scansources \
-			  dpkg-architecture dpkg-checkbuilddeps
+			  dpkg-architecture dpkg-checkbuilddeps \
+			  dpkg-libinfo
 
 SBIN_SCRIPTS		= update-alternatives install-info \
 			  dpkg-divert dpkg-statoverride cleanup-info
diff -ruN dpkg-1.10.10.org/tags dpkg-1.10.10.0lib641-dep64/tags
--- dpkg-1.10.10.org/tags	1969-12-31 19:00:00.000000000 -0500
+++ dpkg-1.10.10.0lib641-dep64/tags	2003-07-23 14:08:42.000000000 -0400
@@ -0,0 +1,2897 @@
+!_TAG_FILE_FORMAT	2	/extended format; --format=1 will not append ;" to lines/
+!_TAG_FILE_SORTED	1	/0=unsorted, 1=sorted, 2=foldcase/
+!_TAG_PROGRAM_AUTHOR	Darren Hiebert	/dhiebert@users.sourceforge.net/
+!_TAG_PROGRAM_NAME	Exuberant Ctags	//
+!_TAG_PROGRAM_URL	http://ctags.sourceforge.net	/official site/
+!_TAG_PROGRAM_VERSION	5.5	//
+ACTION	main/main.c	354;"	d	file:
+ACTION	main/query.c	515;"	d	file:
+ACTIONBACKEND	main/main.c	358;"	d	file:
+ADMINDIR	build/include/dpkg.h	72;"	d
+ADMINMEMBER	dpkg-deb/dpkg-deb.h	41;"	d
+ADMINMEMBER_COMPAT	dpkg-deb/dpkg-deb.h	42;"	d
+ARCHBINFMT	build/include/dpkg.h	52;"	d
+ARCHITECTURE	build/config.h	5;"	d
+ARCHIVES_H	main/archives.h	23;"	d
+ARCHIVEVERSION	build/include/dpkg.h	33;"	d
+ARCHIVE_FILENAME_PATTERN	build/include/dpkg.h	119;"	d
+ATH	build/po/Makefile	/^	if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`\/..\/src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)\/src && pwd`; export GETTEXTLIBDIR; fi; \\$/;"	m
+ATH	build/po/Makefile	/^	if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`\/..\/src:$$PATH; fi; \\$/;"	m
+ATTRCONST	build/config.h	402;"	d
+ATTRCONST	build/config.h	404;"	d
+ATTRNORETURN	build/config.h	384;"	d
+ATTRNORETURN	build/config.h	386;"	d
+ATTRPRINTF	build/config.h	372;"	d
+ATTRPRINTF	build/config.h	374;"	d
+ATTRUNUSED	build/config.h	414;"	d
+ATTRUNUSED	build/config.h	416;"	d
+AVAILFILE	build/include/dpkg.h	75;"	d
+BACKEND	build/include/dpkg.h	121;"	d
+BINDINGS_H	dselect/bindings.h	23;"	d
+BINS	lib/database.c	29;"	d	file:
+BINS	main/filesdb.c	523;"	d	file:
+BIN_SCRIPTS	build/scripts/Makefile	/^BIN_SCRIPTS		= dpkg-name dpkg-source dpkg-genchanges \\$/;"	m
+BUFFER_READ_FD	build/include/dpkg.h	221;"	d
+BUFFER_READ_SETUP	build/include/dpkg.h	225;"	d
+BUFFER_READ_SHUTDOWN	build/include/dpkg.h	227;"	d
+BUFFER_READ_STREAM	build/include/dpkg.h	222;"	d
+BUFFER_WRITE_BUF	build/include/dpkg.h	215;"	d
+BUFFER_WRITE_FD	build/include/dpkg.h	217;"	d
+BUFFER_WRITE_MD5	build/include/dpkg.h	220;"	d
+BUFFER_WRITE_NULL	build/include/dpkg.h	218;"	d
+BUFFER_WRITE_SETUP	build/include/dpkg.h	224;"	d
+BUFFER_WRITE_SHUTDOWN	build/include/dpkg.h	226;"	d
+BUFFER_WRITE_STREAM	build/include/dpkg.h	219;"	d
+BUFFER_WRITE_VBUF	build/include/dpkg.h	216;"	d
+BUILDCONTROLDIR	build/include/dpkg.h	41;"	d
+BUILDOLDPKGFORMAT	build/config.h	471;"	d
+BlockDevice	include/tarfn.h	/^	BlockDevice = '4',$/;"	e	enum:TarFileType
+C	dselect/main.cc	404;"	d	file:
+C	dselect/methkeys.cc	60;"	d	file:
+C	dselect/pkgkeys.cc	76;"	d	file:
+CALL_CHUNKFUN	optlib/obstack.c	114;"	d	file:
+CALL_CHUNKFUN	optlib/obstack.c	127;"	d	file:
+CALL_FREEFUN	optlib/obstack.c	119;"	d	file:
+CALL_FREEFUN	optlib/obstack.c	132;"	d	file:
+CATALOGS	build/po/Makefile	/^CATALOGS =  ca.gmo cs.gmo da.gmo de.gmo en.gmo es.gmo fr.gmo gl.gmo it.gmo nl.gmo ja.gmo pl.gmo pt_BR.gmo ru.gmo sv.gmo$/;"	m
+CHANGELOG_PARSERS	build/scripts/Makefile	/^CHANGELOG_PARSERS	= cl-debian$/;"	m
+CHUNK_SIZE	lib/nfmalloc.c	38;"	d	file:
+CMETHOPTFILE	build/include/dpkg.h	77;"	d
+CONFFILESFILE	build/include/dpkg.h	65;"	d
+CONFFOPTCELLS	build/include/dpkg.h	113;"	d
+CONFIGDIR	build/include/dpkg.h	73;"	d
+CONFIG_FILES	build/po/Makefile	/^	  && CONFIG_FILES=$(subdir)\/$@.in CONFIG_HEADERS= \\$/;"	m
+CONFIG_HEADERS	build/po/Makefile	/^	  && CONFIG_FILES=$(subdir)\/$@.in CONFIG_HEADERS= \\$/;"	m
+CONSTANT	build/config.h	408;"	d
+CONTROLDIRTMP	build/include/dpkg.h	84;"	d
+CONTROLFILE	build/include/dpkg.h	64;"	d
+COPYING_UNIT	optlib/obstack.c	75;"	d	file:
+COPYRIGHT_HOLDER	build/po/Makefile	/^COPYRIGHT_HOLDER = Free Software Foundation, Inc.$/;"	m
+CXX_SOURCES	build/dselect/Makefile	/^CXX_SOURCES	= basecmds.cc baselist.cc basetop.cc bindings.cc curkeys.cc \\$/;"	m
+CharacterDevice	include/tarfn.h	/^	CharacterDevice = '3',$/;"	e	enum:TarFileType
+CheckModeConflict	debian/tmp/dpkg-static/usr/sbin/dpkg-statoverride	/^sub CheckModeConflict {$/;"	s
+CheckModeConflict	debian/tmp/dpkg/usr/sbin/dpkg-statoverride	/^sub CheckModeConflict {$/;"	s
+CheckModeConflict	debian/tmp/install/usr/sbin/dpkg-statoverride	/^sub CheckModeConflict {$/;"	s
+CheckModeConflict	scripts/dpkg-statoverride.pl	/^sub CheckModeConflict {$/;"	s
+Checksum	lib/tarfn.c	/^	char Checksum[8];$/;"	m	struct:TarHeader	file:
+DATAMEMBER	dpkg-deb/dpkg-deb.h	43;"	d
+DATAMEMBER_COMPAT	dpkg-deb/dpkg-deb.h	44;"	d
+DEBEXT	build/include/dpkg.h	43;"	d
+DEBMAGIC	dpkg-deb/dpkg-deb.h	40;"	d
+DEBSIGVERIFY	build/include/dpkg.h	127;"	d
+DEFAULTPAGER	build/include/dpkg.h	99;"	d
+DEFAULTSHELL	build/include/dpkg.h	97;"	d
+DEFAULT_ALIGNMENT	optlib/obstack.c	62;"	d	file:
+DEFAULT_ROUNDING	optlib/obstack.c	68;"	d	file:
+DIFF	build/include/dpkg.h	134;"	d
+DISTFILES	build/po/Makefile	/^DISTFILES = $(DISTFILES.common) POTFILES.in $(DOMAIN).pot \\$/;"	m
+DIVERSIONSFILE	build/include/dpkg.h	79;"	d
+DOMAIN	build/po/Makefile	/^DOMAIN = $(PACKAGE)$/;"	m
+DPKG	build/include/dpkg.h	126;"	d
+DPKGDISTEXT	build/include/dpkg.h	62;"	d
+DPKGNEWEXT	build/include/dpkg.h	60;"	d
+DPKGOLDEXT	build/include/dpkg.h	61;"	d
+DPKGQUERY	build/include/dpkg.h	122;"	d
+DPKGTEMPEXT	build/include/dpkg.h	59;"	d
+DPKG_DB_H	include/dpkg-db.h	24;"	d
+DPKG_DEB_H	dpkg-deb/dpkg-deb.h	23;"	d
+DPKG_H	build/include/dpkg.h	24;"	d
+DPKG_PARSEDUMP_H	include/parsedump.h	24;"	d
+DPKG_SPLIT_H	split/dpkg-split.h	23;"	d
+DPKG_VERSION	build/version.h	1;"	d
+DPKG_VERSION_ARCH	build/include/dpkg.h	54;"	d
+DSELECT	build/include/dpkg.h	125;"	d
+DSELECT_H	dselect/dselect.h	24;"	d
+DUMMYPOFILES	build/po/Makefile	/^DUMMYPOFILES =  ca.nop cs.nop da.nop de.nop en.nop es.nop fr.nop gl.nop it.nop nl.nop ja.nop pl.nop pt_BR.nop ru.nop sv.nop$/;"	m
+DecodeTarHeader	lib/tarfn.c	/^DecodeTarHeader(char * block, TarInfo * d)$/;"	f	file:
+Device	include/tarfn.h	/^	dev_t		Device;		\/* Special device for mknod() *\/$/;"	m	struct:TarInfo
+Directory	include/tarfn.h	/^	Directory = '5',$/;"	e	enum:TarFileType
+ELIDE_CODE	optlib/getopt.c	61;"	d	file:
+ELIDE_CODE	optlib/getopt1.c	52;"	d	file:
+ELIDE_CODE	optlib/obstack.c	46;"	d	file:
+ENABLE_NLS	build/config.h	17;"	d
+ENOENT	debian/tmp/dpkg-static/usr/sbin/dpkg-divert	/^sub ENOENT { $enoent; }$/;"	s
+ENOENT	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub ENOENT { $enoent; }$/;"	s
+ENOENT	debian/tmp/dpkg/usr/sbin/dpkg-divert	/^sub ENOENT { $enoent; }$/;"	s
+ENOENT	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub ENOENT { $enoent; }$/;"	s
+ENOENT	debian/tmp/install/usr/sbin/dpkg-divert	/^sub ENOENT { $enoent; }$/;"	s
+ENOENT	debian/tmp/install/usr/sbin/update-alternatives	/^sub ENOENT { $enoent; }$/;"	s
+ENOENT	scripts/dpkg-divert.pl	/^sub ENOENT { $enoent; }$/;"	s
+ENOENT	scripts/update-alternatives.pl	/^sub ENOENT { $enoent; }$/;"	s
+ENOENT_OBJECTS	build/utils/Makefile	/^ENOENT_OBJECTS		= $(patsubst %.c, %.o, $(ENOENT_SOURCES))$/;"	m
+ENOENT_SOURCES	build/utils/Makefile	/^ENOENT_SOURCES		= enoent.c$/;"	m
+EOF_mmap	lib/parse.c	126;"	d	file:
+EPOCH	optlib/getdate.c	146;"	d	file:
+ERR	dselect/dselect.h	30;"	d
+EXIT_FAILURE	optlib/closeout.c	33;"	d	file:
+EXIT_FAILURE	optlib/obstack.c	98;"	d	file:
+EXTRACTCONTROLDIR	build/include/dpkg.h	42;"	d
+EXTRA_LOCALE_CATEGORIES	build/po/Makefile	/^EXTRA_LOCALE_CATEGORIES =$/;"	m
+ExtractFile	include/tarfn.h	/^	TarFunction	ExtractFile;$/;"	m	struct:TarFunctions
+ExtractFile	lib/star.c	/^ExtractFile(TarInfo * i)$/;"	f	file:
+F1	lib/md5.c	143;"	d	file:
+F2	lib/md5.c	144;"	d	file:
+F3	lib/md5.c	145;"	d	file:
+F4	lib/md5.c	146;"	d	file:
+FIFO	include/tarfn.h	/^	FIFO = '6',$/;"	e	enum:TarFileType
+FILEFFIELD	include/parsedump.h	43;"	d
+FILEFOFF	include/parsedump.h	41;"	d
+FILESDB_H	main/filesdb.h	23;"	d
+FIND	build/include/dpkg.h	132;"	d
+FIND_EXPRSTARTCHARS	build/include/dpkg.h	138;"	d
+FOPRBIN	utils/md5sum.c	49;"	d	file:
+FOPRBIN	utils/md5sum.c	53;"	d	file:
+FOPRBIN	utils/md5sum.c	56;"	d	file:
+FOPRTXT	utils/md5sum.c	48;"	d	file:
+FOPRTXT	utils/md5sum.c	52;"	d	file:
+FOPRTXT	utils/md5sum.c	55;"	d	file:
+FUNCATTR	build/config.h	363;"	d
+FUNCATTR	build/config.h	365;"	d
+GENFILES	build/Makefile	/^GENFILES	= version.h$/;"	m
+GENFILES	build/dpkg-deb/Makefile	/^GENFILES	= $(OBJECTS) dpkg-deb dpkg-deb-static$/;"	m
+GENFILES	build/dselect/Makefile	/^GENFILES	= $(OBJECTS) dselect helpmsgs.h curkeys.h \\$/;"	m
+GENFILES	build/include/Makefile	/^GENFILES	= dpkg.h$/;"	m
+GENFILES	build/lib/Makefile	/^GENFILES	= $(OBJECTS) libdpkg.a$/;"	m
+GENFILES	build/main/Makefile	/^GENFILES	= $(OBJECTS) archtable.h dpkg dpkg-static$/;"	m
+GENFILES	build/optlib/Makefile	/^GENFILES	= $(OBJECTS) libopt.a$/;"	m
+GENFILES	build/scripts/Makefile	/^GENFILES		= $(CHANGELOG_PARSERS) $(BIN_SCRIPTS) $(SBIN_SCRIPTS) $(GEN_MAN1PAGES) $(GEN_MAN8PAGES)$/;"	m
+GENFILES	build/split/Makefile	/^GENFILES		= $(SPLIT_OBJECTS) dpkg-split$/;"	m
+GENFILES	build/utils/Makefile	/^GENFILES		= $(MD5_OBJECTS) md5sum md5sum-static $(ENOENT_OBJECTS) enoent$/;"	m
+GEN_MAN1PAGES	build/scripts/Makefile	/^GEN_MAN1PAGES		= dpkg-architecture.1$/;"	m
+GEN_MAN8PAGES	build/scripts/Makefile	/^GEN_MAN8PAGES		= dpkg-scansources.8$/;"	m
+GETOPT_INTERFACE_VERSION	optlib/getopt.c	57;"	d	file:
+GETOPT_INTERFACE_VERSION	optlib/getopt1.c	48;"	d	file:
+GETTEXTLIBDIR	build/po/Makefile	/^	if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`\/..\/src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)\/src && pwd`; export GETTEXTLIBDIR; fi; \\$/;"	m
+GMOFILES	build/po/Makefile	/^GMOFILES =  $(srcdir)\/ca.gmo $(srcdir)\/cs.gmo $(srcdir)\/da.gmo $(srcdir)\/de.gmo $(srcdir)\/en.gmo $(srcdir)\/es.gmo $(srcdir)\/fr.gmo $(srcdir)\/gl.gmo $(srcdir)\/it.gmo $(srcdir)\/nl.gmo $(srcdir)\/ja.gmo $(srcdir)\/pl.gmo $(srcdir)\/pt_BR.gmo $(srcdir)\/ru.gmo $(srcdir)\/sv.gmo$/;"	m
+GMSGFMT	build/po/Makefile	/^GMSGFMT = \/usr\/bin\/msgfmt$/;"	m
+GNU_LONGLINK	include/tarfn.h	/^	GNU_LONGLINK = 'K',$/;"	e	enum:TarFileType
+GNU_LONGNAME	include/tarfn.h	/^	GNU_LONGNAME = 'L'$/;"	e	enum:TarFileType
+GZIP	build/include/dpkg.h	130;"	d
+GroupID	include/tarfn.h	/^	gid_t		GroupID;	\/* Numeric GID *\/$/;"	m	struct:TarInfo
+GroupID	lib/tarfn.c	/^	char GroupID[8];$/;"	m	struct:TarHeader	file:
+GroupName	lib/tarfn.c	/^	char GroupName[32];$/;"	m	struct:TarHeader	file:
+HAVE_ALLOCA	build/config.h	20;"	d
+HAVE_ALLOCA_H	build/config.h	24;"	d
+HAVE_ALPHASORT	build/config.h	27;"	d
+HAVE_ALPHASORT_DECLARATION	build/config.h	30;"	d
+HAVE_ARGZ_H	build/config.h	33;"	d
+HAVE_DCGETTEXT	build/config.h	37;"	d
+HAVE_ERROR_H	build/config.h	43;"	d
+HAVE_FEOF_UNLOCKED	build/config.h	46;"	d
+HAVE_FGETS_UNLOCKED	build/config.h	49;"	d
+HAVE_GETCWD	build/config.h	52;"	d
+HAVE_GETC_UNLOCKED	build/config.h	55;"	d
+HAVE_GETEGID	build/config.h	58;"	d
+HAVE_GETEUID	build/config.h	61;"	d
+HAVE_GETGID	build/config.h	64;"	d
+HAVE_GETPAGESIZE	build/config.h	67;"	d
+HAVE_GETTEXT	build/config.h	70;"	d
+HAVE_GETUID	build/config.h	73;"	d
+HAVE_GNUC25_ATTRIB	build/config.h	76;"	d
+HAVE_GNUC25_CONST	build/config.h	79;"	d
+HAVE_GNUC25_NORETURN	build/config.h	82;"	d
+HAVE_GNUC25_PRINTFFORMAT	build/config.h	85;"	d
+HAVE_GNUC25_UNUSED	build/config.h	88;"	d
+HAVE_ICONV	build/config.h	91;"	d
+HAVE_INLINE	build/config.h	94;"	d
+HAVE_INTTYPES_H	build/config.h	97;"	d
+HAVE_INTTYPES_H_WITH_UINTMAX	build/config.h	101;"	d
+HAVE_LANGINFO_CODESET	build/config.h	104;"	d
+HAVE_LCHOWN	build/config.h	107;"	d
+HAVE_LC_MESSAGES	build/config.h	110;"	d
+HAVE_LIMITS_H	build/config.h	113;"	d
+HAVE_LOCALE_H	build/config.h	116;"	d
+HAVE_MALLOC_H	build/config.h	119;"	d
+HAVE_MEMORY_H	build/config.h	122;"	d
+HAVE_MEMPCPY	build/config.h	125;"	d
+HAVE_MMAP	build/config.h	128;"	d
+HAVE_MUNMAP	build/config.h	131;"	d
+HAVE_NL_TYPES_H	build/config.h	134;"	d
+HAVE_PUTENV	build/config.h	137;"	d
+HAVE_SCANDIR	build/config.h	140;"	d
+HAVE_SETENV	build/config.h	143;"	d
+HAVE_SETLOCALE	build/config.h	146;"	d
+HAVE_SETSID	build/config.h	149;"	d
+HAVE_SNPRINTF	build/config.h	152;"	d
+HAVE_STDDEF_H	build/config.h	155;"	d
+HAVE_STDINT_H	build/config.h	158;"	d
+HAVE_STDINT_H_WITH_UINTMAX	build/config.h	162;"	d
+HAVE_STDLIB_H	build/config.h	165;"	d
+HAVE_STPCPY	build/config.h	168;"	d
+HAVE_STRCASECMP	build/config.h	171;"	d
+HAVE_STRDUP	build/config.h	174;"	d
+HAVE_STRERROR	build/config.h	177;"	d
+HAVE_STRINGS_H	build/config.h	180;"	d
+HAVE_STRING_H	build/config.h	183;"	d
+HAVE_STRSIGNAL	build/config.h	186;"	d
+HAVE_STRTOUL	build/config.h	189;"	d
+HAVE_SYSLOG_H	build/config.h	192;"	d
+HAVE_SYS_CDEFS_H	build/config.h	195;"	d
+HAVE_SYS_PARAM_H	build/config.h	198;"	d
+HAVE_SYS_STAT_H	build/config.h	201;"	d
+HAVE_SYS_TYPES_H	build/config.h	204;"	d
+HAVE_TIOCNOTTY	build/config.h	207;"	d
+HAVE_TSEARCH	build/config.h	210;"	d
+HAVE_UNISTD_H	build/config.h	213;"	d
+HAVE_UNSETENV	build/config.h	216;"	d
+HAVE_UNSIGNED_LONG_LONG	build/config.h	219;"	d
+HAVE_VA_COPY	build/config.h	222;"	d
+HAVE_VPRINTF	build/config.h	225;"	d
+HAVE_VSNPRINTF	build/config.h	228;"	d
+HAVE___ARGZ_COUNT	build/config.h	231;"	d
+HAVE___ARGZ_NEXT	build/config.h	234;"	d
+HAVE___ARGZ_STRINGIFY	build/config.h	237;"	d
+HEADERALLOWANCE	split/dpkg-split.h	71;"	d
+HELPMSGS_H	dselect/helpmsgs.h	7;"	d
+HOUR	optlib/getdate.c	147;"	d	file:
+HardLink	include/tarfn.h	/^	HardLink = '1',$/;"	e	enum:TarFileType
+ICONV_CONST	build/config.h	240;"	d
+IMETHODMAXLEN	build/include/dpkg.h	101;"	d
+IMPORTANTFMT	build/include/dpkg.h	88;"	d
+IMPORTANTMAXLEN	build/include/dpkg.h	87;"	d
+IMPORTANTTMP	build/include/dpkg.h	85;"	d
+INFODIR	build/include/dpkg.h	82;"	d
+INSTALL	build/po/Makefile	/^INSTALL = \/usr\/bin\/install -c$/;"	m
+INSTALL_DATA	build/po/Makefile	/^INSTALL_DATA = ${INSTALL} -m 644$/;"	m
+INTDIV0_RAISES_SIGFPE	build/config.h	243;"	d
+INTERPRETER_MAX	build/config.h	355;"	d
+INTERPRETER_MAX	build/config.h	357;"	d
+IN_CTYPE_DOMAIN	optlib/getdate.c	59;"	d	file:
+IN_CTYPE_DOMAIN	optlib/getdate.c	61;"	d	file:
+IOError	lib/star.c	/^IOError(TarInfo * i)$/;"	f	file:
+IOPTIONMAXLEN	build/include/dpkg.h	102;"	d
+ISALPHA	optlib/getdate.c	65;"	d	file:
+ISDIGIT	optlib/getdate.c	77;"	d	file:
+ISDIGIT_LOCALE	optlib/getdate.c	67;"	d	file:
+ISSPACE	optlib/getdate.c	64;"	d	file:
+ISUPPER	optlib/getdate.c	66;"	d	file:
+LC_ALL	build/po/Makefile	/^	        link=`cd $(DESTDIR)$(localedir)\/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's\/^.* -> \/\/'`; \\$/;"	m
+LC_ALL	build/po/Makefile	/^	      if (cd $(DESTDIR)$(localedir)\/$$lang && LC_ALL=C ls -l -d $$lc 2>\/dev\/null) | grep ' -> ' >\/dev\/null; then \\$/;"	m
+LC_ALL	build/po/Makefile	/^	LC_ALL=C; export LC_ALL; \\$/;"	m
+LIBDIR	build/include/dpkg.h	91;"	d
+LISTFILE	build/include/dpkg.h	70;"	d
+LLIBDIR	build/config.h	246;"	d
+LOCALLIBDIR	build/include/dpkg.h	92;"	d
+LOCALSTATEDIR	build/config.h	249;"	d
+LOCKFILE	build/include/dpkg.h	76;"	d
+LinkFlag	lib/tarfn.c	/^	char LinkFlag;$/;"	m	struct:TarHeader	file:
+LinkName	include/tarfn.h	/^	char *		LinkName;	\/* Name for symbolic and hard links *\/$/;"	m	struct:TarInfo
+LinkName	lib/tarfn.c	/^	char LinkName[100];$/;"	m	struct:TarHeader	file:
+LookupWord	optlib/getdate.c	/^LookupWord (buff)$/;"	f	file:
+MAIN_H	main/main.h	23;"	d
+MAN1PAGES	build/man/de/Makefile	/^MAN1PAGES	= md5sum.1 $/;"	m
+MAN1PAGES	build/man/fr/Makefile	/^MAN1PAGES	= dpkg-deb.1 dpkg-name.1 dpkg-source.1$/;"	m
+MAN1PAGES	build/man/ja/Makefile	/^MAN1PAGES	= dpkg-deb.1 md5sum.1 822-date.1 dpkg-name.1 \\$/;"	m
+MAN1PAGES	build/man/ru/Makefile	/^MAN1PAGES	= 822-date.1 dpkg-checkbuilddeps.1$/;"	m
+MAN1PAGES	build/man/sv/Makefile	/^MAN1PAGES	= 822-date.1 dpkg-deb.1 md5sum.1$/;"	m
+MAN1PAGES	build/scripts/Makefile	/^MAN1PAGES		= dpkg-name.1 dpkg-source.1 822-date.1 \\$/;"	m
+MAN5PAGES	build/man/en/Makefile	/^MAN5PAGES	= deb-control.5 deb-old.5 deb.5 dpkg.cfg.5 dselect.cfg.5$/;"	m
+MAN5PAGES	build/man/fr/Makefile	/^MAN5PAGES	= deb-control.5$/;"	m
+MAN5PAGES	build/man/ja/Makefile	/^MAN5PAGES	= deb-old.5 deb.5 deb-control.5$/;"	m
+MAN5PAGES	build/man/ru/Makefile	/^MAN5PAGES	= deb-control.5$/;"	m
+MAN5PAGES	build/man/sv/Makefile	/^MAN5PAGES	= deb.5 deb-control.5 deb-old.5 dpkg.cfg.5 dselect.cfg.5$/;"	m
+MAN8PAGES	build/dselect/Makefile	/^MAN8PAGES	= dselect.8$/;"	m
+MAN8PAGES	build/main/Makefile	/^MAN8PAGES	= dpkg.8 dpkg-query.8$/;"	m
+MAN8PAGES	build/man/fr/Makefile	/^MAN8PAGES	= cleanup-info.8 dpkg.8 dpkg-divert.8 dpkg-scanpackages.8 \\$/;"	m
+MAN8PAGES	build/man/ja/Makefile	/^MAN8PAGES	= dpkg.8 dselect.8 install-info.8 start-stop-daemon.8 \\$/;"	m
+MAN8PAGES	build/man/pt_BR/Makefile	/^MAN8PAGES	= update-alternatives.8$/;"	m
+MAN8PAGES	build/man/ru/Makefile	/^MAN8PAGES	= dpkg.8 start-stop-daemon.8 $/;"	m
+MAN8PAGES	build/man/sv/Makefile	/^MAN8PAGES	= dpkg.8 dpkg-query.8 dpkg-split.8 dselect.8 start-stop-daemon.8$/;"	m
+MAN8PAGES	build/scripts/Makefile	/^MAN8PAGES		= update-alternatives.8 install-info.8  \\$/;"	m
+MAN_SOURCE_ALIASES	build/scripts/Makefile	/^MAN_SOURCE_ALIASES	= dpkg-gencontrol.1 dpkg-genchanges.1 dpkg-buildpackage.1 \\$/;"	m
+MAXCONFFILENAME	build/include/dpkg.h	38;"	d
+MAXCONTROLFILENAME	build/include/dpkg.h	40;"	d
+MAXDIVERTFILENAME	build/include/dpkg.h	39;"	d
+MAXFIELDNAME	build/include/dpkg.h	37;"	d
+MAXUPDATES	build/include/dpkg.h	89;"	d
+MAX_BUFF_LEN	optlib/getdate.c	149;"	d	file:
+MAX_DISPLAY_INFO	dselect/dselect.h	27;"	d
+MD5Context	lib/md5.h	/^struct MD5Context {$/;"	s
+MD5Final	lib/md5.c	/^MD5Final(md5byte digest[16], struct MD5Context *ctx)$/;"	f
+MD5HASHLEN	build/include/dpkg.h	111;"	d
+MD5Init	lib/md5.c	/^MD5Init(struct MD5Context *ctx)$/;"	f
+MD5STEP	lib/md5.c	149;"	d	file:
+MD5SUM	build/include/dpkg.h	124;"	d
+MD5Transform	lib/md5.c	/^MD5Transform(UWORD32 buf[4], UWORD32 const in[16])$/;"	f
+MD5Update	lib/md5.c	/^MD5Update(struct MD5Context *ctx, md5byte const *buf, unsigned len)$/;"	f
+MD5_H	lib/md5.h	24;"	d
+MD5_MANPAGES	build/utils/Makefile	/^MD5_MANPAGES		= md5sum.1$/;"	m
+MD5_OBJECTS	build/utils/Makefile	/^MD5_OBJECTS		= $(patsubst %.c, %.o, $(MD5_SOURCES))$/;"	m
+MD5_SOURCES	build/utils/Makefile	/^MD5_SOURCES		= md5sum.c$/;"	m
+MER24	optlib/getdate.c	/^    MERam, MERpm, MER24$/;"	e	enum:_MERIDIAN	file:
+MERIDIAN	optlib/getdate.c	/^} MERIDIAN;$/;"	t	file:
+MERam	optlib/getdate.c	/^    MERam, MERpm, MER24$/;"	e	enum:_MERIDIAN	file:
+MERpm	optlib/getdate.c	/^    MERam, MERpm, MER24$/;"	e	enum:_MERIDIAN	file:
+METHLOCKFILE	build/include/dpkg.h	78;"	d
+METHODINSTALLSCRIPT	build/include/dpkg.h	106;"	d
+METHODOPTIONSFILE	build/include/dpkg.h	103;"	d
+METHODS	build/methods/Makefile	/^METHODS			= disk floppy$/;"	m
+METHODSDIR	build/include/dpkg.h	93;"	d
+METHODSETUPSCRIPT	build/include/dpkg.h	104;"	d
+METHODUPDATESCRIPT	build/include/dpkg.h	105;"	d
+METHOD_H	dselect/method.h	24;"	d
+METHOD_SCRIPTS	build/methods/Makefile	/^METHOD_SCRIPTS		= setup update install$/;"	m
+MIN_POLL_INTERVAL	utils/start-stop-daemon.c	43;"	d	file:
+MKINSTALLDIRS	build/po/Makefile	/^MKINSTALLDIRS = \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/mkinstalldirs$/;"	m
+MSDOS_EOF_CHAR	include/parsedump.h	79;"	d
+MSGCONV	build/po/Makefile	/^MSGCONV = msgconv$/;"	m
+MSGFILTER	build/po/Makefile	/^MSGFILTER = msgfilter$/;"	m
+MSGFMT	build/po/Makefile	/^MSGFMT = \/usr\/bin\/msgfmt$/;"	m
+MSGINIT	build/po/Makefile	/^MSGINIT = msginit$/;"	m
+MSGMERGE	build/po/Makefile	/^MSGMERGE = msgmerge$/;"	m
+MSGMERGE_UPDATE	build/po/Makefile	/^MSGMERGE_UPDATE = : --update$/;"	m
+MYOPT_H	include/myopt.h	23;"	d
+MagicNumber	lib/tarfn.c	/^	char MagicNumber[8];$/;"	m	struct:TarHeader	file:
+MajorDevice	lib/tarfn.c	/^	char MajorDevice[8];$/;"	m	struct:TarHeader	file:
+MakeDirectory	include/tarfn.h	/^	TarFunction	MakeDirectory;$/;"	m	struct:TarFunctions
+MakeDirectory	lib/star.c	/^MakeDirectory(TarInfo * i)$/;"	f	file:
+MakeHardLink	include/tarfn.h	/^	TarFunction	MakeHardLink;$/;"	m	struct:TarFunctions
+MakeHardLink	lib/star.c	/^MakeHardLink(TarInfo * i)$/;"	f	file:
+MakeSpecialFile	include/tarfn.h	/^	TarFunction	MakeSpecialFile;$/;"	m	struct:TarFunctions
+MakeSpecialFile	lib/star.c	/^MakeSpecialFile(TarInfo * i)$/;"	f	file:
+MakeSymbolicLink	include/tarfn.h	/^	TarFunction	MakeSymbolicLink;$/;"	m	struct:TarFunctions
+MakeSymbolicLink	lib/star.c	/^MakeSymbolicLink(TarInfo * i)$/;"	f	file:
+Meridian	optlib/getdate.c	/^    enum _MERIDIAN	Meridian;$/;"	m	file:
+MilitaryTable	optlib/getdate.c	/^static TABLE const MilitaryTable[] = {$/;"	v	file:
+MinorDevice	lib/tarfn.c	/^	char MinorDevice[8];$/;"	m	struct:TarHeader	file:
+ModTime	include/tarfn.h	/^	time_t		ModTime;	\/* Last-modified time *\/$/;"	m	struct:TarInfo
+Mode	include/tarfn.h	/^	mode_t		Mode;		\/* Unix mode, including device bits. *\/$/;"	m	struct:TarInfo
+Mode	lib/tarfn.c	/^	char Mode[8];$/;"	m	struct:TarHeader	file:
+ModificationTime	lib/tarfn.c	/^	char ModificationTime[12];$/;"	m	struct:TarHeader	file:
+MonthDayTable	optlib/getdate.c	/^static TABLE const MonthDayTable[] = {$/;"	v	file:
+NCALLS	lib/ehandle.c	42;"	d	file:
+NCATCHSIGNALS	dselect/method.cc	135;"	d	file:
+NEWCONFFILEFLAG	build/include/dpkg.h	56;"	d
+NEWDBEXT	build/include/dpkg.h	45;"	d
+NFIELDS	lib/parse.c	75;"	d	file:
+NOJOBCTRLSTOPENV	build/include/dpkg.h	95;"	d
+NONEXISTENTFLAG	build/include/dpkg.h	57;"	d
+NONOPTION_P	optlib/getopt.c	541;"	d	file:
+NONOPTION_P	optlib/getopt.c	545;"	d	file:
+NONRETURNING	build/config.h	391;"	d
+NONRETURNING	dpkg-deb/dpkg-deb.h	/^dofunction do_build NONRETURNING; $/;"	v
+NONRETURNING	split/dpkg-split.h	/^dofunction do_split NONRETURNING;$/;"	v
+NONRETURNPRINTFFORMAT	build/config.h	396;"	d
+NSCRIPTCATCHSIGNALS	main/help.c	219;"	d	file:
+NULL	optlib/getopt1.c	66;"	d	file:
+N_	build/include/dpkg.h	154;"	d
+N_	build/include/dpkg.h	161;"	d
+Name	include/tarfn.h	/^	char *		Name;		\/* File name *\/$/;"	m	struct:TarInfo
+Name	lib/tarfn.c	/^	char Name[100];$/;"	m	struct:TarHeader	file:
+NormalFile0	include/tarfn.h	/^	NormalFile0 = '\\0',	\/* For compatibility with decades-old bug *\/$/;"	e	enum:TarFileType
+NormalFile1	include/tarfn.h	/^	NormalFile1 = '0',$/;"	e	enum:TarFileType
+Number	optlib/getdate.c	/^    int			Number;$/;"	m	file:
+OBJECTS	build/dpkg-deb/Makefile	/^OBJECTS		= $(patsubst %.c, %.o, $(SOURCES))$/;"	m
+OBJECTS	build/dselect/Makefile	/^OBJECTS		= $(patsubst %.cc, %.o, $(CXX_SOURCES))$/;"	m
+OBJECTS	build/lib/Makefile	/^OBJECTS		= $(patsubst %.c, %.o, $(SOURCES))$/;"	m
+OBJECTS	build/main/Makefile	/^OBJECTS		= $(patsubst %.c, %.o, $(SOURCES))$/;"	m
+OBJECTS	build/optlib/Makefile	/^OBJECTS		= $(patsubst %.c, %.o, $(SOURCES))$/;"	m
+OBSOLETE	main/main.c	356;"	d	file:
+OBSOLETE	main/query.c	517;"	d	file:
+OBSTACK_INIT	lib/nfmalloc.c	40;"	d	file:
+OBSTACK_INTERFACE_VERSION	optlib/obstack.c	31;"	d	file:
+OLDARCHIVEVERSION	build/include/dpkg.h	35;"	d
+OLDDBEXT	build/include/dpkg.h	44;"	d
+OLDDEBDIR	build/include/dpkg.h	47;"	d
+OLDOLDDEBDIR	build/include/dpkg.h	46;"	d
+OPTIONINDEXMAXLEN	build/include/dpkg.h	108;"	d
+OPTIONSDESCPFX	build/include/dpkg.h	107;"	d
+OSFreeBSD	utils/start-stop-daemon.c	36;"	d	file:
+OSHURD	utils/start-stop-daemon.c	28;"	d	file:
+OSLinux	utils/start-stop-daemon.c	26;"	d	file:
+OSNetBSD	utils/start-stop-daemon.c	38;"	d	file:
+OSOpenBSD	utils/start-stop-daemon.c	32;"	d	file:
+OShpux	utils/start-stop-daemon.c	34;"	d	file:
+OSsunos	utils/start-stop-daemon.c	30;"	d	file:
+O_MAINT_FROM	debian/tmp/install/usr/bin/dpkg-scansources	/^sub O_MAINT_FROM	() { 2 } # undef for non-specific, else listref$/;"	s
+O_MAINT_FROM	scripts/dpkg-scansources.pl	/^sub O_MAINT_FROM	() { 2 } # undef for non-specific, else listref$/;"	s
+O_MAINT_TO	debian/tmp/install/usr/bin/dpkg-scansources	/^sub O_MAINT_TO		() { 3 } # undef if there's no maint override$/;"	s
+O_MAINT_TO	scripts/dpkg-scansources.pl	/^sub O_MAINT_TO		() { 3 } # undef if there's no maint override$/;"	s
+O_PRIORITY	debian/tmp/install/usr/bin/dpkg-scansources	/^sub O_PRIORITY		() { 0 }$/;"	s
+O_PRIORITY	scripts/dpkg-scansources.pl	/^sub O_PRIORITY		() { 0 }$/;"	s
+O_SECTION	debian/tmp/install/usr/bin/dpkg-scansources	/^sub O_SECTION		() { 1 }$/;"	s
+O_SECTION	scripts/dpkg-scansources.pl	/^sub O_SECTION		() { 1 }$/;"	s
+OtherTable	optlib/getdate.c	/^static TABLE const OtherTable[] = {$/;"	v	file:
+OtoL	lib/tarfn.c	/^OtoL(const char * s, int size)$/;"	f	file:
+PACKAGE	build/config.h	252;"	d
+PACKAGE	build/po/Makefile	/^PACKAGE = dpkg$/;"	m
+PACKAGE_BUGREPORT	build/config.h	255;"	d
+PACKAGE_NAME	build/config.h	258;"	d
+PACKAGE_STRING	build/config.h	261;"	d
+PACKAGE_TARNAME	build/config.h	264;"	d
+PACKAGE_VERSION	build/config.h	267;"	d
+PAGERENV	build/include/dpkg.h	98;"	d
+PARAMS	optlib/closeout.h	3;"	d
+PARAMS	optlib/closeout.h	5;"	d
+PARAMS	optlib/long-options.h	22;"	d
+PARAMS	optlib/long-options.h	24;"	d
+PARTMAGIC	split/dpkg-split.h	70;"	d
+PARTSDIR	build/include/dpkg.h	83;"	d
+PERFILEPACKAGESLUMP	main/filesdb.h	117;"	d
+PERMUTE	optlib/getopt.c	/^  REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER$/;"	e	file:
+PKGIFPOFF	include/parsedump.h	37;"	d
+PKGLIST_H	dselect/pkglist.h	24;"	d
+PKGPFIELD	include/parsedump.h	39;"	d
+PKGSCRIPTMAXARGS	build/include/dpkg.h	110;"	d
+POFILES	build/po/Makefile	/^POFILES =  $(srcdir)\/ca.po $(srcdir)\/cs.po $(srcdir)\/da.po $(srcdir)\/de.po $(srcdir)\/en.po $(srcdir)\/es.po $(srcdir)\/fr.po $(srcdir)\/gl.po $(srcdir)\/it.po $(srcdir)\/nl.po $(srcdir)\/ja.po $(srcdir)\/pl.po $(srcdir)\/pt_BR.po $(srcdir)\/ru.po $(srcdir)\/sv.po$/;"	m
+POINTER	optlib/obstack.c	55;"	d	file:
+POINTER	optlib/obstack.c	57;"	d	file:
+POSTINSTFILE	build/include/dpkg.h	67;"	d
+POSTRMFILE	build/include/dpkg.h	69;"	d
+POTFILES	build/po/Makefile	/^POTFILES = \\$/;"	m
+PREINSTFILE	build/include/dpkg.h	66;"	d
+PRERMFILE	build/include/dpkg.h	68;"	d
+PRINTFFORMAT	build/config.h	378;"	d
+PROCNOERR	build/include/dpkg.h	211;"	d
+PROCPIPE	build/include/dpkg.h	209;"	d
+PROCWARN	build/include/dpkg.h	210;"	d
+PTR_INT_TYPE	optlib/obstack.h	133;"	d
+PTR_INT_TYPE	optlib/obstack.h	137;"	d
+PTR_INT_TYPE	optlib/obstack.h	139;"	d
+QUERY_GENFILES	build/main/Makefile	/^QUERY_GENFILES	= $(QUERY_OBJECTS) dpkg-query$/;"	m
+QUERY_OBJECTS	build/main/Makefile	/^QUERY_OBJECTS	= $(patsubst %.c, %.o, $(QUERY_SOURCES))$/;"	m
+QUERY_SOURCES	build/main/Makefile	/^QUERY_SOURCES	= query.c filesdb.c errors.c $/;"	m
+REASSEMBLETMP	build/include/dpkg.h	86;"	d
+REMOVECONFFEXTS	build/include/dpkg.h	48;"	d
+REQUIRE_ORDER	optlib/getopt.c	/^  REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER$/;"	e	file:
+RETURN_IN_ORDER	optlib/getopt.c	/^  REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER$/;"	e	file:
+RM	build/include/dpkg.h	131;"	d
+Read	include/tarfn.h	/^	TarReadFunction	Read;$/;"	m	struct:TarFunctions
+Read	lib/star.c	/^Read(void * userData, char * buffer, int length)$/;"	f	file:
+ReadOverrides	debian/tmp/dpkg-static/usr/sbin/dpkg-statoverride	/^sub ReadOverrides {$/;"	s
+ReadOverrides	debian/tmp/dpkg/usr/sbin/dpkg-statoverride	/^sub ReadOverrides {$/;"	s
+ReadOverrides	debian/tmp/install/usr/sbin/dpkg-statoverride	/^sub ReadOverrides {$/;"	s
+ReadOverrides	scripts/dpkg-statoverride.pl	/^sub ReadOverrides {$/;"	s
+SBIN_SCRIPTS	build/scripts/Makefile	/^SBIN_SCRIPTS		= update-alternatives install-info \\$/;"	m
+SCRIPTLIBS	build/scripts/Makefile	/^SCRIPTLIBS		= controllib.pl$/;"	m
+SHELL	build/include/dpkg.h	133;"	d
+SHELL	build/po/Makefile	/^SHELL = \/bin\/sh$/;"	m
+SHELLENV	build/include/dpkg.h	96;"	d
+SHELLENVIR	build/include/dpkg.h	136;"	d
+SIZEOF_UNSIGNED_INT	build/config.h	273;"	d
+SIZEOF_UNSIGNED_LONG	build/config.h	276;"	d
+SOURCES	build/dpkg-deb/Makefile	/^SOURCES		= build.c extract.c info.c main.c$/;"	m
+SOURCES	build/lib/Makefile	/^SOURCES		= compat.c database.c dbmodify.c dump.c ehandle.c fields.c \\$/;"	m
+SOURCES	build/main/Makefile	/^SOURCES		= main.c enquiry.c filesdb.c archives.c processarc.c \\$/;"	m
+SOURCES	build/optlib/Makefile	/^SOURCES		= getopt.c getopt1.c long-options.c closeout.c obstack.c$/;"	m
+SPLITPARTDEFMAX	build/include/dpkg.h	36;"	d
+SPLITTER	build/include/dpkg.h	123;"	d
+SPLITVERSION	build/include/dpkg.h	34;"	d
+SPLIT_OBJECTS	build/split/Makefile	/^SPLIT_OBJECTS		= $(patsubst %.c, %.o, $(SPLIT_SOURCES))$/;"	m
+SPLIT_SOURCES	build/split/Makefile	/^SPLIT_SOURCES		= queue.c split.c info.c join.c main.c$/;"	m
+SSD_MANPAGES	build/utils/Makefile	/^SSD_MANPAGES		= start-stop-daemon.8$/;"	m
+SSD_OBJECTS	build/utils/Makefile	/^SSD_OBJECTS		= $(patsubst %.c, %.o, $(SSD_SOURCES))$/;"	m
+SSD_SOURCES	build/utils/Makefile	/^SSD_SOURCES		= start-stop-daemon.c$/;"	m
+STATOVERRIDEFILE	build/include/dpkg.h	80;"	d
+STATUSFILE	build/include/dpkg.h	74;"	d
+STDC_HEADERS	build/config.h	287;"	d
+SUBDIRS	build/Makefile	/^SUBDIRS		= include optlib lib dpkg-deb split scripts utils main \\$/;"	m
+SUBDIRS	build/man/Makefile	/^SUBDIRS		= de en fr ja pt_BR ru sv$/;"	m
+SWAP_FLAGS	optlib/getopt.c	283;"	d	file:
+SWAP_FLAGS	optlib/getopt.c	291;"	d	file:
+SYS_SIGLIST_DECLARED	build/config.h	290;"	d
+S_ISLNK	dpkg-deb/build.c	47;"	d	file:
+SetModes	lib/star.c	/^SetModes(TarInfo * i)$/;"	f	file:
+Size	include/tarfn.h	/^	size_t		Size;		\/* Size of file *\/$/;"	m	struct:TarInfo
+Size	lib/tarfn.c	/^	char Size[12];$/;"	m	struct:TarHeader	file:
+SymbolicLink	include/tarfn.h	/^	SymbolicLink = '2',$/;"	e	enum:TarFileType
+TABLE	optlib/getdate.c	/^} TABLE;$/;"	t	file:
+TAR	build/include/dpkg.h	129;"	d
+TARBLKSZ	build/include/dpkg.h	140;"	d
+TM_YEAR_ORIGIN	optlib/getdate.c	1846;"	d	file:
+TOTAL_LIST_WIDTH	dselect/dselect.h	26;"	d
+TVCALC	utils/start-stop-daemon.c	191;"	d	file:
+TVCALC_ELEM	utils/start-stop-daemon.c	185;"	d	file:
+TarChecksumOffset	lib/tarfn.c	/^static const unsigned int	TarChecksumOffset$/;"	v	file:
+TarExtractor	lib/tarfn.c	/^TarExtractor($/;"	f
+TarFileType	include/tarfn.h	/^enum TarFileType {$/;"	g
+TarFileType	include/tarfn.h	/^typedef enum TarFileType	TarFileType;$/;"	t
+TarFunction	include/tarfn.h	/^typedef int	(*TarFunction)(TarInfo * h);$/;"	t
+TarFunctions	include/tarfn.h	/^struct TarFunctions {$/;"	s
+TarFunctions	include/tarfn.h	/^typedef struct TarFunctions	TarFunctions;$/;"	t
+TarHeader	lib/tarfn.c	/^struct TarHeader {$/;"	s	file:
+TarHeader	lib/tarfn.c	/^typedef struct TarHeader	TarHeader;$/;"	t	file:
+TarInfo	include/tarfn.h	/^struct	TarInfo {$/;"	s
+TarInfo	include/tarfn.h	/^typedef struct TarInfo	TarInfo;$/;"	t
+TarReadFunction	include/tarfn.h	/^typedef	int	(*TarReadFunction)(void * userData, char * buffer, int length);$/;"	t
+TimezoneTable	optlib/getdate.c	/^static TABLE const TimezoneTable[] = {$/;"	v	file:
+ToHour	optlib/getdate.c	/^ToHour (Hours, Meridian)$/;"	f	file:
+ToYear	optlib/getdate.c	/^ToYear (Year)$/;"	f	file:
+Type	include/tarfn.h	/^	TarFileType	Type;		\/* Regular, Directory, Special, Link *\/$/;"	m	struct:TarInfo
+UNUSED	build/config.h	420;"	d
+UPDATEPOFILES	build/po/Makefile	/^UPDATEPOFILES =  ca.po-update cs.po-update da.po-update de.po-update en.po-update es.po-update fr.po-update gl.po-update it.po-update nl.po-update ja.po-update pl.po-update pt_BR.po-update ru.po-update sv.po-update$/;"	m
+UPDATESDIR	build/include/dpkg.h	81;"	d
+USE_START_STOP_DAEMON	build/config.h	293;"	d
+UWORD32	build/config.h	346;"	d
+UWORD32	build/config.h	348;"	d
+UnitsTable	optlib/getdate.c	/^static TABLE const UnitsTable[] = {$/;"	v	file:
+UsageVersion	debian/tmp/dpkg-static/usr/sbin/dpkg-statoverride	/^sub UsageVersion {$/;"	s
+UsageVersion	debian/tmp/dpkg/usr/sbin/dpkg-statoverride	/^sub UsageVersion {$/;"	s
+UsageVersion	debian/tmp/install/usr/sbin/dpkg-statoverride	/^sub UsageVersion {$/;"	s
+UsageVersion	scripts/dpkg-statoverride.pl	/^sub UsageVersion {$/;"	s
+UserData	include/tarfn.h	/^	void *		UserData;	\/* User passed this in as argument *\/$/;"	m	struct:TarInfo
+UserID	include/tarfn.h	/^	uid_t		UserID;		\/* Numeric UID *\/$/;"	m	struct:TarInfo
+UserID	lib/tarfn.c	/^	char UserID[8];$/;"	m	struct:TarHeader	file:
+UserName	lib/tarfn.c	/^	char UserName[32];$/;"	m	struct:TarHeader	file:
+VERSION	build/Makefile	/^VERSION		= $(shell cat version-nr)$/;"	m
+VERSION	build/config.h	296;"	d
+VERSION	build/po/Makefile	/^VERSION = 1.10.10$/;"	m
+VPATH	build/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+VPATH	build/doc/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/doc$/;"	m
+VPATH	build/dpkg-deb/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/dpkg-deb$/;"	m
+VPATH	build/dselect/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/dselect$/;"	m
+VPATH	build/include/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/include$/;"	m
+VPATH	build/lib/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/lib$/;"	m
+VPATH	build/main/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/main$/;"	m
+VPATH	build/man/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man$/;"	m
+VPATH	build/man/de/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/de$/;"	m
+VPATH	build/man/en/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/en$/;"	m
+VPATH	build/man/fr/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/fr$/;"	m
+VPATH	build/man/ja/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/ja$/;"	m
+VPATH	build/man/pt_BR/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/pt_BR$/;"	m
+VPATH	build/man/ru/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/ru$/;"	m
+VPATH	build/man/sv/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/sv$/;"	m
+VPATH	build/methods/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/methods$/;"	m
+VPATH	build/optlib/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/optlib$/;"	m
+VPATH	build/po/Makefile	/^VPATH = \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/po$/;"	m
+VPATH	build/scripts/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/scripts$/;"	m
+VPATH	build/split/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/split$/;"	m
+VPATH	build/utils/Makefile	/^VPATH		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/utils$/;"	m
+WCOREDUMP	build/config.h	465;"	d
+WriteOverrides	debian/tmp/dpkg-static/usr/sbin/dpkg-statoverride	/^sub WriteOverrides {$/;"	s
+WriteOverrides	debian/tmp/dpkg/usr/sbin/dpkg-statoverride	/^sub WriteOverrides {$/;"	s
+WriteOverrides	debian/tmp/install/usr/sbin/dpkg-statoverride	/^sub WriteOverrides {$/;"	s
+WriteOverrides	scripts/dpkg-statoverride.pl	/^sub WriteOverrides {$/;"	s
+XGETTEXT	build/po/Makefile	/^XGETTEXT = :$/;"	m
+XGETTEXT_OPTIONS	build/po/Makefile	/^XGETTEXT_OPTIONS = --keyword=_ --keyword=N_$/;"	m
+YYABORT	optlib/getdate.c	434;"	d	file:
+YYACCEPT	optlib/getdate.c	433;"	d	file:
+YYBACKUP	optlib/getdate.c	442;"	d	file:
+YYBISON	optlib/getdate.c	6;"	d	file:
+YYEMPTY	optlib/getdate.c	431;"	d	file:
+YYEOF	optlib/getdate.c	432;"	d	file:
+YYERRCODE	optlib/getdate.c	455;"	d	file:
+YYERROR	optlib/getdate.c	435;"	d	file:
+YYFAIL	optlib/getdate.c	440;"	d	file:
+YYFINAL	optlib/getdate.c	214;"	d	file:
+YYFLAG	optlib/getdate.c	215;"	d	file:
+YYINITDEPTH	optlib/getdate.c	502;"	d	file:
+YYLAST	optlib/getdate.c	346;"	d	file:
+YYLEX	optlib/getdate.c	458;"	d	file:
+YYLEX	optlib/getdate.c	464;"	d	file:
+YYLEX	optlib/getdate.c	466;"	d	file:
+YYLEX	optlib/getdate.c	470;"	d	file:
+YYLEX	optlib/getdate.c	472;"	d	file:
+YYMAXDEPTH	optlib/getdate.c	509;"	d	file:
+YYMAXDEPTH	optlib/getdate.c	513;"	d	file:
+YYNTBASE	optlib/getdate.c	216;"	d	file:
+YYPARSE_PARAM_ARG	optlib/getdate.c	570;"	d	file:
+YYPARSE_PARAM_ARG	optlib/getdate.c	573;"	d	file:
+YYPARSE_PARAM_ARG	optlib/getdate.c	577;"	d	file:
+YYPARSE_PARAM_DECL	optlib/getdate.c	571;"	d	file:
+YYPARSE_PARAM_DECL	optlib/getdate.c	574;"	d	file:
+YYPARSE_PARAM_DECL	optlib/getdate.c	578;"	d	file:
+YYPOPSTACK	optlib/getdate.c	603;"	d	file:
+YYPOPSTACK	optlib/getdate.c	605;"	d	file:
+YYRECOVERING	optlib/getdate.c	441;"	d	file:
+YYSTYPE	optlib/getdate.c	/^} YYSTYPE;$/;"	t	file:
+YYTERROR	optlib/getdate.c	454;"	d	file:
+YYTRANSLATE	optlib/getdate.c	218;"	d	file:
+ZLIB_LIBS	build/dpkg-deb/Makefile	/^dpkg-deb-static: ZLIB_LIBS = $(ZLIB_LIBS_ALSO_STATIC)$/;"	m
+ZLIB_LIBS	build/main/Makefile	/^dpkg-static: ZLIB_LIBS = $(ZLIBS_LIBS_ALSO_STATIC)$/;"	m
+ZLIB_LIBS	build/utils/Makefile	/^md5sum-static: ZLIB_LIBS = $(ZLIBS_LIBS_ALSO_STATIC)$/;"	m
+_	build/include/dpkg.h	153;"	d
+_	build/include/dpkg.h	160;"	d
+_	optlib/closeout.c	24;"	d	file:
+_	optlib/closeout.c	26;"	d	file:
+_	optlib/getopt.c	95;"	d	file:
+_	optlib/getopt.c	97;"	d	file:
+_	optlib/obstack.c	463;"	d	file:
+_	optlib/obstack.c	466;"	d	file:
+_	utils/md5sum.c	36;"	d	file:
+_	utils/md5sum.c	42;"	d	file:
+_ERROR_H	optlib/error.h	23;"	d
+_GETOPT_H	optlib/getopt.h	25;"	d
+_MERIDIAN	optlib/getdate.c	/^typedef enum _MERIDIAN {$/;"	g	file:
+_NO_PROTO	optlib/getopt.c	32;"	d	file:
+_OBSTACK_H	optlib/obstack.h	108;"	d
+_TABLE	optlib/getdate.c	/^typedef struct _TABLE {$/;"	s	file:
+_TAR_FUNCTION_H_	include/tarfn.h	2;"	d
+__INT_TO_PTR	optlib/obstack.h	123;"	d
+__PTR_TO_INT	optlib/obstack.h	119;"	d
+__extension__	optlib/obstack.h	358;"	d
+__getopt_initialized	optlib/getopt.c	/^int __getopt_initialized = 0;$/;"	v
+__illegal_packagename	lib/parsehelp.c	/^const char *__illegal_packagename(const char *p, const char **ep) {$/;"	f
+__va_copy	build/config.h	458;"	d
+__yy_memcpy	optlib/getdate.c	/^__yy_memcpy (char *to, char *from, int count)$/;"	f	file:
+__yy_memcpy	optlib/getdate.c	/^__yy_memcpy (to, from, count)$/;"	f	file:
+__yy_memcpy	optlib/getdate.c	522;"	d	file:
+_ascii	configure	/^ _ascii (); _ebcdic ();$/;"	f
+_finfo	dpkg-deb/build.c	/^struct _finfo {$/;"	s	file:
+_getopt_initialize	optlib/getopt.c	/^_getopt_initialize (argc, argv, optstring)$/;"	f	file:
+_getopt_internal	optlib/getopt.c	/^_getopt_internal (argc, argv, optstring, longopts, longind, long_only)$/;"	f
+_obstack	optlib/obstack.c	/^struct obstack *_obstack;$/;"	v
+_obstack_allocated_p	optlib/obstack.c	/^_obstack_allocated_p (h, obj)$/;"	f
+_obstack_begin	optlib/obstack.c	/^_obstack_begin (h, size, alignment, chunkfun, freefun)$/;"	f
+_obstack_begin_1	optlib/obstack.c	/^_obstack_begin_1 (h, size, alignment, chunkfun, freefun, arg)$/;"	f
+_obstack_chunk	optlib/obstack.h	/^struct _obstack_chunk		\/* Lives at front of each chunk. *\/$/;"	s
+_obstack_free	optlib/obstack.c	/^_obstack_free (h, obj)$/;"	f
+_obstack_memcpy	optlib/obstack.h	145;"	d
+_obstack_memcpy	optlib/obstack.h	148;"	d
+_obstack_memcpy	optlib/obstack.h	150;"	d
+_obstack_memory_used	optlib/obstack.c	/^_obstack_memory_used (h)$/;"	f
+_obstack_newchunk	optlib/obstack.c	/^_obstack_newchunk (h, length)$/;"	f
+abstract	build/doc/internals.html/index.html	/^<a name="abstract"><\/a>$/;"	a
+abstract	debian/tmp/install/usr/share/doc/dpkg/internals/index.html	/^<a name="abstract"><\/a>$/;"	a
+act_assertepoch	main/main.h	/^              act_assertepoch, act_assertlongfilenames, act_assertmulticonrep,$/;"	e	enum:action
+act_assertlongfilenames	main/main.h	/^              act_assertepoch, act_assertlongfilenames, act_assertmulticonrep,$/;"	e	enum:action
+act_assertmulticonrep	main/main.h	/^              act_assertepoch, act_assertlongfilenames, act_assertmulticonrep,$/;"	e	enum:action
+act_assertpredep	main/main.h	/^              act_assertpredep, act_printarch, act_predeppackage, act_cmpversions,$/;"	e	enum:action
+act_audit	main/main.h	/^              act_unpackchk, act_status, act_searchfiles, act_audit, act_listfiles,$/;"	e	enum:action
+act_avail	main/main.h	/^enum action { act_unset, act_install, act_unpack, act_avail, act_configure,$/;"	e	enum:action
+act_avclear	main/main.h	/^              act_printinstarch, act_compareversions, act_printavail, act_avclear,$/;"	e	enum:action
+act_avmerge	main/main.h	/^              act_remove, act_purge, act_listpackages, act_avreplace, act_avmerge,$/;"	e	enum:action
+act_avreplace	main/main.h	/^              act_remove, act_purge, act_listpackages, act_avreplace, act_avmerge,$/;"	e	enum:action
+act_cmpversions	main/main.h	/^              act_assertpredep, act_printarch, act_predeppackage, act_cmpversions,$/;"	e	enum:action
+act_commandfd	main/main.h	/^	      act_commandfd };$/;"	e	enum:action
+act_compareversions	main/main.h	/^              act_printinstarch, act_compareversions, act_printavail, act_avclear,$/;"	e	enum:action
+act_configure	main/main.h	/^enum action { act_unset, act_install, act_unpack, act_avail, act_configure,$/;"	e	enum:action
+act_forgetold	main/main.h	/^              act_forgetold, act_getselections, act_setselections, act_printgnuarch,$/;"	e	enum:action
+act_getselections	main/main.h	/^              act_forgetold, act_getselections, act_setselections, act_printgnuarch,$/;"	e	enum:action
+act_install	main/main.h	/^enum action { act_unset, act_install, act_unpack, act_avail, act_configure,$/;"	e	enum:action
+act_listfiles	main/main.h	/^              act_unpackchk, act_status, act_searchfiles, act_audit, act_listfiles,$/;"	e	enum:action
+act_listpackages	main/main.h	/^              act_remove, act_purge, act_listpackages, act_avreplace, act_avmerge,$/;"	e	enum:action
+act_predeppackage	main/main.h	/^              act_assertpredep, act_printarch, act_predeppackage, act_cmpversions,$/;"	e	enum:action
+act_printarch	main/main.h	/^              act_assertpredep, act_printarch, act_predeppackage, act_cmpversions,$/;"	e	enum:action
+act_printavail	main/main.h	/^              act_printinstarch, act_compareversions, act_printavail, act_avclear,$/;"	e	enum:action
+act_printgnuarch	main/main.h	/^              act_forgetold, act_getselections, act_setselections, act_printgnuarch,$/;"	e	enum:action
+act_printinstarch	main/main.h	/^              act_printinstarch, act_compareversions, act_printavail, act_avclear,$/;"	e	enum:action
+act_purge	main/main.h	/^              act_remove, act_purge, act_listpackages, act_avreplace, act_avmerge,$/;"	e	enum:action
+act_remove	main/main.h	/^              act_remove, act_purge, act_listpackages, act_avreplace, act_avmerge,$/;"	e	enum:action
+act_searchfiles	main/main.h	/^              act_unpackchk, act_status, act_searchfiles, act_audit, act_listfiles,$/;"	e	enum:action
+act_setselections	main/main.h	/^              act_forgetold, act_getselections, act_setselections, act_printgnuarch,$/;"	e	enum:action
+act_status	main/main.h	/^              act_unpackchk, act_status, act_searchfiles, act_audit, act_listfiles,$/;"	e	enum:action
+act_unpack	main/main.h	/^enum action { act_unset, act_install, act_unpack, act_avail, act_configure,$/;"	e	enum:action
+act_unpackchk	main/main.h	/^              act_unpackchk, act_status, act_searchfiles, act_audit, act_listfiles,$/;"	e	enum:action
+act_unset	main/main.h	/^enum action { act_unset, act_install, act_unpack, act_avail, act_configure,$/;"	e	enum:action
+action	dpkg-deb/main.c	/^dofunction *action=0;$/;"	v
+action	dselect/bindings.h	/^    const char *action, *desc;$/;"	m	struct:keybindings::description
+action	dselect/bindings.h	/^    const char *action;$/;"	m	struct:keybindings::orgbinding
+action	dselect/bindings.h	/^  const char *action;$/;"	m	struct:keybindings::interpretation
+action	main/main.h	/^enum action { act_unset, act_install, act_unpack, act_avail, act_configure,$/;"	g
+action	split/main.c	/^dofunction *action=NULL;$/;"	v
+add	debian/tmp/dpkg-static/usr/lib/dpkg/mksplit	/^sub add {$/;"	s
+add	debian/tmp/dpkg/usr/lib/dpkg/mksplit	/^sub add {$/;"	s
+add	debian/tmp/install/usr/lib/dpkg/mksplit	/^sub add {$/;"	s
+add	dselect/pkglist.h	/^  void add(pkginfo **arry) { while (*arry) add(*arry++); }$/;"	f	class:packagelist
+add	dselect/pkgsublist.cc	/^int packagelist::add(dependency *depends, showpriority displayimportance) {$/;"	f	class:packagelist
+add	dselect/pkgsublist.cc	/^void packagelist::add(pkginfo *pkg) {$/;"	f	class:packagelist
+add	dselect/pkgsublist.cc	/^void packagelist::add(pkginfo *pkg, const char *extrainfo, showpriority showimp) {$/;"	f	class:packagelist
+add	dselect/pkgsublist.cc	/^void packagelist::add(pkginfo *pkg, pkginfo::pkgwant nw) {$/;"	f	class:packagelist
+add	split/mksplit.pl	/^sub add {$/;"	s
+add_to_filist	dpkg-deb/build.c	/^static void add_to_filist(struct _finfo* fi, struct _finfo** start, struct _finfo **end) {$/;"	f	file:
+add_to_queue	main/packages.c	/^void add_to_queue(struct pkginfo *pkg) {$/;"	f
+addfile	debian/tmp/install/usr/bin/dpkg-source	/^sub addfile {$/;"	s
+addfile	scripts/dpkg-source.pl	/^sub addfile {$/;"	s
+addheading	dselect/pkglist.cc	/^void packagelist::addheading(enum ssavailval ssavail,$/;"	f	class:packagelist
+addtopartlist	split/join.c	/^void addtopartlist(struct partinfo **partlist,$/;"	f
+addunavailable	dselect/pkgsublist.cc	/^void packagelist::addunavailable(deppossi *possi) {$/;"	f	class:packagelist
+admindir	dselect/main.cc	/^const char *admindir= ADMINDIR;$/;"	v
+admindir	lib/dbmodify.c	/^static const char *admindir;$/;"	v	file:
+admindir	main/main.c	/^const char *admindir= ADMINDIR;$/;"	v
+admindir	main/query.c	/^const char *admindir= ADMINDIR;$/;"	v
+affectedmatches	dselect/pkgcmds.cc	/^int packagelist::affectedmatches(struct pkginfo *pkg, struct pkginfo *comparewith) {$/;"	f	class:packagelist
+affectedrange	dselect/pkgcmds.cc	/^void packagelist::affectedrange(int *startp, int *endp) {$/;"	f	class:packagelist
+alignment_mask	optlib/obstack.h	/^  int   alignment_mask;		\/* Mask of alignment for each object. *\/$/;"	m	struct:obstack
+alloc_failed	optlib/obstack.h	/^  unsigned alloc_failed:1;	\/* No longer used, as we now call the failed$/;"	m	struct:obstack
+alloca	optlib/getdate.c	393;"	d	file:
+alloclstitem	lib/showpkg.c	/^static struct lstitem* alloclstitem(void) {$/;"	f	file:
+allpackagesdone	main/filesdb.c	/^static int allpackagesdone= 0;$/;"	v	file:
+alphasort	lib/compat.c	/^int alphasort(const struct dirent *a, const struct dirent *b) {$/;"	f
+alreadydone	dselect/pkgsublist.cc	/^int packagelist::alreadydone(doneent **done, void *check) {$/;"	f	class:packagelist
+arbitraryfield	include/dpkg-db.h	/^struct arbitraryfield {$/;"	s
+arbs	include/dpkg-db.h	/^  struct arbitraryfield *arbs;$/;"	m	struct:pkginfoperfile
+architecture	include/dpkg-db.h	/^  char *description, *maintainer, *source, *architecture, *installedsize, *origin, *bugs;$/;"	m	struct:pkginfoperfile
+architecture	main/main.c	/^const char architecture[]= ARCHITECTURE;$/;"	v
+archivefiles	main/archives.c	/^void archivefiles(const char *const *argv) {$/;"	f
+arg	include/myopt.h	/^  int arg;$/;"	m	struct:cmdinfo
+argc	lib/ehandle.c	/^  int argc;$/;"	m	struct:cleanupentry	file:
+args	lib/ehandle.c	/^static struct { struct cleanupentry ce; void *args[20]; } emergency;$/;"	m	file:
+argv	lib/ehandle.c	/^  void *argv[1];$/;"	m	struct:cleanupentry	file:
+assertepoch	main/enquiry.c	/^void assertepoch(const char *const *argv) {$/;"	f
+assertlongfilenames	main/enquiry.c	/^void assertlongfilenames(const char *const *argv) {$/;"	f
+assertmulticonrep	main/enquiry.c	/^void assertmulticonrep(const char *const *argv) {$/;"	f
+assertpredep	main/enquiry.c	/^void assertpredep(const char *const *argv) {$/;"	f
+assertversion	main/enquiry.c	/^static void assertversion(const char *const *argv,$/;"	f	file:
+attr	dselect/dselect.h	/^       int attr;$/;"	m	struct:colordata
+attrtable	dselect/main.cc	/^static const struct table_t attrtable[]= {$/;"	v	file:
+audit	main/enquiry.c	/^void audit(const char *const *argv) {$/;"	f
+autowarn	dselect/mkhelpmsgs.pl	/^sub autowarn {$/;"	s
+available	include/dpkg-db.h	/^  struct pkginfoperfile available;$/;"	m	struct:pkginfo
+availablefile	lib/dbmodify.c	/^char *statusfile=NULL, *availablefile=NULL;$/;"	v
+back	dselect/dselect.h	/^       int back;$/;"	m	struct:colordata
+back	dselect/method.h	/^  struct method *next, *back;$/;"	m	struct:method
+back	main/depcon.c	/^  struct cyclesofarlink *back;$/;"	m	struct:cyclesofarlink	file:
+backendpipe	main/archives.h	/^  int backendpipe;$/;"	m	struct:tarcontext
+background	dselect/dselect.h	/^       background,$/;"	e	enum:screenparts
+background	utils/start-stop-daemon.c	/^static int background = 0;$/;"	v	file:
+backrev	include/dpkg-db.h	/^  struct deppossi *next, *nextrev, *backrev;$/;"	m	struct:deppossi
+badfmt	debian/tmp/dpkg-static/usr/sbin/dpkg-divert	/^sub badfmt { &quit("internal error: $admindir\/diversions corrupt: $_[0]"); }$/;"	s
+badfmt	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub badfmt {$/;"	s
+badfmt	debian/tmp/dpkg/usr/sbin/dpkg-divert	/^sub badfmt { &quit("internal error: $admindir\/diversions corrupt: $_[0]"); }$/;"	s
+badfmt	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub badfmt {$/;"	s
+badfmt	debian/tmp/install/usr/sbin/dpkg-divert	/^sub badfmt { &quit("internal error: $admindir\/diversions corrupt: $_[0]"); }$/;"	s
+badfmt	debian/tmp/install/usr/sbin/update-alternatives	/^sub badfmt {$/;"	s
+badfmt	scripts/dpkg-divert.pl	/^sub badfmt { &quit("internal error: $admindir\/diversions corrupt: $_[0]"); }$/;"	s
+badfmt	scripts/update-alternatives.pl	/^sub badfmt {$/;"	s
+badlgccfn	main/enquiry.c	/^static void badlgccfn(const char *compiler, const char *output, const char *why) {$/;"	f	file:
+badmethod	dselect/methparse.cc	/^static void badmethod(const char *pathname, const char *why)$/;"	f	file:
+badstatinfo	main/enquiry.c	/^struct badstatinfo {$/;"	s	file:
+badstatinfos	main/enquiry.c	/^static const struct badstatinfo badstatinfos[]= {$/;"	v	file:
+badusage	debian/tmp/dpkg-static/usr/sbin/dpkg-divert	/^sub badusage { print STDERR "dpkg-divert: @_\\n\\n"; print("You need --help.\\n"); exit(2); }$/;"	s
+badusage	debian/tmp/dpkg-static/usr/sbin/dpkg-statoverride	/^sub badusage { print STDERR "dpkg-statoverride: @_\\n\\n"; print("You need --help.\\n"); exit(2); }$/;"	s
+badusage	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub badusage { print STDERR "update-alternatives: @_\\n\\n"; &usageversion; exit(2); }$/;"	s
+badusage	debian/tmp/dpkg/usr/sbin/dpkg-divert	/^sub badusage { print STDERR "dpkg-divert: @_\\n\\n"; print("You need --help.\\n"); exit(2); }$/;"	s
+badusage	debian/tmp/dpkg/usr/sbin/dpkg-statoverride	/^sub badusage { print STDERR "dpkg-statoverride: @_\\n\\n"; print("You need --help.\\n"); exit(2); }$/;"	s
+badusage	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub badusage { print STDERR "update-alternatives: @_\\n\\n"; &usageversion; exit(2); }$/;"	s
+badusage	debian/tmp/install/usr/sbin/dpkg-divert	/^sub badusage { print STDERR "dpkg-divert: @_\\n\\n"; print("You need --help.\\n"); exit(2); }$/;"	s
+badusage	debian/tmp/install/usr/sbin/dpkg-statoverride	/^sub badusage { print STDERR "dpkg-statoverride: @_\\n\\n"; print("You need --help.\\n"); exit(2); }$/;"	s
+badusage	debian/tmp/install/usr/sbin/update-alternatives	/^sub badusage { print STDERR "update-alternatives: @_\\n\\n"; &usageversion; exit(2); }$/;"	s
+badusage	lib/ehandle.c	/^void badusage(const char *fmt, ...) {$/;"	f
+badusage	scripts/dpkg-divert.pl	/^sub badusage { print STDERR "dpkg-divert: @_\\n\\n"; print("You need --help.\\n"); exit(2); }$/;"	s
+badusage	scripts/dpkg-statoverride.pl	/^sub badusage { print STDERR "dpkg-statoverride: @_\\n\\n"; print("You need --help.\\n"); exit(2); }$/;"	s
+badusage	scripts/update-alternatives.pl	/^sub badusage { print STDERR "update-alternatives: @_\\n\\n"; &usageversion; exit(2); }$/;"	s
+badusage	utils/start-stop-daemon.c	/^badusage(const char *msg)$/;"	f	file:
+baseinfo	dselect/pkginfo.cc	/^const packagelist::infotype *const packagelist::baseinfo= infoinfos;$/;"	m	class:packagelist::packagelist	file:
+baseinfo	dselect/pkglist.h	/^  static const infotype *const baseinfo;$/;"	m	class:packagelist
+baselist	dselect/baselist.cc	/^baselist::baselist(keybindings *kb) {$/;"	f	class:baselist
+baselist	dselect/dselect.h	/^class baselist {$/;"	c
+bcopy	optlib/getdate.c	89;"	d	file:
+bin_mode	utils/md5sum.c	/^int bin_mode = 0;$/;"	v
+bind	dselect/bindings.cc	/^int keybindings::bind(int key, const char *action) {$/;"	f	class:keybindings
+bind	dselect/bindings.h	/^  int bind(const char *name, const char *action) { return bind(name2key(name),action); }$/;"	f	struct:keybindings
+binding	dselect/bindings.h	/^  struct binding {$/;"	s	struct:keybindings
+bindings	dselect/bindings.h	/^  binding *bindings;$/;"	m	struct:keybindings
+bindings	dselect/dselect.h	/^  keybindings *bindings;$/;"	m	class:baselist
+bindtextdomain	build/include/dpkg.h	156;"	d
+bindtextdomain	build/include/dpkg.h	157;"	d
+bindtextdomain	utils/md5sum.c	38;"	d	file:
+bindtextdomain	utils/md5sum.c	39;"	d	file:
+bins	lib/database.c	/^static struct pkginfo *bins[BINS];$/;"	v	file:
+bins	main/filesdb.c	/^static struct filenamenode *bins[BINS];$/;"	v	file:
+blankpackage	lib/database.c	/^void blankpackage(struct pkginfo *pigp) {$/;"	f
+blankpackageperfile	lib/database.c	/^void blankpackageperfile(struct pkginfoperfile *pifp) {$/;"	f
+blankversion	lib/database.c	/^void blankversion(struct versionrevision *version) {$/;"	f
+bn	build/doc/Makefile	/^		bn=`basename $$i` ; \\$/;"	m
+booleaninfos	lib/parsehelp.c	/^const struct namevalue booleaninfos[]= {  \/* Note !  These must be in order ! *\/$/;"	v
+bsyn_reinstreq	main/enquiry.c	/^static int bsyn_reinstreq(struct pkginfo *pkg, const struct badstatinfo *bsi) {$/;"	f	file:
+bsyn_status	main/enquiry.c	/^static int bsyn_status(struct pkginfo *pkg, const struct badstatinfo *bsi) {$/;"	f	file:
+buf	include/dpkg-db.h	/^  char *buf;$/;"	m	struct:varbuf
+buf	lib/md5.h	/^	UWORD32 buf[4];$/;"	m	struct:MD5Context
+buffer_arg	build/include/dpkg.h	/^typedef union buffer_arg {$/;"	u
+buffer_arg	build/include/dpkg.h	/^} buffer_arg;$/;"	t
+buffer_copy	lib/mlib.c	/^ssize_t buffer_copy(buffer_data_t read_data, buffer_data_t write_data, ssize_t limit, const char *desc) {$/;"	f
+buffer_copy_setup	lib/mlib.c	/^ssize_t buffer_copy_setup(buffer_arg argIn, int typeIn, void *procIn,$/;"	f
+buffer_copy_setup_dual	lib/mlib.c	245;"	d	file:
+buffer_data	build/include/dpkg.h	/^struct buffer_data {$/;"	s
+buffer_data_t	build/include/dpkg.h	/^typedef struct buffer_data *buffer_data_t;$/;"	t
+buffer_proc_t	build/include/dpkg.h	/^typedef ssize_t (*buffer_proc_t)(buffer_data_t data, void *buf, ssize_t size, const char *desc);$/;"	t
+buffer_read	lib/mlib.c	/^ssize_t buffer_read(buffer_data_t data, void *buf, ssize_t length, const char *desc) {$/;"	f
+buffer_write	lib/mlib.c	/^ssize_t buffer_write(buffer_data_t data, void *buf, ssize_t length, const char *desc) {$/;"	f
+buffer_write_md5ctx	lib/mlib.c	/^struct buffer_write_md5ctx {$/;"	s	file:
+bugs	include/dpkg-db.h	/^  char *description, *maintainer, *source, *architecture, *installedsize, *origin, *bugs;$/;"	m	struct:pkginfoperfile
+build_conflicts	debian/tmp/install/usr/bin/dpkg-checkbuilddeps	/^sub build_conflicts {$/;"	s
+build_conflicts	scripts/dpkg-checkbuilddeps.pl	/^sub build_conflicts {$/;"	s
+build_depends	debian/tmp/install/usr/bin/dpkg-checkbuilddeps	/^sub build_depends {$/;"	s
+build_depends	scripts/dpkg-checkbuilddeps.pl	/^sub build_depends {$/;"	s
+buildarglist	main/help.c	/^static char *const *buildarglist(const char *scriptname, ...) {$/;"	f	file:
+byteSwap	lib/md5.c	/^byteSwap(UWORD32 *buf, unsigned words)$/;"	f
+byteSwap	lib/md5.c	43;"	d	file:
+bytes	lib/md5.h	/^	UWORD32 bytes[2];$/;"	m	struct:MD5Context
+calcssadone	dselect/pkglist.h	/^  int calcssadone, calcsssdone;$/;"	m	class:packagelist
+calcsssdone	dselect/pkglist.h	/^  int calcssadone, calcsssdone;$/;"	m	class:packagelist
+call	include/myopt.h	/^  void (*call)(const struct cmdinfo*, const char *value);$/;"	m	struct:cmdinfo
+call	lib/ehandle.c	/^    void (*call)(int argc, void **argv);$/;"	m	struct:cleanupentry::<anonymous>	file:
+calls	lib/ehandle.c	/^  } calls[NCALLS];$/;"	m	struct:cleanupentry	file:
+camefrom	main/filesdb.h	/^  struct filenamenode *camefrom;$/;"	m	struct:diversion
+canon	include/parsedump.h	/^  const char *canon;$/;"	m	struct:nickname
+capit	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub capit {$/;"	s
+capit	dselect/mkcurkeys.pl	/^sub capit {$/;"	s
+capit	scripts/controllib.pl	/^sub capit {$/;"	s
+cat	build/po/Makefile	/^	  cat=`basename $$cat`; \\$/;"	m
+catalogs	build/po/Makefile	/^	catalogs='$(CATALOGS)'; \\$/;"	m
+catchsignals	dselect/method.cc	/^static int catchsignals[]= { SIGQUIT, SIGINT, 0 };$/;"	v	file:
+cdcmd	build/po/Makefile	/^	test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \\$/;"	m
+ce	lib/ehandle.c	/^static struct { struct cleanupentry ce; void *args[20]; } emergency;$/;"	m	file:
+cflags	lib/dbmodify.c	/^static enum modstatdb_rw cstatus=-1, cflags=0;$/;"	v	file:
+cflict_index	main/archives.c	/^int cflict_index = 0;$/;"	v
+cfo_identical	main/main.h	/^  cfo_identical      =   cfof_keep$/;"	e	enum:conffopt
+cfo_install	main/main.h	/^  cfo_install        =                             cfof_install,$/;"	e	enum:conffopt
+cfo_keep	main/main.h	/^  cfo_keep           =   cfof_keep,$/;"	e	enum:conffopt
+cfo_newconff	main/main.h	/^  cfo_newconff       =                             cfof_install | cfof_newconff,$/;"	e	enum:conffopt
+cfo_prompt	main/main.h	/^  cfo_prompt         =               cfof_prompt,$/;"	e	enum:conffopt
+cfo_prompt_install	main/main.h	/^  cfo_prompt_install =               cfof_prompt | cfof_install,$/;"	e	enum:conffopt
+cfo_prompt_keep	main/main.h	/^  cfo_prompt_keep    =   cfof_keep | cfof_prompt,$/;"	e	enum:conffopt
+cfof_backup	main/main.h	/^  cfof_backup        =    0100,$/;"	e	enum:conffopt
+cfof_install	main/main.h	/^  cfof_install       =     004,$/;"	e	enum:conffopt
+cfof_isnew	main/main.h	/^  cfof_isnew         =    0400,$/;"	e	enum:conffopt
+cfof_keep	main/main.h	/^  cfof_keep          =     002,$/;"	e	enum:conffopt
+cfof_newconff	main/main.h	/^  cfof_newconff      =    0200,$/;"	e	enum:conffopt
+cfof_prompt	main/main.h	/^  cfof_prompt        =     001,$/;"	e	enum:conffopt
+cfom_main	main/main.h	/^  cfom_main          =     007,$/;"	e	enum:conffopt
+ch-build	build/doc/internals.html/ch-build.html	/^<a name="ch-build"><\/a>$/;"	a
+ch-build	debian/tmp/install/usr/share/doc/dpkg/internals/ch-build.html	/^<a name="ch-build"><\/a>$/;"	a
+ch-code	build/doc/internals.html/ch-code.html	/^<a name="ch-code"><\/a>$/;"	a
+ch-code	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="ch-code"><\/a>$/;"	a
+changegroup	utils/start-stop-daemon.c	/^static const char *changegroup = NULL;$/;"	v	file:
+changeroot	utils/start-stop-daemon.c	/^static char *changeroot = NULL;$/;"	v	file:
+changeuser	utils/start-stop-daemon.c	/^static char *changeuser = NULL;$/;"	v	file:
+check	utils/start-stop-daemon.c	/^check(pid_t pid)$/;"	f	file:
+check_all	utils/start-stop-daemon.c	/^check_all(void *ptr)$/;"	f
+check_binary	debian/tmp/dselect/usr/lib/dpkg/methods/disk/setup	/^check_binary () {$/;"	f
+check_conflict	main/archives.c	/^void check_conflict(struct dependency *dep, struct pkginfo *pkg,$/;"	f
+check_line	debian/tmp/install/usr/bin/dpkg-checkbuilddeps	/^sub check_line {$/;"	s
+check_line	scripts/dpkg-checkbuilddeps.pl	/^sub check_line {$/;"	s
+checkdependers	dselect/pkgdepcon.cc	/^int packagelist::checkdependers(pkginfo *pkg, int changemade) {$/;"	f	class:packagelist
+checked_mv	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub checked_mv {$/;"	s
+checked_mv	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub checked_mv {$/;"	s
+checked_mv	debian/tmp/install/usr/sbin/update-alternatives	/^sub checked_mv {$/;"	s
+checked_mv	scripts/update-alternatives.pl	/^sub checked_mv {$/;"	s
+checked_symlink	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub checked_symlink {$/;"	s
+checked_symlink	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub checked_symlink {$/;"	s
+checked_symlink	debian/tmp/install/usr/sbin/update-alternatives	/^sub checked_symlink {$/;"	s
+checked_symlink	scripts/update-alternatives.pl	/^sub checked_symlink {$/;"	s
+checkforremoval	main/remove.c	/^static void checkforremoval(struct pkginfo *pkgtoremove,$/;"	f	file:
+checkmanymodes	debian/tmp/dpkg-static/usr/sbin/dpkg-divert	/^sub checkmanymodes {$/;"	s
+checkmanymodes	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub checkmanymodes {$/;"	s
+checkmanymodes	debian/tmp/dpkg/usr/sbin/dpkg-divert	/^sub checkmanymodes {$/;"	s
+checkmanymodes	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub checkmanymodes {$/;"	s
+checkmanymodes	debian/tmp/install/usr/sbin/dpkg-divert	/^sub checkmanymodes {$/;"	s
+checkmanymodes	debian/tmp/install/usr/sbin/update-alternatives	/^sub checkmanymodes {$/;"	s
+checkmanymodes	scripts/dpkg-divert.pl	/^sub checkmanymodes {$/;"	s
+checkmanymodes	scripts/update-alternatives.pl	/^sub checkmanymodes {$/;"	s
+checkpath	main/help.c	/^void checkpath(void) {$/;"	f
+checkpipe	debian/tmp/dpkg-static/usr/sbin/install-info	/^sub checkpipe {$/;"	s
+checkpipe	debian/tmp/dpkg/usr/sbin/install-info	/^sub checkpipe {$/;"	s
+checkpipe	debian/tmp/install/usr/sbin/install-info	/^sub checkpipe {$/;"	s
+checkpipe	scripts/install-info.pl	/^sub checkpipe {$/;"	s
+checkpoint	lib/dbmodify.c	/^static void checkpoint(void) {$/;"	f	file:
+checkrename	debian/tmp/dpkg-static/usr/sbin/dpkg-divert	/^sub checkrename {$/;"	s
+checkrename	debian/tmp/dpkg/usr/sbin/dpkg-divert	/^sub checkrename {$/;"	s
+checkrename	debian/tmp/install/usr/sbin/dpkg-divert	/^sub checkrename {$/;"	s
+checkrename	scripts/dpkg-divert.pl	/^sub checkrename {$/;"	s
+checksearch	dselect/basecmds.cc	/^int baselist::checksearch(char* str) {$/;"	f	class:baselist
+checksearch	dselect/pkglist.cc	/^int packagelist::checksearch(char* rx) {$/;"	f	class:packagelist
+checkstats	debian/tmp/install/usr/bin/dpkg-source	/^sub checkstats {$/;"	s
+checkstats	scripts/dpkg-source.pl	/^sub checkstats {$/;"	s
+checksubprocerr	lib/mlib.c	/^int checksubprocerr(int status, const char *description, int flags) {$/;"	f
+checktarcpio	debian/tmp/install/usr/bin/dpkg-source	/^sub checktarcpio {$/;"	s
+checktarcpio	scripts/dpkg-source.pl	/^sub checktarcpio {$/;"	s
+checktarsane	debian/tmp/install/usr/bin/dpkg-source	/^sub checktarsane {$/;"	s
+checktarsane	scripts/dpkg-source.pl	/^sub checktarsane {$/;"	s
+checktype	debian/tmp/install/usr/bin/dpkg-source	/^sub checktype {$/;"	s
+checktype	scripts/dpkg-source.pl	/^sub checktype {$/;"	s
+checkversion	dpkg-deb/build.c	/^static void checkversion(const char *vstring, const char *valuename, int *errs) {$/;"	f	file:
+chmodsafe_unlink	main/help.c	/^int chmodsafe_unlink(const char *pathname) {$/;"	f
+chunk	optlib/obstack.h	/^  struct _obstack_chunk *chunk;	\/* address of current struct obstack_chunk *\/$/;"	m	struct:obstack
+chunk_limit	optlib/obstack.h	/^  char	*chunk_limit;		\/* address of char after current chunk *\/$/;"	m	struct:obstack
+chunk_size	optlib/obstack.h	/^  long	chunk_size;		\/* preferred size to allocate chunks in *\/$/;"	m	struct:obstack
+chunkfun	optlib/obstack.h	/^  struct _obstack_chunk *(*chunkfun) (); \/* User's fcn to allocate a chunk.  *\/$/;"	m	struct:obstack
+chunkfun	optlib/obstack.h	/^  struct _obstack_chunk *(*chunkfun) (void *, long);$/;"	m	struct:obstack
+cipaction	dpkg-deb/main.c	/^const struct cmdinfo *cipaction=0;$/;"	v
+cipaction	main/main.c	/^const struct cmdinfo *cipaction= 0;$/;"	v
+cipaction	main/query.c	/^const struct cmdinfo *cipaction= 0;$/;"	v
+cipaction	split/main.c	/^const struct cmdinfo *cipaction=NULL;$/;"	v
+cisalpha	lib/utils.c	/^int cisalpha(int c) {$/;"	f
+cisdigit	lib/utils.c	/^int cisdigit(int c) {$/;"	f
+cleanup_conflictor_failed	main/cleanup.c	/^int cleanup_pkg_failed=0, cleanup_conflictor_failed=0;$/;"	v
+cleanup_pkg_failed	main/cleanup.c	/^int cleanup_pkg_failed=0, cleanup_conflictor_failed=0;$/;"	v
+cleanupdates	lib/dbmodify.c	/^static void cleanupdates(void) {$/;"	f	file:
+cleanupentry	lib/ehandle.c	/^struct cleanupentry {$/;"	s	file:
+cleanups	lib/ehandle.c	/^  struct cleanupentry *cleanups;$/;"	m	struct:errorcontext	file:
+clear	utils/start-stop-daemon.c	/^clear(struct pid_list **list)$/;"	f	file:
+clear_istobes	main/help.c	/^void clear_istobes(void) {$/;"	f
+clerror	debian/tmp/install/usr/lib/dpkg/parsechangelog/debian	/^sub clerror { &error("$_[0], at changelog line $."); }$/;"	s
+clerror	scripts/cl-debian.pl	/^sub clerror { &error("$_[0], at changelog line $."); }$/;"	s
+clientdata	include/dpkg-db.h	/^  struct perpackagestate *clientdata;$/;"	m	struct:pkginfo
+close_msg	debian/tmp/install/usr/bin/dpkg-scansources	/^sub close_msg {$/;"	s
+close_msg	scripts/dpkg-scansources.pl	/^sub close_msg {$/;"	s
+close_stdout	optlib/closeout.c	/^close_stdout (void)$/;"	f
+close_stdout_status	optlib/closeout.c	/^close_stdout_status (int status)$/;"	f
+clwarn	debian/tmp/install/usr/lib/dpkg/parsechangelog/debian	/^sub clwarn { &warn("$_[0], at changelog line $."); }$/;"	s
+clwarn	scripts/cl-debian.pl	/^sub clwarn { &warn("$_[0], at changelog line $."); }$/;"	s
+cmdinfo	include/myopt.h	/^struct cmdinfo {$/;"	s
+cmdinfos	dpkg-deb/main.c	/^static const struct cmdinfo cmdinfos[]= {$/;"	v	file:
+cmdinfos	dselect/main.cc	/^static const struct cmdinfo cmdinfos[]= {$/;"	v	file:
+cmdinfos	main/main.c	/^static const struct cmdinfo cmdinfos[]= {$/;"	v	file:
+cmdinfos	main/query.c	/^static const struct cmdinfo cmdinfos[]= {$/;"	v	file:
+cmdinfos	split/main.c	/^static const struct cmdinfo cmdinfos[]= {$/;"	v	file:
+cmdname	utils/start-stop-daemon.c	/^static const char *cmdname = NULL;$/;"	v	file:
+cmpversions	main/enquiry.c	/^void cmpversions(const char *const *argv) {$/;"	f
+colheads	dselect/dselect.h	/^       colheads,$/;"	e	enum:screenparts
+colheads_attr	dselect/dselect.h	/^  int list_attr, listsel_attr, title_attr, colheads_attr, info_attr;$/;"	m	class:baselist
+colheads_height	dselect/dselect.h	/^  int title_height, colheads_height, list_height;$/;"	m	class:baselist
+colheads_row	dselect/dselect.h	/^  int colheads_row, thisstate_row, info_row, whatinfo_row, list_row;$/;"	m	class:baselist
+colheadspad	dselect/dselect.h	/^  WINDOW *listpad, *infopad, *colheadspad, *thisstatepad;$/;"	m	class:baselist
+color	dselect/main.cc	/^struct colordata color[]= {$/;"	v
+colordata	dselect/dselect.h	/^struct colordata {$/;"	s
+colourtable	dselect/main.cc	/^static const struct table_t colourtable[]= {$/;"	v	file:
+command	dselect/main.cc	/^  const char *command;$/;"	m	struct:menuentry	file:
+commandfd	main/main.c	/^void commandfd(const char *const *argv) {$/;"	f
+common	build/po/Makefile	/^DISTFILES.common = Makefile.in.in Makevars remove-potcdate.sin \\$/;"	m
+compareentries	dselect/pkglist.cc	/^int packagelist::compareentries(const struct perpackagestate *a,$/;"	f	class:packagelist
+compression	dpkg-deb/main.c	/^const char* compression=NULL;$/;"	v
+conffderef	main/configure.c	/^int conffderef(struct pkginfo *pkg, struct varbuf *result, const char *in) {$/;"	f
+conffile	include/dpkg-db.h	/^struct conffile {$/;"	s
+conffiles	include/dpkg-db.h	/^  struct conffile *conffiles;$/;"	m	struct:pkginfoperfile
+conffopt	main/main.h	/^enum conffopt {$/;"	g
+conffoptcells	main/configure.c	/^int conffoptcells[2][2]= { CONFFOPTCELLS };$/;"	v
+config_alternatives	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub config_alternatives {$/;"	s
+config_alternatives	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub config_alternatives {$/;"	s
+config_alternatives	debian/tmp/install/usr/sbin/update-alternatives	/^sub config_alternatives {$/;"	s
+config_alternatives	scripts/update-alternatives.pl	/^sub config_alternatives {$/;"	s
+config_message	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub config_message {$/;"	s
+config_message	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub config_message {$/;"	s
+config_message	debian/tmp/install/usr/sbin/update-alternatives	/^sub config_message {$/;"	s
+config_message	scripts/update-alternatives.pl	/^sub config_message {$/;"	s
+configure_getopt	debian/tmp/install/usr/bin/dpkg-scansources	/^sub configure_getopt {$/;"	s
+configure_getopt	scripts/dpkg-scansources.pl	/^sub configure_getopt {$/;"	s
+configversion	include/dpkg-db.h	/^  struct versionrevision configversion;$/;"	m	struct:pkginfo
+conflictor	main/archives.c	/^struct pkginfo *conflictor[20];$/;"	v
+const	optlib/getdate.c	208;"	d	file:
+const	optlib/getopt.c	43;"	d	file:
+const	optlib/getopt1.c	34;"	d	file:
+contents	build/doc/internals.html/index.html	/^<a name="contents"><\/a>$/;"	a
+contents	debian/tmp/install/usr/share/doc/dpkg/internals/index.html	/^<a name="contents"><\/a>$/;"	a
+contents	optlib/obstack.h	/^  char	contents[4];		\/* objects begin here *\/$/;"	m	struct:_obstack_chunk
+contextstring	lib/ehandle.c	/^  const char *contextstring;$/;"	m	struct:errorcontext	file:
+controlextractvextract	dpkg-deb/extract.c	/^static void controlextractvextract(int admin,$/;"	f	file:
+convert_string	lib/fields.c	/^static int convert_string$/;"	f	file:
+coption	dselect/methparse.cc	/^struct dselect_option *options=0, *coption=0;$/;"	v
+copy_dependency_links	lib/parse.c	/^void copy_dependency_links(struct pkginfo *pkg,$/;"	f
+copyfileperm	main/configure.c	/^static void copyfileperm(const char* source, const char* target) {$/;"	f	file:
+copyright	build/doc/internals.html/index.html	/^<a name="copyright"><\/a>$/;"	a
+copyright	debian/tmp/install/usr/share/doc/dpkg/internals/index.html	/^<a name="copyright"><\/a>$/;"	a
+copyrightstring	dselect/main.cc	/^static const char copyrightstring[]= N_($/;"	v	file:
+count	main/enquiry.c	/^  int count;$/;"	m	struct:sectionentry	file:
+countpackages	lib/database.c	/^int countpackages(void) {$/;"	f
+cpiostderr	debian/tmp/install/usr/bin/dpkg-source	/^sub cpiostderr {$/;"	s
+cpiostderr	scripts/dpkg-source.pl	/^sub cpiostderr {$/;"	s
+cpmask	lib/ehandle.c	/^  int cpmask, cpvalue;$/;"	m	struct:cleanupentry	file:
+cpvalue	lib/ehandle.c	/^  int cpmask, cpvalue;$/;"	m	struct:cleanupentry	file:
+createimptmp	lib/dbmodify.c	/^static void createimptmp(void) {$/;"	f	file:
+cstatus	lib/dbmodify.c	/^static enum modstatdb_rw cstatus=-1, cflags=0;$/;"	v	file:
+ctx	lib/mlib.c	/^  struct MD5Context ctx;$/;"	m	struct:buffer_write_md5ctx	file:
+cu_cidir	main/archives.c	/^void cu_cidir(int argc, void **argv) {$/;"	f
+cu_closedir	main/help.c	/^void cu_closedir(int argc, void **argv) {$/;"	f
+cu_closefd	main/help.c	/^void cu_closefd(int argc, void **argv) {$/;"	f
+cu_closefd	main/query.c	/^void cu_closefd(int argc, void **argv) {$/;"	f
+cu_closefile	main/help.c	/^void cu_closefile(int argc, void **argv) {$/;"	f
+cu_closefile	main/query.c	/^void cu_closefile(int argc, void **argv) {$/;"	f
+cu_closefile	utils/md5sum.c	/^static void cu_closefile(int argc, void** argv) {$/;"	f	file:
+cu_closepipe	main/help.c	/^void cu_closepipe(int argc, void **argv) {$/;"	f
+cu_closepipe	main/query.c	/^void cu_closepipe(int argc, void **argv) {$/;"	f
+cu_fileslist	main/archives.c	/^void cu_fileslist(int argc, void **argv) {$/;"	f
+cu_info_prepare	dpkg-deb/info.c	/^static void cu_info_prepare(int argc, void **argv) {$/;"	f	file:
+cu_installnew	main/cleanup.c	/^void cu_installnew(int argc, void **argv) {$/;"	f
+cu_m_fork	lib/mlib.c	/^static void cu_m_fork(int argc, void **argv) {$/;"	f	file:
+cu_parsedb	lib/parse.c	/^static void cu_parsedb(int argc, void **argv) { close(*(int *)argv); }$/;"	f	file:
+cu_pathname	main/archives.c	/^void cu_pathname(int argc, void **argv) {$/;"	f
+cu_postrmupgrade	main/cleanup.c	/^void cu_postrmupgrade(int argc, void **argv) {$/;"	f
+cu_preinstnew	main/cleanup.c	/^void cu_preinstnew(int argc, void **argv) {$/;"	f
+cu_preinstupgrade	main/cleanup.c	/^void cu_preinstupgrade(int argc, void **argv) {$/;"	f
+cu_preinstverynew	main/cleanup.c	/^void cu_preinstverynew(int argc, void **argv) {$/;"	f
+cu_prermdeconfigure	main/cleanup.c	/^void cu_prermdeconfigure(int argc, void **argv) {$/;"	f
+cu_prerminfavour	main/cleanup.c	/^void cu_prerminfavour(int argc, void **argv) {$/;"	f
+cu_prermremove	main/cleanup.c	/^void cu_prermremove(int argc, void **argv) {$/;"	f
+cu_prermupgrade	main/cleanup.c	/^void cu_prermupgrade(int argc, void **argv) {$/;"	f
+cu_restorescriptsignals	main/help.c	/^static void cu_restorescriptsignals(int argc, void **argv) {$/;"	f	file:
+cu_restoresignals	dselect/method.cc	/^void cu_restoresignals(int, void**) {$/;"	f
+cu_sigwinch	dselect/baselist.cc	/^static void cu_sigwinch(int, void **argv) {$/;"	f	file:
+cu_unlockdb	lib/lock.c	/^static void cu_unlockdb(int argc, void **argv) {$/;"	f	file:
+cu_unlockmethod	dselect/method.cc	/^static void cu_unlockmethod(int, void**) {$/;"	f	file:
+currentinfo	dselect/pkglist.h	/^  const infotype *currentinfo;$/;"	m	class:packagelist
+currenttime	main/archives.c	/^static time_t currenttime;$/;"	v	file:
+cursesareon	dselect/main.cc	/^static int cursesareon= 0;$/;"	v	file:
+cursesfile	build/dselect/Makefile	/^	cursesfile=`echo '#include <curses.h>' | \\$/;"	m
+cursesoff	dselect/main.cc	/^void cursesoff() {$/;"	f
+curseson	dselect/main.cc	/^void curseson() {$/;"	f
+cursorline	dselect/dselect.h	/^  int topofscreen, leftofscreen, cursorline;$/;"	m	class:baselist
+cyclebreak	include/dpkg-db.h	/^  int cyclebreak;$/;"	m	struct:deppossi
+cyclesofarlink	main/depcon.c	/^struct cyclesofarlink {$/;"	s	file:
+d	optlib/obstack.c	/^struct fooalign {char x; double d;};$/;"	m	struct:fooalign	file:
+d	optlib/obstack.c	/^union fooround {long x; double d;};$/;"	m	union:fooround	file:
+data	build/include/dpkg.h	/^  buffer_arg data;$/;"	m	struct:buffer_data
+data	lib/showpkg.c	/^	char* data;$/;"	m	struct:lstitem	file:
+datadir	build/po/Makefile	/^datadir = \/usr\/share$/;"	m
+datatable	dselect/pkglist.h	/^  struct perpackagestate *datatable;$/;"	m	class:packagelist
+db_obs	lib/nfmalloc.c	/^static struct obstack db_obs;$/;"	v	file:
+dbg_conff	main/main.h	/^  dbg_conff=             00020,$/;"	e	enum:debugflags
+dbg_conffdetail	main/main.h	/^  dbg_conffdetail=       00200,$/;"	e	enum:debugflags
+dbg_depcon	main/main.h	/^  dbg_depcon=            00040,$/;"	e	enum:debugflags
+dbg_depcondetail	main/main.h	/^  dbg_depcondetail=      00400,$/;"	e	enum:debugflags
+dbg_eachfile	main/main.h	/^  dbg_eachfile=          00010,$/;"	e	enum:debugflags
+dbg_eachfiledetail	main/main.h	/^  dbg_eachfiledetail=    00100,$/;"	e	enum:debugflags
+dbg_general	main/main.h	/^  dbg_general=           00001,$/;"	e	enum:debugflags
+dbg_scripts	main/main.h	/^  dbg_scripts=           00002,$/;"	e	enum:debugflags
+dbg_stupidlyverbose	main/main.h	/^  dbg_stupidlyverbose=   02000,$/;"	e	enum:debugflags
+dbg_veryverbose	main/main.h	/^  dbg_veryverbose=       01000,$/;"	e	enum:debugflags
+dblockfd	lib/lock.c	/^static int dblockfd= -1;$/;"	v	file:
+dbobs_init	lib/nfmalloc.c	/^static int dbobs_init = 0;$/;"	v	file:
+de_pgp	debian/tmp/install/usr/bin/dpkg-scansources	/^sub de_pgp {$/;"	s
+de_pgp	scripts/dpkg-scansources.pl	/^sub de_pgp {$/;"	s
+debug	debian/tmp/install/usr/bin/dpkg-scansources	/^sub debug {$/;"	s
+debug	dselect/main.cc	/^FILE *debug;$/;"	v
+debug	main/help.c	/^void debug(int which, const char *fmt, ...) {$/;"	f
+debug	scripts/dpkg-scansources.pl	/^sub debug {$/;"	s
+debugflag	dpkg-deb/main.c	/^int debugflag=0, nocheckflag=0, oldformatflag=BUILDOLDPKGFORMAT;$/;"	v
+debugflags	main/main.h	/^enum debugflags {$/;"	g
+decompose_filename	split/queue.c	/^static int decompose_filename(const char *filename, struct partqueue *pq) {$/;"	f	file:
+deconfigure	main/archives.c	/^struct packageinlist *deconfigure= 0;$/;"	v
+deferred_configure	main/configure.c	/^void deferred_configure(struct pkginfo *pkg) {$/;"	f
+deferred_remove	main/remove.c	/^void deferred_remove(struct pkginfo *pkg) {$/;"	f
+deletelessimp_anyleft	dselect/pkgsublist.cc	/^int packagelist::deletelessimp_anyleft(showpriority than) {$/;"	f	class:packagelist
+deman1dir	build/man/de/Makefile	/^deman1dir	= $(subst $(mandir),$(mandir)\/de,$(man1dir))$/;"	m
+deman5dir	build/man/de/Makefile	/^deman5dir	= $(subst $(mandir),$(mandir)\/de,$(man5dir))$/;"	m
+deman8dir	build/man/de/Makefile	/^deman8dir	= $(subst $(mandir),$(mandir)\/de,$(man8dir))$/;"	m
+deoctify	debian/tmp/install/usr/bin/dpkg-source	/^sub deoctify {$/;"	s
+deoctify	scripts/dpkg-source.pl	/^sub deoctify {$/;"	s
+dep	dselect/pkglist.h	/^  struct doneent { doneent *next; void *dep; } *depsdone, *unavdone;$/;"	m	struct:packagelist::doneent
+dep_conflicts	include/dpkg-db.h	/^  dep_conflicts,$/;"	e	enum:deptype
+dep_depends	include/dpkg-db.h	/^  dep_depends,$/;"	e	enum:deptype
+dep_enhances	include/dpkg-db.h	/^  dep_enhances$/;"	e	enum:deptype
+dep_predepends	include/dpkg-db.h	/^  dep_predepends,$/;"	e	enum:deptype
+dep_provides	include/dpkg-db.h	/^  dep_provides,$/;"	e	enum:deptype
+dep_recommends	include/dpkg-db.h	/^  dep_recommends,$/;"	e	enum:deptype
+dep_replaces	include/dpkg-db.h	/^  dep_replaces,$/;"	e	enum:deptype
+dep_suggests	include/dpkg-db.h	/^  dep_suggests,$/;"	e	enum:deptype
+dep_update_best_to_change_stop	dselect/pkgdepcon.cc	/^static int dep_update_best_to_change_stop(perpackagestate *& best, pkginfo *trythis) {$/;"	f	file:
+depdebug	dselect/pkgdepcon.cc	/^static const int depdebug= 1;$/;"	v	file:
+depended	include/dpkg-db.h	/^  struct deppossi *depended;$/;"	m	struct:pkginfoperfile
+dependencies_ok	main/packages.c	/^int dependencies_ok(struct pkginfo *pkg, struct pkginfo *removing,$/;"	f
+dependency	include/dpkg-db.h	/^struct dependency {$/;"	s
+depends	include/dpkg-db.h	/^  struct dependency *depends;$/;"	m	struct:pkginfoperfile
+dependtry	main/packages.c	/^int queuelen=0, sincenothing=0, dependtry=0;$/;"	v
+depisok	main/depcon.c	/^int depisok(struct dependency *dep, struct varbuf *whynot,$/;"	f
+depotdir	split/main.c	/^const char *depotdir= ADMINDIR "\/" PARTSDIR, *outputfile= NULL;$/;"	v
+deppossatisfied	dselect/pkgdepcon.cc	/^int packagelist::deppossatisfied(deppossi *possi, perpackagestate **fixbyupgrade) {$/;"	f	class:packagelist
+deppossi	include/dpkg-db.h	/^struct deppossi {$/;"	s
+deppossi_ok_found	main/packages.c	/^static int deppossi_ok_found(struct pkginfo *possdependee,$/;"	f	file:
+depsdone	dselect/pkglist.h	/^  struct doneent { doneent *next; void *dep; } *depsdone, *unavdone;$/;"	m	class:packagelist
+deptype	include/dpkg-db.h	/^enum deptype {$/;"	g
+depverrel	include/dpkg-db.h	/^enum depverrel {$/;"	g
+desc	dselect/bindings.h	/^    const char *action, *desc;$/;"	m	struct:keybindings::description
+desc	dselect/bindings.h	/^    const char *desc;$/;"	m	struct:keybindings::binding
+describebriefly	main/enquiry.c	/^static void describebriefly(struct pkginfo *pkg) {$/;"	f	file:
+describedepcon	main/depcon.c	/^void describedepcon(struct varbuf *addto, struct dependency *dep) {$/;"	f
+describemany	dselect/pkgtop.cc	/^int packagelist::describemany(char buf[], const char *prioritystring,$/;"	f	class:packagelist
+describenext	dselect/bindings.cc	/^const char **keybindings::describenext() {$/;"	f	class:keybindings
+describestart	dselect/bindings.h	/^  void describestart() { iterate=descriptions; }$/;"	f	struct:keybindings
+description	dselect/bindings.h	/^  struct description {$/;"	s	struct:keybindings
+description	dselect/method.h	/^  char *description;$/;"	m	struct:dselect_option
+description	include/dpkg-db.h	/^  char *description, *maintainer, *source, *architecture, *installedsize, *origin, *bugs;$/;"	m	struct:pkginfoperfile
+description_column	dselect/method.h	/^  int name_column, description_column;$/;"	m	class:methodlist
+description_column	dselect/pkglist.h	/^  int versionavailable_column, package_column, description_column;$/;"	m	class:packagelist
+description_width	dselect/method.h	/^  int status_width, gap_width, name_width, description_width;$/;"	m	class:methodlist
+description_width	dselect/pkglist.h	/^  int package_width, versioninstalled_width, versionavailable_width, description_width;$/;"	m	class:packagelist
+descriptions	dselect/bindings.cc	/^const keybindings::description keybindings::descriptions[]= {$/;"	m	class:keybindings	file:
+descriptions	dselect/bindings.h	/^  static const description descriptions[];$/;"	m	struct:keybindings
+deselect_one_of	dselect/pkgdepcon.cc	/^int packagelist::deselect_one_of(pkginfo *per, pkginfo *ped, dependency *display) {$/;"	f	class:packagelist
+destroyobstack	main/archives.c	/^static void destroyobstack(void) {$/;"	f	file:
+difftm	optlib/getdate.c	/^difftm (a, b)$/;"	f	file:
+dir	build/po/Makefile	/^	  dir=$(localedir)\/$$lang\/LC_MESSAGES; \\$/;"	m
+direct	dselect/pkglist.h	/^  pkginfo::pkgwant direct;           \/\/ set by caller$/;"	m	struct:perpackagestate
+discardheadings	dselect/pkglist.cc	/^void packagelist::discardheadings() {$/;"	f	class:packagelist
+discardsome	split/queue.c	/^static void discardsome(enum discardwhich which, const char *package) {$/;"	f	file:
+discardwhich	split/queue.c	/^enum discardwhich { ds_junk, ds_package, ds_all };$/;"	g	file:
+display	dselect/methlist.cc	/^quitaction methodlist::display() {$/;"	f	class:methodlist
+display	dselect/pkglist.cc	/^pkginfo **packagelist::display() {$/;"	f	class:packagelist
+display	dselect/pkglist.h	/^    void (packagelist::*display)(); \/\/ null means end of table$/;"	m	struct:packagelist::infotype
+displayerror	dselect/basecmds.cc	/^void baselist::displayerror(const char* str) {$/;"	f	class:baselist
+displayhelp	dselect/basecmds.cc	/^void baselist::displayhelp(const struct helpmenuentry *helpmenu, int key) {$/;"	f	class:baselist
+distdir	build/po/Makefile	/^distdir = $(top_builddir)\/$(PACKAGE)-$(VERSION)\/$(subdir)$/;"	m
+dists	build/po/Makefile	/^	dists="$(DISTFILES)"; \\$/;"	m
+diversion	main/filesdb.h	/^struct diversion {$/;"	s
+diversions	main/filesdb.c	/^static struct diversion *diversions= 0;$/;"	v	file:
+diversionsfile	main/filesdb.c	/^static FILE *diversionsfile= 0;$/;"	v	file:
+divert	main/filesdb.h	/^  struct diversion *divert;$/;"	m	struct:filenamenode
+dme	dselect/main.cc	/^void dme(int i, int so) {$/;"	f
+do_auto	split/dpkg-split.h	/^dofunction do_join, do_info, do_auto, do_queue, do_discard;$/;"	v
+do_auto	split/queue.c	/^void do_auto(const char *const *argv) {$/;"	f
+do_build	dpkg-deb/build.c	/^void do_build(const char *const *argv) {$/;"	f
+do_check	utils/md5sum.c	/^do_check(FILE *chkf)$/;"	f
+do_contents	dpkg-deb/dpkg-deb.h	/^dofunction do_contents, do_control, do_showinfo;$/;"	v
+do_contents	dpkg-deb/info.c	/^void do_contents(const char *const *argv) {$/;"	f
+do_control	dpkg-deb/dpkg-deb.h	/^dofunction do_contents, do_control, do_showinfo;$/;"	v
+do_control	dpkg-deb/extract.c	/^void do_control(const char *const *argv) { controlextractvextract(1, "x", argv); }$/;"	f
+do_discard	split/dpkg-split.h	/^dofunction do_join, do_info, do_auto, do_queue, do_discard;$/;"	v
+do_discard	split/queue.c	/^void do_discard(const char *const *argv) {$/;"	f
+do_extract	dpkg-deb/dpkg-deb.h	/^dofunction do_info, do_field, do_extract, do_vextract, do_fsystarfile;$/;"	v
+do_extract	dpkg-deb/extract.c	/^void do_extract(const char *const *argv) { controlextractvextract(0, "xp", argv); }$/;"	f
+do_field	dpkg-deb/dpkg-deb.h	/^dofunction do_info, do_field, do_extract, do_vextract, do_fsystarfile;$/;"	v
+do_field	dpkg-deb/info.c	/^void do_field(const char *const *argv) {$/;"	f
+do_findprocs	utils/start-stop-daemon.c	/^do_findprocs(void)$/;"	f	file:
+do_fsystarfile	dpkg-deb/dpkg-deb.h	/^dofunction do_info, do_field, do_extract, do_vextract, do_fsystarfile;$/;"	v
+do_fsystarfile	dpkg-deb/extract.c	/^void do_fsystarfile(const char *const *argv) {$/;"	f
+do_help	utils/start-stop-daemon.c	/^do_help(void)$/;"	f	file:
+do_info	dpkg-deb/dpkg-deb.h	/^dofunction do_info, do_field, do_extract, do_vextract, do_fsystarfile;$/;"	v
+do_info	dpkg-deb/info.c	/^void do_info(const char *const *argv) {$/;"	f
+do_info	split/dpkg-split.h	/^dofunction do_join, do_info, do_auto, do_queue, do_discard;$/;"	v
+do_info	split/info.c	/^void do_info(const char *const *argv) {$/;"	f
+do_internerr	lib/ehandle.c	/^void do_internerr(const char *string, int line, const char *file) {$/;"	f
+do_join	split/dpkg-split.h	/^dofunction do_join, do_info, do_auto, do_queue, do_discard;$/;"	v
+do_join	split/join.c	/^void do_join(const char *const *argv) {$/;"	f
+do_pidfile	utils/start-stop-daemon.c	/^do_pidfile(const char *name)$/;"	f	file:
+do_procinit	utils/start-stop-daemon.c	/^do_procinit(void)$/;"	f	file:
+do_queue	split/dpkg-split.h	/^dofunction do_join, do_info, do_auto, do_queue, do_discard;$/;"	v
+do_queue	split/queue.c	/^void do_queue(const char *const *argv) {$/;"	f
+do_script	main/help.c	/^static int do_script(const char *pkg, const char *scriptname, const char *scriptpath, struct stat *stab, char *const arglist[], const char *desc, const char *name, int warn) {$/;"	f	file:
+do_showinfo	dpkg-deb/dpkg-deb.h	/^dofunction do_contents, do_control, do_showinfo;$/;"	v
+do_showinfo	dpkg-deb/info.c	/^void do_showinfo(const char* const* argv) {$/;"	f
+do_split	split/split.c	/^void do_split(const char *const *argv) {$/;"	f
+do_stop	utils/start-stop-daemon.c	/^do_stop(int signal_nr, int quietmode, int *n_killed, int *n_notkilled, int retry_nr)$/;"	f	file:
+do_vextract	dpkg-deb/dpkg-deb.h	/^dofunction do_info, do_field, do_extract, do_vextract, do_fsystarfile;$/;"	v
+do_vextract	dpkg-deb/extract.c	/^void do_vextract(const char *const *argv) { controlextractvextract(0, "xpv", argv); }$/;"	f
+does_replace	main/archives.c	/^static int does_replace(struct pkginfo *newpigp,$/;"	f	file:
+dofunction	dpkg-deb/dpkg-deb.h	/^typedef void dofunction(const char *const *argv);$/;"	t
+dofunction	split/dpkg-split.h	/^typedef void dofunction(const char *const *argv);$/;"	t
+dofunctions	dpkg-deb/main.c	/^static dofunction *const dofunctions[]= {$/;"	v	file:
+dofunctions	split/main.c	/^static dofunction *const dofunctions[]= {$/;"	v	file:
+doneent	dselect/pkglist.h	/^  struct doneent { doneent *next; void *dep; } *depsdone, *unavdone;$/;"	s	class:packagelist
+dorename	debian/tmp/dpkg-static/usr/sbin/dpkg-divert	/^sub dorename {$/;"	s
+dorename	debian/tmp/dpkg/usr/sbin/dpkg-divert	/^sub dorename {$/;"	s
+dorename	debian/tmp/install/usr/sbin/dpkg-divert	/^sub dorename {$/;"	s
+dorename	scripts/dpkg-divert.pl	/^sub dorename {$/;"	s
+dosearch	dselect/baselist.cc	/^void baselist::dosearch() {$/;"	f	class:baselist
+dp_may	dselect/pkglist.h	/^  dp_may,       \/\/ has been involved in an unsatisfied Suggests$/;"	e	enum:showpriority
+dp_must	dselect/pkglist.h	/^  dp_must       \/\/ has been involved in an unsatisfied Depends\/Conflicts$/;"	e	enum:showpriority
+dp_none	dselect/pkglist.h	/^  dp_none,      \/\/ has not been involved in any unsatisfied things$/;"	e	enum:showpriority
+dp_should	dselect/pkglist.h	/^  dp_should,	\/\/ has been involved in an unsatisfied Recommends$/;"	e	enum:showpriority
+dprint	debian/tmp/dpkg-static/usr/sbin/install-info	/^sub dprint {$/;"	s
+dprint	debian/tmp/dpkg/usr/sbin/install-info	/^sub dprint {$/;"	s
+dprint	debian/tmp/install/usr/sbin/install-info	/^sub dprint {$/;"	s
+dprint	scripts/install-info.pl	/^sub dprint {$/;"	s
+dpriority	dselect/pkglist.h	/^  showpriority dpriority;            \/\/ monotonically increases (used by sublists)$/;"	m	struct:perpackagestate
+ds_all	split/queue.c	/^enum discardwhich { ds_junk, ds_package, ds_all };$/;"	e	enum:discardwhich	file:
+ds_junk	split/queue.c	/^enum discardwhich { ds_junk, ds_package, ds_all };$/;"	e	enum:discardwhich	file:
+ds_package	split/queue.c	/^enum discardwhich { ds_junk, ds_package, ds_all };$/;"	e	enum:discardwhich	file:
+dselect_option	dselect/method.h	/^struct dselect_option {$/;"	s
+dumpchain	lib/showpkg.c	188;"	d	file:
+dupdaemonhelp	debian/dpkg.postinst	/^dupdaemonhelp () {$/;"	f
+dupdaemonhelp	debian/tmp/dpkg-static/DEBIAN/postinst	/^dupdaemonhelp () {$/;"	f
+dupdaemonhelp	debian/tmp/dpkg/DEBIAN/postinst	/^dupdaemonhelp () {$/;"	f
+dvr_earlierequal	include/dpkg-db.h	/^  dvr_earlierequal=  dvrf_builtup | dvrf_earlier | dvrf_orequal,$/;"	e	enum:depverrel
+dvr_earlierstrict	include/dpkg-db.h	/^  dvr_earlierstrict= dvrf_builtup | dvrf_earlier | dvrf_strict,$/;"	e	enum:depverrel
+dvr_exact	include/dpkg-db.h	/^  dvr_exact=         0400$/;"	e	enum:depverrel
+dvr_laterequal	include/dpkg-db.h	/^  dvr_laterequal=    dvrf_builtup | dvrf_later   | dvrf_orequal,$/;"	e	enum:depverrel
+dvr_laterstrict	include/dpkg-db.h	/^  dvr_laterstrict=   dvrf_builtup | dvrf_later   | dvrf_strict,$/;"	e	enum:depverrel
+dvr_none	include/dpkg-db.h	/^  dvr_none=          0200,$/;"	e	enum:depverrel
+dvrf_builtup	include/dpkg-db.h	/^  dvrf_builtup=      0100,$/;"	e	enum:depverrel
+dvrf_earlier	include/dpkg-db.h	/^  dvrf_earlier=      0001,$/;"	e	enum:depverrel
+dvrf_later	include/dpkg-db.h	/^  dvrf_later=        0002,$/;"	e	enum:depverrel
+dvrf_orequal	include/dpkg-db.h	/^  dvrf_orequal=      0020,$/;"	e	enum:depverrel
+dvrf_strict	include/dpkg-db.h	/^  dvrf_strict=       0010,$/;"	e	enum:depverrel
+ealcat	build/po/Makefile	/^	  if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)\/$$cat; fi; \\$/;"	m
+econtext	lib/ehandle.c	/^static struct errorcontext *volatile econtext= NULL;$/;"	v	file:
+ed	include/dpkg-db.h	/^  struct pkginfo *ed;$/;"	m	struct:deppossi
+eflag	include/dpkg-db.h	/^  } eflag; \/* bitmask, but obsoletehold no longer used except when reading *\/$/;"	m	struct:pkginfo
+eflagchars	dselect/pkgdisplay.cc	/^const char eflagchars[]=     " R?#";$/;"	v
+eflagf_obsoletehold	include/dpkg-db.h	/^    eflagf_obsoletehold = 02,$/;"	e	enum:pkginfo::pkgeflag
+eflagf_reinstreq	include/dpkg-db.h	/^    eflagf_reinstreq    = 01,$/;"	e	enum:pkginfo::pkgeflag
+eflaginfos	lib/parsehelp.c	/^const struct namevalue eflaginfos[]= {  \/* Note !  These must be in order ! *\/$/;"	v
+eflagstrings	dselect/pkgdisplay.cc	/^  *const eflagstrings[]=   { N_(" "), $/;"	v
+eflagv_obsoleteboth	include/dpkg-db.h	/^    eflagv_obsoleteboth =    eflagf_reinstreq | eflagf_obsoletehold$/;"	e	enum:pkginfo::pkgeflag
+eflagv_obsoletehold	include/dpkg-db.h	/^    eflagv_obsoletehold =                       eflagf_obsoletehold,$/;"	e	enum:pkginfo::pkgeflag
+eflagv_ok	include/dpkg-db.h	/^    eflagv_ok           = 0,$/;"	e	enum:pkginfo::pkgeflag
+eflagv_reinstreq	include/dpkg-db.h	/^    eflagv_reinstreq    =    eflagf_reinstreq,$/;"	e	enum:pkginfo::pkgeflag
+ehflag_bombout	build/include/dpkg.h	/^enum { ehflag_normaltidy=01, ehflag_bombout=02, ehflag_recursiveerror=04 };$/;"	e
+ehflag_normaltidy	build/include/dpkg.h	/^enum { ehflag_normaltidy=01, ehflag_bombout=02, ehflag_recursiveerror=04 };$/;"	e
+ehflag_recursiveerror	build/include/dpkg.h	/^enum { ehflag_normaltidy=01, ehflag_bombout=02, ehflag_recursiveerror=04 };$/;"	e
+emergency	lib/ehandle.c	/^static struct { struct cleanupentry ce; void *args[20]; } emergency;$/;"	v	file:
+emergency	main/errors.c	/^static struct error_report emergency;$/;"	v	file:
+enddisplay	dselect/baselist.cc	/^void baselist::enddisplay() {$/;"	f	class:baselist
+enqperpackage	main/query.c	/^void enqperpackage(const char *const *argv) {$/;"	f
+ensure_allinstfiles_available	main/filesdb.c	/^void ensure_allinstfiles_available(void) {$/;"	f
+ensure_allinstfiles_available_quiet	main/filesdb.c	/^void ensure_allinstfiles_available_quiet(void) {$/;"	f
+ensure_diversions	main/filesdb.c	/^void ensure_diversions(void) {$/;"	f
+ensure_package_clientdata	main/help.c	/^void ensure_package_clientdata(struct pkginfo *pkg) {$/;"	f
+ensure_package_clientdata	main/query.c	/^void ensure_package_clientdata(struct pkginfo *pkg) {$/;"	f
+ensure_packagefiles_available	main/filesdb.c	/^void ensure_packagefiles_available(struct pkginfo *pkg) {$/;"	f
+ensure_pathname_nonexisting	main/help.c	/^void ensure_pathname_nonexisting(const char *pathname) {$/;"	f
+ensure_statoverrides	main/filesdb.c	/^void ensure_statoverrides(void) {$/;"	f
+ensureobstackinit	main/archives.c	/^static void ensureobstackinit(void) {$/;"	f	file:
+ensureoptions	dselect/method.cc	/^static enum urqresult ensureoptions(void) {$/;"	f	file:
+ensurestatsortinfo	dselect/pkglist.cc	/^void packagelist::ensurestatsortinfo() {$/;"	f	class:packagelist
+eofmethod	dselect/methparse.cc	/^static void eofmethod(const char *pathname, FILE *f, const char *why) {$/;"	f	file:
+epoch	include/dpkg-db.h	/^  unsigned long epoch;$/;"	m	struct:versionrevision
+epochsdiffer	lib/vercmp.c	/^int epochsdiffer(const struct versionrevision *a,$/;"	f
+erasedir	debian/tmp/install/usr/bin/dpkg-source	/^sub erasedir {$/;"	s
+erasedir	scripts/dpkg-source.pl	/^sub erasedir {$/;"	s
+errabort	main/main.c	/^int errabort = 50;$/;"	v
+errabort	main/query.c	/^int errabort = 50;$/;"	v
+errmsg	lib/ehandle.c	/^static const char *errmsg; \/* points to errmsgbuf or malloc'd *\/$/;"	v	file:
+errmsgbuf	lib/ehandle.c	/^static char errmsgbuf[4096];$/;"	v	file:
+error	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub error { die "$progname: error: $_[0]\\n"; }$/;"	s
+error	scripts/controllib.pl	/^sub error { die "$progname: error: $_[0]\\n"; }$/;"	s
+error_report	main/errors.c	/^struct error_report {$/;"	s	file:
+error_unwind	lib/ehandle.c	/^void error_unwind(int flagset) {$/;"	f
+errorcontext	lib/ehandle.c	/^struct errorcontext {$/;"	s	file:
+essential	include/dpkg-db.h	/^  int essential; \/* The `essential' flag, 1=yes, 0=no (absent) *\/$/;"	m	struct:pkginfoperfile
+exchange	optlib/getopt.c	/^exchange (argv)$/;"	f	file:
+exec_prefix	build/po/Makefile	/^exec_prefix = \/usr$/;"	m
+exec_stat	utils/start-stop-daemon.c	/^static struct stat exec_stat;$/;"	v	file:
+execbackend	main/main.c	/^void execbackend(const char *const *argv) {$/;"	f
+execname	utils/start-stop-daemon.c	/^static char *execname = NULL;$/;"	v	file:
+exit_handler	debian/tmp/install/usr/bin/dpkg-source	/^sub exit_handler {$/;"	s
+exit_handler	scripts/dpkg-source.pl	/^sub exit_handler {$/;"	s
+exitnodo	utils/start-stop-daemon.c	/^static int exitnodo = 1;$/;"	v	file:
+expandvar	configure	/^expandvar() { echo $(eval echo $1) ; }$/;"	f
+expertmode	dselect/main.cc	/^int expertmode= 0;$/;"	v
+explanation	main/enquiry.c	/^  const char *explanation;$/;"	m	struct:badstatinfo	file:
+extra1	build/po/Makefile	/^DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot$/;"	m
+extra_arg	optlib/obstack.h	/^  char *extra_arg;		\/* first arg for chunk alloc\/dealloc funcs *\/$/;"	m	struct:obstack
+extra_arg	optlib/obstack.h	/^  void *extra_arg;		\/* first arg for chunk alloc\/dealloc funcs *\/$/;"	m	struct:obstack
+extracthalf	dpkg-deb/extract.c	/^void extracthalf(const char *debar, const char *directory,$/;"	f
+extracttar	debian/tmp/install/usr/bin/dpkg-source	/^sub extracttar {$/;"	s
+extracttar	scripts/dpkg-source.pl	/^sub extracttar {$/;"	s
+f_alsoselect	main/main.c	/^int f_pending=0, f_recursive=0, f_alsoselect=1, f_skipsame=0, f_noact=0;$/;"	v
+f_alsoselect	main/query.c	/^int f_pending=0, f_recursive=0, f_alsoselect=1, f_skipsame=0, f_noact=0;$/;"	v
+f_autodeconf	main/main.c	/^int f_autodeconf=0, f_nodebsig=0;$/;"	v
+f_autodeconf	main/query.c	/^int f_autodeconf=0, f_nodebsig=0;$/;"	v
+f_boolean	include/parsedump.h	/^freadfunction f_boolean, f_dependency, f_conffiles, f_version, f_revision;$/;"	v
+f_boolean	lib/fields.c	/^void f_boolean(struct pkginfo *pigp, struct pkginfoperfile *pifp,$/;"	f
+f_charfield	include/parsedump.h	/^freadfunction f_name, f_charfield, f_priority, f_section, f_status, f_filecharf;$/;"	v
+f_charfield	lib/fields.c	/^void f_charfield(struct pkginfo *pigp, struct pkginfoperfile *pifp,$/;"	f
+f_conffiles	include/parsedump.h	/^freadfunction f_boolean, f_dependency, f_conffiles, f_version, f_revision;$/;"	v
+f_conffiles	lib/fields.c	/^void f_conffiles(struct pkginfo *pigp, struct pkginfoperfile *pifp,$/;"	f
+f_configversion	include/parsedump.h	/^freadfunction f_configversion;$/;"	v
+f_configversion	lib/fields.c	/^void f_configversion(struct pkginfo *pigp, struct pkginfoperfile *pifp,$/;"	f
+f_debug	main/main.c	/^unsigned long f_debug=0;$/;"	v
+f_debug	main/query.c	/^unsigned long f_debug=0;$/;"	v
+f_dependency	include/parsedump.h	/^freadfunction f_boolean, f_dependency, f_conffiles, f_version, f_revision;$/;"	v
+f_dependency	lib/fields.c	/^void f_dependency(struct pkginfo *pigp, struct pkginfoperfile *pifp,$/;"	f
+f_filecharf	include/parsedump.h	/^freadfunction f_name, f_charfield, f_priority, f_section, f_status, f_filecharf;$/;"	v
+f_filecharf	lib/fields.c	/^void f_filecharf(struct pkginfo *pigp, struct pkginfoperfile *pifp,$/;"	f
+f_name	include/parsedump.h	/^freadfunction f_name, f_charfield, f_priority, f_section, f_status, f_filecharf;$/;"	v
+f_name	lib/fields.c	/^void f_name(struct pkginfo *pigp, struct pkginfoperfile *pifp, enum parsedbflags flags,$/;"	f
+f_noact	main/main.c	/^int f_pending=0, f_recursive=0, f_alsoselect=1, f_skipsame=0, f_noact=0;$/;"	v
+f_noact	main/query.c	/^int f_pending=0, f_recursive=0, f_alsoselect=1, f_skipsame=0, f_noact=0;$/;"	v
+f_nodebsig	main/main.c	/^int f_autodeconf=0, f_nodebsig=0;$/;"	v
+f_nodebsig	main/query.c	/^int f_autodeconf=0, f_nodebsig=0;$/;"	v
+f_pending	main/main.c	/^int f_pending=0, f_recursive=0, f_alsoselect=1, f_skipsame=0, f_noact=0;$/;"	v
+f_pending	main/query.c	/^int f_pending=0, f_recursive=0, f_alsoselect=1, f_skipsame=0, f_noact=0;$/;"	v
+f_priority	include/parsedump.h	/^freadfunction f_name, f_charfield, f_priority, f_section, f_status, f_filecharf;$/;"	v
+f_priority	lib/fields.c	/^void f_priority(struct pkginfo *pigp, struct pkginfoperfile *pifp,$/;"	f
+f_recursive	main/main.c	/^int f_pending=0, f_recursive=0, f_alsoselect=1, f_skipsame=0, f_noact=0;$/;"	v
+f_recursive	main/query.c	/^int f_pending=0, f_recursive=0, f_alsoselect=1, f_skipsame=0, f_noact=0;$/;"	v
+f_revision	include/parsedump.h	/^freadfunction f_boolean, f_dependency, f_conffiles, f_version, f_revision;$/;"	v
+f_revision	lib/fields.c	/^void f_revision(struct pkginfo *pigp, struct pkginfoperfile *pifp,$/;"	f
+f_section	include/parsedump.h	/^freadfunction f_name, f_charfield, f_priority, f_section, f_status, f_filecharf;$/;"	v
+f_section	lib/fields.c	/^void f_section(struct pkginfo *pigp, struct pkginfoperfile *pifp,$/;"	f
+f_skipsame	main/main.c	/^int f_pending=0, f_recursive=0, f_alsoselect=1, f_skipsame=0, f_noact=0;$/;"	v
+f_skipsame	main/query.c	/^int f_pending=0, f_recursive=0, f_alsoselect=1, f_skipsame=0, f_noact=0;$/;"	v
+f_status	include/parsedump.h	/^freadfunction f_name, f_charfield, f_priority, f_section, f_status, f_filecharf;$/;"	v
+f_status	lib/fields.c	/^void f_status(struct pkginfo *pigp, struct pkginfoperfile *pifp,$/;"	f
+f_version	include/parsedump.h	/^freadfunction f_boolean, f_dependency, f_conffiles, f_version, f_revision;$/;"	v
+f_version	lib/fields.c	/^void f_version(struct pkginfo *pigp, struct pkginfoperfile *pifp,$/;"	f
+failure	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub failure { die "$progname: failure: $_[0]\\n"; }$/;"	s
+failure	scripts/controllib.pl	/^sub failure { die "$progname: failure: $_[0]\\n"; }$/;"	s
+falliblesubprocess	dselect/method.cc	/^urqresult falliblesubprocess(const char *exepath, const char *name,$/;"	f
+farg	include/myopt.h	/^  voidfnp farg;$/;"	m	struct:cmdinfo
+fatal	utils/start-stop-daemon.c	/^fatal(const char *format, ...)$/;"	f	file:
+fc_architecture	main/main.c	/^int fc_autoselect=1, fc_badpath=0, fc_overwritediverted=0, fc_architecture=0;$/;"	v
+fc_autoselect	main/main.c	/^int fc_autoselect=1, fc_badpath=0, fc_overwritediverted=0, fc_architecture=0;$/;"	v
+fc_badpath	main/main.c	/^int fc_autoselect=1, fc_badpath=0, fc_overwritediverted=0, fc_architecture=0;$/;"	v
+fc_badpath	main/query.c	/^int fc_badpath=0;$/;"	v
+fc_badverify	main/main.c	/^int fc_badverify = 0;$/;"	v
+fc_conff_def	main/main.c	/^int fc_conff_old=0, fc_conff_def=0;$/;"	v
+fc_conff_miss	main/main.c	/^int fc_nonroot=0, fc_overwritedir=0, fc_conff_new=0, fc_conff_miss=0;$/;"	v
+fc_conff_new	main/main.c	/^int fc_nonroot=0, fc_overwritedir=0, fc_conff_new=0, fc_conff_miss=0;$/;"	v
+fc_conff_old	main/main.c	/^int fc_conff_old=0, fc_conff_def=0;$/;"	v
+fc_configureany	main/main.c	/^int fc_downgrade=1, fc_configureany=0, fc_hold=0, fc_removereinstreq=0, fc_overwrite=0;$/;"	v
+fc_conflicts	main/main.c	/^int fc_removeessential=0, fc_conflicts=0, fc_depends=0, fc_dependsversion=0;$/;"	v
+fc_conflicts	main/query.c	/^int fc_conflicts=0, fc_depends=0;$/;"	v
+fc_depends	main/main.c	/^int fc_removeessential=0, fc_conflicts=0, fc_depends=0, fc_dependsversion=0;$/;"	v
+fc_depends	main/query.c	/^int fc_conflicts=0, fc_depends=0;$/;"	v
+fc_dependsversion	main/main.c	/^int fc_removeessential=0, fc_conflicts=0, fc_depends=0, fc_dependsversion=0;$/;"	v
+fc_downgrade	main/main.c	/^int fc_downgrade=1, fc_configureany=0, fc_hold=0, fc_removereinstreq=0, fc_overwrite=0;$/;"	v
+fc_hold	main/main.c	/^int fc_downgrade=1, fc_configureany=0, fc_hold=0, fc_removereinstreq=0, fc_overwrite=0;$/;"	v
+fc_hold	main/query.c	/^int fc_hold=0;$/;"	v
+fc_nonroot	main/main.c	/^int fc_nonroot=0, fc_overwritedir=0, fc_conff_new=0, fc_conff_miss=0;$/;"	v
+fc_overwrite	main/main.c	/^int fc_downgrade=1, fc_configureany=0, fc_hold=0, fc_removereinstreq=0, fc_overwrite=0;$/;"	v
+fc_overwritedir	main/main.c	/^int fc_nonroot=0, fc_overwritedir=0, fc_conff_new=0, fc_conff_miss=0;$/;"	v
+fc_overwritediverted	main/main.c	/^int fc_autoselect=1, fc_badpath=0, fc_overwritediverted=0, fc_architecture=0;$/;"	v
+fc_removeessential	main/main.c	/^int fc_removeessential=0, fc_conflicts=0, fc_depends=0, fc_dependsversion=0;$/;"	v
+fc_removereinstreq	main/main.c	/^int fc_downgrade=1, fc_configureany=0, fc_hold=0, fc_removereinstreq=0, fc_overwrite=0;$/;"	v
+fd	include/dpkg-db.h	/^  int fd;$/;"	m	struct:pipef
+fd_buf_copy	build/include/dpkg.h	254;"	d
+fd_fd_copy	build/include/dpkg.h	250;"	d
+fd_md5	build/include/dpkg.h	242;"	d
+fd_null_copy	build/include/dpkg.h	262;"	d
+fd_vbuf_copy	build/include/dpkg.h	258;"	d
+field	lib/showpkg.c	/^typedef enum { invalid, string, field } itemtype_t;$/;"	e	file:
+fieldinfo	include/parsedump.h	/^struct fieldinfo {$/;"	s
+fieldinfos	lib/parse.c	/^const struct fieldinfo fieldinfos[]= {$/;"	v
+filedetails	include/dpkg-db.h	/^struct filedetails {$/;"	s
+fileexists	debian/tmp/install/usr/bin/dpkg-name	/^fileexists () {$/;"	f
+fileexists	scripts/dpkg-name.sh	/^fileexists () {$/;"	f
+fileinlist	main/filesdb.h	/^struct fileinlist {$/;"	s
+fileiterator	main/filesdb.c	/^struct fileiterator {$/;"	s	file:
+filename	split/dpkg-split.h	/^  const char *filename;$/;"	m	struct:partinfo
+filenamenode	main/filesdb.h	/^struct filenamenode {$/;"	s
+fileomitted	debian/tmp/install/usr/bin/dpkg-buildpackage	/^fileomitted () {$/;"	f
+fileomitted	scripts/dpkg-buildpackage.sh	/^fileomitted () {$/;"	f
+filepackages	main/filesdb.h	/^struct filepackages {$/;"	s
+files	include/dpkg-db.h	/^  struct filedetails *files;$/;"	m	struct:pkginfo
+files	main/main.h	/^  struct fileinlist *files;$/;"	m	struct:perpackagestate
+filesavespackage	main/archives.c	/^int filesavespackage(struct fileinlist *file, struct pkginfo *pkgtobesaved,$/;"	f
+filesdbinit	main/filesdb.c	/^void filesdbinit(void) {$/;"	f
+filesize	split/dpkg-split.h	/^  off_t filesize;$/;"	m	struct:partinfo
+fileslistvalid	main/main.h	/^  int fileslistvalid;$/;"	m	struct:perpackagestate
+filestat	main/filesdb.h	/^  struct stat *filestat;$/;"	m	struct:filenamenode
+filestatoverride	main/filesdb.h	/^struct filestatoverride {$/;"	s
+finalsetup	dselect/pkglist.cc	/^void packagelist::finalsetup() {$/;"	f	class:packagelist
+find	dselect/bindings.cc	/^const char *keybindings::find(const char *action) {$/;"	f	class:keybindings
+find_area	debian/tmp/dselect/usr/lib/dpkg/methods/disk/setup	/^find_area () {$/;"	f
+find_stack_direction	configure	/^find_stack_direction ()$/;"	f
+findarch	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub findarch {$/;"	s
+findarch	scripts/controllib.pl	/^sub findarch {$/;"	s
+findbreakcycle	main/depcon.c	/^int findbreakcycle(struct pkginfo *pkg, struct cyclesofarlink *sofar) {$/;"	f
+findinfo	dselect/pkgdepcon.cc	/^pkginfoperfile *packagelist::findinfo(pkginfo *pkg) {$/;"	f	class:packagelist
+findintable	dselect/main.cc	/^  int findintable(const struct table_t *table, const char *item, const char *tablename) {$/;"	f
+findnamenode	main/filesdb.c	/^struct filenamenode *findnamenode(const char *name, enum fnnflags flags) {$/;"	f
+findpackage	lib/database.c	/^struct pkginfo *findpackage(const char *inname) {$/;"	f
+finishif	dselect/mkhelpmsgs.pl	/^sub finishif {$/;"	s
+first_nonopt	optlib/getopt.c	/^static int first_nonopt;$/;"	v	file:
+flag	optlib/getopt.h	/^  int *flag;$/;"	m	struct:option
+flags	main/filesdb.h	/^  } flags; \/* Set to zero when a new node is created. *\/$/;"	m	struct:filenamenode
+fmt_past_time	configure	/^fmt_past_time ();$/;"	f
+fmtversion	split/dpkg-split.h	/^  const char *fmtversion;$/;"	m	struct:partinfo
+fn	dpkg-deb/build.c	/^  char*	fn;$/;"	m	struct:_finfo	file:
+fn	dselect/main.cc	/^  urqfunction *fn;$/;"	m	struct:menuentry	file:
+fnameidlu	main/archives.c	/^int fnameidlu;$/;"	v
+fnamenewvb	main/archives.c	/^struct varbuf fnamenewvb;$/;"	v
+fnametmpvb	main/archives.c	/^struct varbuf fnametmpvb;$/;"	v
+fnamevb	main/archives.c	/^struct varbuf fnamevb;$/;"	v
+fni	lib/dbmodify.c	/^const struct fni { const char *suffix; char **store; } fnis[]= {$/;"	s	file:
+fnis	lib/dbmodify.c	/^const struct fni { const char *suffix; char **store; } fnis[]= {$/;"	v
+fnn_nocopy	main/filesdb.h	/^    fnn_nocopy=                 000001, \/* do not need to copy filename *\/$/;"	e	enum:fnnflags
+fnnf_elide_other_lists	main/filesdb.h	/^    fnnf_elide_other_lists=   000010, \/* must remove from other packages' lists *\/$/;"	e	enum:filenamenode::<anonymous>
+fnnf_new_conff	main/filesdb.h	/^    fnnf_new_conff=           000001, \/* in the newconffiles list *\/$/;"	e	enum:filenamenode::<anonymous>
+fnnf_new_inarchive	main/filesdb.h	/^    fnnf_new_inarchive=       000002, \/* in the new filesystem archive *\/$/;"	e	enum:filenamenode::<anonymous>
+fnnf_no_atomic_overwrite	main/filesdb.h	/^    fnnf_no_atomic_overwrite= 000020, \/* >=1 instance is a dir, cannot rename over *\/$/;"	e	enum:filenamenode::<anonymous>
+fnnf_old_conff	main/filesdb.h	/^    fnnf_old_conff=           000004, \/* in the old package's conffiles list *\/$/;"	e	enum:filenamenode::<anonymous>
+fnnflags	main/filesdb.h	/^enum fnnflags {$/;"	g
+fooalign	optlib/obstack.c	/^struct fooalign {char x; double d;};$/;"	s	file:
+fooround	optlib/obstack.c	/^union fooround {long x; double d;};$/;"	u	file:
+force_conflicts	main/help.c	/^int force_conflicts(struct deppossi *possi) {$/;"	f
+force_depends	main/help.c	/^int force_depends(struct deppossi *possi) {$/;"	f
+forceinfo	main/main.c	/^static const struct forceinfo {$/;"	s	file:
+forceinfos	main/main.c	/^} forceinfos[]= {$/;"	v	file:
+forcibleerr	main/errors.c	/^void forcibleerr(int forceflag, const char *fmt, ...) {$/;"	f
+fore	dselect/dselect.h	/^       int fore;$/;"	m	struct:colordata
+forgetold	main/update.c	/^void forgetold(const char *const *argv) {$/;"	f
+forkgzipread	debian/tmp/install/usr/bin/dpkg-source	/^sub forkgzipread {$/;"	s
+forkgzipread	scripts/dpkg-source.pl	/^sub forkgzipread {$/;"	s
+forkgzipwrite	debian/tmp/install/usr/bin/dpkg-source	/^sub forkgzipwrite {$/;"	s
+forkgzipwrite	scripts/dpkg-source.pl	/^sub forkgzipwrite {$/;"	s
+found	utils/start-stop-daemon.c	/^static struct pid_list *found = NULL;$/;"	v	file:
+foundcyclebroken	main/depcon.c	/^static int foundcyclebroken(struct cyclesofarlink *thislink,$/;"	f	file:
+fputs	optlib/obstack.c	471;"	d	file:
+freadfunction	include/parsedump.h	/^typedef void freadfunction(struct pkginfo *pigp, struct pkginfoperfile *pifp,$/;"	t
+free	dselect/pkglist.cc	/^void perpackagestate::free(int recursive) {$/;"	f	class:perpackagestate
+free	include/dpkg-db.h	/^  void free() { varbuffree(this); }$/;"	f	struct:varbuf
+free_filist	dpkg-deb/build.c	/^static void free_filist(struct _finfo* fi) {$/;"	f	file:
+freeformat	lib/showpkg.c	/^void freeformat(struct lstitem* head) {$/;"	f
+freefun	optlib/obstack.h	/^  void (*freefun) ();		\/* User's function to free a chunk.  *\/$/;"	m	struct:obstack
+freefun	optlib/obstack.h	/^  void (*freefun) (void *, struct _obstack_chunk *);$/;"	m	struct:obstack
+frman1dir	build/man/fr/Makefile	/^frman1dir	= $(subst $(mandir),$(mandir)\/fr,$(man1dir))$/;"	m
+frman5dir	build/man/fr/Makefile	/^frman5dir	= $(subst $(mandir),$(mandir)\/fr,$(man5dir))$/;"	m
+frman8dir	build/man/fr/Makefile	/^frman8dir	= $(subst $(mandir),$(mandir)\/fr,$(man8dir))$/;"	m
+functions	lib/star.c	/^static const TarFunctions	functions = {$/;"	v	file:
+fw_printheader	include/parsedump.h	/^	fw_printheader	= 001	\/* print field header and trailing newline *\/$/;"	e	enum:fwriteflags
+fwriteflags	include/parsedump.h	/^enum fwriteflags {$/;"	g
+fwritefunction	include/parsedump.h	/^typedef void fwritefunction(struct varbuf*,$/;"	t
+gap_width	dselect/method.h	/^  int status_width, gap_width, name_width, description_width;$/;"	m	class:methodlist
+gap_width	dselect/pkglist.h	/^  int status_width, gap_width, section_width, priority_width;$/;"	m	class:packagelist
+get_date	optlib/getdate.c	/^get_date (p, now)$/;"	f
+get_md5_line	utils/md5sum.c	/^get_md5_line(FILE *fp, unsigned char *digest, char *file)$/;"	f
+getblockdev	debian/tmp/dselect/usr/lib/dpkg/methods/disk/setup	/^getblockdev () {$/;"	f
+getc_mmap	lib/parse.c	127;"	d	file:
+getcurrentopt	dselect/methparse.cc	/^void getcurrentopt() {$/;"	f
+getdir	debian/tmp/install/usr/bin/dpkg-name	/^getdir () {$/;"	f
+getdir	scripts/dpkg-name.sh	/^getdir () {$/;"	f
+getfi	dpkg-deb/build.c	/^static struct _finfo* getfi(const char* root, int fd) {$/;"	f	file:
+getname	debian/tmp/install/usr/bin/dpkg-name	/^getname () {$/;"	f
+getname	scripts/dpkg-name.sh	/^getname () {$/;"	f
+getopt	debian/tmp/install/usr/bin/dpkg-scansources	/^sub getopt;$/;"	s
+getopt	optlib/getopt.c	/^getopt (argc, argv, optstring)$/;"	f
+getopt	scripts/dpkg-scansources.pl	/^sub getopt;$/;"	s
+getopt_long	optlib/getopt1.c	/^getopt_long (argc, argv, options, long_options, opt_index)$/;"	f
+getopt_long_only	optlib/getopt1.c	/^getopt_long_only (argc, argv, options, long_options, opt_index)$/;"	f
+getpid	optlib/getopt.c	87;"	d	file:
+getsel1package	main/select.c	/^static void getsel1package(struct pkginfo *pkg) {$/;"	f	file:
+getselections	main/select.c	/^void getselections(const char *const *argv) {$/;"	f
+gettext	build/include/dpkg.h	162;"	d
+gettextsrcdir	build/po/Makefile	/^gettextsrcdir = $(datadir)\/gettext\/po$/;"	m
+getwidth	main/query.c	/^static int getwidth(void) {$/;"	f	file:
+gid	main/filesdb.h	/^  gid_t gid;$/;"	m	struct:filestatoverride
+gl	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub gl {$/;"	s
+gl	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub gl {$/;"	s
+gl	debian/tmp/install/usr/sbin/update-alternatives	/^sub gl {$/;"	s
+gl	scripts/update-alternatives.pl	/^sub gl {$/;"	s
+gnu_to_debian	debian/tmp/install/usr/bin/dpkg-architecture	/^sub gnu_to_debian {$/;"	s
+gnu_to_debian	scripts/dpkg-architecture.pl	/^sub gnu_to_debian {$/;"	s
+greaterint	dselect/dselect.h	/^static inline int greaterint(int a, int b) { return a>b ? a : b; }$/;"	f
+h	lib/tarfn.c	/^	TarInfo h;$/;"	m	struct:symlinkList	file:
+handleformat	debian/tmp/install/usr/bin/dpkg-source	/^sub handleformat {$/;"	s
+handleformat	scripts/dpkg-source.pl	/^sub handleformat {$/;"	s
+has_arg	optlib/getopt.h	/^  int has_arg;$/;"	m	struct:option
+hash	include/dpkg-db.h	/^  const char *hash;$/;"	m	struct:conffile
+hash	lib/database.c	/^static int hash(const char *name) {$/;"	f	file:
+hash	lib/mlib.c	/^  unsigned char **hash;$/;"	m	struct:buffer_write_md5ctx	file:
+hash	main/filesdb.c	/^static int hash(const char *name) {$/;"	f	file:
+hashreport	lib/database.c	/^void hashreport(FILE *file) {$/;"	f
+headerlen	split/dpkg-split.h	/^  size_t headerlen; \/* size of header in part file *\/$/;"	m	struct:partinfo
+headings	dselect/pkglist.h	/^  struct perpackagestate *headings;$/;"	m	class:packagelist
+help	debian/tmp/dselect/usr/lib/dpkg/methods/floppy/install	/^help () {$/;"	f
+help	debian/tmp/dselect/usr/lib/dpkg/methods/floppy/update	/^help () {$/;"	f
+helpmenuentry	dselect/dselect.h	/^struct helpmenuentry {$/;"	s
+helpmenulist	dselect/methlist.cc	/^const struct helpmenuentry *methodlist::helpmenulist() {$/;"	f	class:methodlist
+helpmenulist	dselect/pkginfo.cc	/^const struct helpmenuentry *packagelist::helpmenulist() {$/;"	f	class:packagelist
+helpmessage	dselect/helpmsgs.h	/^struct helpmessage { const char *title; const char *text; };$/;"	s
+helponly	dpkg-deb/main.c	/^static void helponly(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+helponly	dselect/main.cc	/^  static void helponly(const struct cmdinfo*, const char*) {$/;"	f	file:
+helponly	main/main.c	/^static void helponly(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+helponly	main/query.c	/^static void helponly(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+helponly	split/main.c	/^static void helponly(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+helpscreen	dselect/dselect.h	/^       helpscreen,$/;"	e	enum:screenparts
+helpscreen_attr	dselect/dselect.h	/^  int helpscreen_attr;$/;"	m	class:baselist
+hex_digit	utils/md5sum.c	/^hex_digit(int c)$/;"	f
+hlp_displayexplain1	dselect/helpmsgs.cc	/^const struct helpmessage hlp_displayexplain1 = {$/;"	v
+hlp_displayexplain2	dselect/helpmsgs.cc	/^const struct helpmessage hlp_displayexplain2 = {$/;"	v
+hlp_listkeys	dselect/helpmsgs.cc	/^const struct helpmessage hlp_listkeys = {$/;"	v
+hlp_mainintro	dselect/helpmsgs.cc	/^const struct helpmessage hlp_mainintro = {$/;"	v
+hlp_methintro	dselect/helpmsgs.cc	/^const struct helpmessage hlp_methintro = {$/;"	v
+hlp_methkeys	dselect/helpmsgs.cc	/^const struct helpmessage hlp_methkeys = {$/;"	v
+hlp_readonlyintro	dselect/helpmsgs.cc	/^const struct helpmessage hlp_readonlyintro = {$/;"	v
+hlp_recurintro	dselect/helpmsgs.cc	/^const struct helpmessage hlp_recurintro = {$/;"	v
+i	build/include/dpkg.h	/^  int i;$/;"	m	union:buffer_arg
+iassignto	include/myopt.h	/^  int *iassignto;$/;"	m	struct:cmdinfo
+ignore_depends	main/help.c	/^int ignore_depends(struct pkginfo *pkg) {$/;"	f
+ignoredepends	main/main.c	/^static void ignoredepends(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+ignoredependss	main/main.c	/^struct packageinlist *ignoredependss=0;$/;"	v
+ignoredependss	main/query.c	/^struct packageinlist *ignoredependss=0;$/;"	v
+ihash_create	configure	/^ihash_create ();$/;"	f
+ilist_select	dpkg-deb/info.c	/^static int ilist_select(const struct dirent *de) {$/;"	f	file:
+illegal_packagename	include/dpkg-db.h	199;"	d
+importanttmp	lib/dbmodify.c	/^static FILE *importanttmp;$/;"	v	file:
+importanttmpfile	lib/dbmodify.c	/^static char *importanttmpfile=NULL;$/;"	v	file:
+in	lib/md5.h	/^	UWORD32 in[16];$/;"	m	struct:MD5Context
+index	build/doc/internals.html/index.html	/^<a name="index"><\/a>$/;"	a
+index	debian/tmp/install/usr/share/doc/dpkg/internals/index.html	/^<a name="index"><\/a>$/;"	a
+index	dselect/method.h	/^  char index[OPTIONINDEXMAXLEN];$/;"	m	struct:dselect_option
+info	dselect/dselect.h	/^       info,$/;"	e	enum:screenparts
+info	split/dpkg-split.h	/^  struct partinfo info;$/;"	m	struct:partqueue
+info_attr	dselect/dselect.h	/^  int list_attr, listsel_attr, title_attr, colheads_attr, info_attr;$/;"	m	class:baselist
+info_field	dpkg-deb/info.c	/^static void info_field(const char *debar, const char *directory,$/;"	f	file:
+info_head	dselect/dselect.h	/^       info_head,$/;"	e	enum:screenparts
+info_headattr	dselect/dselect.h	/^  int info_headattr, whatinfo_attr;$/;"	m	class:baselist
+info_height	dselect/dselect.h	/^  int thisstate_height, info_height, whatinfo_height;$/;"	m	class:baselist
+info_list	dpkg-deb/info.c	/^static void info_list(const char *debar, const char *directory) {$/;"	f	file:
+info_prepare	dpkg-deb/info.c	/^static void info_prepare(const char *const **argvp,$/;"	f	file:
+info_row	dselect/dselect.h	/^  int colheads_row, thisstate_row, info_row, whatinfo_row, list_row;$/;"	m	class:baselist
+info_spew	dpkg-deb/info.c	/^static void info_spew(const char *debar, const char *directory,$/;"	f	file:
+infoa	debian/tmp/dpkg-static/usr/sbin/dpkg-divert	/^sub infoa { &infol($file,$divertto,$package); }$/;"	s
+infoa	debian/tmp/dpkg/usr/sbin/dpkg-divert	/^sub infoa { &infol($file,$divertto,$package); }$/;"	s
+infoa	debian/tmp/install/usr/sbin/dpkg-divert	/^sub infoa { &infol($file,$divertto,$package); }$/;"	s
+infoa	scripts/dpkg-divert.pl	/^sub infoa { &infol($file,$divertto,$package); }$/;"	s
+infoinfos	dselect/pkginfo.cc	/^const packagelist::infotype packagelist::infoinfos[]= {$/;"	m	class:packagelist	file:
+infoinfos	dselect/pkglist.h	/^  static const infotype infoinfos[];$/;"	m	class:packagelist
+infol	debian/tmp/dpkg-static/usr/sbin/dpkg-divert	/^sub infol {$/;"	s
+infol	debian/tmp/dpkg/usr/sbin/dpkg-divert	/^sub infol {$/;"	s
+infol	debian/tmp/install/usr/sbin/dpkg-divert	/^sub infol {$/;"	s
+infol	scripts/dpkg-divert.pl	/^sub infol {$/;"	s
+infolines	dselect/dselect.h	/^  int infotopofscreen, infolines;$/;"	m	class:baselist
+infon	debian/tmp/dpkg-static/usr/sbin/dpkg-divert	/^sub infon { &infol($contest[$i],$altname[$i],$package[$i]); }$/;"	s
+infon	debian/tmp/dpkg/usr/sbin/dpkg-divert	/^sub infon { &infol($contest[$i],$altname[$i],$package[$i]); }$/;"	s
+infon	debian/tmp/install/usr/sbin/dpkg-divert	/^sub infon { &infol($contest[$i],$altname[$i],$package[$i]); }$/;"	s
+infon	scripts/dpkg-divert.pl	/^sub infon { &infol($contest[$i],$altname[$i],$package[$i]); }$/;"	s
+infopad	dselect/dselect.h	/^  WINDOW *listpad, *infopad, *colheadspad, *thisstatepad;$/;"	m	class:baselist
+informative	lib/database.c	/^int informative(struct pkginfo *pkg, struct pkginfoperfile *info) {$/;"	f
+informativeversion	lib/parsehelp.c	/^int informativeversion(const struct versionrevision *version) {$/;"	f
+infotopofscreen	dselect/dselect.h	/^  int infotopofscreen, infolines;$/;"	m	class:baselist
+infotype	dselect/pkglist.h	/^  struct infotype {$/;"	s	class:packagelist
+init	debian/tmp/install/usr/bin/dpkg-scansources	/^sub init {$/;"	s
+init	include/dpkg-db.h	/^  void init() { varbufinit(this); }$/;"	f	struct:varbuf
+init	scripts/dpkg-scansources.pl	/^sub init {$/;"	s
+initialsetup	dselect/pkglist.cc	/^void packagelist::initialsetup() {$/;"	f	class:packagelist
+installed	include/dpkg-db.h	/^  struct pkginfoperfile installed;$/;"	m	struct:pkginfo
+installedsize	include/dpkg-db.h	/^  char *description, *maintainer, *source, *architecture, *installedsize, *origin, *bugs;$/;"	m	struct:pkginfoperfile
+instdir	main/main.c	/^const char *instdir= "";$/;"	v
+instdir	main/query.c	/^const char *instdir= "";$/;"	v
+integer	include/parsedump.h	/^  unsigned int integer;$/;"	m	struct:fieldinfo
+internalGzip	dpkg-deb/build.c	/^int internalGzip(int fd1, int fd2, const char *compression, char *desc, ...) {$/;"	f
+internerr	build/include/dpkg.h	190;"	d
+internerr	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub internerr { die "$progname: internal error: $_[0]\\n"; }$/;"	s
+internerr	scripts/controllib.pl	/^sub internerr { die "$progname: internal error: $_[0]\\n"; }$/;"	s
+interp	dselect/bindings.h	/^    const struct interpretation *interp;$/;"	m	struct:keybindings::binding
+interpretation	dselect/bindings.h	/^struct keybindings::interpretation {$/;"	s	class:keybindings
+interps	dselect/bindings.h	/^  const interpretation *interps;$/;"	m	struct:keybindings
+invalid	lib/showpkg.c	/^typedef enum { invalid, string, field } itemtype_t;$/;"	e	file:
+isbin	debian/tmp/install/usr/bin/dpkg-shlibdeps	/^sub isbin {$/;"	s
+isbin	scripts/dpkg-shlibdeps.pl	/^sub isbin {$/;"	s
+isbin	scripts/dpkg-shlibdeps.pl~	/^sub isbin {$/;"	s
+isdirectoryinuse	main/help.c	/^int isdirectoryinuse(struct filenamenode *file, struct pkginfo *pkg) {$/;"	f
+istobe	main/main.h	/^  } istobe;$/;"	m	struct:perpackagestate
+istobes	main/main.h	/^  enum istobes {$/;"	g	struct:perpackagestate
+ists	build/po/Makefile	/^	if test -f $(srcdir)\/ChangeLog; then dists="$$dists ChangeLog"; fi; \\$/;"	m
+ists	build/po/Makefile	/^	if test -f $(srcdir)\/LINGUAS; then dists="$$dists LINGUAS"; fi; \\$/;"	m
+itb_deconfigure	main/main.h	/^    itb_normal, itb_remove, itb_installnew, itb_deconfigure, itb_preinstall$/;"	e	enum:perpackagestate::istobes
+itb_installnew	main/main.h	/^    itb_normal, itb_remove, itb_installnew, itb_deconfigure, itb_preinstall$/;"	e	enum:perpackagestate::istobes
+itb_normal	main/main.h	/^    itb_normal, itb_remove, itb_installnew, itb_deconfigure, itb_preinstall$/;"	e	enum:perpackagestate::istobes
+itb_preinstall	main/main.h	/^    itb_normal, itb_remove, itb_installnew, itb_deconfigure, itb_preinstall$/;"	e	enum:perpackagestate::istobes
+itb_remove	main/main.h	/^    itb_normal, itb_remove, itb_installnew, itb_deconfigure, itb_preinstall$/;"	e	enum:perpackagestate::istobes
+itd_availablecontrol	dselect/pkginfo.cc	/^void packagelist::itd_availablecontrol() {$/;"	f	class:packagelist
+itd_description	dselect/methlist.cc	/^void methodlist::itd_description() {$/;"	f	class:methodlist
+itd_description	dselect/pkginfo.cc	/^void packagelist::itd_description() {$/;"	f	class:packagelist
+itd_keys	dselect/baselist.cc	/^void baselist::itd_keys() {$/;"	f	class:baselist
+itd_relations	dselect/pkginfo.cc	/^void packagelist::itd_relations() {$/;"	f	class:packagelist
+itd_statuscontrol	dselect/pkginfo.cc	/^void packagelist::itd_statuscontrol() {$/;"	f	class:packagelist
+itemname	dselect/methlist.cc	/^const char *methodlist::itemname(int index) {$/;"	f	class:methodlist
+itemname	dselect/pkgcmds.cc	/^const char *packagelist::itemname(int index) {$/;"	f	class:packagelist
+itemtype_t	lib/showpkg.c	/^typedef enum { invalid, string, field } itemtype_t;$/;"	t	file:
+iterate	dselect/bindings.h	/^  const description *iterate;$/;"	m	struct:keybindings
+iterfileend	main/filesdb.c	/^void iterfileend(struct fileiterator *i) {$/;"	f
+iterfilenext	main/filesdb.c	/^struct filenamenode *iterfilenext(struct fileiterator *i) {$/;"	f
+iterfilestart	main/filesdb.c	/^struct fileiterator *iterfilestart(void) {$/;"	f
+iterpkgend	lib/database.c	/^void iterpkgend(struct pkgiterator *i) {$/;"	f
+iterpkgnext	lib/database.c	/^struct pkginfo *iterpkgnext(struct pkgiterator *i) {$/;"	f
+iterpkgstart	lib/database.c	/^struct pkgiterator *iterpkgstart(void) {$/;"	f
+itr_recursive	dselect/pkginfo.cc	/^int packagelist::itr_recursive() { return recursive; }$/;"	f	class:packagelist
+jaman1dir	build/man/ja/Makefile	/^jaman1dir	= $(subst $(mandir),$(mandir)\/ja,$(man1dir))$/;"	m
+jaman5dir	build/man/ja/Makefile	/^jaman5dir	= $(subst $(mandir),$(mandir)\/ja,$(man5dir))$/;"	m
+jaman8dir	build/man/ja/Makefile	/^jaman8dir	= $(subst $(mandir),$(mandir)\/ja,$(man8dir))$/;"	m
+jbufp	lib/ehandle.c	/^  jmp_buf *jbufp;$/;"	m	struct:errorcontext	file:
+kd_abort	dselect/methlist.cc	/^void methodlist::kd_abort() { }$/;"	f	class:methodlist
+kd_bottom	dselect/basecmds.cc	/^void baselist::kd_bottom() {$/;"	f	class:baselist
+kd_deselect	dselect/pkgcmds.cc	/^void packagelist::kd_deselect() { setwant(pkginfo::want_deinstall); }$/;"	f	class:packagelist
+kd_down	dselect/basecmds.cc	/^void baselist::kd_down() {$/;"	f	class:baselist
+kd_help	dselect/basecmds.cc	/^void baselist::kd_help() {$/;"	f	class:baselist
+kd_hold	dselect/pkgcmds.cc	/^void packagelist::kd_hold()     { setwant(pkginfo::want_hold);      }$/;"	f	class:packagelist
+kd_info	dselect/pkgcmds.cc	/^void packagelist::kd_info() {$/;"	f	class:packagelist
+kd_iscrollback	dselect/basecmds.cc	/^void baselist::kd_iscrollback() {$/;"	f	class:baselist
+kd_iscrollback1	dselect/basecmds.cc	/^void baselist::kd_iscrollback1() {$/;"	f	class:baselist
+kd_iscrollon	dselect/basecmds.cc	/^void baselist::kd_iscrollon() {$/;"	f	class:baselist
+kd_iscrollon1	dselect/basecmds.cc	/^void baselist::kd_iscrollon1() {$/;"	f	class:baselist
+kd_panback	dselect/basecmds.cc	/^void baselist::kd_panback() {$/;"	f	class:baselist
+kd_panback1	dselect/basecmds.cc	/^void baselist::kd_panback1() {$/;"	f	class:baselist
+kd_panon	dselect/basecmds.cc	/^void baselist::kd_panon() {$/;"	f	class:baselist
+kd_panon1	dselect/basecmds.cc	/^void baselist::kd_panon1() {$/;"	f	class:baselist
+kd_purge	dselect/pkgcmds.cc	/^void packagelist::kd_purge()    { setwant(pkginfo::want_purge);     }$/;"	f	class:packagelist
+kd_quit	dselect/methlist.cc	/^void methodlist::kd_quit() {$/;"	f	class:methodlist
+kd_quit_noop	dselect/pkgcmds.cc	/^void packagelist::kd_quit_noop() { }$/;"	f	class:packagelist
+kd_redraw	dselect/basecmds.cc	/^void baselist::kd_redraw() {$/;"	f	class:baselist
+kd_revert_abort	dselect/pkgcmds.cc	/^void packagelist::kd_revert_abort() {$/;"	f	class:packagelist
+kd_revertdirect	dselect/pkgcmds.cc	/^void packagelist::kd_revertdirect() {$/;"	f	class:packagelist
+kd_revertsuggest	dselect/pkgcmds.cc	/^void packagelist::kd_revertsuggest() {$/;"	f	class:packagelist
+kd_scrollback	dselect/basecmds.cc	/^void baselist::kd_scrollback() {$/;"	f	class:baselist
+kd_scrollback1	dselect/basecmds.cc	/^void baselist::kd_scrollback1() {$/;"	f	class:baselist
+kd_scrollon	dselect/basecmds.cc	/^void baselist::kd_scrollon() {$/;"	f	class:baselist
+kd_scrollon1	dselect/basecmds.cc	/^void baselist::kd_scrollon1() {$/;"	f	class:baselist
+kd_search	dselect/basecmds.cc	/^void baselist::kd_search() {$/;"	f	class:baselist
+kd_searchagain	dselect/basecmds.cc	/^void baselist::kd_searchagain() {$/;"	f	class:baselist
+kd_select	dselect/pkgcmds.cc	/^void packagelist::kd_select()   {$/;"	f	class:packagelist
+kd_swaporder	dselect/pkgcmds.cc	/^void packagelist::kd_swaporder() {$/;"	f	class:packagelist
+kd_swapstatorder	dselect/pkgcmds.cc	/^void packagelist::kd_swapstatorder() {$/;"	f	class:packagelist
+kd_toggleinfo	dselect/pkgcmds.cc	/^void packagelist::kd_toggleinfo() {$/;"	f	class:packagelist
+kd_top	dselect/basecmds.cc	/^void baselist::kd_top() {$/;"	f	class:baselist
+kd_unhold	dselect/pkgcmds.cc	/^void packagelist::kd_unhold()   { setwant(pkginfo::want_sentinel);  }$/;"	f	class:packagelist
+kd_up	dselect/basecmds.cc	/^void baselist::kd_up() {$/;"	f	class:baselist
+kd_verbose	dselect/pkgcmds.cc	/^void packagelist::kd_verbose() {$/;"	f	class:packagelist
+kd_versiondisplay	dselect/pkgcmds.cc	/^void packagelist::kd_versiondisplay() {$/;"	f	class:packagelist
+key	dselect/bindings.h	/^    int key;$/;"	m	struct:keybindings::binding
+key	dselect/bindings.h	/^    int key;$/;"	m	struct:keybindings::keyname
+key	dselect/bindings.h	/^    int key;$/;"	m	struct:keybindings::orgbinding
+key	dselect/dselect.h	/^  char key;$/;"	m	struct:helpmenuentry
+key	dselect/main.cc	/^  const char *key;$/;"	m	struct:menuentry	file:
+key2name	dselect/bindings.cc	/^const char *keybindings::key2name(int key) {$/;"	f	class:keybindings
+keybindings	dselect/bindings.cc	/^keybindings::keybindings(const interpretation *ints, const orgbinding *orgbindings) {$/;"	f	class:keybindings
+keybindings	dselect/bindings.h	/^struct keybindings {$/;"	s
+keyname	dselect/bindings.h	/^  struct keyname {$/;"	s	struct:keybindings
+keynames	dselect/bindings.h	/^  static const keyname keynames[];$/;"	m	struct:keybindings
+keynames	dselect/curkeys.cc	/^const keybindings::keyname keybindings::keynames[] = {$/;"	m	class:keybindings	file:
+killed	utils/start-stop-daemon.c	/^static struct pid_list *killed = NULL;$/;"	v	file:
+kname	dselect/bindings.h	/^    const char *kname;$/;"	m	struct:keybindings::keyname
+kvm_openfiles	configure	/^kvm_openfiles ();$/;"	f
+lang	build/po/Makefile	/^	  lang=`echo $$cat | sed -e 's\/\\.gmo$$\/\/'`; \\$/;"	m
+last_nonopt	optlib/getopt.c	/^static int last_nonopt;$/;"	v	file:
+lastreport	main/errors.c	/^static struct error_report **lastreport= &reports;$/;"	v	file:
+ldrawnend	dselect/dselect.h	/^  int nitems, ldrawnstart, ldrawnend, showinfo;$/;"	m	class:baselist
+ldrawnstart	dselect/dselect.h	/^  int nitems, ldrawnstart, ldrawnend, showinfo;$/;"	m	class:baselist
+leftofscreen	dselect/dselect.h	/^  int topofscreen, leftofscreen, cursorline;$/;"	m	class:baselist
+length	include/dpkg-db.h	/^  int value, length;$/;"	m	struct:namevalue
+lesserint	dselect/dselect.h	/^static inline int lesserint(int a, int b) { return a<b ? a : b; }$/;"	f
+license	debian/tmp/install/usr/bin/dpkg-name	/^license () {$/;"	f
+license	scripts/dpkg-name.sh	/^license () {$/;"	f
+limit	optlib/obstack.h	/^  char  *limit;			\/* 1 past end of this chunk *\/$/;"	m	struct:_obstack_chunk
+limiteddescription	main/enquiry.c	/^static void limiteddescription(struct pkginfo *pkg, int maxl,$/;"	f	file:
+limiteddescription	main/query.c	/^static void limiteddescription(struct pkginfo *pkg, int maxl,$/;"	f	file:
+link	build/po/Makefile	/^	        link=`cd $(DESTDIR)$(localedir)\/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's\/^.* -> \/\/'`; \\$/;"	m
+list	dselect/dselect.h	/^       list,$/;"	e	enum:screenparts
+list	include/dpkg-db.h	/^  struct deppossi *list;$/;"	m	struct:dependency
+list1package	main/query.c	/^static void list1package(struct pkginfo *pkg, int *head) {$/;"	f	file:
+list_attr	dselect/dselect.h	/^  int list_attr, listsel_attr, title_attr, colheads_attr, info_attr;$/;"	m	class:baselist
+list_height	dselect/dselect.h	/^  int title_height, colheads_height, list_height;$/;"	m	class:baselist
+list_row	dselect/dselect.h	/^  int colheads_row, thisstate_row, info_row, whatinfo_row, list_row;$/;"	m	class:baselist
+listpackages	main/query.c	/^void listpackages(const char *const *argv) {$/;"	f
+listpad	dselect/dselect.h	/^  WINDOW *listpad, *infopad, *colheadspad, *thisstatepad;$/;"	m	class:baselist
+listsel	dselect/dselect.h	/^       listsel,$/;"	e	enum:screenparts
+listsel_attr	dselect/dselect.h	/^  int list_attr, listsel_attr, title_attr, colheads_attr, info_attr;$/;"	m	class:baselist
+ll	build/po/Makefile	/^	ll=`echo $$lang | sed -e 's\/@.*\/\/'`; \\$/;"	m
+load_override	debian/tmp/install/usr/bin/dpkg-scansources	/^sub load_override {$/;"	s
+load_override	scripts/dpkg-scansources.pl	/^sub load_override {$/;"	s
+load_src_override	debian/tmp/install/usr/bin/dpkg-scansources	/^sub load_src_override {$/;"	s
+load_src_override	scripts/dpkg-scansources.pl	/^sub load_src_override {$/;"	s
+loadcfgfile	lib/myopt.c	/^void loadcfgfile(const char *prog, const struct cmdinfo* cmdinfos) {$/;"	f
+localedir	build/po/Makefile	/^localedir = $(datadir)\/locale$/;"	m
+lockdatabase	lib/lock.c	/^void lockdatabase(const char *admindir) {$/;"	f
+lockmethod	dselect/method.cc	/^static enum urqresult lockmethod(void) {$/;"	f	file:
+long_options	optlib/long-options.c	/^static struct option const long_options[] =$/;"	v	file:
+lstitem	lib/showpkg.c	/^struct lstitem {$/;"	s	file:
+m_dup2	lib/mlib.c	/^void m_dup2(int oldfd, int newfd) {$/;"	f
+m_fork	lib/mlib.c	/^int m_fork(void) {$/;"	f
+m_malloc	lib/mlib.c	/^void *m_malloc(size_t amount) {$/;"	f
+m_pipe	lib/mlib.c	/^void m_pipe(int *fds) {$/;"	f
+m_realloc	lib/mlib.c	/^void *m_realloc(void *r, size_t amount) {$/;"	f
+main	config.guess	/^		main()$/;"	f
+main	config.guess	/^	main ()$/;"	f
+main	config.guess	/^main ()$/;"	f
+main	debian/tmp/install/usr/bin/dpkg-scansources	/^sub main {$/;"	s
+main	dpkg-deb/main.c	/^int main(int argc, const char *const *argv) {$/;"	f
+main	dselect/main.cc	/^int main(int, const char *const *argv) {$/;"	f
+main	lib/star.c	/^main(int argc, char * * argv)$/;"	f
+main	main/main.c	/^int main(int argc, const char *const *argv) {$/;"	f
+main	main/query.c	/^int main(int argc, const char *const *argv) {$/;"	f
+main	optlib/getdate.c	/^main (ac, av)$/;"	f
+main	optlib/getopt.c	/^main (argc, argv)$/;"	f
+main	optlib/getopt1.c	/^main (argc, argv)$/;"	f
+main	scripts/dpkg-scansources.pl	/^sub main {$/;"	s
+main	split/main.c	/^int main(int argc, const char *const *argv) {$/;"	f
+main	utils/enoent.c	/^int main(int argc, char** argv) {$/;"	f
+main	utils/md5sum.c	/^main(int argc, char **argv)$/;"	f
+main	utils/start-stop-daemon.c	/^main(int argc, char **argv)$/;"	f
+maintainer	include/dpkg-db.h	/^  char *description, *maintainer, *source, *architecture, *installedsize, *origin, *bugs;$/;"	m	struct:pkginfoperfile
+maintainer_script_alternative	main/help.c	/^int maintainer_script_alternative(struct pkginfo *pkg,$/;"	f
+maintainer_script_installed	main/help.c	/^int maintainer_script_installed(struct pkginfo *pkg, const char *scriptname,$/;"	f
+maintainer_script_new	main/help.c	/^int maintainer_script_new(const char *pkgname,$/;"	f
+manual_install	dselect/pkgcmds.cc	/^int manual_install = 0;$/;"	v
+mask	lib/ehandle.c	/^    int mask;$/;"	m	struct:cleanupentry::<anonymous>	file:
+matchsearch	dselect/basecmds.cc	/^int baselist::matchsearch(int index) {$/;"	f	class:baselist
+matchsearch	dselect/pkglist.cc	/^int packagelist::matchsearch(int index) {$/;"	f	class:packagelist
+maximumstring	dselect/pkgdisplay.cc	/^static int maximumstring(const char *const *array) {$/;"	f	file:
+maxpartlen	split/dpkg-split.h	/^  unsigned long maxpartlen;$/;"	m	struct:partinfo
+maxpartn	split/dpkg-split.h	/^  unsigned int thispartn, maxpartn;$/;"	m	struct:partinfo
+maxpartsize	split/main.c	/^long maxpartsize= SPLITPARTDEFMAX;$/;"	v
+maybe_empty_object	optlib/obstack.h	/^  unsigned maybe_empty_object:1;\/* There is a possibility that the current$/;"	m	struct:obstack
+md5byte	lib/md5.h	26;"	d
+md5hash	main/configure.c	/^static void md5hash(struct pkginfo *pkg, char **hashbuf, const char *fn) {$/;"	f	file:
+md5sum	include/dpkg-db.h	/^  char *md5sum;$/;"	m	struct:filedetails
+md5sum	split/dpkg-split.h	/^  const char *md5sum;$/;"	m	struct:partinfo
+mdfile	utils/md5sum.c	/^mdfile(int fd, unsigned char **digest)$/;"	f
+menuent	dselect/main.cc	/^  const char *menuent;$/;"	m	struct:menuentry	file:
+menuentries	dselect/main.cc	/^static const menuentry menuentries[]= {$/;"	v	file:
+menuentry	dselect/main.cc	/^struct menuentry {$/;"	s	file:
+meth	dselect/method.h	/^  method *meth;$/;"	m	struct:dselect_option
+methlockfd	dselect/method.cc	/^static int methlockfd= -1;$/;"	v	file:
+method	dselect/method.h	/^struct method {$/;"	s
+methoddirectories	dselect/method.cc	/^static const char *const methoddirectories[]= {$/;"	v	file:
+methodlist	dselect/methlist.cc	/^methodlist::methodlist() : baselist(&methodlistbindings) {$/;"	f	class:methodlist
+methodlist	dselect/method.h	/^class methodlist : public baselist {$/;"	c
+methodlist_kinterps	dselect/methkeys.cc	/^const keybindings::interpretation methodlist_kinterps[] = {$/;"	v
+methodlist_korgbindings	dselect/methkeys.cc	/^const keybindings::orgbinding methodlist_korgbindings[]= {$/;"	v
+methodlockfile	dselect/method.cc	/^static char *methodlockfile= 0;$/;"	v	file:
+methods	dselect/methparse.cc	/^struct method *methods=0;$/;"	v
+methoptfile	dselect/methparse.cc	/^static char *methoptfile= 0;$/;"	v	file:
+mfn	dselect/bindings.h	/^  void (methodlist::*mfn)();$/;"	m	struct:keybindings::interpretation
+mkinstalldirs	build/po/Makefile	/^mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in \/*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)\/$(MKINSTALLDIRS)" ;; esac`$/;"	m
+mode	main/filesdb.h	/^  mode_t mode;$/;"	m	struct:filestatoverride
+modstatdb_init	lib/dbmodify.c	/^enum modstatdb_rw modstatdb_init(const char *adir, enum modstatdb_rw readwritereq) {$/;"	f
+modstatdb_note	lib/dbmodify.c	/^void modstatdb_note(struct pkginfo *pkg) {$/;"	f
+modstatdb_rw	include/dpkg-db.h	/^enum modstatdb_rw {$/;"	g
+modstatdb_shutdown	lib/dbmodify.c	/^void modstatdb_shutdown(void) {$/;"	f
+more	main/filesdb.h	/^  struct filepackages *more;$/;"	m	struct:filepackages
+move	debian/tmp/install/usr/bin/dpkg-name	/^move () {$/;"	f
+move	scripts/dpkg-name.sh	/^move () {$/;"	f
+movecontrolfiles	dpkg-deb/extract.c	/^static void movecontrolfiles(const char *thing) {$/;"	f	file:
+movecursorafter	dselect/pkgcmds.cc	/^void packagelist::movecursorafter(int ncursor) {$/;"	f	class:packagelist
+mpidfile	utils/start-stop-daemon.c	/^static int mpidfile = 0;$/;"	v	file:
+msdbrw_flagsmask	include/dpkg-db.h	/^  msdbrw_flagsmask= ~077,$/;"	e	enum:modstatdb_rw
+msdbrw_needsuperuser	include/dpkg-db.h	/^  msdbrw_write\/*s*\/, msdbrw_needsuperuser,$/;"	e	enum:modstatdb_rw
+msdbrw_needsuperuserlockonly	include/dpkg-db.h	/^  msdbrw_readonly\/*s*\/, msdbrw_needsuperuserlockonly\/*s*\/,$/;"	e	enum:modstatdb_rw
+msdbrw_noavail	include/dpkg-db.h	/^  msdbrw_noavail= 0100,$/;"	e	enum:modstatdb_rw
+msdbrw_readonly	include/dpkg-db.h	/^  msdbrw_readonly\/*s*\/, msdbrw_needsuperuserlockonly\/*s*\/,$/;"	e	enum:modstatdb_rw
+msdbrw_write	include/dpkg-db.h	/^  msdbrw_write\/*s*\/, msdbrw_needsuperuser,$/;"	e	enum:modstatdb_rw
+msdbrw_writeifposs	include/dpkg-db.h	/^  msdbrw_writeifposs,$/;"	e	enum:modstatdb_rw
+msdos	split/main.c	/^int npquiet= 0, msdos= 0;$/;"	v
+msdosname	include/dpkg-db.h	/^  char *msdosname;$/;"	m	struct:filedetails
+msg	dselect/dselect.h	/^  const struct helpmessage *msg;$/;"	m	struct:helpmenuentry
+mustgetpartinfo	split/info.c	/^void mustgetpartinfo(const char *filename, struct partinfo *ri) {$/;"	f
+mustsetvar	debian/tmp/install/usr/bin/dpkg-buildpackage	/^mustsetvar () {$/;"	f
+mustsetvar	scripts/dpkg-buildpackage.sh	/^mustsetvar () {$/;"	f
+my_index	optlib/getopt.c	/^my_index (str, chr)$/;"	f	file:
+my_index	optlib/getopt.c	209;"	d	file:
+myfileopt	lib/myopt.c	/^void myfileopt(const char* fn, const struct cmdinfo* cmdinfos) {$/;"	f
+myopt	lib/myopt.c	/^void myopt(const char *const **argvp, const struct cmdinfo *cmdinfos) {$/;"	f
+mywerase	dselect/baselist.cc	/^void mywerase(WINDOW *win) {$/;"	f
+nallocated	dselect/pkglist.h	/^  int recursive, nallocated, verbose;$/;"	m	class:packagelist
+name	dselect/main.cc	/^  const char *name;$/;"	m	struct:table_t	file:
+name	dselect/method.h	/^  char *name, *path, *pathinmeth;$/;"	m	struct:method
+name	dselect/method.h	/^  char *name, *summary;$/;"	m	struct:dselect_option
+name	include/dpkg-db.h	/^  char *name;$/;"	m	struct:arbitraryfield
+name	include/dpkg-db.h	/^  char *name;$/;"	m	struct:filedetails
+name	include/dpkg-db.h	/^  const char *name;$/;"	m	struct:conffile
+name	include/dpkg-db.h	/^  const char *name;$/;"	m	struct:namevalue
+name	include/dpkg-db.h	/^  const char *name;$/;"	m	struct:pkginfo
+name	include/parsedump.h	/^  const char *name;$/;"	m	struct:fieldinfo
+name	main/enquiry.c	/^  const char *name;$/;"	m	struct:sectionentry	file:
+name	main/filesdb.h	/^  const char *name;$/;"	m	struct:filenamenode
+name	main/main.c	/^  const char *name;$/;"	m	struct:forceinfo	file:
+name	optlib/getdate.c	/^    const char	*name;$/;"	m	struct:_TABLE	file:
+name	optlib/getopt.h	/^  const char *name;$/;"	m	struct:option
+name	utils/start-stop-daemon.c	/^	const char *name;$/;"	m	struct:sigpair	file:
+name2key	dselect/bindings.cc	/^int keybindings::name2key(const char *name) {$/;"	f	class:keybindings
+name_column	dselect/method.h	/^  int name_column, description_column;$/;"	m	class:methodlist
+name_width	dselect/method.h	/^  int status_width, gap_width, name_width, description_width;$/;"	m	class:methodlist
+namenode	main/filesdb.c	/^  struct filenamenode *namenode;$/;"	m	struct:fileiterator	file:
+namenode	main/filesdb.h	/^  struct filenamenode *namenode;$/;"	m	struct:fileinlist
+namenodetouse	main/help.c	/^struct filenamenode *namenodetouse(struct filenamenode *namenode, struct pkginfo *pkg) {$/;"	f
+namevalue	include/dpkg-db.h	/^struct namevalue {$/;"	s
+nbinn	lib/database.c	/^  int nbinn;$/;"	m	struct:pkgiterator	file:
+nbinn	main/filesdb.c	/^  int nbinn;$/;"	m	struct:fileiterator	file:
+nerrs	main/errors.c	/^int nerrs= 0;$/;"	v
+nes	lib/database.c	/^static int nes(const char *s) { return s && *s; }$/;"	f	file:
+newfilesp	main/archives.h	/^  struct fileinlist **newfilesp;$/;"	m	struct:tarcontext
+newtarobject_allmodes	main/archives.c	/^static void newtarobject_allmodes(const char *path, struct TarInfo *ti, struct filestatoverride* statoverride) {$/;"	f	file:
+newtarobject_utime	main/archives.c	/^static void newtarobject_utime(const char *path, struct TarInfo *ti) {$/;"	f	file:
+next	dpkg-deb/build.c	/^  struct _finfo* next;$/;"	m	struct:_finfo	file:
+next	dselect/bindings.h	/^    binding *next;$/;"	m	struct:keybindings::binding
+next	dselect/method.h	/^  dselect_option *next;$/;"	m	struct:dselect_option
+next	dselect/method.h	/^  struct method *next, *back;$/;"	m	struct:method
+next	dselect/pkglist.h	/^  struct doneent { doneent *next; void *dep; } *depsdone, *unavdone;$/;"	m	struct:packagelist::doneent
+next	include/dpkg-db.h	/^  struct arbitraryfield *next;$/;"	m	struct:arbitraryfield
+next	include/dpkg-db.h	/^  struct conffile *next;$/;"	m	struct:conffile
+next	include/dpkg-db.h	/^  struct dependency *next;$/;"	m	struct:dependency
+next	include/dpkg-db.h	/^  struct deppossi *next, *nextrev, *backrev;$/;"	m	struct:deppossi
+next	include/dpkg-db.h	/^  struct filedetails *next;$/;"	m	struct:filedetails
+next	include/dpkg-db.h	/^  struct pipef *next;$/;"	m	struct:pipef
+next	include/dpkg-db.h	/^  struct pkginfo *next;$/;"	m	struct:pkginfo
+next	lib/ehandle.c	/^  struct cleanupentry *next;$/;"	m	struct:cleanupentry	file:
+next	lib/ehandle.c	/^  struct errorcontext *next;$/;"	m	struct:errorcontext	file:
+next	lib/showpkg.c	/^	struct lstitem* next;$/;"	m	struct:lstitem	file:
+next	lib/tarfn.c	/^	struct symlinkList *next;$/;"	m	struct:symlinkList	file:
+next	main/enquiry.c	/^  struct sectionentry *next;$/;"	m	struct:sectionentry	file:
+next	main/errors.c	/^  struct error_report *next;$/;"	m	struct:error_report	file:
+next	main/filesdb.h	/^  struct diversion *next;$/;"	m	struct:diversion
+next	main/filesdb.h	/^  struct fileinlist *next;$/;"	m	struct:fileinlist
+next	main/filesdb.h	/^  struct filenamenode *next;$/;"	m	struct:filenamenode
+next	main/main.h	/^  struct packageinlist *next;$/;"	m	struct:packageinlist
+next	main/packages.c	/^  struct pkginqueue *next;$/;"	m	struct:pkginqueue	file:
+next	utils/start-stop-daemon.c	/^	struct pid_list *next;$/;"	m	struct:pid_list	file:
+next_free	optlib/obstack.h	/^  char	*next_free;		\/* where to add next char to current object *\/$/;"	m	struct:obstack
+nextchar	optlib/getopt.c	/^static char *nextchar;$/;"	v	file:
+nextinqueue	split/dpkg-split.h	/^  struct partqueue *nextinqueue;$/;"	m	struct:partqueue
+nextline	split/info.c	/^static char *nextline(char **ripp, const char *fn, const char *what) {$/;"	f	file:
+nextrev	include/dpkg-db.h	/^  struct deppossi *next, *nextrev, *backrev;$/;"	m	struct:deppossi
+nextupdate	lib/dbmodify.c	/^static int nextupdate;$/;"	v	file:
+nffreeall	lib/nfmalloc.c	/^void nffreeall(void) {$/;"	f
+nfields	lib/parse.c	/^const int nfields= NFIELDS;$/;"	v
+nfiles	main/filesdb.c	/^static int nfiles= 0;$/;"	v	file:
+nfmalloc	lib/nfmalloc.c	/^inline void *nfmalloc(size_t size)$/;"	f
+nfobstack_init	lib/nfmalloc.c	/^static void nfobstack_init(void) {$/;"	f	file:
+nfstrnsave	lib/nfmalloc.c	/^char *nfstrnsave(const char *string, int l) {$/;"	f
+nfstrsave	lib/nfmalloc.c	/^char *nfstrsave(const char *string) {$/;"	f
+nicelevel	utils/start-stop-daemon.c	/^static int nicelevel = 0;$/;"	v	file:
+nick	include/parsedump.h	/^  const char *nick;$/;"	m	struct:nickname
+nickname	include/parsedump.h	/^struct nickname {$/;"	s
+nicknames	lib/parsehelp.c	/^const struct nickname nicknames[]= {$/;"	v
+nitems	dselect/dselect.h	/^  int nitems, ldrawnstart, ldrawnend, showinfo;$/;"	m	class:baselist
+no_argument	optlib/getopt.h	99;"	d
+nocheckflag	dpkg-deb/main.c	/^int debugflag=0, nocheckflag=0, oldformatflag=BUILDOLDPKGFORMAT;$/;"	v
+nonoption_flags_len	optlib/getopt.c	/^static int nonoption_flags_len;$/;"	v	file:
+nonoption_flags_max_len	optlib/getopt.c	/^static int nonoption_flags_max_len;$/;"	v	file:
+noptions	dselect/methparse.cc	/^int noptions=0;$/;"	v
+note_must_reread_files_inpackage	main/filesdb.c	/^void note_must_reread_files_inpackage(struct pkginfo *pkg) {$/;"	f
+npackages	lib/database.c	/^static int npackages;$/;"	v	file:
+npquiet	split/main.c	/^int npquiet= 0, msdos= 0;$/;"	v
+nsigact	dselect/dselect.h	/^  struct sigaction *osigactp, nsigact;$/;"	m	class:baselist
+num	dselect/main.cc	/^  const int num;$/;"	m	struct:table_t	file:
+numscreenparts	dselect/dselect.h	/^       numscreenparts,$/;"	e	enum:screenparts
+object_base	optlib/obstack.h	/^  char	*object_base;		\/* address of object we are building *\/$/;"	m	struct:obstack
+oblockedp	dselect/dselect.h	/^  sigset_t *oblockedp, sigwinchset;$/;"	m	class:baselist
+obstack	optlib/obstack.h	/^struct obstack		\/* control current object in current chunk *\/$/;"	s
+obstack_1grow	optlib/obstack.h	410;"	d
+obstack_1grow	optlib/obstack.h	534;"	d
+obstack_1grow_fast	optlib/obstack.h	347;"	d
+obstack_alignment_mask	optlib/obstack.h	285;"	d
+obstack_alloc	optlib/obstack.h	453;"	d
+obstack_alloc	optlib/obstack.h	561;"	d
+obstack_alloc_failed_handler	optlib/obstack.c	/^void (*obstack_alloc_failed_handler) () = print_and_abort;$/;"	v
+obstack_alloc_failed_handler	optlib/obstack.c	/^void (*obstack_alloc_failed_handler) (void) = print_and_abort;$/;"	v
+obstack_base	optlib/obstack.h	273;"	d
+obstack_begin	optlib/obstack.h	296;"	d
+obstack_begin	optlib/obstack.h	324;"	d
+obstack_blank	optlib/obstack.h	444;"	d
+obstack_blank	optlib/obstack.h	555;"	d
+obstack_blank_fast	optlib/obstack.h	349;"	d
+obstack_chunk_alloc	lib/nfmalloc.c	31;"	d	file:
+obstack_chunk_alloc	main/archives.c	37;"	d	file:
+obstack_chunk_free	lib/nfmalloc.c	32;"	d	file:
+obstack_chunk_free	main/archives.c	38;"	d	file:
+obstack_chunk_size	optlib/obstack.h	277;"	d
+obstack_chunkfun	optlib/obstack.h	311;"	d
+obstack_chunkfun	optlib/obstack.h	339;"	d
+obstack_copy	optlib/obstack.h	459;"	d
+obstack_copy	optlib/obstack.h	564;"	d
+obstack_copy0	optlib/obstack.h	465;"	d
+obstack_copy0	optlib/obstack.h	567;"	d
+obstack_empty_p	optlib/obstack.h	384;"	d
+obstack_empty_p	optlib/obstack.h	505;"	d
+obstack_exit_failure	optlib/obstack.c	/^int obstack_exit_failure = EXIT_FAILURE;$/;"	v
+obstack_finish	optlib/obstack.h	473;"	d
+obstack_finish	optlib/obstack.h	570;"	d
+obstack_free	optlib/obstack.c	/^obstack_free (h, obj)$/;"	f
+obstack_free	optlib/obstack.c	373;"	d	file:
+obstack_free	optlib/obstack.h	489;"	d
+obstack_free	optlib/obstack.h	585;"	d
+obstack_free	optlib/obstack.h	592;"	d
+obstack_freefun	optlib/obstack.h	314;"	d
+obstack_freefun	optlib/obstack.h	342;"	d
+obstack_grow	optlib/obstack.h	389;"	d
+obstack_grow	optlib/obstack.h	519;"	d
+obstack_grow0	optlib/obstack.h	399;"	d
+obstack_grow0	optlib/obstack.h	526;"	d
+obstack_init	optlib/obstack.h	291;"	d
+obstack_init	optlib/obstack.h	319;"	d
+obstack_int_grow	optlib/obstack.h	430;"	d
+obstack_int_grow	optlib/obstack.h	544;"	d
+obstack_int_grow_fast	optlib/obstack.h	441;"	d
+obstack_int_grow_fast	optlib/obstack.h	552;"	d
+obstack_make_room	optlib/obstack.h	376;"	d
+obstack_make_room	optlib/obstack.h	514;"	d
+obstack_memory_used	optlib/obstack.h	351;"	d
+obstack_next_free	optlib/obstack.h	281;"	d
+obstack_object_size	optlib/obstack.h	366;"	d
+obstack_object_size	optlib/obstack.h	499;"	d
+obstack_ptr_grow	optlib/obstack.h	422;"	d
+obstack_ptr_grow	optlib/obstack.h	539;"	d
+obstack_ptr_grow_fast	optlib/obstack.h	438;"	d
+obstack_ptr_grow_fast	optlib/obstack.h	549;"	d
+obstack_room	optlib/obstack.h	371;"	d
+obstack_room	optlib/obstack.h	502;"	d
+obstack_specify_allocation	optlib/obstack.h	301;"	d
+obstack_specify_allocation	optlib/obstack.h	329;"	d
+obstack_specify_allocation_with_arg	optlib/obstack.h	306;"	d
+obstack_specify_allocation_with_arg	optlib/obstack.h	334;"	d
+ohshit	lib/ehandle.c	/^void ohshit(const char *fmt, ...) {$/;"	f
+ohshite	lib/ehandle.c	/^void ohshite(const char *fmt, ...) {$/;"	f
+ohshitv	lib/ehandle.c	/^void ohshitv(const char *fmt, va_list al) {$/;"	f
+ohshitvb	lib/ehandle.c	/^void ohshitvb(struct varbuf *vb) {$/;"	f
+ok_prermdeconfigure	main/cleanup.c	/^void ok_prermdeconfigure(int argc, void **argv) {$/;"	f
+okpassshortopts	main/main.c	/^static const char okpassshortopts[]= "D";$/;"	v	file:
+oldconffsetflags	main/help.c	/^void oldconffsetflags(const struct conffile *searchconff) {$/;"	f
+oldformatflag	dpkg-deb/main.c	/^int debugflag=0, nocheckflag=0, oldformatflag=BUILDOLDPKGFORMAT;$/;"	v
+oldhash	main/filesdb.h	/^  const char *oldhash; \/* valid iff this namenode is in the newconffiles list *\/$/;"	m	struct:filenamenode
+olong	include/myopt.h	/^  const char *olong;$/;"	m	struct:cmdinfo
+onerr_abort	lib/mlib.c	/^volatile int onerr_abort= 0;$/;"	v
+operator ()	dselect/bindings.cc	/^const keybindings::interpretation *keybindings::operator()(int key) {$/;"	f	class:keybindings
+operator ()	include/dpkg-db.h	/^  void operator()(const char *s) { varbufaddstr(this,s); }$/;"	f	struct:varbuf
+operator ()	include/dpkg-db.h	/^  void operator()(int c) { varbufaddc(this,c); }$/;"	f	struct:varbuf
+operator delete	dselect/main.cc	/^extern void operator delete(void *p) {$/;"	f
+operator new	dselect/main.cc	/^extern void *operator new(size_t size) {$/;"	f
+opt	main/main.c	/^  int *opt;$/;"	m	struct:forceinfo	file:
+optarg	optlib/getopt.c	/^char *optarg = NULL;$/;"	v
+opterr	optlib/getopt.c	/^int opterr = 1;$/;"	v
+optind	optlib/getopt.c	/^int optind = 1;$/;"	v
+option	dselect/main.cc	/^  const char *option;$/;"	m	struct:menuentry	file:
+option	optlib/getopt.h	/^struct option$/;"	s
+optional_argument	optlib/getopt.h	101;"	d
+options	dselect/methparse.cc	/^struct dselect_option *options=0, *coption=0;$/;"	v
+optopt	optlib/getopt.c	/^int optopt = '?';$/;"	v
+order	lib/vercmp.c	36;"	d	file:
+ordering	optlib/getopt.c	/^} ordering;$/;"	v	file:
+orgbinding	dselect/bindings.h	/^  struct orgbinding {$/;"	s	struct:keybindings
+orglength	split/dpkg-split.h	/^  unsigned long orglength;$/;"	m	struct:partinfo
+origin	include/dpkg-db.h	/^  char *description, *maintainer, *source, *architecture, *installedsize, *origin, *bugs;$/;"	m	struct:pkginfoperfile
+original	dselect/pkglist.h	/^  pkginfo::pkgwant original;         \/\/ set by caller$/;"	m	struct:perpackagestate
+original_argc	optlib/getopt.c	/^static int original_argc;$/;"	v	file:
+original_argv	optlib/getopt.c	/^static char *const *original_argv;$/;"	v	file:
+oshort	include/myopt.h	/^  char oshort;$/;"	m	struct:cmdinfo
+osigactp	dselect/dselect.h	/^  struct sigaction *osigactp, nsigact;$/;"	m	class:baselist
+otherpriority	include/dpkg-db.h	/^  const char *otherpriority;$/;"	m	struct:pkginfo
+output	debian/tmp/dpkg-static/usr/lib/dpkg/mksplit	/^sub output {$/;"	s
+output	debian/tmp/dpkg/usr/lib/dpkg/mksplit	/^sub output {$/;"	s
+output	debian/tmp/install/usr/lib/dpkg/mksplit	/^sub output {$/;"	s
+output	split/mksplit.pl	/^sub output {$/;"	s
+outputclose	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub outputclose {$/;"	s
+outputclose	scripts/controllib.pl	/^sub outputclose {$/;"	s
+outputfile	split/main.c	/^const char *depotdir= ADMINDIR "\/" PARTSDIR, *outputfile= NULL;$/;"	v
+outputparam	debian/tmp/dselect/usr/lib/dpkg/methods/disk/setup	/^outputparam () {$/;"	f
+outputparam	debian/tmp/dselect/usr/lib/dpkg/methods/floppy/setup	/^outputparam () {$/;"	f
+p	dselect/mkcurkeys.pl	/^sub p {$/;"	s
+package	split/dpkg-split.h	/^  const char *package;$/;"	m	struct:partinfo
+package_column	dselect/pkglist.h	/^  int versionavailable_column, package_column, description_column;$/;"	m	class:packagelist
+package_width	dselect/pkglist.h	/^  int package_width, versioninstalled_width, versionavailable_width, description_width;$/;"	m	class:packagelist
+packageinlist	main/main.h	/^struct packageinlist {$/;"	s
+packagelist	dselect/pkglist.cc	/^packagelist::packagelist(keybindings *kb) : baselist(kb) {$/;"	f	class:packagelist
+packagelist	dselect/pkglist.cc	/^packagelist::packagelist(keybindings *kb, pkginfo **pkgltab) : baselist(kb) {$/;"	f	class:packagelist
+packagelist	dselect/pkglist.h	/^class packagelist : public baselist {$/;"	c
+packagelist_kinterps	dselect/pkgkeys.cc	/^const keybindings::interpretation packagelist_kinterps[] = {$/;"	v
+packagelist_korgbindings	dselect/pkgkeys.cc	/^const keybindings::orgbinding packagelist_korgbindings[]= {$/;"	v
+packages	main/filesdb.h	/^  struct filepackages *packages;$/;"	m	struct:filenamenode
+packages	main/packages.c	/^void packages(const char *const *argv) {$/;"	f
+pad	lib/showpkg.c	/^	int pad;$/;"	m	struct:lstitem	file:
+paf	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub paf {$/;"	s
+paf	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub paf {$/;"	s
+paf	debian/tmp/install/usr/sbin/update-alternatives	/^sub paf {$/;"	s
+paf	scripts/update-alternatives.pl	/^sub paf {$/;"	s
+parg	include/myopt.h	/^  void *parg;$/;"	m	struct:cmdinfo
+parse_integer	utils/start-stop-daemon.c	/^static int parse_integer(const char *string, int *value_r) {$/;"	f	file:
+parse_long_options	optlib/long-options.c	/^parse_long_options (argc, argv, command_name, package, version, usage)$/;"	f
+parse_options	utils/start-stop-daemon.c	/^parse_options(int argc, char * const *argv)$/;"	f	file:
+parse_schedule	utils/start-stop-daemon.c	/^parse_schedule(const char *schedule_str) {$/;"	f	file:
+parse_schedule_item	utils/start-stop-daemon.c	/^parse_schedule_item(const char *string, struct schedule_item *item) {$/;"	f	file:
+parse_signal	utils/start-stop-daemon.c	/^static int parse_signal(const char *signal_str, int *signal_nr)$/;"	f	file:
+parse_status	debian/tmp/install/usr/bin/dpkg-checkbuilddeps	/^sub parse_status {$/;"	s
+parse_status	scripts/dpkg-checkbuilddeps.pl	/^sub parse_status {$/;"	s
+parsecdata	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub parsecdata {$/;"	s
+parsecdata	scripts/controllib.pl	/^sub parsecdata {$/;"	s
+parsechangelog	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub parsechangelog {$/;"	s
+parsechangelog	scripts/controllib.pl	/^sub parsechangelog {$/;"	s
+parsecontrolfile	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub parsecontrolfile {$/;"	s
+parsecontrolfile	scripts/controllib.pl	/^sub parsecontrolfile {$/;"	s
+parsedb	lib/parse.c	/^int parsedb(const char *filename, enum parsedbflags flags,$/;"	f
+parsedbflags	include/dpkg-db.h	/^enum parsedbflags {$/;"	g
+parseerr	lib/parsehelp.c	/^void parseerr$/;"	f
+parsefield	lib/showpkg.c	/^static int parsefield(struct lstitem* cur, const char* fmt, const char* fmtend) {$/;"	f	file:
+parseformat	lib/showpkg.c	/^struct lstitem* parseformat(const char* fmt) {$/;"	f
+parseheaderlength	dpkg-deb/extract.c	/^static unsigned long parseheaderlength(const char *inh, size_t len,$/;"	f	file:
+parseheaderlength	split/info.c	/^static unsigned long parseheaderlength(const char *inh, size_t len,$/;"	f	file:
+parsemustfield	lib/parsehelp.c	/^void parsemustfield$/;"	f
+parsestring	lib/showpkg.c	/^static int parsestring(struct lstitem* cur, const char* fmt, const char* fmtend) {$/;"	f	file:
+parseversion	lib/parsehelp.c	/^const char *parseversion(struct versionrevision *rversion, const char *string) {$/;"	f
+partinfo	split/dpkg-split.h	/^struct partinfo {$/;"	s
+partmatches	split/queue.c	/^static int partmatches(struct partinfo *pi, struct partinfo *refi) {$/;"	f	file:
+partqueue	split/dpkg-split.h	/^struct partqueue {$/;"	s
+path	dselect/method.h	/^  char *name, *path, *pathinmeth;$/;"	m	struct:method
+pathinmeth	dselect/method.h	/^  char *name, *path, *pathinmeth;$/;"	m	struct:method
+pdb_ignorefiles	include/dpkg-db.h	/^  pdb_ignorefiles       =010  \/* Ignore files info if we already have them             *\/$/;"	e	enum:parsedbflags
+pdb_recordavailable	include/dpkg-db.h	/^  pdb_recordavailable   =001, \/* Store in `available' in-core structures, not `status' *\/$/;"	e	enum:parsedbflags
+pdb_rejectstatus	include/dpkg-db.h	/^  pdb_rejectstatus      =002, \/* Throw up an error if `Status' encountered             *\/$/;"	e	enum:parsedbflags
+pdb_weakclassification	include/dpkg-db.h	/^  pdb_weakclassification=004, \/* Ignore priority\/section info if we already have any   *\/$/;"	e	enum:parsedbflags
+perpackagestate	dselect/pkglist.h	/^struct perpackagestate {$/;"	s
+perpackagestate	main/main.h	/^struct perpackagestate {$/;"	s
+pfn	dselect/bindings.h	/^  void (packagelist::*pfn)();$/;"	m	struct:keybindings::interpretation
+pid	utils/start-stop-daemon.c	/^	pid_t pid;$/;"	m	struct:pid_list	file:
+pid_is_cmd	utils/start-stop-daemon.c	/^pid_is_cmd(pid_t pid, const char *name)$/;"	f	file:
+pid_is_exec	utils/start-stop-daemon.c	/^pid_is_exec(pid_t pid, const char *name)$/;"	f	file:
+pid_is_exec	utils/start-stop-daemon.c	/^pid_is_exec(pid_t pid, const struct stat *esb)$/;"	f	file:
+pid_is_running	utils/start-stop-daemon.c	/^pid_is_running(pid_t pid)$/;"	f	file:
+pid_is_user	utils/start-stop-daemon.c	/^pid_is_user(pid_t pid, uid_t uid)$/;"	f	file:
+pid_list	utils/start-stop-daemon.c	/^struct pid_list {$/;"	s	file:
+pidfile	utils/start-stop-daemon.c	/^static const char *pidfile = NULL;$/;"	v	file:
+pigp	lib/database.c	/^  struct pkginfo *pigp;$/;"	m	struct:pkgiterator	file:
+pipef	include/dpkg-db.h	/^struct pipef {$/;"	s
+pkg	dselect/pkglist.h	/^  struct pkginfo *pkg;$/;"	m	struct:perpackagestate
+pkg	main/archives.h	/^  struct pkginfo *pkg;$/;"	m	struct:tarcontext
+pkg	main/depcon.c	/^  struct pkginfo *pkg;$/;"	m	struct:cyclesofarlink	file:
+pkg	main/filesdb.h	/^  struct pkginfo *pkg;$/;"	m	struct:diversion
+pkg	main/main.h	/^  struct pkginfo *pkg;$/;"	m	struct:packageinlist
+pkg	main/packages.c	/^  struct pkginfo *pkg;$/;"	m	struct:pkginqueue	file:
+pkgadminfile	main/help.c	/^const char *pkgadminfile(struct pkginfo *pkg, const char *whichfile) {$/;"	f
+pkgadminfile	main/query.c	/^const char *pkgadminfile(struct pkginfo *pkg, const char *whichfile) {$/;"	f
+pkgeflag	include/dpkg-db.h	/^  enum pkgeflag {$/;"	g	struct:pkginfo
+pkginfo	include/dpkg-db.h	/^struct pkginfo { \/* pig *\/$/;"	s
+pkginfoperfile	include/dpkg-db.h	/^struct pkginfoperfile { \/* pif *\/$/;"	s
+pkginqueue	main/packages.c	/^struct pkginqueue {$/;"	s	file:
+pkgiterator	lib/database.c	/^struct pkgiterator {$/;"	s	file:
+pkglistqsortcmp	main/enquiry.c	/^int pkglistqsortcmp(const void *a, const void *b) {$/;"	f
+pkglistqsortcmp	main/query.c	/^int pkglistqsortcmp(const void *a, const void *b) {$/;"	f
+pkgpriority	include/dpkg-db.h	/^  enum pkgpriority {$/;"	g	struct:pkginfo
+pkgprioritystring	dselect/pkgtop.cc	/^const char *pkgprioritystring(const struct pkginfo *pkg) {$/;"	f
+pkgs	main/filesdb.h	/^  struct pkginfo *pkgs[PERFILEPACKAGESLUMP];$/;"	m	struct:filepackages
+pkgstatus	include/dpkg-db.h	/^  enum pkgstatus {$/;"	g	struct:pkginfo
+pkgwant	include/dpkg-db.h	/^  enum pkgwant {$/;"	g	struct:pkginfo
+pop_cleanup	lib/ehandle.c	/^void pop_cleanup(int flagset) {$/;"	f
+posixly_correct	optlib/getopt.c	/^static char *posixly_correct;$/;"	v	file:
+possi	main/depcon.c	/^  struct deppossi *possi;$/;"	m	struct:cyclesofarlink	file:
+pr	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub pr { print(STDOUT "@_\\n") || &quit("error writing stdout: $!"); }$/;"	s
+pr	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub pr { print(STDOUT "@_\\n") || &quit("error writing stdout: $!"); }$/;"	s
+pr	debian/tmp/install/usr/sbin/update-alternatives	/^sub pr { print(STDOUT "@_\\n") || &quit("error writing stdout: $!"); }$/;"	s
+pr	scripts/update-alternatives.pl	/^sub pr { print(STDOUT "@_\\n") || &quit("error writing stdout: $!"); }$/;"	s
+predeppackage	main/enquiry.c	/^void predeppackage(const char *const *argv) {$/;"	f
+preexecscript	main/help.c	/^static const char* preexecscript(const char *path, char *const *argv) {$/;"	f	file:
+prefix	build/po/Makefile	/^prefix = \/usr$/;"	m
+prev	optlib/obstack.h	/^  struct _obstack_chunk *prev;	\/* address of prior chunk or NULL *\/$/;"	m	struct:_obstack_chunk
+pri_contrib	include/dpkg-db.h	/^    pri_optional, pri_extra, pri_contrib,$/;"	e	enum:pkginfo::pkgpriority
+pri_extra	include/dpkg-db.h	/^    pri_optional, pri_extra, pri_contrib,$/;"	e	enum:pkginfo::pkgpriority
+pri_important	include/dpkg-db.h	/^    pri_required, pri_important, pri_standard, pri_recommended,$/;"	e	enum:pkginfo::pkgpriority
+pri_optional	include/dpkg-db.h	/^    pri_optional, pri_extra, pri_contrib,$/;"	e	enum:pkginfo::pkgpriority
+pri_other	include/dpkg-db.h	/^    pri_other, pri_unknown, pri_unset=-1$/;"	e	enum:pkginfo::pkgpriority
+pri_recommended	include/dpkg-db.h	/^    pri_required, pri_important, pri_standard, pri_recommended,$/;"	e	enum:pkginfo::pkgpriority
+pri_required	include/dpkg-db.h	/^    pri_required, pri_important, pri_standard, pri_recommended,$/;"	e	enum:pkginfo::pkgpriority
+pri_standard	include/dpkg-db.h	/^    pri_required, pri_important, pri_standard, pri_recommended,$/;"	e	enum:pkginfo::pkgpriority
+pri_unknown	include/dpkg-db.h	/^    pri_other, pri_unknown, pri_unset=-1$/;"	e	enum:pkginfo::pkgpriority
+pri_unset	include/dpkg-db.h	/^    pri_other, pri_unknown, pri_unset=-1$/;"	e	enum:pkginfo::pkgpriority
+print_and_abort	optlib/obstack.c	/^print_and_abort ()$/;"	f	file:
+print_error_cleanup	lib/ehandle.c	/^static void print_error_cleanup(const char *emsg, const char *contextstring) {$/;"	f	file:
+print_error_fatal	lib/ehandle.c	/^void print_error_fatal(const char *emsg, const char *contextstring) {$/;"	f
+print_error_forked	lib/mlib.c	/^static void print_error_forked(const char *emsg, const char *contextstring) {$/;"	f	file:
+print_error_perpackage	main/errors.c	/^void print_error_perpackage(const char *emsg, const char *arg) {$/;"	f
+print_info	split/info.c	/^void print_info(const struct partinfo *pi) {$/;"	f
+print_md5sum_error	utils/md5sum.c	/^print_md5sum_error(const char* emsg, const char* arg) {$/;"	f	file:
+printarch	main/enquiry.c	/^void printarch(const char *const *argv) {$/;"	f
+printerror	lib/ehandle.c	/^  void (*printerror)(const char *emsg, const char *contextstring);$/;"	m	struct:errorcontext	file:
+printforhelp	dpkg-deb/main.c	/^const char printforhelp[]=$/;"	v
+printforhelp	dselect/main.cc	/^const char printforhelp[]= N_("Type dselect --help for help.");$/;"	v
+printforhelp	main/main.c	/^const char printforhelp[]= N_("\\$/;"	v
+printforhelp	main/query.c	/^const char printforhelp[]= N_("\\$/;"	v
+printforhelp	split/main.c	/^const char printforhelp[]= N_("Type dpkg-split --help for help.");$/;"	v
+printforhelp	utils/md5sum.c	/^const char printforhelp[]= N_("Type md5sum --help for help.");$/;"	v
+printinstarch	main/enquiry.c	/^void printinstarch(const char *const *argv) {$/;"	f
+printversion	dpkg-deb/main.c	/^static void printversion(void) {$/;"	f	file:
+printversion	dselect/main.cc	/^static void printversion(void) {$/;"	f	file:
+printversion	main/main.c	/^static void printversion(void) {$/;"	f	file:
+printversion	main/query.c	/^static void printversion(void) {$/;"	f	file:
+printversion	split/main.c	/^static void printversion(void) {$/;"	f	file:
+priority	include/dpkg-db.h	/^  } priority;$/;"	m	struct:pkginfo
+priority_column	dselect/pkglist.h	/^  int section_column, priority_column, versioninstalled_column;$/;"	m	class:packagelist
+priority_width	dselect/pkglist.h	/^  int status_width, gap_width, section_width, priority_width;$/;"	m	class:packagelist
+priorityabbrevs	dselect/pkgdisplay.cc	/^  *const priorityabbrevs[]=  { N_("Req"),$/;"	v
+priorityinfos	lib/parsehelp.c	/^const struct namevalue priorityinfos[]= {  \/* Note !  These must be in order ! *\/$/;"	v
+prioritystrings	dselect/pkgdisplay.cc	/^  *const prioritystrings[]=  { N_("Required"),$/;"	v
+proc	build/include/dpkg.h	/^  buffer_proc_t proc;$/;"	m	struct:buffer_data
+proc_stat_list_create	configure	/^proc_stat_list_create ();$/;"	f
+process_archive	main/processarc.c	/^void process_archive(const char *filename) {$/;"	f
+process_arg	utils/md5sum.c	/^int process_arg(const char* arg, int bin_mode, unsigned char **digest)$/;"	f
+process_dsc	debian/tmp/install/usr/bin/dpkg-scansources	/^sub process_dsc {$/;"	s
+process_dsc	scripts/dpkg-scansources.pl	/^sub process_dsc {$/;"	s
+process_queue	main/packages.c	/^void process_queue(void) {$/;"	f
+procset	utils/start-stop-daemon.c	/^static struct proc_stat_list *procset;$/;"	v	file:
+progname	utils/md5sum.c	/^char *progname;$/;"	v
+progname	utils/start-stop-daemon.c	/^static const char *progname = "";$/;"	v	file:
+programdesc	dselect/main.cc	/^static const char programdesc[]=$/;"	v	file:
+promptconfaction	main/configure.c	/^static enum conffopt promptconfaction(const char* cfgfile, const char* realold,$/;"	f	file:
+ptman8dir	build/man/pt_BR/Makefile	/^ptman8dir	= $(subst $(mandir),$(mandir)\/pt_BR,$(man8dir))$/;"	m
+ptr	build/include/dpkg.h	/^  void *ptr;$/;"	m	union:buffer_arg
+push	utils/start-stop-daemon.c	/^push(struct pid_list **list, pid_t pid)$/;"	f	file:
+push_checkpoint	lib/ehandle.c	/^void push_checkpoint(int mask, int value) {$/;"	f
+push_cleanup	lib/ehandle.c	/^void push_cleanup(void (*call1)(int argc, void **argv), int mask1,$/;"	f
+push_error_handler	lib/ehandle.c	/^void push_error_handler(jmp_buf *jbufp,$/;"	f
+push_leftover	main/remove.c	/^static void push_leftover(struct fileinlist **leftoverp,$/;"	f	file:
+qa	dselect/bindings.h	/^  quitaction qa;$/;"	m	struct:keybindings::interpretation
+qa_noquit	dselect/dselect.h	/^enum quitaction { qa_noquit, qa_quitchecksave, qa_quitnochecksave };$/;"	e	enum:quitaction
+qa_quitchecksave	dselect/dselect.h	/^enum quitaction { qa_noquit, qa_quitchecksave, qa_quitnochecksave };$/;"	e	enum:quitaction
+qa_quitnochecksave	dselect/dselect.h	/^enum quitaction { qa_noquit, qa_quitchecksave, qa_quitnochecksave };$/;"	e	enum:quitaction
+qsort_compareentries	dselect/pkglist.cc	/^int qsort_compareentries(const void *a, const void *b) {$/;"	f
+query	dselect/dselect.h	/^       query,$/;"	e	enum:screenparts
+query_attr	dselect/dselect.h	/^  int thisstate_attr, query_attr;$/;"	m	class:baselist
+querywin	dselect/dselect.h	/^  WINDOW *titlewin, *whatinfowin, *querywin;$/;"	m	class:baselist
+queue	split/main.c	/^struct partqueue *queue= NULL;$/;"	v
+queuehead	main/packages.c	/^static struct pkginqueue *queuehead= 0, **queuetail= &queuehead;$/;"	v	file:
+queuelen	main/packages.c	/^int queuelen=0, sincenothing=0, dependtry=0;$/;"	v
+queuetail	main/packages.c	/^static struct pkginqueue *queuehead= 0, **queuetail= &queuehead;$/;"	v	file:
+quietmode	utils/start-stop-daemon.c	/^static int quietmode = 0;$/;"	v	file:
+quit	debian/tmp/dpkg-static/usr/sbin/dpkg-divert	/^sub quit { print STDERR "dpkg-divert: @_\\n"; exit(2); }$/;"	s
+quit	debian/tmp/dpkg-static/usr/sbin/dpkg-statoverride	/^sub quit { print STDERR "dpkg-statoverride: @_\\n"; exit(2); }$/;"	s
+quit	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub quit { print STDERR "update-alternatives: @_\\n"; exit(2); }$/;"	s
+quit	debian/tmp/dpkg/usr/sbin/dpkg-divert	/^sub quit { print STDERR "dpkg-divert: @_\\n"; exit(2); }$/;"	s
+quit	debian/tmp/dpkg/usr/sbin/dpkg-statoverride	/^sub quit { print STDERR "dpkg-statoverride: @_\\n"; exit(2); }$/;"	s
+quit	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub quit { print STDERR "update-alternatives: @_\\n"; exit(2); }$/;"	s
+quit	debian/tmp/install/usr/sbin/dpkg-divert	/^sub quit { print STDERR "dpkg-divert: @_\\n"; exit(2); }$/;"	s
+quit	debian/tmp/install/usr/sbin/dpkg-statoverride	/^sub quit { print STDERR "dpkg-statoverride: @_\\n"; exit(2); }$/;"	s
+quit	debian/tmp/install/usr/sbin/update-alternatives	/^sub quit { print STDERR "update-alternatives: @_\\n"; exit(2); }$/;"	s
+quit	scripts/dpkg-divert.pl	/^sub quit { print STDERR "dpkg-divert: @_\\n"; exit(2); }$/;"	s
+quit	scripts/dpkg-statoverride.pl	/^sub quit { print STDERR "dpkg-statoverride: @_\\n"; exit(2); }$/;"	s
+quit	scripts/update-alternatives.pl	/^sub quit { print STDERR "update-alternatives: @_\\n"; exit(2); }$/;"	s
+quitaction	dselect/dselect.h	/^enum quitaction { qa_noquit, qa_quitchecksave, qa_quitnochecksave };$/;"	g
+quote_filename	main/archives.c	/^quote_filename(char *buf, int size, char *s)$/;"	f	file:
+rcall	include/parsedump.h	/^  freadfunction *rcall;$/;"	m	struct:fieldinfo
+read_dsc	debian/tmp/install/usr/bin/dpkg-scansources	/^sub read_dsc {$/;"	s
+read_dsc	scripts/dpkg-scansources.pl	/^sub read_dsc {$/;"	s
+read_info	split/info.c	/^struct partinfo *read_info(FILE *partfile, const char *fn, struct partinfo *ir) {$/;"	f
+readfail	dpkg-deb/extract.c	/^static void readfail(FILE *a, const char *filename, const char *what) {$/;"	f	file:
+readmethods	dselect/methparse.cc	/^void readmethods(const char *pathbase, dselect_option **optionspp, int *nread) {$/;"	f
+readwrite	dselect/main.cc	/^modstatdb_rw readwrite;$/;"	v
+reallywant	dselect/pkgcmds.cc	/^pkginfo::pkgwant packagelist::reallywant(pkginfo::pkgwant nwarg,$/;"	f	class:packagelist
+reapgzip	debian/tmp/install/usr/bin/dpkg-source	/^sub reapgzip {$/;"	s
+reapgzip	scripts/dpkg-source.pl	/^sub reapgzip {$/;"	s
+reassemble	split/join.c	/^void reassemble(struct partinfo **partlist, const char *outputfile) {$/;"	f
+recursive	dselect/pkglist.h	/^  int recursive, nallocated, verbose;$/;"	m	class:packagelist
+redraw1item	dselect/baselist.cc	/^void baselist::redraw1item(int index) {$/;"	f	class:baselist
+redraw1itemsel	dselect/methlist.cc	/^void methodlist::redraw1itemsel(int index, int selected) {$/;"	f	class:methodlist
+redraw1itemsel	dselect/pkgtop.cc	/^void packagelist::redraw1itemsel(int index, int selected) {$/;"	f	class:packagelist
+redrawall	dselect/baselist.cc	/^void baselist::redrawall() {$/;"	f	class:baselist
+redrawcolheads	dselect/methlist.cc	/^void methodlist::redrawcolheads() {$/;"	f	class:methodlist
+redrawcolheads	dselect/pkgtop.cc	/^void packagelist::redrawcolheads() {$/;"	f	class:packagelist
+redrawinfo	dselect/methlist.cc	/^void methodlist::redrawinfo() {$/;"	f	class:methodlist
+redrawinfo	dselect/pkginfo.cc	/^void packagelist::redrawinfo() {$/;"	f	class:packagelist
+redrawitemsrange	dselect/basetop.cc	/^void baselist::redrawitemsrange(int start, int end) {$/;"	f	class:baselist
+redrawthisstate	dselect/methlist.cc	/^void methodlist::redrawthisstate() {$/;"	f	class:methodlist
+redrawthisstate	dselect/pkgtop.cc	/^void packagelist::redrawthisstate() {$/;"	f	class:packagelist
+redrawtitle	dselect/methlist.cc	/^void methodlist::redrawtitle() {$/;"	f	class:methodlist
+redrawtitle	dselect/pkgdisplay.cc	/^void packagelist::redrawtitle() {$/;"	f	class:packagelist
+refreshcolheads	dselect/basetop.cc	/^void baselist::refreshcolheads() {$/;"	f	class:baselist
+refreshinfo	dselect/baselist.cc	/^void baselist::refreshinfo() {$/;"	f	class:baselist
+refreshlist	dselect/basetop.cc	/^void baselist::refreshlist() {$/;"	f	class:baselist
+refreshmenu	dselect/main.cc	/^int refreshmenu(void) {$/;"	f
+relatestrings	dselect/pkgdisplay.cc	/^  *const relatestrings[]= { N_("suggests"),$/;"	v
+relations	dselect/pkglist.h	/^  varbuf relations;$/;"	m	struct:perpackagestate
+relevant	dselect/pkglist.h	/^    int (packagelist::*relevant)(); \/\/ null means always relevant$/;"	m	struct:packagelist::infotype
+removal_bulk	main/remove.c	/^void removal_bulk(struct pkginfo *pkg) {$/;"	f
+rename_mv	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub rename_mv {$/;"	s
+rename_mv	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub rename_mv {$/;"	s
+rename_mv	debian/tmp/install/usr/sbin/update-alternatives	/^sub rename_mv {$/;"	s
+rename_mv	scripts/update-alternatives.pl	/^sub rename_mv {$/;"	s
+repeatedlydisplay	dselect/pkgsublist.cc	/^void repeatedlydisplay(packagelist *sub,$/;"	f
+replacingfilesandsaid	main/main.h	/^  int replacingfilesandsaid;$/;"	m	struct:perpackagestate
+reportbroken_retexitstatus	main/errors.c	/^int reportbroken_retexitstatus(void) {$/;"	f
+reports	main/errors.c	/^static struct error_report *reports=0;$/;"	v	file:
+required_argument	optlib/getopt.h	100;"	d
+rerr	split/main.c	/^void rerr(const char *fn) {$/;"	f
+rerreof	split/main.c	/^void rerreof(FILE *f, const char *fn) {$/;"	f
+reset	include/dpkg-db.h	/^  void reset() { used=0; }$/;"	f	struct:varbuf
+resetpackages	lib/database.c	/^void resetpackages(void) {$/;"	f
+resolvedepcon	dselect/pkgdepcon.cc	/^int packagelist::resolvedepcon(dependency *depends) {$/;"	f	class:packagelist
+resolvesuggest	dselect/pkgdepcon.cc	/^int packagelist::resolvesuggest() {$/;"	f	class:packagelist
+resortredisplay	dselect/pkgcmds.cc	/^void packagelist::resortredisplay() {$/;"	f	class:packagelist
+reversefilelist_abort	main/filesdb.c	/^void reversefilelist_abort(struct reversefilelistiter *iterptr) {$/;"	f
+reversefilelist_init	main/filesdb.c	/^void reversefilelist_init(struct reversefilelistiter *iterptr,$/;"	f
+reversefilelist_next	main/filesdb.c	/^struct filenamenode *reversefilelist_next(struct reversefilelistiter *iterptr) {$/;"	f
+reversefilelistiter	main/filesdb.h	/^struct reversefilelistiter { struct fileinlist *todo; };$/;"	s
+revision	include/dpkg-db.h	/^  const char *revision;$/;"	m	struct:versionrevision
+rewrite_gnu_cpu	debian/tmp/install/usr/bin/dpkg-architecture	/^sub rewrite_gnu_cpu {$/;"	s
+rewrite_gnu_cpu	scripts/dpkg-architecture.pl	/^sub rewrite_gnu_cpu {$/;"	s
+rn	build/methods/Makefile	/^			rn=`echo $$n | $(SED) -e 's,\\.,\/,'` ; \\$/;"	m
+rn	build/scripts/Makefile	/^		rn=`echo $$i | $(SED) -e 's\/^cl-\/\/'` ; \\$/;"	m
+ruman1dir	build/man/ru/Makefile	/^ruman1dir	= $(subst $(mandir),$(mandir)\/ru,$(man1dir))$/;"	m
+ruman5dir	build/man/ru/Makefile	/^ruman5dir	= $(subst $(mandir),$(mandir)\/ru,$(man5dir))$/;"	m
+ruman8dir	build/man/ru/Makefile	/^ruman8dir	= $(subst $(mandir),$(mandir)\/ru,$(man8dir))$/;"	m
+run_cleanups	lib/ehandle.c	/^static void run_cleanups(struct errorcontext *econ, int flagsetin) {$/;"	f	file:
+run_stop_schedule	utils/start-stop-daemon.c	/^run_stop_schedule(void)$/;"	f	file:
+runas_gid	utils/start-stop-daemon.c	/^static int runas_gid = -1;$/;"	v	file:
+runas_uid	utils/start-stop-daemon.c	/^static int runas_uid = -1;$/;"	v	file:
+rundpkgauto	dselect/method.cc	/^static urqresult rundpkgauto(const char *name, const char *dpkgmode) {$/;"	f	file:
+runscript	dselect/method.cc	/^static urqresult runscript(const char *exepath, const char *name) {$/;"	f	file:
+s-automake	build/doc/internals.html/ch-build.html	/^<a name="s-automake"><\/a>$/;"	a
+s-automake	debian/tmp/install/usr/share/doc/dpkg/internals/ch-build.html	/^<a name="s-automake"><\/a>$/;"	a
+s-defs	build/doc/internals.html/ch-code.html	/^<a name="s-defs"><\/a>$/;"	a
+s-defs	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s-defs"><\/a>$/;"	a
+s-functions	build/doc/internals.html/ch-code.html	/^<a name="s-functions"><\/a>$/;"	a
+s-functions	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s-functions"><\/a>$/;"	a
+s-i18n	build/doc/internals.html/ch-build.html	/^<a name="s-i18n"><\/a>$/;"	a
+s-i18n	debian/tmp/install/usr/share/doc/dpkg/internals/ch-build.html	/^<a name="s-i18n"><\/a>$/;"	a
+s-parsef	build/doc/internals.html/ch-code.html	/^<a name="s-parsef"><\/a>$/;"	a
+s-parsef	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s-parsef"><\/a>$/;"	a
+s-parsing	build/doc/internals.html/ch-code.html	/^<a name="s-parsing"><\/a>$/;"	a
+s-parsing	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s-parsing"><\/a>$/;"	a
+s-versionrevision	build/doc/internals.html/ch-code.html	/^<a name="s-versionrevision"><\/a>$/;"	a
+s-versionrevision	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s-versionrevision"><\/a>$/;"	a
+s2.2.1.1	build/doc/internals.html/ch-code.html	/^<a name="s2.2.1.1"><\/a>$/;"	a
+s2.2.1.1	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.1.1"><\/a>$/;"	a
+s2.2.1.2	build/doc/internals.html/ch-code.html	/^<a name="s2.2.1.2"><\/a>$/;"	a
+s2.2.1.2	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.1.2"><\/a>$/;"	a
+s2.2.1.3	build/doc/internals.html/ch-code.html	/^<a name="s2.2.1.3"><\/a>$/;"	a
+s2.2.1.3	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.1.3"><\/a>$/;"	a
+s2.2.1.4	build/doc/internals.html/ch-code.html	/^<a name="s2.2.1.4"><\/a>$/;"	a
+s2.2.1.4	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.1.4"><\/a>$/;"	a
+s2.2.1.5	build/doc/internals.html/ch-code.html	/^<a name="s2.2.1.5"><\/a>$/;"	a
+s2.2.1.5	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.1.5"><\/a>$/;"	a
+s2.2.2.1	build/doc/internals.html/ch-code.html	/^<a name="s2.2.2.1"><\/a>$/;"	a
+s2.2.2.1	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.2.1"><\/a>$/;"	a
+s2.2.2.2	build/doc/internals.html/ch-code.html	/^<a name="s2.2.2.2"><\/a>$/;"	a
+s2.2.2.2	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.2.2"><\/a>$/;"	a
+s2.2.2.3	build/doc/internals.html/ch-code.html	/^<a name="s2.2.2.3"><\/a>$/;"	a
+s2.2.2.3	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.2.3"><\/a>$/;"	a
+s2.2.2.4	build/doc/internals.html/ch-code.html	/^<a name="s2.2.2.4"><\/a>$/;"	a
+s2.2.2.4	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.2.4"><\/a>$/;"	a
+s2.2.2.5	build/doc/internals.html/ch-code.html	/^<a name="s2.2.2.5"><\/a>$/;"	a
+s2.2.2.5	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.2.5"><\/a>$/;"	a
+s2.2.2.6	build/doc/internals.html/ch-code.html	/^<a name="s2.2.2.6"><\/a>$/;"	a
+s2.2.2.6	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.2.6"><\/a>$/;"	a
+s2.2.2.7	build/doc/internals.html/ch-code.html	/^<a name="s2.2.2.7"><\/a>$/;"	a
+s2.2.2.7	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.2.7"><\/a>$/;"	a
+s2.2.2.8	build/doc/internals.html/ch-code.html	/^<a name="s2.2.2.8"><\/a>$/;"	a
+s2.2.2.8	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.2.8"><\/a>$/;"	a
+s2.2.2.9	build/doc/internals.html/ch-code.html	/^<a name="s2.2.2.9"><\/a>$/;"	a
+s2.2.2.9	debian/tmp/install/usr/share/doc/dpkg/internals/ch-code.html	/^<a name="s2.2.2.9"><\/a>$/;"	a
+safe_read	main/archives.c	/^static int safe_read(int fd, void *buf, int len)$/;"	f	file:
+saidread	main/filesdb.c	/^static int saidread=0;$/;"	v	file:
+sassignto	include/myopt.h	/^  const char **sassignto;$/;"	m	struct:cmdinfo
+save	debian/tmp/dpkg-static/usr/sbin/dpkg-divert	/^sub save {$/;"	s
+save	debian/tmp/dpkg/usr/sbin/dpkg-divert	/^sub save {$/;"	s
+save	debian/tmp/install/usr/sbin/dpkg-divert	/^sub save {$/;"	s
+save	scripts/dpkg-divert.pl	/^sub save {$/;"	s
+scandepot	split/queue.c	/^void scandepot(void) {$/;"	f
+scandir	lib/compat.c	/^int scandir(const char *dir, struct dirent ***namelist,$/;"	f
+scandir_compar	lib/compat.c	/^static int scandir_compar(const void *a, const void *b) {$/;"	f	file:
+scandir_comparfn	lib/compat.c	/^static int (*scandir_comparfn)(const void*, const void*);$/;"	v	file:
+scanshlibsfile	debian/tmp/install/usr/bin/dpkg-shlibdeps	/^sub scanshlibsfile {$/;"	s
+scanshlibsfile	scripts/dpkg-shlibdeps.pl	/^sub scanshlibsfile {$/;"	s
+scanshlibsfile	scripts/dpkg-shlibdeps.pl~	/^sub scanshlibsfile {$/;"	s
+sched_forever	utils/start-stop-daemon.c	/^	enum { sched_timeout, sched_signal, sched_goto, sched_forever } type;$/;"	e	enum:schedule_item::<anonymous>	file:
+sched_goto	utils/start-stop-daemon.c	/^	enum { sched_timeout, sched_signal, sched_goto, sched_forever } type;$/;"	e	enum:schedule_item::<anonymous>	file:
+sched_signal	utils/start-stop-daemon.c	/^	enum { sched_timeout, sched_signal, sched_goto, sched_forever } type;$/;"	e	enum:schedule_item::<anonymous>	file:
+sched_timeout	utils/start-stop-daemon.c	/^	enum { sched_timeout, sched_signal, sched_goto, sched_forever } type;$/;"	e	enum:schedule_item::<anonymous>	file:
+schedule	utils/start-stop-daemon.c	/^static struct schedule_item *schedule = NULL;$/;"	v	file:
+schedule_item	utils/start-stop-daemon.c	/^struct schedule_item {$/;"	s	file:
+schedule_length	utils/start-stop-daemon.c	/^static int schedule_length;$/;"	v	file:
+schedule_str	utils/start-stop-daemon.c	/^static const char *schedule_str = NULL;$/;"	v	file:
+screenparts	dselect/dselect.h	/^enum screenparts {$/;"	g
+screenparttable	dselect/main.cc	/^static const struct table_t screenparttable[]= {$/;"	v	file:
+script_catchsignallist	main/help.c	/^static int script_catchsignallist[]= { SIGQUIT, SIGINT, 0 };$/;"	v	file:
+script_catchsignals	main/help.c	/^static void script_catchsignals(void) {$/;"	f	file:
+script_uncatchsignal	main/help.c	/^static struct sigaction script_uncatchsignal[NSCRIPTCATCHSIGNALS];$/;"	v	file:
+searchdescr	dselect/pkglist.h	/^  int searchdescr;$/;"	m	class:packagelist
+searchdir	debian/tmp/install/usr/bin/dpkg-shlibdeps	/^sub searchdir {$/;"	s
+searchdir	scripts/dpkg-shlibdeps.pl	/^sub searchdir {$/;"	s
+searchdir	scripts/dpkg-shlibdeps.pl~	/^sub searchdir {$/;"	s
+searchfiles	main/query.c	/^void searchfiles(const char *const *argv) {$/;"	f
+searchfsm	dselect/pkglist.h	/^  regex_t searchfsm;$/;"	m	class:packagelist
+searchoutput	main/query.c	/^static int searchoutput(struct filenamenode *namenode) {$/;"	f	file:
+searchstring	dselect/dselect.h	/^  char searchstring[128];$/;"	m	class:baselist
+searchstring	dselect/method.h	/^  char searchstring[50];$/;"	m	class:methodlist
+section	include/dpkg-db.h	/^  const char *section;$/;"	m	struct:pkginfo
+section_column	dselect/pkglist.h	/^  int section_column, priority_column, versioninstalled_column;$/;"	m	class:packagelist
+section_width	dselect/pkglist.h	/^  int status_width, gap_width, section_width, priority_width;$/;"	m	class:packagelist
+sectionentry	main/enquiry.c	/^struct sectionentry {$/;"	s	file:
+selected	dselect/pkglist.h	/^  pkginfo::pkgwant selected;         \/\/ not set by caller, will be set by packagelist$/;"	m	struct:perpackagestate
+selpriority	dselect/pkglist.h	/^enum selpriority {$/;"	g
+selstate	dselect/dselect.h	/^       selstate,$/;"	e	enum:screenparts
+selstate_attr	dselect/dselect.h	/^  int selstate_attr, selstatesel_attr;$/;"	m	class:baselist
+selstatesel	dselect/dselect.h	/^       selstatesel,$/;"	e	enum:screenparts
+selstatesel_attr	dselect/dselect.h	/^  int selstate_attr, selstatesel_attr;$/;"	m	class:baselist
+set_error_display	lib/ehandle.c	/^void set_error_display(void (*printerror)(const char *, const char *),$/;"	f
+set_what_stop	utils/start-stop-daemon.c	/^set_what_stop(const char *str)$/;"	f	file:
+setaction	dpkg-deb/main.c	/^static void setaction(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+setaction	main/main.c	/^static void setaction(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+setaction	main/query.c	/^static void setaction(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+setaction	split/main.c	/^static void setaction(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+setcloexec	lib/mlib.c	/^void setcloexec(int fd, const char* fn) {$/;"	f
+setcolor	dselect/main.cc	/^  static void setcolor(const struct cmdinfo*, const char *string) {$/;"	f	file:
+setcursor	dselect/basecmds.cc	/^void baselist::setcursor(int index) {$/;"	f	class:baselist
+setdebug	dselect/main.cc	/^  static void setdebug(const struct cmdinfo*, const char *v) {$/;"	f	file:
+setdebug	main/main.c	/^static void setdebug(const struct cmdinfo *cpi, const char *value) {$/;"	f	file:
+setexecute	main/help.c	/^static void setexecute(const char *path, struct stat *stab) {$/;"	f	file:
+setexpert	dselect/main.cc	/^  static void setexpert(const struct cmdinfo*, const char *v) {$/;"	f	file:
+setfile	debian/tmp/install/usr/bin/dpkg-source	/^sub setfile {$/;"	s
+setfile	scripts/dpkg-source.pl	/^sub setfile {$/;"	s
+setforce	main/main.c	/^static void setforce(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+setheights	dselect/baselist.cc	/^void baselist::setheights() {$/;"	f	class:baselist
+setheights	dselect/methlist.cc	/^void methodlist::setheights() {$/;"	f	class:methodlist
+setinteger	main/main.c	/^static void setinteger(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+setlocale	build/include/dpkg.h	148;"	d
+setlocale	utils/md5sum.c	31;"	d	file:
+setobsolete	main/main.c	/^static void setobsolete(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+setopmode	debian/tmp/install/usr/bin/dpkg-source	/^sub setopmode {$/;"	s
+setopmode	scripts/dpkg-source.pl	/^sub setopmode {$/;"	s
+setpartsize	split/main.c	/^static void setpartsize(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+setpipe	main/main.c	/^static void setpipe(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+setroot	main/main.c	/^static void setroot(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+setselections	main/select.c	/^void setselections(const char *const *argv) {$/;"	f
+setsourcepackage	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub setsourcepackage {$/;"	s
+setsourcepackage	scripts/controllib.pl	/^sub setsourcepackage {$/;"	s
+setupfnamevbs	main/archives.c	/^void setupfnamevbs(const char *filename) {$/;"	f
+setupsigwinch	dselect/baselist.cc	/^void baselist::setupsigwinch() {$/;"	f	class:baselist
+setwant	dselect/pkgcmds.cc	/^void packagelist::setwant(pkginfo::pkgwant nwarg) {$/;"	f	class:packagelist
+setwidths	dselect/methlist.cc	/^void methodlist::setwidths() {$/;"	f	class:methodlist
+setwidths	dselect/pkgdisplay.cc	/^void packagelist::setwidths() {$/;"	f	class:packagelist
+severalinfoblurb	dselect/pkginfo.cc	/^void packagelist::severalinfoblurb(const char *whatinfoline) {$/;"	f	class:packagelist
+show1package	lib/showpkg.c	/^void show1package(const struct lstitem* head, struct pkginfo *pkg) {$/;"	f
+show_version	debian/tmp/install/usr/bin/dpkg-name	/^show_version () {$/;"	f
+show_version	scripts/dpkg-name.sh	/^show_version () {$/;"	f
+showcopyright	lib/showcright.c	/^void showcopyright(const struct cmdinfo *c, const char *v) {$/;"	f
+showdiff	main/configure.c	/^static void showdiff(const char* old, const char* new) {$/;"	f	file:
+showformat	dpkg-deb/main.c	/^const char* showformat	= "${pkg:Package}\\t${pkg:Version}\\n";$/;"	v
+showformat	main/query.c	/^static const char* showformat		= "${pkg:Package}\\t${pkg:Version}\\n";$/;"	v	file:
+showinfo	dselect/dselect.h	/^  int nitems, ldrawnstart, ldrawnend, showinfo;$/;"	m	class:baselist
+showpackages	main/query.c	/^void showpackages(const char *const *argv) {$/;"	f
+showpriority	dselect/pkglist.h	/^enum showpriority {$/;"	g
+showversion	debian/tmp/dpkg-static/usr/sbin/dpkg-divert	/^sub showversion {$/;"	s
+showversion	debian/tmp/dpkg/usr/sbin/dpkg-divert	/^sub showversion {$/;"	s
+showversion	debian/tmp/install/usr/sbin/dpkg-divert	/^sub showversion {$/;"	s
+showversion	scripts/dpkg-divert.pl	/^sub showversion {$/;"	s
+siglist	utils/start-stop-daemon.c	/^const struct sigpair siglist[] = {$/;"	v
+signal	utils/start-stop-daemon.c	/^	int signal;$/;"	m	struct:sigpair	file:
+signal_nr	utils/start-stop-daemon.c	/^static int signal_nr = 15;$/;"	v	file:
+signal_str	utils/start-stop-daemon.c	/^static const char *signal_str = NULL;$/;"	v	file:
+signallist	dselect/baselist.cc	/^baselist *baselist::signallist= 0;$/;"	m	class:baselist	file:
+signallist	dselect/dselect.h	/^  static baselist *signallist;$/;"	m	class:baselist
+signfile	debian/tmp/install/usr/bin/dpkg-buildpackage	/^signfile () {$/;"	f
+signfile	scripts/dpkg-buildpackage.sh	/^signfile () {$/;"	f
+sigpair	utils/start-stop-daemon.c	/^struct sigpair {$/;"	s	file:
+sigwinchhandler	dselect/baselist.cc	/^void baselist::sigwinchhandler(int) {$/;"	f	class:baselist
+sigwinchset	dselect/dselect.h	/^  sigset_t *oblockedp, sigwinchset;$/;"	m	class:baselist
+sincenothing	main/packages.c	/^int queuelen=0, sincenothing=0, dependtry=0;$/;"	v
+size	include/dpkg-db.h	/^  char *size;$/;"	m	struct:filedetails
+size	include/dpkg-db.h	/^  size_t used, size;$/;"	m	struct:varbuf
+skip_due_to_hold	main/errors.c	/^int skip_due_to_hold(struct pkginfo *pkg) {$/;"	f
+skip_slash_dotslash	lib/parsehelp.c	/^const char *skip_slash_dotslash(const char *p) {$/;"	f
+snprintf	lib/compat.c	/^snprintf (char *str, size_t n, char const *format, ...)$/;"	f
+so_alpha	dselect/pkglist.h	/^  enum { so_unsorted, so_section, so_priority, so_alpha } sortorder;$/;"	e	enum:packagelist::<anonymous>
+so_priority	dselect/pkglist.h	/^  enum { so_unsorted, so_section, so_priority, so_alpha } sortorder;$/;"	e	enum:packagelist::<anonymous>
+so_section	dselect/pkglist.h	/^  enum { so_unsorted, so_section, so_priority, so_alpha } sortorder;$/;"	e	enum:packagelist::<anonymous>
+so_unsorted	dselect/pkglist.h	/^  enum { so_unsorted, so_section, so_priority, so_alpha } sortorder;$/;"	e	enum:packagelist::<anonymous>
+sortinplace	dselect/pkglist.cc	/^void packagelist::sortinplace() {$/;"	f	class:packagelist
+sortmakeheads	dselect/pkglist.cc	/^void packagelist::sortmakeheads() {$/;"	f	class:packagelist
+sortorder	dselect/pkglist.h	/^  enum { so_unsorted, so_section, so_priority, so_alpha } sortorder;$/;"	m	class:packagelist
+sortpackagelist	dselect/pkglist.cc	/^static packagelist *sortpackagelist;$/;"	v	file:
+source	include/dpkg-db.h	/^  char *description, *maintainer, *source, *architecture, *installedsize, *origin, *bugs;$/;"	m	struct:pkginfoperfile
+sp_deselecting	dselect/pkglist.h	/^  sp_deselecting, \/\/ propagating a deselection$/;"	e	enum:selpriority
+sp_fixed	dselect/pkglist.h	/^  sp_fixed        \/\/ it came from the `status' file and we're not a recursive list$/;"	e	enum:selpriority
+sp_inherit	dselect/pkglist.h	/^  sp_inherit,     \/\/ inherited from our parent list$/;"	e	enum:selpriority
+sp_selecting	dselect/pkglist.h	/^  sp_selecting,   \/\/ propagating a selection$/;"	e	enum:selpriority
+spfileslistvalue	debian/tmp/install/usr/bin/dpkg-gencontrol	/^sub spfileslistvalue {$/;"	s
+spfileslistvalue	scripts/dpkg-gencontrol.pl	/^sub spfileslistvalue {$/;"	s
+spriority	dselect/pkglist.h	/^  selpriority spriority;             \/\/ monotonically increases (used by sublists)$/;"	m	struct:perpackagestate
+srcdir	build/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+srcdir	build/doc/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/doc$/;"	m
+srcdir	build/dpkg-deb/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/dpkg-deb$/;"	m
+srcdir	build/dselect/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/dselect$/;"	m
+srcdir	build/include/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/include$/;"	m
+srcdir	build/lib/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/lib$/;"	m
+srcdir	build/main/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/main$/;"	m
+srcdir	build/man/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man$/;"	m
+srcdir	build/man/de/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/de$/;"	m
+srcdir	build/man/en/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/en$/;"	m
+srcdir	build/man/fr/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/fr$/;"	m
+srcdir	build/man/ja/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/ja$/;"	m
+srcdir	build/man/pt_BR/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/pt_BR$/;"	m
+srcdir	build/man/ru/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/ru$/;"	m
+srcdir	build/man/sv/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/man\/sv$/;"	m
+srcdir	build/methods/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/methods$/;"	m
+srcdir	build/optlib/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/optlib$/;"	m
+srcdir	build/po/Makefile	/^srcdir = \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/po$/;"	m
+srcdir	build/scripts/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/scripts$/;"	m
+srcdir	build/split/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/split$/;"	m
+srcdir	build/utils/Makefile	/^srcdir		= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64\/utils$/;"	m
+ssa_broken	dselect/pkglist.h	/^  ssa_broken,            \/\/   Brokenly-installed and nothing available$/;"	e	enum:ssavailval
+ssa_installed_gone	dselect/pkglist.h	/^  ssa_installed_gone,    \/\/   Installed but no longer available$/;"	e	enum:ssavailval
+ssa_installed_newer	dselect/pkglist.h	/^  ssa_installed_newer,   \/\/   Installed, newer version available$/;"	e	enum:ssavailval
+ssa_installed_sameold	dselect/pkglist.h	/^  ssa_installed_sameold, \/\/   Same or older version available as installed$/;"	e	enum:ssavailval
+ssa_none	dselect/pkglist.h	/^  ssa_none=-1$/;"	e	enum:ssavailval
+ssa_notinst_gone	dselect/pkglist.h	/^  ssa_notinst_gone,      \/\/   Not available, and only config files left$/;"	e	enum:ssavailval
+ssa_notinst_seen	dselect/pkglist.h	/^  ssa_notinst_seen,      \/\/   Available but not installed$/;"	e	enum:ssavailval
+ssa_notinst_unseen	dselect/pkglist.h	/^  ssa_notinst_unseen,    \/\/   Entirely new packages (available but not deselected yet)$/;"	e	enum:ssavailval
+ssaabbrevs	dselect/pkgdisplay.cc	/^  *const ssaabbrevs[]= { N_("Broken"),$/;"	v
+ssastrings	dselect/pkgdisplay.cc	/^  *const ssastrings[]= { N_("Brokenly installed packages"),$/;"	v
+ssavail	dselect/pkglist.h	/^  ssavailval ssavail;$/;"	m	struct:perpackagestate
+ssavailval	dselect/pkglist.h	/^enum ssavailval {        \/\/ Availability sorting order, first to last:$/;"	g
+sso_avail	dselect/pkglist.h	/^  enum { sso_unsorted, sso_avail, sso_state } statsortorder;$/;"	e	enum:packagelist::<anonymous>
+sso_state	dselect/pkglist.h	/^  enum { sso_unsorted, sso_avail, sso_state } statsortorder;$/;"	e	enum:packagelist::<anonymous>
+sso_unsorted	dselect/pkglist.h	/^  enum { sso_unsorted, sso_avail, sso_state } statsortorder;$/;"	e	enum:packagelist::<anonymous>
+sss_broken	dselect/pkglist.h	/^  sss_broken,          \/\/   In some way brokenly installed$/;"	e	enum:ssstateval
+sss_configfiles	dselect/pkglist.h	/^  sss_configfiles,     \/\/   Config files only$/;"	e	enum:ssstateval
+sss_installed	dselect/pkglist.h	/^  sss_installed,       \/\/   Installed$/;"	e	enum:ssstateval
+sss_none	dselect/pkglist.h	/^  sss_none=-1$/;"	e	enum:ssstateval
+sss_notinstalled	dselect/pkglist.h	/^  sss_notinstalled,    \/\/   Not installed$/;"	e	enum:ssstateval
+sssabbrevs	dselect/pkgdisplay.cc	/^  *const sssabbrevs[]= { N_("Broken"),$/;"	v
+sssstrings	dselect/pkgdisplay.cc	/^  *const sssstrings[]= { N_("Brokenly installed packages"),$/;"	v
+ssstate	dselect/pkglist.h	/^  ssstateval ssstate;$/;"	m	struct:perpackagestate
+ssstateval	dselect/pkglist.h	/^enum ssstateval {      \/\/ State sorting order, first to last:$/;"	g
+st	dpkg-deb/build.c	/^  struct stat	st;$/;"	m	struct:_finfo	file:
+standard_shutdown	lib/startup.c	/^void standard_shutdown(int freemem) {$/;"	f
+standard_startup	lib/startup.c	/^void standard_startup(jmp_buf *ejbuf, int argc, const char *const **argv, const char *prog, int loadcfg, const struct cmdinfo cmdinfos[]) {$/;"	f
+start	utils/start-stop-daemon.c	/^static int start = 0;$/;"	v	file:
+startas	utils/start-stop-daemon.c	/^static char *startas = NULL;$/;"	v	file:
+startdisplay	dselect/baselist.cc	/^void baselist::startdisplay() {$/;"	f	class:baselist
+stat_configfiles	include/dpkg-db.h	/^    stat_installed, stat_halfinstalled, stat_configfiles$/;"	e	enum:pkginfo::pkgstatus
+stat_halfconfigured	include/dpkg-db.h	/^    stat_notinstalled, stat_unpacked, stat_halfconfigured,$/;"	e	enum:pkginfo::pkgstatus
+stat_halfinstalled	include/dpkg-db.h	/^    stat_installed, stat_halfinstalled, stat_configfiles$/;"	e	enum:pkginfo::pkgstatus
+stat_installed	include/dpkg-db.h	/^    stat_installed, stat_halfinstalled, stat_configfiles$/;"	e	enum:pkginfo::pkgstatus
+stat_notinstalled	include/dpkg-db.h	/^    stat_notinstalled, stat_unpacked, stat_halfconfigured,$/;"	e	enum:pkginfo::pkgstatus
+stat_unpacked	include/dpkg-db.h	/^    stat_notinstalled, stat_unpacked, stat_halfconfigured,$/;"	e	enum:pkginfo::pkgstatus
+static	optlib/getdate.c	52;"	d	file:
+statoverride	main/filesdb.h	/^  struct filestatoverride *statoverride;$/;"	m	struct:filenamenode
+statoverridefile	main/filesdb.c	/^static FILE *statoverridefile= 0;$/;"	v	file:
+statsortorder	dselect/pkglist.h	/^  enum { sso_unsorted, sso_avail, sso_state } statsortorder;$/;"	m	class:packagelist
+status	include/dpkg-db.h	/^  } status;$/;"	m	struct:pkginfo
+status_hold_width	dselect/pkglist.h	/^  int status_hold_width, status_status_width, status_want_width;$/;"	m	class:packagelist
+status_pipes	lib/dbmodify.c	/^struct pipef *status_pipes= NULL;$/;"	v
+status_status_width	dselect/pkglist.h	/^  int status_hold_width, status_status_width, status_want_width;$/;"	m	class:packagelist
+status_want_width	dselect/pkglist.h	/^  int status_hold_width, status_status_width, status_want_width;$/;"	m	class:packagelist
+status_width	dselect/method.h	/^  int status_width, gap_width, name_width, description_width;$/;"	m	class:methodlist
+status_width	dselect/pkglist.h	/^  int status_width, gap_width, section_width, priority_width;$/;"	m	class:packagelist
+statuschars	dselect/pkgdisplay.cc	/^const char statuschars[]=   " UC*I-";$/;"	v
+statusfile	lib/dbmodify.c	/^char *statusfile=NULL, *availablefile=NULL;$/;"	v
+statusinfos	lib/parsehelp.c	/^const struct namevalue statusinfos[]= {  \/* Note !  These must be in order ! *\/$/;"	v
+statusstrings	dselect/pkgdisplay.cc	/^  *const statusstrings[]= { N_("not installed"),$/;"	v
+statusstrings	main/help.c	/^const char *const statusstrings[]= {$/;"	v
+stderr	debian/tmp/install/usr/bin/dpkg-name	/^stderr () {$/;"	f
+stderr	scripts/dpkg-name.sh	/^stderr () {$/;"	f
+sthfailed	dselect/method.cc	/^void sthfailed(const char * reasoning) {$/;"	f
+stop	utils/start-stop-daemon.c	/^static int stop = 0;$/;"	v	file:
+store	lib/dbmodify.c	/^const struct fni { const char *suffix; char **store; } fnis[]= {$/;"	m	struct:fni	file:
+store_args_and_env	optlib/getopt.c	/^store_args_and_env (int argc, char *const *argv)$/;"	f	file:
+stream_fd_copy	build/include/dpkg.h	276;"	d
+stream_md5	build/include/dpkg.h	246;"	d
+stream_null_copy	build/include/dpkg.h	269;"	d
+strerror	configure	/^strerror ();$/;"	f
+strerror	lib/compat.c	/^const char *strerror(int e) {$/;"	f
+string	include/dpkg-db.h	/^  const char *string() { terminate(); return buf; }$/;"	f	struct:varbuf
+string	lib/showpkg.c	/^typedef enum { invalid, string, field } itemtype_t;$/;"	e	file:
+strsignal	lib/compat.c	/^const char *strsignal(int e) {$/;"	f
+strtoul	build/config.h	454;"	d
+subdir	build/po/Makefile	/^subdir = po$/;"	m
+subprocerr	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub subprocerr {$/;"	s
+subprocerr	scripts/controllib.pl	/^sub subprocerr {$/;"	s
+substvars	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub substvars {$/;"	s
+substvars	scripts/controllib.pl	/^sub substvars {$/;"	s
+suffix	lib/dbmodify.c	/^const struct fni { const char *suffix; char **store; } fnis[]= {$/;"	m	struct:fni	file:
+suggested	dselect/pkglist.h	/^  pkginfo::pkgwant suggested;        \/\/ set by caller, modified by resolvesuggest$/;"	m	struct:perpackagestate
+summary	dselect/method.h	/^  char *name, *summary;$/;"	m	struct:dselect_option
+suspend	main/configure.c	/^static void suspend(void) {$/;"	f	file:
+svman1dir	build/man/sv/Makefile	/^svman1dir	= $(subst $(mandir),$(mandir)\/sv,$(man1dir))$/;"	m
+svman5dir	build/man/sv/Makefile	/^svman5dir	= $(subst $(mandir),$(mandir)\/sv,$(man5dir))$/;"	m
+svman8dir	build/man/sv/Makefile	/^svman8dir	= $(subst $(mandir),$(mandir)\/sv,$(man8dir))$/;"	m
+symlinkList	lib/tarfn.c	/^typedef struct symlinkList {$/;"	s	file:
+symlinkList	lib/tarfn.c	/^} symlinkList;$/;"	t	file:
+syntax	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub syntax {$/;"	s
+syntax	scripts/controllib.pl	/^sub syntax {$/;"	s
+sys_siglist	lib/compat.c	/^const char *const sys_siglist[32] = {$/;"	v
+syserr	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub syserr { die "$progname: failure: $_[0]: $!\\n"; }$/;"	s
+syserr	scripts/controllib.pl	/^sub syserr { die "$progname: failure: $_[0]: $!\\n"; }$/;"	s
+tAGO	optlib/getdate.c	8;"	d	file:
+tDAY	optlib/getdate.c	9;"	d	file:
+tDAYZONE	optlib/getdate.c	11;"	d	file:
+tDAY_UNIT	optlib/getdate.c	10;"	d	file:
+tDST	optlib/getdate.c	12;"	d	file:
+tHOUR_UNIT	optlib/getdate.c	13;"	d	file:
+tID	optlib/getdate.c	14;"	d	file:
+tMERIDIAN	optlib/getdate.c	15;"	d	file:
+tMINUTE_UNIT	optlib/getdate.c	16;"	d	file:
+tMONTH	optlib/getdate.c	17;"	d	file:
+tMONTH_UNIT	optlib/getdate.c	18;"	d	file:
+tSEC_UNIT	optlib/getdate.c	19;"	d	file:
+tSNUMBER	optlib/getdate.c	20;"	d	file:
+tUNUMBER	optlib/getdate.c	21;"	d	file:
+tYEAR_UNIT	optlib/getdate.c	22;"	d	file:
+tZONE	optlib/getdate.c	23;"	d	file:
+table	dselect/method.h	/^  struct dselect_option **table;$/;"	m	class:methodlist
+table	dselect/pkglist.h	/^  struct perpackagestate **table;$/;"	m	class:packagelist
+table_t	dselect/main.cc	/^struct table_t {$/;"	s	file:
+takesvalue	include/myopt.h	/^  int takesvalue; \/* 0 = normal   1 = standard value   2 = option string cont *\/$/;"	m	struct:cmdinfo
+tar_obs	main/archives.c	/^static struct obstack tar_obs;$/;"	v	file:
+tarcontext	main/archives.h	/^struct tarcontext {$/;"	s
+tarfileread	main/archives.c	/^int tarfileread(void *ud, char *buf, int len) {$/;"	f
+target	build/man/Makefile	/^	set -e ; target=`echo $@ | $(SED) s\/-recursive\/\/`; \\$/;"	m
+tarobject	main/archives.c	/^int tarobject(struct TarInfo *ti) {$/;"	f
+tarobs_init	main/archives.c	/^static int tarobs_init= 0;$/;"	v	file:
+temp	optlib/obstack.h	/^  PTR_INT_TYPE temp;		\/* Temporary for some macros.  *\/$/;"	m	struct:obstack
+terminate	include/dpkg-db.h	/^  void terminate(void\/*to shut 2.6.3 up*\/) { varbufaddc(this,0); used--; }$/;"	f	struct:varbuf
+testmode	utils/start-stop-daemon.c	/^static int testmode = 0;$/;"	v	file:
+text	dselect/helpmsgs.h	/^struct helpmessage { const char *title; const char *text; };$/;"	m	struct:helpmessage
+textdomain	build/include/dpkg.h	158;"	d
+textdomain	build/include/dpkg.h	159;"	d
+textdomain	utils/md5sum.c	40;"	d	file:
+textdomain	utils/md5sum.c	41;"	d	file:
+thisname	dpkg-deb/main.c	/^const char thisname[]= BACKEND;$/;"	v
+thisname	dselect/main.cc	/^const char thisname[]= DSELECT;$/;"	v
+thisname	main/main.c	/^const char thisname[]= "dpkg";$/;"	v
+thisname	main/query.c	/^const char thisname[]= "dpkg-query";$/;"	v
+thisname	split/main.c	/^const char thisname[]= SPLITTER;$/;"	v
+thisname	utils/md5sum.c	/^const char thisname[]= MD5SUM;$/;"	v
+thispartlen	split/dpkg-split.h	/^  size_t thispartlen;$/;"	m	struct:partinfo
+thispartn	split/dpkg-split.h	/^  unsigned int thispartn, maxpartn;$/;"	m	struct:partinfo
+thispartoffset	split/dpkg-split.h	/^  unsigned long thispartoffset;$/;"	m	struct:partinfo
+thisstate	dselect/dselect.h	/^       thisstate,$/;"	e	enum:screenparts
+thisstate_attr	dselect/dselect.h	/^  int thisstate_attr, query_attr;$/;"	m	class:baselist
+thisstate_height	dselect/dselect.h	/^  int thisstate_height, info_height, whatinfo_height;$/;"	m	class:baselist
+thisstate_row	dselect/dselect.h	/^  int colheads_row, thisstate_row, info_row, whatinfo_row, list_row;$/;"	m	class:baselist
+thisstatepad	dselect/dselect.h	/^  WINDOW *listpad, *infopad, *colheadspad, *thisstatepad;$/;"	m	class:baselist
+title	dselect/dselect.h	/^       title,$/;"	e	enum:screenparts
+title	dselect/helpmsgs.h	/^struct helpmessage { const char *title; const char *text; };$/;"	m	struct:helpmessage
+title_attr	dselect/dselect.h	/^  int list_attr, listsel_attr, title_attr, colheads_attr, info_attr;$/;"	m	class:baselist
+title_height	dselect/dselect.h	/^  int title_height, colheads_height, list_height;$/;"	m	class:baselist
+titlewin	dselect/dselect.h	/^  WINDOW *titlewin, *whatinfowin, *querywin;$/;"	m	class:baselist
+tmpdir	build/po/Makefile	/^	tmpdir=`pwd`; \\$/;"	m
+todo	main/filesdb.h	/^struct reversefilelistiter { struct fileinlist *todo; };$/;"	m	struct:reversefilelistiter
+top_builddir	build/dpkg-deb/Makefile	/^top_builddir	= ..$/;"	m
+top_builddir	build/dselect/Makefile	/^top_builddir	= ..$/;"	m
+top_builddir	build/main/Makefile	/^top_builddir	= ..$/;"	m
+top_builddir	build/po/Makefile	/^top_builddir = ..$/;"	m
+top_srcdir	build/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/doc/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/dpkg-deb/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/dselect/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/lib/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/main/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/man/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/man/de/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/man/en/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/man/fr/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/man/ja/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/man/pt_BR/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/man/ru/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/man/sv/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/methods/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/optlib/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/po/Makefile	/^top_srcdir = \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/scripts/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/split/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+top_srcdir	build/utils/Makefile	/^top_srcdir	= \/amd\/muon\/root\/home\/muon\/bart\/work\/debian-amd64\/build\/debs\/dpkg\/dpkg-1.10.10.0lib641-dep64$/;"	m
+topofscreen	dselect/dselect.h	/^  int topofscreen, leftofscreen, cursorline;$/;"	m	class:baselist
+total_width	dselect/dselect.h	/^  int total_width;$/;"	m	class:baselist
+try_remove_can	main/archives.c	/^static int try_remove_can(struct deppossi *pdep,$/;"	f	file:
+tryupdate	debian/tmp/dselect/usr/lib/dpkg/methods/floppy/update	/^tryupdate () {$/;"	f
+tvselector	utils/start-stop-daemon.c	/^typedef long tvselector(const struct timeval*);$/;"	t	file:
+tvselector_sec	utils/start-stop-daemon.c	/^static long tvselector_sec(const struct timeval *tv) { return tv->tv_sec; }$/;"	f	file:
+tvselector_usec	utils/start-stop-daemon.c	/^static long tvselector_usec(const struct timeval *tv) { return tv->tv_usec; }$/;"	f	file:
+type	build/include/dpkg.h	/^  int type;$/;"	m	struct:buffer_data
+type	include/dpkg-db.h	/^  enum deptype type;$/;"	m	struct:dependency
+type	lib/showpkg.c	/^	itemtype_t type;$/;"	m	struct:lstitem	file:
+type	optlib/getdate.c	/^    int		type;$/;"	m	struct:_TABLE	file:
+type	utils/start-stop-daemon.c	/^	enum { sched_timeout, sched_signal, sched_goto, sched_forever } type;$/;"	m	struct:schedule_item	file:
+uid	main/filesdb.h	/^  uid_t uid;$/;"	m	struct:filestatoverride
+ulist_select	lib/dbmodify.c	/^static int ulist_select(const struct dirent *de) {$/;"	f	file:
+ulquit	debian/tmp/dpkg-static/usr/sbin/cleanup-info	/^sub ulquit {$/;"	s
+ulquit	debian/tmp/dpkg-static/usr/sbin/install-info	/^sub ulquit {$/;"	s
+ulquit	debian/tmp/dpkg/usr/sbin/cleanup-info	/^sub ulquit {$/;"	s
+ulquit	debian/tmp/dpkg/usr/sbin/install-info	/^sub ulquit {$/;"	s
+ulquit	debian/tmp/install/usr/sbin/cleanup-info	/^sub ulquit {$/;"	s
+ulquit	debian/tmp/install/usr/sbin/install-info	/^sub ulquit {$/;"	s
+ulquit	scripts/cleanup-info.pl	/^sub ulquit {$/;"	s
+ulquit	scripts/install-info.pl	/^sub ulquit {$/;"	s
+unavdone	dselect/pkglist.h	/^  struct doneent { doneent *next; void *dep; } *depsdone, *unavdone;$/;"	m	class:packagelist
+uncatchsignal	dselect/method.cc	/^static struct sigaction uncatchsignal[NCATCHSIGNALS];$/;"	v	file:
+ungetc_mmap	lib/parse.c	128;"	d	file:
+unknown	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub unknown {$/;"	s
+unknown	scripts/controllib.pl	/^sub unknown {$/;"	s
+unlinkorrmdir	main/archives.c	/^int unlinkorrmdir(const char *filename) {$/;"	f
+unlockdatabase	lib/lock.c	/^void unlockdatabase(const char *admindir) {$/;"	f
+unpackchk	main/enquiry.c	/^void unpackchk(const char *const *argv) {$/;"	f
+unrepdiff	debian/tmp/install/usr/bin/dpkg-source	/^sub unrepdiff {$/;"	s
+unrepdiff	scripts/dpkg-source.pl	/^sub unrepdiff {$/;"	s
+unrepdiff2	debian/tmp/install/usr/bin/dpkg-source	/^sub unrepdiff2 {$/;"	s
+unrepdiff2	scripts/dpkg-source.pl	/^sub unrepdiff2 {$/;"	s
+unsetenv	lib/compat.c	/^void unsetenv(const char *p) {$/;"	f
+unsignedlong	split/info.c	/^static unsigned long unsignedlong(const char *value, const char *fn, const char *what) {$/;"	f	file:
+up	include/dpkg-db.h	/^  struct dependency *up;$/;"	m	struct:deppossi
+up	include/dpkg-db.h	/^  struct pkginfo *up;$/;"	m	struct:dependency
+updateavailable	main/update.c	/^void updateavailable(const char *const *argv) {$/;"	f
+updatefnbuf	lib/dbmodify.c	/^static char *updatefnbuf, *updatefnrest;$/;"	v	file:
+updatefnrest	lib/dbmodify.c	/^static char *updatefnbuf, *updatefnrest;$/;"	v	file:
+updateslength	lib/dbmodify.c	/^static int updateslength;$/;"	v	file:
+uprec	dselect/pkglist.h	/^  struct perpackagestate *uprec;     \/\/ 0 if this is not part of a recursive list$/;"	m	struct:perpackagestate
+urq_config	dselect/dselect.h	/^urqfunction urq_setup, urq_update, urq_install, urq_config, urq_remove;$/;"	v
+urq_config	dselect/method.cc	/^urqresult urq_config(void) {$/;"	f
+urq_install	dselect/dselect.h	/^urqfunction urq_setup, urq_update, urq_install, urq_config, urq_remove;$/;"	v
+urq_install	dselect/method.cc	/^urqresult urq_install(void) {$/;"	f
+urq_list	dselect/dselect.h	/^urqfunction urq_list, urq_quit, urq_menu;$/;"	v
+urq_list	dselect/main.cc	/^urqresult urq_list(void) {$/;"	f
+urq_menu	dselect/dselect.h	/^urqfunction urq_list, urq_quit, urq_menu;$/;"	v
+urq_menu	dselect/main.cc	/^urqresult urq_menu(void) {$/;"	f
+urq_quit	dselect/dselect.h	/^urqfunction urq_list, urq_quit, urq_menu;$/;"	v
+urq_quit	dselect/main.cc	/^urqresult urq_quit(void) {$/;"	f
+urq_remove	dselect/dselect.h	/^urqfunction urq_setup, urq_update, urq_install, urq_config, urq_remove;$/;"	v
+urq_remove	dselect/method.cc	/^urqresult urq_remove(void) {$/;"	f
+urq_setup	dselect/dselect.h	/^urqfunction urq_setup, urq_update, urq_install, urq_config, urq_remove;$/;"	v
+urq_setup	dselect/method.cc	/^urqresult urq_setup(void) {$/;"	f
+urq_update	dselect/dselect.h	/^urqfunction urq_setup, urq_update, urq_install, urq_config, urq_remove;$/;"	v
+urq_update	dselect/method.cc	/^urqresult urq_update(void) {$/;"	f
+urqfunction	dselect/dselect.h	/^typedef urqresult urqfunction(void);$/;"	t
+urqr_fail	dselect/dselect.h	/^enum urqresult { urqr_normal, urqr_fail, urqr_quitmenu };$/;"	e	enum:urqresult
+urqr_normal	dselect/dselect.h	/^enum urqresult { urqr_normal, urqr_fail, urqr_quitmenu };$/;"	e	enum:urqresult
+urqr_quitmenu	dselect/dselect.h	/^enum urqresult { urqr_normal, urqr_fail, urqr_quitmenu };$/;"	e	enum:urqresult
+urqresult	dselect/dselect.h	/^enum urqresult { urqr_normal, urqr_fail, urqr_quitmenu };$/;"	g
+usage	debian/tmp/dpkg-static/usr/sbin/cleanup-info	/^sub usage {$/;"	s
+usage	debian/tmp/dpkg-static/usr/sbin/dpkg-divert	/^sub usage {$/;"	s
+usage	debian/tmp/dpkg-static/usr/sbin/install-info	/^sub usage {$/;"	s
+usage	debian/tmp/dpkg/usr/sbin/cleanup-info	/^sub usage {$/;"	s
+usage	debian/tmp/dpkg/usr/sbin/dpkg-divert	/^sub usage {$/;"	s
+usage	debian/tmp/dpkg/usr/sbin/install-info	/^sub usage {$/;"	s
+usage	debian/tmp/install/usr/bin/dpkg-checkbuilddeps	/^sub usage {$/;"	s
+usage	debian/tmp/install/usr/bin/dpkg-name	/^usage () {$/;"	f
+usage	debian/tmp/install/usr/bin/dpkg-scansources	/^sub usage {$/;"	s
+usage	debian/tmp/install/usr/sbin/cleanup-info	/^sub usage {$/;"	s
+usage	debian/tmp/install/usr/sbin/dpkg-divert	/^sub usage {$/;"	s
+usage	debian/tmp/install/usr/sbin/install-info	/^sub usage {$/;"	s
+usage	dpkg-deb/main.c	/^static void usage(void) {$/;"	f	file:
+usage	dselect/main.cc	/^static void usage(void) {$/;"	f	file:
+usage	main/main.c	/^static void usage(void) {$/;"	f	file:
+usage	main/query.c	/^static void usage(void) {$/;"	f	file:
+usage	scripts/cleanup-info.pl	/^sub usage {$/;"	s
+usage	scripts/dpkg-checkbuilddeps.pl	/^sub usage {$/;"	s
+usage	scripts/dpkg-divert.pl	/^sub usage {$/;"	s
+usage	scripts/dpkg-name.sh	/^usage () {$/;"	f
+usage	scripts/dpkg-scansources.pl	/^sub usage {$/;"	s
+usage	scripts/install-info.pl	/^sub usage {$/;"	s
+usage	split/main.c	/^static void usage(void) {$/;"	f	file:
+usage	utils/md5sum.c	/^usage(void)$/;"	f
+usageerr	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub usageerr { print(STDERR "$progname: @_\\n\\n"); &usageversion; exit(2); }$/;"	s
+usageerr	scripts/controllib.pl	/^sub usageerr { print(STDERR "$progname: @_\\n\\n"); &usageversion; exit(2); }$/;"	s
+usageversion	debian/tmp/dpkg-static/usr/sbin/update-alternatives	/^sub usageversion {$/;"	s
+usageversion	debian/tmp/dpkg/usr/sbin/update-alternatives	/^sub usageversion {$/;"	s
+usageversion	debian/tmp/install/usr/bin/dpkg-architecture	/^sub usageversion {$/;"	s
+usageversion	debian/tmp/install/usr/bin/dpkg-buildpackage	/^usageversion () {$/;"	f
+usageversion	debian/tmp/install/usr/bin/dpkg-distaddfile	/^sub usageversion {$/;"	s
+usageversion	debian/tmp/install/usr/bin/dpkg-genchanges	/^sub usageversion {$/;"	s
+usageversion	debian/tmp/install/usr/bin/dpkg-gencontrol	/^sub usageversion {$/;"	s
+usageversion	debian/tmp/install/usr/bin/dpkg-libinfo	/^sub usageversion {$/;"	s
+usageversion	debian/tmp/install/usr/bin/dpkg-parsechangelog	/^sub usageversion {$/;"	s
+usageversion	debian/tmp/install/usr/bin/dpkg-shlibdeps	/^sub usageversion {$/;"	s
+usageversion	debian/tmp/install/usr/bin/dpkg-source	/^sub usageversion {$/;"	s
+usageversion	debian/tmp/install/usr/lib/dpkg/parsechangelog/debian	/^sub usageversion {$/;"	s
+usageversion	debian/tmp/install/usr/sbin/update-alternatives	/^sub usageversion {$/;"	s
+usageversion	scripts/cl-debian.pl	/^sub usageversion {$/;"	s
+usageversion	scripts/dpkg-architecture.pl	/^sub usageversion {$/;"	s
+usageversion	scripts/dpkg-buildpackage.sh	/^usageversion () {$/;"	f
+usageversion	scripts/dpkg-distaddfile.pl	/^sub usageversion {$/;"	s
+usageversion	scripts/dpkg-genchanges.pl	/^sub usageversion {$/;"	s
+usageversion	scripts/dpkg-gencontrol.pl	/^sub usageversion {$/;"	s
+usageversion	scripts/dpkg-libinfo.pl	/^sub usageversion {$/;"	s
+usageversion	scripts/dpkg-parsechangelog.pl	/^sub usageversion {$/;"	s
+usageversion	scripts/dpkg-shlibdeps.pl	/^sub usageversion {$/;"	s
+usageversion	scripts/dpkg-shlibdeps.pl~	/^sub usageversion {$/;"	s
+usageversion	scripts/dpkg-source.pl	/^sub usageversion {$/;"	s
+usageversion	scripts/update-alternatives.pl	/^sub usageversion {$/;"	s
+use_extra_arg	optlib/obstack.h	/^  unsigned use_extra_arg:1;	\/* chunk alloc\/dealloc funcs take extra arg *\/$/;"	m	struct:obstack
+useavailable	dselect/pkgdepcon.cc	/^int packagelist::useavailable(pkginfo *pkg) {$/;"	f	class:packagelist
+used	include/dpkg-db.h	/^  size_t used, size;$/;"	m	struct:varbuf
+useinstead	main/filesdb.h	/^  struct filenamenode *useinstead;$/;"	m	struct:diversion
+user_id	utils/start-stop-daemon.c	/^static int user_id = -1;$/;"	v	file:
+userspec	utils/start-stop-daemon.c	/^static const char *userspec = NULL;$/;"	v	file:
+uvb	lib/dbmodify.c	/^static struct varbuf uvb;$/;"	v	file:
+v	build/doc/Makefile	/^	set -e ; v=`sed -ne '1s\/.*(\\(.*\\)).*\/\\1\/' $(srcdir)\/ChangeLog` ; \\$/;"	m
+val	main/enquiry.c	/^  int val;$/;"	m	struct:badstatinfo	file:
+val	optlib/getopt.h	/^  int val;$/;"	m	struct:option
+valid	include/dpkg-db.h	/^  int valid;$/;"	m	struct:pkginfoperfile
+value	include/dpkg-db.h	/^  char *value;$/;"	m	struct:arbitraryfield
+value	include/dpkg-db.h	/^  int value, length;$/;"	m	struct:namevalue
+value	optlib/getdate.c	/^    int		value;$/;"	m	struct:_TABLE	file:
+value	utils/start-stop-daemon.c	/^	int value; \/* seconds, signal no., or index into array *\/$/;"	m	struct:schedule_item	file:
+varbuf	include/dpkg-db.h	/^  varbuf() { varbufinit(this); }$/;"	f	struct:varbuf
+varbuf	include/dpkg-db.h	/^struct varbuf {$/;"	s
+varbufaddbuf	lib/varbuf.c	/^void varbufaddbuf(struct varbuf *v, const void *s, const int l) {$/;"	f
+varbufaddc	lib/varbuf.c	/^inline void varbufaddc(struct varbuf *v, int c) {$/;"	f
+varbufaddstr	include/dpkg-db.h	246;"	d
+varbufdependency	lib/dump.c	/^void varbufdependency(struct varbuf *vb, struct dependency *dep) {$/;"	f
+varbufdupc	lib/varbuf.c	/^void varbufdupc(struct varbuf *v, int c, ssize_t n) {$/;"	f
+varbufextend	lib/varbuf.c	/^void varbufextend(struct varbuf *v) {$/;"	f
+varbuffree	lib/varbuf.c	/^void varbuffree(struct varbuf *v) {$/;"	f
+varbufinit	lib/varbuf.c	/^void varbufinit(struct varbuf *v) {$/;"	f
+varbufprintf	lib/varbuf.c	/^int varbufprintf(struct varbuf *v, const char *fmt, ...) {$/;"	f
+varbufrecord	lib/dump.c	/^void varbufrecord(struct varbuf *vb,$/;"	f
+varbufreset	lib/varbuf.c	/^void varbufreset(struct varbuf *v) {$/;"	f
+varbufversion	lib/parsehelp.c	/^void varbufversion$/;"	f
+varbufvprintf	lib/varbuf.c	/^int varbufvprintf(struct varbuf *v, const char *fmt, va_list va) {$/;"	f
+vbuildarglist	main/help.c	/^static char *const *vbuildarglist(const char *scriptname, va_list ap) {$/;"	f	file:
+vdew_always	include/dpkg-db.h	/^enum versiondisplayepochwhen { vdew_never, vdew_nonambig, vdew_always };$/;"	e	enum:versiondisplayepochwhen
+vdew_never	include/dpkg-db.h	/^enum versiondisplayepochwhen { vdew_never, vdew_nonambig, vdew_always };$/;"	e	enum:versiondisplayepochwhen
+vdew_nonambig	include/dpkg-db.h	/^enum versiondisplayepochwhen { vdew_never, vdew_nonambig, vdew_always };$/;"	e	enum:versiondisplayepochwhen
+vdo_available	dselect/pkglist.h	/^  enum { vdo_none, vdo_available, vdo_both } versiondisplayopt;$/;"	e	enum:packagelist::<anonymous>
+vdo_both	dselect/pkglist.h	/^  enum { vdo_none, vdo_available, vdo_both } versiondisplayopt;$/;"	e	enum:packagelist::<anonymous>
+vdo_none	dselect/pkglist.h	/^  enum { vdo_none, vdo_available, vdo_both } versiondisplayopt;$/;"	e	enum:packagelist::<anonymous>
+verbose	dselect/pkglist.h	/^  int recursive, nallocated, verbose;$/;"	m	class:packagelist
+verbose	utils/md5sum.c	/^int verbose = 0;$/;"	v
+vercmp	debian/tmp/install/usr/bin/dpkg-scanpackages	/^sub vercmp {$/;"	s
+vercmp	scripts/dpkg-scanpackages.pl	/^sub vercmp {$/;"	s
+verrel	include/dpkg-db.h	/^  enum depverrel verrel;$/;"	m	struct:deppossi
+verrevcmp	lib/vercmp.c	/^static int verrevcmp(const char *val, const char *ref) {$/;"	f	file:
+version	build/scripts/Makefile	/^	$(SED) -e "s:version=\\"[^\\"]*\\":version=\\"$(VERSION)\\":" \\$/;"	m
+version	debian/tmp/dpkg-static/usr/sbin/cleanup-info	/^sub version {$/;"	s
+version	debian/tmp/dpkg-static/usr/sbin/install-info	/^sub version {$/;"	s
+version	debian/tmp/dpkg/usr/sbin/cleanup-info	/^sub version {$/;"	s
+version	debian/tmp/dpkg/usr/sbin/install-info	/^sub version {$/;"	s
+version	debian/tmp/install/usr/sbin/cleanup-info	/^sub version {$/;"	s
+version	debian/tmp/install/usr/sbin/install-info	/^sub version {$/;"	s
+version	include/dpkg-db.h	/^  const char *version;$/;"	m	struct:versionrevision
+version	include/dpkg-db.h	/^  struct versionrevision version;$/;"	m	struct:deppossi
+version	include/dpkg-db.h	/^  struct versionrevision version;$/;"	m	struct:pkginfoperfile
+version	scripts/cleanup-info.pl	/^sub version {$/;"	s
+version	scripts/install-info.pl	/^sub version {$/;"	s
+version	split/dpkg-split.h	/^  const char *version;$/;"	m	struct:partinfo
+versionavailable_column	dselect/pkglist.h	/^  int versionavailable_column, package_column, description_column;$/;"	m	class:packagelist
+versionavailable_width	dselect/pkglist.h	/^  int package_width, versioninstalled_width, versionavailable_width, description_width;$/;"	m	class:packagelist
+versioncompare	lib/vercmp.c	/^int versioncompare(const struct versionrevision *version,$/;"	f
+versiondescribe	lib/parsehelp.c	/^const char *versiondescribe$/;"	f
+versiondisplayepochwhen	include/dpkg-db.h	/^enum versiondisplayepochwhen { vdew_never, vdew_nonambig, vdew_always };$/;"	g
+versiondisplayopt	dselect/pkglist.h	/^  enum { vdo_none, vdo_available, vdo_both } versiondisplayopt;$/;"	m	class:packagelist
+versioninstalled_column	dselect/pkglist.h	/^  int section_column, priority_column, versioninstalled_column;$/;"	m	class:packagelist
+versioninstalled_width	dselect/pkglist.h	/^  int package_width, versioninstalled_width, versionavailable_width, description_width;$/;"	m	class:packagelist
+versiononly	dpkg-deb/main.c	/^static void versiononly(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+versiononly	dselect/main.cc	/^  static void versiononly(const struct cmdinfo*, const char*) {$/;"	f	file:
+versiononly	main/main.c	/^static void versiononly(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+versiononly	main/query.c	/^static void versiononly(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+versiononly	split/main.c	/^static void versiononly(const struct cmdinfo *cip, const char *value) {$/;"	f	file:
+versionrevision	include/dpkg-db.h	/^struct versionrevision {$/;"	s
+versionsatisfied	lib/vercmp.c	/^int versionsatisfied(struct pkginfoperfile *it, struct deppossi *against) {$/;"	f
+versionsatisfied3	lib/vercmp.c	/^int versionsatisfied3(const struct versionrevision *it,$/;"	f
+voidfnp	include/myopt.h	/^typedef void (*voidfnp)(void);$/;"	t
+vsnprintf	lib/compat.c	/^int vsnprintf (char *buf, size_t maxsize, const char *fmt, va_list al) {$/;"	f
+w_booleandefno	include/parsedump.h	/^fwritefunction w_version, w_null, w_booleandefno, w_dependency, w_conffiles;$/;"	v
+w_booleandefno	lib/dump.c	/^void w_booleandefno(struct varbuf *vb,$/;"	f
+w_charfield	include/parsedump.h	/^fwritefunction w_name, w_charfield, w_priority, w_section, w_status, w_configversion;$/;"	v
+w_charfield	lib/dump.c	/^void w_charfield(struct varbuf *vb,$/;"	f
+w_conffiles	include/parsedump.h	/^fwritefunction w_version, w_null, w_booleandefno, w_dependency, w_conffiles;$/;"	v
+w_conffiles	lib/dump.c	/^void w_conffiles(struct varbuf *vb,$/;"	f
+w_configversion	include/parsedump.h	/^fwritefunction w_name, w_charfield, w_priority, w_section, w_status, w_configversion;$/;"	v
+w_configversion	lib/dump.c	/^void w_configversion(struct varbuf *vb,$/;"	f
+w_dependency	include/parsedump.h	/^fwritefunction w_version, w_null, w_booleandefno, w_dependency, w_conffiles;$/;"	v
+w_dependency	lib/dump.c	/^void w_dependency(struct varbuf *vb,$/;"	f
+w_filecharf	include/parsedump.h	/^fwritefunction w_filecharf;$/;"	v
+w_filecharf	lib/dump.c	/^void w_filecharf(struct varbuf *vb,$/;"	f
+w_name	include/parsedump.h	/^fwritefunction w_name, w_charfield, w_priority, w_section, w_status, w_configversion;$/;"	v
+w_name	lib/dump.c	/^void w_name(struct varbuf *vb,$/;"	f
+w_null	include/parsedump.h	/^fwritefunction w_version, w_null, w_booleandefno, w_dependency, w_conffiles;$/;"	v
+w_null	lib/dump.c	/^void w_null(struct varbuf *vb,$/;"	f
+w_priority	include/parsedump.h	/^fwritefunction w_name, w_charfield, w_priority, w_section, w_status, w_configversion;$/;"	v
+w_priority	lib/dump.c	/^void w_priority(struct varbuf *vb,$/;"	f
+w_section	include/parsedump.h	/^fwritefunction w_name, w_charfield, w_priority, w_section, w_status, w_configversion;$/;"	v
+w_section	lib/dump.c	/^void w_section(struct varbuf *vb,$/;"	f
+w_status	include/parsedump.h	/^fwritefunction w_name, w_charfield, w_priority, w_section, w_status, w_configversion;$/;"	v
+w_status	lib/dump.c	/^void w_status(struct varbuf *vb,$/;"	f
+w_version	include/parsedump.h	/^fwritefunction w_version, w_null, w_booleandefno, w_dependency, w_conffiles;$/;"	v
+w_version	lib/dump.c	/^void w_version(struct varbuf *vb,$/;"	f
+waitsubproc	lib/mlib.c	/^int waitsubproc(pid_t pid, const char *description, int flags) {$/;"	f
+want	include/dpkg-db.h	/^  } want;$/;"	m	struct:pkginfo
+want_deinstall	include/dpkg-db.h	/^    want_unknown, want_install, want_hold, want_deinstall, want_purge,$/;"	e	enum:pkginfo::pkgwant
+want_hold	include/dpkg-db.h	/^    want_unknown, want_install, want_hold, want_deinstall, want_purge,$/;"	e	enum:pkginfo::pkgwant
+want_install	include/dpkg-db.h	/^    want_unknown, want_install, want_hold, want_deinstall, want_purge,$/;"	e	enum:pkginfo::pkgwant
+want_purge	include/dpkg-db.h	/^    want_unknown, want_install, want_hold, want_deinstall, want_purge,$/;"	e	enum:pkginfo::pkgwant
+want_sentinel	include/dpkg-db.h	/^    want_sentinel \/* Not allowed except as special sentinel value$/;"	e	enum:pkginfo::pkgwant
+want_unknown	include/dpkg-db.h	/^    want_unknown, want_install, want_hold, want_deinstall, want_purge,$/;"	e	enum:pkginfo::pkgwant
+wantchars	dselect/pkgdisplay.cc	/^const char wantchars[]=     "n*=-_";$/;"	v
+wantinfos	lib/parsehelp.c	/^const struct namevalue wantinfos[]= {  \/* Note !  These must be in order ! *\/$/;"	v
+wantstrings	dselect/pkgdisplay.cc	/^  *const wantstrings[]=   { N_("new package"), $/;"	v
+wanttoinstall	main/archives.c	/^int wanttoinstall(struct pkginfo *pkg, const struct versionrevision *ver, int saywhy) {$/;"	f
+warn	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub warn { warn "$progname: warning: $_[0]\\n"; }$/;"	s
+warn	scripts/controllib.pl	/^sub warn { warn "$progname: warning: $_[0]\\n"; }$/;"	s
+warnerror	debian/tmp/install/usr/lib/dpkg/controllib.pl	/^sub warnerror { if ($warnable_error) { &warn( @_ ); } else { &error( @_ ); } }$/;"	s
+warnerror	scripts/controllib.pl	/^sub warnerror { if ($warnable_error) { &warn( @_ ); } else { &error( @_ ); } }$/;"	s
+wcall	include/parsedump.h	/^  fwritefunction *wcall;$/;"	m	struct:fieldinfo
+werr	lib/ehandle.c	/^void werr(const char *fn) {$/;"	f
+what	main/errors.c	/^  const char *what;$/;"	m	struct:error_report	file:
+what_stop	utils/start-stop-daemon.c	/^static char what_stop[1024];$/;"	v	file:
+whatinfo	dselect/dselect.h	/^       whatinfo,$/;"	e	enum:screenparts
+whatinfo_attr	dselect/dselect.h	/^  int info_headattr, whatinfo_attr;$/;"	m	class:baselist
+whatinfo_height	dselect/dselect.h	/^  int thisstate_height, info_height, whatinfo_height;$/;"	m	class:baselist
+whatinfo_row	dselect/dselect.h	/^  int colheads_row, thisstate_row, info_row, whatinfo_row, list_row;$/;"	m	class:baselist
+whatinfovb	dselect/dselect.h	/^  varbuf whatinfovb;$/;"	m	class:baselist
+whatinfowin	dselect/dselect.h	/^  WINDOW *titlewin, *whatinfowin, *querywin;$/;"	m	class:baselist
+width	lib/showpkg.c	/^	size_t width;$/;"	m	struct:lstitem	file:
+withecho	debian/tmp/install/usr/bin/dpkg-buildpackage	/^withecho () {$/;"	f
+withecho	scripts/dpkg-buildpackage.sh	/^withecho () {$/;"	f
+wordwrapinfo	dselect/baselist.cc	/^void baselist::wordwrapinfo(int offset, const char *m) {$/;"	f	class:baselist
+would_like_to_install	dselect/pkgcmds.cc	/^int would_like_to_install(pkginfo::pkgwant wantvalue, pkginfo *pkg) {$/;"	f
+write_filelist_except	main/filesdb.c	/^void write_filelist_except(struct pkginfo *pkg, struct fileinlist *list, int leaveout) {$/;"	f
+writecurrentopt	dselect/methparse.cc	/^void writecurrentopt() {$/;"	f
+writedb	lib/dump.c	/^void writedb(const char *filename, int available, int mustsync) {$/;"	f
+writelist	debian/tmp/install/usr/bin/dpkg-scanpackages	/^sub writelist {$/;"	s
+writelist	scripts/dpkg-scanpackages.pl	/^sub writelist {$/;"	s
+writerecord	lib/dump.c	/^void writerecord(FILE *file, const char *filename,$/;"	f
+x	optlib/obstack.c	/^struct fooalign {char x; double d;};$/;"	m	struct:fooalign	file:
+x	optlib/obstack.c	/^union fooround {long x; double d;};$/;"	m	union:fooround	file:
+xdie	debian/tmp/install/usr/bin/dpkg-scansources	/^sub xdie {$/;"	s
+xdie	scripts/dpkg-scansources.pl	/^sub xdie {$/;"	s
+xgettimeofday	utils/start-stop-daemon.c	/^xgettimeofday(struct timeval *tv)$/;"	f	file:
+xmalloc	utils/start-stop-daemon.c	/^xmalloc(int size)$/;"	f	file:
+xmax	dselect/dselect.h	/^  int xmax, ymax;$/;"	m	class:baselist
+xwarn	debian/tmp/install/usr/bin/dpkg-scansources	/^sub xwarn {$/;"	s
+xwarn	scripts/dpkg-scansources.pl	/^sub xwarn {$/;"	s
+xwarn_noerror	debian/tmp/install/usr/bin/dpkg-scansources	/^sub xwarn_noerror {$/;"	s
+xwarn_noerror	scripts/dpkg-scansources.pl	/^sub xwarn_noerror {$/;"	s
+xwarndie_mess	debian/tmp/install/usr/bin/dpkg-scansources	/^sub xwarndie_mess {$/;"	s
+xwarndie_mess	scripts/dpkg-scansources.pl	/^sub xwarndie_mess {$/;"	s
+yesno	debian/tmp/dselect/usr/lib/dpkg/methods/disk/setup	/^yesno () {$/;"	f
+yesno	main/enquiry.c	/^  int (*yesno)(struct pkginfo*, const struct badstatinfo *bsi);$/;"	m	struct:badstatinfo	file:
+yettobeunpacked	main/enquiry.c	/^static int yettobeunpacked(struct pkginfo *pkg, const char **thissect) {$/;"	f	file:
+ymax	dselect/dselect.h	/^  int xmax, ymax;$/;"	m	class:baselist
+yyDay	optlib/getdate.c	/^static int	yyDay;$/;"	v	file:
+yyDayNumber	optlib/getdate.c	/^static int	yyDayNumber;$/;"	v	file:
+yyDayOrdinal	optlib/getdate.c	/^static int	yyDayOrdinal;$/;"	v	file:
+yyHaveDate	optlib/getdate.c	/^static int	yyHaveDate;$/;"	v	file:
+yyHaveDay	optlib/getdate.c	/^static int	yyHaveDay;$/;"	v	file:
+yyHaveRel	optlib/getdate.c	/^static int	yyHaveRel;$/;"	v	file:
+yyHaveTime	optlib/getdate.c	/^static int	yyHaveTime;$/;"	v	file:
+yyHaveZone	optlib/getdate.c	/^static int	yyHaveZone;$/;"	v	file:
+yyHour	optlib/getdate.c	/^static int	yyHour;$/;"	v	file:
+yyInput	optlib/getdate.c	/^static const char	*yyInput;$/;"	v	file:
+yyMeridian	optlib/getdate.c	/^static MERIDIAN	yyMeridian;$/;"	v	file:
+yyMinutes	optlib/getdate.c	/^static int	yyMinutes;$/;"	v	file:
+yyMonth	optlib/getdate.c	/^static int	yyMonth;$/;"	v	file:
+yyRelDay	optlib/getdate.c	/^static int	yyRelDay;$/;"	v	file:
+yyRelHour	optlib/getdate.c	/^static int	yyRelHour;$/;"	v	file:
+yyRelMinutes	optlib/getdate.c	/^static int	yyRelMinutes;$/;"	v	file:
+yyRelMonth	optlib/getdate.c	/^static int	yyRelMonth;$/;"	v	file:
+yyRelSeconds	optlib/getdate.c	/^static int	yyRelSeconds;$/;"	v	file:
+yyRelYear	optlib/getdate.c	/^static int	yyRelYear;$/;"	v	file:
+yySeconds	optlib/getdate.c	/^static int	yySeconds;$/;"	v	file:
+yyTimezone	optlib/getdate.c	/^static int	yyTimezone;$/;"	v	file:
+yyYear	optlib/getdate.c	/^static int	yyYear;$/;"	v	file:
+yy_yys	optlib/getdate.c	124;"	d	file:
+yy_yyv	optlib/getdate.c	128;"	d	file:
+yyact	optlib/getdate.c	117;"	d	file:
+yychar	optlib/getdate.c	/^int	yychar;			\/*  the lookahead symbol		*\/$/;"	v
+yychar	optlib/getdate.c	109;"	d	file:
+yycheck	optlib/getdate.c	/^static const short yycheck[] = {     0,$/;"	v	file:
+yycheck	optlib/getdate.c	141;"	d	file:
+yychk	optlib/getdate.c	115;"	d	file:
+yyclearin	optlib/getdate.c	430;"	d	file:
+yydebug	optlib/getdate.c	/^int yydebug;			\/*  nonzero means print parse trace	*\/$/;"	v
+yydebug	optlib/getdate.c	110;"	d	file:
+yydef	optlib/getdate.c	114;"	d	file:
+yydefact	optlib/getdate.c	/^static const short yydefact[] = {     1,$/;"	v	file:
+yydefgoto	optlib/getdate.c	/^static const short yydefgoto[] = {     1,$/;"	v	file:
+yydefred	optlib/getdate.c	135;"	d	file:
+yydgoto	optlib/getdate.c	136;"	d	file:
+yyerrflag	optlib/getdate.c	119;"	d	file:
+yyerrok	optlib/getdate.c	429;"	d	file:
+yyerror	optlib/getdate.c	/^yyerror (s)$/;"	f	file:
+yyerror	optlib/getdate.c	107;"	d	file:
+yyexca	optlib/getdate.c	118;"	d	file:
+yygindex	optlib/getdate.c	139;"	d	file:
+yylen	optlib/getdate.c	134;"	d	file:
+yylex	optlib/getdate.c	/^yylex ()$/;"	f	file:
+yylex	optlib/getdate.c	106;"	d	file:
+yylhs	optlib/getdate.c	133;"	d	file:
+yylloc	optlib/getdate.c	/^YYLTYPE yylloc;			\/*  location data for the lookahead	*\/$/;"	v
+yylloc	optlib/getdate.c	130;"	d	file:
+yylval	optlib/getdate.c	/^YYSTYPE	yylval;			\/*  the semantic value of the		*\/$/;"	v
+yylval	optlib/getdate.c	108;"	d	file:
+yymaxdepth	optlib/getdate.c	104;"	d	file:
+yynerrs	optlib/getdate.c	/^int yynerrs;			\/*  number of parse errors so far       *\/$/;"	v
+yynerrs	optlib/getdate.c	120;"	d	file:
+yypact	optlib/getdate.c	/^static const short yypact[] = {-32768,$/;"	v	file:
+yypact	optlib/getdate.c	111;"	d	file:
+yyparse	optlib/getdate.c	/^yyparse(YYPARSE_PARAM_ARG)$/;"	f
+yyparse	optlib/getdate.c	105;"	d	file:
+yypgo	optlib/getdate.c	116;"	d	file:
+yypgoto	optlib/getdate.c	/^static const short yypgoto[] = {-32768,$/;"	v	file:
+yyprhs	optlib/getdate.c	/^static const short yyprhs[] = {     0,$/;"	v	file:
+yyps	optlib/getdate.c	121;"	d	file:
+yypv	optlib/getdate.c	122;"	d	file:
+yyr1	optlib/getdate.c	/^static const short yyr1[] = {     0,$/;"	v	file:
+yyr1	optlib/getdate.c	112;"	d	file:
+yyr2	optlib/getdate.c	/^static const short yyr2[] = {     0,$/;"	v	file:
+yyr2	optlib/getdate.c	113;"	d	file:
+yyreds	optlib/getdate.c	131;"	d	file:
+yyrhs	optlib/getdate.c	/^static const short yyrhs[] = {    -1,$/;"	v	file:
+yyrindex	optlib/getdate.c	138;"	d	file:
+yyrline	optlib/getdate.c	/^static const short yyrline[] = { 0,$/;"	v	file:
+yys	optlib/getdate.c	123;"	d	file:
+yysindex	optlib/getdate.c	137;"	d	file:
+yystate	optlib/getdate.c	125;"	d	file:
+yytable	optlib/getdate.c	/^static const short yytable[] = {    60,$/;"	v	file:
+yytable	optlib/getdate.c	140;"	d	file:
+yytmp	optlib/getdate.c	126;"	d	file:
+yytname	optlib/getdate.c	/^static const char * const yytname[] = {   "$","error","$undefined.","tAGO","tDAY",$/;"	v	file:
+yytoks	optlib/getdate.c	132;"	d	file:
+yytranslate	optlib/getdate.c	/^static const char yytranslate[] = {     0,$/;"	v	file:
+yyv	optlib/getdate.c	127;"	d	file:
+yyval	optlib/getdate.c	129;"	d	file:
+~baselist	dselect/baselist.cc	/^baselist::~baselist() { }$/;"	f	class:baselist
+~keybindings	dselect/bindings.cc	/^keybindings::~keybindings() {$/;"	f	class:keybindings
+~methodlist	dselect/methlist.cc	/^methodlist::~methodlist() {$/;"	f	class:methodlist
+~packagelist	dselect/pkglist.cc	/^packagelist::~packagelist() {$/;"	f	class:packagelist
+~varbuf	include/dpkg-db.h	/^  ~varbuf() { varbuffree(this); }$/;"	f	struct:varbuf

