Uses of Class
org.eclipse.jgit.internal.storage.file.PackIndex
-
Packages that use PackIndex Package Description org.eclipse.jgit.internal.fsck Git fsck support.org.eclipse.jgit.internal.storage.dfs Distributed file system based repository storage.org.eclipse.jgit.internal.storage.file File based repository storage.org.eclipse.jgit.transport Transport (fetch/push) for different protocols. -
-
Uses of PackIndex in org.eclipse.jgit.internal.fsck
Methods in org.eclipse.jgit.internal.fsck with parameters of type PackIndex Modifier and Type Method Description voidFsckPackParser. verifyIndex(PackIndex idx)Verify the existing index file with all objects from the pack. -
Uses of PackIndex in org.eclipse.jgit.internal.storage.dfs
Fields in org.eclipse.jgit.internal.storage.dfs declared as PackIndex Modifier and Type Field Description private PackIndexDfsPackFile. indexIndex mappingObjectIdto position within the pack stream.private PackIndexDfsPackParser. packIndexIf the index was small enough, the entire index after writing.Methods in org.eclipse.jgit.internal.storage.dfs that return PackIndex Modifier and Type Method Description PackIndexDfsPackFile. getPackIndex(DfsReader ctx)Get the PackIndex for this PackFile.private PackIndexDfsPackFile. idx(DfsReader ctx)(package private) PackIndexDfsInserter. writePackIndex(DfsPackDescription pack, byte[] packHash, java.util.List<PackedObjectInfo> list)Methods in org.eclipse.jgit.internal.storage.dfs that return types with arguments of type PackIndex Modifier and Type Method Description private DfsBlockCache.Ref<PackIndex>DfsPackFile. loadPackIndex(DfsReader ctx, DfsStreamKey idxKey)Methods in org.eclipse.jgit.internal.storage.dfs with parameters of type PackIndex Modifier and Type Method Description private DfsBlockCache.Ref<PackBitmapIndex>DfsPackFile. loadBitmapIndex(DfsReader ctx, DfsStreamKey bitmapKey, PackIndex idx, PackReverseIndex revidx)private DfsBlockCache.Ref<PackReverseIndex>DfsPackFile. loadReverseIdx(DfsStreamKey revKey, PackIndex idx)(package private) voidDfsPackFile. setPackIndex(PackIndex idx) -
Uses of PackIndex in org.eclipse.jgit.internal.storage.file
Subclasses of PackIndex in org.eclipse.jgit.internal.storage.file Modifier and Type Class Description (package private) classPackIndexV1(package private) classPackIndexV2Support for the pack index v2 format.Fields in org.eclipse.jgit.internal.storage.file declared as PackIndex Modifier and Type Field Description private PackIndexPackReverseIndex. indexIndex we were created from, and that has our ObjectId data.private PackIndexPack. loadedIdxprivate PackIndexPackBitmapIndexV1. packIndexMethods in org.eclipse.jgit.internal.storage.file that return PackIndex Modifier and Type Method Description PackIndexPack. getIndex()Get the index for this pack file.(package private) PackIndexPackBitmapIndexV1. getPackIndex()private PackIndexPack. idx()static PackIndexPackIndex. open(java.io.File idxFile)Open an existing pack.idxfile for reading.static PackIndexPackIndex. read(java.io.InputStream fd)Read an existing pack index file from a buffered stream.Methods in org.eclipse.jgit.internal.storage.file with parameters of type PackIndex Modifier and Type Method Description static PackBitmapIndexPackBitmapIndex. open(java.io.File idxFile, PackIndex packIndex, PackReverseIndex reverseIndex)Read an existing pack bitmap index file from a buffered stream.static PackBitmapIndexPackBitmapIndex. read(java.io.InputStream fd, PackIndex packIndex, PackReverseIndex reverseIndex)Read an existing pack bitmap index file from a buffered stream.Constructors in org.eclipse.jgit.internal.storage.file with parameters of type PackIndex Constructor Description PackBitmapIndexV1(java.io.InputStream fd, PackIndex packIndex, PackReverseIndex reverseIndex)PackReverseIndex(PackIndex packIndex)Create reverse index from straight/forward pack index, by indexing all its entries. -
Uses of PackIndex in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport declared as PackIndex Modifier and Type Field Description (package private) PackIndexWalkFetchConnection.RemotePack. index
-