Lines Matching refs:pkginfo
65 static void _pkginfoInit(struct pkginfo *a_info);
66 static struct pkginfo *_pkginfoFactory(void);
84 pkginfoFree(struct pkginfo **r_info) in pkginfoFree()
86 struct pkginfo *pinfo; in pkginfoFree()
90 assert(r_info != (struct pkginfo **)NULL); in pkginfoFree()
98 *r_info = (struct pkginfo *)NULL; in pkginfoFree()
100 assert(pinfo != (struct pkginfo *)NULL); in pkginfoFree()
135 pkginfoIsPkgInstalled(struct pkginfo **r_pinfo, char *a_pkgInst) in pkginfoIsPkgInstalled()
138 struct pkginfo *pinf; in pkginfoIsPkgInstalled()
147 if (r_pinfo != (struct pkginfo **)NULL) { in pkginfoIsPkgInstalled()
148 *r_pinfo = (struct pkginfo *)NULL; in pkginfoIsPkgInstalled()
158 r = pkginfo(pinf, a_pkgInst, NULL, NULL); in pkginfoIsPkgInstalled()
161 if (r_pinfo != (struct pkginfo **)NULL) { in pkginfoIsPkgInstalled()
1026 struct pkginfo *pinf = (struct pkginfo *)NULL; in pkgLocateHighestInst()
1101 r = pkginfo(pinf, pkgWild, NULL, NULL); in pkgLocateHighestInst()
1194 _pkginfoInit(struct pkginfo *a_info) in _pkginfoInit()
1198 assert(a_info != (struct pkginfo *)NULL); in _pkginfoInit()
1225 static struct pkginfo *
1228 struct pkginfo *pinf; in _pkginfoFactory()
1230 pinf = (struct pkginfo *)calloc(1, sizeof (struct pkginfo)); in _pkginfoFactory()
1231 if (pinf == (struct pkginfo *)NULL) { in _pkginfoFactory()