Imports of package ebpf

PathSynopsis
bufioPackage bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O.
bytesPackage bytes implements functions for the manipulation of byte slices.
debug/elfPackage elf implements access to ELF object files.
encodingPackage encoding defines interfaces shared by other packages that convert data to and from byte-level and textual representations.
encoding/binaryPackage binary implements simple translation between numbers and byte sequences and encoding and decoding of varints.
encoding/hexPackage hex implements hexadecimal encoding and decoding.
errorsPackage errors implements functions to manipulate errors.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
github.com/cilium/ebpf/asmPackage asm is an assembler for eBPF bytecode.
github.com/cilium/ebpf/btfPackage btf handles data encoded according to the BPF Type Format.
github.com/cilium/ebpf/internal
github.com/cilium/ebpf/internal/kallsyms
github.com/cilium/ebpf/internal/kconfigPackage kconfig implements a parser for the format of Linux's .config file.
github.com/cilium/ebpf/internal/sysPackage sys contains bindings for the BPF syscall.
github.com/cilium/ebpf/internal/sysencPackage sysenc provides efficient conversion of Go values to system call interfaces.
github.com/cilium/ebpf/internal/tracefs
github.com/cilium/ebpf/internal/unixPackage unix re-exports Linux specific parts of golang.org/x/sys/unix.
ioPackage io provides basic interfaces to I/O primitives.
mathPackage math provides basic constants and mathematical functions.
math/randPackage rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work.
osPackage os provides a platform-independent interface to operating system functionality.
path/filepathPackage filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
reflectPackage reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types.
runtimePackage runtime contains operations that interact with Go's runtime system, such as functions to control goroutines.
slicesPackage slices defines various functions useful with slices of any type.
strconvPackage strconv implements conversions to and from string representations of basic data types.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
syncPackage sync provides basic synchronization primitives such as mutual exclusion locks.
syscallPackage syscall contains an interface to the low-level operating system primitives.
timePackage time provides functionality for measuring and displaying time.
unsafePackage unsafe contains operations that step around the type safety of Go programs.