Lines Matching defs:a_rootPath

174  * Arguments:	a_rootPath - pointer to string representing the root path
184 pkgOpenInGzOnlyFile(char *a_rootPath)
192 if (a_rootPath == (char *)NULL) {
193 a_rootPath = "";
199 a_rootPath, GLOBALZONE_ONLY_PACKAGE_FILE_PATH);
201 progerr(ERR_CREATE_PATH_2, a_rootPath,
229 * Arguments: a_rootPath - pointer to string representing the root path
241 pkgIsPkgInGzOnly(char *a_rootPath, char *a_pkgInst)
248 if (a_rootPath == (char *)NULL) {
249 a_rootPath = "";
254 fp = pkgOpenInGzOnlyFile(a_rootPath);
257 a_rootPath ? a_rootPath : "/");
335 * Arguments: a_rootPath - pointer to string representing the root path
347 pkgRemovePackageFromGzonlyList(char *a_rootPath, char *a_pkgInst)
368 if (a_rootPath == (char *)NULL) {
369 a_rootPath = "";
379 a_rootPath, GLOBALZONE_ONLY_PACKAGE_FILE_PATH);
381 progerr(ERR_CREATE_PATH_2, a_rootPath,
389 a_rootPath, GLOBALZONE_ONLY_PACKAGE_FILE_PATH);
391 progerr(ERR_CREATE_PATH_2, a_rootPath,
399 a_rootPath, GLOBALZONE_ONLY_PACKAGE_FILE_PATH);
401 progerr(ERR_CREATE_PATH_2, a_rootPath,
524 * Arguments: a_rootPath - pointer to string representing the root path
536 pkgAddPackageToGzonlyList(char *a_pkgInst, char *a_rootPath)
557 if (a_rootPath == (char *)NULL) {
558 a_rootPath = "";
563 echoDebug(DBG_PKGOPS_ADDGZPKG, a_pkgInst, a_rootPath);
572 a_rootPath, GLOBALZONE_ONLY_PACKAGE_FILE_PATH);
574 progerr(ERR_CREATE_PATH_2, a_rootPath,
582 a_rootPath, GLOBALZONE_ONLY_PACKAGE_FILE_PATH);
584 progerr(ERR_CREATE_PATH_2, a_rootPath,
592 a_rootPath, GLOBALZONE_ONLY_PACKAGE_FILE_PATH);
594 progerr(ERR_CREATE_PATH_2, a_rootPath,
1010 * a_rootPath - [RO, *RO] - (char *)
1020 int r_pkgInstLen, char *a_rootPath, char *a_pkgInst)
1039 if ((a_rootPath == (char *)NULL) || (strcmp(a_rootPath, "/") == 0)) {
1040 a_rootPath = "";
1045 (void) snprintf(pkgInstPath, sizeof (pkgInstPath), "%s%s", a_rootPath,
1127 pkgstrPrintf_r(r_path, r_pathLen, "%s%s/%s", a_rootPath,
1140 * a_rootPath - root path of alternative root to test
1146 pkgTestInstalled(char *a_packageName, char *a_rootPath)
1155 assert(a_rootPath != (char *)NULL);
1156 assert(a_rootPath != '\0');
1160 echoDebug(DBG_PKG_TEST_EXISTENCE, a_packageName, a_rootPath);
1176 echoDebug(DBG_PKG_INSTALLED, a_packageName, a_rootPath);
1182 echoDebug(DBG_PKG_NOT_INSTALLED, a_packageName, a_rootPath);