Lines Matching refs:a_lzMountPoint
1289 z_umount_lz_mount(char *a_lzMountPoint) in z_umount_lz_mount() argument
1295 assert(a_lzMountPoint != (char *)NULL); in z_umount_lz_mount()
1296 assert(*a_lzMountPoint != '\0'); in z_umount_lz_mount()
1300 _z_echoDebug(DBG_ZONES_UNMOUNT_FROM_LZ_ENTRY, a_lzMountPoint); in z_umount_lz_mount()
1310 if (*a_lzMountPoint != '/') { in z_umount_lz_mount()
1311 _z_program_error(ERR_LZMNTPT_NOT_ABSOLUTE, a_lzMountPoint); in z_umount_lz_mount()
1317 if (_z_is_directory(a_lzMountPoint) != 0) { in z_umount_lz_mount()
1318 _z_program_error(ERR_LZMNTPT_NOTDIR, a_lzMountPoint, in z_umount_lz_mount()
1325 err = umount2(a_lzMountPoint, 0); in z_umount_lz_mount()
1327 _z_program_error(ERR_GZUMOUNT_FAILED, a_lzMountPoint, in z_umount_lz_mount()
1334 (void) remove(a_lzMountPoint); in z_umount_lz_mount()