Uses of Class
frysk.proc.Auxv

Packages that use Auxv
frysk.proc This package implements frysk's process model of the target system. 
frysk.proc.dead   
frysk.proc.dummy This package implements a dummy process model that can be used to test code that does not require a running process. 
frysk.proc.live This is a frysk implementation package that provides the implementation of frysk.proc for ptrace based (GNU/Linux) systems. 
frysk.solib This package provides mechanisms for constructing and tracking link-map and memory-maps from the link-map table found in a processes memory. 
frysk.util   
 

Uses of Auxv in frysk.proc
 

Methods in frysk.proc that return Auxv
abstract  Auxv[] Proc.getAuxv()
          The Process Auxiliary Vector.
 

Uses of Auxv in frysk.proc.dead
 

Fields in frysk.proc.dead declared as Auxv
(package private)  Auxv[] LinuxCoreInfo.auxv
           
private  Auxv[] LinuxExeProc.auxv
           
 

Methods in frysk.proc.dead that return Auxv
private  Auxv[] LinuxCoreInfo.constructAuxv(ElfData noteSection)
          Extract the AUXV .note from the notSection.
 Auxv[] LinuxCoreProc.getAuxv()
           
 Auxv[] LinuxExeProc.getAuxv()
           
 

Methods in frysk.proc.dead with parameters of type Auxv
private static void LinuxCoreInfo.addEnhancedMapData(File coreFile, File exeFile, MapAddressHeader[] metaData, Elf exeElf, Auxv[] auxv)
          Build enhanced metadata for a corefile.
private static MapAddressHeader[] LinuxCoreInfo.constructBasicMapData(Elf coreElf, ElfEHeader eHeader, Auxv[] auxv)
          Build basic metadata fore a corefile.
private static long LinuxCoreInfo.getCorefileVDSOAddress(Auxv[] auxv)
          Helper function to locate and report the backing corefile's VDSO address
 

Uses of Auxv in frysk.proc.dummy
 

Methods in frysk.proc.dummy that return Auxv
 Auxv[] DummyProc.getAuxv()
           
 

Uses of Auxv in frysk.proc.live
 

Fields in frysk.proc.live declared as Auxv
private  Auxv[] LinuxPtraceProc.auxv
           
 

Methods in frysk.proc.live that return Auxv
 Auxv[] LinuxPtraceProc.getAuxv()
           
 

Uses of Auxv in frysk.solib
 

Methods in frysk.solib with parameters of type Auxv
static LinkMap[] LinkMapFactory.extractLinkMaps(Elf exeElf, File exeFile, ByteBuffer memory, Auxv[] auxv)
           
private static long DynamicSegment.getEntryPoint(Auxv[] auxv)
          Helper function to locate and report the AUXV entry point.
private static long LinkMapFactory.getVdsoAddress(Auxv[] auxv)
          Helper function to locate and report the backing corefile's VDSO address
 

Constructors in frysk.solib with parameters of type Auxv
DynamicSegment(Auxv[] auxv, Elf exeElf)
          Helper function to return the backing core file's dynamic segment address and size
 

Uses of Auxv in frysk.util
 

Methods in frysk.util with parameters of type Auxv
 void AuxvStringBuilder.construct(Auxv[] rawAuxv, Proc mainProc)