SYMBOL INDEX (40594 symbols across 1281 files)
FILE: tools/change_metric_collection_level.py
function PrintException (line 30) | def PrintException():
function get_args (line 40) | def get_args():
function change_level (line 61) | def change_level(host, user, pwd, port, level, key, name):
FILE: vendor/github.com/davecgh/go-spew/spew/bypass.go
constant UnsafeDisabled (line 31) | UnsafeDisabled = false
constant ptrSize (line 34) | ptrSize = unsafe.Sizeof((*byte)(nil))
function init (line 66) | func init() {
function unsafeReflectValue (line 122) | func unsafeReflectValue(v reflect.Value) (rv reflect.Value) {
FILE: vendor/github.com/davecgh/go-spew/spew/bypasssafe.go
constant UnsafeDisabled (line 28) | UnsafeDisabled = true
function unsafeReflectValue (line 36) | func unsafeReflectValue(v reflect.Value) reflect.Value {
FILE: vendor/github.com/davecgh/go-spew/spew/common.go
function catchPanic (line 72) | func catchPanic(w io.Writer, v reflect.Value) {
function handleMethods (line 85) | func handleMethods(cs *ConfigState, w io.Writer, v reflect.Value) (handl...
function printBool (line 144) | func printBool(w io.Writer, val bool) {
function printInt (line 153) | func printInt(w io.Writer, val int64, base int) {
function printUint (line 158) | func printUint(w io.Writer, val uint64, base int) {
function printFloat (line 164) | func printFloat(w io.Writer, val float64, precision int) {
function printComplex (line 170) | func printComplex(w io.Writer, c complex128, floatPrecision int) {
function printHexPtr (line 185) | func printHexPtr(w io.Writer, p uintptr) {
type valuesSorter (line 219) | type valuesSorter struct
method Len (line 279) | func (s *valuesSorter) Len() int {
method Swap (line 285) | func (s *valuesSorter) Swap(i, j int) {
method Less (line 326) | func (s *valuesSorter) Less(i, j int) bool {
function newValuesSorter (line 228) | func newValuesSorter(values []reflect.Value, cs *ConfigState) sort.Inter...
function canSortSimply (line 256) | func canSortSimply(kind reflect.Kind) bool {
function valueSortLess (line 295) | func valueSortLess(a, b reflect.Value) bool {
function sortValues (line 336) | func sortValues(values []reflect.Value, cs *ConfigState) {
FILE: vendor/github.com/davecgh/go-spew/spew/common_test.go
type stringer (line 28) | type stringer
method String (line 32) | func (s stringer) String() string {
type pstringer (line 37) | type pstringer
method String (line 41) | func (s *pstringer) String() string {
type xref1 (line 47) | type xref1 struct
type xref2 (line 50) | type xref2 struct
type indirCir1 (line 56) | type indirCir1 struct
type indirCir2 (line 59) | type indirCir2 struct
type indirCir3 (line 62) | type indirCir3 struct
type embed (line 67) | type embed struct
type embedwrap (line 72) | type embedwrap struct
type panicer (line 79) | type panicer
method String (line 81) | func (p panicer) String() string {
type customError (line 86) | type customError
method Error (line 88) | func (e customError) Error() string {
function stringizeWants (line 94) | func stringizeWants(wants []string) string {
function testFailed (line 108) | func testFailed(result string, wants []string) bool {
type sortableStruct (line 117) | type sortableStruct struct
method String (line 121) | func (ss sortableStruct) String() string {
type unsortableStruct (line 125) | type unsortableStruct struct
type sortTestCase (line 129) | type sortTestCase struct
function helpTestSortValues (line 134) | func helpTestSortValues(tests []sortTestCase, cs *spew.ConfigState, t *t...
function TestSortValues (line 159) | func TestSortValues(t *testing.T) {
function TestSortValuesWithMethods (line 233) | func TestSortValuesWithMethods(t *testing.T) {
function TestSortValuesWithSpew (line 268) | func TestSortValuesWithSpew(t *testing.T) {
FILE: vendor/github.com/davecgh/go-spew/spew/config.go
type ConfigState (line 37) | type ConfigState struct
method Errorf (line 115) | func (c *ConfigState) Errorf(format string, a ...interface{}) (err err...
method Fprint (line 127) | func (c *ConfigState) Fprint(w io.Writer, a ...interface{}) (n int, er...
method Fprintf (line 139) | func (c *ConfigState) Fprintf(w io.Writer, format string, a ...interfa...
method Fprintln (line 150) | func (c *ConfigState) Fprintln(w io.Writer, a ...interface{}) (n int, ...
method Print (line 162) | func (c *ConfigState) Print(a ...interface{}) (n int, err error) {
method Printf (line 174) | func (c *ConfigState) Printf(format string, a ...interface{}) (n int, ...
method Println (line 186) | func (c *ConfigState) Println(a ...interface{}) (n int, err error) {
method Sprint (line 197) | func (c *ConfigState) Sprint(a ...interface{}) string {
method Sprintf (line 208) | func (c *ConfigState) Sprintf(format string, a ...interface{}) string {
method Sprintln (line 219) | func (c *ConfigState) Sprintln(a ...interface{}) string {
method NewFormatter (line 240) | func (c *ConfigState) NewFormatter(v interface{}) fmt.Formatter {
method Fdump (line 246) | func (c *ConfigState) Fdump(w io.Writer, a ...interface{}) {
method Dump (line 273) | func (c *ConfigState) Dump(a ...interface{}) {
method Sdump (line 279) | func (c *ConfigState) Sdump(a ...interface{}) string {
method convertArgs (line 288) | func (c *ConfigState) convertArgs(args []interface{}) (formatters []in...
function NewDefaultConfig (line 304) | func NewDefaultConfig() *ConfigState {
FILE: vendor/github.com/davecgh/go-spew/spew/dump.go
type dumpState (line 51) | type dumpState struct
method indent (line 62) | func (d *dumpState) indent() {
method unpackValue (line 73) | func (d *dumpState) unpackValue(v reflect.Value) reflect.Value {
method dumpPtr (line 81) | func (d *dumpState) dumpPtr(v reflect.Value) {
method dumpSlice (line 161) | func (d *dumpState) dumpSlice(v reflect.Value) {
method dump (line 251) | func (d *dumpState) dump(v reflect.Value) {
function fdump (line 453) | func fdump(cs *ConfigState, w io.Writer, a ...interface{}) {
function Fdump (line 472) | func Fdump(w io.Writer, a ...interface{}) {
function Sdump (line 478) | func Sdump(a ...interface{}) string {
function Dump (line 507) | func Dump(a ...interface{}) {
FILE: vendor/github.com/davecgh/go-spew/spew/dump_test.go
type dumpTest (line 74) | type dumpTest struct
function addDumpTest (line 84) | func addDumpTest(in interface{}, wants ...string) {
function addIntDumpTests (line 89) | func addIntDumpTests() {
function addUintDumpTests (line 156) | func addUintDumpTests() {
function addBoolDumpTests (line 223) | func addBoolDumpTests() {
function addFloatDumpTests (line 249) | func addFloatDumpTests() {
function addComplexDumpTests (line 277) | func addComplexDumpTests() {
function addArrayDumpTests (line 305) | func addArrayDumpTests() {
function addSliceDumpTests (line 403) | func addSliceDumpTests() {
function addStringDumpTests (line 508) | func addStringDumpTests() {
function addInterfaceDumpTests (line 524) | func addInterfaceDumpTests() {
function addMapDumpTests (line 550) | func addMapDumpTests() {
function addStructDumpTests (line 651) | func addStructDumpTests() {
function addUintptrDumpTests (line 742) | func addUintptrDumpTests() {
function addUnsafePointerDumpTests (line 769) | func addUnsafePointerDumpTests() {
function addChanDumpTests (line 797) | func addChanDumpTests() {
function addFuncDumpTests (line 823) | func addFuncDumpTests() {
function addCircularDumpTests (line 866) | func addCircularDumpTests() {
function addPanicDumpTests (line 929) | func addPanicDumpTests() {
function addErrorDumpTests (line 944) | func addErrorDumpTests() {
function TestDump (line 960) | func TestDump(t *testing.T) {
function TestDumpSortedKeys (line 994) | func TestDumpSortedKeys(t *testing.T) {
FILE: vendor/github.com/davecgh/go-spew/spew/dumpcgo_test.go
function addCgoDumpTests (line 32) | func addCgoDumpTests() {
FILE: vendor/github.com/davecgh/go-spew/spew/dumpnocgo_test.go
function addCgoDumpTests (line 23) | func addCgoDumpTests() {
FILE: vendor/github.com/davecgh/go-spew/spew/example_test.go
type Flag (line 25) | type Flag
method String (line 37) | func (f Flag) String() string {
constant flagOne (line 28) | flagOne Flag = iota
constant flagTwo (line 29) | flagTwo
type Bar (line 44) | type Bar struct
type Foo (line 48) | type Foo struct
function ExampleDump (line 54) | func ExampleDump() {
function ExamplePrintf (line 121) | func ExamplePrintf() {
function ExampleConfigState (line 145) | func ExampleConfigState() {
function ExampleConfigState_Dump (line 164) | func ExampleConfigState_Dump() {
function ExampleConfigState_Printf (line 202) | func ExampleConfigState_Printf() {
FILE: vendor/github.com/davecgh/go-spew/spew/format.go
constant supportedFlags (line 28) | supportedFlags = "0-+# "
type formatState (line 34) | type formatState struct
method buildDefaultFormat (line 47) | func (f *formatState) buildDefaultFormat() (format string) {
method constructOrigFormat (line 65) | func (f *formatState) constructOrigFormat(verb rune) (format string) {
method unpackValue (line 94) | func (f *formatState) unpackValue(v reflect.Value) reflect.Value {
method formatPtr (line 105) | func (f *formatState) formatPtr(v reflect.Value) {
method format (line 201) | func (f *formatState) format(v reflect.Value) {
method Format (line 371) | func (f *formatState) Format(fs fmt.State, verb rune) {
function newFormatter (line 394) | func newFormatter(cs *ConfigState, v interface{}) fmt.Formatter {
function NewFormatter (line 417) | func NewFormatter(v interface{}) fmt.Formatter {
FILE: vendor/github.com/davecgh/go-spew/spew/format_test.go
type formatterTest (line 79) | type formatterTest struct
function addFormatterTest (line 90) | func addFormatterTest(format string, in interface{}, wants ...string) {
function addIntFormatterTests (line 95) | func addIntFormatterTests() {
function addUintFormatterTests (line 222) | func addUintFormatterTests() {
function addBoolFormatterTests (line 349) | func addBoolFormatterTests() {
function addFloatFormatterTests (line 396) | func addFloatFormatterTests() {
function addComplexFormatterTests (line 448) | func addComplexFormatterTests() {
function addArrayFormatterTests (line 500) | func addArrayFormatterTests() {
function addSliceFormatterTests (line 585) | func addSliceFormatterTests() {
function addStringFormatterTests (line 693) | func addStringFormatterTests() {
function addInterfaceFormatterTests (line 720) | func addInterfaceFormatterTests() {
function addMapFormatterTests (line 767) | func addMapFormatterTests() {
function addStructFormatterTests (line 886) | func addStructFormatterTests() {
function addUintptrFormatterTests (line 1036) | func addUintptrFormatterTests() {
function addUnsafePointerFormatterTests (line 1084) | func addUnsafePointerFormatterTests() {
function addChanFormatterTests (line 1132) | func addChanFormatterTests() {
function addFuncFormatterTests (line 1179) | func addFuncFormatterTests() {
function addCircularFormatterTests (line 1258) | func addCircularFormatterTests() {
function addPanicFormatterTests (line 1370) | func addPanicFormatterTests() {
function addErrorFormatterTests (line 1397) | func addErrorFormatterTests() {
function addPassthroughFormatterTests (line 1424) | func addPassthroughFormatterTests() {
function TestFormatter (line 1465) | func TestFormatter(t *testing.T) {
type testStruct (line 1500) | type testStruct struct
method String (line 1504) | func (ts testStruct) String() string {
type testStructP (line 1508) | type testStructP struct
method String (line 1512) | func (ts *testStructP) String() string {
function TestPrintSortedKeys (line 1516) | func TestPrintSortedKeys(t *testing.T) {
FILE: vendor/github.com/davecgh/go-spew/spew/internal_test.go
type dummyFmtState (line 34) | type dummyFmtState struct
method Flag (line 38) | func (dfs *dummyFmtState) Flag(f int) bool {
method Precision (line 45) | func (dfs *dummyFmtState) Precision() (int, bool) {
method Width (line 49) | func (dfs *dummyFmtState) Width() (int, bool) {
function TestInvalidReflectValue (line 57) | func TestInvalidReflectValue(t *testing.T) {
function SortValues (line 85) | func SortValues(values []reflect.Value, cs *ConfigState) {
FILE: vendor/github.com/davecgh/go-spew/spew/internalunsafe_test.go
function changeKind (line 40) | func changeKind(v *reflect.Value, readOnly bool) {
function TestAddedReflectValue (line 53) | func TestAddedReflectValue(t *testing.T) {
FILE: vendor/github.com/davecgh/go-spew/spew/spew.go
function Errorf (line 32) | func Errorf(format string, a ...interface{}) (err error) {
function Fprint (line 44) | func Fprint(w io.Writer, a ...interface{}) (n int, err error) {
function Fprintf (line 56) | func Fprintf(w io.Writer, format string, a ...interface{}) (n int, err e...
function Fprintln (line 67) | func Fprintln(w io.Writer, a ...interface{}) (n int, err error) {
function Print (line 79) | func Print(a ...interface{}) (n int, err error) {
function Printf (line 91) | func Printf(format string, a ...interface{}) (n int, err error) {
function Println (line 103) | func Println(a ...interface{}) (n int, err error) {
function Sprint (line 114) | func Sprint(a ...interface{}) string {
function Sprintf (line 125) | func Sprintf(format string, a ...interface{}) string {
function Sprintln (line 136) | func Sprintln(a ...interface{}) string {
function convertArgs (line 142) | func convertArgs(args []interface{}) (formatters []interface{}) {
FILE: vendor/github.com/davecgh/go-spew/spew/spew_test.go
type spewFunc (line 31) | type spewFunc
method String (line 82) | func (f spewFunc) String() string {
constant fCSFdump (line 34) | fCSFdump spewFunc = iota
constant fCSFprint (line 35) | fCSFprint
constant fCSFprintf (line 36) | fCSFprintf
constant fCSFprintln (line 37) | fCSFprintln
constant fCSPrint (line 38) | fCSPrint
constant fCSPrintln (line 39) | fCSPrintln
constant fCSSdump (line 40) | fCSSdump
constant fCSSprint (line 41) | fCSSprint
constant fCSSprintf (line 42) | fCSSprintf
constant fCSSprintln (line 43) | fCSSprintln
constant fCSErrorf (line 44) | fCSErrorf
constant fCSNewFormatter (line 45) | fCSNewFormatter
constant fErrorf (line 46) | fErrorf
constant fFprint (line 47) | fFprint
constant fFprintln (line 48) | fFprintln
constant fPrint (line 49) | fPrint
constant fPrintln (line 50) | fPrintln
constant fSdump (line 51) | fSdump
constant fSprint (line 52) | fSprint
constant fSprintf (line 53) | fSprintf
constant fSprintln (line 54) | fSprintln
type spewTest (line 91) | type spewTest struct
function redirStdout (line 109) | func redirStdout(f func()) ([]byte, error) {
function initSpewTests (line 126) | func initSpewTests() {
function TestSpew (line 210) | func TestSpew(t *testing.T) {
FILE: vendor/github.com/davecgh/go-spew/spew/testdata/dumpcgo.go
function GetCgoNullCharPointer (line 44) | func GetCgoNullCharPointer() interface{} {
function GetCgoCharPointer (line 50) | func GetCgoCharPointer() interface{} {
function GetCgoCharArray (line 56) | func GetCgoCharArray() (interface{}, int, int) {
function GetCgoUnsignedCharArray (line 62) | func GetCgoUnsignedCharArray() (interface{}, int, int) {
function GetCgoSignedCharArray (line 68) | func GetCgoSignedCharArray() (interface{}, int, int) {
function GetCgoUint8tArray (line 74) | func GetCgoUint8tArray() (interface{}, int, int) {
function GetCgoTypdefedUnsignedCharArray (line 80) | func GetCgoTypdefedUnsignedCharArray() (interface{}, int, int) {
FILE: vendor/github.com/influxdata/influxdb/build.py
function print_banner (line 106) | def print_banner():
function create_package_fs (line 115) | def create_package_fs(build_root):
function package_scripts (line 132) | def package_scripts(build_root, config_only=False, windows=False):
function package_man_files (line 151) | def package_man_files(build_root):
function go_get (line 159) | def go_get(branch, update=False, no_uncommitted=False):
function run_tests (line 174) | def run_tests(race, parallel, timeout, no_vet, junit=False):
function run (line 239) | def run(command, allow_failure=False, shell=False):
function create_temp_dir (line 268) | def create_temp_dir(prefix = None):
function increment_minor_version (line 276) | def increment_minor_version(version):
function get_current_version_tag (line 290) | def get_current_version_tag():
function get_current_version (line 296) | def get_current_version():
function get_current_commit (line 310) | def get_current_commit(short=False):
function get_current_branch (line 321) | def get_current_branch():
function local_changes (line 328) | def local_changes():
function get_system_arch (line 336) | def get_system_arch():
function get_system_platform (line 351) | def get_system_platform():
function get_go_version (line 359) | def get_go_version():
function check_path_for (line 368) | def check_path_for(b):
function check_environ (line 380) | def check_environ(build_dir = None):
function check_prereqs (line 392) | def check_prereqs():
function upload_packages (line 402) | def upload_packages(packages, bucket_name=None, overwrite=False):
function go_list (line 445) | def go_list(vendor=False, relative=False):
function build (line 471) | def build(version=None,
function generate_md5_from_file (line 569) | def generate_md5_from_file(path):
function generate_sig_from_file (line 578) | def generate_sig_from_file(path):
function package (line 592) | def package(build_output, pkg_name, version, nightly=False, iteration=1,...
function main (line 745) | def main(args):
FILE: vendor/github.com/influxdata/influxdb/client/example_test.go
function ExampleNewClient (line 15) | func ExampleNewClient() {
function ExampleClient_Ping (line 35) | func ExampleClient_Ping() {
function ExampleClient_Query (line 52) | func ExampleClient_Query() {
function ExampleClient_Write (line 71) | func ExampleClient_Write() {
FILE: vendor/github.com/influxdata/influxdb/client/influxdb.go
constant DefaultHost (line 26) | DefaultHost = "localhost"
constant DefaultPort (line 29) | DefaultPort = 8086
constant DefaultTimeout (line 32) | DefaultTimeout = 0
type Query (line 36) | type Query struct
function ParseConnectionString (line 54) | func ParseConnectionString(path string, ssl bool) (url.URL, error) {
type Config (line 92) | type Config struct
function NewConfig (line 105) | func NewConfig() Config {
type Client (line 112) | type Client struct
method SetAuth (line 171) | func (c *Client) SetAuth(u, p string) {
method SetPrecision (line 177) | func (c *Client) SetPrecision(precision string) {
method Query (line 182) | func (c *Client) Query(q Query) (*Response, error) {
method Write (line 257) | func (c *Client) Write(bp BatchPoints) (*Response, error) {
method WriteLineProtocol (line 335) | func (c *Client) WriteLineProtocol(data, database, retentionPolicy, pr...
method Ping (line 380) | func (c *Client) Ping() (time.Duration, string, error) {
method Addr (line 769) | func (c *Client) Addr() string {
constant ConsistencyOne (line 124) | ConsistencyOne = "one"
constant ConsistencyAll (line 127) | ConsistencyAll = "all"
constant ConsistencyQuorum (line 130) | ConsistencyQuorum = "quorum"
constant ConsistencyAny (line 133) | ConsistencyAny = "any"
function NewClient (line 137) | func NewClient(c Config) (*Client, error) {
type Message (line 407) | type Message struct
type Result (line 413) | type Result struct
method MarshalJSON (line 420) | func (r *Result) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 439) | func (r *Result) UnmarshalJSON(b []byte) error {
type Response (line 461) | type Response struct
method MarshalJSON (line 467) | func (r *Response) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 484) | func (r *Response) UnmarshalJSON(b []byte) error {
method Error (line 505) | func (r *Response) Error() error {
type duplexReader (line 519) | type duplexReader struct
method Read (line 524) | func (r *duplexReader) Read(p []byte) (n int, err error) {
type ChunkedResponse (line 534) | type ChunkedResponse struct
method NextResponse (line 550) | func (r *ChunkedResponse) NextResponse() (*Response, error) {
function NewChunkedResponse (line 541) | func NewChunkedResponse(r io.Reader) *ChunkedResponse {
type Point (line 570) | type Point struct
method MarshalJSON (line 582) | func (p *Point) MarshalJSON() ([]byte, error) {
method MarshalString (line 604) | func (p *Point) MarshalString() string {
method UnmarshalJSON (line 616) | func (p *Point) UnmarshalJSON(b []byte) error {
function normalizeFields (line 674) | func normalizeFields(fields map[string]interface{}) map[string]interface...
type BatchPoints (line 699) | type BatchPoints struct
method UnmarshalJSON (line 710) | func (bp *BatchPoints) UnmarshalJSON(b []byte) error {
function checkPointTypes (line 777) | func checkPointTypes(p Point) error {
function EpochToTime (line 792) | func EpochToTime(epoch int64, precision string) (time.Time, error) {
function SetPrecision (line 817) | func SetPrecision(t time.Time, precision string) time.Time {
FILE: vendor/github.com/influxdata/influxdb/client/influxdb_test.go
function BenchmarkWrite (line 20) | func BenchmarkWrite(b *testing.B) {
function BenchmarkUnmarshalJSON2Tags (line 50) | func BenchmarkUnmarshalJSON2Tags(b *testing.B) {
function BenchmarkUnmarshalJSON10Tags (line 81) | func BenchmarkUnmarshalJSON10Tags(b *testing.B) {
function TestNewClient (line 120) | func TestNewClient(t *testing.T) {
function TestClient_Ping (line 128) | func TestClient_Ping(t *testing.T) {
function TestClient_Query (line 150) | func TestClient_Query(t *testing.T) {
function TestClient_ChunkedQuery (line 172) | func TestClient_ChunkedQuery(t *testing.T) {
function TestClient_BasicAuth (line 196) | func TestClient_BasicAuth(t *testing.T) {
function TestClient_Write (line 227) | func TestClient_Write(t *testing.T) {
function TestClient_UserAgent (line 252) | func TestClient_UserAgent(t *testing.T) {
function TestClient_Messages (line 324) | func TestClient_Messages(t *testing.T) {
function TestPoint_UnmarshalEpoch (line 362) | func TestPoint_UnmarshalEpoch(t *testing.T) {
function TestPoint_UnmarshalRFC (line 435) | func TestPoint_UnmarshalRFC(t *testing.T) {
function TestPoint_MarshalOmitempty (line 473) | func TestPoint_MarshalOmitempty(t *testing.T) {
function TestEpochToTime (line 519) | func TestEpochToTime(t *testing.T) {
function emptyTestServer (line 550) | func emptyTestServer() *httptest.Server {
function TestBatchPoints_Normal (line 559) | func TestBatchPoints_Normal(t *testing.T) {
function TestClient_Timeout (line 597) | func TestClient_Timeout(t *testing.T) {
function TestClient_NoTimeout (line 620) | func TestClient_NoTimeout(t *testing.T) {
function TestClient_WriteUint64 (line 646) | func TestClient_WriteUint64(t *testing.T) {
function TestClient_ParseConnectionString_IPv6 (line 676) | func TestClient_ParseConnectionString_IPv6(t *testing.T) {
function TestClient_CustomCertificates (line 687) | func TestClient_CustomCertificates(t *testing.T) {
function TestChunkedResponse (line 808) | func TestChunkedResponse(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/client/v2/client.go
type HTTPConfig (line 22) | type HTTPConfig struct
type BatchPointsConfig (line 49) | type BatchPointsConfig struct
type Client (line 64) | type Client interface
function NewHTTPClient (line 82) | func NewHTTPClient(conf HTTPConfig) (Client, error) {
type client (line 169) | type client struct
method Ping (line 119) | func (c *client) Ping(timeout time.Duration) (time.Duration, string, e...
method Close (line 162) | func (c *client) Close() error {
method Write (line 355) | func (c *client) Write(bp BatchPoints) error {
method Query (line 473) | func (c *client) Query(q Query) (*Response, error) {
type BatchPoints (line 183) | type BatchPoints interface
function NewBatchPoints (line 213) | func NewBatchPoints(conf BatchPointsConfig) (BatchPoints, error) {
type batchpoints (line 229) | type batchpoints struct
method AddPoint (line 237) | func (bp *batchpoints) AddPoint(p *Point) {
method AddPoints (line 241) | func (bp *batchpoints) AddPoints(ps []*Point) {
method Points (line 245) | func (bp *batchpoints) Points() []*Point {
method Precision (line 249) | func (bp *batchpoints) Precision() string {
method Database (line 253) | func (bp *batchpoints) Database() string {
method WriteConsistency (line 257) | func (bp *batchpoints) WriteConsistency() string {
method RetentionPolicy (line 261) | func (bp *batchpoints) RetentionPolicy() string {
method SetPrecision (line 265) | func (bp *batchpoints) SetPrecision(p string) error {
method SetDatabase (line 273) | func (bp *batchpoints) SetDatabase(db string) {
method SetWriteConsistency (line 277) | func (bp *batchpoints) SetWriteConsistency(wc string) {
method SetRetentionPolicy (line 281) | func (bp *batchpoints) SetRetentionPolicy(rp string) {
type Point (line 286) | type Point struct
method String (line 315) | func (p *Point) String() string {
method PrecisionString (line 321) | func (p *Point) PrecisionString(precison string) string {
method Name (line 326) | func (p *Point) Name() string {
method Tags (line 331) | func (p *Point) Tags() map[string]string {
method Time (line 336) | func (p *Point) Time() time.Time {
method UnixNano (line 341) | func (p *Point) UnixNano() int64 {
method Fields (line 346) | func (p *Point) Fields() (map[string]interface{}, error) {
function NewPoint (line 294) | func NewPoint(
function NewPointFrom (line 351) | func NewPointFrom(pt models.Point) *Point {
type Query (line 407) | type Query struct
function NewQuery (line 418) | func NewQuery(command, database, precision string) Query {
function NewQueryWithParameters (line 430) | func NewQueryWithParameters(command, database, precision string, paramet...
type Response (line 440) | type Response struct
method Error (line 447) | func (r *Response) Error() error {
type Message (line 460) | type Message struct
type Result (line 466) | type Result struct
type duplexReader (line 562) | type duplexReader struct
method Read (line 567) | func (r *duplexReader) Read(p []byte) (n int, err error) {
type ChunkedResponse (line 577) | type ChunkedResponse struct
method NextResponse (line 593) | func (r *ChunkedResponse) NextResponse() (*Response, error) {
function NewChunkedResponse (line 584) | func NewChunkedResponse(r io.Reader) *ChunkedResponse {
FILE: vendor/github.com/influxdata/influxdb/client/v2/client_test.go
function TestUDPClient_Query (line 15) | func TestUDPClient_Query(t *testing.T) {
function TestUDPClient_Ping (line 29) | func TestUDPClient_Ping(t *testing.T) {
function TestUDPClient_Write (line 43) | func TestUDPClient_Write(t *testing.T) {
function TestUDPClient_BadAddr (line 67) | func TestUDPClient_BadAddr(t *testing.T) {
function TestUDPClient_Batches (line 76) | func TestUDPClient_Batches(t *testing.T) {
function TestUDPClient_Split (line 103) | func TestUDPClient_Split(t *testing.T) {
type writeLogger (line 127) | type writeLogger struct
method Write (line 131) | func (w *writeLogger) Write(b []byte) (int, error) {
method Close (line 136) | func (w *writeLogger) Close() error { return nil }
function TestClient_Query (line 138) | func TestClient_Query(t *testing.T) {
function TestClient_ChunkedQuery (line 157) | func TestClient_ChunkedQuery(t *testing.T) {
function TestClient_BoundParameters (line 180) | func TestClient_BoundParameters(t *testing.T) {
function TestClient_BasicAuth (line 221) | func TestClient_BasicAuth(t *testing.T) {
function TestClient_Ping (line 251) | func TestClient_Ping(t *testing.T) {
function TestClient_Concurrent_Use (line 269) | func TestClient_Concurrent_Use(t *testing.T) {
function TestClient_Write (line 331) | func TestClient_Write(t *testing.T) {
function TestClient_UserAgent (line 353) | func TestClient_UserAgent(t *testing.T) {
function TestClient_PointString (line 423) | func TestClient_PointString(t *testing.T) {
function TestClient_PointWithoutTimeString (line 442) | func TestClient_PointWithoutTimeString(t *testing.T) {
function TestClient_PointName (line 458) | func TestClient_PointName(t *testing.T) {
function TestClient_PointTags (line 470) | func TestClient_PointTags(t *testing.T) {
function TestClient_PointUnixNano (line 481) | func TestClient_PointUnixNano(t *testing.T) {
function TestClient_PointFields (line 495) | func TestClient_PointFields(t *testing.T) {
function TestBatchPoints_PrecisionError (line 510) | func TestBatchPoints_PrecisionError(t *testing.T) {
function TestBatchPoints_SettersGetters (line 523) | func TestBatchPoints_SettersGetters(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/client/v2/example_test.go
function ExampleClient (line 13) | func ExampleClient() {
function ExampleClient_uDP (line 27) | func ExampleClient_uDP() {
function ExampleClient_Ping (line 59) | func ExampleClient_Ping() {
function ExampleClient_write (line 76) | func ExampleClient_write() {
function ExampleBatchPoints (line 110) | func ExampleBatchPoints() {
function ExampleBatchPoints_setters (line 132) | func ExampleBatchPoints_setters() {
function ExamplePoint (line 153) | func ExamplePoint() {
function ExamplePoint_withoutTime (line 167) | func ExamplePoint_withoutTime() {
function ExampleClient_write1000 (line 181) | func ExampleClient_write1000() {
function ExampleClient_query (line 234) | func ExampleClient_query() {
function ExampleClient_createDatabase (line 251) | func ExampleClient_createDatabase() {
FILE: vendor/github.com/influxdata/influxdb/client/v2/udp.go
constant UDPPayloadSize (line 13) | UDPPayloadSize = 512
type UDPConfig (line 17) | type UDPConfig struct
function NewUDPClient (line 29) | func NewUDPClient(conf UDPConfig) (Client, error) {
type udpclient (line 57) | type udpclient struct
method Close (line 53) | func (uc *udpclient) Close() error {
method Write (line 62) | func (uc *udpclient) Write(bp BatchPoints) error {
method Query (line 106) | func (uc *udpclient) Query(q Query) (*Response, error) {
method Ping (line 110) | func (uc *udpclient) Ping(timeout time.Duration) (time.Duration, strin...
FILE: vendor/github.com/influxdata/influxdb/cmd/influx/cli/cli.go
type CommandLine (line 36) | type CommandLine struct
method Run (line 74) | func (c *CommandLine) Run() error {
method mainLoop (line 208) | func (c *CommandLine) mainLoop() error {
method ParseCommand (line 237) | func (c *CommandLine) ParseCommand(cmd string) error {
method Connect (line 295) | func (c *CommandLine) Connect(cmd string) error {
method SetAuth (line 337) | func (c *CommandLine) SetAuth(cmd string) {
method clear (line 369) | func (c *CommandLine) clear(cmd string) {
method use (line 397) | func (c *CommandLine) use(cmd string) {
method databaseExists (line 427) | func (c *CommandLine) databaseExists(db string) bool {
method retentionPolicyExists (line 468) | func (c *CommandLine) retentionPolicyExists(db, rp string) bool {
method SetChunkSize (line 508) | func (c *CommandLine) SetChunkSize(cmd string) {
method SetPrecision (line 532) | func (c *CommandLine) SetPrecision(cmd string) {
method SetFormat (line 552) | func (c *CommandLine) SetFormat(cmd string) {
method SetWriteConsistency (line 567) | func (c *CommandLine) SetWriteConsistency(cmd string) {
method parseInto (line 636) | func (c *CommandLine) parseInto(stmt string) *client.BatchPoints {
method parseInsert (line 659) | func (c *CommandLine) parseInsert(stmt string) (*client.BatchPoints, e...
method Insert (line 680) | func (c *CommandLine) Insert(stmt string) error {
method query (line 698) | func (c *CommandLine) query(query string) client.Query {
method ExecuteQuery (line 708) | func (c *CommandLine) ExecuteQuery(query string) error {
method FormatResponse (line 750) | func (c *CommandLine) FormatResponse(response *client.Response, w io.W...
method writeJSON (line 763) | func (c *CommandLine) writeJSON(response *client.Response, w io.Writer) {
method writeCSV (line 793) | func (c *CommandLine) writeCSV(response *client.Response, w io.Writer) {
method writeColumns (line 815) | func (c *CommandLine) writeColumns(response *client.Response, w io.Wri...
method formatResults (line 853) | func (c *CommandLine) formatResults(result client.Result, separator st...
method Settings (line 945) | func (c *CommandLine) Settings() {
method help (line 967) | func (c *CommandLine) help() {
method history (line 994) | func (c *CommandLine) history() {
method saveHistory (line 1000) | func (c *CommandLine) saveHistory() {
method gopher (line 1009) | func (c *CommandLine) gopher() {
method Version (line 1067) | func (c *CommandLine) Version() {
method exit (line 1071) | func (c *CommandLine) exit() {
function New (line 64) | func New(version string) *CommandLine {
function isWhitespace (line 582) | func isWhitespace(ch rune) bool { return ch == ' ' || ch == '\t' || ch =...
function isLetter (line 585) | func isLetter(ch rune) bool { return (ch >= 'a' && ch <= 'z') || (ch >= ...
function isDigit (line 588) | func isDigit(ch rune) bool { return (ch >= '0' && ch <= '9') }
function isIdentFirstChar (line 591) | func isIdentFirstChar(ch rune) bool { return isLetter(ch) || ch == '_' }
function isNotIdentChar (line 594) | func isNotIdentChar(ch rune) bool { return !(isLetter(ch) || isDigit(ch)...
function parseUnquotedIdentifier (line 596) | func parseUnquotedIdentifier(stmt string) (string, string) {
function parseDoubleQuotedIdentifier (line 603) | func parseDoubleQuotedIdentifier(stmt string) (string, string) {
function parseNextIdentifier (line 622) | func parseNextIdentifier(stmt string) (ident, remainder string) {
function tagsEqual (line 778) | func tagsEqual(prev, current map[string]string) bool {
function columnsEqual (line 782) | func columnsEqual(prev, current []string) bool {
function headersEqual (line 786) | func headersEqual(prev, current models.Row) bool {
function interfaceToString (line 929) | func interfaceToString(v interface{}) string {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx/cli/cli_internal_test.go
function TestParseCommand_InsertInto (line 5) | func TestParseCommand_InsertInto(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx/cli/cli_test.go
constant CLIENT_VERSION (line 23) | CLIENT_VERSION = "y.y"
constant SERVER_VERSION (line 24) | SERVER_VERSION = "x.x"
function TestNewCLI (line 27) | func TestNewCLI(t *testing.T) {
function TestRunCLI (line 40) | func TestRunCLI(t *testing.T) {
function TestRunCLI_ExecuteInsert (line 60) | func TestRunCLI_ExecuteInsert(t *testing.T) {
function TestSetAuth (line 79) | func TestSetAuth(t *testing.T) {
function TestSetPrecision (line 98) | func TestSetPrecision(t *testing.T) {
function TestSetFormat (line 120) | func TestSetFormat(t *testing.T) {
function Test_SetChunked (line 135) | func Test_SetChunked(t *testing.T) {
function Test_SetChunkSize (line 166) | func Test_SetChunkSize(t *testing.T) {
function TestSetWriteConsistency (line 206) | func TestSetWriteConsistency(t *testing.T) {
function TestParseCommand_CommandsExist (line 235) | func TestParseCommand_CommandsExist(t *testing.T) {
function TestParseCommand_Connect (line 260) | func TestParseCommand_Connect(t *testing.T) {
function TestParseCommand_TogglePretty (line 280) | func TestParseCommand_TogglePretty(t *testing.T) {
function TestParseCommand_Exit (line 296) | func TestParseCommand_Exit(t *testing.T) {
function TestParseCommand_Quit (line 317) | func TestParseCommand_Quit(t *testing.T) {
function TestParseCommand_Use (line 338) | func TestParseCommand_Use(t *testing.T) {
function TestParseCommand_UseAuth (line 373) | func TestParseCommand_UseAuth(t *testing.T) {
function TestParseCommand_Consistency (line 427) | func TestParseCommand_Consistency(t *testing.T) {
function TestParseCommand_Insert (line 452) | func TestParseCommand_Insert(t *testing.T) {
function TestParseCommand_History (line 485) | func TestParseCommand_History(t *testing.T) {
function TestParseCommand_HistoryWithBlankCommand (line 516) | func TestParseCommand_HistoryWithBlankCommand(t *testing.T) {
function emptyTestServer (line 556) | func emptyTestServer() *httptest.Server {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx/cli/parser.go
function parseDatabaseAndRetentionPolicy (line 8) | func parseDatabaseAndRetentionPolicy(stmt []byte) (string, string, error) {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx/cli/parser_internal_test.go
function Test_parseDatabaseAndretentionPolicy (line 8) | func Test_parseDatabaseAndretentionPolicy(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx/main.go
constant defaultFormat (line 20) | defaultFormat = "column"
constant defaultPrecision (line 23) | defaultPrecision = "ns"
constant defaultPPS (line 27) | defaultPPS = 0
function init (line 30) | func init() {
function main (line 37) | func main() {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx_stress/influx_stress.go
function main (line 22) | func main() {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx_tsm/b1/reader.go
constant DefaultChunkSize (line 17) | DefaultChunkSize int = 1000
type Reader (line 27) | type Reader struct
method Open (line 64) | func (r *Reader) Open() error {
method Next (line 132) | func (r *Reader) Next() bool {
method Read (line 185) | func (r *Reader) Read() (string, []tsm1.Value, error) {
method Close (line 190) | func (r *Reader) Close() error {
function NewReader (line 46) | func NewReader(path string, stats *stats.Stats, chunkSize int) *Reader {
type cursor (line 196) | type cursor struct
method SeekTo (line 226) | func (c *cursor) SeekTo(seek int64) {
method Next (line 234) | func (c *cursor) Next() (key int64, value interface{}) {
function newCursor (line 208) | func newCursor(tx *bolt.Tx, series string, field string, dec *tsdb.Field...
type cursors (line 261) | type cursors
method Len (line 263) | func (a cursors) Len() int { return len(a) }
method Swap (line 264) | func (a cursors) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 265) | func (a cursors) Less(i, j int) bool {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx_tsm/bz1/reader.go
constant DefaultChunkSize (line 21) | DefaultChunkSize = 1000
type Reader (line 24) | type Reader struct
method Open (line 61) | func (r *Reader) Open() error {
method Next (line 143) | func (r *Reader) Next() bool {
method Read (line 196) | func (r *Reader) Read() (string, []tsm1.Value, error) {
method Close (line 201) | func (r *Reader) Close() error {
function NewReader (line 43) | func NewReader(path string, stats *stats.Stats, chunkSize int) *Reader {
type cursor (line 207) | type cursor struct
method SeekTo (line 240) | func (c *cursor) SeekTo(seek int64) {
method seekBuf (line 266) | func (c *cursor) seekBuf(seek []byte) (key, value []byte) {
method Next (line 286) | func (c *cursor) Next() (int64, interface{}) {
method setBuf (line 322) | func (c *cursor) setBuf(block []byte) {
method read (line 341) | func (c *cursor) read() (key int64, value interface{}) {
function newCursor (line 223) | func newCursor(tx *bolt.Tx, series string, field string, dec *tsdb.Field...
type cursors (line 356) | type cursors
method Len (line 358) | func (a cursors) Len() int { return len(a) }
method Swap (line 359) | func (a cursors) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 360) | func (a cursors) Less(i, j int) bool {
constant entryHeaderSize (line 368) | entryHeaderSize = 8 + 4
function entryDataSize (line 371) | func entryDataSize(v []byte) int { return int(binary.BigEndian.Uint32(v[...
FILE: vendor/github.com/influxdata/influxdb/cmd/influx_tsm/converter.go
constant maxBlocksPerKey (line 13) | maxBlocksPerKey = 65535
type KeyIterator (line 17) | type KeyIterator interface
type Converter (line 23) | type Converter struct
method Process (line 40) | func (c *Converter) Process(iter KeyIterator) error {
method nextTSMWriter (line 101) | func (c *Converter) nextTSMWriter() (tsm1.TSMWriter, error) {
function NewConverter (line 31) | func NewConverter(path string, sz uint32, stats *stats.Stats) *Converter {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx_tsm/main.go
type ShardReader (line 31) | type ShardReader interface
constant tsmExt (line 38) | tsmExt = "tsm"
type options (line 52) | type options struct
method Parse (line 65) | func (o *options) Parse() error {
constant maxTSMSz (line 143) | maxTSMSz uint64 = 2 * 1024 * 1024 * 1024
function init (line 145) | func init() {
function main (line 150) | func main() {
function collectShards (line 242) | func collectShards(dbs []os.FileInfo) tsdb.ShardInfos {
function backupDatabase (line 264) | func backupDatabase(db string) error {
function convertShard (line 333) | func convertShard(si *tsdb.ShardInfo, tr *tracker) error {
type ParallelGroup (line 375) | type ParallelGroup
method Do (line 384) | func (p ParallelGroup) Do(f func()) {
function NewParallelGroup (line 379) | func NewParallelGroup(n int) ParallelGroup {
function yesno (line 392) | func yesno(b bool) string {
function allDBs (line 400) | func allDBs(dbs []string) string {
function isEnvSet (line 408) | func isEnvSet(name string) bool {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx_tsm/stats/stats.go
type Stats (line 10) | type Stats struct
method AddPointsRead (line 23) | func (s *Stats) AddPointsRead(n int) {
method AddPointsWritten (line 28) | func (s *Stats) AddPointsWritten(n int) {
method AddTSMBytes (line 33) | func (s *Stats) AddTSMBytes(n uint32) {
method IncrTSMFileCount (line 38) | func (s *Stats) IncrTSMFileCount() {
method IncrNaN (line 43) | func (s *Stats) IncrNaN() {
method IncrInf (line 48) | func (s *Stats) IncrInf() {
method IncrFiltered (line 53) | func (s *Stats) IncrFiltered() {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx_tsm/tracker.go
type tracker (line 16) | type tracker struct
method Run (line 37) | func (t *tracker) Run() error {
method StatusUpdate (line 103) | func (t *tracker) StatusUpdate() {
method PrintStats (line 111) | func (t *tracker) PrintStats() {
function newTracker (line 27) | func newTracker(shards tsdb.ShardInfos, opts options) *tracker {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx_tsm/tsdb/codec.go
constant fieldFloat (line 11) | fieldFloat = 1
constant fieldInteger (line 12) | fieldInteger = 2
constant fieldBoolean (line 13) | fieldBoolean = 3
constant fieldString (line 14) | fieldString = 4
type FieldCodec (line 28) | type FieldCodec struct
method FieldIDByName (line 46) | func (f *FieldCodec) FieldIDByName(s string) (uint8, error) {
method DecodeByID (line 56) | func (f *FieldCodec) DecodeByID(targetID uint8, b []byte) (interface{}...
method DecodeByName (line 108) | func (f *FieldCodec) DecodeByName(name string, b []byte) (interface{},...
method FieldByName (line 117) | func (f *FieldCodec) FieldByName(name string) *Field {
function NewFieldCodec (line 35) | func NewFieldCodec(fields map[string]*Field) *FieldCodec {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx_tsm/tsdb/database.go
constant B1 (line 18) | B1 = iota
constant BZ1 (line 19) | BZ1
constant TSM1 (line 20) | TSM1
type EngineFormat (line 24) | type EngineFormat
method String (line 27) | func (e EngineFormat) String() string {
type ShardInfo (line 41) | type ShardInfo struct
method FormatAsString (line 50) | func (s *ShardInfo) FormatAsString() string {
method FullPath (line 55) | func (s *ShardInfo) FullPath(dataPath string) string {
type ShardInfos (line 60) | type ShardInfos
method Len (line 62) | func (s ShardInfos) Len() int { return len(s) }
method Swap (line 63) | func (s ShardInfos) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
method Less (line 64) | func (s ShardInfos) Less(i, j int) bool {
method Databases (line 77) | func (s ShardInfos) Databases() []string {
method FilterFormat (line 93) | func (s ShardInfos) FilterFormat(fmt EngineFormat) ShardInfos {
method Size (line 104) | func (s ShardInfos) Size() int64 {
method ExclusiveDatabases (line 115) | func (s ShardInfos) ExclusiveDatabases(exc []string) ShardInfos {
type Database (line 134) | type Database struct
method Name (line 144) | func (d *Database) Name() string {
method Path (line 149) | func (d *Database) Path() string {
method Shards (line 154) | func (d *Database) Shards() ([]*ShardInfo, error) {
function NewDatabase (line 139) | func NewDatabase(path string) *Database {
function shardFormat (line 202) | func shardFormat(path string) (EngineFormat, int64, error) {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx_tsm/tsdb/internal/meta.pb.go
type Series (line 28) | type Series struct
method Reset (line 34) | func (m *Series) Reset() { *m = Series{} }
method String (line 35) | func (m *Series) String() string { return proto.CompactTextString(m) }
method ProtoMessage (line 36) | func (*Series) ProtoMessage() {}
method GetKey (line 38) | func (m *Series) GetKey() string {
method GetTags (line 45) | func (m *Series) GetTags() []*Tag {
type Tag (line 52) | type Tag struct
method Reset (line 58) | func (m *Tag) Reset() { *m = Tag{} }
method String (line 59) | func (m *Tag) String() string { return proto.CompactTextString(m) }
method ProtoMessage (line 60) | func (*Tag) ProtoMessage() {}
method GetKey (line 62) | func (m *Tag) GetKey() string {
method GetValue (line 69) | func (m *Tag) GetValue() string {
type MeasurementFields (line 76) | type MeasurementFields struct
method Reset (line 81) | func (m *MeasurementFields) Reset() { *m = MeasurementFields{} }
method String (line 82) | func (m *MeasurementFields) String() string { return proto.CompactText...
method ProtoMessage (line 83) | func (*MeasurementFields) ProtoMessage() {}
method GetFields (line 85) | func (m *MeasurementFields) GetFields() []*Field {
type Field (line 92) | type Field struct
method Reset (line 99) | func (m *Field) Reset() { *m = Field{} }
method String (line 100) | func (m *Field) String() string { return proto.CompactTextString(m) }
method ProtoMessage (line 101) | func (*Field) ProtoMessage() {}
method GetID (line 103) | func (m *Field) GetID() int32 {
method GetName (line 110) | func (m *Field) GetName() string {
method GetType (line 117) | func (m *Field) GetType() int32 {
FILE: vendor/github.com/influxdata/influxdb/cmd/influx_tsm/tsdb/types.go
type Field (line 14) | type Field struct
type MeasurementFields (line 21) | type MeasurementFields struct
method UnmarshalBinary (line 27) | func (m *MeasurementFields) UnmarshalBinary(buf []byte) error {
type Series (line 40) | type Series struct
function MeasurementFromSeriesKey (line 46) | func MeasurementFromSeriesKey(key string) string {
function DecodeKeyValue (line 51) | func DecodeKeyValue(field string, dec *FieldCodec, k, v []byte) (int64, ...
FILE: vendor/github.com/influxdata/influxdb/cmd/influxd/backup/backup.go
constant Suffix (line 25) | Suffix = ".pending"
constant Metafile (line 28) | Metafile = "meta"
constant BackupFilePattern (line 32) | BackupFilePattern = "%s.%s.%05d"
type Command (line 36) | type Command struct
method Run (line 58) | func (cmd *Command) Run(args ...string) error {
method parseFlags (line 94) | func (cmd *Command) parseFlags(args []string) (retentionPolicy, shardI...
method backupShard (line 133) | func (cmd *Command) backupShard(retentionPolicy string, shardID string...
method backupDatabase (line 161) | func (cmd *Command) backupDatabase(since time.Time) error {
method backupRetentionPolicy (line 179) | func (cmd *Command) backupRetentionPolicy(retentionPolicy string, sinc...
method backupResponsePaths (line 197) | func (cmd *Command) backupResponsePaths(response *snapshotter.Response...
method backupMetastore (line 219) | func (cmd *Command) backupMetastore() error {
method nextPath (line 248) | func (cmd *Command) nextPath(path string) (string, error) {
method downloadAndVerify (line 262) | func (cmd *Command) downloadAndVerify(req *snapshotter.Request, path s...
method download (line 296) | func (cmd *Command) download(req *snapshotter.Request, path string) er...
method requestInfo (line 335) | func (cmd *Command) requestInfo(request *snapshotter.Request) (*snapsh...
method printUsage (line 358) | func (cmd *Command) printUsage() {
function NewCommand (line 50) | func NewCommand() *Command {
function retentionAndShardFromPath (line 380) | func retentionAndShardFromPath(path string) (retention, shard string, er...
FILE: vendor/github.com/influxdata/influxdb/cmd/influxd/help/help.go
type Command (line 12) | type Command struct
method Run (line 24) | func (cmd *Command) Run(args ...string) error {
function NewCommand (line 17) | func NewCommand() *Command {
constant usage (line 29) | usage = `
FILE: vendor/github.com/influxdata/influxdb/cmd/influxd/main.go
function init (line 29) | func init() {
function main (line 42) | func main() {
type Main (line 53) | type Main struct
method Run (line 75) | func (m *Main) Run(args ...string) error {
function NewMain (line 62) | func NewMain() *Main {
type VersionCommand (line 146) | type VersionCommand struct
method Run (line 160) | func (cmd *VersionCommand) Run(args ...string) error {
function NewVersionCommand (line 152) | func NewVersionCommand() *VersionCommand {
FILE: vendor/github.com/influxdata/influxdb/cmd/influxd/restore/restore.go
type Command (line 23) | type Command struct
method Run (line 48) | func (cmd *Command) Run(args ...string) error {
method parseFlags (line 70) | func (cmd *Command) parseFlags(args []string) error {
method unpackMeta (line 117) | func (cmd *Command) unpackMeta() error {
method unpackShard (line 217) | func (cmd *Command) unpackShard(shardID string) error {
method unpackDatabase (line 236) | func (cmd *Command) unpackDatabase() error {
method unpackRetention (line 250) | func (cmd *Command) unpackRetention() error {
method unpackFiles (line 263) | func (cmd *Command) unpackFiles(pat string) error {
method unpackTar (line 285) | func (cmd *Command) unpackTar(tarFile string) error {
method unpackFile (line 309) | func (cmd *Command) unpackFile(tr *tar.Reader, fileName string) error {
method printUsage (line 332) | func (cmd *Command) printUsage() {
function NewCommand (line 39) | func NewCommand() *Command {
FILE: vendor/github.com/influxdata/influxdb/cmd/influxd/run/command.go
constant logo (line 19) | logo = `
type Command (line 32) | type Command struct
method Run (line 62) | func (cmd *Command) Run(args ...string) error {
method Close (line 129) | func (cmd *Command) Close() error {
method monitorServerErrors (line 138) | func (cmd *Command) monitorServerErrors() {
method ParseFlags (line 151) | func (cmd *Command) ParseFlags(args ...string) (Options, error) {
method writePIDFile (line 168) | func (cmd *Command) writePIDFile(path string) error {
method ParseConfig (line 191) | func (cmd *Command) ParseConfig(path string) (*Config, error) {
function NewCommand (line 50) | func NewCommand() *Command {
constant usage (line 208) | usage = `Runs the InfluxDB server.
type Options (line 228) | type Options struct
method GetConfigPath (line 242) | func (opt *Options) GetConfigPath() string {
FILE: vendor/github.com/influxdata/influxdb/cmd/influxd/run/config.go
constant DefaultBindAddress (line 36) | DefaultBindAddress = "127.0.0.1:8088"
type Config (line 40) | type Config struct
method FromTomlFile (line 118) | func (c *Config) FromTomlFile(fpath string) error {
method FromToml (line 128) | func (c *Config) FromToml(input string) error {
method Validate (line 143) | func (c *Config) Validate() error {
method ApplyEnvOverrides (line 188) | func (c *Config) ApplyEnvOverrides() error {
method applyEnvOverrides (line 192) | func (c *Config) applyEnvOverrides(prefix string, spec reflect.Value, ...
method Diagnostics (line 309) | func (c *Config) Diagnostics() (*diagnostics.Diagnostics, error) {
method diagnosticsClients (line 316) | func (c *Config) diagnosticsClients() map[string]diagnostics.Client {
method registerDiagnostics (line 352) | func (c *Config) registerDiagnostics(m *monitor.Monitor) {
method deregisterDiagnostics (line 359) | func (c *Config) deregisterDiagnostics(m *monitor.Monitor) {
function NewConfig (line 65) | func NewConfig() *Config {
function NewDemoConfig (line 89) | func NewDemoConfig() (*Config, error) {
function trimBOM (line 113) | func trimBOM(f []byte) []byte {
FILE: vendor/github.com/influxdata/influxdb/cmd/influxd/run/config_command.go
type PrintConfigCommand (line 13) | type PrintConfigCommand struct
method Run (line 29) | func (cmd *PrintConfigCommand) Run(args ...string) error {
method parseConfig (line 63) | func (cmd *PrintConfigCommand) parseConfig(path string) (*Config, erro...
function NewPrintConfigCommand (line 20) | func NewPrintConfigCommand() *PrintConfigCommand {
FILE: vendor/github.com/influxdata/influxdb/cmd/influxd/run/config_test.go
function TestConfig_Parse (line 13) | func TestConfig_Parse(t *testing.T) {
function TestConfig_Parse_EnvOverride (line 97) | func TestConfig_Parse_EnvOverride(t *testing.T) {
function TestConfig_ValidateNoServiceConfigured (line 220) | func TestConfig_ValidateNoServiceConfigured(t *testing.T) {
function TestConfig_ValidateMonitorStore_MetaOnly (line 237) | func TestConfig_ValidateMonitorStore_MetaOnly(t *testing.T) {
function TestConfig_DeprecatedOptions (line 257) | func TestConfig_DeprecatedOptions(t *testing.T) {
function TestConfig_InvalidSubsections (line 275) | func TestConfig_InvalidSubsections(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/cmd/influxd/run/server.go
function init (line 42) | func init() {
type BuildInfo (line 47) | type BuildInfo struct
type Server (line 57) | type Server struct
method Statistics (line 212) | func (s *Server) Statistics(tags map[string]string) []models.Statistic {
method appendSnapshotterService (line 226) | func (s *Server) appendSnapshotterService() {
method SetLogOutput (line 236) | func (s *Server) SetLogOutput(w io.Writer) {
method appendMonitorService (line 240) | func (s *Server) appendMonitorService() {
method appendRetentionPolicyService (line 244) | func (s *Server) appendRetentionPolicyService(c retention.Config) {
method appendHTTPDService (line 254) | func (s *Server) appendHTTPDService(c httpd.Config) {
method appendCollectdService (line 270) | func (s *Server) appendCollectdService(c collectd.Config) {
method appendOpenTSDBService (line 280) | func (s *Server) appendOpenTSDBService(c opentsdb.Config) error {
method appendGraphiteService (line 294) | func (s *Server) appendGraphiteService(c graphite.Config) error {
method appendPrecreatorService (line 310) | func (s *Server) appendPrecreatorService(c precreator.Config) error {
method appendUDPService (line 324) | func (s *Server) appendUDPService(c udp.Config) {
method appendContinuousQueryService (line 334) | func (s *Server) appendContinuousQueryService(c continuous_querier.Con...
method Err (line 345) | func (s *Server) Err() <-chan error { return s.err }
method Open (line 348) | func (s *Server) Open() error {
method Close (line 440) | func (s *Server) Close() error {
method startServerReporting (line 482) | func (s *Server) startServerReporting() {
method reportServer (line 498) | func (s *Server) reportServer() {
function NewServer (line 102) | func NewServer(c *Config, buildInfo *BuildInfo) (*Server, error) {
type Service (line 550) | type Service interface
function startProfile (line 563) | func startProfile(cpuprofile, memprofile string) {
function stopProfile (line 587) | func stopProfile() {
type monitorPointsWriter (line 602) | type monitorPointsWriter
method WritePoints (line 604) | func (pw *monitorPointsWriter) WritePoints(database, retentionPolicy s...
function raftDBExists (line 608) | func raftDBExists(dir string) error {
FILE: vendor/github.com/influxdata/influxdb/cmd/parse.go
function ParseCommandName (line 7) | func ParseCommandName(args []string) (string, []string) {
FILE: vendor/github.com/influxdata/influxdb/coordinator/config.go
constant DefaultWriteTimeout (line 15) | DefaultWriteTimeout = 10 * time.Second
constant DefaultMaxConcurrentQueries (line 19) | DefaultMaxConcurrentQueries = 0
constant DefaultMaxSelectPointN (line 23) | DefaultMaxSelectPointN = 0
constant DefaultMaxSelectSeriesN (line 27) | DefaultMaxSelectSeriesN = 0
type Config (line 31) | type Config struct
method Diagnostics (line 53) | func (c Config) Diagnostics() (*diagnostics.Diagnostics, error) {
function NewConfig (line 42) | func NewConfig() Config {
FILE: vendor/github.com/influxdata/influxdb/coordinator/config_test.go
function TestConfig_Parse (line 11) | func TestConfig_Parse(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/coordinator/meta_client.go
type MetaClient (line 11) | type MetaClient interface
FILE: vendor/github.com/influxdata/influxdb/coordinator/meta_client_test.go
type MetaClient (line 11) | type MetaClient struct
method CreateContinuousQuery (line 42) | func (c *MetaClient) CreateContinuousQuery(database, name, query strin...
method CreateDatabase (line 46) | func (c *MetaClient) CreateDatabase(name string) (*meta.DatabaseInfo, ...
method CreateDatabaseWithRetentionPolicy (line 50) | func (c *MetaClient) CreateDatabaseWithRetentionPolicy(name string, sp...
method CreateRetentionPolicy (line 54) | func (c *MetaClient) CreateRetentionPolicy(database string, spec *meta...
method DropShard (line 58) | func (c *MetaClient) DropShard(id uint64) error {
method CreateSubscription (line 62) | func (c *MetaClient) CreateSubscription(database, rp, name, mode strin...
method CreateUser (line 66) | func (c *MetaClient) CreateUser(name, password string, admin bool) (me...
method Database (line 70) | func (c *MetaClient) Database(name string) *meta.DatabaseInfo {
method Databases (line 74) | func (c *MetaClient) Databases() []meta.DatabaseInfo {
method DataNode (line 78) | func (c *MetaClient) DataNode(id uint64) (*meta.NodeInfo, error) {
method DataNodes (line 82) | func (c *MetaClient) DataNodes() ([]meta.NodeInfo, error) {
method DeleteDataNode (line 86) | func (c *MetaClient) DeleteDataNode(id uint64) error {
method DeleteMetaNode (line 90) | func (c *MetaClient) DeleteMetaNode(id uint64) error {
method DropContinuousQuery (line 94) | func (c *MetaClient) DropContinuousQuery(database, name string) error {
method DropDatabase (line 98) | func (c *MetaClient) DropDatabase(name string) error {
method DropRetentionPolicy (line 102) | func (c *MetaClient) DropRetentionPolicy(database, name string) error {
method DropSubscription (line 106) | func (c *MetaClient) DropSubscription(database, rp, name string) error {
method DropUser (line 110) | func (c *MetaClient) DropUser(name string) error {
method MetaNodes (line 114) | func (c *MetaClient) MetaNodes() ([]meta.NodeInfo, error) {
method RetentionPolicy (line 118) | func (c *MetaClient) RetentionPolicy(database, name string) (rpi *meta...
method SetAdminPrivilege (line 122) | func (c *MetaClient) SetAdminPrivilege(username string, admin bool) er...
method SetPrivilege (line 126) | func (c *MetaClient) SetPrivilege(username, database string, p influxq...
method ShardGroupsByTimeRange (line 130) | func (c *MetaClient) ShardGroupsByTimeRange(database, policy string, m...
method UpdateRetentionPolicy (line 134) | func (c *MetaClient) UpdateRetentionPolicy(database, name string, rpu ...
method UpdateUser (line 138) | func (c *MetaClient) UpdateUser(name, password string) error {
method UserPrivilege (line 142) | func (c *MetaClient) UserPrivilege(username, database string) (*influx...
method UserPrivileges (line 146) | func (c *MetaClient) UserPrivileges(username string) (map[string]influ...
method Users (line 150) | func (c *MetaClient) Users() []meta.UserInfo {
function DefaultMetaClientDatabaseFn (line 155) | func DefaultMetaClientDatabaseFn(name string) *meta.DatabaseInfo {
FILE: vendor/github.com/influxdata/influxdb/coordinator/points_writer.go
constant statWriteReq (line 20) | statWriteReq = "req"
constant statPointWriteReq (line 21) | statPointWriteReq = "pointReq"
constant statPointWriteReqLocal (line 22) | statPointWriteReqLocal = "pointReqLocal"
constant statWriteOK (line 23) | statWriteOK = "writeOk"
constant statWriteDrop (line 24) | statWriteDrop = "writeDrop"
constant statWriteTimeout (line 25) | statWriteTimeout = "writeTimeout"
constant statWriteErr (line 26) | statWriteErr = "writeError"
constant statSubWriteOK (line 27) | statSubWriteOK = "subWriteOk"
constant statSubWriteDrop (line 28) | statSubWriteDrop = "subWriteDrop"
type PointsWriter (line 44) | type PointsWriter struct
method Open (line 126) | func (w *PointsWriter) Open() error {
method Close (line 137) | func (w *PointsWriter) Close() error {
method WithLogger (line 153) | func (w *PointsWriter) WithLogger(log zap.Logger) {
method Statistics (line 171) | func (w *PointsWriter) Statistics(tags map[string]string) []models.Sta...
method MapShards (line 192) | func (w *PointsWriter) MapShards(wp *WritePointsRequest) (*ShardMappin...
method WritePointsInto (line 283) | func (w *PointsWriter) WritePointsInto(p *IntoWriteRequest) error {
method WritePoints (line 288) | func (w *PointsWriter) WritePoints(database, retentionPolicy string, c...
method WritePointsPrivileged (line 293) | func (w *PointsWriter) WritePointsPrivileged(database, retentionPolicy...
method writeToShard (line 358) | func (w *PointsWriter) writeToShard(shard *meta.ShardInfo, database, r...
type WritePointsRequest (line 72) | type WritePointsRequest struct
method AddPoint (line 79) | func (w *WritePointsRequest) AddPoint(name string, value interface{}, ...
function NewPointsWriter (line 90) | func NewPointsWriter() *PointsWriter {
type ShardMapping (line 100) | type ShardMapping struct
method MapPoint (line 117) | func (s *ShardMapping) MapPoint(shardInfo *meta.ShardInfo, p models.Po...
function NewShardMapping (line 108) | func NewShardMapping(n int) *ShardMapping {
type WriteStatistics (line 158) | type WriteStatistics struct
type sgList (line 246) | type sgList
method Covers (line 248) | func (l sgList) Covers(t time.Time) bool {
method ShardGroupAt (line 264) | func (l sgList) ShardGroupAt(t time.Time) *meta.ShardGroupInfo {
method Append (line 275) | func (l sgList) Append(sgi meta.ShardGroupInfo) sgList {
FILE: vendor/github.com/influxdata/influxdb/coordinator/points_writer_internal_test.go
function TestSgList_ShardGroupAt (line 8) | func TestSgList_ShardGroupAt(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/coordinator/points_writer_test.go
function TestPointsWriter_MapShards_One (line 21) | func TestPointsWriter_MapShards_One(t *testing.T) {
function TestPointsWriter_MapShards_AlterShardDuration (line 56) | func TestPointsWriter_MapShards_AlterShardDuration(t *testing.T) {
function TestPointsWriter_MapShards_Multiple (line 134) | func TestPointsWriter_MapShards_Multiple(t *testing.T) {
function TestPointsWriter_MapShards_Invalid (line 207) | func TestPointsWriter_MapShards_Invalid(t *testing.T) {
function TestPointsWriter_WritePoints (line 247) | func TestPointsWriter_WritePoints(t *testing.T) {
function TestPointsWriter_WritePoints_Dropped (line 373) | func TestPointsWriter_WritePoints_Dropped(t *testing.T) {
type fakePointsWriter (line 431) | type fakePointsWriter struct
method WritePointsInto (line 435) | func (f *fakePointsWriter) WritePointsInto(req *coordinator.IntoWriteR...
function TestBufferedPointsWriter (line 439) | func TestBufferedPointsWriter(t *testing.T) {
type fakeStore (line 551) | type fakeStore struct
method WriteToShard (line 556) | func (f *fakeStore) WriteToShard(shardID uint64, points []models.Point...
method CreateShard (line 560) | func (f *fakeStore) CreateShard(database, retentionPolicy string, shar...
function NewPointsWriterMetaClient (line 564) | func NewPointsWriterMetaClient() *PointsWriterMetaClient {
type PointsWriterMetaClient (line 593) | type PointsWriterMetaClient struct
method NodeID (line 601) | func (m PointsWriterMetaClient) NodeID() uint64 { return m.NodeIDFn() }
method RetentionPolicy (line 603) | func (m PointsWriterMetaClient) RetentionPolicy(database, name string)...
method CreateShardGroup (line 607) | func (m PointsWriterMetaClient) CreateShardGroup(database, policy stri...
method Database (line 611) | func (m PointsWriterMetaClient) Database(database string) *meta.Databa...
method ShardOwner (line 615) | func (m PointsWriterMetaClient) ShardOwner(shardID uint64) (string, st...
type Subscriber (line 619) | type Subscriber struct
method Points (line 623) | func (s Subscriber) Points() chan<- *coordinator.WritePointsRequest {
function NewRetentionPolicy (line 627) | func NewRetentionPolicy(name string, duration time.Duration, nodeCount i...
function AttachShardGroupInfo (line 658) | func AttachShardGroupInfo(rp *meta.RetentionPolicyInfo, owners []meta.Sh...
function nextShardID (line 681) | func nextShardID() uint64 {
FILE: vendor/github.com/influxdata/influxdb/coordinator/shard_mapper.go
type IteratorCreator (line 13) | type IteratorCreator interface
type ShardMapper (line 21) | type ShardMapper interface
type LocalShardMapper (line 26) | type LocalShardMapper struct
method MapShards (line 37) | func (e *LocalShardMapper) MapShards(sources influxql.Sources, opt *in...
method mapShards (line 48) | func (e *LocalShardMapper) mapShards(a *LocalShardMapping, sources inf...
type LocalShardMapping (line 89) | type LocalShardMapping struct
method FieldDimensions (line 93) | func (a *LocalShardMapping) FieldDimensions(m *influxql.Measurement) (...
method MapType (line 127) | func (a *LocalShardMapping) MapType(m *influxql.Measurement, field str...
method CreateIterator (line 155) | func (a *LocalShardMapping) CreateIterator(m *influxql.Measurement, op...
method Close (line 188) | func (a *LocalShardMapping) Close() error {
type Source (line 193) | type Source struct
FILE: vendor/github.com/influxdata/influxdb/coordinator/shard_mapper_test.go
function TestLocalShardMapper (line 14) | func TestLocalShardMapper(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/coordinator/statement_executor.go
type pointsWriter (line 24) | type pointsWriter interface
type StatementExecutor (line 29) | type StatementExecutor struct
method ExecuteStatement (line 54) | func (e *StatementExecutor) ExecuteStatement(stmt influxql.Statement, ...
method executeAlterRetentionPolicyStatement (line 203) | func (e *StatementExecutor) executeAlterRetentionPolicyStatement(stmt ...
method executeCreateContinuousQueryStatement (line 217) | func (e *StatementExecutor) executeCreateContinuousQueryStatement(q *i...
method executeCreateDatabaseStatement (line 246) | func (e *StatementExecutor) executeCreateDatabaseStatement(stmt *influ...
method executeCreateRetentionPolicyStatement (line 276) | func (e *StatementExecutor) executeCreateRetentionPolicyStatement(stmt...
method executeCreateSubscriptionStatement (line 299) | func (e *StatementExecutor) executeCreateSubscriptionStatement(q *infl...
method executeCreateUserStatement (line 303) | func (e *StatementExecutor) executeCreateUserStatement(q *influxql.Cre...
method executeDeleteSeriesStatement (line 308) | func (e *StatementExecutor) executeDeleteSeriesStatement(stmt *influxq...
method executeDropContinuousQueryStatement (line 320) | func (e *StatementExecutor) executeDropContinuousQueryStatement(q *inf...
method executeDropDatabaseStatement (line 327) | func (e *StatementExecutor) executeDropDatabaseStatement(stmt *influxq...
method executeDropMeasurementStatement (line 341) | func (e *StatementExecutor) executeDropMeasurementStatement(stmt *infl...
method executeDropSeriesStatement (line 350) | func (e *StatementExecutor) executeDropSeriesStatement(stmt *influxql....
method executeDropShardStatement (line 364) | func (e *StatementExecutor) executeDropShardStatement(stmt *influxql.D...
method executeDropRetentionPolicyStatement (line 374) | func (e *StatementExecutor) executeDropRetentionPolicyStatement(stmt *...
method executeDropSubscriptionStatement (line 392) | func (e *StatementExecutor) executeDropSubscriptionStatement(q *influx...
method executeDropUserStatement (line 396) | func (e *StatementExecutor) executeDropUserStatement(q *influxql.DropU...
method executeGrantStatement (line 400) | func (e *StatementExecutor) executeGrantStatement(stmt *influxql.Grant...
method executeGrantAdminStatement (line 404) | func (e *StatementExecutor) executeGrantAdminStatement(stmt *influxql....
method executeRevokeStatement (line 408) | func (e *StatementExecutor) executeRevokeStatement(stmt *influxql.Revo...
method executeRevokeAdminStatement (line 424) | func (e *StatementExecutor) executeRevokeAdminStatement(stmt *influxql...
method executeSetPasswordUserStatement (line 428) | func (e *StatementExecutor) executeSetPasswordUserStatement(q *influxq...
method executeSelectStatement (line 432) | func (e *StatementExecutor) executeSelectStatement(stmt *influxql.Sele...
method createIterators (line 526) | func (e *StatementExecutor) createIterators(stmt *influxql.SelectState...
method executeShowContinuousQueriesStatement (line 613) | func (e *StatementExecutor) executeShowContinuousQueriesStatement(stmt...
method executeShowDatabasesStatement (line 627) | func (e *StatementExecutor) executeShowDatabasesStatement(q *influxql....
method executeShowDiagnosticsStatement (line 641) | func (e *StatementExecutor) executeShowDiagnosticsStatement(stmt *infl...
method executeShowGrantsForUserStatement (line 669) | func (e *StatementExecutor) executeShowGrantsForUserStatement(q *influ...
method executeShowMeasurementsStatement (line 682) | func (e *StatementExecutor) executeShowMeasurementsStatement(q *influx...
method executeShowRetentionPoliciesStatement (line 730) | func (e *StatementExecutor) executeShowRetentionPoliciesStatement(q *i...
method executeShowShardsStatement (line 747) | func (e *StatementExecutor) executeShowShardsStatement(stmt *influxql....
method executeShowShardGroupsStatement (line 785) | func (e *StatementExecutor) executeShowShardGroupsStatement(stmt *infl...
method executeShowStatsStatement (line 813) | func (e *StatementExecutor) executeShowStatsStatement(stmt *influxql.S...
method executeShowSubscriptionsStatement (line 837) | func (e *StatementExecutor) executeShowSubscriptionsStatement(stmt *in...
method executeShowTagValues (line 855) | func (e *StatementExecutor) executeShowTagValues(q *influxql.ShowTagVa...
method executeShowUsersStatement (line 917) | func (e *StatementExecutor) executeShowUsersStatement(q *influxql.Show...
method writeInto (line 1004) | func (e *StatementExecutor) writeInto(w pointsWriter, stmt *influxql.S...
method NormalizeStatement (line 1079) | func (e *StatementExecutor) NormalizeStatement(stmt influxql.Statement...
method normalizeMeasurement (line 1110) | func (e *StatementExecutor) normalizeMeasurement(m *influxql.Measureme...
type BufferedPointsWriter (line 927) | type BufferedPointsWriter struct
method WritePointsInto (line 945) | func (w *BufferedPointsWriter) WritePointsInto(req *IntoWriteRequest) ...
method Flush (line 979) | func (w *BufferedPointsWriter) Flush() error {
method Len (line 999) | func (w *BufferedPointsWriter) Len() int { return len(w.buf) }
method Cap (line 1002) | func (w *BufferedPointsWriter) Cap() int { return cap(w.buf) }
function NewBufferedPointsWriter (line 935) | func NewBufferedPointsWriter(w pointsWriter, database, retentionPolicy s...
function convertRowToPoints (line 1040) | func convertRowToPoints(measurementName string, row *models.Row) ([]mode...
type IntoWriteRequest (line 1145) | type IntoWriteRequest struct
type TSDBStore (line 1152) | type TSDBStore interface
type LocalTSDBStore (line 1173) | type LocalTSDBStore struct
type ShardIteratorCreator (line 1178) | type ShardIteratorCreator interface
function joinUint64 (line 1183) | func joinUint64(a []uint64) string {
FILE: vendor/github.com/influxdata/influxdb/coordinator/statement_executor_test.go
constant DefaultDatabase (line 25) | DefaultDatabase = "db0"
constant DefaultRetentionPolicy (line 28) | DefaultRetentionPolicy = "rp0"
function TestQueryExecutor_ExecuteQuery_SelectStatement (line 32) | func TestQueryExecutor_ExecuteQuery_SelectStatement(t *testing.T) {
function TestQueryExecutor_ExecuteQuery_MaxSelectBucketsN (line 86) | func TestQueryExecutor_ExecuteQuery_MaxSelectBucketsN(t *testing.T) {
function TestStatementExecutor_NormalizeDropSeries (line 130) | func TestStatementExecutor_NormalizeDropSeries(t *testing.T) {
function TestStatementExecutor_NormalizeDeleteSeries (line 163) | func TestStatementExecutor_NormalizeDeleteSeries(t *testing.T) {
type mockAuthorizer (line 196) | type mockAuthorizer struct
method AuthorizeDatabase (line 200) | func (a *mockAuthorizer) AuthorizeDatabase(p influxql.Privilege, name ...
method AuthorizeQuery (line 204) | func (m *mockAuthorizer) AuthorizeQuery(database string, query *influx...
method AuthorizeSeriesRead (line 208) | func (m *mockAuthorizer) AuthorizeSeriesRead(database string, measurem...
method AuthorizeSeriesWrite (line 212) | func (m *mockAuthorizer) AuthorizeSeriesWrite(database string, measure...
function TestQueryExecutor_ExecuteQuery_ShowDatabases (line 216) | func TestQueryExecutor_ExecuteQuery_ShowDatabases(t *testing.T) {
type QueryExecutor (line 260) | type QueryExecutor struct
method ExecuteQuery (line 305) | func (e *QueryExecutor) ExecuteQuery(query, database string, chunkSize...
function NewQueryExecutor (line 271) | func NewQueryExecutor() *QueryExecutor {
function DefaultQueryExecutor (line 298) | func DefaultQueryExecutor() *QueryExecutor {
type TSDBStore (line 313) | type TSDBStore struct
method CreateShard (line 328) | func (s *TSDBStore) CreateShard(database, policy string, shardID uint6...
method WriteToShard (line 335) | func (s *TSDBStore) WriteToShard(shardID uint64, points []models.Point...
method RestoreShard (line 339) | func (s *TSDBStore) RestoreShard(id uint64, r io.Reader) error {
method BackupShard (line 343) | func (s *TSDBStore) BackupShard(id uint64, since time.Time, w io.Write...
method DeleteDatabase (line 347) | func (s *TSDBStore) DeleteDatabase(name string) error {
method DeleteMeasurement (line 351) | func (s *TSDBStore) DeleteMeasurement(database, name string) error {
method DeleteRetentionPolicy (line 355) | func (s *TSDBStore) DeleteRetentionPolicy(database, name string) error {
method DeleteShard (line 359) | func (s *TSDBStore) DeleteShard(id uint64) error {
method DeleteSeries (line 363) | func (s *TSDBStore) DeleteSeries(database string, sources []influxql.S...
method ShardGroup (line 367) | func (s *TSDBStore) ShardGroup(ids []uint64) tsdb.ShardGroup {
method Measurements (line 371) | func (s *TSDBStore) Measurements(database string, cond influxql.Expr) ...
method MeasurementNames (line 375) | func (s *TSDBStore) MeasurementNames(database string, cond influxql.Ex...
method TagValues (line 379) | func (s *TSDBStore) TagValues(database string, cond influxql.Expr) ([]...
type MockShard (line 383) | type MockShard struct
method MeasurementsByRegex (line 390) | func (sh *MockShard) MeasurementsByRegex(re *regexp.Regexp) []string {
method FieldDimensions (line 400) | func (sh *MockShard) FieldDimensions(measurements []string) (fields ma...
method MapType (line 404) | func (sh *MockShard) MapType(measurement, field string) influxql.DataT...
method CreateIterator (line 418) | func (sh *MockShard) CreateIterator(measurement string, opt influxql.I...
method ExpandSources (line 422) | func (sh *MockShard) ExpandSources(sources influxql.Sources) (influxql...
function MustParseQuery (line 427) | func MustParseQuery(s string) *influxql.Query {
function ReadAllResults (line 436) | func ReadAllResults(c <-chan *influxql.Result) []*influxql.Result {
type FloatIterator (line 445) | type FloatIterator struct
method Stats (line 450) | func (itr *FloatIterator) Stats() influxql.IteratorStats { return itr....
method Close (line 451) | func (itr *FloatIterator) Close() error { return nil }
method Next (line 454) | func (itr *FloatIterator) Next() (*influxql.FloatPoint, error) {
FILE: vendor/github.com/influxdata/influxdb/errors.go
function ErrDatabaseNotFound (line 15) | func ErrDatabaseNotFound(name string) error { return fmt.Errorf("databas...
function ErrRetentionPolicyNotFound (line 19) | func ErrRetentionPolicyNotFound(name string) error {
function IsAuthorizationError (line 24) | func IsAuthorizationError(err error) bool {
function IsClientError (line 32) | func IsClientError(err error) bool {
FILE: vendor/github.com/influxdata/influxdb/etc/burn-in/log.rb
type Log (line 1) | module Log
function info (line 2) | def self.info(msg)
function success (line 7) | def self.success(msg)
function failure (line 12) | def self.failure(msg)
function log (line 17) | def self.log(msg)
FILE: vendor/github.com/influxdata/influxdb/etc/burn-in/random_gaussian.rb
class RandomGaussian (line 1) | class RandomGaussian
method initialize (line 2) | def initialize(mean, stddev, rand_helper = lambda { Kernel.rand })
method rand (line 10) | def rand
method gaussian (line 23) | def self.gaussian(mean, stddev, rand)
FILE: vendor/github.com/influxdata/influxdb/importer/v8/importer.go
constant batchSize (line 17) | batchSize = 5000
type Config (line 20) | type Config struct
function NewConfig (line 30) | func NewConfig() Config {
type Importer (line 35) | type Importer struct
method Import (line 59) | func (i *Importer) Import() error {
method processDDL (line 142) | func (i *Importer) processDDL(scanner *bufio.Scanner) {
method processDML (line 160) | func (i *Importer) processDML(scanner *bufio.Scanner) {
method execute (line 183) | func (i *Importer) execute(command string) {
method queryExecutor (line 194) | func (i *Importer) queryExecutor(command string) {
method batchAccumulator (line 199) | func (i *Importer) batchAccumulator(line string, start time.Time) {
method batchWrite (line 214) | func (i *Importer) batchWrite() {
function NewImporter (line 50) | func NewImporter(config Config) *Importer {
FILE: vendor/github.com/influxdata/influxdb/influxql/ast.go
type DataType (line 20) | type DataType
method LessThan (line 84) | func (d DataType) LessThan(other DataType) bool {
method String (line 89) | func (d DataType) String() string {
constant Unknown (line 24) | Unknown DataType = 0
constant Float (line 26) | Float = 1
constant Integer (line 28) | Integer = 2
constant String (line 30) | String = 3
constant Boolean (line 32) | Boolean = 4
constant Time (line 34) | Time = 5
constant Duration (line 36) | Duration = 6
constant Tag (line 38) | Tag = 7
constant AnyField (line 40) | AnyField = 8
function InspectDataType (line 50) | func InspectDataType(v interface{}) DataType {
function InspectDataTypes (line 70) | func InspectDataTypes(a []interface{}) []DataType {
type Node (line 112) | type Node interface
type Query (line 190) | type Query struct
method node (line 119) | func (*Query) node() {}
method String (line 195) | func (q *Query) String() string { return q.Statements.String() }
type Statements (line 198) | type Statements
method node (line 120) | func (Statements) node() {}
method String (line 201) | func (a Statements) String() string {
type Statement (line 210) | type Statement interface
type HasDefaultDatabase (line 219) | type HasDefaultDatabase interface
type ExecutionPrivilege (line 229) | type ExecutionPrivilege struct
type ExecutionPrivileges (line 241) | type ExecutionPrivileges
type Expr (line 284) | type Expr interface
type Literal (line 308) | type Literal interface
type Source (line 326) | type Source interface
type Sources (line 337) | type Sources
method node (line 181) | func (Sources) node() {}
method Names (line 340) | func (a Sources) Names() []string {
method Filter (line 352) | func (a Sources) Filter(database, retentionPolicy string) []Source {
method HasSystemSource (line 369) | func (a Sources) HasSystemSource() bool {
method HasRegex (line 382) | func (a Sources) HasRegex() bool {
method String (line 395) | func (a Sources) String() string {
method Measurements (line 410) | func (a Sources) Measurements() []*Measurement {
method MarshalBinary (line 424) | func (a Sources) MarshalBinary() ([]byte, error) {
method UnmarshalBinary (line 434) | func (a *Sources) UnmarshalBinary(buf []byte) error {
function IsSystemName (line 451) | func IsSystemName(name string) bool {
type SortField (line 465) | type SortField struct
method node (line 179) | func (*SortField) node() {}
method String (line 474) | func (field *SortField) String() string {
type SortFields (line 489) | type SortFields
method node (line 180) | func (SortFields) node() {}
method String (line 492) | func (a SortFields) String() string {
type CreateDatabaseStatement (line 501) | type CreateDatabaseStatement struct
method node (line 124) | func (*CreateDatabaseStatement) node() {}
method stmt (line 245) | func (*CreateDatabaseStatement) stmt() {}
method String (line 522) | func (s *CreateDatabaseStatement) String() string {
method RequiredPrivileges (line 550) | func (s *CreateDatabaseStatement) RequiredPrivileges() (ExecutionPrivi...
type DropDatabaseStatement (line 555) | type DropDatabaseStatement struct
method node (line 132) | func (*DropDatabaseStatement) node() {}
method stmt (line 252) | func (*DropDatabaseStatement) stmt() {}
method String (line 561) | func (s *DropDatabaseStatement) String() string {
method RequiredPrivileges (line 569) | func (s *DropDatabaseStatement) RequiredPrivileges() (ExecutionPrivile...
type DropRetentionPolicyStatement (line 574) | type DropRetentionPolicyStatement struct
method node (line 134) | func (*DropRetentionPolicyStatement) node() {}
method stmt (line 254) | func (*DropRetentionPolicyStatement) stmt() {}
method String (line 583) | func (s *DropRetentionPolicyStatement) String() string {
method RequiredPrivileges (line 593) | func (s *DropRetentionPolicyStatement) RequiredPrivileges() (Execution...
method DefaultDatabase (line 598) | func (s *DropRetentionPolicyStatement) DefaultDatabase() string {
type CreateUserStatement (line 603) | type CreateUserStatement struct
method node (line 127) | func (*CreateUserStatement) node() {}
method stmt (line 248) | func (*CreateUserStatement) stmt() {}
method String (line 615) | func (s *CreateUserStatement) String() string {
method RequiredPrivileges (line 628) | func (s *CreateUserStatement) RequiredPrivileges() (ExecutionPrivilege...
type DropUserStatement (line 633) | type DropUserStatement struct
method node (line 138) | func (*DropUserStatement) node() {}
method stmt (line 257) | func (*DropUserStatement) stmt() {}
method String (line 639) | func (s *DropUserStatement) String() string {
method RequiredPrivileges (line 647) | func (s *DropUserStatement) RequiredPrivileges() (ExecutionPrivileges,...
type Privilege (line 652) | type Privilege
method String (line 669) | func (p Privilege) String() string {
constant NoPrivileges (line 656) | NoPrivileges Privilege = iota
constant ReadPrivilege (line 658) | ReadPrivilege
constant WritePrivilege (line 660) | WritePrivilege
constant AllPrivileges (line 662) | AllPrivileges
function NewPrivilege (line 666) | func NewPrivilege(p Privilege) *Privilege { return &p }
type GrantStatement (line 684) | type GrantStatement struct
method node (line 139) | func (*GrantStatement) node() {}
method stmt (line 258) | func (*GrantStatement) stmt() {}
method String (line 696) | func (s *GrantStatement) String() string {
method RequiredPrivileges (line 708) | func (s *GrantStatement) RequiredPrivileges() (ExecutionPrivileges, er...
method DefaultDatabase (line 713) | func (s *GrantStatement) DefaultDatabase() string {
type GrantAdminStatement (line 718) | type GrantAdminStatement struct
method node (line 140) | func (*GrantAdminStatement) node() {}
method stmt (line 259) | func (*GrantAdminStatement) stmt() {}
method String (line 724) | func (s *GrantAdminStatement) String() string {
method RequiredPrivileges (line 732) | func (s *GrantAdminStatement) RequiredPrivileges() (ExecutionPrivilege...
type KillQueryStatement (line 737) | type KillQueryStatement struct
method node (line 141) | func (*KillQueryStatement) node() {}
method stmt (line 260) | func (*KillQueryStatement) stmt() {}
method String (line 746) | func (s *KillQueryStatement) String() string {
method RequiredPrivileges (line 758) | func (s *KillQueryStatement) RequiredPrivileges() (ExecutionPrivileges...
type SetPasswordUserStatement (line 763) | type SetPasswordUserStatement struct
method node (line 145) | func (*SetPasswordUserStatement) node() {}
method stmt (line 281) | func (*SetPasswordUserStatement) stmt() {}
method String (line 772) | func (s *SetPasswordUserStatement) String() string {
method RequiredPrivileges (line 782) | func (s *SetPasswordUserStatement) RequiredPrivileges() (ExecutionPriv...
type RevokeStatement (line 787) | type RevokeStatement struct
method node (line 142) | func (*RevokeStatement) node() {}
method stmt (line 278) | func (*RevokeStatement) stmt() {}
method String (line 799) | func (s *RevokeStatement) String() string {
method RequiredPrivileges (line 811) | func (s *RevokeStatement) RequiredPrivileges() (ExecutionPrivileges, e...
method DefaultDatabase (line 816) | func (s *RevokeStatement) DefaultDatabase() string {
type RevokeAdminStatement (line 821) | type RevokeAdminStatement struct
method node (line 143) | func (*RevokeAdminStatement) node() {}
method stmt (line 279) | func (*RevokeAdminStatement) stmt() {}
method String (line 827) | func (s *RevokeAdminStatement) String() string {
method RequiredPrivileges (line 835) | func (s *RevokeAdminStatement) RequiredPrivileges() (ExecutionPrivileg...
type CreateRetentionPolicyStatement (line 840) | type CreateRetentionPolicyStatement struct
method node (line 125) | func (*CreateRetentionPolicyStatement) node() {}
method stmt (line 246) | func (*CreateRetentionPolicyStatement) stmt() {}
method String (line 861) | func (s *CreateRetentionPolicyStatement) String() string {
method RequiredPrivileges (line 882) | func (s *CreateRetentionPolicyStatement) RequiredPrivileges() (Executi...
method DefaultDatabase (line 887) | func (s *CreateRetentionPolicyStatement) DefaultDatabase() string {
type AlterRetentionPolicyStatement (line 892) | type AlterRetentionPolicyStatement struct
method node (line 122) | func (*AlterRetentionPolicyStatement) node() {}
method stmt (line 243) | func (*AlterRetentionPolicyStatement) stmt() {}
method String (line 913) | func (s *AlterRetentionPolicyStatement) String() string {
method RequiredPrivileges (line 943) | func (s *AlterRetentionPolicyStatement) RequiredPrivileges() (Executio...
method DefaultDatabase (line 948) | func (s *AlterRetentionPolicyStatement) DefaultDatabase() string {
type FillOption (line 953) | type FillOption
constant NullFill (line 957) | NullFill FillOption = iota
constant NoFill (line 959) | NoFill
constant NumberFill (line 961) | NumberFill
constant PreviousFill (line 963) | PreviousFill
constant LinearFill (line 965) | LinearFill
type SelectStatement (line 969) | type SelectStatement struct
method node (line 144) | func (*SelectStatement) node() {}
method stmt (line 280) | func (*SelectStatement) stmt() {}
method HasDerivative (line 1027) | func (s *SelectStatement) HasDerivative() bool {
method IsSimpleDerivative (line 1038) | func (s *SelectStatement) IsSimpleDerivative() bool {
method HasSelector (line 1051) | func (s *SelectStatement) HasSelector() bool {
method TimeAscending (line 1066) | func (s *SelectStatement) TimeAscending() bool {
method TimeFieldName (line 1071) | func (s *SelectStatement) TimeFieldName() string {
method Clone (line 1079) | func (s *SelectStatement) Clone() *SelectStatement {
method RewriteFields (line 1140) | func (s *SelectStatement) RewriteFields(m FieldMapper) (*SelectStateme...
method RewriteRegexConditions (line 1368) | func (s *SelectStatement) RewriteRegexConditions() {
method RewriteDistinct (line 1446) | func (s *SelectStatement) RewriteDistinct() {
method RewriteTimeFields (line 1465) | func (s *SelectStatement) RewriteTimeFields() {
method RewriteTimeCondition (line 1478) | func (s *SelectStatement) RewriteTimeCondition(now time.Time) error {
method ColumnNames (line 1514) | func (s *SelectStatement) ColumnNames() []string {
method FieldExprByName (line 1588) | func (s *SelectStatement) FieldExprByName(name string) (int, Expr) {
method Reduce (line 1605) | func (s *SelectStatement) Reduce(valuer Valuer) *SelectStatement {
method HasTimeFieldSpecified (line 1623) | func (s *SelectStatement) HasTimeFieldSpecified() bool {
method String (line 1633) | func (s *SelectStatement) String() string {
method RequiredPrivileges (line 1692) | func (s *SelectStatement) RequiredPrivileges() (ExecutionPrivileges, e...
method HasWildcard (line 1720) | func (s *SelectStatement) HasWildcard() bool {
method HasFieldWildcard (line 1725) | func (s *SelectStatement) HasFieldWildcard() (hasWildcard bool) {
method HasDimensionWildcard (line 1740) | func (s *SelectStatement) HasDimensionWildcard() bool {
method validate (line 1751) | func (s *SelectStatement) validate(tr targetRequirement) error {
method validateFields (line 1779) | func (s *SelectStatement) validateFields() error {
method validateDimensions (line 1796) | func (s *SelectStatement) validateDimensions() error {
method validSelectWithAggregate (line 1846) | func (s *SelectStatement) validSelectWithAggregate() error {
method validTopBottomAggr (line 1887) | func (s *SelectStatement) validTopBottomAggr(expr *Call) error {
method validPercentileAggr (line 1911) | func (s *SelectStatement) validPercentileAggr(expr *Call) error {
method validSampleAggr (line 1935) | func (s *SelectStatement) validSampleAggr(expr *Call) error {
method validateAggregates (line 1958) | func (s *SelectStatement) validateAggregates(tr targetRequirement) err...
method validateFill (line 2149) | func (s *SelectStatement) validateFill() error {
method validateTimeExpression (line 2165) | func (s *SelectStatement) validateTimeExpression() error {
method validateGroupByInterval (line 2197) | func (s *SelectStatement) validateGroupByInterval() error {
method HasDistinct (line 2234) | func (s *SelectStatement) HasDistinct() bool {
method validateDistinct (line 2248) | func (s *SelectStatement) validateDistinct() error {
method validateTopBottom (line 2270) | func (s *SelectStatement) validateTopBottom() error {
method GroupByInterval (line 2284) | func (s *SelectStatement) GroupByInterval() (time.Duration, error) {
method GroupByOffset (line 2315) | func (s *SelectStatement) GroupByOffset() (time.Duration, error) {
method SetTimeRange (line 2346) | func (s *SelectStatement) SetTimeRange(start, end time.Time) error {
method rewriteWithoutTimeDimensions (line 2365) | func (s *SelectStatement) rewriteWithoutTimeDimensions() string {
method NamesInWhere (line 2384) | func (s *SelectStatement) NamesInWhere() []string {
method NamesInSelect (line 2393) | func (s *SelectStatement) NamesInSelect() []string {
method NamesInDimension (line 2404) | func (s *SelectStatement) NamesInDimension() []string {
method FunctionCalls (line 2509) | func (s *SelectStatement) FunctionCalls() []*Call {
method FunctionCallsByPosition (line 2518) | func (s *SelectStatement) FunctionCallsByPosition() [][]*Call {
function cloneSources (line 1109) | func cloneSources(sources Sources) Sources {
function cloneSource (line 1117) | func cloneSource(s Source) Source {
function matchExactRegex (line 1401) | func matchExactRegex(v string) (string, bool) {
function LimitTagSets (line 2415) | func LimitTagSets(a []*TagSet, slimit, soffset int) []*TagSet {
function walkNames (line 2434) | func walkNames(exp Expr) []string {
function walkRefs (line 2459) | func walkRefs(exp Expr) []VarRef {
function ExprNames (line 2490) | func ExprNames(expr Expr) []VarRef {
function walkFunctionCalls (line 2527) | func walkFunctionCalls(exp Expr) []*Call {
function MatchSource (line 2547) | func MatchSource(sources Sources, name string) string {
type Target (line 2560) | type Target struct
method node (line 184) | func (*Target) node() {}
method String (line 2566) | func (t *Target) String() string {
type DeleteStatement (line 2582) | type DeleteStatement struct
method node (line 130) | func (*DeleteStatement) node() {}
method stmt (line 250) | func (*DeleteStatement) stmt() {}
method String (line 2591) | func (s *DeleteStatement) String() string {
method RequiredPrivileges (line 2603) | func (s *DeleteStatement) RequiredPrivileges() (ExecutionPrivileges, e...
method DefaultDatabase (line 2608) | func (s *DeleteStatement) DefaultDatabase() string {
type ShowSeriesStatement (line 2616) | type ShowSeriesStatement struct
method node (line 153) | func (*ShowSeriesStatement) node() {}
method stmt (line 268) | func (*ShowSeriesStatement) stmt() {}
method String (line 2639) | func (s *ShowSeriesStatement) String() string {
method RequiredPrivileges (line 2672) | func (s *ShowSeriesStatement) RequiredPrivileges() (ExecutionPrivilege...
method DefaultDatabase (line 2677) | func (s *ShowSeriesStatement) DefaultDatabase() string {
type DropSeriesStatement (line 2682) | type DropSeriesStatement struct
method node (line 135) | func (*DropSeriesStatement) node() {}
method stmt (line 255) | func (*DropSeriesStatement) stmt() {}
method String (line 2691) | func (s *DropSeriesStatement) String() string {
method RequiredPrivileges (line 2708) | func (s DropSeriesStatement) RequiredPrivileges() (ExecutionPrivileges...
type DeleteSeriesStatement (line 2713) | type DeleteSeriesStatement struct
method node (line 129) | func (*DeleteSeriesStatement) node() {}
method stmt (line 249) | func (*DeleteSeriesStatement) stmt() {}
method String (line 2722) | func (s *DeleteSeriesStatement) String() string {
method RequiredPrivileges (line 2739) | func (s DeleteSeriesStatement) RequiredPrivileges() (ExecutionPrivileg...
type DropShardStatement (line 2745) | type DropShardStatement struct
method node (line 136) | func (*DropShardStatement) node() {}
method stmt (line 272) | func (*DropShardStatement) stmt() {}
method String (line 2751) | func (s *DropShardStatement) String() string {
method RequiredPrivileges (line 2760) | func (s *DropShardStatement) RequiredPrivileges() (ExecutionPrivileges...
type ShowContinuousQueriesStatement (line 2765) | type ShowContinuousQueriesStatement struct
method node (line 146) | func (*ShowContinuousQueriesStatement) node() {}
method stmt (line 261) | func (*ShowContinuousQueriesStatement) stmt() {}
method String (line 2768) | func (s *ShowContinuousQueriesStatement) String() string { return "SHO...
method RequiredPrivileges (line 2771) | func (s *ShowContinuousQueriesStatement) RequiredPrivileges() (Executi...
type ShowGrantsForUserStatement (line 2776) | type ShowGrantsForUserStatement struct
method node (line 147) | func (*ShowGrantsForUserStatement) node() {}
method stmt (line 262) | func (*ShowGrantsForUserStatement) stmt() {}
method String (line 2782) | func (s *ShowGrantsForUserStatement) String() string {
method RequiredPrivileges (line 2791) | func (s *ShowGrantsForUserStatement) RequiredPrivileges() (ExecutionPr...
type ShowDatabasesStatement (line 2796) | type ShowDatabasesStatement struct
method node (line 148) | func (*ShowDatabasesStatement) node() {}
method stmt (line 263) | func (*ShowDatabasesStatement) stmt() {}
method String (line 2799) | func (s *ShowDatabasesStatement) String() string { return "SHOW DATABA...
method RequiredPrivileges (line 2802) | func (s *ShowDatabasesStatement) RequiredPrivileges() (ExecutionPrivil...
type CreateContinuousQueryStatement (line 2810) | type CreateContinuousQueryStatement struct
method node (line 123) | func (*CreateContinuousQueryStatement) node() {}
method stmt (line 244) | func (*CreateContinuousQueryStatement) stmt() {}
method String (line 2828) | func (s *CreateContinuousQueryStatement) String() string {
method DefaultDatabase (line 2846) | func (s *CreateContinuousQueryStatement) DefaultDatabase() string {
method RequiredPrivileges (line 2851) | func (s *CreateContinuousQueryStatement) RequiredPrivileges() (Executi...
method validate (line 2871) | func (s *CreateContinuousQueryStatement) validate() error {
type DropContinuousQueryStatement (line 2889) | type DropContinuousQueryStatement struct
method node (line 131) | func (*DropContinuousQueryStatement) node() {}
method stmt (line 251) | func (*DropContinuousQueryStatement) stmt() {}
method String (line 2895) | func (s *DropContinuousQueryStatement) String() string {
method RequiredPrivileges (line 2900) | func (s *DropContinuousQueryStatement) RequiredPrivileges() (Execution...
method DefaultDatabase (line 2905) | func (s *DropContinuousQueryStatement) DefaultDatabase() string {
type ShowMeasurementsStatement (line 2910) | type ShowMeasurementsStatement struct
method node (line 151) | func (*ShowMeasurementsStatement) node() {}
method stmt (line 265) | func (*ShowMeasurementsStatement) stmt() {}
method String (line 2932) | func (s *ShowMeasurementsStatement) String() string {
method RequiredPrivileges (line 2969) | func (s *ShowMeasurementsStatement) RequiredPrivileges() (ExecutionPri...
method DefaultDatabase (line 2974) | func (s *ShowMeasurementsStatement) DefaultDatabase() string {
type DropMeasurementStatement (line 2979) | type DropMeasurementStatement struct
method node (line 133) | func (*DropMeasurementStatement) node() {}
method stmt (line 253) | func (*DropMeasurementStatement) stmt() {}
method String (line 2985) | func (s *DropMeasurementStatement) String() string {
method RequiredPrivileges (line 2993) | func (s *DropMeasurementStatement) RequiredPrivileges() (ExecutionPriv...
type ShowQueriesStatement (line 2998) | type ShowQueriesStatement struct
method node (line 152) | func (*ShowQueriesStatement) node() {}
method stmt (line 266) | func (*ShowQueriesStatement) stmt() {}
method String (line 3001) | func (s *ShowQueriesStatement) String() string {
method RequiredPrivileges (line 3006) | func (s *ShowQueriesStatement) RequiredPrivileges() (ExecutionPrivileg...
type ShowRetentionPoliciesStatement (line 3011) | type ShowRetentionPoliciesStatement struct
method node (line 150) | func (*ShowRetentionPoliciesStatement) node() {}
method stmt (line 267) | func (*ShowRetentionPoliciesStatement) stmt() {}
method String (line 3017) | func (s *ShowRetentionPoliciesStatement) String() string {
method RequiredPrivileges (line 3028) | func (s *ShowRetentionPoliciesStatement) RequiredPrivileges() (Executi...
method DefaultDatabase (line 3033) | func (s *ShowRetentionPoliciesStatement) DefaultDatabase() string {
type ShowStatsStatement (line 3038) | type ShowStatsStatement struct
method node (line 156) | func (*ShowStatsStatement) node() {}
method stmt (line 271) | func (*ShowStatsStatement) stmt() {}
method String (line 3043) | func (s *ShowStatsStatement) String() string {
method RequiredPrivileges (line 3054) | func (s *ShowStatsStatement) RequiredPrivileges() (ExecutionPrivileges...
type ShowShardGroupsStatement (line 3059) | type ShowShardGroupsStatement struct
method node (line 154) | func (*ShowShardGroupsStatement) node() {}
method stmt (line 269) | func (*ShowShardGroupsStatement) stmt() {}
method String (line 3062) | func (s *ShowShardGroupsStatement) String() string { return "SHOW SHAR...
method RequiredPrivileges (line 3065) | func (s *ShowShardGroupsStatement) RequiredPrivileges() (ExecutionPriv...
type ShowShardsStatement (line 3070) | type ShowShardsStatement struct
method node (line 155) | func (*ShowShardsStatement) node() {}
method stmt (line 270) | func (*ShowShardsStatement) stmt() {}
method String (line 3073) | func (s *ShowShardsStatement) String() string { return "SHOW SHARDS" }
method RequiredPrivileges (line 3076) | func (s *ShowShardsStatement) RequiredPrivileges() (ExecutionPrivilege...
type ShowDiagnosticsStatement (line 3081) | type ShowDiagnosticsStatement struct
method node (line 158) | func (*ShowDiagnosticsStatement) node() {}
method stmt (line 274) | func (*ShowDiagnosticsStatement) stmt() {}
method String (line 3087) | func (s *ShowDiagnosticsStatement) String() string {
method RequiredPrivileges (line 3098) | func (s *ShowDiagnosticsStatement) RequiredPrivileges() (ExecutionPriv...
type CreateSubscriptionStatement (line 3103) | type CreateSubscriptionStatement struct
method node (line 126) | func (*CreateSubscriptionStatement) node() {}
method stmt (line 247) | func (*CreateSubscriptionStatement) stmt() {}
method String (line 3112) | func (s *CreateSubscriptionStatement) String() string {
method RequiredPrivileges (line 3134) | func (s *CreateSubscriptionStatement) RequiredPrivileges() (ExecutionP...
method DefaultDatabase (line 3139) | func (s *CreateSubscriptionStatement) DefaultDatabase() string {
type DropSubscriptionStatement (line 3144) | type DropSubscriptionStatement struct
method node (line 137) | func (*DropSubscriptionStatement) node() {}
method stmt (line 256) | func (*DropSubscriptionStatement) stmt() {}
method String (line 3151) | func (s *DropSubscriptionStatement) String() string {
method RequiredPrivileges (line 3156) | func (s *DropSubscriptionStatement) RequiredPrivileges() (ExecutionPri...
method DefaultDatabase (line 3161) | func (s *DropSubscriptionStatement) DefaultDatabase() string {
type ShowSubscriptionsStatement (line 3166) | type ShowSubscriptionsStatement struct
method node (line 157) | func (*ShowSubscriptionsStatement) node() {}
method stmt (line 273) | func (*ShowSubscriptionsStatement) stmt() {}
method String (line 3170) | func (s *ShowSubscriptionsStatement) String() string {
method RequiredPrivileges (line 3175) | func (s *ShowSubscriptionsStatement) RequiredPrivileges() (ExecutionPr...
type ShowTagKeysStatement (line 3180) | type ShowTagKeysStatement struct
method node (line 159) | func (*ShowTagKeysStatement) node() {}
method stmt (line 275) | func (*ShowTagKeysStatement) stmt() {}
method String (line 3208) | func (s *ShowTagKeysStatement) String() string {
method RequiredPrivileges (line 3248) | func (s *ShowTagKeysStatement) RequiredPrivileges() (ExecutionPrivileg...
method DefaultDatabase (line 3253) | func (s *ShowTagKeysStatement) DefaultDatabase() string {
type ShowTagValuesStatement (line 3258) | type ShowTagValuesStatement struct
method node (line 160) | func (*ShowTagValuesStatement) node() {}
method stmt (line 276) | func (*ShowTagValuesStatement) stmt() {}
method String (line 3287) | func (s *ShowTagValuesStatement) String() string {
method RequiredPrivileges (line 3327) | func (s *ShowTagValuesStatement) RequiredPrivileges() (ExecutionPrivil...
method DefaultDatabase (line 3332) | func (s *ShowTagValuesStatement) DefaultDatabase() string {
type ShowUsersStatement (line 3337) | type ShowUsersStatement struct
method node (line 161) | func (*ShowUsersStatement) node() {}
method stmt (line 277) | func (*ShowUsersStatement) stmt() {}
method String (line 3340) | func (s *ShowUsersStatement) String() string {
method RequiredPrivileges (line 3345) | func (s *ShowUsersStatement) RequiredPrivileges() (ExecutionPrivileges...
type ShowFieldKeysStatement (line 3350) | type ShowFieldKeysStatement struct
method node (line 149) | func (*ShowFieldKeysStatement) node() {}
method stmt (line 264) | func (*ShowFieldKeysStatement) stmt() {}
method String (line 3370) | func (s *ShowFieldKeysStatement) String() string {
method RequiredPrivileges (line 3398) | func (s *ShowFieldKeysStatement) RequiredPrivileges() (ExecutionPrivil...
method DefaultDatabase (line 3403) | func (s *ShowFieldKeysStatement) DefaultDatabase() string {
type Fields (line 3408) | type Fields
method node (line 171) | func (Fields) node() {}
method AliasNames (line 3412) | func (a Fields) AliasNames() []string {
method Names (line 3421) | func (a Fields) Names() []string {
method String (line 3439) | func (a Fields) String() string {
method Len (line 3489) | func (a Fields) Len() int { return len(a) }
method Less (line 3492) | func (a Fields) Less(i, j int) bool { return a[i].Name() < a[j].Name() }
method Swap (line 3495) | func (a Fields) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
type Field (line 3448) | type Field struct
method node (line 170) | func (*Field) node() {}
method Name (line 3455) | func (f *Field) Name() string {
method String (line 3479) | func (f *Field) String() string {
type Dimensions (line 3498) | type Dimensions
method node (line 167) | func (Dimensions) node() {}
method String (line 3501) | func (a Dimensions) String() string {
method Normalize (line 3511) | func (a Dimensions) Normalize() (time.Duration, []string) {
type Dimension (line 3529) | type Dimension struct
method node (line 166) | func (*Dimension) node() {}
method String (line 3534) | func (d *Dimension) String() string { return d.Expr.String() }
type Measurements (line 3537) | type Measurements
method node (line 173) | func (Measurements) node() {}
method String (line 3540) | func (a Measurements) String() string {
type Measurement (line 3549) | type Measurement struct
method node (line 172) | func (*Measurement) node() {}
method source (line 333) | func (*Measurement) source() {}
method String (line 3558) | func (m *Measurement) String() string {
function encodeMeasurement (line 3582) | func encodeMeasurement(mm *Measurement) *internal.Measurement {
function decodeMeasurement (line 3595) | func decodeMeasurement(pb *internal.Measurement) (*Measurement, error) {
type SubQuery (line 3615) | type SubQuery struct
method node (line 183) | func (*SubQuery) node() {}
method source (line 334) | func (*SubQuery) source() {}
method String (line 3620) | func (s *SubQuery) String() string {
type VarRef (line 3625) | type VarRef struct
method node (line 186) | func (*VarRef) node() {}
method expr (line 304) | func (*VarRef) expr() {}
method String (line 3631) | func (r *VarRef) String() string {
type VarRefs (line 3641) | type VarRefs
method Len (line 3644) | func (a VarRefs) Len() int { return len(a) }
method Less (line 3647) | func (a VarRefs) Less(i, j int) bool {
method Swap (line 3655) | func (a VarRefs) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Strings (line 3658) | func (a VarRefs) Strings() []string {
type Call (line 3667) | type Call struct
method node (line 165) | func (*Call) node() {}
method expr (line 293) | func (*Call) expr() {}
method String (line 3673) | func (c *Call) String() string {
type Distinct (line 3685) | type Distinct struct
method node (line 128) | func (*Distinct) node() {}
method expr (line 294) | func (*Distinct) expr() {}
method String (line 3691) | func (d *Distinct) String() string {
method NewCall (line 3696) | func (d *Distinct) NewCall() *Call {
type NumberLiteral (line 3706) | type NumberLiteral struct
method node (line 175) | func (*NumberLiteral) node() {}
method expr (line 298) | func (*NumberLiteral) expr() {}
method literal (line 319) | func (*NumberLiteral) literal() {}
method String (line 3711) | func (l *NumberLiteral) String() string { return strconv.FormatFloat(l...
type IntegerLiteral (line 3714) | type IntegerLiteral struct
method node (line 169) | func (*IntegerLiteral) node() {}
method expr (line 296) | func (*IntegerLiteral) expr() {}
method literal (line 317) | func (*IntegerLiteral) literal() {}
method String (line 3719) | func (l *IntegerLiteral) String() string { return fmt.Sprintf("%d", l....
type BooleanLiteral (line 3722) | type BooleanLiteral struct
method node (line 164) | func (*BooleanLiteral) node() {}
method expr (line 292) | func (*BooleanLiteral) expr() {}
method literal (line 315) | func (*BooleanLiteral) literal() {}
method String (line 3727) | func (l *BooleanLiteral) String() string {
function isTrueLiteral (line 3735) | func isTrueLiteral(expr Expr) bool {
function isFalseLiteral (line 3743) | func isFalseLiteral(expr Expr) bool {
type ListLiteral (line 3751) | type ListLiteral struct
method node (line 178) | func (*ListLiteral) node() {}
method expr (line 301) | func (*ListLiteral) expr() {}
method literal (line 321) | func (*ListLiteral) literal() {}
method String (line 3756) | func (s *ListLiteral) String() string {
type StringLiteral (line 3770) | type StringLiteral struct
method node (line 182) | func (*StringLiteral) node() {}
method expr (line 302) | func (*StringLiteral) expr() {}
method literal (line 322) | func (*StringLiteral) literal() {}
method String (line 3775) | func (l *StringLiteral) String() string { return QuoteString(l.Val) }
method IsTimeLiteral (line 3778) | func (l *StringLiteral) IsTimeLiteral() bool {
method ToTimeLiteral (line 3783) | func (l *StringLiteral) ToTimeLiteral(loc *time.Location) (*TimeLitera...
type TimeLiteral (line 3809) | type TimeLiteral struct
method node (line 185) | func (*TimeLiteral) node() {}
method expr (line 303) | func (*TimeLiteral) expr() {}
method literal (line 323) | func (*TimeLiteral) literal() {}
method String (line 3814) | func (l *TimeLiteral) String() string {
type DurationLiteral (line 3819) | type DurationLiteral struct
method node (line 168) | func (*DurationLiteral) node() {}
method expr (line 295) | func (*DurationLiteral) expr() {}
method literal (line 316) | func (*DurationLiteral) literal() {}
method String (line 3824) | func (l *DurationLiteral) String() string { return FormatDuration(l.Va...
type nilLiteral (line 3828) | type nilLiteral struct
method node (line 174) | func (*nilLiteral) node() {}
method expr (line 297) | func (*nilLiteral) expr() {}
method literal (line 318) | func (*nilLiteral) literal() {}
method String (line 3831) | func (l *nilLiteral) String() string { return `nil` }
type BinaryExpr (line 3834) | type BinaryExpr struct
method node (line 163) | func (*BinaryExpr) node() {}
method expr (line 291) | func (*BinaryExpr) expr() {}
method String (line 3841) | func (e *BinaryExpr) String() string {
method validate (line 3845) | func (e *BinaryExpr) validate() error {
type binaryExprValidator (line 3856) | type binaryExprValidator struct
method Visit (line 3862) | func (v *binaryExprValidator) Visit(n Node) Visitor {
function BinaryExprName (line 3893) | func BinaryExprName(expr *BinaryExpr) string {
type binaryExprNameVisitor (line 3899) | type binaryExprNameVisitor struct
method Visit (line 3903) | func (v *binaryExprNameVisitor) Visit(n Node) Visitor {
type ParenExpr (line 3915) | type ParenExpr struct
method node (line 176) | func (*ParenExpr) node() {}
method expr (line 299) | func (*ParenExpr) expr() {}
method String (line 3920) | func (e *ParenExpr) String() string { return fmt.Sprintf("(%s)", e.Exp...
type RegexLiteral (line 3923) | type RegexLiteral struct
method node (line 177) | func (*RegexLiteral) node() {}
method expr (line 300) | func (*RegexLiteral) expr() {}
method literal (line 320) | func (*RegexLiteral) literal() {}
method String (line 3928) | func (r *RegexLiteral) String() string {
function CloneRegexLiteral (line 3936) | func CloneRegexLiteral(r *RegexLiteral) *RegexLiteral {
type Wildcard (line 3950) | type Wildcard struct
method node (line 187) | func (*Wildcard) node() {}
method expr (line 305) | func (*Wildcard) expr() {}
method String (line 3955) | func (e *Wildcard) String() string {
function CloneExpr (line 3967) | func CloneExpr(expr Expr) Expr {
function HasTimeExpr (line 4007) | func HasTimeExpr(expr Expr) bool {
function OnlyTimeExpr (line 4026) | func OnlyTimeExpr(expr Expr) bool {
function TimeRange (line 4049) | func TimeRange(expr Expr, loc *time.Location) (min, max time.Time, err e...
function TimeRangeAsEpochNano (line 4113) | func TimeRangeAsEpochNano(expr Expr) (min, max int64, err error) {
function timeExprValue (line 4134) | func timeExprValue(ref Expr, lit Expr, loc *time.Location) (t time.Time,...
type Visitor (line 4172) | type Visitor interface
function Walk (line 4177) | func Walk(v Visitor, node Node) {
function WalkFunc (line 4281) | func WalkFunc(node Node, fn func(Node)) {
type walkFuncVisitor (line 4285) | type walkFuncVisitor
method Visit (line 4287) | func (fn walkFuncVisitor) Visit(n Node) Visitor { fn(n); return fn }
type Rewriter (line 4291) | type Rewriter interface
function Rewrite (line 4297) | func Rewrite(r Rewriter, node Node) Node {
function RewriteFunc (line 4357) | func RewriteFunc(node Node, fn func(Node) Node) Node {
type rewriterFunc (line 4361) | type rewriterFunc
method Rewrite (line 4363) | func (fn rewriterFunc) Rewrite(n Node) Node { return fn(n) }
function RewriteExpr (line 4367) | func RewriteExpr(expr Expr, fn func(Expr) Expr) Expr {
function Eval (line 4396) | func Eval(expr Expr, m map[string]interface{}) interface{} {
function evalBinaryExpr (line 4423) | func evalBinaryExpr(expr *BinaryExpr, m map[string]interface{}) interfac...
function EvalBool (line 4638) | func EvalBool(expr Expr, m map[string]interface{}) bool {
type TypeMapper (line 4644) | type TypeMapper interface
type nilTypeMapper (line 4648) | type nilTypeMapper struct
method MapType (line 4650) | func (nilTypeMapper) MapType(*Measurement, string) DataType { return U...
function EvalType (line 4653) | func EvalType(expr Expr, sources Sources, typmap TypeMapper) DataType {
function FieldDimensions (line 4727) | func FieldDimensions(sources Sources, m FieldMapper) (fields map[string]...
function Reduce (line 4769) | func Reduce(expr Expr, valuer Valuer) Expr {
function reduce (line 4779) | func reduce(expr Expr, valuer Valuer) Expr {
function reduceBinaryExpr (line 4800) | func reduceBinaryExpr(expr *BinaryExpr, valuer Valuer) Expr {
function reduceBinaryExprBooleanLHS (line 4857) | func reduceBinaryExprBooleanLHS(op Token, lhs *BooleanLiteral, rhs Expr)...
function reduceBinaryExprDurationLHS (line 4882) | func reduceBinaryExprDurationLHS(op Token, lhs *DurationLiteral, rhs Exp...
function reduceBinaryExprIntegerLHS (line 4946) | func reduceBinaryExprIntegerLHS(op Token, lhs *IntegerLiteral, rhs Expr,...
function reduceBinaryExprNilLHS (line 5017) | func reduceBinaryExprNilLHS(op Token, lhs *nilLiteral, rhs Expr) Expr {
function reduceBinaryExprNumberLHS (line 5025) | func reduceBinaryExprNumberLHS(op Token, lhs *NumberLiteral, rhs Expr) E...
function reduceBinaryExprStringLHS (line 5089) | func reduceBinaryExprStringLHS(op Token, lhs *StringLiteral, rhs Expr, l...
function reduceBinaryExprTimeLHS (line 5203) | func reduceBinaryExprTimeLHS(op Token, lhs *TimeLiteral, rhs Expr, loc *...
function reduceCall (line 5253) | func reduceCall(expr *Call, valuer Valuer) Expr {
function reduceParenExpr (line 5270) | func reduceParenExpr(expr *ParenExpr, valuer Valuer) Expr {
function reduceVarRef (line 5278) | func reduceVarRef(expr *VarRef, valuer Valuer) Expr {
type Valuer (line 5309) | type Valuer interface
type ZoneValuer (line 5315) | type ZoneValuer interface
type NowValuer (line 5321) | type NowValuer struct
method Value (line 5327) | func (v *NowValuer) Value(key string) (interface{}, bool) {
method Zone (line 5335) | func (v *NowValuer) Zone() *time.Location {
function ContainsVarRef (line 5343) | func ContainsVarRef(expr Expr) bool {
type containsVarRefVisitor (line 5349) | type containsVarRefVisitor struct
method Visit (line 5353) | func (v *containsVarRefVisitor) Visit(n Node) Visitor {
function IsSelector (line 5363) | func IsSelector(expr Expr) bool {
FILE: vendor/github.com/influxdata/influxdb/influxql/ast_test.go
function BenchmarkQuery_String (line 14) | func BenchmarkQuery_String(b *testing.B) {
function TestInspectDataType (line 23) | func TestInspectDataType(t *testing.T) {
function TestDataType_String (line 45) | func TestDataType_String(t *testing.T) {
function TestDataType_LessThan (line 65) | func TestDataType_LessThan(t *testing.T) {
function TestSelectStatement_GroupByInterval (line 115) | func TestSelectStatement_GroupByInterval(t *testing.T) {
function TestSelectStatement_SetTimeRange (line 133) | func TestSelectStatement_SetTimeRange(t *testing.T) {
function TestSelect_NamesInSelect (line 233) | func TestSelect_NamesInSelect(t *testing.T) {
function TestSelect_NamesInWhere (line 242) | func TestSelect_NamesInWhere(t *testing.T) {
function TestSelectStatement_HasWildcard (line 250) | func TestSelectStatement_HasWildcard(t *testing.T) {
function TestSelectStatement_RewriteFields (line 326) | func TestSelectStatement_RewriteFields(t *testing.T) {
function TestSelectStatement_RewriteRegexConditions (line 549) | func TestSelectStatement_RewriteRegexConditions(t *testing.T) {
function TestSelectStatement_RewriteTimeFields (line 618) | func TestSelectStatement_RewriteTimeFields(t *testing.T) {
function TestSelectStatement_IsRawQuerySet (line 668) | func TestSelectStatement_IsRawQuerySet(t *testing.T) {
function TestSelectStatement_HasDerivative (line 711) | func TestSelectStatement_HasDerivative(t *testing.T) {
function TestSelectStatement_IsSimpleDerivative (line 780) | func TestSelectStatement_IsSimpleDerivative(t *testing.T) {
function TestBinaryExprName (line 839) | func TestBinaryExprName(t *testing.T) {
function TestTimeRange (line 862) | func TestTimeRange(t *testing.T) {
function TestOnlyTimeExpr (line 942) | func TestOnlyTimeExpr(t *testing.T) {
function TestRewrite (line 982) | func TestRewrite(t *testing.T) {
function TestRewriteExpr (line 1002) | func TestRewriteExpr(t *testing.T) {
function TestParseString (line 1023) | func TestParseString(t *testing.T) {
function TestEval (line 1128) | func TestEval(t *testing.T) {
type EvalFixture (line 1187) | type EvalFixture
method MapType (line 1189) | func (e EvalFixture) MapType(measurement *influxql.Measurement, field ...
function TestEvalType (line 1197) | func TestEvalType(t *testing.T) {
function TestReduce (line 1272) | func TestReduce(t *testing.T) {
function Test_fieldsNames (line 1388) | func Test_fieldsNames(t *testing.T) {
function TestSelect_ColumnNames (line 1462) | func TestSelect_ColumnNames(t *testing.T) {
function TestSelect_Privileges (line 1522) | func TestSelect_Privileges(t *testing.T) {
function TestSelect_SubqueryPrivileges (line 1549) | func TestSelect_SubqueryPrivileges(t *testing.T) {
function TestShow_Privileges (line 1582) | func TestShow_Privileges(t *testing.T) {
function TestSources_Names (line 1655) | func TestSources_Names(t *testing.T) {
function TestSources_HasSystemSource (line 1674) | func TestSources_HasSystemSource(t *testing.T) {
function TestParse_Errors (line 1700) | func TestParse_Errors(t *testing.T) {
function Test_EnforceHasDefaultDatabase (line 1724) | func Test_EnforceHasDefaultDatabase(t *testing.T) {
type Valuer (line 1818) | type Valuer
method Value (line 1821) | func (o Valuer) Value(key string) (v interface{}, ok bool) {
function MustTimeRange (line 1827) | func MustTimeRange(expr influxql.Expr) (min, max time.Time) {
function mustParseTime (line 1836) | func mustParseTime(s string) time.Time {
function BenchmarkExprNames (line 1845) | func BenchmarkExprNames(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/influxql/call_iterator.go
function NewCallIterator (line 36) | func NewCallIterator(input Iterator, opt IteratorOptions) (Iterator, err...
function newCountIterator (line 59) | func newCountIterator(input Iterator, opt IteratorOptions) (Iterator, er...
function FloatCountReduce (line 93) | func FloatCountReduce(prev *IntegerPoint, curr *FloatPoint) (int64, int6...
function IntegerCountReduce (line 101) | func IntegerCountReduce(prev, curr *IntegerPoint) (int64, int64, []inter...
function StringCountReduce (line 109) | func StringCountReduce(prev *IntegerPoint, curr *StringPoint) (int64, in...
function BooleanCountReduce (line 117) | func BooleanCountReduce(prev *IntegerPoint, curr *BooleanPoint) (int64, ...
function newMinIterator (line 125) | func newMinIterator(input Iterator, opt IteratorOptions) (Iterator, erro...
function FloatMinReduce (line 151) | func FloatMinReduce(prev, curr *FloatPoint) (int64, float64, []interface...
function IntegerMinReduce (line 159) | func IntegerMinReduce(prev, curr *IntegerPoint) (int64, int64, []interfa...
function BooleanMinReduce (line 167) | func BooleanMinReduce(prev, curr *BooleanPoint) (int64, bool, []interfac...
function newMaxIterator (line 175) | func newMaxIterator(input Iterator, opt IteratorOptions) (Iterator, erro...
function FloatMaxReduce (line 201) | func FloatMaxReduce(prev, curr *FloatPoint) (int64, float64, []interface...
function IntegerMaxReduce (line 209) | func IntegerMaxReduce(prev, curr *IntegerPoint) (int64, int64, []interfa...
function BooleanMaxReduce (line 217) | func BooleanMaxReduce(prev, curr *BooleanPoint) (int64, bool, []interfac...
function newSumIterator (line 225) | func newSumIterator(input Iterator, opt IteratorOptions) (Iterator, erro...
function FloatSumReduce (line 245) | func FloatSumReduce(prev, curr *FloatPoint) (int64, float64, []interface...
function IntegerSumReduce (line 253) | func IntegerSumReduce(prev, curr *IntegerPoint) (int64, int64, []interfa...
function newFirstIterator (line 261) | func newFirstIterator(input Iterator, opt IteratorOptions) (Iterator, er...
function FloatFirstReduce (line 293) | func FloatFirstReduce(prev, curr *FloatPoint) (int64, float64, []interfa...
function IntegerFirstReduce (line 301) | func IntegerFirstReduce(prev, curr *IntegerPoint) (int64, int64, []inter...
function StringFirstReduce (line 309) | func StringFirstReduce(prev, curr *StringPoint) (int64, string, []interf...
function BooleanFirstReduce (line 317) | func BooleanFirstReduce(prev, curr *BooleanPoint) (int64, bool, []interf...
function newLastIterator (line 325) | func newLastIterator(input Iterator, opt IteratorOptions) (Iterator, err...
function FloatLastReduce (line 357) | func FloatLastReduce(prev, curr *FloatPoint) (int64, float64, []interfac...
function IntegerLastReduce (line 365) | func IntegerLastReduce(prev, curr *IntegerPoint) (int64, int64, []interf...
function StringLastReduce (line 373) | func StringLastReduce(prev, curr *StringPoint) (int64, string, []interfa...
function BooleanLastReduce (line 381) | func BooleanLastReduce(prev, curr *BooleanPoint) (int64, bool, []interfa...
function NewDistinctIterator (line 389) | func NewDistinctIterator(input Iterator, opt IteratorOptions) (Iterator,...
function newMeanIterator (line 421) | func newMeanIterator(input Iterator, opt IteratorOptions) (Iterator, err...
function NewMedianIterator (line 441) | func NewMedianIterator(input Iterator, opt IteratorOptions) (Iterator, e...
function newMedianIterator (line 446) | func newMedianIterator(input Iterator, opt IteratorOptions) (Iterator, e...
function FloatMedianReduceSlice (line 466) | func FloatMedianReduceSlice(a []FloatPoint) []FloatPoint {
function IntegerMedianReduceSlice (line 484) | func IntegerMedianReduceSlice(a []IntegerPoint) []FloatPoint {
function NewModeIterator (line 502) | func NewModeIterator(input Iterator, opt IteratorOptions) (Iterator, err...
function FloatModeReduceSlice (line 534) | func FloatModeReduceSlice(a []FloatPoint) []FloatPoint {
function IntegerModeReduceSlice (line 568) | func IntegerModeReduceSlice(a []IntegerPoint) []IntegerPoint {
function StringModeReduceSlice (line 601) | func StringModeReduceSlice(a []StringPoint) []StringPoint {
function BooleanModeReduceSlice (line 635) | func BooleanModeReduceSlice(a []BooleanPoint) []BooleanPoint {
function newStddevIterator (line 661) | func newStddevIterator(input Iterator, opt IteratorOptions) (Iterator, e...
function FloatStddevReduceSlice (line 681) | func FloatStddevReduceSlice(a []FloatPoint) []FloatPoint {
function IntegerStddevReduceSlice (line 713) | func IntegerStddevReduceSlice(a []IntegerPoint) []FloatPoint {
function newSpreadIterator (line 739) | func newSpreadIterator(input Iterator, opt IteratorOptions) (Iterator, e...
function FloatSpreadReduceSlice (line 759) | func FloatSpreadReduceSlice(a []FloatPoint) []FloatPoint {
function IntegerSpreadReduceSlice (line 770) | func IntegerSpreadReduceSlice(a []IntegerPoint) []IntegerPoint {
function newTopIterator (line 784) | func newTopIterator(input Iterator, opt IteratorOptions, n int, keepTags...
function newBottomIterator (line 807) | func newBottomIterator(input Iterator, opt IteratorOptions, n int, keepT...
function newPercentileIterator (line 831) | func newPercentileIterator(input Iterator, opt IteratorOptions, percenti...
function NewFloatPercentileReduceSliceFunc (line 853) | func NewFloatPercentileReduceSliceFunc(percentile float64) FloatReduceSl...
function NewIntegerPercentileReduceSliceFunc (line 868) | func NewIntegerPercentileReduceSliceFunc(percentile float64) IntegerRedu...
function newDerivativeIterator (line 883) | func newDerivativeIterator(input Iterator, opt IteratorOptions, interval...
function newDifferenceIterator (line 903) | func newDifferenceIterator(input Iterator, opt IteratorOptions, isNonNeg...
function newElapsedIterator (line 923) | func newElapsedIterator(input Iterator, opt IteratorOptions, interval In...
function newMovingAverageIterator (line 955) | func newMovingAverageIterator(input Iterator, n int, opt IteratorOptions...
function newCumulativeSumIterator (line 975) | func newCumulativeSumIterator(input Iterator, opt IteratorOptions) (Iter...
function newHoltWintersIterator (line 995) | func newHoltWintersIterator(input Iterator, opt IteratorOptions, h, m in...
function NewSampleIterator (line 1015) | func NewSampleIterator(input Iterator, opt IteratorOptions, size int) (I...
function newSampleIterator (line 1020) | func newSampleIterator(input Iterator, opt IteratorOptions, size int) (I...
function newIntegralIterator (line 1052) | func newIntegralIterator(input Iterator, opt IteratorOptions, interval I...
FILE: vendor/github.com/influxdata/influxdb/influxql/call_iterator_test.go
function TestCallIterator_Count_Float (line 13) | func TestCallIterator_Count_Float(t *testing.T) {
function TestCallIterator_Count_Integer (line 48) | func TestCallIterator_Count_Integer(t *testing.T) {
function TestCallIterator_Count_String (line 83) | func TestCallIterator_Count_String(t *testing.T) {
function TestCallIterator_Count_Boolean (line 118) | func TestCallIterator_Count_Boolean(t *testing.T) {
function TestCallIterator_Min_Float (line 153) | func TestCallIterator_Min_Float(t *testing.T) {
function TestCallIterator_Min_Integer (line 187) | func TestCallIterator_Min_Integer(t *testing.T) {
function TestCallIterator_Min_Boolean (line 221) | func TestCallIterator_Min_Boolean(t *testing.T) {
function TestCallIterator_Max_Float (line 254) | func TestCallIterator_Max_Float(t *testing.T) {
function TestCallIterator_Max_Integer (line 287) | func TestCallIterator_Max_Integer(t *testing.T) {
function TestCallIterator_Max_Boolean (line 320) | func TestCallIterator_Max_Boolean(t *testing.T) {
function TestCallIterator_Sum_Float (line 353) | func TestCallIterator_Sum_Float(t *testing.T) {
function TestCallIterator_Sum_Integer (line 386) | func TestCallIterator_Sum_Integer(t *testing.T) {
function TestCallIterator_First_Float (line 419) | func TestCallIterator_First_Float(t *testing.T) {
function TestCallIterator_First_Integer (line 452) | func TestCallIterator_First_Integer(t *testing.T) {
function TestCallIterator_First_String (line 485) | func TestCallIterator_First_String(t *testing.T) {
function TestCallIterator_First_Boolean (line 518) | func TestCallIterator_First_Boolean(t *testing.T) {
function TestCallIterator_Last_Float (line 551) | func TestCallIterator_Last_Float(t *testing.T) {
function TestCallIterator_Last_Integer (line 584) | func TestCallIterator_Last_Integer(t *testing.T) {
function TestCallIterator_Last_String (line 617) | func TestCallIterator_Last_String(t *testing.T) {
function TestCallIterator_Last_Boolean (line 650) | func TestCallIterator_Last_Boolean(t *testing.T) {
function TestCallIterator_Mode_Float (line 683) | func TestCallIterator_Mode_Float(t *testing.T) {
function TestCallIterator_Mode_Integer (line 721) | func TestCallIterator_Mode_Integer(t *testing.T) {
function TestCallIterator_Mode_String (line 758) | func TestCallIterator_Mode_String(t *testing.T) {
function TestCallIterator_Mode_Boolean (line 796) | func TestCallIterator_Mode_Boolean(t *testing.T) {
function TestNewCallIterator_UnsupportedExprName (line 833) | func TestNewCallIterator_UnsupportedExprName(t *testing.T) {
function BenchmarkCountIterator_1K (line 846) | func BenchmarkCountIterator_1K(b *testing.B) { benchmarkCountIterator(...
function BenchmarkCountIterator_100K (line 847) | func BenchmarkCountIterator_100K(b *testing.B) { benchmarkCountIterator(...
function BenchmarkCountIterator_1M (line 848) | func BenchmarkCountIterator_1M(b *testing.B) { benchmarkCountIterator(...
function benchmarkCountIterator (line 850) | func benchmarkCountIterator(b *testing.B, pointN int) {
function benchmarkCallIterator (line 858) | func benchmarkCallIterator(b *testing.B, opt influxql.IteratorOptions, p...
function BenchmarkSampleIterator_1k (line 878) | func BenchmarkSampleIterator_1k(b *testing.B) { benchmarkSampleIterato...
function BenchmarkSampleIterator_100k (line 879) | func BenchmarkSampleIterator_100k(b *testing.B) { benchmarkSampleIterato...
function BenchmarkSampleIterator_1M (line 880) | func BenchmarkSampleIterator_1M(b *testing.B) { benchmarkSampleIterato...
function benchmarkSampleIterator (line 882) | func benchmarkSampleIterator(b *testing.B, pointN int) {
function BenchmarkDistinctIterator_1K (line 905) | func BenchmarkDistinctIterator_1K(b *testing.B) { benchmarkDistinctIte...
function BenchmarkDistinctIterator_100K (line 906) | func BenchmarkDistinctIterator_100K(b *testing.B) { benchmarkDistinctIte...
function BenchmarkDistinctIterator_1M (line 907) | func BenchmarkDistinctIterator_1M(b *testing.B) { benchmarkDistinctIte...
function benchmarkDistinctIterator (line 909) | func benchmarkDistinctIterator(b *testing.B, pointN int) {
function BenchmarkModeIterator_1K (line 932) | func BenchmarkModeIterator_1K(b *testing.B) { benchmarkModeIterator(b,...
function BenchmarkModeIterator_100K (line 933) | func BenchmarkModeIterator_100K(b *testing.B) { benchmarkModeIterator(b,...
function BenchmarkModeIterator_1M (line 934) | func BenchmarkModeIterator_1M(b *testing.B) { benchmarkModeIterator(b,...
function benchmarkModeIterator (line 936) | func benchmarkModeIterator(b *testing.B, pointN int) {
type FloatPointGenerator (line 959) | type FloatPointGenerator struct
method Close (line 965) | func (g *FloatPointGenerator) Close() error { return ...
method Stats (line 966) | func (g *FloatPointGenerator) Stats() influxql.IteratorStats { return ...
method Next (line 968) | func (g *FloatPointGenerator) Next() (*influxql.FloatPoint, error) {
function MustCallIterator (line 977) | func MustCallIterator(input influxql.Iterator, opt influxql.IteratorOpti...
FILE: vendor/github.com/influxdata/influxdb/influxql/cast.go
function castToFloat (line 3) | func castToFloat(v interface{}) float64 {
function castToInteger (line 14) | func castToInteger(v interface{}) int64 {
function castToString (line 25) | func castToString(v interface{}) string {
function castToBoolean (line 34) | func castToBoolean(v interface{}) bool {
FILE: vendor/github.com/influxdata/influxdb/influxql/emitter.go
type Emitter (line 11) | type Emitter struct
method Close (line 43) | func (e *Emitter) Close() error {
method Emit (line 48) | func (e *Emitter) Emit() (*models.Row, bool, error) {
method loadBuf (line 99) | func (e *Emitter) loadBuf() (t int64, name string, tags Tags, err erro...
method createRow (line 141) | func (e *Emitter) createRow(name string, tags Tags, values []interface...
method readAt (line 153) | func (e *Emitter) readAt(t int64, name string, tags Tags) []interface{} {
method readInto (line 167) | func (e *Emitter) readInto(t int64, name string, tags Tags, values []i...
method readIterator (line 191) | func (e *Emitter) readIterator(itr Iterator) (Point, error) {
function NewEmitter (line 32) | func NewEmitter(itrs []Iterator, ascending bool, chunkSize int) *Emitter {
FILE: vendor/github.com/influxdata/influxdb/influxql/emitter_test.go
function TestEmitter_Emit (line 14) | func TestEmitter_Emit(t *testing.T) {
function TestEmitter_ChunkSize (line 80) | func TestEmitter_ChunkSize(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/influxql/functions.gen.go
type FloatPointAggregator (line 16) | type FloatPointAggregator interface
type FloatBulkPointAggregator (line 21) | type FloatBulkPointAggregator interface
function AggregateFloatPoints (line 28) | func AggregateFloatPoints(a FloatPointAggregator, points []FloatPoint) {
type FloatPointEmitter (line 40) | type FloatPointEmitter interface
type FloatReduceFunc (line 45) | type FloatReduceFunc
type FloatFuncReducer (line 49) | type FloatFuncReducer struct
method AggregateFloat (line 61) | func (r *FloatFuncReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 77) | func (r *FloatFuncReducer) Emit() []FloatPoint {
function NewFloatFuncReducer (line 55) | func NewFloatFuncReducer(fn FloatReduceFunc, prev *FloatPoint) *FloatFun...
type FloatReduceSliceFunc (line 82) | type FloatReduceSliceFunc
type FloatSliceFuncReducer (line 86) | type FloatSliceFuncReducer struct
method AggregateFloat (line 98) | func (r *FloatSliceFuncReducer) AggregateFloat(p *FloatPoint) {
method AggregateFloatBulk (line 104) | func (r *FloatSliceFuncReducer) AggregateFloatBulk(points []FloatPoint) {
method Emit (line 110) | func (r *FloatSliceFuncReducer) Emit() []FloatPoint {
function NewFloatSliceFuncReducer (line 92) | func NewFloatSliceFuncReducer(fn FloatReduceSliceFunc) *FloatSliceFuncRe...
type FloatReduceIntegerFunc (line 115) | type FloatReduceIntegerFunc
type FloatFuncIntegerReducer (line 119) | type FloatFuncIntegerReducer struct
method AggregateFloat (line 131) | func (r *FloatFuncIntegerReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 147) | func (r *FloatFuncIntegerReducer) Emit() []IntegerPoint {
function NewFloatFuncIntegerReducer (line 125) | func NewFloatFuncIntegerReducer(fn FloatReduceIntegerFunc, prev *Integer...
type FloatReduceIntegerSliceFunc (line 152) | type FloatReduceIntegerSliceFunc
type FloatSliceFuncIntegerReducer (line 156) | type FloatSliceFuncIntegerReducer struct
method AggregateFloat (line 168) | func (r *FloatSliceFuncIntegerReducer) AggregateFloat(p *FloatPoint) {
method AggregateFloatBulk (line 174) | func (r *FloatSliceFuncIntegerReducer) AggregateFloatBulk(points []Flo...
method Emit (line 180) | func (r *FloatSliceFuncIntegerReducer) Emit() []IntegerPoint {
function NewFloatSliceFuncIntegerReducer (line 162) | func NewFloatSliceFuncIntegerReducer(fn FloatReduceIntegerSliceFunc) *Fl...
type FloatReduceStringFunc (line 185) | type FloatReduceStringFunc
type FloatFuncStringReducer (line 189) | type FloatFuncStringReducer struct
method AggregateFloat (line 201) | func (r *FloatFuncStringReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 217) | func (r *FloatFuncStringReducer) Emit() []StringPoint {
function NewFloatFuncStringReducer (line 195) | func NewFloatFuncStringReducer(fn FloatReduceStringFunc, prev *StringPoi...
type FloatReduceStringSliceFunc (line 222) | type FloatReduceStringSliceFunc
type FloatSliceFuncStringReducer (line 226) | type FloatSliceFuncStringReducer struct
method AggregateFloat (line 238) | func (r *FloatSliceFuncStringReducer) AggregateFloat(p *FloatPoint) {
method AggregateFloatBulk (line 244) | func (r *FloatSliceFuncStringReducer) AggregateFloatBulk(points []Floa...
method Emit (line 250) | func (r *FloatSliceFuncStringReducer) Emit() []StringPoint {
function NewFloatSliceFuncStringReducer (line 232) | func NewFloatSliceFuncStringReducer(fn FloatReduceStringSliceFunc) *Floa...
type FloatReduceBooleanFunc (line 255) | type FloatReduceBooleanFunc
type FloatFuncBooleanReducer (line 259) | type FloatFuncBooleanReducer struct
method AggregateFloat (line 271) | func (r *FloatFuncBooleanReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 287) | func (r *FloatFuncBooleanReducer) Emit() []BooleanPoint {
function NewFloatFuncBooleanReducer (line 265) | func NewFloatFuncBooleanReducer(fn FloatReduceBooleanFunc, prev *Boolean...
type FloatReduceBooleanSliceFunc (line 292) | type FloatReduceBooleanSliceFunc
type FloatSliceFuncBooleanReducer (line 296) | type FloatSliceFuncBooleanReducer struct
method AggregateFloat (line 308) | func (r *FloatSliceFuncBooleanReducer) AggregateFloat(p *FloatPoint) {
method AggregateFloatBulk (line 314) | func (r *FloatSliceFuncBooleanReducer) AggregateFloatBulk(points []Flo...
method Emit (line 320) | func (r *FloatSliceFuncBooleanReducer) Emit() []BooleanPoint {
function NewFloatSliceFuncBooleanReducer (line 302) | func NewFloatSliceFuncBooleanReducer(fn FloatReduceBooleanSliceFunc) *Fl...
type FloatDistinctReducer (line 325) | type FloatDistinctReducer struct
method AggregateFloat (line 335) | func (r *FloatDistinctReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 342) | func (r *FloatDistinctReducer) Emit() []FloatPoint {
function NewFloatDistinctReducer (line 330) | func NewFloatDistinctReducer() *FloatDistinctReducer {
type FloatElapsedReducer (line 352) | type FloatElapsedReducer struct
method AggregateFloat (line 368) | func (r *FloatElapsedReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 374) | func (r *FloatElapsedReducer) Emit() []IntegerPoint {
function NewFloatElapsedReducer (line 359) | func NewFloatElapsedReducer(interval Interval) *FloatElapsedReducer {
type FloatSampleReducer (line 385) | type FloatSampleReducer struct
method AggregateFloat (line 401) | func (r *FloatSampleReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 419) | func (r *FloatSampleReducer) Emit() []FloatPoint {
function NewFloatSampleReducer (line 393) | func NewFloatSampleReducer(size int) *FloatSampleReducer {
type IntegerPointAggregator (line 430) | type IntegerPointAggregator interface
type IntegerBulkPointAggregator (line 435) | type IntegerBulkPointAggregator interface
function AggregateIntegerPoints (line 442) | func AggregateIntegerPoints(a IntegerPointAggregator, points []IntegerPo...
type IntegerPointEmitter (line 454) | type IntegerPointEmitter interface
type IntegerReduceFloatFunc (line 459) | type IntegerReduceFloatFunc
type IntegerFuncFloatReducer (line 463) | type IntegerFuncFloatReducer struct
method AggregateInteger (line 475) | func (r *IntegerFuncFloatReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 491) | func (r *IntegerFuncFloatReducer) Emit() []FloatPoint {
function NewIntegerFuncFloatReducer (line 469) | func NewIntegerFuncFloatReducer(fn IntegerReduceFloatFunc, prev *FloatPo...
type IntegerReduceFloatSliceFunc (line 496) | type IntegerReduceFloatSliceFunc
type IntegerSliceFuncFloatReducer (line 500) | type IntegerSliceFuncFloatReducer struct
method AggregateInteger (line 512) | func (r *IntegerSliceFuncFloatReducer) AggregateInteger(p *IntegerPoin...
method AggregateIntegerBulk (line 518) | func (r *IntegerSliceFuncFloatReducer) AggregateIntegerBulk(points []I...
method Emit (line 524) | func (r *IntegerSliceFuncFloatReducer) Emit() []FloatPoint {
function NewIntegerSliceFuncFloatReducer (line 506) | func NewIntegerSliceFuncFloatReducer(fn IntegerReduceFloatSliceFunc) *In...
type IntegerReduceFunc (line 529) | type IntegerReduceFunc
type IntegerFuncReducer (line 533) | type IntegerFuncReducer struct
method AggregateInteger (line 545) | func (r *IntegerFuncReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 561) | func (r *IntegerFuncReducer) Emit() []IntegerPoint {
function NewIntegerFuncReducer (line 539) | func NewIntegerFuncReducer(fn IntegerReduceFunc, prev *IntegerPoint) *In...
type IntegerReduceSliceFunc (line 566) | type IntegerReduceSliceFunc
type IntegerSliceFuncReducer (line 570) | type IntegerSliceFuncReducer struct
method AggregateInteger (line 582) | func (r *IntegerSliceFuncReducer) AggregateInteger(p *IntegerPoint) {
method AggregateIntegerBulk (line 588) | func (r *IntegerSliceFuncReducer) AggregateIntegerBulk(points []Intege...
method Emit (line 594) | func (r *IntegerSliceFuncReducer) Emit() []IntegerPoint {
function NewIntegerSliceFuncReducer (line 576) | func NewIntegerSliceFuncReducer(fn IntegerReduceSliceFunc) *IntegerSlice...
type IntegerReduceStringFunc (line 599) | type IntegerReduceStringFunc
type IntegerFuncStringReducer (line 603) | type IntegerFuncStringReducer struct
method AggregateInteger (line 615) | func (r *IntegerFuncStringReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 631) | func (r *IntegerFuncStringReducer) Emit() []StringPoint {
function NewIntegerFuncStringReducer (line 609) | func NewIntegerFuncStringReducer(fn IntegerReduceStringFunc, prev *Strin...
type IntegerReduceStringSliceFunc (line 636) | type IntegerReduceStringSliceFunc
type IntegerSliceFuncStringReducer (line 640) | type IntegerSliceFuncStringReducer struct
method AggregateInteger (line 652) | func (r *IntegerSliceFuncStringReducer) AggregateInteger(p *IntegerPoi...
method AggregateIntegerBulk (line 658) | func (r *IntegerSliceFuncStringReducer) AggregateIntegerBulk(points []...
method Emit (line 664) | func (r *IntegerSliceFuncStringReducer) Emit() []StringPoint {
function NewIntegerSliceFuncStringReducer (line 646) | func NewIntegerSliceFuncStringReducer(fn IntegerReduceStringSliceFunc) *...
type IntegerReduceBooleanFunc (line 669) | type IntegerReduceBooleanFunc
type IntegerFuncBooleanReducer (line 673) | type IntegerFuncBooleanReducer struct
method AggregateInteger (line 685) | func (r *IntegerFuncBooleanReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 701) | func (r *IntegerFuncBooleanReducer) Emit() []BooleanPoint {
function NewIntegerFuncBooleanReducer (line 679) | func NewIntegerFuncBooleanReducer(fn IntegerReduceBooleanFunc, prev *Boo...
type IntegerReduceBooleanSliceFunc (line 706) | type IntegerReduceBooleanSliceFunc
type IntegerSliceFuncBooleanReducer (line 710) | type IntegerSliceFuncBooleanReducer struct
method AggregateInteger (line 722) | func (r *IntegerSliceFuncBooleanReducer) AggregateInteger(p *IntegerPo...
method AggregateIntegerBulk (line 728) | func (r *IntegerSliceFuncBooleanReducer) AggregateIntegerBulk(points [...
method Emit (line 734) | func (r *IntegerSliceFuncBooleanReducer) Emit() []BooleanPoint {
function NewIntegerSliceFuncBooleanReducer (line 716) | func NewIntegerSliceFuncBooleanReducer(fn IntegerReduceBooleanSliceFunc)...
type IntegerDistinctReducer (line 739) | type IntegerDistinctReducer struct
method AggregateInteger (line 749) | func (r *IntegerDistinctReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 756) | func (r *IntegerDistinctReducer) Emit() []IntegerPoint {
function NewIntegerDistinctReducer (line 744) | func NewIntegerDistinctReducer() *IntegerDistinctReducer {
type IntegerElapsedReducer (line 766) | type IntegerElapsedReducer struct
method AggregateInteger (line 782) | func (r *IntegerElapsedReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 788) | func (r *IntegerElapsedReducer) Emit() []IntegerPoint {
function NewIntegerElapsedReducer (line 773) | func NewIntegerElapsedReducer(interval Interval) *IntegerElapsedReducer {
type IntegerSampleReducer (line 799) | type IntegerSampleReducer struct
method AggregateInteger (line 815) | func (r *IntegerSampleReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 833) | func (r *IntegerSampleReducer) Emit() []IntegerPoint {
function NewIntegerSampleReducer (line 807) | func NewIntegerSampleReducer(size int) *IntegerSampleReducer {
type StringPointAggregator (line 844) | type StringPointAggregator interface
type StringBulkPointAggregator (line 849) | type StringBulkPointAggregator interface
function AggregateStringPoints (line 856) | func AggregateStringPoints(a StringPointAggregator, points []StringPoint) {
type StringPointEmitter (line 868) | type StringPointEmitter interface
type StringReduceFloatFunc (line 873) | type StringReduceFloatFunc
type StringFuncFloatReducer (line 877) | type StringFuncFloatReducer struct
method AggregateString (line 889) | func (r *StringFuncFloatReducer) AggregateString(p *StringPoint) {
method Emit (line 905) | func (r *StringFuncFloatReducer) Emit() []FloatPoint {
function NewStringFuncFloatReducer (line 883) | func NewStringFuncFloatReducer(fn StringReduceFloatFunc, prev *FloatPoin...
type StringReduceFloatSliceFunc (line 910) | type StringReduceFloatSliceFunc
type StringSliceFuncFloatReducer (line 914) | type StringSliceFuncFloatReducer struct
method AggregateString (line 926) | func (r *StringSliceFuncFloatReducer) AggregateString(p *StringPoint) {
method AggregateStringBulk (line 932) | func (r *StringSliceFuncFloatReducer) AggregateStringBulk(points []Str...
method Emit (line 938) | func (r *StringSliceFuncFloatReducer) Emit() []FloatPoint {
function NewStringSliceFuncFloatReducer (line 920) | func NewStringSliceFuncFloatReducer(fn StringReduceFloatSliceFunc) *Stri...
type StringReduceIntegerFunc (line 943) | type StringReduceIntegerFunc
type StringFuncIntegerReducer (line 947) | type StringFuncIntegerReducer struct
method AggregateString (line 959) | func (r *StringFuncIntegerReducer) AggregateString(p *StringPoint) {
method Emit (line 975) | func (r *StringFuncIntegerReducer) Emit() []IntegerPoint {
function NewStringFuncIntegerReducer (line 953) | func NewStringFuncIntegerReducer(fn StringReduceIntegerFunc, prev *Integ...
type StringReduceIntegerSliceFunc (line 980) | type StringReduceIntegerSliceFunc
type StringSliceFuncIntegerReducer (line 984) | type StringSliceFuncIntegerReducer struct
method AggregateString (line 996) | func (r *StringSliceFuncIntegerReducer) AggregateString(p *StringPoint) {
method AggregateStringBulk (line 1002) | func (r *StringSliceFuncIntegerReducer) AggregateStringBulk(points []S...
method Emit (line 1008) | func (r *StringSliceFuncIntegerReducer) Emit() []IntegerPoint {
function NewStringSliceFuncIntegerReducer (line 990) | func NewStringSliceFuncIntegerReducer(fn StringReduceIntegerSliceFunc) *...
type StringReduceFunc (line 1013) | type StringReduceFunc
type StringFuncReducer (line 1017) | type StringFuncReducer struct
method AggregateString (line 1029) | func (r *StringFuncReducer) AggregateString(p *StringPoint) {
method Emit (line 1045) | func (r *StringFuncReducer) Emit() []StringPoint {
function NewStringFuncReducer (line 1023) | func NewStringFuncReducer(fn StringReduceFunc, prev *StringPoint) *Strin...
type StringReduceSliceFunc (line 1050) | type StringReduceSliceFunc
type StringSliceFuncReducer (line 1054) | type StringSliceFuncReducer struct
method AggregateString (line 1066) | func (r *StringSliceFuncReducer) AggregateString(p *StringPoint) {
method AggregateStringBulk (line 1072) | func (r *StringSliceFuncReducer) AggregateStringBulk(points []StringPo...
method Emit (line 1078) | func (r *StringSliceFuncReducer) Emit() []StringPoint {
function NewStringSliceFuncReducer (line 1060) | func NewStringSliceFuncReducer(fn StringReduceSliceFunc) *StringSliceFun...
type StringReduceBooleanFunc (line 1083) | type StringReduceBooleanFunc
type StringFuncBooleanReducer (line 1087) | type StringFuncBooleanReducer struct
method AggregateString (line 1099) | func (r *StringFuncBooleanReducer) AggregateString(p *StringPoint) {
method Emit (line 1115) | func (r *StringFuncBooleanReducer) Emit() []BooleanPoint {
function NewStringFuncBooleanReducer (line 1093) | func NewStringFuncBooleanReducer(fn StringReduceBooleanFunc, prev *Boole...
type StringReduceBooleanSliceFunc (line 1120) | type StringReduceBooleanSliceFunc
type StringSliceFuncBooleanReducer (line 1124) | type StringSliceFuncBooleanReducer struct
method AggregateString (line 1136) | func (r *StringSliceFuncBooleanReducer) AggregateString(p *StringPoint) {
method AggregateStringBulk (line 1142) | func (r *StringSliceFuncBooleanReducer) AggregateStringBulk(points []S...
method Emit (line 1148) | func (r *StringSliceFuncBooleanReducer) Emit() []BooleanPoint {
function NewStringSliceFuncBooleanReducer (line 1130) | func NewStringSliceFuncBooleanReducer(fn StringReduceBooleanSliceFunc) *...
type StringDistinctReducer (line 1153) | type StringDistinctReducer struct
method AggregateString (line 1163) | func (r *StringDistinctReducer) AggregateString(p *StringPoint) {
method Emit (line 1170) | func (r *StringDistinctReducer) Emit() []StringPoint {
function NewStringDistinctReducer (line 1158) | func NewStringDistinctReducer() *StringDistinctReducer {
type StringElapsedReducer (line 1180) | type StringElapsedReducer struct
method AggregateString (line 1196) | func (r *StringElapsedReducer) AggregateString(p *StringPoint) {
method Emit (line 1202) | func (r *StringElapsedReducer) Emit() []IntegerPoint {
function NewStringElapsedReducer (line 1187) | func NewStringElapsedReducer(interval Interval) *StringElapsedReducer {
type StringSampleReducer (line 1213) | type StringSampleReducer struct
method AggregateString (line 1229) | func (r *StringSampleReducer) AggregateString(p *StringPoint) {
method Emit (line 1247) | func (r *StringSampleReducer) Emit() []StringPoint {
function NewStringSampleReducer (line 1221) | func NewStringSampleReducer(size int) *StringSampleReducer {
type BooleanPointAggregator (line 1258) | type BooleanPointAggregator interface
type BooleanBulkPointAggregator (line 1263) | type BooleanBulkPointAggregator interface
function AggregateBooleanPoints (line 1270) | func AggregateBooleanPoints(a BooleanPointAggregator, points []BooleanPo...
type BooleanPointEmitter (line 1282) | type BooleanPointEmitter interface
type BooleanReduceFloatFunc (line 1287) | type BooleanReduceFloatFunc
type BooleanFuncFloatReducer (line 1291) | type BooleanFuncFloatReducer struct
method AggregateBoolean (line 1303) | func (r *BooleanFuncFloatReducer) AggregateBoolean(p *BooleanPoint) {
method Emit (line 1319) | func (r *BooleanFuncFloatReducer) Emit() []FloatPoint {
function NewBooleanFuncFloatReducer (line 1297) | func NewBooleanFuncFloatReducer(fn BooleanReduceFloatFunc, prev *FloatPo...
type BooleanReduceFloatSliceFunc (line 1324) | type BooleanReduceFloatSliceFunc
type BooleanSliceFuncFloatReducer (line 1328) | type BooleanSliceFuncFloatReducer struct
method AggregateBoolean (line 1340) | func (r *BooleanSliceFuncFloatReducer) AggregateBoolean(p *BooleanPoin...
method AggregateBooleanBulk (line 1346) | func (r *BooleanSliceFuncFloatReducer) AggregateBooleanBulk(points []B...
method Emit (line 1352) | func (r *BooleanSliceFuncFloatReducer) Emit() []FloatPoint {
function NewBooleanSliceFuncFloatReducer (line 1334) | func NewBooleanSliceFuncFloatReducer(fn BooleanReduceFloatSliceFunc) *Bo...
type BooleanReduceIntegerFunc (line 1357) | type BooleanReduceIntegerFunc
type BooleanFuncIntegerReducer (line 1361) | type BooleanFuncIntegerReducer struct
method AggregateBoolean (line 1373) | func (r *BooleanFuncIntegerReducer) AggregateBoolean(p *BooleanPoint) {
method Emit (line 1389) | func (r *BooleanFuncIntegerReducer) Emit() []IntegerPoint {
function NewBooleanFuncIntegerReducer (line 1367) | func NewBooleanFuncIntegerReducer(fn BooleanReduceIntegerFunc, prev *Int...
type BooleanReduceIntegerSliceFunc (line 1394) | type BooleanReduceIntegerSliceFunc
type BooleanSliceFuncIntegerReducer (line 1398) | type BooleanSliceFuncIntegerReducer struct
method AggregateBoolean (line 1410) | func (r *BooleanSliceFuncIntegerReducer) AggregateBoolean(p *BooleanPo...
method AggregateBooleanBulk (line 1416) | func (r *BooleanSliceFuncIntegerReducer) AggregateBooleanBulk(points [...
method Emit (line 1422) | func (r *BooleanSliceFuncIntegerReducer) Emit() []IntegerPoint {
function NewBooleanSliceFuncIntegerReducer (line 1404) | func NewBooleanSliceFuncIntegerReducer(fn BooleanReduceIntegerSliceFunc)...
type BooleanReduceStringFunc (line 1427) | type BooleanReduceStringFunc
type BooleanFuncStringReducer (line 1431) | type BooleanFuncStringReducer struct
method AggregateBoolean (line 1443) | func (r *BooleanFuncStringReducer) AggregateBoolean(p *BooleanPoint) {
method Emit (line 1459) | func (r *BooleanFuncStringReducer) Emit() []StringPoint {
function NewBooleanFuncStringReducer (line 1437) | func NewBooleanFuncStringReducer(fn BooleanReduceStringFunc, prev *Strin...
type BooleanReduceStringSliceFunc (line 1464) | type BooleanReduceStringSliceFunc
type BooleanSliceFuncStringReducer (line 1468) | type BooleanSliceFuncStringReducer struct
method AggregateBoolean (line 1480) | func (r *BooleanSliceFuncStringReducer) AggregateBoolean(p *BooleanPoi...
method AggregateBooleanBulk (line 1486) | func (r *BooleanSliceFuncStringReducer) AggregateBooleanBulk(points []...
method Emit (line 1492) | func (r *BooleanSliceFuncStringReducer) Emit() []StringPoint {
function NewBooleanSliceFuncStringReducer (line 1474) | func NewBooleanSliceFuncStringReducer(fn BooleanReduceStringSliceFunc) *...
type BooleanReduceFunc (line 1497) | type BooleanReduceFunc
type BooleanFuncReducer (line 1501) | type BooleanFuncReducer struct
method AggregateBoolean (line 1513) | func (r *BooleanFuncReducer) AggregateBoolean(p *BooleanPoint) {
method Emit (line 1529) | func (r *BooleanFuncReducer) Emit() []BooleanPoint {
function NewBooleanFuncReducer (line 1507) | func NewBooleanFuncReducer(fn BooleanReduceFunc, prev *BooleanPoint) *Bo...
type BooleanReduceSliceFunc (line 1534) | type BooleanReduceSliceFunc
type BooleanSliceFuncReducer (line 1538) | type BooleanSliceFuncReducer struct
method AggregateBoolean (line 1550) | func (r *BooleanSliceFuncReducer) AggregateBoolean(p *BooleanPoint) {
method AggregateBooleanBulk (line 1556) | func (r *BooleanSliceFuncReducer) AggregateBooleanBulk(points []Boolea...
method Emit (line 1562) | func (r *BooleanSliceFuncReducer) Emit() []BooleanPoint {
function NewBooleanSliceFuncReducer (line 1544) | func NewBooleanSliceFuncReducer(fn BooleanReduceSliceFunc) *BooleanSlice...
type BooleanDistinctReducer (line 1567) | type BooleanDistinctReducer struct
method AggregateBoolean (line 1577) | func (r *BooleanDistinctReducer) AggregateBoolean(p *BooleanPoint) {
method Emit (line 1584) | func (r *BooleanDistinctReducer) Emit() []BooleanPoint {
function NewBooleanDistinctReducer (line 1572) | func NewBooleanDistinctReducer() *BooleanDistinctReducer {
type BooleanElapsedReducer (line 1594) | type BooleanElapsedReducer struct
method AggregateBoolean (line 1610) | func (r *BooleanElapsedReducer) AggregateBoolean(p *BooleanPoint) {
method Emit (line 1616) | func (r *BooleanElapsedReducer) Emit() []IntegerPoint {
function NewBooleanElapsedReducer (line 1601) | func NewBooleanElapsedReducer(interval Interval) *BooleanElapsedReducer {
type BooleanSampleReducer (line 1627) | type BooleanSampleReducer struct
method AggregateBoolean (line 1643) | func (r *BooleanSampleReducer) AggregateBoolean(p *BooleanPoint) {
method Emit (line 1661) | func (r *BooleanSampleReducer) Emit() []BooleanPoint {
function NewBooleanSampleReducer (line 1635) | func NewBooleanSampleReducer(size int) *BooleanSampleReducer {
FILE: vendor/github.com/influxdata/influxdb/influxql/functions.go
type FloatMeanReducer (line 13) | type FloatMeanReducer struct
method AggregateFloat (line 24) | func (r *FloatMeanReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 35) | func (r *FloatMeanReducer) Emit() []FloatPoint {
function NewFloatMeanReducer (line 19) | func NewFloatMeanReducer() *FloatMeanReducer {
type IntegerMeanReducer (line 44) | type IntegerMeanReducer struct
method AggregateInteger (line 55) | func (r *IntegerMeanReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 66) | func (r *IntegerMeanReducer) Emit() []FloatPoint {
function NewIntegerMeanReducer (line 50) | func NewIntegerMeanReducer() *IntegerMeanReducer {
type FloatDerivativeReducer (line 75) | type FloatDerivativeReducer struct
method AggregateFloat (line 95) | func (r *FloatDerivativeReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 108) | func (r *FloatDerivativeReducer) Emit() []FloatPoint {
function NewFloatDerivativeReducer (line 84) | func NewFloatDerivativeReducer(interval Interval, isNonNegative, ascendi...
type IntegerDerivativeReducer (line 132) | type IntegerDerivativeReducer struct
method AggregateInteger (line 152) | func (r *IntegerDerivativeReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 165) | func (r *IntegerDerivativeReducer) Emit() []FloatPoint {
function NewIntegerDerivativeReducer (line 141) | func NewIntegerDerivativeReducer(interval Interval, isNonNegative, ascen...
type FloatDifferenceReducer (line 189) | type FloatDifferenceReducer struct
method AggregateFloat (line 205) | func (r *FloatDifferenceReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 218) | func (r *FloatDifferenceReducer) Emit() []FloatPoint {
function NewFloatDifferenceReducer (line 196) | func NewFloatDifferenceReducer(isNonNegative bool) *FloatDifferenceReduc...
type IntegerDifferenceReducer (line 237) | type IntegerDifferenceReducer struct
method AggregateInteger (line 253) | func (r *IntegerDifferenceReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 266) | func (r *IntegerDifferenceReducer) Emit() []IntegerPoint {
function NewIntegerDifferenceReducer (line 244) | func NewIntegerDifferenceReducer(isNonNegative bool) *IntegerDifferenceR...
type FloatMovingAverageReducer (line 286) | type FloatMovingAverageReducer struct
method AggregateFloat (line 301) | func (r *FloatMovingAverageReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 319) | func (r *FloatMovingAverageReducer) Emit() []FloatPoint {
function NewFloatMovingAverageReducer (line 294) | func NewFloatMovingAverageReducer(n int) *FloatMovingAverageReducer {
type IntegerMovingAverageReducer (line 333) | type IntegerMovingAverageReducer struct
method AggregateInteger (line 348) | func (r *IntegerMovingAverageReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 366) | func (r *IntegerMovingAverageReducer) Emit() []FloatPoint {
function NewIntegerMovingAverageReducer (line 341) | func NewIntegerMovingAverageReducer(n int) *IntegerMovingAverageReducer {
type FloatCumulativeSumReducer (line 380) | type FloatCumulativeSumReducer struct
method AggregateFloat (line 391) | func (r *FloatCumulativeSumReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 397) | func (r *FloatCumulativeSumReducer) Emit() []FloatPoint {
function NewFloatCumulativeSumReducer (line 385) | func NewFloatCumulativeSumReducer() *FloatCumulativeSumReducer {
type IntegerCumulativeSumReducer (line 406) | type IntegerCumulativeSumReducer struct
method AggregateInteger (line 417) | func (r *IntegerCumulativeSumReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 423) | func (r *IntegerCumulativeSumReducer) Emit() []IntegerPoint {
function NewIntegerCumulativeSumReducer (line 411) | func NewIntegerCumulativeSumReducer() *IntegerCumulativeSumReducer {
type FloatHoltWintersReducer (line 435) | type FloatHoltWintersReducer struct
method aggregate (line 494) | func (r *FloatHoltWintersReducer) aggregate(time int64, value float64) {
method AggregateFloat (line 502) | func (r *FloatHoltWintersReducer) AggregateFloat(p *FloatPoint) {
method AggregateInteger (line 507) | func (r *FloatHoltWintersReducer) AggregateInteger(p *IntegerPoint) {
method roundTime (line 511) | func (r *FloatHoltWintersReducer) roundTime(t int64) int64 {
method Emit (line 523) | func (r *FloatHoltWintersReducer) Emit() []FloatPoint {
method next (line 659) | func (r *FloatHoltWintersReducer) next(alpha, beta, gamma, phi, phiH, ...
method forecast (line 668) | func (r *FloatHoltWintersReducer) forecast(h int, params []float64) []...
method sse (line 730) | func (r *FloatHoltWintersReducer) sse(params []float64) float64 {
method constrain (line 749) | func (r *FloatHoltWintersReducer) constrain(x []float64) {
constant hwWeight (line 463) | hwWeight = 0.5
constant hwDefaultEpsilon (line 465) | hwDefaultEpsilon = 1.0e-4
constant hwGuessLower (line 469) | hwGuessLower = 0.3
constant hwGuessUpper (line 471) | hwGuessUpper = 1.0
constant hwGuessStep (line 473) | hwGuessStep = 0.4
function NewFloatHoltWintersReducer (line 477) | func NewFloatHoltWintersReducer(h, m int, includeFitData bool, interval ...
type FloatIntegralReducer (line 781) | type FloatIntegralReducer struct
method AggregateFloat (line 804) | func (r *FloatIntegralReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 859) | func (r *FloatIntegralReducer) Emit() []FloatPoint {
method Close (line 873) | func (r *FloatIntegralReducer) Close() error {
function NewFloatIntegralReducer (line 794) | func NewFloatIntegralReducer(interval Interval, opt IteratorOptions) *Fl...
type IntegerIntegralReducer (line 885) | type IntegerIntegralReducer struct
method AggregateInteger (line 908) | func (r *IntegerIntegralReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 968) | func (r *IntegerIntegralReducer) Emit() []FloatPoint {
method Close (line 982) | func (r *IntegerIntegralReducer) Close() error {
function NewIntegerIntegralReducer (line 898) | func NewIntegerIntegralReducer(interval Interval, opt IteratorOptions) *...
type FloatTopReducer (line 993) | type FloatTopReducer struct
method AggregateFloat (line 1008) | func (r *FloatTopReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 1022) | func (r *FloatTopReducer) Emit() []FloatPoint {
function NewFloatTopReducer (line 997) | func NewFloatTopReducer(n int) *FloatTopReducer {
type IntegerTopReducer (line 1036) | type IntegerTopReducer struct
method AggregateInteger (line 1051) | func (r *IntegerTopReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 1065) | func (r *IntegerTopReducer) Emit() []IntegerPoint {
function NewIntegerTopReducer (line 1040) | func NewIntegerTopReducer(n int) *IntegerTopReducer {
type FloatBottomReducer (line 1079) | type FloatBottomReducer struct
method AggregateFloat (line 1094) | func (r *FloatBottomReducer) AggregateFloat(p *FloatPoint) {
method Emit (line 1108) | func (r *FloatBottomReducer) Emit() []FloatPoint {
function NewFloatBottomReducer (line 1083) | func NewFloatBottomReducer(n int) *FloatBottomReducer {
type IntegerBottomReducer (line 1122) | type IntegerBottomReducer struct
method AggregateInteger (line 1137) | func (r *IntegerBottomReducer) AggregateInteger(p *IntegerPoint) {
method Emit (line 1151) | func (r *IntegerBottomReducer) Emit() []IntegerPoint {
function NewIntegerBottomReducer (line 1126) | func NewIntegerBottomReducer(n int) *IntegerBottomReducer {
FILE: vendor/github.com/influxdata/influxdb/influxql/functions_test.go
function almostEqual (line 13) | func almostEqual(got, exp float64) bool {
function TestHoltWinters_AusTourists (line 17) | func TestHoltWinters_AusTourists(t *testing.T) {
function TestHoltWinters_AusTourists_Missing (line 103) | func TestHoltWinters_AusTourists_Missing(t *testing.T) {
function TestHoltWinters_USPopulation (line 182) | func TestHoltWinters_USPopulation(t *testing.T) {
function TestHoltWinters_USPopulation_Missing (line 255) | func TestHoltWinters_USPopulation_Missing(t *testing.T) {
function TestHoltWinters_RoundTime (line 324) | func TestHoltWinters_RoundTime(t *testing.T) {
function TestHoltWinters_MaxTime (line 360) | func TestHoltWinters_MaxTime(t *testing.T) {
function TestSample_AllSamplesSeen (line 395) | func TestSample_AllSamplesSeen(t *testing.T) {
function TestSample_SampleSizeLessThanNumPoints (line 456) | func TestSample_SampleSizeLessThanNumPoints(t *testing.T) {
function TestSample_SampleSizeGreaterThanNumPoints (line 476) | func TestSample_SampleSizeGreaterThanNumPoints(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/influxql/internal/internal.pb.go
constant _ (line 36) | _ = proto.GoGoProtoPackageIsVersion2
type Point (line 38) | type Point struct
method Reset (line 53) | func (m *Point) Reset() { *m = Point{} }
method String (line 54) | func (m *Point) String() string { return proto.CompactTextS...
method ProtoMessage (line 55) | func (*Point) ProtoMessage() {}
method Descriptor (line 56) | func (*Point) Descriptor() ([]byte, []int) { return fileDescriptorInte...
method GetName (line 58) | func (m *Point) GetName() string {
method GetTags (line 65) | func (m *Point) GetTags() string {
method GetTime (line 72) | func (m *Point) GetTime() int64 {
method GetNil (line 79) | func (m *Point) GetNil() bool {
method GetAux (line 86) | func (m *Point) GetAux() []*Aux {
method GetAggregated (line 93) | func (m *Point) GetAggregated() uint32 {
method GetFloatValue (line 100) | func (m *Point) GetFloatValue() float64 {
method GetIntegerValue (line 107) | func (m *Point) GetIntegerValue() int64 {
method GetStringValue (line 114) | func (m *Point) GetStringValue() string {
method GetBooleanValue (line 121) | func (m *Point) GetBooleanValue() bool {
method GetStats (line 128) | func (m *Point) GetStats() *IteratorStats {
type Aux (line 135) | type Aux struct
method Reset (line 144) | func (m *Aux) Reset() { *m = Aux{} }
method String (line 145) | func (m *Aux) String() string { return proto.CompactTextStr...
method ProtoMessage (line 146) | func (*Aux) ProtoMessage() {}
method Descriptor (line 147) | func (*Aux) Descriptor() ([]byte, []int) { return fileDescriptorIntern...
method GetDataType (line 149) | func (m *Aux) GetDataType() int32 {
method GetFloatValue (line 156) | func (m *Aux) GetFloatValue() float64 {
method GetIntegerValue (line 163) | func (m *Aux) GetIntegerValue() int64 {
method GetStringValue (line 170) | func (m *Aux) GetStringValue() string {
method GetBooleanValue (line 177) | func (m *Aux) GetBooleanValue() bool {
type IteratorOptions (line 184) | type IteratorOptions struct
method Reset (line 209) | func (m *IteratorOptions) Reset() { *m = IteratorOp...
method String (line 210) | func (m *IteratorOptions) String() string { return proto.Co...
method ProtoMessage (line 211) | func (*IteratorOptions) ProtoMessage() {}
method Descriptor (line 212) | func (*IteratorOptions) Descriptor() ([]byte, []int) { return fileDesc...
method GetExpr (line 214) | func (m *IteratorOptions) GetExpr() string {
method GetAux (line 221) | func (m *IteratorOptions) GetAux() []string {
method GetFields (line 228) | func (m *IteratorOptions) GetFields() []*VarRef {
method GetSources (line 235) | func (m *IteratorOptions) GetSources() []*Measurement {
method GetInterval (line 242) | func (m *IteratorOptions) GetInterval() *Interval {
method GetDimensions (line 249) | func (m *IteratorOptions) GetDimensions() []string {
method GetGroupBy (line 256) | func (m *IteratorOptions) GetGroupBy() []string {
method GetFill (line 263) | func (m *IteratorOptions) GetFill() int32 {
method GetFillValue (line 270) | func (m *IteratorOptions) GetFillValue() float64 {
method GetCondition (line 277) | func (m *IteratorOptions) GetCondition() string {
method GetStartTime (line 284) | func (m *IteratorOptions) GetStartTime() int64 {
method GetEndTime (line 291) | func (m *IteratorOptions) GetEndTime() int64 {
method GetLocation (line 298) | func (m *IteratorOptions) GetLocation() string {
method GetAscending (line 305) | func (m *IteratorOptions) GetAscending() bool {
method GetLimit (line 312) | func (m *IteratorOptions) GetLimit() int64 {
method GetOffset (line 319) | func (m *IteratorOptions) GetOffset() int64 {
method GetSLimit (line 326) | func (m *IteratorOptions) GetSLimit() int64 {
method GetSOffset (line 333) | func (m *IteratorOptions) GetSOffset() int64 {
method GetDedupe (line 340) | func (m *IteratorOptions) GetDedupe() bool {
method GetMaxSeriesN (line 347) | func (m *IteratorOptions) GetMaxSeriesN() int64 {
method GetOrdered (line 354) | func (m *IteratorOptions) GetOrdered() bool {
type Measurements (line 361) | type Measurements struct
method Reset (line 366) | func (m *Measurements) Reset() { *m = Measurements{} }
method String (line 367) | func (m *Measurements) String() string { return proto.Compa...
method ProtoMessage (line 368) | func (*Measurements) ProtoMessage() {}
method Descriptor (line 369) | func (*Measurements) Descriptor() ([]byte, []int) { return fileDescrip...
method GetItems (line 371) | func (m *Measurements) GetItems() []*Measurement {
type Measurement (line 378) | type Measurement struct
method Reset (line 387) | func (m *Measurement) Reset() { *m = Measurement{} }
method String (line 388) | func (m *Measurement) String() string { return proto.Compac...
method ProtoMessage (line 389) | func (*Measurement) ProtoMessage() {}
method Descriptor (line 390) | func (*Measurement) Descriptor() ([]byte, []int) { return fileDescript...
method GetDatabase (line 392) | func (m *Measurement) GetDatabase() string {
method GetRetentionPolicy (line 399) | func (m *Measurement) GetRetentionPolicy() string {
method GetName (line 406) | func (m *Measurement) GetName() string {
method GetRegex (line 413) | func (m *Measurement) GetRegex() string {
method GetIsTarget (line 420) | func (m *Measurement) GetIsTarget() bool {
type Interval (line 427) | type Interval struct
method Reset (line 433) | func (m *Interval) Reset() { *m = Interval{} }
method String (line 434) | func (m *Interval) String() string { return proto.CompactTe...
method ProtoMessage (line 435) | func (*Interval) ProtoMessage() {}
method Descriptor (line 436) | func (*Interval) Descriptor() ([]byte, []int) { return fileDescriptorI...
method GetDuration (line 438) | func (m *Interval) GetDuration() int64 {
method GetOffset (line 445) | func (m *Interval) GetOffset() int64 {
type IteratorStats (line 452) | type IteratorStats struct
method Reset (line 458) | func (m *IteratorStats) Reset() { *m = IteratorStat...
method String (line 459) | func (m *IteratorStats) String() string { return proto.Comp...
method ProtoMessage (line 460) | func (*IteratorStats) ProtoMessage() {}
method Descriptor (line 461) | func (*IteratorStats) Descriptor() ([]byte, []int) { return fileDescri...
method GetSeriesN (line 463) | func (m *IteratorStats) GetSeriesN() int64 {
method GetPointN (line 470) | func (m *IteratorStats) GetPointN() int64 {
type VarRef (line 477) | type VarRef struct
method Reset (line 483) | func (m *VarRef) Reset() { *m = VarRef{} }
method String (line 484) | func (m *VarRef) String() string { return proto.CompactText...
method ProtoMessage (line 485) | func (*VarRef) ProtoMessage() {}
method Descriptor (line 486) | func (*VarRef) Descriptor() ([]byte, []int) { return fileDescriptorInt...
method GetVal (line 488) | func (m *VarRef) GetVal() string {
method GetType (line 495) | func (m *VarRef) GetType() int32 {
function init (line 502) | func init() {
function init (line 513) | func init() { proto.RegisterFile("internal/internal.proto", fileDescript...
FILE: vendor/github.com/influxdata/influxdb/influxql/iterator.gen.go
constant DefaultStatsInterval (line 23) | DefaultStatsInterval = 10 * time.Second
type FloatIterator (line 26) | type FloatIterator interface
function newFloatIterators (line 34) | func newFloatIterators(itrs []Iterator) []FloatIterator {
type bufFloatIterator (line 52) | type bufFloatIterator struct
method Stats (line 63) | func (itr *bufFloatIterator) Stats() IteratorStats { return itr.itr.St...
method Close (line 66) | func (itr *bufFloatIterator) Close() error { return itr.itr.Close() }
method peek (line 69) | func (itr *bufFloatIterator) peek() (*FloatPoint, error) {
method peekTime (line 80) | func (itr *bufFloatIterator) peekTime() (int64, error) {
method Next (line 89) | func (itr *bufFloatIterator) Next() (*FloatPoint, error) {
method NextInWindow (line 100) | func (itr *bufFloatIterator) NextInWindow(startTime, endTime int64) (*...
method unread (line 112) | func (itr *bufFloatIterator) unread(v *FloatPoint) { itr.buf = v }
function newBufFloatIterator (line 58) | func newBufFloatIterator(itr FloatIterator) *bufFloatIterator {
type floatMergeIterator (line 115) | type floatMergeIterator struct
method Stats (line 153) | func (itr *floatMergeIterator) Stats() IteratorStats {
method Close (line 162) | func (itr *floatMergeIterator) Close() error {
method Next (line 173) | func (itr *floatMergeIterator) Next() (*FloatPoint, error) {
function newFloatMergeIterator (line 131) | func newFloatMergeIterator(inputs []FloatIterator, opt IteratorOptions) ...
type floatMergeHeap (line 251) | type floatMergeHeap struct
method Len (line 256) | func (h *floatMergeHeap) Len() int { return len(h.items) }
method Swap (line 257) | func (h *floatMergeHeap) Swap(i, j int) { h.items[i], h.items[j] = h.i...
method Less (line 258) | func (h *floatMergeHeap) Less(i, j int) bool {
method Push (line 291) | func (h *floatMergeHeap) Push(x interface{}) {
method Pop (line 295) | func (h *floatMergeHeap) Pop() interface{} {
type floatMergeHeapItem (line 303) | type floatMergeHeapItem struct
type floatSortedMergeIterator (line 308) | type floatSortedMergeIterator struct
method Stats (line 334) | func (itr *floatSortedMergeIterator) Stats() IteratorStats {
method Close (line 343) | func (itr *floatSortedMergeIterator) Close() error {
method Next (line 351) | func (itr *floatSortedMergeIterator) Next() (*FloatPoint, error) { ret...
method pop (line 355) | func (itr *floatSortedMergeIterator) pop() (*FloatPoint, error) {
function newFloatSortedMergeIterator (line 315) | func newFloatSortedMergeIterator(inputs []FloatIterator, opt IteratorOpt...
type floatSortedMergeHeap (line 397) | type floatSortedMergeHeap struct
method Len (line 402) | func (h *floatSortedMergeHeap) Len() int { return len(h.items) }
method Swap (line 403) | func (h *floatSortedMergeHeap) Swap(i, j int) { h.items[i], h.items[j]...
method Less (line 404) | func (h *floatSortedMergeHeap) Less(i, j int) bool {
method Push (line 424) | func (h *floatSortedMergeHeap) Push(x interface{}) {
method Pop (line 428) | func (h *floatSortedMergeHeap) Pop() interface{} {
type floatSortedMergeHeapItem (line 436) | type floatSortedMergeHeapItem struct
type floatParallelIterator (line 443) | type floatParallelIterator struct
method Stats (line 465) | func (itr *floatParallelIterator) Stats() IteratorStats { return itr.i...
method Close (line 468) | func (itr *floatParallelIterator) Close() error {
method Next (line 475) | func (itr *floatParallelIterator) Next() (*FloatPoint, error) {
method monitor (line 484) | func (itr *floatParallelIterator) monitor() {
function newFloatParallelIterator (line 453) | func newFloatParallelIterator(input FloatIterator) *floatParallelIterator {
type floatPointError (line 503) | type floatPointError struct
type floatLimitIterator (line 509) | type floatLimitIterator struct
method Stats (line 529) | func (itr *floatLimitIterator) Stats() IteratorStats { return itr.inpu...
method Close (line 532) | func (itr *floatLimitIterator) Close() error { return itr.input.Close() }
method Next (line 535) | func (itr *floatLimitIterator) Next() (*FloatPoint, error) {
function newFloatLimitIterator (line 521) | func newFloatLimitIterator(input FloatIterator, opt IteratorOptions) *fl...
type floatFillIterator (line 566) | type floatFillIterator struct
method Stats (line 615) | func (itr *floatFillIterator) Stats() IteratorStats { return itr.input...
method Close (line 616) | func (itr *floatFillIterator) Close() error { return itr.input...
method Next (line 618) | func (itr *floatFillIterator) Next() (*FloatPoint, error) {
function newFloatFillIterator (line 583) | func newFloatFillIterator(input FloatIterator, expr Expr, opt IteratorOp...
type floatIntervalIterator (line 741) | type floatIntervalIterator struct
method Stats (line 750) | func (itr *floatIntervalIterator) Stats() IteratorStats { return itr.i...
method Close (line 751) | func (itr *floatIntervalIterator) Close() error { return itr.i...
method Next (line 753) | func (itr *floatIntervalIterator) Next() (*FloatPoint, error) {
function newFloatIntervalIterator (line 746) | func newFloatIntervalIterator(input FloatIterator, opt IteratorOptions) ...
type floatInterruptIterator (line 768) | type floatInterruptIterator struct
method Stats (line 778) | func (itr *floatInterruptIterator) Stats() IteratorStats { return itr....
method Close (line 779) | func (itr *floatInterruptIterator) Close() error { return itr....
method Next (line 781) | func (itr *floatInterruptIterator) Next() (*FloatPoint, error) {
function newFloatInterruptIterator (line 774) | func newFloatInterruptIterator(input FloatIterator, closing <-chan struc...
type floatCloseInterruptIterator (line 802) | type floatCloseInterruptIterator struct
method monitor (line 819) | func (itr *floatCloseInterruptIterator) monitor() {
method Stats (line 827) | func (itr *floatCloseInterruptIterator) Stats() IteratorStats {
method Close (line 831) | func (itr *floatCloseInterruptIterator) Close() error {
method Next (line 839) | func (itr *floatCloseInterruptIterator) Next() (*FloatPoint, error) {
function newFloatCloseInterruptIterator (line 809) | func newFloatCloseInterruptIterator(input FloatIterator, closing <-chan ...
type auxFloatPoint (line 854) | type auxFloatPoint struct
type floatAuxIterator (line 860) | type floatAuxIterator struct
method Background (line 875) | func (itr *floatAuxIterator) Background() {
method Start (line 881) | func (itr *floatAuxIterator) Start() { go itr.stream() }
method Stats (line 882) | func (itr *floatAuxIterator) Stats() IteratorStats { return itr.input....
method Close (line 883) | func (itr *floatAuxIterator) Close() error { return itr.input....
method Next (line 884) | func (itr *floatAuxIterator) Next() (*FloatPoint, error) {
method Iterator (line 888) | func (itr *floatAuxIterator) Iterator(name string, typ DataType) Itera...
method stream (line 892) | func (itr *floatAuxIterator) stream() {
function newFloatAuxIterator (line 867) | func newFloatAuxIterator(input FloatIterator, opt IteratorOptions) *floa...
type floatChanIterator (line 916) | type floatChanIterator struct
method Stats (line 927) | func (itr *floatChanIterator) Stats() IteratorStats { return IteratorS...
method Close (line 929) | func (itr *floatChanIterator) Close() error {
method setBuf (line 939) | func (itr *floatChanIterator) setBuf(name string, tags Tags, time int6...
method setErr (line 973) | func (itr *floatChanIterator) setErr(err error) {
method Next (line 982) | func (itr *floatChanIterator) Next() (*FloatPoint, error) {
type floatReduceFloatIterator (line 1013) | type floatReduceFloatIterator struct
method Stats (line 1032) | func (itr *floatReduceFloatIterator) Stats() IteratorStats { return it...
method Close (line 1035) | func (itr *floatReduceFloatIterator) Close() error { return itr.input....
method Next (line 1038) | func (itr *floatReduceFloatIterator) Next() (*FloatPoint, error) {
method reduce (line 1064) | func (itr *floatReduceFloatIterator) reduce() ([]FloatPoint, error) {
function newFloatReduceFloatIterator (line 1022) | func newFloatReduceFloatIterator(input FloatIterator, opt IteratorOption...
type floatReduceFloatPoint (line 1055) | type floatReduceFloatPoint struct
type floatStreamFloatIterator (line 1173) | type floatStreamFloatIterator struct
method Stats (line 1194) | func (itr *floatStreamFloatIterator) Stats() IteratorStats { return it...
method Close (line 1197) | func (itr *floatStreamFloatIterator) Close() error { return itr.input....
method Next (line 1200) | func (itr *floatStreamFloatIterator) Next() (*FloatPoint, error) {
method reduce (line 1218) | func (itr *floatStreamFloatIterator) reduce() ([]FloatPoint, error) {
function newFloatStreamFloatIterator (line 1183) | func newFloatStreamFloatIterator(input FloatIterator, createFn func() (F...
type floatExprIterator (line 1289) | type floatExprIterator struct
method Stats (line 1315) | func (itr *floatExprIterator) Stats() IteratorStats {
method Close (line 1321) | func (itr *floatExprIterator) Close() error {
method Next (line 1327) | func (itr *floatExprIterator) Next() (*FloatPoint, error) {
method next (line 1381) | func (itr *floatExprIterator) next() (a, b *FloatPoint, err error) {
function newFloatExprIterator (line 1297) | func newFloatExprIterator(left, right FloatIterator, opt IteratorOptions...
type floatExprFunc (line 1425) | type floatExprFunc
type floatReduceIntegerIterator (line 1428) | type floatReduceIntegerIterator struct
method Stats (line 1447) | func (itr *floatReduceIntegerIterator) Stats() IteratorStats { return ...
method Close (line 1450) | func (itr *floatReduceIntegerIterator) Close() error { return itr.inpu...
method Next (line 1453) | func (itr *floatReduceIntegerIterator) Next() (*IntegerPoint, error) {
method reduce (line 1479) | func (itr *floatReduceIntegerIterator) reduce() ([]IntegerPoint, error) {
function newFloatReduceIntegerIterator (line 1437) | func newFloatReduceIntegerIterator(input FloatIterator, opt IteratorOpti...
type floatReduceIntegerPoint (line 1470) | type floatReduceIntegerPoint struct
type floatStreamIntegerIterator (line 1588) | type floatStreamIntegerIterator struct
method Stats (line 1609) | func (itr *floatStreamIntegerIterator) Stats() IteratorStats { return ...
method Close (line 1612) | func (itr *floatStreamIntegerIterator) Close() error { return itr.inpu...
method Next (line 1615) | func (itr *floatStreamIntegerIterator) Next() (*IntegerPoint, error) {
method reduce (line 1633) | func (itr *floatStreamIntegerIterator) reduce() ([]IntegerPoint, error) {
function newFloatStreamIntegerIterator (line 1598) | func newFloatStreamIntegerIterator(input FloatIterator, createFn func() ...
type floatIntegerExprIterator (line 1704) | type floatIntegerExprIterator struct
method Stats (line 1730) | func (itr *floatIntegerExprIterator) Stats() IteratorStats {
method Close (line 1736) | func (itr *floatIntegerExprIterator) Close() error {
method Next (line 1742) | func (itr *floatIntegerExprIterator) Next() (*IntegerPoint, error) {
method next (line 1800) | func (itr *floatIntegerExprIterator) next() (a, b *FloatPoint, err err...
function newFloatIntegerExprIterator (line 1712) | func newFloatIntegerExprIterator(left, right FloatIterator, opt Iterator...
type floatIntegerExprFunc (line 1844) | type floatIntegerExprFunc
type floatReduceStringIterator (line 1847) | type floatReduceStringIterator struct
method Stats (line 1866) | func (itr *floatReduceStringIterator) Stats() IteratorStats { return i...
method Close (line 1869) | func (itr *floatReduceStringIterator) Close() error { return itr.input...
method Next (line 1872) | func (itr *floatReduceStringIterator) Next() (*StringPoint, error) {
method reduce (line 1898) | func (itr *floatReduceStringIterator) reduce() ([]StringPoint, error) {
function newFloatReduceStringIterator (line 1856) | func newFloatReduceStringIterator(input FloatIterator, opt IteratorOptio...
type floatReduceStringPoint (line 1889) | type floatReduceStringPoint struct
type floatStreamStringIterator (line 2007) | type floatStreamStringIterator struct
method Stats (line 2028) | func (itr *floatStreamStringIterator) Stats() IteratorStats { return i...
method Close (line 2031) | func (itr *floatStreamStringIterator) Close() error { return itr.input...
method Next (line 2034) | func (itr *floatStreamStringIterator) Next() (*StringPoint, error) {
method reduce (line 2052) | func (itr *floatStreamStringIterator) reduce() ([]StringPoint, error) {
function newFloatStreamStringIterator (line 2017) | func newFloatStreamStringIterator(input FloatIterator, createFn func() (...
type floatStringExprIterator (line 2123) | type floatStringExprIterator struct
method Stats (line 2149) | func (itr *floatStringExprIterator) Stats() IteratorStats {
method Close (line 2155) | func (itr *floatStringExprIterator) Close() error {
method Next (line 2161) | func (itr *floatStringExprIterator) Next() (*StringPoint, error) {
method next (line 2219) | func (itr *floatStringExprIterator) next() (a, b *FloatPoint, err erro...
function newFloatStringExprIterator (line 2131) | func newFloatStringExprIterator(left, right FloatIterator, opt IteratorO...
type floatStringExprFunc (line 2263) | type floatStringExprFunc
type floatReduceBooleanIterator (line 2266) | type floatReduceBooleanIterator struct
method Stats (line 2285) | func (itr *floatReduceBooleanIterator) Stats() IteratorStats { return ...
method Close (line 2288) | func (itr *floatReduceBooleanIterator) Close() error { return itr.inpu...
method Next (line 2291) | func (itr *floatReduceBooleanIterator) Next() (*BooleanPoint, error) {
method reduce (line 2317) | func (itr *floatReduceBooleanIterator) reduce() ([]BooleanPoint, error) {
function newFloatReduceBooleanIterator (line 2275) | func newFloatReduceBooleanIterator(input FloatIterator, opt IteratorOpti...
type floatReduceBooleanPoint (line 2308) | type floatReduceBooleanPoint struct
type floatStreamBooleanIterator (line 2426) | type floatStreamBooleanIterator struct
method Stats (line 2447) | func (itr *floatStreamBooleanIterator) Stats() IteratorStats { return ...
method Close (line 2450) | func (itr *floatStreamBooleanIterator) Close() error { return itr.inpu...
method Next (line 2453) | func (itr *floatStreamBooleanIterator) Next() (*BooleanPoint, error) {
method reduce (line 2471) | func (itr *floatStreamBooleanIterator) reduce() ([]BooleanPoint, error) {
function newFloatStreamBooleanIterator (line 2436) | func newFloatStreamBooleanIterator(input FloatIterator, createFn func() ...
type floatBooleanExprIterator (line 2542) | type floatBooleanExprIterator struct
method Stats (line 2568) | func (itr *floatBooleanExprIterator) Stats() IteratorStats {
method Close (line 2574) | func (itr *floatBooleanExprIterator) Close() error {
method Next (line 2580) | func (itr *floatBooleanExprIterator) Next() (*BooleanPoint, error) {
method next (line 2638) | func (itr *floatBooleanExprIterator) next() (a, b *FloatPoint, err err...
function newFloatBooleanExprIterator (line 2550) | func newFloatBooleanExprIterator(left, right FloatIterator, opt Iterator...
type floatBooleanExprFunc (line 2682) | type floatBooleanExprFunc
type floatTransformIterator (line 2686) | type floatTransformIterator struct
method Stats (line 2692) | func (itr *floatTransformIterator) Stats() IteratorStats { return itr....
method Close (line 2695) | func (itr *floatTransformIterator) Close() error { return itr.input.Cl...
method Next (line 2698) | func (itr *floatTransformIterator) Next() (*FloatPoint, error) {
type floatTransformFunc (line 2711) | type floatTransformFunc
type floatBoolTransformIterator (line 2715) | type floatBoolTransformIterator struct
method Stats (line 2721) | func (itr *floatBoolTransformIterator) Stats() IteratorStats { return ...
method Close (line 2724) | func (itr *floatBoolTransformIterator) Close() error { return itr.inpu...
method Next (line 2727) | func (itr *floatBoolTransformIterator) Next() (*BooleanPoint, error) {
type floatBoolTransformFunc (line 2740) | type floatBoolTransformFunc
type floatDedupeIterator (line 2746) | type floatDedupeIterator struct
method Stats (line 2883) | func (itr *floatDedupeIterator) Stats() IteratorStats { return itr.inp...
method Close (line 2886) | func (itr *floatDedupeIterator) Close() error { return itr.input.Close...
method Next (line 2889) | func (itr *floatDedupeIterator) Next() (*FloatPoint, error) {
type floatIteratorMapper (line 2751) | type floatIteratorMapper struct
method Next (line 2773) | func (itr *floatIteratorMapper) Next() (*FloatPoint, error) {
method Stats (line 2803) | func (itr *floatIteratorMapper) Stats() IteratorStats {
method Close (line 2811) | func (itr *floatIteratorMapper) Close() error {
function newFloatIteratorMapper (line 2759) | func newFloatIteratorMapper(itrs []Iterator, driver IteratorMap, fields ...
type floatFilterIterator (line 2815) | type floatFilterIterator struct
method Stats (line 2850) | func (itr *floatFilterIterator) Stats() IteratorStats { return itr.inp...
method Close (line 2851) | func (itr *floatFilterIterator) Close() error { return itr.inp...
method Next (line 2853) | func (itr *floatFilterIterator) Next() (*FloatPoint, error) {
function newFloatFilterIterator (line 2822) | func newFloatFilterIterator(input FloatIterator, cond Expr, opt Iterator...
function newFloatDedupeIterator (line 2875) | func newFloatDedupeIterator(input FloatIterator) *floatDedupeIterator {
type floatReaderIterator (line 2915) | type floatReaderIterator struct
method Stats (line 2932) | func (itr *floatReaderIterator) Stats() IteratorStats { return itr.dec...
method Close (line 2935) | func (itr *floatReaderIterator) Close() error {
method Next (line 2943) | func (itr *floatReaderIterator) Next() (*FloatPoint, error) {
function newFloatReaderIterator (line 2921) | func newFloatReaderIterator(r io.Reader, stats IteratorStats) *floatRead...
type IntegerIterator (line 2957) | type IntegerIterator interface
function newIntegerIterators (line 2965) | func newIntegerIterators(itrs []Iterator) []IntegerIterator {
type bufIntegerIterator (line 2980) | type bufIntegerIterator struct
method Stats (line 2991) | func (itr *bufIntegerIterator) Stats() IteratorStats { return itr.itr....
method Close (line 2994) | func (itr *bufIntegerIterator) Close() error { return itr.itr.Close() }
method peek (line 2997) | func (itr *bufIntegerIterator) peek() (*IntegerPoint, error) {
method peekTime (line 3008) | func (itr *bufIntegerIterator) peekTime() (int64, error) {
method Next (line 3017) | func (itr *bufIntegerIterator) Next() (*IntegerPoint, error) {
method NextInWindow (line 3028) | func (itr *bufIntegerIterator) NextInWindow(startTime, endTime int64) ...
method unread (line 3040) | func (itr *bufIntegerIterator) unread(v *IntegerPoint) { itr.buf = v }
function newBufIntegerIterator (line 2986) | func newBufIntegerIterator(itr IntegerIterator) *bufIntegerIterator {
type integerMergeIterator (line 3043) | type integerMergeIterator struct
method Stats (line 3081) | func (itr *integerMergeIterator) Stats() IteratorStats {
method Close (line 3090) | func (itr *integerMergeIterator) Close() error {
method Next (line 3101) | func (itr *integerMergeIterator) Next() (*IntegerPoint, error) {
function newIntegerMergeIterator (line 3059) | func newIntegerMergeIterator(inputs []IntegerIterator, opt IteratorOptio...
type integerMergeHeap (line 3179) | type integerMergeHeap struct
method Len (line 3184) | func (h *integerMergeHeap) Len() int { return len(h.items) }
method Swap (line 3185) | func (h *integerMergeHeap) Swap(i, j int) { h.items[i], h.items[j] = h...
method Less (line 3186) | func (h *integerMergeHeap) Less(i, j int) bool {
method Push (line 3219) | func (h *integerMergeHeap) Push(x interface{}) {
method Pop (line 3223) | func (h *integerMergeHeap) Pop() interface{} {
type integerMergeHeapItem (line 3231) | type integerMergeHeapItem struct
type integerSortedMergeIterator (line 3236) | type integerSortedMergeIterator struct
method Stats (line 3262) | func (itr *integerSortedMergeIterator) Stats() IteratorStats {
method Close (line 3271) | func (itr *integerSortedMergeIterator) Close() error {
method Next (line 3279) | func (itr *integerSortedMergeIterator) Next() (*IntegerPoint, error) {...
method pop (line 3283) | func (itr *integerSortedMergeIterator) pop() (*IntegerPoint, error) {
function newIntegerSortedMergeIterator (line 3243) | func newIntegerSortedMergeIterator(inputs []IntegerIterator, opt Iterato...
type integerSortedMergeHeap (line 3325) | type integerSortedMergeHeap struct
method Len (line 3330) | func (h *integerSortedMergeHeap) Len() int { return len(h.items) }
method Swap (line 3331) | func (h *integerSortedMergeHeap) Swap(i, j int) { h.items[i], h.items[...
method Less (line 3332) | func (h *integerSortedMergeHeap) Less(i, j int) bool {
method Push (line 3352) | func (h *integerSortedMergeHeap) Push(x interface{}) {
method Pop (line 3356) | func (h *integerSortedMergeHeap) Pop() interface{} {
type integerSortedMergeHeapItem (line 3364) | type integerSortedMergeHeapItem struct
type integerParallelIterator (line 3371) | type integerParallelIterator struct
method Stats (line 3393) | func (itr *integerParallelIterator) Stats() IteratorStats { return itr...
method Close (line 3396) | func (itr *integerParallelIterator) Close() error {
method Next (line 3403) | func (itr *integerParallelIterator) Next() (*IntegerPoint, error) {
method monitor (line 3412) | func (itr *integerParallelIterator) monitor() {
function newIntegerParallelIterator (line 3381) | func newIntegerParallelIterator(input IntegerIterator) *integerParallelI...
type integerPointError (line 3431) | type integerPointError struct
type integerLimitIterator (line 3437) | type integerLimitIterator struct
method Stats (line 3457) | func (itr *integerLimitIterator) Stats() IteratorStats { return itr.in...
method Close (line 3460) | func (itr *integerLimitIterator) Close() error { return itr.input.Clos...
method Next (line 3463) | func (itr *integerLimitIterator) Next() (*IntegerPoint, error) {
function newIntegerLimitIterator (line 3449) | func newIntegerLimitIterator(input IntegerIterator, opt IteratorOptions)...
type integerFillIterator (line 3494) | type integerFillIterator struct
method Stats (line 3543) | func (itr *integerFillIterator) Stats() IteratorStats { return itr.inp...
method Close (line 3544) | func (itr *integerFillIterator) Close() error { return itr.inp...
method Next (line 3546) | func (itr *integerFillIterator) Next() (*IntegerPoint, error) {
function newIntegerFillIterator (line 3511) | func newIntegerFillIterator(input IntegerIterator, expr Expr, opt Iterat...
type integerIntervalIterator (line 3669) | type integerIntervalIterator struct
method Stats (line 3678) | func (itr *integerIntervalIterator) Stats() IteratorStats { return itr...
method Close (line 3679) | func (itr *integerIntervalIterator) Close() error { return itr...
method Next (line 3681) | func (itr *integerIntervalIterator) Next() (*IntegerPoint, error) {
function newIntegerIntervalIterator (line 3674) | func newIntegerIntervalIterator(input IntegerIterator, opt IteratorOptio...
type integerInterruptIterator (line 3696) | type integerInterruptIterator struct
method Stats (line 3706) | func (itr *integerInterruptIterator) Stats() IteratorStats { return it...
method Close (line 3707) | func (itr *integerInterruptIterator) Close() error { return it...
method Next (line 3709) | func (itr *integerInterruptIterator) Next() (*IntegerPoint, error) {
function newIntegerInterruptIterator (line 3702) | func newIntegerInterruptIterator(input IntegerIterator, closing <-chan s...
type integerCloseInterruptIterator (line 3730) | type integerCloseInterruptIterator struct
method monitor (line 3747) | func (itr *integerCloseInterruptIterator) monitor() {
method Stats (line 3755) | func (itr *integerCloseInterruptIterator) Stats() IteratorStats {
method Close (line 3759) | func (itr *integerCloseInterruptIterator) Close() error {
method Next (line 3767) | func (itr *integerCloseInterruptIterator) Next() (*IntegerPoint, error) {
function newIntegerCloseInterruptIterator (line 3737) | func newIntegerCloseInterruptIterator(input IntegerIterator, closing <-c...
type auxIntegerPoint (line 3782) | type auxIntegerPoint struct
type integerAuxIterator (line 3788) | type integerAuxIterator struct
method Background (line 3803) | func (itr *integerAuxIterator) Background() {
method Start (line 3809) | func (itr *integerAuxIterator) Start() { go itr.stream() }
method Stats (line 3810) | func (itr *integerAuxIterator) Stats() IteratorStats { return itr.inpu...
method Close (line 3811) | func (itr *integerAuxIterator) Close() error { return itr.inpu...
method Next (line 3812) | func (itr *integerAuxIterator) Next() (*IntegerPoint, error) {
method Iterator (line 3816) | func (itr *integerAuxIterator) Iterator(name string, typ DataType) Ite...
method stream (line 3820) | func (itr *integerAuxIterator) stream() {
function newIntegerAuxIterator (line 3795) | func newIntegerAuxIterator(input IntegerIterator, opt IteratorOptions) *...
type integerChanIterator (line 3844) | type integerChanIterator struct
method Stats (line 3855) | func (itr *integerChanIterator) Stats() IteratorStats { return Iterato...
method Close (line 3857) | func (itr *integerChanIterator) Close() error {
method setBuf (line 3867) | func (itr *integerChanIterator) setBuf(name string, tags Tags, time in...
method setErr (line 3898) | func (itr *integerChanIterator) setErr(err error) {
method Next (line 3907) | func (itr *integerChanIterator) Next() (*IntegerPoint, error) {
type integerReduceFloatIterator (line 3938) | type integerReduceFloatIterator struct
method Stats (line 3957) | func (itr *integerReduceFloatIterator) Stats() IteratorStats { return ...
method Close (line 3960) | func (itr *integerReduceFloatIterator) Close() error { return itr.inpu...
method Next (line 3963) | func (itr *integerReduceFloatIterator) Next() (*FloatPoint, error) {
method reduce (line 3989) | func (itr *integerReduceFloatIterator) reduce() ([]FloatPoint, error) {
function newIntegerReduceFloatIterator (line 3947) | func newIntegerReduceFloatIterator(input IntegerIterator, opt IteratorOp...
type integerReduceFloatPoint (line 3980) | type integerReduceFloatPoint struct
type integerStreamFloatIterator (line 4098) | type integerStreamFloatIterator struct
method Stats (line 4119) | func (itr *integerStreamFloatIterator) Stats() IteratorStats { return ...
method Close (line 4122) | func (itr *integerStreamFloatIterator) Close() error { return itr.inpu...
method Next (line 4125) | func (itr *integerStreamFloatIterator) Next() (*FloatPoint, error) {
method reduce (line 4143) | func (itr *integerStreamFloatIterator) reduce() ([]FloatPoint, error) {
function newIntegerStreamFloatIterator (line 4108) | func newIntegerStreamFloatIterator(input IntegerIterator, createFn func(...
type integerFloatExprIterator (line 4214) | type integerFloatExprIterator struct
method Stats (line 4240) | func (itr *integerFloatExprIterator) Stats() IteratorStats {
method Close (line 4246) | func (itr *integerFloatExprIterator) Close() error {
method Next (line 4252) | func (itr *integerFloatExprIterator) Next() (*FloatPoint, error) {
method next (line 4310) | func (itr *integerFloatExprIterator) next() (a, b *IntegerPoint, err e...
function newIntegerFloatExprIterator (line 4222) | func newIntegerFloatExprIterator(left, right IntegerIterator, opt Iterat...
type integerFloatExprFunc (line 4354) | type integerFloatExprFunc
type integerReduceIntegerIterator (line 4357) | type integerReduceIntegerIterator struct
method Stats (line 4376) | func (itr *integerReduceIntegerIterator) Stats() IteratorStats { retur...
method Close (line 4379) | func (itr *integerReduceIntegerIterator) Close() error { return itr.in...
method Next (line 4382) | func (itr *integerReduceIntegerIterator) Next() (*IntegerPoint, error) {
method reduce (line 4408) | func (itr *integerReduceIntegerIterator) reduce() ([]IntegerPoint, err...
function newIntegerReduceIntegerIterator (line 4366) | func newIntegerReduceIntegerIterator(input IntegerIterator, opt Iterator...
type integerReduceIntegerPoint (line 4399) | type integerReduceIntegerPoint struct
type integerStreamIntegerIterator (line 4517) | type integerStreamIntegerIterator struct
method Stats (line 4538) | func (itr *integerStreamIntegerIterator) Stats() IteratorStats { retur...
method Close (line 4541) | func (itr *integerStreamIntegerIterator) Close() error { return itr.in...
method Next (line 4544) | func (itr *integerStreamIntegerIterator) Next() (*IntegerPoint, error) {
method reduce (line 4562) | func (itr *integerStreamIntegerIterator) reduce() ([]IntegerPoint, err...
function newIntegerStreamIntegerIterator (line 4527) | func newIntegerStreamIntegerIterator(input IntegerIterator, createFn fun...
type integerExprIterator (line 4633) | type integerExprIterator struct
method Stats (line 4659) | func (itr *integerExprIterator) Stats() IteratorStats {
method Close (line 4665) | func (itr *integerExprIterator) Close() error {
method Next (line 4671) | func (itr *integerExprIterator) Next() (*IntegerPoint, error) {
method next (line 4725) | func (itr *integerExprIterator) next() (a, b *IntegerPoint, err error) {
function newIntegerExprIterator (line 4641) | func newIntegerExprIterator(left, right IntegerIterator, opt IteratorOpt...
type integerExprFunc (line 4769) | type integerExprFunc
type integerReduceStringIterator (line 4772) | type integerReduceStringIterator struct
method Stats (line 4791) | func (itr *integerReduceStringIterator) Stats() IteratorStats { return...
method Close (line 4794) | func (itr *integerReduceStringIterator) Close() error { return itr.inp...
method Next (line 4797) | func (itr *integerReduceStringIterator) Next() (*StringPoint, error) {
method reduce (line 4823) | func (itr *integerReduceStringIterator) reduce() ([]StringPoint, error) {
function newIntegerReduceStringIterator (line 4781) | func newIntegerReduceStringIterator(input IntegerIterator, opt IteratorO...
type integerReduceStringPoint (line 4814) | type integerReduceStringPoint struct
type integerStreamStringIterator (line 4932) | type integerStreamStringIterator struct
method Stats (line 4953) | func (itr *integerStreamStringIterator) Stats() IteratorStats { return...
method Close (line 4956) | func (itr *integerStreamStringIterator) Close() error { return itr.inp...
method Next (line 4959) | func (itr *integerStreamStringIterator) Next() (*StringPoint, error) {
method reduce (line 4977) | func (itr *integerStreamStringIterator) reduce() ([]StringPoint, error) {
function newIntegerStreamStringIterator (line 4942) | func newIntegerStreamStringIterator(input IntegerIterator, createFn func...
type integerStringExprIterator (line 5048) | type integerStringExprIterator struct
method Stats (line 5074) | func (itr *integerStringExprIterator) Stats() IteratorStats {
method Close (line 5080) | func (itr *integerStringExprIterator) Close() error {
method Next (line 5086) | func (itr *integerStringExprIterator) Next() (*StringPoint, error) {
method next (line 5144) | func (itr *integerStringExprIterator) next() (a, b *IntegerPoint, err ...
function newIntegerStringExprIterator (line 5056) | func newIntegerStringExprIterator(left, right IntegerIterator, opt Itera...
type integerStringExprFunc (line 5188) | type integerStringExprFunc
type integerReduceBooleanIterator (line 5191) | type integerReduceBooleanIterator struct
method Stats (line 5210) | func (itr *integerReduceBooleanIterator) Stats() IteratorStats { retur...
method Close (line 5213) | func (itr *integerReduceBooleanIterator) Close() error { return itr.in...
method Next (line 5216) | func (itr *integerReduceBooleanIterator) Next() (*BooleanPoint, error) {
method reduce (line 5242) | func (itr *integerReduceBooleanIterator) reduce() ([]BooleanPoint, err...
function newIntegerReduceBooleanIterator (line 5200) | func newIntegerReduceBooleanIterator(input IntegerIterator, opt Iterator...
type integerReduceBooleanPoint (line 5233) | type integerReduceBooleanPoint struct
type integerStreamBooleanIterator (line 5351) | type integerStreamBooleanIterator struct
method Stats (line 5372) | func (itr *integerStreamBooleanIterator) Stats() IteratorStats { retur...
method Close (line 5375) | func (itr *integerStreamBooleanIterator) Close() error { return itr.in...
method Next (line 5378) | func (itr *integerStreamBooleanIterator) Next() (*BooleanPoint, error) {
method reduce (line 5396) | func (itr *integerStreamBooleanIterator) reduce() ([]BooleanPoint, err...
function newIntegerStreamBooleanIterator (line 5361) | func newIntegerStreamBooleanIterator(input IntegerIterator, createFn fun...
type integerBooleanExprIterator (line 5467) | type integerBooleanExprIterator struct
method Stats (line 5493) | func (itr *integerBooleanExprIterator) Stats() IteratorStats {
method Close (line 5499) | func (itr *integerBooleanExprIterator) Close() error {
method Next (line 5505) | func (itr *integerBooleanExprIterator) Next() (*BooleanPoint, error) {
method next (line 5563) | func (itr *integerBooleanExprIterator) next() (a, b *IntegerPoint, err...
function newIntegerBooleanExprIterator (line 5475) | func newIntegerBooleanExprIterator(left, right IntegerIterator, opt Iter...
type integerBooleanExprFunc (line 5607) | type integerBooleanExprFunc
type integerTransformIterator (line 5611) | type integerTransformIterator struct
method Stats (line 5617) | func (itr *integerTransformIterator) Stats() IteratorStats { return it...
method Close (line 5620) | func (itr *integerTransformIterator) Close() error { return itr.input....
method Next (line 5623) | func (itr *integerTransformIterator) Next() (*IntegerPoint, error) {
type integerTransformFunc (line 5636) | type integerTransformFunc
type integerBoolTransformIterator (line 5640) | type integerBoolTransformIterator struct
method Stats (line 5646) | func (itr *integerBoolTransformIterator) Stats() IteratorStats { retur...
method Close (line 5649) | func (itr *integerBoolTransformIterator) Close() error { return itr.in...
method Next (line 5652) | func (itr *integerBoolTransformIterator) Next() (*BooleanPoint, error) {
type integerBoolTransformFunc (line 5665) | type integerBoolTransformFunc
type integerDedupeIterator (line 5671) | type integerDedupeIterator struct
method Stats (line 5808) | func (itr *integerDedupeIterator) Stats() IteratorStats { return itr.i...
method Close (line 5811) | func (itr *integerDedupeIterator) Close() error { return itr.input.Clo...
method Next (line 5814) | func (itr *integerDedupeIterator) Next() (*IntegerPoint, error) {
type integerIteratorMapper (line 5676) | type integerIteratorMapper struct
method Next (line 5698) | func (itr *integerIteratorMapper) Next() (*IntegerPoint, error) {
method Stats (line 5728) | func (itr *integerIteratorMapper) Stats() IteratorStats {
method Close (line 5736) | func (itr *integerIteratorMapper) Close() error {
function newIntegerIteratorMapper (line 5684) | func newIntegerIteratorMapper(itrs []Iterator, driver IteratorMap, field...
type integerFilterIterator (line 5740) | type integerFilterIterator struct
method Stats (line 5775) | func (itr *integerFilterIterator) Stats() IteratorStats { return itr.i...
method Close (line 5776) | func (itr *integerFilterIterator) Close() error { return itr.i...
method Next (line 5778) | func (itr *integerFilterIterator) Next() (*IntegerPoint, error) {
function newIntegerFilterIterator (line 5747) | func newIntegerFilterIterator(input IntegerIterator, cond Expr, opt Iter...
function newIntegerDedupeIterator (line 5800) | func newIntegerDedupeIterator(input IntegerIterator) *integerDedupeItera...
type integerReaderIterator (line 5840) | type integerReaderIterator struct
method Stats (line 5857) | func (itr *integerReaderIterator) Stats() IteratorStats { return itr.d...
method Close (line 5860) | func (itr *integerReaderIterator) Close() error {
method Next (line 5868) | func (itr *integerReaderIterator) Next() (*IntegerPoint, error) {
function newIntegerReaderIterator (line 5846) | func newIntegerReaderIterator(r io.Reader, stats IteratorStats) *integer...
type StringIterator (line 5882) | type StringIterator interface
function newStringIterators (line 5890) | func newStringIterators(itrs []Iterator) []StringIterator {
type bufStringIterator (line 5905) | type bufStringIterator struct
method Stats (line 5916) | func (itr *bufStringIterator) Stats() IteratorStats { return itr.itr.S...
method Close (line 5919) | func (itr *bufStringIterator) Close() error { return itr.itr.Close() }
method peek (line 5922) | func (itr *bufStringIterator) peek() (*StringPoint, error) {
method peekTime (line 5933) | func (itr *bufStringIterator) peekTime() (int64, error) {
method Next (line 5942) | func (itr *bufStringIterator) Next() (*StringPoint, error) {
method NextInWindow (line 5953) | func (itr *bufStringIterator) NextInWindow(startTime, endTime int64) (...
method unread (line 5965) | func (itr *bufStringIterator) unread(v *StringPoint) { itr.buf = v }
function newBufStringIterator (line 5911) | func newBufStringIterator(itr StringIterator) *bufStringIterator {
type stringMergeIterator (line 5968) | type stringMergeIterator struct
method Stats (line 6006) | func (itr *stringMergeIterator) Stats() IteratorStats {
method Close (line 6015) | func (itr *stringMergeIterator) Close() error {
method Next (line 6026) | func (itr *stringMergeIterator) Next() (*StringPoint, error) {
function newStringMergeIterator (line 5984) | func newStringMergeIterator(inputs []StringIterator, opt IteratorOptions...
type stringMergeHeap (line 6104) | type stringMergeHeap struct
method Len (line 6109) | func (h *stringMergeHeap) Len() int { return len(h.items) }
method Swap (line 6110) | func (h *stringMergeHeap) Swap(i, j int) { h.items[i], h.items[j] = h....
method Less (line 6111) | func (h *stringMergeHeap) Less(i, j int) bool {
method Push (line 6144) | func (h *stringMergeHeap) Push(x interface{}) {
method Pop (line 6148) | func (h *stringMergeHeap) Pop() interface{} {
type stringMergeHeapItem (line 6156) | type stringMergeHeapItem struct
type stringSortedMergeIterator (line 6161) | type stringSortedMergeIterator struct
method Stats (line 6187) | func (itr *stringSortedMergeIterator) Stats() IteratorStats {
method Close (line 6196) | func (itr *stringSortedMergeIterator) Close() error {
method Next (line 6204) | func (itr *stringSortedMergeIterator) Next() (*StringPoint, error) { r...
method pop (line 6208) | func (itr *stringSortedMergeIterator) pop() (*StringPoint, error) {
function newStringSortedMergeIterator (line 6168) | func newStringSortedMergeIterator(inputs []StringIterator, opt IteratorO...
type stringSortedMergeHeap (line 6250) | type stringSortedMergeHeap struct
method Len (line 6255) | func (h *stringSortedMergeHeap) Len() int { return len(h.items) }
method Swap (line 6256) | func (h *stringSortedMergeHeap) Swap(i, j int) { h.items[i], h.items[j...
method Less (line 6257) | func (h *stringSortedMergeHeap) Less(i, j int) bool {
method Push (line 6277) | func (h *stringSortedMergeHeap) Push(x interface{}) {
method Pop (line 6281) | func (h *stringSortedMergeHeap) Pop() interface{} {
type stringSortedMergeHeapItem (line 6289) | type stringSortedMergeHeapItem struct
type stringParallelIterator (line 6296) | type stringParallelIterator struct
method Stats (line 6318) | func (itr *stringParallelIterator) Stats() IteratorStats { return itr....
method Close (line 6321) | func (itr *stringParallelIterator) Close() error {
method Next (line 6328) | func (itr *stringParallelIterator) Next() (*StringPoint, error) {
method monitor (line 6337) | func (itr *stringParallelIterator) monitor() {
function newStringParallelIterator (line 6306) | func newStringParallelIterator(input StringIterator) *stringParallelIter...
type stringPointError (line 6356) | type stringPointError struct
type stringLimitIterator (line 6362) | type stringLimitIterator struct
method Stats (line 6382) | func (itr *stringLimitIterator) Stats() IteratorStats { return itr.inp...
method Close (line 6385) | func (itr *stringLimitIterator) Close() error { return itr.input.Close...
method Next (line 6388) | func (itr *stringLimitIterator) Next() (*StringPoint, error) {
function newStringLimitIterator (line 6374) | func newStringLimitIterator(input StringIterator, opt IteratorOptions) *...
type stringFillIterator (line 6419) | type stringFillIterator struct
method Stats (line 6468) | func (itr *stringFillIterator) Stats() IteratorStats { return itr.inpu...
method Close (line 6469) | func (itr *stringFillIterator) Close() error { return itr.inpu...
method Next (line 6471) | func (itr *stringFillIterator) Next() (*StringPoint, error) {
function newStringFillIterator (line 6436) | func newStringFillIterator(input StringIterator, expr Expr, opt Iterator...
type stringIntervalIterator (line 6580) | type stringIntervalIterator struct
method Stats (line 6589) | func (itr *stringIntervalIterator) Stats() IteratorStats { return itr....
method Close (line 6590) | func (itr *stringIntervalIterator) Close() error { return itr....
method Next (line 6592) | func (itr *stringIntervalIterator) Next() (*StringPoint, error) {
function newStringIntervalIterator (line 6585) | func newStringIntervalIterator(input StringIterator, opt IteratorOptions...
type stringInterruptIterator (line 6607) | type stringInterruptIterator struct
method Stats (line 6617) | func (itr *stringInterruptIterator) Stats() IteratorStats { return itr...
method Close (line 6618) | func (itr *stringInterruptIterator) Close() error { return itr...
method Next (line 6620) | func (itr *stringInterruptIterator) Next() (*StringPoint, error) {
function newStringInterruptIterator (line 6613) | func newStringInterruptIterator(input StringIterator, closing <-chan str...
type stringCloseInterruptIterator (line 6641) | type stringCloseInterruptIterator struct
method monitor (line 6658) | func (itr *stringCloseInterruptIterator) monitor() {
method Stats (line 6666) | func (itr *stringCloseInterruptIterator) Stats() IteratorStats {
method Close (line 6670) | func (itr *stringCloseInterruptIterator) Close() error {
method Next (line 6678) | func (itr *stringCloseInterruptIterator) Next() (*StringPoint, error) {
function newStringCloseInterruptIterator (line 6648) | func newStringCloseInterruptIterator(input StringIterator, closing <-cha...
type auxStringPoint (line 6693) | type auxStringPoint struct
type stringAuxIterator (line 6699) | type stringAuxIterator struct
method Background (line 6714) | func (itr *stringAuxIterator) Background() {
method Start (line 6720) | func (itr *stringAuxIterator) Start() { go itr.stream() }
method Stats (line 6721) | func (itr *stringAuxIterator) Stats() IteratorStats { return itr.input...
method Close (line 6722) | func (itr *stringAuxIterator) Close() error { return itr.input...
method Next (line 6723) | func (itr *stringAuxIterator) Next() (*StringPoint, error) {
method Iterator (line 6727) | func (itr *stringAuxIterator) Iterator(name string, typ DataType) Iter...
method stream (line 6731) | func (itr *stringAuxIterator) stream() {
function newStringAuxIterator (line 6706) | func newStringAuxIterator(input StringIterator, opt IteratorOptions) *st...
type stringChanIterator (line 6755) | type stringChanIterator struct
method Stats (line 6766) | func (itr *stringChanIterator) Stats() IteratorStats { return Iterator...
method Close (line 6768) | func (itr *stringChanIterator) Close() error {
method setBuf (line 6778) | func (itr *stringChanIterator) setBuf(name string, tags Tags, time int...
method setErr (line 6809) | func (itr *stringChanIterator) setErr(err error) {
method Next (line 6818) | func (itr *stringChanIterator) Next() (*StringPoint, error) {
type stringReduceFloatIterator (line 6849) | type stringReduceFloatIterator struct
method Stats (line 6868) | func (itr *stringReduceFloatIterator) Stats() IteratorStats { return i...
method Close (line 6871) | func (itr *stringReduceFloatIterator) Close() error { return itr.input...
method Next (line 6874) | func (itr *stringReduceFloatIterator) Next() (*FloatPoint, error) {
method reduce (line 6900) | func (itr *stringReduceFloatIterator) reduce() ([]FloatPoint, error) {
function newStringReduceFloatIterator (line 6858) | func newStringReduceFloatIterator(input StringIterator, opt IteratorOpti...
type stringReduceFloatPoint (line 6891) | type stringReduceFloatPoint struct
type stringStreamFloatIterator (line 7009) | type stringStreamFloatIterator struct
method Stats (line 7030) | func (itr *stringStreamFloatIterator) Stats() IteratorStats { return i...
method Close (line 7033) | func (itr *stringStreamFloatIterator) Close() error { return itr.input...
method Next (line 7036) | func (itr *stringStreamFloatIterator) Next() (*FloatPoint, error) {
method reduce (line 7054) | func (itr *stringStreamFloatIterator) reduce() ([]FloatPoint, error) {
function newStringStreamFloatIterator (line 7019) | func newStringStreamFloatIterator(input StringIterator, createFn func() ...
type stringFloatExprIterator (line 7125) | type stringFloatExprIterator struct
method Stats (line 7151) | func (itr *stringFloatExprIterator) Stats() IteratorStats {
method Close (line 7157) | func (itr *stringFloatExprIterator) Close() error {
method Next (line 7163) | func (itr *stringFloatExprIterator) Next() (*FloatPoint, error) {
method next (line 7221) | func (itr *stringFloatExprIterator) next() (a, b *StringPoint, err err...
function newStringFloatExprIterator (line 7133) | func newStringFloatExprIterator(left, right StringIterator, opt Iterator...
type stringFloatExprFunc (line 7265) | type stringFloatExprFunc
type stringReduceIntegerIterator (line 7268) | type stringReduceIntegerIterator struct
method Stats (line 7287) | func (itr *stringReduceIntegerIterator) Stats() IteratorStats { return...
method Close (line 7290) | func (itr *stringReduceIntegerIterator) Close() error { return itr.inp...
method Next (line 7293) | func (itr *stringReduceIntegerIterator) Next() (*IntegerPoint, error) {
method reduce (line 7319) | func (itr *stringReduceIntegerIterator) reduce() ([]IntegerPoint, erro...
function newStringReduceIntegerIterator (line 7277) | func newStringReduceIntegerIterator(input StringIterator, opt IteratorOp...
type stringReduceIntegerPoint (line 7310) | type stringReduceIntegerPoint struct
type stringStreamIntegerIterator (line 7428) | type stringStreamIntegerIterator struct
method Stats (line 7449) | func (itr *stringStreamIntegerIterator) Stats() IteratorStats { return...
method Close (line 7452) | func (itr *stringStreamIntegerIterator) Close() error { return itr.inp...
method Next (line 7455) | func (itr *stringStreamIntegerIterator) Next() (*IntegerPoint, error) {
method reduce (line 7473) | func (itr *stringStreamIntegerIterator) reduce() ([]IntegerPoint, erro...
function newStringStreamIntegerIterator (line 7438) | func newStringStreamIntegerIterator(input StringIterator, createFn func(...
type stringIntegerExprIterator (line 7544) | type stringIntegerExprIterator struct
method Stats (line 7570) | func (itr *stringIntegerExprIterator) Stats() IteratorStats {
method Close (line 7576) | func (itr *stringIntegerExprIterator) Close() error {
method Next (line 7582) | func (itr *stringIntegerExprIterator) Next() (*IntegerPoint, error) {
method next (line 7640) | func (itr *stringIntegerExprIterator) next() (a, b *StringPoint, err e...
function newStringIntegerExprIterator (line 7552) | func newStringIntegerExprIterator(left, right StringIterator, opt Iterat...
type stringIntegerExprFunc (line 7684) | type stringIntegerExprFunc
type stringReduceStringIterator (line 7687) | type stringReduceStringIterator struct
method Stats (line 7706) | func (itr *stringReduceStringIterator) Stats() IteratorStats { return ...
method Close (line 7709) | func (itr *stringReduceStringIterator) Close() error { return itr.inpu...
method Next (line 7712) | func (itr *stringReduceStringIterator) Next() (*StringPoint, error) {
method reduce (line 7738) | func (itr *stringReduceStringIterator) reduce() ([]StringPoint, error) {
function newStringReduceStringIterator (line 7696) | func newStringReduceStringIterator(input StringIterator, opt IteratorOpt...
type stringReduceStringPoint (line 7729) | type stringReduceStringPoint struct
type stringStreamStringIterator (line 7847) | type stringStreamStringIterator struct
method Stats (line 7868) | func (itr *stringStreamStringIterator) Stats() IteratorStats { return ...
method Close (line 7871) | func (itr *stringStreamStringIterator) Close() error { return itr.inpu...
method Next (line 7874) | func (itr *stringStreamStringIterator) Next() (*StringPoint, error) {
method reduce (line 7892) | func (itr *stringStreamStringIterator) reduce() ([]StringPoint, error) {
function newStringStreamStringIterator (line 7857) | func newStringStreamStringIterator(input StringIterator, createFn func()...
type stringExprIterator (line 7963) | type stringExprIterator struct
method Stats (line 7989) | func (itr *stringExprIterator) Stats() IteratorStats {
method Close (line 7995) | func (itr *stringExprIterator) Close() error {
method Next (line 8001) | func (itr *stringExprIterator) Next() (*StringPoint, error) {
method next (line 8055) | func (itr *stringExprIterator) next() (a, b *StringPoint, err error) {
function newStringExprIterator (line 7971) | func newStringExprIterator(left, right StringIterator, opt IteratorOptio...
type stringExprFunc (line 8099) | type stringExprFunc
type stringReduceBooleanIterator (line 8102) | type stringReduceBooleanIterator struct
method Stats (line 8121) | func (itr *stringReduceBooleanIterator) Stats() IteratorStats { return...
method Close (line 8124) | func (itr *stringReduceBooleanIterator) Close() error { return itr.inp...
method Next (line 8127) | func (itr *stringReduceBooleanIterator) Next() (*BooleanPoint, error) {
method reduce (line 8153) | func (itr *stringReduceBooleanIterator) reduce() ([]BooleanPoint, erro...
function newStringReduceBooleanIterator (line 8111) | func newStringReduceBooleanIterator(input StringIterator, opt IteratorOp...
type stringReduceBooleanPoint (line 8144) | type stringReduceBooleanPoint struct
type stringStreamBooleanIterator (line 8262) | type stringStreamBooleanIterator struct
method Stats (line 8283) | func (itr *stringStreamBooleanIterator) Stats() IteratorStats { return...
method Close (line 8286) | func (itr *stringStreamBooleanIterator) Close() error { return itr.inp...
method Next (line 8289) | func (itr *stringStreamBooleanIterator) Next() (*BooleanPoint, error) {
method reduce (line 8307) | func (itr *stringStreamBooleanIterator) reduce() ([]BooleanPoint, erro...
function newStringStreamBooleanIterator (line 8272) | func newStringStreamBooleanIterator(input StringIterator, createFn func(...
type stringBooleanExprIterator (line 8378) | type stringBooleanExprIterator struct
method Stats (line 8404) | func (itr *stringBooleanExprIterator) Stats() IteratorStats {
method Close (line 8410) | func (itr *stringBooleanExprIterator) Close() error {
method Next (line 8416) | func (itr *stringBooleanExprIterator) Next() (*BooleanPoint, error) {
method next (line 8474) | func (itr *stringBooleanExprIterator) next() (a, b *StringPoint, err e...
function newStringBooleanExprIterator (line 8386) | func newStringBooleanExprIterator(left, right StringIterator, opt Iterat...
type stringBooleanExprFunc (line 8518) | type stringBooleanExprFunc
type stringTransformIterator (line 8522) | type stringTransformIterator struct
method Stats (line 8528) | func (itr *stringTransformIterator) Stats() IteratorStats { return itr...
method Close (line 8531) | func (itr *stringTransformIterator) Close() error { return itr.input.C...
method Next (line 8534) | func (itr *stringTransformIterator) Next() (*StringPoint, error) {
type stringTransformFunc (line 8547) | type stringTransformFunc
type stringBoolTransformIterator (line 8551) | type stringBoolTransformIterator struct
method Stats (line 8557) | func (itr *stringBoolTransformIterator) Stats() IteratorStats { return...
method Close (line 8560) | func (itr *stringBoolTransformIterator) Close() error { return itr.inp...
method Next (line 8563) | func (itr *stringBoolTransformIterator) Next() (*BooleanPoint, error) {
type stringBoolTransformFunc (line 8576) | type stringBoolTransformFunc
type stringDedupeIterator (line 8582) | type stringDedupeIterator struct
method Stats (line 8719) | func (itr *stringDedupeIterator) Stats() IteratorStats { return itr.in...
method Close (line 8722) | func (itr *stringDedupeIterator) Close() error { return itr.input.Clos...
method Next (line 8725) | func (itr *stringDedupeIterator) Next() (*StringPoint, error) {
type stringIteratorMapper (line 8587) | type stringIteratorMapper struct
method Next (line 8609) | func (itr *stringIteratorMapper) Next() (*StringPoint, error) {
method Stats (line 8639) | func (itr *stringIteratorMapper) Stats() IteratorStats {
method Close (line 8647) | func (itr *stringIteratorMapper) Close() error {
function newStringIteratorMapper (line 8595) | func newStringIteratorMapper(itrs []Iterator, driver IteratorMap, fields...
type stringFilterIterator (line 8651) | type stringFilterIterator struct
method Stats (line 8686) | func (itr *stringFilterIterator) Stats() IteratorStats { return itr.in...
method Close (line 8687) | func (itr *stringFilterIterator) Close() error { return itr.in...
method Next (line 8689) | func (itr *stringFilterIterator) Next() (*StringPoint, error) {
function newStringFilterIterator (line 8658) | func newStringFilterIterator(input StringIterator, cond Expr, opt Iterat...
function newStringDedupeIterator (line 8711) | func newStringDedupeIterator(input StringIterator) *stringDedupeIterator {
type stringReaderIterator (line 8751) | type stringReaderIterator struct
method Stats (line 8768) | func (itr *stringReaderIterator) Stats() IteratorStats { return itr.de...
method Close (line 8771) | func (itr *stringReaderIterator) Close() error {
method Next (line 8779) | func (itr *stringReaderIterator) Next() (*StringPoint, error) {
function newStringReaderIterator (line 8757) | func newStringReaderIterator(r io.Reader, stats IteratorStats) *stringRe...
type BooleanIterator (line 8793) | type BooleanIterator interface
function newBooleanIterators (line 8801) | func newBooleanIterators(itrs []Iterator) []BooleanIterator {
type bufBooleanIterator (line 8816) | type bufBooleanIterator struct
method Stats (line 8827) | func (itr *bufBooleanIterator) Stats() IteratorStats { return itr.itr....
method Close (line 8830) | func (itr *bufBooleanIterator) Close() error { return itr.itr.Close() }
method peek (line 8833) | func (itr *bufBooleanIterator) peek() (*BooleanPoint, error) {
method peekTime (line 8844) | func (itr *bufBooleanIterator) peekTime() (int64, error) {
method Next (line 8853) | func (itr *bufBooleanIterator) Next() (*BooleanPoint, error) {
method NextInWindow (line 8864) | func (itr *bufBooleanIterator) NextInWindow(startTime, endTime int64) ...
method unread (line 8876) | func (itr *bufBooleanIterator) unread(v *BooleanPoint) { itr.buf = v }
function newBufBooleanIterator (line 8822) | func newBufBooleanIterator(itr BooleanIterator) *bufBooleanIterator {
type booleanMergeIterator (line 8879) | type booleanMergeIterator struct
method Stats (line 8917) | func (itr *booleanMergeIterator) Stats() IteratorStats {
method Close (line 8926) | func (itr *booleanMergeIterator) Close() error {
method Next (line 8937) | func (itr *booleanMergeIterator) Next() (*BooleanPoint, error) {
function newBooleanMergeIterator (line 8895) | func newBooleanMergeIterator(inputs []BooleanIterator, opt IteratorOptio...
type booleanMergeHeap (line 9015) | type booleanMergeHeap struct
method Len (line 9020) | func (h *booleanMergeHeap) Len() int { return len(h.items) }
method Swap (line 9021) | func (h *booleanMergeHeap) Swap(i, j int) { h.items[i], h.items[j] = h...
method Less (line 9022) | func (h *booleanMergeHeap) Less(i, j int) bool {
method Push (line 9055) | func (h *booleanMergeHeap) Push(x interface{}) {
method Pop (line 9059) | func (h *booleanMergeHeap) Pop() interface{} {
type booleanMergeHeapItem (line 9067) | type booleanMergeHeapItem struct
type booleanSortedMergeIterator (line 9072) | type booleanSortedMergeIterator struct
method Stats (line 9098) | func (itr *booleanSortedMergeIterator) Stats() IteratorStats {
method Close (line 9107) | func (itr *booleanSortedMergeIterator) Close() error {
method Next (line 9115) | func (itr *booleanSortedMergeIterator) Next() (*BooleanPoint, error) {...
method pop (line 9119) | func (itr *booleanSortedMergeIterator) pop() (*BooleanPoint, error) {
function newBooleanSortedMergeIterator (line 9079) | func newBooleanSortedMergeIterator(inputs []BooleanIterator, opt Iterato...
type booleanSortedMergeHeap (line 9161) | type booleanSortedMergeHeap struct
method Len (line 9166) | func (h *booleanSortedMergeHeap) Len() int { return len(h.items) }
method Swap (line 9167) | func (h *booleanSortedMergeHeap) Swap(i, j int) { h.items[i], h.items[...
method Less (line 9168) | func (h *booleanSortedMergeHeap) Less(i, j int) bool {
method Push (line 9188) | func (h *booleanSortedMergeHeap) Push(x interface{}) {
method Pop (line 9192) | func (h *booleanSortedMergeHeap) Pop() interface{} {
type booleanSortedMergeHeapItem (line 9200) | type booleanSortedMergeHeapItem struct
type booleanParallelIterator (line 9207) | type booleanParallelIterator struct
method Stats (line 9229) | func (itr *booleanParallelIterator) Stats() IteratorStats { return itr...
method Close (line 9232) | func (itr *booleanParallelIterator) Close() error {
method Next (line 9239) | func (itr *booleanParallelIterator) Next() (*BooleanPoint, error) {
method monitor (line 9248) | func (itr *booleanParallelIterator) monitor() {
function newBooleanParallelIterator (line 9217) | func newBooleanParallelIterator(input BooleanIterator) *booleanParallelI...
type booleanPointError (line 9267) | type booleanPointError struct
type booleanLimitIterator (line 9273) | type booleanLimitIterator struct
method Stats (line 9293) | func (itr *booleanLimitIterator) Stats() IteratorStats { return itr.in...
method Close (line 9296) | func (itr *booleanLimitIterator) Close() error { return itr.input.Clos...
method Next (line 9299) | func (itr *booleanLimitIterator) Next() (*BooleanPoint, error) {
function newBooleanLimitIterator (line 9285) | func newBooleanLimitIterator(input BooleanIterator, opt IteratorOptions)...
type booleanFillIterator (line 9330) | type booleanFillIterator struct
method Stats (line 9379) | func (itr *booleanFillIterator) Stats() IteratorStats { return itr.inp...
method Close (line 9380) | func (itr *booleanFillIterator) Close() error { return itr.inp...
method Next (line 9382) | func (itr *booleanFillIterator) Next() (*BooleanPoint, error) {
function newBooleanFillIterator (line 9347) | func newBooleanFillIterator(input BooleanIterator, expr Expr, opt Iterat...
type booleanIntervalIterator (line 9491) | type booleanIntervalIterator struct
method Stats (line 9500) | func (itr *booleanIntervalIterator) Stats() IteratorStats { return itr...
method Close (line 9501) | func (itr *booleanIntervalIterator) Close() error { return itr...
method Next (line 9503) | func (itr *booleanIntervalIterator) Next() (*BooleanPoint, error) {
function newBooleanIntervalIterator (line 9496) | func newBooleanIntervalIterator(input BooleanIterator, opt IteratorOptio...
type booleanInterruptIterator (line 9518) | type booleanInterruptIterator struct
method Stats (line 9528) | func (itr *booleanInterruptIterator) Stats() IteratorStats { return it...
method Close (line 9529) | func (itr *booleanInterruptIterator) Close() error { return it...
method Next (line 9531) | func (itr *booleanInterruptIterator) Next() (*BooleanPoint, error) {
function newBooleanInterruptIterator (line 9524) | func newBooleanInterruptIterator(input BooleanIterator, closing <-chan s...
type booleanCloseInterruptIterator (line 9552) | type booleanCloseInterruptIterator struct
method monitor (line 9569) | func (itr *booleanCloseInterruptIterator) monitor() {
method Stats (line 9577) | func (itr *booleanCloseInterruptIterator) Stats() IteratorStats {
method Close (line 9581) | func (itr *booleanCloseInterruptIterator) Close() error {
method Next (line 9589) | func (itr *booleanCloseInterruptIterator) Next() (*BooleanPoint, error) {
function newBooleanCloseInterruptIterator (line 9559) | func newBooleanCloseInterruptIterator(input BooleanIterator, closing <-c...
type auxBooleanPoint (line 9604) | type auxBooleanPoint struct
type booleanAuxIterator (line 9610) | type booleanAuxIterator struct
method Background (line 9625) | func (itr *booleanAuxIterator) Background() {
method Start (line 9631) | func (itr *booleanAuxIterator) Start() { go itr.stream() }
method Stats (line 9632) | func (itr *booleanAuxIterator) Stats() IteratorStats { return itr.inpu...
method Close (line 9633) | func (itr *booleanAuxIterator) Close() error { return itr.inpu...
method Next (line 9634) | func (itr *booleanAuxIterator) Next() (*BooleanPoint, error) {
method Iterator (line 9638) | func (itr *booleanAuxIterator) Iterator(name string, typ DataType) Ite...
method stream (line 9642) | func (itr *booleanAuxIterator) stream() {
function newBooleanAuxIterator (line 9617) | func newBooleanAuxIterator(input BooleanIterator, opt IteratorOptions) *...
type booleanChanIterator (line 9666) | type booleanChanIterator struct
method Stats (line 9677) | func (itr *booleanChanIterator) Stats() IteratorStats { return Iterato...
method Close (line 9679) | func (itr *booleanChanIterator) Close() error {
method setBuf (line 9689) | func (itr *booleanChanIterator) setBuf(name string, tags Tags, time in...
method setErr (line 9720) | func (itr *booleanChanIterator) setErr(err error) {
method Next (line 9729) | func (itr *booleanChanIterator) Next() (*BooleanPoint, error) {
type booleanReduceFloatIterator (line 9760) | type booleanReduceFloatIterator struct
method Stats (line 9779) | func (itr *booleanReduceFloatIterator) Stats() IteratorStats { return ...
method Close (line 9782) | func (itr *booleanReduceFloatIterator) Close() error { return itr.inpu...
method Next (line 9785) | func (itr *booleanReduceFloatIterator) Next() (*FloatPoint, error) {
method reduce (line 9811) | func (itr *booleanReduceFloatIterator) reduce() ([]FloatPoint, error) {
function newBooleanReduceFloatIterator (line 9769) | func newBooleanReduceFloatIterator(input BooleanIterator, opt IteratorOp...
type booleanReduceFloatPoint (line 9802) | type booleanReduceFloatPoint struct
type booleanStreamFloatIterator (line 9920) | type booleanStreamFloatIterator struct
method Stats (line 9941) | func (itr *booleanStreamFloatIterator) Stats() IteratorStats { return ...
method Close (line 9944) | func (itr *booleanStreamFloatIterator) Close() error { return itr.inpu...
method Next (line 9947) | func (itr *booleanStreamFloatIterator) Next() (*FloatPoint, error) {
method reduce (line 9965) | func (itr *booleanStreamFloatIterator) reduce() ([]FloatPoint, error) {
function newBooleanStreamFloatIterator (line 9930) | func newBooleanStreamFloatIterator(input BooleanIterator, createFn func(...
type booleanFloatExprIterator (line 10036) | type booleanFloatExprIterator struct
method Stats (line 10062) | func (itr *booleanFloatExprIterator) Stats() IteratorStats {
method Close (line 10068) | func (itr *booleanFloatExprIterator) Close() error {
method Next (line 10074) | func (itr *booleanFloatExprIterator) Next() (*FloatPoint, error) {
method next (line 10132) | func (itr *booleanFloatExprIterator) next() (a, b *BooleanPoint, err e...
function newBooleanFloatExprIterator (line 10044) | func newBooleanFloatExprIterator(left, right BooleanIterator, opt Iterat...
type booleanFloatExprFunc (line 10176) | type booleanFloatExprFunc
type booleanReduceIntegerIterator (line 10179) | type booleanReduceIntegerIterator struct
method Stats (line 10198) | func (itr *booleanReduceIntegerIterator) Stats() IteratorStats { retur...
method Close (line 10201) | func (itr *booleanReduceIntegerIterator) Close() error { return itr.in...
method Next (line 10204) | func (itr *booleanReduceIntegerIterator) Next() (*IntegerPoint, error) {
method reduce (line 10230) | func (itr *booleanReduceIntegerIterator) reduce() ([]IntegerPoint, err...
function newBooleanReduceIntegerIterator (line 10188) | func newBooleanReduceIntegerIterator(input BooleanIterator, opt Iterator...
type booleanReduceIntegerPoint (line 10221) | type booleanReduceIntegerPoint struct
type booleanStreamIntegerIterator (line 10339) | type booleanStreamIntegerIterator struct
method Stats (line 10360) | func (itr *booleanStreamIntegerIterator) Stats() IteratorStats { retur...
method Close (line 10363) | func (itr *booleanStreamIntegerIterator) Close() error { return itr.in...
method Next (line 10366) | func (itr *booleanStreamIntegerIterator) Next() (*IntegerPoint, error) {
method reduce (line 10384) | func (itr *booleanStreamIntegerIterator) reduce() ([]IntegerPoint, err...
function newBooleanStreamIntegerIterator (line 10349) | func newBooleanStreamIntegerIterator(input BooleanIterator, createFn fun...
type booleanIntegerExprIterator (line 10455) | type booleanIntegerExprIterator struct
method Stats (line 10481) | func (itr *booleanIntegerExprIterator) Stats() IteratorStats {
method Close (line 10487) | func (itr *booleanIntegerExprIterator) Close() error {
method Next (line 10493) | func (itr *booleanIntegerExprIterator) Next() (*IntegerPoint, error) {
method next (line 10551) | func (itr *booleanIntegerExprIterator) next() (a, b *BooleanPoint, err...
function newBooleanIntegerExprIterator (line 10463) | func newBooleanIntegerExprIterator(left, right BooleanIterator, opt Iter...
type booleanIntegerExprFunc (line 10595) | type booleanIntegerExprFunc
type booleanReduceStringIterator (line 10598) | type booleanReduceStringIterator struct
method Stats (line 10617) | func (itr *booleanReduceStringIterator) Stats() IteratorStats { return...
method Close (line 10620) | func (itr *booleanReduceStringIterator) Close() error { return itr.inp...
method Next (line 10623) | func (itr *booleanReduceStringIterator) Next() (*StringPoint, error) {
method reduce (line 10649) | func (itr *booleanReduceStringIterator) reduce() ([]StringPoint, error) {
function newBooleanReduceStringIterator (line 10607) | func newBooleanReduceStringIterator(input BooleanIterator, opt IteratorO...
type booleanReduceStringPoint (line 10640) | type booleanReduceStringPoint struct
type booleanStreamStringIterator (line 10758) | type booleanStreamStringIterator struct
method Stats (line 10779) | func (itr *booleanStreamStringIterator) Stats() IteratorStats { return...
method Close (line 10782) | func (itr *booleanStreamStringIterator) Close() error { return itr.inp...
method Next (line 10785) | func (itr *booleanStreamStringIterator) Next() (*StringPoint, error) {
method reduce (line 10803) | func (itr *booleanStreamStringIterator) reduce() ([]StringPoint, error) {
function newBooleanStreamStringIterator (line 10768) | func newBooleanStreamStringIterator(input BooleanIterator, createFn func...
type booleanStringExprIterator (line 10874) | type booleanStringExprIterator struct
method Stats (line 10900) | func (itr *booleanStringExprIterator) Stats() IteratorStats {
method Close (line 10906) | func (itr *booleanStringExprIterator) Close() error {
method Next (line 10912) | func (itr *booleanStringExprIterator) Next() (*StringPoint, error) {
method next (line 10970) | func (itr *booleanStringExprIterator) next() (a, b *BooleanPoint, err ...
function newBooleanStringExprIterator (line 10882) | func newBooleanStringExprIterator(left, right BooleanIterator, opt Itera...
type booleanStringExprFunc (line 11014) | type booleanStringExprFunc
type booleanReduceBooleanIterator (line 11017) | type booleanReduceBooleanIterator struct
method Stats (line 11036) | func (itr *booleanReduceBooleanIterator) Stats() IteratorStats { retur...
method Close (line 11039) | func (itr *booleanReduceBooleanIterator) Close() error { return itr.in...
method Next (line 11042) | func (itr *booleanReduceBooleanIterator) Next() (*BooleanPoint, error) {
method reduce (line 11068) | func (itr *booleanReduceBooleanIterator) reduce() ([]BooleanPoint, err...
function newBooleanReduceBooleanIterator (line 11026) | func newBooleanReduceBooleanIterator(input BooleanIterator, opt Iterator...
type booleanReduceBooleanPoint (line 11059) | type booleanReduceBooleanPoint struct
type booleanStreamBooleanIterator (line 11177) | type booleanStreamBooleanIterator struct
method Stats (line 11198) | func (itr *booleanStreamBooleanIterator) Stats() IteratorStats { retur...
method Close (line 11201) | func (itr *booleanStreamBooleanIterator) Close() error { return itr.in...
method Next (line 11204) | func (itr *booleanStreamBooleanIterator) Next() (*BooleanPoint, error) {
method reduce (line 11222) | func (itr *booleanStreamBooleanIterator) reduce() ([]BooleanPoint, err...
function newBooleanStreamBooleanIterator (line 11187) | func newBooleanStreamBooleanIterator(input BooleanIterator, createFn fun...
type booleanExprIterator (line 11293) | type booleanExprIterator struct
method Stats (line 11319) | func (itr *booleanExprIterator) Stats() IteratorStats {
method Close (line 11325) | func (itr *booleanExprIterator) Close() error {
method Next (line 11331) | func (itr *booleanExprIterator) Next() (*BooleanPoint, error) {
method next (line 11385) | func (itr *booleanExprIterator) next() (a, b *BooleanPoint, err error) {
function newBooleanExprIterator (line 11301) | func newBooleanExprIterator(left, right BooleanIterator, opt IteratorOpt...
type booleanExprFunc (line 11429) | type booleanExprFunc
type booleanTransformIterator (line 11433) | type booleanTransformIterator struct
method Stats (line 11439) | func (itr *booleanTransformIterator) Stats() IteratorStats { return it...
method Close (line 11442) | func (itr *booleanTransformIterator) Close() error { return itr.input....
method Next (line 11445) | func (itr *booleanTransformIterator) Next() (*BooleanPoint, error) {
type booleanTransformFunc (line 11458) | type booleanTransformFunc
type booleanBoolTransformIterator (line 11462) | type booleanBoolTransformIterator struct
method Stats (line 11468) | func (itr *booleanBoolTransformIterator) Stats() IteratorStats { retur...
method Close (line 11471) | func (itr *booleanBoolTransformIterator) Close() error { return itr.in...
method Next (line 11474) | func (itr *booleanBoolTransformIterator) Next() (*BooleanPoint, error) {
type booleanBoolTransformFunc (line 11487) | type booleanBoolTransformFunc
type booleanDedupeIterator (line 11493) | type booleanDedupeIterator struct
method Stats (line 11630) | func (itr *booleanDedupeIterator) Stats() IteratorStats { return itr.i...
method Close (line 11633) | func (itr *booleanDedupeIterator) Close() error { return itr.input.Clo...
method Next (line 11636) | func (itr *booleanDedupeIterator) Next() (*BooleanPoint, error) {
type booleanIteratorMapper (line 11498) | type booleanIteratorMapper struct
method Next (line 11520) | func (itr *booleanIteratorMapper) Next() (*BooleanPoint, error) {
method Stats (line 11550) | func (itr *booleanIteratorMapper) Stats() IteratorStats {
method Close (line 11558) | func (itr *booleanIteratorMapper) Close() error {
function newBooleanIteratorMapper (line 11506) | func newBooleanIteratorMapper(itrs []Iterator, driver IteratorMap, field...
type booleanFilterIterator (line 11562) | type booleanFilterIterator struct
method Stats (line 11597) | func (itr *booleanFilterIterator) Stats() IteratorStats { return itr.i...
method Close (line 11598) | func (itr *booleanFilterIterator) Close() error { return itr.i...
method Next (line 11600) | func (itr *booleanFilterIterator) Next() (*BooleanPoint, error) {
function newBooleanFilterIterator (line 11569) | func newBooleanFilterIterator(input BooleanIterator, cond Expr, opt Iter...
function newBooleanDedupeIterator (line 11622) | func newBooleanDedupeIterator(input BooleanIterator) *booleanDedupeItera...
type booleanReaderIterator (line 11662) | type booleanReaderIterator struct
method Stats (line 11679) | func (itr *booleanReaderIterator) Stats() IteratorStats { return itr.d...
method Close (line 11682) | func (itr *booleanReaderIterator) Close() error {
method Next (line 11690) | func (itr *booleanReaderIterator) Next() (*BooleanPoint, error) {
function newBooleanReaderIterator (line 11668) | func newBooleanReaderIterator(r io.Reader, stats IteratorStats) *boolean...
type IteratorEncoder (line 11704) | type IteratorEncoder struct
method EncodeIterator (line 11721) | func (enc *IteratorEncoder) EncodeIterator(itr Iterator) error {
method encodeFloatIterator (line 11737) | func (enc *IteratorEncoder) encodeFloatIterator(itr FloatIterator) err...
method encodeIntegerIterator (line 11780) | func (enc *IteratorEncoder) encodeIntegerIterator(itr IntegerIterator)...
method encodeStringIterator (line 11823) | func (enc *IteratorEncoder) encodeStringIterator(itr StringIterator) e...
method encodeBooleanIterator (line 11866) | func (enc *IteratorEncoder) encodeBooleanIterator(itr BooleanIterator)...
method encodeStats (line 11909) | func (enc *IteratorEncoder) encodeStats(stats IteratorStats) error {
function NewIteratorEncoder (line 11712) | func NewIteratorEncoder(w io.Writer) *IteratorEncoder {
FILE: vendor/github.com/influxdata/influxdb/influxql/iterator.go
constant MinTime (line 24) | MinTime = models.MinNanoTime - 1
constant MaxTime (line 28) | MaxTime = models.MaxNanoTime
constant secToNs (line 31) | secToNs = int64(time.Second)
type Iterator (line 36) | type Iterator interface
type Iterators (line 42) | type Iterators
method Stats (line 45) | func (a Iterators) Stats() IteratorStats {
method Close (line 54) | func (a Iterators) Close() error {
method filterNonNil (line 62) | func (a Iterators) filterNonNil() []Iterator {
method castType (line 76) | func (a Iterators) castType() DataType {
method cast (line 105) | func (a Iterators) cast() interface{} {
method Merge (line 122) | func (a Iterators) Merge(opt IteratorOptions) (Iterator, error) {
function NewMergeIterator (line 165) | func NewMergeIterator(inputs []Iterator, opt IteratorOptions) Iterator {
function NewParallelMergeIterator (line 191) | func NewParallelMergeIterator(inputs []Iterator, opt IteratorOptions, pa...
function NewSortedMergeIterator (line 229) | func NewSortedMergeIterator(inputs []Iterator, opt IteratorOptions) Iter...
function newParallelIterator (line 252) | func newParallelIterator(input Iterator) Iterator {
function NewLimitIterator (line 272) | func NewLimitIterator(input Iterator, opt IteratorOptions) Iterator {
function NewFilterIterator (line 290) | func NewFilterIterator(input Iterator, cond Expr, opt IteratorOptions) I...
function NewDedupeIterator (line 312) | func NewDedupeIterator(input Iterator) Iterator {
function NewFillIterator (line 332) | func NewFillIterator(input Iterator, expr Expr, opt IteratorOptions) Ite...
function NewIntervalIterator (line 348) | func NewIntervalIterator(input Iterator, opt IteratorOptions) Iterator {
function NewInterruptIterator (line 365) | func NewInterruptIterator(input Iterator, closing <-chan struct{}) Itera...
function NewCloseInterruptIterator (line 382) | func NewCloseInterruptIterator(input Iterator, closing <-chan struct{}) ...
type AuxIterator (line 398) | type AuxIterator interface
function NewAuxIterator (line 413) | func NewAuxIterator(input Iterator, opt IteratorOptions) AuxIterator {
type auxIteratorField (line 429) | type auxIteratorField struct
method append (line 437) | func (f *auxIteratorField) append(itr Iterator) {
method close (line 443) | func (f *auxIteratorField) close() {
type auxIteratorFields (line 451) | type auxIteratorFields struct
method close (line 468) | func (a *auxIteratorFields) close() {
method iterator (line 475) | func (a *auxIteratorFields) iterator(name string, typ DataType) Iterat...
method send (line 510) | func (a *auxIteratorFields) send(p Point) (ok bool) {
method sendError (line 541) | func (a *auxIteratorFields) sendError(err error) {
function newAuxIteratorFields (line 457) | func newAuxIteratorFields(opt IteratorOptions) *auxIteratorFields {
function DrainIterator (line 561) | func DrainIterator(itr Iterator) {
function DrainIterators (line 582) | func DrainIterators(itrs []Iterator) {
function NewReaderIterator (line 618) | func NewReaderIterator(r io.Reader, typ DataType, stats IteratorStats) I...
type IteratorCreator (line 634) | type IteratorCreator interface
type FieldMapper (line 640) | type FieldMapper interface
type IteratorOptions (line 647) | type IteratorOptions struct
method MergeSorted (line 832) | func (opt IteratorOptions) MergeSorted() bool {
method SeekTime (line 838) | func (opt IteratorOptions) SeekTime() int64 {
method Window (line 846) | func (opt IteratorOptions) Window(t int64) (start, end int64) {
method DerivativeInterval (line 925) | func (opt IteratorOptions) DerivativeInterval() Interval {
method ElapsedInterval (line 940) | func (opt IteratorOptions) ElapsedInterval() Interval {
method IntegralInterval (line 950) | func (opt IteratorOptions) IntegralInterval() Interval {
method GetDimensions (line 960) | func (opt IteratorOptions) GetDimensions() []string {
method Zone (line 972) | func (opt *IteratorOptions) Zone(ns int64) (string, int64) {
method MarshalBinary (line 983) | func (opt *IteratorOptions) MarshalBinary() ([]byte, error) {
method UnmarshalBinary (line 988) | func (opt *IteratorOptions) UnmarshalBinary(buf []byte) error {
function newIteratorOptionsStmt (line 703) | func newIteratorOptionsStmt(stmt *SelectStatement, sopt *SelectOptions) ...
function newIteratorOptionsSubstatement (line 782) | func newIteratorOptionsSubstatement(stmt *SelectStatement, opt IteratorO...
function encodeIteratorOptions (line 1003) | func encodeIteratorOptions(opt *IteratorOptions) *internal.IteratorOptio...
function decodeIteratorOptions (line 1072) | func decodeIteratorOptions(pb *internal.IteratorOptions) (*IteratorOptio...
type selectInfo (line 1159) | type selectInfo struct
method Visit (line 1174) | func (v *selectInfo) Visit(n Node) Visitor {
method FindSelector (line 1189) | func (v *selectInfo) FindSelector() *Call {
function newSelectInfo (line 1165) | func newSelectInfo(stmt *SelectStatement) *selectInfo {
type Interval (line 1203) | type Interval struct
method IsZero (line 1209) | func (i Interval) IsZero() bool { return i.Duration == 0 }
function encodeInterval (line 1211) | func encodeInterval(i Interval) *internal.Interval {
function decodeInterval (line 1218) | func decodeInterval(pb *internal.Interval) Interval {
function encodeVarRef (line 1225) | func encodeVarRef(ref VarRef) *internal.VarRef {
function decodeVarRef (line 1232) | func decodeVarRef(pb *internal.VarRef) VarRef {
type nilFloatIterator (line 1239) | type nilFloatIterator struct
method Stats (line 1241) | func (*nilFloatIterator) Stats() IteratorStats { return Iterator...
method Close (line 1242) | func (*nilFloatIterator) Close() error { return nil }
method Next (line 1243) | func (*nilFloatIterator) Next() (*FloatPoint, error) { return nil, nil }
type nilFloatReaderIterator (line 1245) | type nilFloatReaderIterator struct
method Stats (line 1249) | func (*nilFloatReaderIterator) Stats() IteratorStats { return Iterator...
method Close (line 1250) | func (itr *nilFloatReaderIterator) Close() error {
method Next (line 1257) | func (*nilFloatReaderIterator) Next() (*FloatPoint, error) { return ni...
type integerFloatTransformIterator (line 1261) | type integerFloatTransformIterator struct
method Stats (line 1267) | func (itr *integerFloatTransformIterator) Stats() IteratorStats { retu...
method Close (line 1270) | func (itr *integerFloatTransformIterator) Close() error { return itr.i...
method Next (line 1273) | func (itr *integerFloatTransformIterator) Next() (*FloatPoint, error) {
type integerFloatTransformFunc (line 1286) | type integerFloatTransformFunc
type integerFloatCastIterator (line 1288) | type integerFloatCastIterator struct
method Stats (line 1292) | func (itr *integerFloatCastIterator) Stats() IteratorStats { return it...
method Close (line 1293) | func (itr *integerFloatCastIterator) Close() error { return it...
method Next (line 1294) | func (itr *integerFloatCastIterator) Next() (*FloatPoint, error) {
type IteratorStats (line 1313) | type IteratorStats struct
method Add (line 1319) | func (s *IteratorStats) Add(other IteratorStats) {
function encodeIteratorStats (line 1324) | func encodeIteratorStats(stats *IteratorStats) *internal.IteratorStats {
function decodeIteratorStats (line 1331) | func decodeIteratorStats(pb *internal.IteratorStats) IteratorStats {
type floatFastDedupeIterator (line 1339) | type floatFastDedupeIterator struct
method Stats (line 1353) | func (itr *floatFastDedupeIterator) Stats() IteratorStats { return itr...
method Close (line 1356) | func (itr *floatFastDedupeIterator) Close() error { return itr.input.C...
method Next (line 1359) | func (itr *floatFastDedupeIterator) Next() (*FloatPoint, error) {
function newFloatFastDedupeIterator (line 1345) | func newFloatFastDedupeIterator(input FloatIterator) *floatFastDedupeIte...
type fastDedupeKey (line 1386) | type fastDedupeKey struct
type reverseStringSlice (line 1391) | type reverseStringSlice
method Len (line 1393) | func (p reverseStringSlice) Len() int { return len(p) }
method Less (line 1394) | func (p reverseStringSlice) Less(i, j int) bool { return p[i] > p[j] }
method Swap (line 1395) | func (p reverseStringSlice) Swap(i, j int) { p[i], p[j] = p[j], p...
function abs (line 1397) | func abs(v int64) int64 {
FILE: vendor/github.com/influxdata/influxdb/influxql/iterator_mapper.go
type IteratorMap (line 5) | type IteratorMap interface
type FieldMap (line 9) | type FieldMap
method Value (line 11) | func (i FieldMap) Value(tags Tags, buf []interface{}) interface{} { re...
type TagMap (line 13) | type TagMap
method Value (line 15) | func (s TagMap) Value(tags Tags, buf []interface{}) interface{} { retu...
type NullMap (line 17) | type NullMap struct
method Value (line 19) | func (NullMap) Value(tags Tags, buf []interface{}) interface{} { retur...
function NewIteratorMapper (line 21) | func NewIteratorMapper(itrs []Iterator, driver IteratorMap, fields []Ite...
FILE: vendor/github.com/influxdata/influxdb/influxql/iterator_mapper_test.go
function TestIteratorMapper (line 11) | func TestIteratorMapper(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/influxql/iterator_test.go
function TestMergeIterator_Float (line 17) | func TestMergeIterator_Float(t *testing.T) {
function TestMergeIterator_Integer (line 67) | func TestMergeIterator_Integer(t *testing.T) {
function TestMergeIterator_String (line 116) | func TestMergeIterator_String(t *testing.T) {
function TestMergeIterator_Boolean (line 165) | func TestMergeIterator_Boolean(t *testing.T) {
function TestMergeIterator_Nil (line 213) | func TestMergeIterator_Nil(t *testing.T) {
function TestMergeIterator_Cast_Float (line 220) | func TestMergeIterator_Cast_Float(t *testing.T) {
function TestSortedMergeIterator_Float (line 275) | func TestSortedMergeIterator_Float(t *testing.T) {
function TestSortedMergeIterator_Integer (line 323) | func TestSortedMergeIterator_Integer(t *testing.T) {
function TestSortedMergeIterator_String (line 371) | func TestSortedMergeIterator_String(t *testing.T) {
function TestSortedMergeIterator_Boolean (line 419) | func TestSortedMergeIterator_Boolean(t *testing.T) {
function TestSortedMergeIterator_Nil (line 466) | func TestSortedMergeIterator_Nil(t *testing.T) {
function TestSortedMergeIterator_Cast_Float (line 473) | func TestSortedMergeIterator_Cast_Float(t *testing.T) {
function TestLimitIterator_Float (line 528) | func TestLimitIterator_Float(t *testing.T) {
function TestLimitIterator_Integer (line 557) | func TestLimitIterator_Integer(t *testing.T) {
function TestLimitIterator_String (line 586) | func TestLimitIterator_String(t *testing.T) {
function TestLimitIterator_Boolean (line 615) | func TestLimitIterator_Boolean(t *testing.T) {
function TestFloatAuxIterator (line 644) | func TestFloatAuxIterator(t *testing.T) {
function TestLimitIterator (line 682) | func TestLimitIterator(t *testing.T) {
function TestFillIterator_DST (line 708) | func TestFillIterator_DST(t *testing.T) {
type Iterators (line 930) | type Iterators
method Next (line 934) | func (itrs Iterators) Next() ([]influxql.Point, error) {
method ReadAll (line 970) | func (itrs Iterators) ReadAll() ([][]influxql.Point, error) {
function TestIteratorOptions_Window_Interval (line 990) | func TestIteratorOptions_Window_Interval(t *testing.T) {
function TestIteratorOptions_Window_Offset (line 1006) | func TestIteratorOptions_Window_Offset(t *testing.T) {
function TestIteratorOptions_Window_Default (line 1023) | func TestIteratorOptions_Window_Default(t *testing.T) {
function TestIteratorOptions_Window_Location (line 1038) | func TestIteratorOptions_Window_Location(t *testing.T) {
function TestIteratorOptions_Window_MinTime (line 1135) | func TestIteratorOptions_Window_MinTime(t *testing.T) {
function TestIteratorOptions_Window_MaxTime (line 1154) | func TestIteratorOptions_Window_MaxTime(t *testing.T) {
function TestIteratorOptions_SeekTime_Ascending (line 1173) | func TestIteratorOptions_SeekTime_Ascending(t *testing.T) {
function TestIteratorOptions_SeekTime_Descending (line 1186) | func TestIteratorOptions_SeekTime_Descending(t *testing.T) {
function TestIteratorOptions_DerivativeInterval_Default (line 1199) | func TestIteratorOptions_DerivativeInterval_Default(t *testing.T) {
function TestIteratorOptions_DerivativeInterval_GroupBy (line 1208) | func TestIteratorOptions_DerivativeInterval_GroupBy(t *testing.T) {
function TestIteratorOptions_DerivativeInterval_Call (line 1222) | func TestIteratorOptions_DerivativeInterval_Call(t *testing.T) {
function TestIteratorOptions_ElapsedInterval_Default (line 1243) | func TestIteratorOptions_ElapsedInterval_Default(t *testing.T) {
function TestIteratorOptions_ElapsedInterval_GroupBy (line 1252) | func TestIteratorOptions_ElapsedInterval_GroupBy(t *testing.T) {
function TestIteratorOptions_ElapsedInterval_Call (line 1266) | func TestIteratorOptions_ElapsedInterval_Call(t *testing.T) {
function TestIteratorOptions_IntegralInterval_Default (line 1287) | func TestIteratorOptions_IntegralInterval_Default(t *testing.T) {
function TestIteratorOptions_MarshalBinary (line 1297) | func TestIteratorOptions_MarshalBinary(t *testing.T) {
function TestIterator_EncodeDecode (line 1340) | func TestIterator_EncodeDecode(t *testing.T) {
type IteratorCreator (line 1390) | type IteratorCreator struct
method CreateIterator (line 1395) | func (ic *IteratorCreator) CreateIterator(m *influxql.Measurement, opt...
method FieldDimensions (line 1399) | func (ic *IteratorCreator) FieldDimensions(m *influxql.Measurement) (f...
method MapType (line 1403) | func (ic *IteratorCreator) MapType(m *influxql.Measurement, field stri...
type FloatIterator (line 1419) | type FloatIterator struct
method Stats (line 1425) | func (itr *FloatIterator) Stats() influxql.IteratorStats { return itr....
method Close (line 1426) | func (itr *FloatIterator) Close() error { itr.Closed ...
method Next (line 1429) | func (itr *FloatIterator) Next() (*influxql.FloatPoint, error) {
function FloatIterators (line 1439) | func FloatIterators(inputs []*FloatIterator) []influxql.Iterator {
type IntegerIterator (line 1448) | type IntegerIterator struct
method Stats (line 1454) | func (itr *IntegerIterator) Stats() influxql.IteratorStats { return it...
method Close (line 1455) | func (itr *IntegerIterator) Close() error { itr.Close...
method Next (line 1458) | func (itr *IntegerIterator) Next() (*influxql.IntegerPoint, error) {
function IntegerIterators (line 1468) | func IntegerIterators(inputs []*IntegerIterator) []influxql.Iterator {
type StringIterator (line 1477) | type StringIterator struct
method Stats (line 1483) | func (itr *StringIterator) Stats() influxql.IteratorStats { return itr...
method Close (line 1484) | func (itr *StringIterator) Close() error { itr.Closed...
method Next (line 1487) | func (itr *StringIterator) Next() (*influxql.StringPoint, error) {
function StringIterators (line 1497) | func StringIterators(inputs []*StringIterator) []influxql.Iterator {
type BooleanIterator (line 1506) | type BooleanIterator struct
method Stats (line 1512) | func (itr *BooleanIterator) Stats() influxql.IteratorStats { return it...
method Close (line 1513) | func (itr *BooleanIterator) Close() error { itr.Close...
method Next (line 1516) | func (itr *BooleanIterator) Next() (*influxql.BooleanPoint, error) {
function BooleanIterators (line 1526) | func BooleanIterators(inputs []*BooleanIterator) []influxql.Iterator {
FILE: vendor/github.com/influxdata/influxdb/influxql/linear.go
function linearFloat (line 6) | func linearFloat(windowTime, previousTime, nextTime int64, previousValue...
function linearInteger (line 16) | func linearInteger(windowTime, previousTime, nextTime int64, previousVal...
FILE: vendor/github.com/influxdata/influxdb/influxql/monitor.go
function PointLimitMonitor (line 7) | func PointLimitMonitor(itrs Iterators, interval time.Duration, limit int...
FILE: vendor/github.com/influxdata/influxdb/influxql/neldermead/neldermead.go
constant defaultMaxIterations (line 8) | defaultMaxIterations = 1000
constant defaultAlpha (line 10) | defaultAlpha = 1.0
constant defaultBeta (line 12) | defaultBeta = 0.5
constant defaultGamma (line 14) | defaultGamma = 2.0
type Optimizer (line 18) | type Optimizer struct
method Optimize (line 40) | func (o *Optimizer) Optimize(
function New (line 30) | func New() *Optimizer {
FILE: vendor/github.com/influxdata/influxdb/influxql/neldermead/neldermead_test.go
function round (line 10) | func round(num float64, precision float64) float64 {
function almostEqual (line 22) | func almostEqual(a, b, e float64) bool {
function Test_Optimize (line 26) | func Test_Optimize(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/influxql/parser.go
constant DateFormat (line 18) | DateFormat = "2006-01-02"
constant DateTimeFormat (line 21) | DateTimeFormat = "2006-01-02 15:04:05.999999"
type Parser (line 25) | type Parser struct
method SetParams (line 36) | func (p *Parser) SetParams(params map[string]interface{}) {
method ParseQuery (line 70) | func (p *Parser) ParseQuery() (*Query, error) {
method ParseStatement (line 95) | func (p *Parser) ParseStatement() (Statement, error) {
method parseShowStatement (line 126) | func (p *Parser) parseShowStatement() (Statement, error) {
method parseCreateStatement (line 203) | func (p *Parser) parseCreateStatement() (Statement, error) {
method parseDropStatement (line 226) | func (p *Parser) parseDropStatement() (Statement, error) {
method parseAlterStatement (line 255) | func (p *Parser) parseAlterStatement() (Statement, error) {
method parseSetPasswordUserStatement (line 269) | func (p *Parser) parseSetPasswordUserStatement() (*SetPasswordUserStat...
method parseKillQueryStatement (line 301) | func (p *Parser) parseKillQueryStatement() (*KillQueryStatement, error) {
method parseCreateSubscriptionStatement (line 325) | func (p *Parser) parseCreateSubscriptionStatement() (*CreateSubscripti...
method parseCreateRetentionPolicyStatement (line 380) | func (p *Parser) parseCreateRetentionPolicyStatement() (*CreateRetenti...
method parseAlterRetentionPolicyStatement (line 463) | func (p *Parser) parseAlterRetentionPolicyStatement() (*AlterRetention...
method parseInt (line 551) | func (p *Parser) parseInt(min, max int) (int, error) {
method parseUInt64 (line 572) | func (p *Parser) parseUInt64() (uint64, error) {
method parseDuration (line 589) | func (p *Parser) parseDuration() (time.Duration, error) {
method parseIdent (line 608) | func (p *Parser) parseIdent() (string, error) {
method parseIdentList (line 617) | func (p *Parser) parseIdentList() ([]string, error) {
method parseSegmentedIdents (line 642) | func (p *Parser) parseSegmentedIdents() ([]string, error) {
method parseString (line 686) | func (p *Parser) parseString() (string, error) {
method parseStringList (line 695) | func (p *Parser) parseStringList() ([]string, error) {
method parseRevokeStatement (line 720) | func (p *Parser) parseRevokeStatement() (Statement, error) {
method parseRevokeOnStatement (line 753) | func (p *Parser) parseRevokeOnStatement() (*RevokeStatement, error) {
method parseRevokeAdminStatement (line 783) | func (p *Parser) parseRevokeAdminStatement() (*RevokeAdminStatement, e...
method parseGrantStatement (line 799) | func (p *Parser) parseGrantStatement() (Statement, error) {
method parseGrantOnStatement (line 832) | func (p *Parser) parseGrantOnStatement() (*GrantStatement, error) {
method parseGrantAdminStatement (line 862) | func (p *Parser) parseGrantAdminStatement() (*GrantAdminStatement, err...
method parsePrivilege (line 877) | func (p *Parser) parsePrivilege() (Privilege, error) {
method parseSelectStatement (line 897) | func (p *Parser) parseSelectStatement(tr targetRequirement) (*SelectSt...
method parseTarget (line 989) | func (p *Parser) parseTarget(tr targetRequirement) (*Target, error) {
method parseDeleteStatement (line 1034) | func (p *Parser) parseDeleteStatement() (Statement, error) {
method parseShowSeriesStatement (line 1083) | func (p *Parser) parseShowSeriesStatement() (*ShowSeriesStatement, err...
method parseShowMeasurementsStatement (line 1132) | func (p *Parser) parseShowMeasurementsStatement() (*ShowMeasurementsSt...
method parseShowQueriesStatement (line 1195) | func (p *Parser) parseShowQueriesStatement() (*ShowQueriesStatement, e...
method parseShowRetentionPoliciesStatement (line 1201) | func (p *Parser) parseShowRetentionPoliciesStatement() (*ShowRetention...
method parseShowTagKeysStatement (line 1221) | func (p *Parser) parseShowTagKeysStatement() (*ShowTagKeysStatement, e...
method parseShowTagValuesStatement (line 1280) | func (p *Parser) parseShowTagValuesStatement() (*ShowTagValuesStatemen...
method parseTagKeyExpr (line 1333) | func (p *Parser) parseTagKeyExpr() (Token, Literal, error) {
method parseShowUsersStatement (line 1383) | func (p *Parser) parseShowUsersStatement() (*ShowUsersStatement, error) {
method parseShowSubscriptionsStatement (line 1389) | func (p *Parser) parseShowSubscriptionsStatement() (*ShowSubscriptions...
method parseShowFieldKeysStatement (line 1396) | func (p *Parser) parseShowFieldKeysStatement() (*ShowFieldKeysStatemen...
method parseDropMeasurementStatement (line 1440) | func (p *Parser) parseDropMeasurementStatement() (*DropMeasurementStat...
method parseDropSeriesStatement (line 1455) | func (p *Parser) parseDropSeriesStatement() (*DropSeriesStatement, err...
method parseDropShardStatement (line 1504) | func (p *Parser) parseDropShardStatement() (*DropShardStatement, error) {
method parseShowContinuousQueriesStatement (line 1517) | func (p *Parser) parseShowContinuousQueriesStatement() (*ShowContinuou...
method parseGrantsForUserStatement (line 1530) | func (p *Parser) parseGrantsForUserStatement() (*ShowGrantsForUserStat...
method parseShowDatabasesStatement (line 1550) | func (p *Parser) parseShowDatabasesStatement() (*ShowDatabasesStatemen...
method parseCreateContinuousQueryStatement (line 1557) | func (p *Parser) parseCreateContinuousQueryStatement() (*CreateContinu...
method parseCreateDatabaseStatement (line 1632) | func (p *Parser) parseCreateDatabaseStatement() (*CreateDatabaseStatem...
method parseDropDatabaseStatement (line 1709) | func (p *Parser) parseDropDatabaseStatement() (*DropDatabaseStatement,...
method parseDropSubscriptionStatement (line 1724) | func (p *Parser) parseDropSubscriptionStatement() (*DropSubscriptionSt...
method parseDropRetentionPolicyStatement (line 1760) | func (p *Parser) parseDropRetentionPolicyStatement() (*DropRetentionPo...
method parseCreateUserStatement (line 1785) | func (p *Parser) parseCreateUserStatement() (*CreateUserStatement, err...
method parseDropUserStatement (line 1824) | func (p *Parser) parseDropUserStatement() (*DropUserStatement, error) {
method parseShowShardGroupsStatement (line 1839) | func (p *Parser) parseShowShardGroupsStatement() (*ShowShardGroupsStat...
method parseShowShardsStatement (line 1845) | func (p *Parser) parseShowShardsStatement() (*ShowShardsStatement, err...
method parseShowStatsStatement (line 1851) | func (p *Parser) parseShowStatsStatement() (*ShowStatsStatement, error) {
method parseShowDiagnosticsStatement (line 1865) | func (p *Parser) parseShowDiagnosticsStatement() (*ShowDiagnosticsStat...
method parseDropContinuousQueryStatement (line 1880) | func (p *Parser) parseDropContinuousQueryStatement() (*DropContinuousQ...
method parseFields (line 1910) | func (p *Parser) parseFields() (Fields, error) {
method parseField (line 1933) | func (p *Parser) parseField() (*Field, error) {
method parseAlias (line 1996) | func (p *Parser) parseAlias() (string, error) {
method parseSources (line 2012) | func (p *Parser) parseSources(subqueries bool) (Sources, error) {
method peekRune (line 2032) | func (p *Parser) peekRune() rune {
method parseSource (line 2041) | func (p *Parser) parseSource(subqueries bool) (Source, error) {
method parseCondition (line 2115) | func (p *Parser) parseCondition() (Expr, error) {
method parseDimensions (line 2132) | func (p *Parser) parseDimensions() (Dimensions, error) {
method parseDimension (line 2165) | func (p *Parser) parseDimension() (*Dimension, error) {
method parseFill (line 2186) | func (p *Parser) parseFill() (FillOption, interface{}, error) {
method parseLocation (line 2226) | func (p *Parser) parseLocation() (*time.Location, error) {
method parseOptionalTokenAndInt (line 2260) | func (p *Parser) parseOptionalTokenAndInt(t Token) (int, error) {
method parseOrderBy (line 2284) | func (p *Parser) parseOrderBy() (SortFields, error) {
method parseSortFields (line 2306) | func (p *Parser) parseSortFields() (SortFields, error) {
method parseSortField (line 2358) | func (p *Parser) parseSortField() (*SortField, error) {
method parseVarRef (line 2380) | func (p *Parser) parseVarRef() (*VarRef, error) {
method ParseExpr (line 2421) | func (p *Parser) ParseExpr() (Expr, error) {
method parseUnaryExpr (line 2478) | func (p *Parser) parseUnaryExpr() (Expr, error) {
method parseRegex (line 2634) | func (p *Parser) parseRegex() (*RegexLiteral, error) {
method parseCall (line 2668) | func (p *Parser) parseCall(name string) (*Call, error) {
method parseResample (line 2727) | func (p *Parser) parseResample() (time.Duration, time.Duration, error) {
method scan (line 2766) | func (p *Parser) scan() (tok Token, pos Pos, lit string) { return p.s....
method scanIgnoreWhitespace (line 2769) | func (p *Parser) scanIgnoreWhitespace() (tok Token, pos Pos, lit strin...
method consumeWhitespace (line 2780) | func (p *Parser) consumeWhitespace() {
method unscan (line 2787) | func (p *Parser) unscan() { p.s.Unscan() }
method parseTokens (line 2908) | func (p *Parser) parseTokens(toks []Token) error {
method parseTokenMaybe (line 2919) | func (p *Parser) parseTokenMaybe(expected Token) bool {
function NewParser (line 31) | func NewParser(r io.Reader) *Parser {
function ParseQuery (line 41) | func ParseQuery(s string) (*Query, error) { return NewParser(strings.New...
function ParseStatement (line 44) | func ParseStatement(s string) (Statement, error) {
function MustParseStatement (line 49) | func MustParseStatement(s string) Statement {
function ParseExpr (line 58) | func ParseExpr(s string) (Expr, error) { return NewParser(strings.NewRea...
function MustParseExpr (line 61) | func MustParseExpr(s string) Expr {
type targetRequirement (line 980) | type targetRequirement
constant targetRequired (line 983) | targetRequired targetRequirement = iota
constant targetNotRequired (line 984) | targetNotRequired
constant targetSubquery (line 985) | targetSubquery
type validateField (line 1973) | type validateField struct
method Visit (line 1978) | func (c *validateField) Visit(n Node) Visitor {
function ParseDuration (line 2793) | func ParseDuration(s string) (time.Duration, error) {
function FormatDuration (line 2885) | func FormatDuration(d time.Duration) string {
function QuoteString (line 2937) | func QuoteString(s string) string {
function QuoteIdent (line 2942) | func QuoteIdent(segments ...string) string {
function IdentNeedsQuotes (line 2967) | func IdentNeedsQuotes(ident string) bool {
function isDateString (line 2984) | func isDateString(s string) bool { return dateStringRegexp.MatchString(s) }
function isDateTimeString (line 2987) | func isDateTimeString(s string) bool { return dateTimeStringRegexp.Match...
type ParseError (line 2996) | type ParseError struct
method Error (line 3009) | func (e *ParseError) Error() string {
function newParseError (line 3004) | func newParseError(found string, expected []string, pos Pos) *ParseError {
FILE: vendor/github.com/influxdata/influxdb/influxql/parser_test.go
function TestParser_ParseQuery (line 16) | func TestParser_ParseQuery(t *testing.T) {
function TestParser_ParseQuery_TrailingSemicolon (line 26) | func TestParser_ParseQuery_TrailingSemicolon(t *testing.T) {
function TestParser_ParseQuery_Empty (line 37) | func TestParser_ParseQuery_Empty(t *testing.T) {
function TestParser_ParseQuery_SkipComments (line 47) | func TestParser_ParseQuery_SkipComments(t *testing.T) {
function TestParser_ParseQuery_ParseError (line 70) | func TestParser_ParseQuery_ParseError(t *testing.T) {
function TestParser_ParseQuery_NoSemicolon (line 77) | func TestParser_ParseQuery_NoSemicolon(t *testing.T) {
function TestParser_ParseStatement (line 85) | func TestParser_ParseStatement(t *testing.T) {
function TestParser_ParseExpr (line 2904) | func TestParser_ParseExpr(t *testing.T) {
function TestParseDuration (line 3249) | func TestParseDuration(t *testing.T) {
function TestFormatDuration (line 3290) | func TestFormatDuration(t *testing.T) {
function TestQuote (line 3314) | func TestQuote(t *testing.T) {
function TestQuoteIdent (line 3332) | func TestQuoteIdent(t *testing.T) {
function TestDeleteSeriesStatement_String (line 3354) | func TestDeleteSeriesStatement_String(t *testing.T) {
function TestDropSeriesStatement_String (line 3406) | func TestDropSeriesStatement_String(t *testing.T) {
function BenchmarkParserParseStatement (line 3457) | func BenchmarkParserParseStatement(b *testing.B) {
function MustParseSelectStatement (line 3471) | func MustParseSelectStatement(s string) *influxql.SelectStatement {
function MustParseExpr (line 3480) | func MustParseExpr(s string) influxql.Expr {
function errstring (line 3489) | func errstring(err error) string {
function newAlterRetentionPolicyStatement (line 3497) | func newAlterRetentionPolicyStatement(name string, DB string, d, sd time...
function mustMarshalJSON (line 3520) | func mustMarshalJSON(v interface{}) []byte {
function mustParseDuration (line 3528) | func mustParseDuration(s string) time.Duration {
function mustLoadLocation (line 3536) | func mustLoadLocation(s string) *time.Location {
function duration (line 3546) | func duration(v time.Duration) *time.Duration {
function intptr (line 3550) | func intptr(v int) *int {
FILE: vendor/github.com/influxdata/influxdb/influxql/point.gen.go
type FloatPoint (line 20) | type FloatPoint struct
method name (line 34) | func (v *FloatPoint) name() string { return v.Name }
method tags (line 35) | func (v *FloatPoint) tags() Tags { return v.Tags }
method time (line 36) | func (v *FloatPoint) time() int64 { return v.Time }
method nil (line 37) | func (v *FloatPoint) nil() bool { return v.Nil }
method value (line 38) | func (v *FloatPoint) value() interface{} {
method aux (line 44) | func (v *FloatPoint) aux() []interface{} { return v.Aux }
method Clone (line 47) | func (v *FloatPoint) Clone() *FloatPoint {
method CopyTo (line 62) | func (v *FloatPoint) CopyTo(other *FloatPoint) {
function encodeFloatPoint (line 70) | func encodeFloatPoint(p *FloatPoint) *internal.Point {
function decodeFloatPoint (line 83) | func decodeFloatPoint(pb *internal.Point) *FloatPoint {
type floatPoints (line 96) | type floatPoints
method Len (line 98) | func (a floatPoints) Len() int { return len(a) }
method Less (line 99) | func (a floatPoints) Less(i, j int) bool {
method Swap (line 105) | func (a floatPoints) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
type floatPointsByValue (line 108) | type floatPointsByValue
method Len (line 110) | func (a floatPointsByValue) Len() int { return len(a) }
method Less (line 112) | func (a floatPointsByValue) Less(i, j int) bool { return a[i].Value < ...
method Swap (line 114) | func (a floatPointsByValue) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
type floatPointsByTime (line 117) | type floatPointsByTime
method Len (line 119) | func (a floatPointsByTime) Len() int { return len(a) }
method Less (line 120) | func (a floatPointsByTime) Less(i, j int) bool { return a[i].Time < a[...
method Swap (line 121) | func (a floatPointsByTime) Swap(i, j int) { a[i], a[j] = a[j], a[...
type floatPointsByFunc (line 124) | type floatPointsByFunc struct
method Len (line 129) | func (a *floatPointsByFunc) Len() int { return len(a.points) }
method Less (line 130) | func (a *floatPointsByFunc) Less(i, j int) bool { return a.cmp(&a.poin...
method Swap (line 131) | func (a *floatPointsByFunc) Swap(i, j int) { a.points[i], a.point...
method Push (line 133) | func (a *floatPointsByFunc) Push(x interface{}) {
method Pop (line 137) | func (a *floatPointsByFunc) Pop() interface{} {
function floatPointsSortBy (line 143) | func floatPointsSortBy(points []FloatPoint, cmp func(a, b *FloatPoint) b...
type FloatPointEncoder (line 151) | type FloatPointEncoder struct
method EncodeFloatPoint (line 161) | func (enc *FloatPointEncoder) EncodeFloatPoint(p *FloatPoint) error {
function NewFloatPointEncoder (line 156) | func NewFloatPointEncoder(w io.Writer) *FloatPointEncoder {
type FloatPointDecoder (line 181) | type FloatPointDecoder struct
method Stats (line 192) | func (dec *FloatPointDecoder) Stats() IteratorStats { return dec.stats }
method DecodeFloatPoint (line 195) | func (dec *FloatPointDecoder) DecodeFloatPoint(p *FloatPoint) error {
function NewFloatPointDecoder (line 187) | func NewFloatPointDecoder(r io.Reader) *FloatPointDecoder {
type IntegerPoint (line 231) | type IntegerPoint struct
method name (line 245) | func (v *IntegerPoint) name() string { return v.Name }
method tags (line 246) | func (v *IntegerPoint) tags() Tags { return v.Tags }
method time (line 247) | func (v *IntegerPoint) time() int64 { return v.Time }
method nil (line 248) | func (v *IntegerPoint) nil() bool { return v.Nil }
method value (line 249) | func (v *IntegerPoint) value() interface{} {
method aux (line 255) | func (v *IntegerPoint) aux() []interface{} { return v.Aux }
method Clone (line 258) | func (v *IntegerPoint) Clone() *IntegerPoint {
method CopyTo (line 273) | func (v *IntegerPoint) CopyTo(other *IntegerPoint) {
function encodeIntegerPoint (line 281) | func encodeIntegerPoint(p *IntegerPoint) *internal.Point {
function decodeIntegerPoint (line 294) | func decodeIntegerPoint(pb *internal.Point) *IntegerPoint {
type integerPoints (line 307) | type integerPoints
method Len (line 309) | func (a integerPoints) Len() int { return len(a) }
method Less (line 310) | func (a integerPoints) Less(i, j int) bool {
method Swap (line 316) | func (a integerPoints) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
type integerPointsByValue (line 319) | type integerPointsByValue
method Len (line 321) | func (a integerPointsByValue) Len() int { return len(a) }
method Less (line 323) | func (a integerPointsByValue) Less(i, j int) bool { return a[i].Value ...
method Swap (line 325) | func (a integerPointsByValue) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
type integerPointsByTime (line 328) | type integerPointsByTime
method Len (line 330) | func (a integerPointsByTime) Len() int { return len(a) }
method Less (line 331) | func (a integerPointsByTime) Less(i, j int) bool { return a[i].Time < ...
method Swap (line 332) | func (a integerPointsByTime) Swap(i, j int) { a[i], a[j] = a[j], ...
type integerPointsByFunc (line 335) | type integerPointsByFunc struct
method Len (line 340) | func (a *integerPointsByFunc) Len() int { return len(a.point...
method Less (line 341) | func (a *integerPointsByFunc) Less(i, j int) bool { return a.cmp(&a.po...
method Swap (line 342) | func (a *integerPointsByFunc) Swap(i, j int) { a.points[i], a.poi...
method Push (line 344) | func (a *integerPointsByFunc) Push(x interface{}) {
method Pop (line 348) | func (a *integerPointsByFunc) Pop() interface{} {
function integerPointsSortBy (line 354) | func integerPointsSortBy(points []IntegerPoint, cmp func(a, b *IntegerPo...
type IntegerPointEncoder (line 362) | type IntegerPointEncoder struct
method EncodeIntegerPoint (line 372) | func (enc *IntegerPointEncoder) EncodeIntegerPoint(p *IntegerPoint) er...
function NewIntegerPointEncoder (line 367) | func NewIntegerPointEncoder(w io.Writer) *IntegerPointEncoder {
type IntegerPointDecoder (line 392) | type IntegerPointDecoder struct
method Stats (line 403) | func (dec *IntegerPointDecoder) Stats() IteratorStats { return dec.sta...
method DecodeIntegerPoint (line 406) | func (dec *IntegerPointDecoder) DecodeIntegerPoint(p *IntegerPoint) er...
function NewIntegerPointDecoder (line 398) | func NewIntegerPointDecoder(r io.Reader) *IntegerPointDecoder {
type StringPoint (line 442) | type StringPoint struct
method name (line 456) | func (v *StringPoint) name() string { return v.Name }
method tags (line 457) | func (v *StringPoint) tags() Tags { return v.Tags }
method time (line 458) | func (v *StringPoint) time() int64 { return v.Time }
method nil (line 459) | func (v *StringPoint) nil() bool { return v.Nil }
method value (line 460) | func (v *StringPoint) value() interface{} {
method aux (line 466) | func (v *StringPoint) aux() []interface{} { return v.Aux }
method Clone (line 469) | func (v *StringPoint) Clone() *StringPoint {
method CopyTo (line 484) | func (v *StringPoint) CopyTo(other *StringPoint) {
function encodeStringPoint (line 492) | func encodeStringPoint(p *StringPoint) *internal.Point {
function decodeStringPoint (line 505) | func decodeStringPoint(pb *internal.Point) *StringPoint {
type stringPoints (line 518) | type stringPoints
method Len (line 520) | func (a stringPoints) Len() int { return len(a) }
method Less (line 521) | func (a stringPoints) Less(i, j int) bool {
method Swap (line 527) | func (a stringPoints) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
type stringPointsByValue (line 530) | type stringPointsByValue
method Len (line 532) | func (a stringPointsByValue) Len() int { return len(a) }
method Less (line 534) | func (a stringPointsByValue) Less(i, j int) bool { return a[i].Value <...
method Swap (line 536) | func (a stringPointsByValue) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
type stringPointsByTime (line 539) | type stringPointsByTime
method Len (line 541) | func (a stringPointsByTime) Len() int { return len(a) }
method Less (line 542) | func (a stringPointsByTime) Less(i, j int) bool { return a[i].Time < a...
method Swap (line 543) | func (a stringPointsByTime) Swap(i, j int) { a[i], a[j] = a[j], a...
type stringPointsByFunc (line 546) | type stringPointsByFunc struct
method Len (line 551) | func (a *stringPointsByFunc) Len() int { return len(a.points) }
method Less (line 552) | func (a *stringPointsByFunc) Less(i, j int) bool { return a.cmp(&a.poi...
method Swap (line 553) | func (a *stringPointsByFunc) Swap(i, j int) { a.points[i], a.poin...
method Push (line 555) | func (a *stringPointsByFunc) Push(x interface{}) {
method Pop (line 559) | func (a *stringPointsByFunc) Pop() interface{} {
function stringPointsSortBy (line 565) | func stringPointsSortBy(points []StringPoint, cmp func(a, b *StringPoint...
type StringPointEncoder (line 573) | type StringPointEncoder struct
method EncodeStringPoint (line 583) | func (enc *StringPointEncoder) EncodeStringPoint(p *StringPoint) error {
function NewStringPointEncoder (line 578) | func NewStringPointEncoder(w io.Writer) *StringPointEncoder {
type StringPointDecoder (line 603) | type StringPointDecoder struct
method Stats (line 614) | func (dec *StringPointDecoder) Stats() IteratorStats { return dec.stats }
method DecodeStringPoint (line 617) | func (dec *StringPointDecoder) DecodeStringPoint(p *StringPoint) error {
function NewStringPointDecoder (line 609) | func NewStringPointDecoder(r io.Reader) *StringPointDecoder {
type BooleanPoint (line 653) | type BooleanPoint struct
method name (line 667) | func (v *BooleanPoint) name() string { return v.Name }
method tags (line 668) | func (v *BooleanPoint) tags() Tags { return v.Tags }
method time (line 669) | func (v *BooleanPoint) time() int64 { return v.Time }
method nil (line 670) | func (v *BooleanPoint) nil() bool { return v.Nil }
method value (line 671) | func (v *BooleanPoint) value() interface{} {
method aux (line 677) | func (v *BooleanPoint) aux() []interface{} { return v.Aux }
method Clone (line 680) | func (v *BooleanPoint) Clone() *BooleanPoint {
method CopyTo (line 695) | func (v *BooleanPoint) CopyTo(other *BooleanPoint) {
function encodeBooleanPoint (line 703) | func encodeBooleanPoint(p *BooleanPoint) *internal.Point {
function decodeBooleanPoint (line 716) | func decodeBooleanPoint(pb *internal.Point) *BooleanPoint {
type booleanPoints (line 729) | type booleanPoints
method Len (line 731) | func (a booleanPoints) Len() int { return len(a) }
method Less (line 732) | func (a booleanPoints) Less(i, j int) bool {
method Swap (line 738) | func (a booleanPoints) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
type booleanPointsByValue (line 741) | type booleanPointsByValue
method Len (line 743) | func (a booleanPointsByValue) Len() int { return len(a) }
method Less (line 745) | func (a booleanPointsByValue) Less(i, j int) bool { return !a[i].Value }
method Swap (line 747) | func (a booleanPointsByValue) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
type booleanPointsByTime (line 750) | type booleanPointsByTime
method Len (line 752) | func (a booleanPointsByTime) Len() int { return len(a) }
method Less (line 753) | func (a booleanPointsByTime) Less(i, j int) bool { return a[i].Time < ...
method Swap (line 754) | func (a booleanPointsByTime) Swap(i, j int) { a[i], a[j] = a[j], ...
type booleanPointsByFunc (line 757) | type booleanPointsByFunc struct
method Len (line 762) | func (a *booleanPointsByFunc) Len() int { return len(a.point...
method Less (line 763) | func (a *booleanPointsByFunc) Less(i, j int) bool { return a.cmp(&a.po...
method Swap (line 764) | func (a *booleanPointsByFunc) Swap(i, j int) { a.points[i], a.poi...
method Push (line 766) | func (a *booleanPointsByFunc) Push(x interface{}) {
method Pop (line 770) | func (a *booleanPointsByFunc) Pop() interface{} {
function booleanPointsSortBy (line 776) | func booleanPointsSortBy(points []BooleanPoint, cmp func(a, b *BooleanPo...
type BooleanPointEncoder (line 784) | type BooleanPointEncoder struct
method EncodeBooleanPoint (line 794) | func (enc *BooleanPointEncoder) EncodeBooleanPoint(p *BooleanPoint) er...
function NewBooleanPointEncoder (line 789) | func NewBooleanPointEncoder(w io.Writer) *BooleanPointEncoder {
type BooleanPointDecoder (line 814) | type BooleanPointDecoder struct
method Stats (line 825) | func (dec *BooleanPointDecoder) Stats() IteratorStats { return dec.sta...
method DecodeBooleanPoint (line 828) | func (dec *BooleanPointDecoder) DecodeBooleanPoint(p *BooleanPoint) er...
function NewBooleanPointDecoder (line 820) | func NewBooleanPointDecoder(r io.Reader) *BooleanPointDecoder {
FILE: vendor/github.com/influxdata/influxdb/influxql/point.go
constant ZeroTime (line 17) | ZeroTime = int64(math.MinInt64)
type Point (line 20) | type Point interface
type Points (line 36) | type Points
method Clone (line 39) | func (a Points) Clone() []Point {
type Tags (line 65) | type Tags struct
method ID (line 91) | func (t Tags) ID() string { return t.id }
method KeyValues (line 94) | func (t Tags) KeyValues() map[string]string { return t.m }
method Keys (line 97) | func (t *Tags) Keys() []string {
method Value (line 111) | func (t *Tags) Value(k string) string {
method Subset (line 119) | func (t *Tags) Subset(keys []string) Tags {
method Equals (line 138) | func (t *Tags) Equals(other *Tags) bool {
function NewTags (line 71) | func NewTags(m map[string]string) Tags {
function newTagsID (line 82) | func newTagsID(id string) Tags {
function keysMatch (line 148) | func keysMatch(m map[string]string, keys []string) bool {
function encodeTags (line 163) | func encodeTags(m map[string]string) []byte {
function decodeTags (line 198) | func decodeTags(id []byte) map[string]string {
function encodeAux (line 220) | func encodeAux(aux []interface{}) []*internal.Aux {
function decodeAux (line 247) | func decodeAux(pb []*internal.Aux) []interface{} {
function cloneAux (line 286) | func cloneAux(src []interface{}) []interface{} {
type PointDecoder (line 296) | type PointDecoder struct
method Stats (line 307) | func (dec *PointDecoder) Stats() IteratorStats { return dec.stats }
method DecodePoint (line 310) | func (dec *PointDecoder) DecodePoint(p *Point) error {
function NewPointDecoder (line 302) | func NewPointDecoder(r io.Reader) *PointDecoder {
FILE: vendor/github.com/influxdata/influxdb/influxql/point_test.go
function TestPoint_Clone_Float (line 13) | func TestPoint_Clone_Float(t *testing.T) {
function TestPoint_Clone_Integer (line 35) | func TestPoint_Clone_Integer(t *testing.T) {
function TestPoint_Clone_String (line 57) | func TestPoint_Clone_String(t *testing.T) {
function TestPoint_Clone_Boolean (line 79) | func TestPoint_Clone_Boolean(t *testing.T) {
function TestPoint_Clone_Nil (line 101) | func TestPoint_Clone_Nil(t *testing.T) {
function TestPoint_Fields (line 128) | func TestPoint_Fields(t *testing.T) {
function TestTags_ID (line 155) | func TestTags_ID(t *testing.T) {
function TestTags_Subset (line 163) | func TestTags_Subset(t *testing.T) {
function ParseTags (line 180) | func ParseTags(s string) influxql.Tags {
FILE: vendor/github.com/influxdata/influxdb/influxql/query_executor.go
constant statQueriesActive (line 39) | statQueriesActive = "queriesActive"
constant statQueriesExecuted (line 40) | statQueriesExecuted = "queriesExecuted"
constant statQueriesFinished (line 41) | statQueriesFinished = "queriesFinished"
constant statQueryExecutionDuration (line 42) | statQueryExecutionDuration = "queryDurationNs"
function ErrDatabaseNotFound (line 46) | func ErrDatabaseNotFound(name string) error { return fmt.Errorf("databas...
function ErrMaxSelectPointsLimitExceeded (line 49) | func ErrMaxSelectPointsLimitExceeded(n, limit int) error {
function ErrMaxConcurrentQueriesLimitExceeded (line 55) | func ErrMaxConcurrentQueriesLimitExceeded(n, limit int) error {
type Authorizer (line 60) | type Authorizer interface
type OpenAuthorizer (line 76) | type OpenAuthorizer struct
method AuthorizeDatabase (line 81) | func (_ OpenAuthorizer) AuthorizeDatabase(Privilege, string) bool { re...
method AuthorizeSeriesRead (line 83) | func (_ OpenAuthorizer) AuthorizeSeriesRead(database string, measureme...
method AuthorizeSeriesWrite (line 87) | func (_ OpenAuthorizer) AuthorizeSeriesWrite(database string, measurem...
method AuthorizeQuery (line 91) | func (_ OpenAuthorizer) AuthorizeQuery(_ string, _ *Query) error { ret...
type ExecutionOptions (line 94) | type ExecutionOptions struct
type ExecutionContext (line 119) | type ExecutionContext struct
method send (line 144) | func (ctx *ExecutionContext) send(result *Result) error {
method Send (line 155) | func (ctx *ExecutionContext) Send(result *Result) error {
type StatementExecutor (line 167) | type StatementExecutor interface
type StatementNormalizer (line 174) | type StatementNormalizer interface
type QueryExecutor (line 181) | type QueryExecutor struct
method Statistics (line 214) | func (e *QueryExecutor) Statistics(tags map[string]string) []models.St...
method Close (line 228) | func (e *QueryExecutor) Close() error {
method WithLogger (line 234) | func (e *QueryExecutor) WithLogger(log zap.Logger) {
method ExecuteQuery (line 240) | func (e *QueryExecutor) ExecuteQuery(query *Query, opt ExecutionOption...
method executeQuery (line 246) | func (e *QueryExecutor) executeQuery(query *Query, opt ExecutionOption...
method recover (line 395) | func (e *QueryExecutor) recover(query *Query, results chan *Result) {
function NewQueryExecutor (line 197) | func NewQueryExecutor() *QueryExecutor {
type QueryStatistics (line 206) | type QueryStatistics struct
type QueryMonitorFunc (line 408) | type QueryMonitorFunc
type QueryTask (line 412) | type QueryTask struct
method Monitor (line 426) | func (q *QueryTask) Monitor(fn QueryMonitorFunc) {
method Error (line 432) | func (q *QueryTask) Error() error {
method setError (line 438) | func (q *QueryTask) setError(err error) {
method monitor (line 444) | func (q *QueryTask) monitor(fn QueryMonitorFunc) {
FILE: vendor/github.com/influxdata/influxdb/influxql/query_executor_test.go
type StatementExecutor (line 15) | type StatementExecutor struct
method ExecuteStatement (line 19) | func (e *StatementExecutor) ExecuteStatement(stmt influxql.Statement, ...
function NewQueryExecutor (line 23) | func NewQueryExecutor() *influxql.QueryExecutor {
function TestQueryExecutor_AttachQuery (line 27) | func TestQueryExecutor_AttachQuery(t *testing.T) {
function TestQueryExecutor_KillQuery (line 46) | func TestQueryExecutor_KillQuery(t *testing.T) {
function TestQueryExecutor_Interrupt (line 86) | func TestQueryExecutor_Interrupt(t *testing.T) {
function TestQueryExecutor_Abort (line 114) | func TestQueryExecutor_Abort(t *testing.T) {
function TestQueryExecutor_ShowQueries (line 145) | func TestQueryExecutor_ShowQueries(t *testing.T) {
function TestQueryExecutor_Limit_Timeout (line 174) | func TestQueryExecutor_Limit_Timeout(t *testing.T) {
function TestQueryExecutor_Limit_ConcurrentQueries (line 201) | func TestQueryExecutor_Limit_ConcurrentQueries(t *testing.T) {
function TestQueryExecutor_Close (line 240) | func TestQueryExecutor_Close(t *testing.T) {
function TestQueryExecutor_Panic (line 290) | func TestQueryExecutor_Panic(t *testing.T) {
function TestQueryExecutor_InvalidSource (line 313) | func TestQueryExecutor_InvalidSource(t *testing.T) {
function discardOutput (line 363) | func discardOutput(results <-chan *influxql.Result) {
FILE: vendor/github.com/influxdata/influxdb/influxql/result.go
constant WarningLevel (line 13) | WarningLevel = "warning"
type TagSet (line 18) | type TagSet struct
method AddFilter (line 26) | func (t *TagSet) AddFilter(key string, filter Expr) {
method Len (line 31) | func (t *TagSet) Len() int { return len(t.SeriesKeys) }
method Less (line 32) | func (t *TagSet) Less(i, j int) bool { return t.SeriesKeys[i] < t.Seri...
method Swap (line 33) | func (t *TagSet) Swap(i, j int) {
method Reverse (line 39) | func (t *TagSet) Reverse() {
type Message (line 47) | type Message struct
function ReadOnlyWarning (line 57) | func ReadOnlyWarning(stmt string) *Message {
type Result (line 66) | type Result struct
method MarshalJSON (line 77) | func (r *Result) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 100) | func (r *Result) UnmarshalJSON(b []byte) error {
FILE: vendor/github.com/influxdata/influxdb/influxql/sanitize.go
function Sanitize (line 22) | func Sanitize(query string) string {
FILE: vendor/github.com/influxdata/influxdb/influxql/sanitize_test.go
function TestSanitize (line 9) | func TestSanitize(t *testing.T) {
function BenchmarkSanitize (line 43) | func BenchmarkSanitize(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/influxql/scanner.go
type Scanner (line 12) | type Scanner struct
method Scan (line 24) | func (s *Scanner) Scan() (tok Token, pos Pos, lit string) {
method scanWhitespace (line 140) | func (s *Scanner) scanWhitespace() (tok Token, pos Pos, lit string) {
method skipUntilNewline (line 164) | func (s *Scanner) skipUntilNewline() {
method skipUntilEndComment (line 173) | func (s *Scanner) skipUntilEndComment() error {
method scanIdent (line 193) | func (s *Scanner) scanIdent(lookup bool) (tok Token, pos Pos, lit stri...
method scanString (line 229) | func (s *Scanner) scanString() (tok Token, pos Pos, lit string) {
method ScanRegex (line 245) | func (s *Scanner) ScanRegex() (tok Token, pos Pos, lit string) {
method scanNumber (line 265) | func (s *Scanner) scanNumber() (tok Token, pos Pos, lit string) {
method scanDigits (line 335) | func (s *Scanner) scanDigits() string {
function NewScanner (line 17) | func NewScanner(r io.Reader) *Scanner {
function isWhitespace (line 349) | func isWhitespace(ch rune) bool { return ch == ' ' || ch == '\t' || ch =...
function isLetter (line 352) | func isLetter(ch rune) bool { return (ch >= 'a' && ch <= 'z') || (ch >= ...
function isDigit (line 355) | func isDigit(ch rune) bool { return (ch >= '0' && ch <= '9') }
function isIdentChar (line 358) | func isIdentChar(ch rune) bool { return isLetter(ch) || isDigit(ch) || c...
function isIdentFirstChar (line 361) | func isIdentFirstChar(ch rune) bool { return isLetter(ch) || ch == '_' }
type bufScanner (line 365) | type bufScanner struct
method Scan (line 382) | func (s *bufScanner) Scan() (tok Token, pos Pos, lit string) {
method ScanRegex (line 387) | func (s *bufScanner) ScanRegex() (tok Token, pos Pos, lit string) {
method scanFunc (line 392) | func (s *bufScanner) scanFunc(scan func() (Token, Pos, string)) (tok T...
method Unscan (line 408) | func (s *bufScanner) Unscan() { s.n++ }
method curr (line 411) | func (s *bufScanner) curr() (tok Token, pos Pos, lit string) {
function newBufScanner (line 377) | func newBufScanner(r io.Reader) *bufScanner {
type reader (line 418) | type reader struct
method ReadRune (line 433) | func (r *reader) ReadRune() (ch rune, size int, err error) {
method UnreadRune (line 443) | func (r *reader) UnreadRune() error {
method read (line 449) | func (r *reader) read() (ch rune, pos Pos) {
method unread (line 494) | func (r *reader) unread() {
method curr (line 499) | func (r *reader) curr() (ch rune, pos Pos) {
constant eof (line 506) | eof = rune(0)
function ScanDelimited (line 509) | func ScanDelimited(r io.RuneScanner, start, end rune, escapes map[rune]r...
function ScanString (line 558) | func ScanString(r io.RuneScanner) (string, error) {
function ScanBareIdent (line 596) | func ScanBareIdent(r io.RuneScanner) string {
function IsRegexOp (line 615) | func IsRegexOp(t Token) bool {
FILE: vendor/github.com/influxdata/influxdb/influxql/scanner_test.go
function TestScanner_Scan (line 12) | func TestScanner_Scan(t *testing.T) {
function TestScanner_Scan_Multi (line 183) | func TestScanner_Scan_Multi(t *testing.T) {
function TestScanString (line 236) | func TestScanString(t *testing.T) {
function TestScanRegex (line 266) | func TestScanRegex(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/influxql/select.go
type SelectOptions (line 12) | type SelectOptions struct
function Select (line 38) | func Select(stmt *SelectStatement, ic IteratorCreator, sopt *SelectOptio...
function buildIterators (line 47) | func buildIterators(stmt *SelectStatement, ic IteratorCreator, opt Itera...
function buildAuxIterators (line 109) | func buildAuxIterators(fields Fields, ic IteratorCreator, sources Source...
function buildAuxIterator (line 196) | func buildAuxIterator(expr Expr, aitr AuxIterator, opt IteratorOptions) ...
function buildFieldIterators (line 242) | func buildFieldIterators(fields Fields, ic IteratorCreator, sources Sour...
function buildExprIterator (line 309) | func buildExprIterator(expr Expr, ic IteratorCreator, sources Sources, o...
type exprIteratorBuilder (line 335) | type exprIteratorBuilder struct
method buildVarRefIterator (line 343) | func (b *exprIteratorBuilder) buildVarRefIterator(expr *VarRef) (Itera...
method buildCallIterator (line 386) | func (b *exprIteratorBuilder) buildCallIterator(expr *Call) (Iterator,...
method buildBinaryExprIterator (line 668) | func (b *exprIteratorBuilder) buildBinaryExprIterator(expr *BinaryExpr...
method callIterator (line 702) | func (b *exprIteratorBuilder) callIterator(expr *Call, opt IteratorOpt...
function buildRHSTransformIterator (line 747) | func buildRHSTransformIterator(lhs Iterator, rhs Literal, op Token, opt ...
function buildLHSTransformIterator (line 963) | func buildLHSTransformIterator(lhs Literal, rhs Iterator, op Token, opt ...
function buildTransformIterator (line 1179) | func buildTransformIterator(lhs Iterator, rhs Iterator, op Token, opt It...
function iteratorDataType (line 1268) | func iteratorDataType(itr Iterator) DataType {
function literalDataType (line 1283) | func literalDataType(lit Literal) DataType {
function binaryExprFunc (line 1298) | func binaryExprFunc(typ1 DataType, typ2 DataType, op Token) interface{} {
function floatBinaryExprFunc (line 1316) | func floatBinaryExprFunc(op Token) interface{} {
function integerBinaryExprFunc (line 1349) | func integerBinaryExprFunc(op Token) interface{} {
function booleanBinaryExprFunc (line 1393) | func booleanBinaryExprFunc(op Token) interface{} {
function stringSetSlice (line 1406) | func stringSetSlice(m map[string]struct{}) []string {
FILE: vendor/github.com/influxdata/influxdb/influxql/select_test.go
constant Second (line 16) | Second = int64(time.Second)
function TestSelect_Min (line 19) | func TestSelect_Min(t *testing.T) {
function TestSelect_Distinct_Float (line 66) | func TestSelect_Distinct_Float(t *testing.T) {
function TestSelect_Distinct_Integer (line 106) | func TestSelect_Distinct_Integer(t *testing.T) {
function TestSelect_Distinct_String (line 146) | func TestSelect_Distinct_String(t *testing.T) {
function TestSelect_Distinct_Boolean (line 186) | func TestSelect_Distinct_Boolean(t *testing.T) {
function TestSelect_Mean_Float (line 227) | func TestSelect_Mean_Float(t *testing.T) {
function TestSelect_Mean_Integer (line 276) | func TestSelect_Mean_Integer(t *testing.T) {
function TestSelect_Mean_String (line 325) | func TestSelect_Mean_String(t *testing.T) {
function TestSelect_Mean_Boolean (line 346) | func TestSelect_Mean_Boolean(t *testing.T) {
function TestSelect_Median_Float (line 367) | func TestSelect_Median_Float(t *testing.T) {
function TestSelect_Median_Integer (line 412) | func TestSelect_Median_Integer(t *testing.T) {
function TestSelect_Median_String (line 457) | func TestSelect_Median_String(t *testing.T) {
function TestSelect_Median_Boolean (line 478) | func TestSelect_Median_Boolean(t *testing.T) {
function TestSelect_Mode_Float (line 499) | func TestSelect_Mode_Float(t *testing.T) {
function TestSelect_Mode_Integer (line 544) | func TestSelect_Mode_Integer(t *testing.T) {
function TestSelect_Mode_String (line 589) | func TestSelect_Mode_String(t *testing.T) {
function TestSelect_Mode_Boolean (line 631) | func TestSelect_Mode_Boolean(t *testing.T) {
function TestSelect_Top_NoTags_Float (line 672) | func TestSelect_Top_NoTags_Float(t *testing.T) {
function TestSelect_Top_NoTags_Integer (line 718) | func TestSelect_Top_NoTags_Integer(t *testing.T) {
function TestSelect_Top_Tags_Float (line 764) | func TestSelect_Top_Tags_Float(t *testing.T) {
function TestSelect_Top_Tags_Integer (line 823) | func TestSelect_Top_Tags_Integer(t *testing.T) {
function TestSelect_Top_GroupByTags_Float (line 879) | func TestSelect_Top_GroupByTags_Float(t *testing.T) {
function TestSelect_Top_GroupByTags_Integer (line 934) | func TestSelect_Top_GroupByTags_Integer(t *testing.T) {
function TestSelect_Bottom_NoTags_Float (line 989) | func TestSelect_Bottom_NoTags_Float(t *testing.T) {
function TestSelect_Bottom_NoTags_Integer (line 1035) | func TestSelect_Bottom_NoTags_Integer(t *testing.T) {
function TestSelect_Bottom_Tags_Float (line 1081) | func TestSelect_Bottom_Tags_Float(t *testing.T) {
function TestSelect_Bottom_Tags_Integer (line 1140) | func TestSelect_Bottom_Tags_Integer(t *testing.T) {
function TestSelect_Bottom_GroupByTags_Float (line 1199) | func TestSelect_Bottom_GroupByTags_Float(t *testing.T) {
function TestSelect_Bottom_GroupByTags_Integer (line 1254) | func TestSelect_Bottom_GroupByTags_Integer(t *testing.T) {
function TestSelect_Fill_Null_Float (line 1309) | func TestSelect_Fill_Null_Float(t *testing.T) {
function TestSelect_Fill_Number_Float (line 1339) | func TestSelect_Fill_Number_Float(t *testing.T) {
function TestSelect_Fill_Previous_Float (line 1369) | func TestSelect_Fill_Previous_Float(t *testing.T) {
function TestSelect_Fill_Linear_Float_One (line 1399) | func TestSelect_Fill_Linear_Float_One(t *testing.T) {
function TestSelect_Fill_Linear_Float_Many (line 1429) | func TestSelect_Fill_Linear_Float_Many(t *testing.T) {
function TestSelect_Fill_Linear_Float_MultipleSeries (line 1460) | func TestSelect_Fill_Linear_Float_MultipleSeries(t *testing.T) {
function TestSelect_Fill_Linear_Integer_One (line 1497) | func TestSelect_Fill_Linear_Integer_One(t *testing.T) {
function TestSelect_Fill_Linear_Integer_Many (line 1527) | func TestSelect_Fill_Linear_Integer_Many(t *testing.T) {
function TestSelect_Fill_Linear_Integer_MultipleSeries (line 1559) | func TestSelect_Fill_Linear_Integer_MultipleSeries(t *testing.T) {
function TestSelect_Stddev_Float (line 1596) | func TestSelect_Stddev_Float(t *testing.T) {
function TestSelect_Stddev_Integer (line 1641) | func TestSelect_Stddev_Integer(t *testing.T) {
function TestSelect_Spread_Float (line 1686) | func TestSelect_Spread_Float(t *testing.T) {
function TestSelect_Spread_Integer (line 1731) | func TestSelect_Spread_Integer(t *testing.T) {
function TestSelect_Percentile_Float (line 1776) | func TestSelect_Percentile_Float(t *testing.T) {
function TestSelect_Percentile_Integer (line 1826) | func TestSelect_Percentile_Integer(t *testing.T) {
function TestSelect_Sample_Float (line 1876) | func TestSelect_Sample_Float(t *testing.T) {
function TestSelect_Sample_Integer (line 1911) | func TestSelect_Sample_Integer(t *testing.T) {
function TestSelect_Sample_Boolean (line 1946) | func TestSelect_Sample_Boolean(t *testing.T) {
function TestSelect_Sample_String (line 1981) | func TestSelect_Sample_String(t *testing.T) {
function TestSelect_Raw (line 2016) | func TestSelect_Raw(t *testing.T) {
function TestSelect_BinaryExpr_Float (line 2059) | func TestSelect_BinaryExpr_Float(t *testing.T) {
function TestSelect_BinaryExpr_Integer (line 2288) | func TestSelect_BinaryExpr_Integer(t *testing.T) {
function TestSelect_BinaryExpr_Mixed (line 2544) | func TestSelect_BinaryExpr_Mixed(t *testing.T) {
function TestSelect_BinaryExpr_Boolean (line 2625) | func TestSelect_BinaryExpr_Boolean(t *testing.T) {
function TestSelect_BinaryExpr_NilValues (line 2706) | func TestSelect_BinaryExpr_NilValues(t *testing.T) {
function TestSelect_ParenExpr (line 2787) | func TestSelect_ParenExpr(t *testing.T) {
function TestSelect_Derivative_Float (line 2869) | func TestSelect_Derivative_Float(t *testing.T) {
function TestSelect_Derivative_Integer (line 2898) | func TestSelect_Derivative_Integer(t *testing.T) {
function TestSelect_Derivative_Desc_Float (line 2927) | func TestSelect_Derivative_Desc_Float(t *testing.T) {
function TestSelect_Derivative_Desc_Integer (line 2956) | func TestSelect_Derivative_Desc_Integer(t *testing.T) {
function TestSelect_Derivative_Duplicate_Float (line 2985) | func TestSelect_Derivative_Duplicate_Float(t *testing.T) {
function TestSelect_Derivative_Duplicate_Integer (line 3012) | func TestSelect_Derivative_Duplicate_Integer(t *testing.T) {
function TestSelect_Difference_Float (line 3039) | func TestSelect_Difference_Float(t *testing.T) {
function TestSelect_Difference_Integer (line 3068) | func TestSelect_Difference_Integer(t *testing.T) {
function TestSelect_Difference_Duplicate_Float (line 3097) | func TestSelect_Difference_Duplicate_Float(t *testing.T) {
function TestSelect_Difference_Duplicate_Integer (line 3124) | func TestSelect_Difference_Duplicate_Integer(t *testing.T) {
function TestSelect_Non_Negative_Difference_Float (line 3151) | func TestSelect_Non_Negative_Difference_Float(t *testing.T) {
function TestSelect_Non_Negative_Difference_Integer (line 3180) | func TestSelect_Non_Negative_Difference_Integer(t *testing.T) {
function TestSelect_Non_Negative_Difference_Duplicate_Float (line 3207) | func TestSelect_Non_Negative_Difference_Duplicate_Float(t *testing.T) {
function TestSelect_Non_Negative_Difference_Duplicate_Integer (line 3241) | func TestSelect_Non_Negative_Difference_Duplicate_Integer(t *testing.T) {
function TestSelect_Elapsed_Float (line 3275) | func TestSelect_Elapsed_Float(t *testing.T) {
function TestSelect_Elapsed_Integer (line 3304) | func TestSelect_Elapsed_Integer(t *testing.T) {
function TestSelect_Elapsed_String (line 3333) | func TestSelect_Elapsed_String(t *testing.T) {
function TestSelect_Elapsed_Boolean (line 3362) | func TestSelect_Elapsed_Boolean(t *testing.T) {
function TestSelect_Integral_Float (line 3391) | func TestSelect_Integral_Float(t *testing.T) {
function TestSelect_Integral_Float_GroupByTime (line 3417) | func TestSelect_Integral_Float_GroupByTime(t *testing.T) {
function TestSelect_Integral_Float_InterpolateGroupByTime (line 3444) | func TestSelect_Integral_Float_InterpolateGroupByTime(t *testing.T) {
function TestSelect_Integral_Integer (line 3471) | func TestSelect_Integral_Integer(t *testing.T) {
function TestSelect_Integral_Duplicate_Float (line 3497) | func TestSelect_Integral_Duplicate_Float(t *testing.T) {
function TestSelect_Integral_Duplicate_Integer (line 3523) | func TestSelect_Integral_Duplicate_Integer(t *testing.T) {
function TestSelect_MovingAverage_Float (line 3549) | func TestSelect_MovingAverage_Float(t *testing.T) {
function TestSelect_MovingAverage_Integer (line 3578) | func TestSelect_MovingAverage_Integer(t *testing.T) {
function TestSelect_CumulativeSum_Float (line 3607) | func TestSelect_CumulativeSum_Float(t *testing.T) {
function TestSelect_CumulativeSum_Integer (line 3637) | func TestSelect_CumulativeSum_Integer(t *testing.T) {
function TestSelect_CumulativeSum_Duplicate_Float (line 3667) | func TestSelect_CumulativeSum_Duplicate_Float(t *testing.T) {
function TestSelect_CumulativeSum_Duplicate_Integer (line 3697) | func TestSelect_CumulativeSum_Duplicate_Integer(t *testing.T) {
function TestSelect_HoltWinters_GroupBy_Agg (line 3727) | func TestSelect_HoltWinters_GroupBy_Agg(t *testing.T) {
function TestSelect_UnsupportedCall (line 3765) | func TestSelect_UnsupportedCall(t *testing.T) {
function TestSelect_InvalidQueries (line 3780) | func TestSelect_InvalidQueries(t *testing.T) {
function BenchmarkSelect_Raw_1K (line 3816) | func BenchmarkSelect_Raw_1K(b *testing.B) { benchmarkSelectRaw(b, 1000) }
function BenchmarkSelect_Raw_100K (line 3817) | func BenchmarkSelect_Raw_100K(b *testing.B) { benchmarkSelectRaw(b, 1000...
function benchmarkSelectRaw (line 3819) | func benchmarkSelectRaw(b *testing.B, pointN int) {
function benchmarkSelect (line 3823) | func benchmarkSelect(b *testing.B, stmt *influxql.SelectStatement, ic in...
function NewRawBenchmarkIteratorCreator (line 3836) | func NewRawBenchmarkIteratorCreator(pointN int) *IteratorCreator {
function benchmarkSelectDedupe (line 3865) | func benchmarkSelectDedupe(b *testing.B, seriesN, pointsPerSeries int) {
function BenchmarkSelect_Dedupe_1K (line 3890) | func BenchmarkSelect_Dedupe_1K(b *testing.B) { benchmarkSelectDedupe(b, ...
function benchmarkSelectTop (line 3892) | func benchmarkSelectTop(b *testing.B, seriesN, pointsPerSeries int) {
function BenchmarkSelect_Top_1K (line 3919) | func BenchmarkSelect_Top_1K(b *testing.B) { benchmarkSelectTop(b, 1000, ...
FILE: vendor/github.com/influxdata/influxdb/influxql/statement_rewriter.go
function RewriteStatement (line 6) | func RewriteStatement(stmt Statement) (Statement, error) {
function rewriteShowFieldKeysStatement (line 23) | func rewriteShowFieldKeysStatement(stmt *ShowFieldKeysStatement) (Statem...
function rewriteShowMeasurementsStatement (line 40) | func rewriteShowMeasurementsStatement(stmt *ShowMeasurementsStatement) (...
function rewriteShowSeriesStatement (line 59) | func rewriteShowSeriesStatement(stmt *ShowSeriesStatement) (Statement, e...
function rewriteShowTagValuesStatement (line 80) | func rewriteShowTagValuesStatement(stmt *ShowTagValuesStatement) (Statem...
function rewriteShowTagKeysStatement (line 137) | func rewriteShowTagKeysStatement(stmt *ShowTagKeysStatement) (Statement,...
function rewriteSources (line 159) | func rewriteSources(sources Sources, measurementName, defaultDatabase st...
function rewriteSourcesCondition (line 188) | func rewriteSourcesCondition(sources Sources, cond Expr) Expr {
FILE: vendor/github.com/influxdata/influxdb/influxql/statement_rewriter_test.go
function TestRewriteStatement (line 9) | func TestRewriteStatement(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/influxql/subquery.go
type subqueryBuilder (line 3) | type subqueryBuilder struct
method buildAuxIterator (line 9) | func (b *subqueryBuilder) buildAuxIterator(opt IteratorOptions) (Itera...
method mapAuxFields (line 41) | func (b *subqueryBuilder) mapAuxFields(auxFields []VarRef) []IteratorM...
method mapAuxField (line 55) | func (b *subqueryBuilder) mapAuxField(name *VarRef) IteratorMap {
method buildVarRefIterator (line 86) | func (b *subqueryBuilder) buildVarRefIterator(expr *VarRef, opt Iterat...
FILE: vendor/github.com/influxdata/influxdb/influxql/task_manager.go
constant DefaultQueryTimeout (line 15) | DefaultQueryTimeout = time.Duration(0)
type TaskManager (line 19) | type TaskManager struct
method ExecuteStatement (line 52) | func (t *TaskManager) ExecuteStatement(stmt Statement, ctx ExecutionCo...
method executeKillQueryStatement (line 83) | func (t *TaskManager) executeKillQueryStatement(stmt *KillQueryStateme...
method executeShowQueriesStatement (line 87) | func (t *TaskManager) executeShowQueriesStatement(q *ShowQueriesStatem...
method query (line 115) | func (t *TaskManager) query(qid uint64) (*QueryTask, bool) {
method AttachQuery (line 129) | func (t *TaskManager) AttachQuery(q *Query, database string, interrupt...
method KillQuery (line 172) | func (t *TaskManager) KillQuery(qid uint64) error {
method Queries (line 195) | func (t *TaskManager) Queries() []QueryInfo {
method waitForQuery (line 212) | func (t *TaskManager) waitForQuery(qid uint64, interrupt <-chan struct...
method Close (line 251) | func (t *TaskManager) Close() error {
function NewTaskManager (line 42) | func NewTaskManager() *TaskManager {
type QueryInfo (line 187) | type QueryInfo struct
FILE: vendor/github.com/influxdata/influxdb/influxql/token.go
type Token (line 8) | type Token
method String (line 278) | func (tok Token) String() string {
method Precedence (line 286) | func (tok Token) Precedence() int {
method isOperator (line 303) | func (tok Token) isOperator() bool { return tok > operatorBeg && tok <...
constant ILLEGAL (line 13) | ILLEGAL Token = iota
constant EOF (line 14) | EOF
constant WS (line 15) | WS
constant COMMENT (line 16) | COMMENT
constant literalBeg (line 18) | literalBeg
constant IDENT (line 20) | IDENT
constant BOUNDPARAM (line 21) | BOUNDPARAM
constant NUMBER (line 22) | NUMBER
constant INTEGER (line 23) | INTEGER
constant DURATIONVAL (line 24) | DURATIONVAL
constant STRING (line 25) | STRING
constant BADSTRING (line 26) | BADSTRING
constant BADESCAPE (line 27) | BADESCAPE
constant TRUE (line 28) | TRUE
constant FALSE (line 29) | FALSE
constant REGEX (line 30) | REGEX
constant BADREGEX (line 31) | BADREGEX
constant literalEnd (line 32) | literalEnd
constant operatorBeg (line 34) | operatorBeg
constant ADD (line 36) | ADD
constant SUB (line 37) | SUB
constant MUL (line 38) | MUL
constant DIV (line 39) | DIV
constant MOD (line 40) | MOD
constant BITWISE_AND (line 41) | BITWISE_AND
constant BITWISE_OR (line 42) | BITWISE_OR
constant BITWISE_XOR (line 43) | BITWISE_XOR
constant AND (line 45) | AND
constant OR (line 46) | OR
constant EQ (line 48) | EQ
constant NEQ (line 49) | NEQ
constant EQREGEX (line 50) | EQREGEX
constant NEQREGEX (line 51) | NEQREGEX
constant LT (line 52) | LT
constant LTE (line 53) | LTE
constant GT (line 54) | GT
constant GTE (line 55) | GTE
constant operatorEnd (line 56) | operatorEnd
constant LPAREN (line 58) | LPAREN
constant RPAREN (line 59) | RPAREN
constant COMMA (line 60) | COMMA
constant COLON (line 61) | COLON
constant DOUBLECOLON (line 62) | DOUBLECOLON
constant SEMICOLON (line 63) | SEMICOLON
constant DOT (line 64) | DOT
constant keywordBeg (line 66) | keywordBeg
constant ALL (line 68) | ALL
constant ALTER (line 69) | ALTER
constant ANY (line 70) | ANY
constant AS (line 71) | AS
constant ASC (line 72) | ASC
constant BEGIN (line 73) | BEGIN
constant BY (line 74) | BY
constant CREATE (line 75) | CREATE
constant CONTINUOUS (line 76) | CONTINUOUS
constant DATABASE (line 77) | DATABASE
constant DATABASES (line 78) | DATABASES
constant DEFAULT (line 79) | DEFAULT
constant DELETE (line 80) | DELETE
constant DESC (line 81) | DESC
constant DESTINATIONS (line 82) | DESTINATIONS
constant DIAGNOSTICS (line 83) | DIAGNOSTICS
constant DISTINCT (line 84) | DISTINCT
constant DROP (line 85) | DROP
constant DURATION (line 86) | DURATION
constant END (line 87) | END
constant EVERY (line 88) | EVERY
constant EXPLAIN (line 89) | EXPLAIN
constant FIELD (line 90) | FIELD
constant FOR (line 91) | FOR
constant FROM (line 92) | FROM
constant GRANT (line 93) | GRANT
constant GRANTS (line 94) | GRANTS
constant GROUP (line 95) | GROUP
constant GROUPS (line 96) | GROUPS
constant IN (line 97) | IN
constant INF (line 98) | INF
constant INSERT (line 99) | INSERT
constant INTO (line 100) | INTO
constant KEY (line 101) | KEY
constant KEYS (line 102) | KEYS
constant KILL (line 103) | KILL
constant LIMIT (line 104) | LIMIT
constant MEASUREMENT (line 105) | MEASUREMENT
constant MEASUREMENTS (line 106) | MEASUREMENTS
constant NAME (line 107) | NAME
constant OFFSET (line 108) | OFFSET
constant ON (line 109) | ON
constant ORDER (line 110) | ORDER
constant PASSWORD (line 111) | PASSWORD
constant POLICY (line 112) | POLICY
constant POLICIES (line 113) | POLICIES
constant PRIVILEGES (line 114) | PRIVILEGES
constant QUERIES (line 115) | QUERIES
constant QUERY (line 116) | QUERY
constant READ (line 117) | READ
constant REPLICATION (line 118) | REPLICATION
constant RESAMPLE (line 119) | RESAMPLE
constant RETENTION (line 120) | RETENTION
constant REVOKE (line 121) | REVOKE
constant SELECT (line 122) | SELECT
constant SERIES (line 123) | SERIES
constant SET (line 124) | SET
constant SHOW (line 125) | SHOW
constant SHARD (line 126) | SHARD
constant SHARDS (line 127) | SHARDS
constant SLIMIT (line 128) | SLIMIT
constant SOFFSET (line 129) | SOFFSET
constant STATS (line 130) | STATS
constant SUBSCRIPTION (line 131) | SUBSCRIPTION
constant SUBSCRIPTIONS (line 132) | SUBSCRIPTIONS
constant TAG (line 133) | TAG
constant TO (line 134) | TO
constant USER (line 135) | USER
constant USERS (line 136) | USERS
constant VALUES (line 137) | VALUES
constant WHERE (line 138) | WHERE
constant WITH (line 139) | WITH
constant WRITE (line 140) | WRITE
constant keywordEnd (line 141) | keywordEnd
function init (line 265) | func init() {
function tokstr (line 306) | func tokstr(tok Token, lit string) string {
function Lookup (line 314) | func Lookup(ident string) Token {
type Pos (line 323) | type Pos struct
FILE: vendor/github.com/influxdata/influxdb/internal/meta_client.go
type MetaClientMock (line 11) | type MetaClientMock struct
method Close (line 52) | func (c *MetaClientMock) Close() error {
method CreateContinuousQuery (line 56) | func (c *MetaClientMock) CreateContinuousQuery(database, name, query s...
method CreateDatabase (line 60) | func (c *MetaClientMock) CreateDatabase(name string) (*meta.DatabaseIn...
method CreateDatabaseWithRetentionPolicy (line 64) | func (c *MetaClientMock) CreateDatabaseWithRetentionPolicy(name string...
method CreateRetentionPolicy (line 68) | func (c *MetaClientMock) CreateRetentionPolicy(database string, spec *...
method CreateShardGroup (line 72) | func (c *MetaClientMock) CreateShardGroup(database, policy string, tim...
method CreateSubscription (line 76) | func (c *MetaClientMock) CreateSubscription(database, rp, name, mode s...
method CreateUser (line 80) | func (c *MetaClientMock) CreateUser(name, password string, admin bool)...
method Database (line 84) | func (c *MetaClientMock) Database(name string) *meta.DatabaseInfo {
method Databases (line 88) | func (c *MetaClientMock) Databases() []meta.DatabaseInfo {
method DeleteShardGroup (line 92) | func (c *MetaClientMock) DeleteShardGroup(database string, policy stri...
method DropContinuousQuery (line 96) | func (c *MetaClientMock) DropContinuousQuery(database, name string) er...
method DropDatabase (line 100) | func (c *MetaClientMock) DropDatabase(name string) error {
method DropRetentionPolicy (line 104) | func (c *MetaClientMock) DropRetentionPolicy(database, name string) er...
method DropShard (line 108) | func (c *MetaClientMock) DropShard(id uint64) error {
method DropSubscription (line 112) | func (c *MetaClientMock) DropSubscription(database, rp, name string) e...
method DropUser (line 116) | func (c *MetaClientMock) DropUser(name string) error {
method RetentionPolicy (line 120) | func (c *MetaClientMock) RetentionPolicy(database, name string) (rpi *...
method SetAdminPrivilege (line 124) | func (c *MetaClientMock) SetAdminPrivilege(username string, admin bool...
method SetPrivilege (line 128) | func (c *MetaClientMock) SetPrivilege(username, database string, p inf...
method ShardGroupsByTimeRange (line 132) | func (c *MetaClientMock) ShardGroupsByTimeRange(database, policy strin...
method ShardOwner (line 136) | func (c *MetaClientMock) ShardOwner(shardID uint64) (database, policy ...
method UpdateRetentionPolicy (line 140) | func (c *MetaClientMock) UpdateRetentionPolicy(database, name string, ...
method UpdateUser (line 144) | func (c *MetaClientMock) UpdateUser(name, password string) error {
method UserPrivilege (line 148) | func (c *MetaClientMock) UserPrivilege(username, database string) (*in...
method UserPrivileges (line 152) | func (c *MetaClientMock) UserPrivileges(username string) (map[string]i...
method Authenticate (line 156) | func (c *MetaClientMock) Authenticate(username, password string) (meta...
method AdminUserExists (line 159) | func (c *MetaClientMock) AdminUserExists() bool { return c.AdminUserEx...
method User (line 161) | func (c *MetaClientMock) User(username string) (meta.User, error) { re...
method Users (line 162) | func (c *MetaClientMock) Users() []meta.UserInfo { re...
method Open (line 164) | func (c *MetaClientMock) Open() error { return c.OpenFn...
method Data (line 165) | func (c *MetaClientMock) Data() meta.Data { return c.DataFn...
method SetData (line 166) | func (c *MetaClientMock) SetData(d *meta.Data) error { return c.SetDat...
FILE: vendor/github.com/influxdata/influxdb/models/consistency.go
type ConsistencyLevel (line 12) | type ConsistencyLevel
constant ConsistencyLevelAny (line 16) | ConsistencyLevelAny ConsistencyLevel = iota
constant ConsistencyLevelOne (line 19) | ConsistencyLevelOne
constant ConsistencyLevelQuorum (line 22) | ConsistencyLevelQuorum
constant ConsistencyLevelAll (line 25) | ConsistencyLevelAll
function ParseConsistencyLevel (line 35) | func ParseConsistencyLevel(level string) (ConsistencyLevel, error) {
FILE: vendor/github.com/influxdata/influxdb/models/inline_fnv.go
constant prime64 (line 5) | prime64 = 1099511628211
constant offset64 (line 6) | offset64 = 14695981039346656037
type InlineFNV64a (line 11) | type InlineFNV64a
method Write (line 19) | func (s *InlineFNV64a) Write(data []byte) (int, error) {
method Sum64 (line 30) | func (s *InlineFNV64a) Sum64() uint64 {
function NewInlineFNV64a (line 14) | func NewInlineFNV64a() InlineFNV64a {
FILE: vendor/github.com/influxdata/influxdb/models/inline_fnv_test.go
function TestInlineFNV64aEquivalenceFuzz (line 11) | func TestInlineFNV64aEquivalenceFuzz(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/models/inline_strconv_parse.go
function parseIntBytes (line 10) | func parseIntBytes(b []byte, base int, bitSize int) (i int64, err error) {
function parseFloatBytes (line 16) | func parseFloatBytes(b []byte, bitSize int) (float64, error) {
function parseBoolBytes (line 22) | func parseBoolBytes(b []byte) (bool, error) {
function unsafeBytesToString (line 30) | func unsafeBytesToString(in []byte) string {
FILE: vendor/github.com/influxdata/influxdb/models/inline_strconv_parse_test.go
function TestParseIntBytesEquivalenceFuzz (line 9) | func TestParseIntBytesEquivalenceFuzz(t *testing.T) {
function TestParseIntBytesValid64bitBase10EquivalenceFuzz (line 26) | func TestParseIntBytesValid64bitBase10EquivalenceFuzz(t *testing.T) {
function TestParseFloatBytesEquivalenceFuzz (line 46) | func TestParseFloatBytesEquivalenceFuzz(t *testing.T) {
function TestParseFloatBytesValid64bitEquivalenceFuzz (line 63) | func TestParseFloatBytesValid64bitEquivalenceFuzz(t *testing.T) {
function TestParseBoolBytesEquivalence (line 83) | func TestParseBoolBytesEquivalence(t *testing.T) {
function checkErrs (line 97) | func checkErrs(a, b error) bool {
FILE: vendor/github.com/influxdata/influxdb/models/points.go
constant MaxKeyLength (line 43) | MaxKeyLength = 65535
type Point (line 47) | type Point interface
type FieldType (line 123) | type FieldType
constant Integer (line 127) | Integer FieldType = iota
constant Float (line 130) | Float
constant Boolean (line 133) | Boolean
constant String (line 136) | String
constant Empty (line 139) | Empty
type FieldIterator (line 143) | type FieldIterator interface
type Points (line 170) | type Points
method Len (line 173) | func (a Points) Len() int { return len(a) }
method Less (line 176) | func (a Points) Less(i, j int) bool { return a[i].Time().Before(a[j].T...
method Swap (line 179) | func (a Points) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
type point (line 182) | type point struct
method Key (line 1346) | func (p *point) Key() []byte {
method name (line 1350) | func (p *point) name() []byte {
method Name (line 1355) | func (p *point) Name() []byte {
method SetName (line 1360) | func (p *point) SetName(name string) {
method Time (line 1366) | func (p *point) Time() time.Time {
method SetTime (line 1371) | func (p *point) SetTime(t time.Time) {
method Round (line 1376) | func (p *point) Round(d time.Duration) {
method Tags (line 1381) | func (p *point) Tags() Tags {
method HasTag (line 1389) | func (p *point) HasTag(tag []byte) bool {
method SetTags (line 1488) | func (p *point) SetTags(tags Tags) {
method AddTag (line 1494) | func (p *point) AddTag(key, value string) {
method Fields (line 1503) | func (p *point) Fields() (Fields, error) {
method SetPrecision (line 1516) | func (p *point) SetPrecision(precision string) {
method String (line 1533) | func (p *point) String() string {
method AppendString (line 1541) | func (p *point) AppendString(buf []byte) []byte {
method StringSize (line 1555) | func (p *point) StringSize() int {
method MarshalBinary (line 1577) | func (p *point) MarshalBinary() ([]byte, error) {
method UnmarshalBinary (line 1605) | func (p *point) UnmarshalBinary(b []byte) error {
method PrecisionString (line 1642) | func (p *point) PrecisionString(precision string) string {
method RoundedString (line 1653) | func (p *point) RoundedString(d time.Duration) string {
method unmarshalBinary (line 1661) | func (p *point) unmarshalBinary() (Fields, error) {
method HashID (line 1695) | func (p *point) HashID() uint64 {
method UnixNano (line 1703) | func (p *point) UnixNano() int64 {
method Split (line 1710) | func (p *point) Split(size int) []Point {
method FieldIterator (line 2034) | func (p *point) FieldIterator() FieldIterator {
method Next (line 2047) | func (p *point) Next() bool {
method FieldKey (line 2090) | func (p *point) FieldKey() []byte {
method Type (line 2095) | func (p *point) Type() FieldType {
method StringValue (line 2100) | func (p *point) StringValue() string {
method IntegerValue (line 2105) | func (p *point) IntegerValue() (int64, error) {
method BooleanValue (line 2114) | func (p *point) BooleanValue() (bool, error) {
method FloatValue (line 2123) | func (p *point) FloatValue() (float64, error) {
method Reset (line 2132) | func (p *point) Reset() {
constant maxInt64Digits (line 210) | maxInt64Digits = 19
constant minInt64Digits (line 213) | minInt64Digits = 20
constant maxFloat64Digits (line 217) | maxFloat64Digits = 25
constant minFloat64Digits (line 221) | minFloat64Digits = 27
function ParsePoints (line 227) | func ParsePoints(buf []byte) ([]Point, error) {
function ParsePointsString (line 232) | func ParsePointsString(buf string) ([]Point, error) {
function ParseKey (line 240) | func ParseKey(buf []byte) (string, Tags) {
function ParseTags (line 254) | func ParseTags(buf []byte) (Tags, error) {
function ParseName (line 258) | func ParseName(buf []byte) ([]byte, error) {
function ParsePointsWithPrecision (line 273) | func ParsePointsWithPrecision(buf []byte, defaultTime time.Time, precisi...
function parsePoint (line 320) | func parsePoint(buf []byte, defaultTime time.Time, precision string) (Po...
function GetPrecisionMultiplier (line 398) | func GetPrecisionMultiplier(precision string) int64 {
function scanKey (line 418) | func scanKey(buf []byte, i int) (int, []byte, error) {
constant tagKeyState (line 517) | tagKeyState = iota
constant tagValueState (line 518) | tagValueState
constant fieldsState (line 519) | fieldsState
function scanMeasurement (line 524) | func scanMeasurement(buf []byte, i int) (int, int, error) {
function scanTags (line 560) | func scanTags(buf []byte, i int, indices []int) (int, int, []int, error) {
function scanTagsKey (line 595) | func scanTagsKey(buf []byte, i int) (int, error) {
function scanTagsValue (line 624) | func scanTagsValue(buf []byte, i int) (int, int, error) {
function insertionSort (line 660) | func insertionSort(l, r int, buf []byte, indices []int) {
function less (line 668) | func less(buf []byte, indices []int, i, j int) bool {
function scanFields (line 677) | func scanFields(buf []byte, i int) (int, []byte, error) {
function scanTime (line 778) | func scanTime(buf []byte, i int) (int, []byte, error) {
function isNumeric (line 809) | func isNumeric(b byte) bool {
function scanNumber (line 816) | func scanNumber(buf []byte, i int) (int, error) {
function scanBoolean (line 933) | func scanBoolean(buf []byte, i int) (int, []byte, error) {
function skipWhitespace (line 990) | func skipWhitespace(buf []byte, i int) int {
function scanLine (line 1002) | func scanLine(buf []byte, i int) (int, []byte) {
function scanTo (line 1059) | func scanTo(buf []byte, i int, stop byte) (int, []byte) {
function scanToSpaceOr (line 1080) | func scanToSpaceOr(buf []byte, i int, stop byte) (int, []byte) {
function scanTagValue (line 1104) | func scanTagValue(buf []byte, i int) (int, []byte) {
function scanFieldValue (line 1122) | func scanFieldValue(buf []byte, i int) (int, []byte) {
function escapeMeasurement (line 1147) | func escapeMeasurement(in []byte) []byte {
function unescapeMeasurement (line 1154) | func unescapeMeasurement(in []byte) []byte {
function escapeTag (line 1161) | func escapeTag(in []byte) []byte {
function unescapeTag (line 1170) | func unescapeTag(in []byte) []byte {
function EscapeStringField (line 1192) | func EscapeStringField(in string) string {
function unescapeStringField (line 1198) | func unescapeStringField(in string) string {
function NewPoint (line 1230) | func NewPoint(name string, tags Tags, fields Fields, t time.Time) (Point...
function pointKey (line 1245) | func pointKey(measurement string, tags Tags, fields Fields, t time.Time)...
function seriesKeySize (line 1285) | func seriesKeySize(key, field []byte) int {
function NewPointFromBytes (line 1292) | func NewPointFromBytes(b []byte) (Point, error) {
function MustNewPoint (line 1337) | func MustNewPoint(name string, tags Tags, fields Fields, time time.Time)...
function walkTags (line 1406) | func walkTags(buf []byte, fn func(key, value []byte) bool) {
function walkFields (line 1448) | func walkFields(buf []byte, fn func(key, value []byte) bool) {
function parseTags (line 1467) | func parseTags(buf []byte) Tags {
function MakeKey (line 1481) | func MakeKey(name []byte, tags Tags) []byte {
type Tag (line 1747) | type Tag struct
method Size (line 1761) | func (t Tag) Size() int { return len(t.Key) + len(t.Value) }
method Clone (line 1767) | func (t Tag) Clone() Tag {
method String (line 1780) | func (t *Tag) String() string {
function NewTag (line 1753) | func NewTag(key, value []byte) Tag {
type Tags (line 1791) | type Tags
method String (line 1807) | func (a Tags) String() string {
method Size (line 1823) | func (a Tags) Size() int {
method Clone (line 1835) | func (a Tags) Clone() Tags {
method Len (line 1848) | func (a Tags) Len() int { return len(a) }
method Less (line 1849) | func (a Tags) Less(i, j int) bool { return bytes.Compare(a[i].Key, a[j...
method Swap (line 1850) | func (a Tags) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Equal (line 1853) | func (a Tags) Equal(other Tags) bool {
method Get (line 1889) | func (a Tags) Get(key []byte) []byte {
method GetString (line 1901) | func (a Tags) GetString(key string) string {
method Set (line 1906) | func (a *Tags) Set(key, value []byte) {
method SetString (line 1918) | func (a *Tags) SetString(key, value string) {
method Delete (line 1923) | func (a *Tags) Delete(key []byte) {
method Map (line 1935) | func (a Tags) Map() map[string]string {
method Merge (line 1946) | func (a Tags) Merge(other map[string]string) Tags {
method HashKey (line 1958) | func (a Tags) HashKey() []byte {
function NewTags (line 1794) | func NewTags(m map[string]string) Tags {
function CompareTags (line 1866) | func CompareTags(a, b Tags) int {
function CopyTags (line 1998) | func CopyTags(a Tags) Tags {
function DeepCopyTags (line 2005) | func DeepCopyTags(a Tags) Tags {
type Fields (line 2030) | type Fields
method MarshalBinary (line 2145) | func (p Fields) MarshalBinary() []byte {
type fieldIterator (line 2039) | type fieldIterator struct
function appendField (line 2166) | func appendField(b []byte, k string, v interface{}) []byte {
type byteSlices (line 2227) | type byteSlices
method Len (line 2229) | func (a byteSlices) Len() int { return len(a) }
method Less (line 2230) | func (a byteSlices) Less(i, j int) bool { return bytes.Compare(a[i], a...
method Swap (line 2231) | func (a byteSlices) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
FILE: vendor/github.com/influxdata/influxdb/models/points_internal_test.go
function TestMarshalPointNoFields (line 5) | func TestMarshalPointNoFields(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/models/points_test.go
function TestMarshal (line 34) | func TestMarshal(t *testing.T) {
function TestTags_HashKey (line 43) | func TestTags_HashKey(t *testing.T) {
function BenchmarkMarshal (line 53) | func BenchmarkMarshal(b *testing.B) {
function TestPoint_StringSize (line 59) | func TestPoint_StringSize(t *testing.T) {
function TestPoint_AppendString (line 71) | func TestPoint_AppendString(t *testing.T) {
function testPoint_cube (line 82) | func testPoint_cube(t *testing.T, f func(p models.Point)) {
function TestTag_Clone (line 103) | func TestTag_Clone(t *testing.T) {
function TestTags_Clone (line 117) | func TestTags_Clone(t *testing.T) {
function BenchmarkNewPoint (line 137) | func BenchmarkNewPoint(b *testing.B) {
function BenchmarkNewPointFromBinary (line 144) | func BenchmarkNewPointFromBinary(b *testing.B) {
function BenchmarkParsePointNoTags5000 (line 163) | func BenchmarkParsePointNoTags5000(b *testing.B) {
function BenchmarkParsePointNoTags (line 176) | func BenchmarkParsePointNoTags(b *testing.B) {
function BenchmarkParsePointWithPrecisionN (line 184) | func BenchmarkParsePointWithPrecisionN(b *testing.B) {
function BenchmarkParsePointWithPrecisionU (line 193) | func BenchmarkParsePointWithPrecisionU(b *testing.B) {
function BenchmarkParsePointsTagsSorted2 (line 202) | func BenchmarkParsePointsTagsSorted2(b *testing.B) {
function BenchmarkParsePointsTagsSorted5 (line 210) | func BenchmarkParsePointsTagsSorted5(b *testing.B) {
function BenchmarkParsePointsTagsSorted10 (line 218) | func BenchmarkParsePointsTagsSorted10(b *testing.B) {
function BenchmarkParsePointsTagsUnSorted2 (line 226) | func BenchmarkParsePointsTagsUnSorted2(b *testing.B) {
function BenchmarkParsePointsTagsUnSorted5 (line 235) | func BenchmarkParsePointsTagsUnSorted5(b *testing.B) {
function BenchmarkParsePointsTagsUnSorted10 (line 244) | func BenchmarkParsePointsTagsUnSorted10(b *testing.B) {
function BenchmarkParseKey (line 253) | func BenchmarkParseKey(b *testing.B) {
type TestPoint (line 267) | type TestPoint struct
function NewTestPoint (line 277) | func NewTestPoint(name string, tags models.Tags, fields models.Fields, t...
function test (line 286) | func test(t *testing.T, line string, point TestPoint) {
function TestParsePointNoValue (line 338) | func TestParsePointNoValue(t *testing.T) {
function TestParsePointWhitespaceValue (line 349) | func TestParsePointWhitespaceValue(t *testing.T) {
function TestParsePointNoFields (line 360) | func TestParsePointNoFields(t *testing.T) {
function TestParsePointNoTimestamp (line 379) | func TestParsePointNoTimestamp(t *testing.T) {
function TestParsePointMissingQuote (line 383) | func TestParsePointMissingQuote(t *testing.T) {
function TestParsePointMissingTagKey (line 400) | func TestParsePointMissingTagKey(t *testing.T) {
function TestParsePointMissingTagValue (line 427) | func TestParsePointMissingTagValue(t *testing.T) {
function TestParsePointInvalidTagFormat (line 449) | func TestParsePointInvalidTagFormat(t *testing.T) {
function TestParsePointMissingFieldName (line 466) | func TestParsePointMissingFieldName(t *testing.T) {
function TestParsePointMissingFieldValue (line 487) | func TestParsePointMissingFieldValue(t *testing.T) {
function TestParsePointBadNumber (line 514) | func TestParsePointBadNumber(t *testing.T) {
function TestParsePointMaxInt64 (line 534) | func TestParsePointMaxInt64(t *testing.T) {
function TestParsePointMinInt64 (line 562) | func TestParsePointMinInt64(t *testing.T) {
function TestParsePointMaxFloat64 (line 582) | func TestParsePointMaxFloat64(t *testing.T) {
function TestParsePointMinFloat64 (line 602) | func TestParsePointMinFloat64(t *testing.T) {
function TestParsePointNumberNonNumeric (line 622) | func TestParsePointNumberNonNumeric(t *testing.T) {
function TestParsePointNegativeWrongPlace (line 629) | func TestParsePointNegativeWrongPlace(t *testing.T) {
function TestParsePointOnlyNegativeSign (line 636) | func TestParsePointOnlyNegativeSign(t *testing.T) {
function TestParsePointFloatMultipleDecimals (line 643) | func TestParsePointFloatMultipleDecimals(t *testing.T) {
function TestParsePointInteger (line 650) | func TestParsePointInteger(t *testing.T) {
function TestParsePointNegativeInteger (line 657) | func TestParsePointNegativeInteger(t *testing.T) {
function TestParsePointNegativeFloat (line 664) | func TestParsePointNegativeFloat(t *testing.T) {
function TestParsePointFloatNoLeadingDigit (line 671) | func TestParsePointFloatNoLeadingDigit(t *testing.T) {
function TestParsePointFloatScientific (line 678) | func TestParsePointFloatScientific(t *testing.T) {
function TestParsePointFloatScientificUpper (line 698) | func TestParsePointFloatScientificUpper(t *testing.T) {
function TestParsePointFloatScientificDecimal (line 718) | func TestParsePointFloatScientificDecimal(t *testing.T) {
function TestParsePointFloatNegativeScientific (line 725) | func TestParsePointFloatNegativeScientific(t *testing.T) {
function TestParsePointBooleanInvalid (line 732) | func TestParsePointBooleanInvalid(t *testing.T) {
function TestParsePointScientificIntInvalid (line 739) | func TestParsePointScientificIntInvalid(t *testing.T) {
function TestParsePointWhitespace (line 751) | func TestParsePointWhitespace(t *testing.T) {
function TestParsePointUnescape (line 800) | func TestParsePointUnescape(t *testing.T) {
function TestParsePointWithTags (line 1054) | func TestParsePointWithTags(t *testing.T) {
function TestParsePointWithDuplicateTags (line 1062) | func TestParsePointWithDuplicateTags(t *testing.T) {
function TestParsePointWithStringField (line 1087) | func TestParsePointWithStringField(t *testing.T) {
function TestParsePointWithStringWithSpaces (line 1116) | func TestParsePointWithStringWithSpaces(t *testing.T) {
function TestParsePointWithStringWithNewline (line 1132) | func TestParsePointWithStringWithNewline(t *testing.T) {
function TestParsePointWithStringWithCommas (line 1148) | func TestParsePointWithStringWithCommas(t *testing.T) {
function TestParsePointQuotedMeasurement (line 1195) | func TestParsePointQuotedMeasurement(t *testing.T) {
function TestParsePointQuotedTags (line 1211) | func TestParsePointQuotedTags(t *testing.T) {
function TestParsePointsUnbalancedQuotedTags (line 1226) | func TestParsePointsUnbalancedQuotedTags(t *testing.T) {
function TestParsePointEscapedStringsAndCommas (line 1254) | func TestParsePointEscapedStringsAndCommas(t *testing.T) {
function TestParsePointWithStringWithEquals (line 1284) | func TestParsePointWithStringWithEquals(t *testing.T) {
function TestParsePointWithStringWithBackslash (line 1300) | func TestParsePointWithStringWithBackslash(t *testing.T) {
function TestParsePointWithBoolField (line 1342) | func TestParsePointWithBoolField(t *testing.T) {
function TestParsePointUnicodeString (line 1366) | func TestParsePointUnicodeString(t *testing.T) {
function TestParsePointNegativeTimestamp (line 1381) | func TestParsePointNegativeTimestamp(t *testing.T) {
function TestParsePointMaxTimestamp (line 1393) | func TestParsePointMaxTimestamp(t *testing.T) {
function TestParsePointMinTimestamp (line 1405) | func TestParsePointMinTimestamp(t *testing.T) {
function TestParsePointInvalidTimestamp (line 1417) | func TestParsePointInvalidTimestamp(t *testing.T) {
function TestNewPointFloatWithoutDecimal (line 1436) | func TestNewPointFloatWithoutDecimal(t *testing.T) {
function TestNewPointNegativeFloat (line 1447) | func TestNewPointNegativeFloat(t *testing.T) {
function TestNewPointFloatNoDecimal (line 1459) | func TestNewPointFloatNoDecimal(t *testing.T) {
function TestNewPointFloatScientific (line 1471) | func TestNewPointFloatScientific(t *testing.T) {
function TestNewPointLargeInteger (line 1483) | func TestNewPointLargeInteger(t *testing.T) {
function TestParsePointNaN (line 1495) | func TestParsePointNaN(t *testing.T) {
function TestNewPointLargeNumberOfTags (line 1512) | func TestNewPointLargeNumberOfTags(t *testing.T) {
function TestParsePointIntsFloats (line 1528) | func TestParsePointIntsFloats(t *testing.T) {
function TestParsePointKeyUnsorted (line 1556) | func TestParsePointKeyUnsorted(t *testing.T) {
function TestParsePointToString (line 1572) | func TestParsePointToString(t *testing.T) {
function TestParsePointsWithPrecision (line 1598) | func TestParsePointsWithPrecision(t *testing.T) {
function TestParsePointsWithPrecisionNoTime (line 1665) | func TestParsePointsWithPrecisionNoTime(t *testing.T) {
function TestParsePointsWithPrecisionComments (line 1727) | func TestParsePointsWithPrecisionComments(t *testing.T) {
function TestNewPointEscaped (line 1783) | func TestNewPointEscaped(t *testing.T) {
function TestNewPointWithoutField (line 1803) | func TestNewPointWithoutField(t *testing.T) {
function TestNewPointUnhandledType (line 1810) | func TestNewPointUnhandledType(t *testing.T) {
function TestMakeKeyEscaped (line 1833) | func TestMakeKeyEscaped(t *testing.T) {
function TestPrecisionString (line 1852) | func TestPrecisionString(t *testing.T) {
function TestRoundedString (line 1908) | func TestRoundedString(t *testing.T) {
function TestParsePointsStringWithExtraBuffer (line 1964) | func TestParsePointsStringWithExtraBuffer(t *testing.T) {
function TestParsePointsQuotesInFieldKey (line 1986) | func TestParsePointsQuotesInFieldKey(t *testing.T) {
function TestParsePointsQuotesInTags (line 2015) | func TestParsePointsQuotesInTags(t *testing.T) {
function TestParsePointsBlankLine (line 2028) | func TestParsePointsBlankLine(t *testing.T) {
function TestNewPointsWithBytesWithCorruptData (line 2042) | func TestNewPointsWithBytesWithCorruptData(t *testing.T) {
function TestNewPointsWithShortBuffer (line 2050) | func TestNewPointsWithShortBuffer(t *testing.T) {
function TestNewPointsRejectsEmptyFieldNames (line 2057) | func TestNewPointsRejectsEmptyFieldNames(t *testing.T) {
function TestNewPointsRejectsMaxKey (line 2063) | func TestNewPointsRejectsMaxKey(t *testing.T) {
function TestPoint_FieldIterator_Simple (line 2091) | func TestPoint_FieldIterator_Simple(t *testing.T) {
function toFields (line 2141) | func toFields(fi models.FieldIterator) models.Fields {
function TestPoint_FieldIterator_FieldMap (line 2168) | func TestPoint_FieldIterator_FieldMap(t *testing.T) {
function TestEscapeStringField (line 2197) | func TestEscapeStringField(t *testing.T) {
function BenchmarkEscapeStringField_Plain (line 2226) | func BenchmarkEscapeStringField_Plain(b *testing.B) {
function BenchmarkEscapeString_Quotes (line 2233) | func BenchmarkEscapeString_Quotes(b *testing.B) {
function BenchmarkEscapeString_Backslashes (line 2240) | func BenchmarkEscapeString_Backslashes(b *testing.B) {
function BenchmarkEscapeString_QuotesAndBackslashes (line 2247) | func BenchmarkEscapeString_QuotesAndBackslashes(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/models/rows.go
type Row (line 8) | type Row struct
method SameSeries (line 17) | func (r *Row) SameSeries(o *Row) bool {
method tagsHash (line 22) | func (r *Row) tagsHash() uint64 {
method tagsKeys (line 33) | func (r *Row) tagsKeys() []string {
type Rows (line 43) | type Rows
method Len (line 46) | func (p Rows) Len() int { return len(p) }
method Less (line 49) | func (p Rows) Less(i, j int) bool {
method Swap (line 62) | func (p Rows) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
FILE: vendor/github.com/influxdata/influxdb/models/statistic.go
type Statistic (line 4) | type Statistic struct
function NewStatistic (line 11) | func NewStatistic(name string) Statistic {
type StatisticTags (line 21) | type StatisticTags
method Merge (line 28) | func (t StatisticTags) Merge(tags map[string]string) map[string]string {
FILE: vendor/github.com/influxdata/influxdb/models/statistic_test.go
function TestTags_Merge (line 10) | func TestTags_Merge(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/models/time.go
constant MinNanoTime (line 23) | MinNanoTime = int64(math.MinInt64) + 2
constant MaxNanoTime (line 33) | MaxNanoTime = int64(math.MaxInt64) - 1
function SafeCalcTime (line 46) | func SafeCalcTime(timestamp int64, precision string) (time.Time, error) {
function CheckTime (line 57) | func CheckTime(t time.Time) error {
function safeSignedMult (line 65) | func safeSignedMult(a, b int64) (int64, bool) {
FILE: vendor/github.com/influxdata/influxdb/monitor/build_info.go
type build (line 6) | type build struct
method Diagnostics (line 13) | func (b *build) Diagnostics() (*diagnostics.Diagnostics, error) {
FILE: vendor/github.com/influxdata/influxdb/monitor/config.go
constant DefaultStoreEnabled (line 14) | DefaultStoreEnabled = true
constant DefaultStoreDatabase (line 17) | DefaultStoreDatabase = "_internal"
constant DefaultStoreInterval (line 20) | DefaultStoreInterval = 10 * time.Second
type Config (line 24) | type Config struct
method Validate (line 40) | func (c Config) Validate() error {
method Diagnostics (line 51) | func (c Config) Diagnostics() (*diagnostics.Diagnostics, error) {
function NewConfig (line 31) | func NewConfig() Config {
FILE: vendor/github.com/influxdata/influxdb/monitor/config_test.go
function TestConfig_Parse (line 11) | func TestConfig_Parse(t *testing.T) {
function TestConfig_Validate (line 32) | func TestConfig_Validate(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/monitor/diagnostics/diagnostics.go
type Client (line 8) | type Client interface
type ClientFunc (line 14) | type ClientFunc
method Diagnostics (line 17) | func (f ClientFunc) Diagnostics() (*Diagnostics, error) {
type Diagnostics (line 29) | type Diagnostics struct
method AddRow (line 43) | func (d *Diagnostics) AddRow(r []interface{}) {
function NewDiagnostics (line 35) | func NewDiagnostics(columns []string) *Diagnostics {
function RowFromMap (line 48) | func RowFromMap(m map[string]interface{}) *Diagnostics {
FILE: vendor/github.com/influxdata/influxdb/monitor/go_runtime.go
type goRuntime (line 10) | type goRuntime struct
method Diagnostics (line 12) | func (g *goRuntime) Diagnostics() (*diagnostics.Diagnostics, error) {
FILE: vendor/github.com/influxdata/influxdb/monitor/network.go
type network (line 10) | type network struct
method Diagnostics (line 12) | func (n *network) Diagnostics() (*diagnostics.Diagnostics, error) {
FILE: vendor/github.com/influxdata/influxdb/monitor/reporter.go
type Reporter (line 6) | type Reporter interface
FILE: vendor/github.com/influxdata/influxdb/monitor/service.go
constant MonitorRetentionPolicy (line 25) | MonitorRetentionPolicy = "monitor"
constant MonitorRetentionPolicyDuration (line 28) | MonitorRetentionPolicyDuration = 7 * 24 * time.Hour
constant MonitorRetentionPolicyReplicaN (line 31) | MonitorRetentionPolicyReplicaN = 1
type Monitor (line 35) | type Monitor struct
method open (line 87) | func (m *Monitor) open() bool {
method Open (line 95) | func (m *Monitor) Open() error {
method writePoints (line 128) | func (m *Monitor) writePoints(p models.Points) error {
method Close (line 139) | func (m *Monitor) Close() error {
method SetGlobalTag (line 165) | func (m *Monitor) SetGlobalTag(key string, value interface{}) {
method SetPointsWriter (line 181) | func (m *Monitor) SetPointsWriter(pw PointsWriter) error {
method WithLogger (line 195) | func (m *Monitor) WithLogger(log zap.Logger) {
method RegisterDiagnosticsClient (line 200) | func (m *Monitor) RegisterDiagnosticsClient(name string, client diagno...
method DeregisterDiagnosticsClient (line 208) | func (m *Monitor) DeregisterDiagnosticsClient(name string) {
method Statistics (line 216) | func (m *Monitor) Statistics(tags map[string]string) ([]*Statistic, er...
method gatherStatistics (line 324) | func (m *Monitor) gatherStatistics(statistics []*Statistic, tags map[s...
method Diagnostics (line 337) | func (m *Monitor) Diagnostics() (map[string]*diagnostics.Diagnostics, ...
method createInternalStorage (line 353) | func (m *Monitor) createInternalStorage() {
method waitUntilInterval (line 379) | func (m *Monitor) waitUntilInterval(d time.Duration) error {
method storeStatistics (line 394) | func (m *Monitor) storeStatistics() {
type PointsWriter (line 68) | type PointsWriter interface
function New (line 73) | func New(r Reporter, c Config) *Monitor {
type RemoteWriterConfig (line 172) | type RemoteWriterConfig struct
type Statistic (line 455) | type Statistic struct
method ValueNames (line 460) | func (s *Statistic) ValueNames() []string {
type Statistics (line 470) | type Statistics
method Len (line 473) | func (a Statistics) Len() int { return len(a) }
method Less (line 476) | func (a Statistics) Less(i, j int) bool {
method Swap (line 481) | func (a Statistics) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
FILE: vendor/github.com/influxdata/influxdb/monitor/system.go
function init (line 12) | func init() {
type system (line 17) | type system struct
method Diagnostics (line 19) | func (s *system) Diagnostics() (*diagnostics.Diagnostics, error) {
FILE: vendor/github.com/influxdata/influxdb/node.go
constant nodeFile (line 13) | nodeFile = "node.json"
constant oldNodeFile (line 14) | oldNodeFile = "id"
constant peersFilename (line 15) | peersFilename = "peers.json"
type Node (line 18) | type Node struct
method Save (line 55) | func (n *Node) Save() error {
function LoadNode (line 24) | func LoadNode(path string) (*Node, error) {
function NewNode (line 48) | func NewNode(path string) *Node {
function upgradeNodeFile (line 76) | func upgradeNodeFile(path string) error {
FILE: vendor/github.com/influxdata/influxdb/pkg/bloom/bloom.go
type Filter (line 18) | type Filter struct
method Len (line 52) | func (f *Filter) Len() uint { return uint(len(f.b)) }
method K (line 55) | func (f *Filter) K() uint64 { return f.k }
method Bytes (line 58) | func (f *Filter) Bytes() []byte { return f.b }
method Insert (line 61) | func (f *Filter) Insert(v []byte) {
method Contains (line 71) | func (f *Filter) Contains(v []byte) bool {
method Merge (line 84) | func (f *Filter) Merge(other *Filter) error {
method location (line 101) | func (f *Filter) location(h [4]uint64, i uint64) uint {
function NewFilter (line 26) | func NewFilter(m uint64, k uint64) *Filter {
function NewFilterBuffer (line 38) | func NewFilterBuffer(buf []byte, k uint64) (*Filter, error) {
function Estimate (line 106) | func Estimate(n uint64, p float64) (m uint64, k uint64) {
function pow2 (line 114) | func pow2(v uint64) uint64 {
function hash (line 124) | func hash(data []byte) [4]uint64 {
FILE: vendor/github.com/influxdata/influxdb/pkg/bloom/bloom_test.go
function TestFilter_InsertContains (line 10) | func TestFilter_InsertContains(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/pkg/bytesutil/bytesutil.go
function Sort (line 9) | func Sort(a [][]byte) {
function IsSorted (line 13) | func IsSorted(a [][]byte) bool {
function SearchBytes (line 17) | func SearchBytes(a [][]byte, x []byte) int {
function Union (line 22) | func Union(a, b [][]byte) [][]byte {
function Intersect (line 49) | func Intersect(a, b [][]byte) [][]byte {
type byteSlices (line 68) | type byteSlices
method Len (line 70) | func (a byteSlices) Len() int { return len(a) }
method Less (line 71) | func (a byteSlices) Less(i, j int) bool { return bytes.Compare(a[i], a...
method Swap (line 72) | func (a byteSlices) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
FILE: vendor/github.com/influxdata/influxdb/pkg/deep/equal.go
function Equal (line 41) | func Equal(a1, a2 interface{}) bool {
function deepValueEqual (line 56) | func deepValueEqual(v1, v2 reflect.Value, visited map[visit]bool, depth ...
type visit (line 181) | type visit struct
FILE: vendor/github.com/influxdata/influxdb/pkg/escape/bytes.go
function Bytes (line 19) | func Bytes(in []byte) []byte {
constant escapeChars (line 26) | escapeChars = `," =`
function IsEscaped (line 30) | func IsEscaped(b []byte) bool {
function AppendUnescaped (line 47) | func AppendUnescaped(dst, src []byte) []byte {
function Unescape (line 70) | func Unescape(in []byte) []byte {
FILE: vendor/github.com/influxdata/influxdb/pkg/escape/bytes_test.go
function TestUnescape (line 10) | func TestUnescape(t *testing.T) {
function TestAppendUnescaped (line 49) | func TestAppendUnescaped(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/pkg/escape/strings.go
function UnescapeString (line 11) | func UnescapeString(in string) string {
function String (line 19) | func String(in string) string {
FILE: vendor/github.com/influxdata/influxdb/pkg/escape/strings_test.go
function BenchmarkStringEscapeNoEscapes (line 9) | func BenchmarkStringEscapeNoEscapes(b *testing.B) {
function BenchmarkStringUnescapeNoEscapes (line 15) | func BenchmarkStringUnescapeNoEscapes(b *testing.B) {
function BenchmarkManyStringEscape (line 21) | func BenchmarkManyStringEscape(b *testing.B) {
function BenchmarkManyStringUnescape (line 35) | func BenchmarkManyStringUnescape(b *testing.B) {
function TestStringEscape (line 49) | func TestStringEscape(t *testing.T) {
function TestStringUnescape (line 83) | func TestStringUnescape(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/pkg/estimator/hll/compressed.go
type iterable (line 6) | type iterable interface
type iterator (line 12) | type iterator struct
method Next (line 18) | func (iter *iterator) Next() uint32 {
method Peek (line 25) | func (iter *iterator) Peek() uint32 {
method HasNext (line 30) | func (iter iterator) HasNext() bool {
type compressedList (line 34) | type compressedList struct
method Clone (line 40) | func (v *compressedList) Clone() *compressedList {
method MarshalBinary (line 55) | func (v *compressedList) MarshalBinary() (data []byte, err error) {
method UnmarshalBinary (line 83) | func (v *compressedList) UnmarshalBinary(data []byte) error {
method Len (line 105) | func (v *compressedList) Len() int {
method decode (line 109) | func (v *compressedList) decode(i int, last uint32) (uint32, int) {
method Append (line 114) | func (v *compressedList) Append(x uint32) {
method Iter (line 120) | func (v *compressedList) Iter() *iterator {
function newCompressedList (line 99) | func newCompressedList(size int) *compressedList {
type variableLengthList (line 124) | type variableLengthList
method MarshalBinary (line 126) | func (v variableLengthList) MarshalBinary() (data []byte, err error) {
method Len (line 149) | func (v variableLengthList) Len() int {
method Iter (line 153) | func (v *variableLengthList) Iter() *iterator {
method decode (line 157) | func (v variableLengthList) decode(i int, last uint32) (uint32, int) {
method Append (line 167) | func (v variableLengthList) Append(x uint32) variableLengthList {
FILE: vendor/github.com/influxdata/influxdb/pkg/estimator/hll/hll.go
constant version (line 29) | version uint8 = 1
constant DefaultPrecision (line 32) | DefaultPrecision = 16
type Plus (line 38) | type Plus struct
method Clone (line 111) | func (h *Plus) Clone() *Plus {
method Add (line 130) | func (h *Plus) Add(v []byte) {
method Count (line 153) | func (h *Plus) Count() uint64 {
method Merge (line 176) | func (h *Plus) Merge(s estimator.Sketch) error {
method MarshalBinary (line 220) | func (h *Plus) MarshalBinary() (data []byte, err error) {
method UnmarshalBinary (line 267) | func (h *Plus) UnmarshalBinary(data []byte) error {
method mergeSparse (line 313) | func (h *Plus) mergeSparse() {
method toNormal (line 353) | func (h *Plus) toNormal() {
method encodeHash (line 372) | func (h *Plus) encodeHash(x uint64) uint32 {
method decodeHash (line 382) | func (h *Plus) decodeHash(k uint32) (uint32, uint8) {
method getIndex (line 394) | func (h *Plus) getIndex(k uint32) uint32 {
method linearCount (line 401) | func (h *Plus) linearCount(m uint32, v uint32) float64 {
method e (line 408) | func (h *Plus) e() (float64, uint32) {
method estimateBias (line 421) | func (h *Plus) estimateBias(est float64) float64 {
function NewPlus (line 58) | func NewPlus(p uint8) (*Plus, error) {
function NewDefaultPlus (line 93) | func NewDefaultPlus() *Plus {
function MustNewPlus (line 102) | func MustNewPlus(p uint8) *Plus {
type uint64Slice (line 444) | type uint64Slice
method Len (line 446) | func (p uint64Slice) Len() int { return len(p) }
method Less (line 447) | func (p uint64Slice) Less(i, j int) bool { return p[i] < p[j] }
method Swap (line 448) | func (p uint64Slice) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
type set (line 450) | type set
method Clone (line 452) | func (s set) Clone() set {
method MarshalBinary (line 464) | func (s set) MarshalBinary() (data []byte, err error) {
method add (line 492) | func (s set) add(v uint32) { s[v] = struct{}{} }
method has (line 493) | func (s set) has(v uint32) bool { _, ok := s[v]; return ok }
function bextr (line 503) | func bextr(v uint64, start, length uint8) uint64 {
function bextr32 (line 507) | func bextr32(v uint32, start, length uint8) uint32 {
FILE: vendor/github.com/influxdata/influxdb/pkg/estimator/hll/hll_test.go
function nopHash (line 15) | func nopHash(buf []byte) uint64 {
function toByte (line 22) | func toByte(v uint64) []byte {
function TestHLLPP_Add_NoSparse (line 28) | func TestHLLPP_Add_NoSparse(t *testing.T) {
function TestHLLPPPrecision_NoSparse (line 69) | func TestHLLPPPrecision_NoSparse(t *testing.T) {
function TestHLLPP_toNormal (line 92) | func TestHLLPP_toNormal(t *testing.T) {
function TestHLLPP_estimateBias (line 134) | func TestHLLPP_estimateBias(t *testing.T) {
function TestHLLPPCount (line 148) | func TestHLLPPCount(t *testing.T) {
function TestHLLPP_Merge_Error (line 183) | func TestHLLPP_Merge_Error(t *testing.T) {
function TestHLL_Merge_Sparse (line 193) | func TestHLL_Merge_Sparse(t *testing.T) {
function TestHLL_Merge_Normal (line 241) | func TestHLL_Merge_Normal(t *testing.T) {
function TestHLLPP_Merge (line 283) | func TestHLLPP_Merge(t *testing.T) {
function TestHLLPP_EncodeDecode (line 376) | func TestHLLPP_EncodeDecode(t *testing.T) {
function TestHLLPP_Error (line 419) | func TestHLLPP_Error(t *testing.T) {
function TestHLLPP_Marshal_Unmarshal_Sparse (line 436) | func TestHLLPP_Marshal_Unmarshal_Sparse(t *testing.T) {
function TestHLLPP_Marshal_Unmarshal_Dense (line 469) | func TestHLLPP_Marshal_Unmarshal_Dense(t *testing.T) {
function TestHLLPP_Marshal_Unmarshal_Count (line 503) | func TestHLLPP_Marshal_Unmarshal_Count(t *testing.T) {
function NewTestPlus (line 567) | func NewTestPlus(p uint8) *Plus {
function genData (line 574) | func genData(n int) [][]byte {
function benchmarkPlusAdd (line 598) | func benchmarkPlusAdd(b *testing.B, h *Plus, n int) {
function BenchmarkPlus_Add_100 (line 616) | func BenchmarkPlus_Add_100(b *testing.B) {
function BenchmarkPlus_Add_1000 (line 621) | func BenchmarkPlus_Add_1000(b *testing.B) {
function BenchmarkPlus_Add_10000 (line 626) | func BenchmarkPlus_Add_10000(b *testing.B) {
function BenchmarkPlus_Add_100000 (line 631) | func BenchmarkPlus_Add_100000(b *testing.B) {
function BenchmarkPlus_Add_1000000 (line 636) | func BenchmarkPlus_Add_1000000(b *testing.B) {
function BenchmarkPlus_Add_10000000 (line 641) | func BenchmarkPlus_Add_10000000(b *testing.B) {
function BenchmarkPlus_Add_100000000 (line 646) | func BenchmarkPlus_Add_100000000(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/pkg/estimator/sketch.go
type Sketch (line 6) | type Sketch interface
FILE: vendor/github.com/influxdata/influxdb/pkg/limiter/fixed.go
type Fixed (line 7) | type Fixed
method Take (line 13) | func (t Fixed) Take() {
method Release (line 17) | func (t Fixed) Release() {
function NewFixed (line 9) | func NewFixed(limit int) Fixed {
FILE: vendor/github.com/influxdata/influxdb/pkg/mmap/mmap_test.go
function TestMap (line 11) | func TestMap(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/pkg/mmap/mmap_unix.go
function Map (line 16) | func Map(path string) ([]byte, error) {
function Unmap (line 38) | func Unmap(data []byte) error {
FILE: vendor/github.com/influxdata/influxdb/pkg/mmap/mmap_windows.go
function Map (line 10) | func Map(path string) ([]byte, error) {
function Unmap (line 41) | func Unmap(data []byte) error {
FILE: vendor/github.com/influxdata/influxdb/pkg/pool/bytes.go
type Bytes (line 6) | type Bytes struct
method Get (line 21) | func (p *Bytes) Get(sz int) []byte {
method Put (line 38) | func (p *Bytes) Put(c []byte) {
function NewBytes (line 12) | func NewBytes(max int) *Bytes {
type LimitedBytes (line 51) | type LimitedBytes struct
method Get (line 69) | func (p *LimitedBytes) Get(sz int) []byte {
method Put (line 90) | func (p *LimitedBytes) Put(c []byte) {
function NewLimitedBytes (line 59) | func NewLimitedBytes(capacity int, maxSize int) *LimitedBytes {
FILE: vendor/github.com/influxdata/influxdb/pkg/pool/bytes_test.go
function TestLimitedBytePool_Put_MaxSize (line 9) | func TestLimitedBytePool_Put_MaxSize(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/pkg/pool/generic.go
type Generic (line 5) | type Generic struct
method Get (line 22) | func (p *Generic) Get(sz int) interface{} {
method Put (line 35) | func (p *Generic) Put(c interface{}) {
function NewGeneric (line 12) | func NewGeneric(max int, fn func(sz int) interface{}) *Generic {
FILE: vendor/github.com/influxdata/influxdb/pkg/rhh/rhh.go
type HashMap (line 12) | type HashMap struct
method Reset (line 33) | func (m *HashMap) Reset() {
method Get (line 41) | func (m *HashMap) Get(key []byte) interface{} {
method Put (line 49) | func (m *HashMap) Put(key []byte, val interface{}) {
method insert (line 63) | func (m *HashMap) insert(hash int64, key []byte, val interface{}) (ove...
method alloc (line 105) | func (m *HashMap) alloc() {
method grow (line 113) | func (m *HashMap) grow() {
method index (line 133) | func (m *HashMap) index(key []byte) int64 {
method Elem (line 153) | func (m *HashMap) Elem(i int64) (key []byte, value interface{}) {
method Len (line 163) | func (m *HashMap) Len() int64 { return m.n }
method Cap (line 166) | func (m *HashMap) Cap() int64 { return m.capacity }
method AverageProbeCount (line 169) | func (m *HashMap) AverageProbeCount() float64 {
method Keys (line 182) | func (m *HashMap) Keys() [][]byte {
function NewHashMap (line 23) | func NewHashMap(opt Options) *HashMap {
type hashElem (line 195) | type hashElem struct
method reset (line 202) | func (e *hashElem) reset() {
method setKey (line 209) | func (e *hashElem) setKey(v []byte) {
type Options (line 222) | type Options struct
function HashKey (line 234) | func HashKey(key []byte) int64 {
function Dist (line 246) | func Dist(hash, i, capacity int64) int64 {
function pow2 (line 254) | func pow2(v int64) int64 {
type byteSlices (line 263) | type byteSlices
method Len (line 265) | func (a byteSlices) Len() int { return len(a) }
method Less (line 266) | func (a byteSlices) Less(i, j int) bool { return bytes.Compare(a[i], a...
method Swap (line 267) | func (a byteSlices) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
FILE: vendor/github.com/influxdata/influxdb/pkg/rhh/rhh_test.go
function TestHashMap (line 14) | func TestHashMap(t *testing.T) {
function TestHashMap_Quick (line 35) | func TestHashMap_Quick(t *testing.T) {
function GenerateByteSlices (line 71) | func GenerateByteSlices(rand *rand.Rand, n int) reflect.Value {
FILE: vendor/github.com/influxdata/influxdb/pkg/slices/strings.go
function Union (line 7) | func Union(setA, setB []string, ignoreCase bool) []string {
function Exists (line 23) | func Exists(set []string, find string) bool {
function ExistsIgnoreCase (line 33) | func ExistsIgnoreCase(set []string, find string) bool {
FILE: vendor/github.com/influxdata/influxdb/services/collectd/config.go
constant DefaultBindAddress (line 13) | DefaultBindAddress = ":25826"
constant DefaultDatabase (line 16) | DefaultDatabase = "collectd"
constant DefaultRetentionPolicy (line 19) | DefaultRetentionPolicy = ""
constant DefaultBatchSize (line 22) | DefaultBatchSize = 5000
constant DefaultBatchPending (line 25) | DefaultBatchPending = 10
constant DefaultBatchDuration (line 28) | DefaultBatchDuration = toml.Duration(10 * time.Second)
constant DefaultTypesDB (line 31) | DefaultTypesDB = "/usr/share/collectd/types.db"
constant DefaultReadBuffer (line 44) | DefaultReadBuffer = 0
constant DefaultSecurityLevel (line 47) | DefaultSecurityLevel = "none"
constant DefaultAuthFile (line 50) | DefaultAuthFile = "/etc/collectd/auth_file"
type Config (line 54) | type Config struct
method WithDefaults (line 86) | func (c *Config) WithDefaults() *Config {
method Validate (line 123) | func (c *Config) Validate() error {
function NewConfig (line 69) | func NewConfig() Config {
type Configs (line 134) | type Configs
method Diagnostics (line 137) | func (c Configs) Diagnostics() (*diagnostics.Diagnostics, error) {
method Enabled (line 156) | func (c Configs) Enabled() bool {
FILE: vendor/github.com/influxdata/influxdb/services/collectd/config_test.go
function TestConfig_Parse (line 10) | func TestConfig_Parse(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/collectd/service.go
constant statPointsReceived (line 26) | statPointsReceived = "pointsRx"
constant statBytesReceived (line 27) | statBytesReceived = "bytesRx"
constant statPointsParseFail (line 28) | statPointsParseFail = "pointsParseFail"
constant statReadFail (line 29) | statReadFail = "readFail"
constant statBatchesTransmitted (line 30) | statBatchesTransmitted = "batchesTx"
constant statPointsTransmitted (line 31) | statPointsTransmitted = "pointsTx"
constant statBatchesTransmitFail (line 32) | statBatchesTransmitFail = "batchesTxFail"
constant statDroppedPointsInvalid (line 33) | statDroppedPointsInvalid = "droppedPointsInvalid"
type pointsWriter (line 37) | type pointsWriter interface
type metaClient (line 42) | type metaClient interface
function TypesDBFile (line 47) | func TypesDBFile(path string) (typesdb *api.TypesDB, err error) {
type Service (line 58) | type Service struct
method Open (line 94) | func (s *Service) Open() error {
method Close (line 213) | func (s *Service) Close() error {
method closed (line 239) | func (s *Service) closed() bool {
method createInternalStorage (line 250) | func (s *Service) createInternalStorage() error {
method WithLogger (line 270) | func (s *Service) WithLogger(log zap.Logger) {
method Statistics (line 287) | func (s *Service) Statistics(tags map[string]string) []models.Statistic {
method SetTypes (line 305) | func (s *Service) SetTypes(types string) (err error) {
method Addr (line 312) | func (s *Service) Addr() net.Addr {
method serve (line 316) | func (s *Service) serve() {
method handleMessage (line 349) | func (s *Service) handleMessage(buffer []byte) {
method writePoints (line 365) | func (s *Service) writePoints() {
method UnmarshalValueList (line 389) | func (s *Service) UnmarshalValueList(vl *api.ValueList) []models.Point {
function NewService (line 80) | func NewService(c Config) *Service {
type Statistics (line 275) | type Statistics struct
FILE: vendor/github.com/influxdata/influxdb/services/collectd/service_test.go
function TestService_OpenClose (line 21) | func TestService_OpenClose(t *testing.T) {
function TestService_Open_TypesDBDir (line 59) | func TestService_Open_TypesDBDir(t *testing.T) {
function TestService_CreatesDatabase (line 114) | func TestService_CreatesDatabase(t *testing.T) {
function TestService_BatchSize (line 191) | func TestService_BatchSize(t *testing.T) {
function TestService_BatchDuration (line 264) | func TestService_BatchDuration(t *testing.T) {
type TestService (line 325) | type TestService struct
method WritePointsPrivileged (line 368) | func (w *TestService) WritePointsPrivileged(database, retentionPolicy ...
function NewTestService (line 332) | func NewTestService(batchSize int, batchDuration time.Duration) *TestSer...
function check (line 372) | func check(err error) {
FILE: vendor/github.com/influxdata/influxdb/services/collectd/test_client/client.go
function main (line 22) | func main() {
FILE: vendor/github.com/influxdata/influxdb/services/continuous_querier/config.go
constant DefaultRunInterval (line 14) | DefaultRunInterval = time.Second
type Config (line 18) | type Config struct
method Validate (line 42) | func (c Config) Validate() error {
method Diagnostics (line 57) | func (c Config) Diagnostics() (*diagnostics.Diagnostics, error) {
function NewConfig (line 33) | func NewConfig() Config {
FILE: vendor/github.com/influxdata/influxdb/services/continuous_querier/config_test.go
function TestConfig_Parse (line 11) | func TestConfig_Parse(t *testing.T) {
function TestConfig_Validate (line 29) | func TestConfig_Validate(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/continuous_querier/service.go
constant NoChunkingSize (line 22) | NoChunkingSize = 0
constant idDelimiter (line 26) | idDelimiter = string(rune(31))
constant statQueryOK (line 31) | statQueryOK = "queryOk"
constant statQueryFail (line 32) | statQueryFail = "queryFail"
type ContinuousQuerier (line 36) | type ContinuousQuerier interface
type metaClient (line 42) | type metaClient interface
type RunRequest (line 49) | type RunRequest struct
method matches (line 58) | func (rr *RunRequest) matches(cq *meta.ContinuousQueryInfo) bool {
type Service (line 71) | type Service struct
method Open (line 104) | func (s *Service) Open() error {
method Close (line 122) | func (s *Service) Close() error {
method WithLogger (line 134) | func (s *Service) WithLogger(log zap.Logger) {
method Statistics (line 145) | func (s *Service) Statistics(tags map[string]string) []models.Statistic {
method Run (line 157) | func (s *Service) Run(database, name string, t time.Time) error {
method backgroundLoop (line 195) | func (s *Service) backgroundLoop() {
method hasContinuousQueries (line 227) | func (s *Service) hasContinuousQueries() bool {
method runContinuousQueries (line 240) | func (s *Service) runContinuousQueries(req *RunRequest) {
method ExecuteContinuousQuery (line 261) | func (s *Service) ExecuteContinuousQuery(dbi *meta.DatabaseInfo, cqi *...
method runContinuousQueryAndWriteResult (line 369) | func (s *Service) runContinuousQueryAndWriteResult(cq *ContinuousQuery...
function NewService (line 89) | func NewService(c Config) *Service {
type Statistics (line 139) | type Statistics struct
type ContinuousQuery (line 395) | type ContinuousQuery struct
method intoRP (line 404) | func (cq *ContinuousQuery) intoRP() string { return cq.q.Target.M...
method setIntoRP (line 405) | func (cq *ContinuousQuery) setIntoRP(rp string) { cq.q.Target.Measurem...
method shouldRunContinuousQuery (line 450) | func (cq *ContinuousQuery) shouldRunContinuousQuery(now time.Time, int...
type ResampleOptions (line 408) | type ResampleOptions struct
function NewContinuousQuery (line 423) | func NewContinuousQuery(database string, cqi *meta.ContinuousQueryInfo) ...
function assert (line 491) | func assert(condition bool, msg string, v ...interface{}) {
function truncate (line 500) | func truncate(ts time.Time, d time.Duration) time.Time {
function zone (line 519) | func zone(ts time.Time) int64 {
function abs (line 524) | func abs(v int64) int64 {
FILE: vendor/github.com/influxdata/influxdb/services/continuous_querier/service_test.go
function TestOpenAndClose (line 22) | func TestOpenAndClose(t *testing.T) {
function TestContinuousQueryService_Run (line 39) | func TestContinuousQueryService_Run(t *testing.T) {
function TestContinuousQueryService_ResampleOptions (line 94) | func TestContinuousQueryService_ResampleOptions(t *testing.T) {
function TestContinuousQueryService_EveryHigherThanInterval (line 186) | func TestContinuousQueryService_EveryHigherThanInterval(t *testing.T) {
function TestContinuousQueryService_GroupByOffset (line 255) | func TestContinuousQueryService_GroupByOffset(t *testing.T) {
function TestContinuousQueryService_NotLeader (line 304) | func TestContinuousQueryService_NotLeader(t *testing.T) {
function TestExecuteContinuousQuery_InvalidQueries (line 331) | func TestExecuteContinuousQuery_InvalidQueries(t *testing.T) {
function TestExecuteContinuousQuery_TimeRange (line 361) | func TestExecuteContinuousQuery_TimeRange(t *testing.T) {
function TestExecuteContinuousQuery_TimeZone (line 464) | func TestExecuteContinuousQuery_TimeZone(t *testing.T) {
function TestExecuteContinuousQuery_QueryExecutor_Error (line 585) | func TestExecuteContinuousQuery_QueryExecutor_Error(t *testing.T) {
function NewTestService (line 604) | func NewTestService(t *testing.T) *Service {
type MetaClient (line 631) | type MetaClient struct
method NodeID (line 652) | func (ms *MetaClient) NodeID() uint64 { return ms.nodeID }
method AcquireLease (line 655) | func (ms *MetaClient) AcquireLease(name string) (l *meta.Lease, err er...
method Databases (line 666) | func (ms *MetaClient) Databases() []meta.DatabaseInfo {
method Database (line 673) | func (ms *MetaClient) Database(name string) *meta.DatabaseInfo {
method database (line 679) | func (ms *MetaClient) database(name string) *meta.DatabaseInfo {
method CreateDatabase (line 692) | func (ms *MetaClient) CreateDatabase(name, defaultRetentionPolicy stri...
method CreateContinuousQuery (line 716) | func (ms *MetaClient) CreateContinuousQuery(database, name, query stri...
function NewMetaClient (line 642) | func NewMetaClient(t *testing.T) *MetaClient {
type StatementExecutor (line 745) | type StatementExecutor struct
method ExecuteStatement (line 749) | func (e *StatementExecutor) ExecuteStatement(stmt influxql.Statement, ...
function wait (line 753) | func wait(c chan struct{}, d time.Duration) (err error) {
function mustParseTime (line 762) | func mustParseTime(t *testing.T, value string) time.Time {
FILE: vendor/github.com/influxdata/influxdb/services/graphite/config.go
constant DefaultBindAddress (line 15) | DefaultBindAddress = ":2003"
constant DefaultDatabase (line 18) | DefaultDatabase = "graphite"
constant DefaultProtocol (line 21) | DefaultProtocol = "tcp"
constant DefaultConsistencyLevel (line 24) | DefaultConsistencyLevel = "one"
constant DefaultSeparator (line 28) | DefaultSeparator = "."
constant DefaultBatchSize (line 31) | DefaultBatchSize = 5000
constant DefaultBatchPending (line 34) | DefaultBatchPending = 10
constant DefaultBatchTimeout (line 37) | DefaultBatchTimeout = time.Second
constant DefaultUDPReadBuffer (line 50) | DefaultUDPReadBuffer = 0
type Config (line 54) | type Config struct
method WithDefaults (line 86) | func (c *Config) WithDefaults() *Config {
method DefaultTags (line 119) | func (c *Config) DefaultTags() models.Tags {
method Validate (line 129) | func (c *Config) Validate() error {
method validateTemplates (line 141) | func (c *Config) validateTemplates() error {
method validateTags (line 208) | func (c *Config) validateTags() error {
method validateTemplate (line 217) | func (c *Config) validateTemplate(template string) error {
method validateFilter (line 232) | func (c *Config) validateFilter(filter string) error {
method validateTag (line 245) | func (c *Config) validateTag(keyValue string) error {
function NewConfig (line 71) | func NewConfig() Config {
type Configs (line 259) | type Configs
method Diagnostics (line 262) | func (c Configs) Diagnostics() (*diagnostics.Diagnostics, error) {
method Enabled (line 281) | func (c Configs) Enabled() bool {
FILE: vendor/github.com/influxdata/influxdb/services/graphite/config_test.go
function TestConfig_Parse (line 11) | func TestConfig_Parse(t *testing.T) {
function TestConfigValidateEmptyTemplate (line 59) | func TestConfigValidateEmptyTemplate(t *testing.T) {
function TestConfigValidateTooManyField (line 72) | func TestConfigValidateTooManyField(t *testing.T) {
function TestConfigValidateTemplatePatterns (line 80) | func TestConfigValidateTemplatePatterns(t *testing.T) {
function TestConfigValidateFilter (line 93) | func TestConfigValidateFilter(t *testing.T) {
function TestConfigValidateTemplateTags (line 111) | func TestConfigValidateTemplateTags(t *testing.T) {
function TestConfigValidateDefaultTags (line 134) | func TestConfigValidateDefaultTags(t *testing.T) {
function TestConfigValidateFilterDuplicates (line 157) | func TestConfigValidateFilterDuplicates(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/graphite/errors.go
type UnsupportedValueError (line 7) | type UnsupportedValueError struct
method Error (line 12) | func (err *UnsupportedValueError) Error() string {
FILE: vendor/github.com/influxdata/influxdb/services/graphite/parser.go
function init (line 25) | func init() {
type Parser (line 34) | type Parser struct
method Parse (line 99) | func (p *Parser) Parse(line string) (models.Point, error) {
method ApplyTemplate (line 167) | func (p *Parser) ApplyTemplate(line string) (string, map[string]string...
type Options (line 40) | type Options struct
function NewParserWithOptions (line 47) | func NewParserWithOptions(options Options) (*Parser, error) {
function NewParser (line 89) | func NewParser(templates []string, defaultTags models.Tags) (*Parser, er...
type template (line 186) | type template struct
method Apply (line 218) | func (t *template) Apply(line string) (string, map[string]string, stri...
function NewTemplate (line 195) | func NewTemplate(pattern string, defaultTags models.Tags, separator stri...
type matcher (line 279) | type matcher struct
method Add (line 291) | func (m *matcher) Add(filter string, template *template) {
method AddDefaultTemplate (line 299) | func (m *matcher) AddDefaultTemplate(template *template) {
method Match (line 304) | func (m *matcher) Match(line string) *template {
function newMatcher (line 284) | func newMatcher() *matcher {
type node (line 315) | type node struct
method insert (line 321) | func (n *node) insert(values []string, template *template) {
method Insert (line 353) | func (n *node) Insert(filter string, template *template) {
method search (line 357) | func (n *node) search(lineParts []string) *template {
method Search (line 387) | func (n *node) Search(line string) *template {
type nodes (line 391) | type nodes
method Less (line 409) | func (n *nodes) Less(j, k int) bool {
method Swap (line 421) | func (n *nodes) Swap(i, j int) { (*n)[i], (*n)[j] = (*n)[j], (*n)[i] }
method Len (line 422) | func (n *nodes) Len() int { return len(*n) }
FILE: vendor/github.com/influxdata/influxdb/services/graphite/parser_test.go
function BenchmarkParse (line 13) | func BenchmarkParse(b *testing.B) {
function TestTemplateApply (line 34) | func TestTemplateApply(t *testing.T) {
function TestParseMissingMeasurement (line 137) | func TestParseMissingMeasurement(t *testing.T) {
function TestParse (line 144) | func TestParse(t *testing.T) {
function TestParseNaN (line 245) | func TestParseNaN(t *testing.T) {
function TestFilterMatchDefault (line 261) | func TestFilterMatchDefault(t *testing.T) {
function TestFilterMatchMultipleMeasurement (line 282) | func TestFilterMatchMultipleMeasurement(t *testing.T) {
function TestFilterMatchMultipleMeasurementSeparator (line 303) | func TestFilterMatchMultipleMeasurementSeparator(t *testing.T) {
function TestFilterMatchSingle (line 327) | func TestFilterMatchSingle(t *testing.T) {
function TestParseNoMatch (line 348) | func TestParseNoMatch(t *testing.T) {
function TestFilterMatchWildcard (line 369) | func TestFilterMatchWildcard(t *testing.T) {
function TestFilterMatchExactBeforeWildcard (line 390) | func TestFilterMatchExactBeforeWildcard(t *testing.T) {
function TestFilterMatchMostLongestFilter (line 413) | func TestFilterMatchMostLongestFilter(t *testing.T) {
function TestFilterMatchMultipleWildcards (line 441) | func TestFilterMatchMultipleWildcards(t *testing.T) {
function TestParseDefaultTags (line 468) | func TestParseDefaultTags(t *testing.T) {
function TestParseDefaultTemplateTags (line 493) | func TestParseDefaultTemplateTags(t *testing.T) {
function TestParseDefaultTemplateTagsOverridGlobal (line 517) | func TestParseDefaultTemplateTagsOverridGlobal(t *testing.T) {
function TestParseTemplateWhitespace (line 541) | func TestParseTemplateWhitespace(t *testing.T) {
function TestApplyTemplate (line 566) | func TestApplyTemplate(t *testing.T) {
function TestApplyTemplateNoMatch (line 584) | func TestApplyTemplateNoMatch(t *testing.T) {
function TestApplyTemplateSpecific (line 602) | func TestApplyTemplateSpecific(t *testing.T) {
function TestApplyTemplateSpecificIsNA (line 630) | func TestApplyTemplateSpecificIsNA(t *testing.T) {
function TestApplyTemplateTags (line 650) | func TestApplyTemplateTags(t *testing.T) {
function TestApplyTemplateField (line 675) | func TestApplyTemplateField(t *testing.T) {
function TestApplyTemplateFieldError (line 701) | func TestApplyTemplateFieldError(t *testing.T) {
function errstr (line 719) | func errstr(err error) string {
FILE: vendor/github.com/influxdata/influxdb/services/graphite/service.go
constant udpBufferSize (line 21) | udpBufferSize = 65536
constant statPointsReceived (line 25) | statPointsReceived = "pointsRx"
constant statBytesReceived (line 26) | statBytesReceived = "bytesRx"
constant statPointsParseFail (line 27) | statPointsParseFail = "pointsParseFail"
constant statPointsNaNFail (line 28) | statPointsNaNFail = "pointsNaNFail"
constant statBatchesTransmitted (line 29) | statBatchesTransmitted = "batchesTx"
constant statPointsTransmitted (line 30) | statPointsTransmitted = "pointsTx"
constant statBatchesTransmitFail (line 31) | statBatchesTransmitFail = "batchesTxFail"
constant statConnectionsActive (line 32) | statConnectionsActive = "connsActive"
constant statConnectionsHandled (line 33) | statConnectionsHandled = "connsHandled"
type tcpConnection (line 36) | type tcpConnection struct
method Close (line 41) | func (c *tcpConnection) Close() {
type Service (line 46) | type Service struct
method Open (line 127) | func (s *Service) Open() error {
method closeAllConnections (line 165) | func (s *Service) closeAllConnections() {
method Close (line 174) | func (s *Service) Close() error {
method Closed (line 207) | func (s *Service) Closed() bool {
method closed (line 213) | func (s *Service) closed() bool {
method createInternalStorage (line 224) | func (s *Service) createInternalStorage() error {
method WithLogger (line 254) | func (s *Service) WithLogger(log zap.Logger) {
method Statistics (line 275) | func (s *Service) Statistics(tags map[string]string) []models.Statistic {
method Addr (line 294) | func (s *Service) Addr() net.Addr {
method openTCPServer (line 299) | func (s *Service) openTCPServer() (net.Addr, error) {
method handleTCPConnection (line 328) | func (s *Service) handleTCPConnection(conn net.Conn) {
method trackConnection (line 355) | func (s *Service) trackConnection(c net.Conn) {
method untrackConnection (line 363) | func (s *Service) untrackConnection(c net.Conn) {
method openUDPServer (line 370) | func (s *Service) openUDPServer() (net.Addr, error) {
method handleLine (line 411) | func (s *Service) handleLine(line string) {
method processBatches (line 436) | func (s *Service) processBatches(batcher *tsdb.PointBatcher) {
method Diagnostics (line 462) | func (s *Service) Diagnostics() (*diagnostics.Diagnostics, error) {
function NewService (line 93) | func NewService(c Config) (*Service, error) {
type Statistics (line 262) | type Statistics struct
FILE: vendor/github.com/influxdata/influxdb/services/graphite/service_test.go
function Test_Service_OpenClose (line 19) | func Test_Service_OpenClose(t *testing.T) {
function TestService_CreatesDatabase (line 59) | func TestService_CreatesDatabase(t *testing.T) {
function Test_Service_TCP (line 134) | func Test_Service_TCP(t *testing.T) {
function Test_Service_UDP (line 197) | func Test_Service_UDP(t *testing.T) {
type TestService (line 255) | type TestService struct
method WritePointsPrivileged (line 307) | func (s *TestService) WritePointsPrivileged(database, retentionPolicy ...
function NewTestService (line 261) | func NewTestService(c *Config) *TestService {
FILE: vendor/github.com/influxdata/influxdb/services/httpd/config.go
constant DefaultBindAddress (line 7) | DefaultBindAddress = ":8086"
constant DefaultRealm (line 10) | DefaultRealm = "InfluxDB"
constant DefaultBindSocket (line 13) | DefaultBindSocket = "/var/run/influxdb.sock"
type Config (line 17) | type Config struct
method Diagnostics (line 52) | func (c Config) Diagnostics() (*diagnostics.Diagnostics, error) {
function NewConfig (line 36) | func NewConfig() Config {
FILE: vendor/github.com/influxdata/influxdb/services/httpd/config_test.go
function TestConfig_Parse (line 10) | func TestConfig_Parse(t *testing.T) {
function TestConfig_WriteTracing (line 49) | func TestConfig_WriteTracing(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/httpd/handler.go
constant DefaultChunkSize (line 39) | DefaultChunkSize = 10000
constant DefaultDebugRequestsInterval (line 41) | DefaultDebugRequestsInterval = 10 * time.Second
constant MaxDebugRequestsInterval (line 43) | MaxDebugRequestsInterval = 6 * time.Hour
type AuthenticationMethod (line 47) | type AuthenticationMethod
constant UserAuthentication (line 52) | UserAuthentication AuthenticationMethod = iota
constant BearerAuthentication (line 55) | BearerAuthentication
type Route (line 61) | type Route struct
type Handler (line 71) | type Handler struct
method Statistics (line 187) | func (h *Handler) Statistics(tags map[string]string) []models.Statistic {
method AddRoutes (line 215) | func (h *Handler) AddRoutes(routes ...Route) {
method ServeHTTP (line 245) | func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
method writeHeader (line 269) | func (h *Handler) writeHeader(w http.ResponseWriter, code int) {
method serveQuery (line 280) | func (h *Handler) serveQuery(w http.ResponseWriter, r *http.Request, u...
method async (line 565) | func (h *Handler) async(query *influxql.Query, results <-chan *influxq...
method serveWrite (line 581) | func (h *Handler) serveWrite(w http.ResponseWriter, r *http.Request, u...
method serveOptions (line 704) | func (h *Handler) serveOptions(w http.ResponseWriter, r *http.Request) {
method servePing (line 709) | func (h *Handler) servePing(w http.ResponseWriter, r *http.Request) {
method serveStatus (line 715) | func (h *Handler) serveStatus(w http.ResponseWriter, r *http.Request) {
method serveExpvar (line 748) | func (h *Handler) serveExpvar(w http.ResponseWriter, r *http.Request) {
method serveDebugRequests (line 844) | func (h *Handler) serveDebugRequests(w http.ResponseWriter, r *http.Re...
method httpError (line 944) | func (h *Handler) httpError(w http.ResponseWriter, error string, code ...
method logging (line 1223) | func (h *Handler) logging(inner http.Handler, name string) http.Handler {
method responseWriter (line 1232) | func (h *Handler) responseWriter(inner http.Handler) http.Handler {
method recovery (line 1239) | func (h *Handler) recovery(inner http.Handler, name string) http.Handl...
function NewHandler (line 111) | func NewHandler(c Config) *Handler {
type Statistics (line 164) | type Statistics struct
function convertToEpoch (line 722) | func convertToEpoch(r *influxql.Result, epoch string) {
function parseSystemDiagnostics (line 903) | func parseSystemDiagnostics(d *diagnostics.Diagnostics) (map[string]inte...
type credentials (line 968) | type credentials struct
function parseCredentials (line 981) | func parseCredentials(r *http.Request) (*credentials, error) {
function authenticate (line 1022) | func authenticate(inner func(http.ResponseWriter, *http.Request, meta.Us...
type gzipResponseWriter (line 1113) | type gzipResponseWriter struct
method WriteHeader (line 1122) | func (w gzipResponseWriter) WriteHeader(code int) {
method Write (line 1129) | func (w gzipResponseWriter) Write(b []byte) (int, error) {
method Flush (line 1133) | func (w gzipResponseWriter) Flush() {
method CloseNotify (line 1140) | func (w gzipResponseWriter) CloseNotify() <-chan bool {
function gzipFilter (line 1145) | func gzipFilter(inner http.Handler) http.Handler {
function getGzipWriter (line 1164) | func getGzipWriter(w io.Writer) *gzip.Writer {
function putGzipWriter (line 1170) | func putGzipWriter(gz *gzip.Writer) {
function cors (line 1177) | func cors(inner http.Handler) http.Handler {
function requestID (line 1213) | func requestID(inner http.Handler) http.Handler {
type Response (line 1257) | type Response struct
method MarshalJSON (line 1263) | func (r Response) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 1280) | func (r *Response) UnmarshalJSON(b []byte) error {
method Error (line 1299) | func (r *Response) Error() error {
FILE: vendor/github.com/influxdata/influxdb/services/httpd/handler_test.go
function TestHandler_Query (line 27) | func TestHandler_Query(t *testing.T) {
function TestHandler_Query_File (line 50) | func TestHandler_Query_File(t *testing.T) {
function TestHandler_Query_Auth (line 88) | func TestHandler_Query_Auth(t *testing.T) {
function TestHandler_QueryRegex (line 234) | func TestHandler_QueryRegex(t *testing.T) {
function TestHandler_Query_MergeResults (line 251) | func TestHandler_Query_MergeResults(t *testing.T) {
function TestHandler_Query_MergeEmptyResults (line 269) | func TestHandler_Query_MergeEmptyResults(t *testing.T) {
function TestHandler_Query_Chunked (line 287) | func TestHandler_Query_Chunked(t *testing.T) {
function TestHandler_Query_Async (line 310) | func TestHandler_Query_Async(t *testing.T) {
function TestHandler_Query_ErrQueryRequired (line 345) | func TestHandler_Query_ErrQueryRequired(t *testing.T) {
function TestHandler_Query_ErrInvalidQuery (line 357) | func TestHandler_Query_ErrInvalidQuery(t *testing.T) {
function TestHandler_Query_ErrAuthorize (line 369) | func TestHandler_Query_ErrAuthorize(t *testing.T) {
function TestHandler_Query_ErrResult (line 445) | func TestHandler_Query_ErrResult(t *testing.T) {
function TestHandler_Query_CloseNotify (line 461) | func TestHandler_Query_CloseNotify(t *testing.T) {
function TestHandler_Ping (line 529) | func TestHandler_Ping(t *testing.T) {
function TestHandler_Version (line 543) | func TestHandler_Version(t *testing.T) {
function TestHandler_Status (line 589) | func TestHandler_Status(t *testing.T) {
function TestHandler_HandleBadRequestBody (line 603) | func TestHandler_HandleBadRequestBody(t *testing.T) {
function TestHandler_XForwardedFor (line 614) | func TestHandler_XForwardedFor(t *testing.T) {
type Handler (line 631) | type Handler struct
function NewHandler (line 639) | func NewHandler(requireAuthentication bool) *Handler {
type HandlerStatementExecutor (line 659) | type HandlerStatementExecutor struct
method ExecuteStatement (line 663) | func (e *HandlerStatementExecutor) ExecuteStatement(stmt influxql.Stat...
type HandlerQueryAuthorizer (line 668) | type HandlerQueryAuthorizer struct
method AuthorizeQuery (line 672) | func (a *HandlerQueryAuthorizer) AuthorizeQuery(u meta.User, query *in...
function MustNewRequest (line 677) | func MustNewRequest(method, urlStr string, body io.Reader) *http.Request {
function MustNewJSONRequest (line 686) | func MustNewJSONRequest(method, urlStr string, body io.Reader) *http.Req...
function MustJWTToken (line 693) | func MustJWTToken(username, secret string, expired bool) (*jwt.Token, st...
FILE: vendor/github.com/influxdata/influxdb/services/httpd/listen.go
function LimitListener (line 10) | func LimitListener(l net.Listener, n int) net.Listener {
type limitListener (line 16) | type limitListener struct
method release (line 21) | func (l *limitListener) release() {
method Accept (line 25) | func (l *limitListener) Accept() (net.Conn, error) {
type limitListenerConn (line 41) | type limitListenerConn struct
method Close (line 47) | func (l *limitListenerConn) Close() error {
FILE: vendor/github.com/influxdata/influxdb/services/httpd/listen_test.go
type fakeListener (line 13) | type fakeListener struct
method Accept (line 17) | func (l *fakeListener) Accept() (net.Conn, error) {
method Close (line 24) | func (*fakeListener) Close() error { return nil }
method Addr (line 25) | func (*fakeListener) Addr() net.Addr { return nil }
type fakeConn (line 27) | type fakeConn struct
method Read (line 31) | func (*fakeConn) Read([]byte) (int, error) { return 0, io.EOF }
method Write (line 32) | func (*fakeConn) Write(b []byte) (int, error) { return len(b), nil }
method Close (line 33) | func (c *fakeConn) Close() error {
method LocalAddr (line 37) | func (*fakeConn) LocalAddr() net.Addr { return nil }
method RemoteAddr (line 38) | func (*fakeConn) RemoteAddr() net.Addr { return nil }
method SetDeadline (line 39) | func (*fakeConn) SetDeadline(time.Time) error { return nil }
method SetReadDeadline (line 40) | func (*fakeConn) SetReadDeadline(time.Time) error { return nil }
method SetWriteDeadline (line 41) | func (*fakeConn) SetWriteDeadline(time.Time) error { return nil }
function TestLimitListener (line 43) | func TestLimitListener(t *testing.T) {
function BenchmarkLimitListener (line 80) | func BenchmarkLimitListener(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/services/httpd/pprof.go
method handleProfiles (line 21) | func (h *Handler) handleProfiles(w http.ResponseWriter, r *http.Request) {
type prof (line 38) | type prof struct
method archiveProfilesAndQueries (line 69) | func (h *Handler) archiveProfilesAndQueries(w http.ResponseWriter, r *ht...
method showShards (line 227) | func (h *Handler) showShards() ([]*models.Row, error) {
method showDiagnostics (line 267) | func (h *Handler) showDiagnostics() ([]*models.Row, error) {
method showStats (line 293) | func (h *Handler) showStats() ([]*models.Row, error) {
function joinUint64 (line 315) | func joinUint64(a []uint64) string {
function sleep (line 327) | func sleep(w http.ResponseWriter, d time.Duration) {
FILE: vendor/github.com/influxdata/influxdb/services/httpd/requests.go
type RequestInfo (line 14) | type RequestInfo struct
method String (line 24) | func (r *RequestInfo) String() string {
type RequestStats (line 19) | type RequestStats struct
type RequestProfile (line 31) | type RequestProfile struct
method AddWrite (line 39) | func (p *RequestProfile) AddWrite(info RequestInfo) {
method AddQuery (line 43) | func (p *RequestProfile) AddQuery(info RequestInfo) {
method add (line 47) | func (p *RequestProfile) add(info RequestInfo, fn func(*RequestStats)) {
method addWrite (line 72) | func (p *RequestProfile) addWrite(st *RequestStats) {
method addQuery (line 76) | func (p *RequestProfile) addQuery(st *RequestStats) {
method Stop (line 82) | func (p *RequestProfile) Stop() {
type RequestTracker (line 88) | type RequestTracker struct
method TrackRequests (line 99) | func (rt *RequestTracker) TrackRequests() *RequestProfile {
method Add (line 112) | func (rt *RequestTracker) Add(req *http.Request, user meta.User) {
function NewRequestTracker (line 93) | func NewRequestTracker() *RequestTracker {
FILE: vendor/github.com/influxdata/influxdb/services/httpd/response_logger.go
type responseLogger (line 16) | type responseLogger struct
method CloseNotify (line 22) | func (l *responseLogger) CloseNotify() <-chan bool {
method Header (line 30) | func (l *responseLogger) Header() http.Header {
method Flush (line 34) | func (l *responseLogger) Flush() {
method Write (line 38) | func (l *responseLogger) Write(b []byte) (int, error) {
method WriteHeader (line 48) | func (l *responseLogger) WriteHeader(s int) {
method Status (line 53) | func (l *responseLogger) Status() int {
method Size (line 61) | func (l *responseLogger) Size() int {
function redactPassword (line 66) | func redactPassword(r *http.Request) {
function buildLogLine (line 81) | func buildLogLine(l *responseLogger, r *http.Request, start time.Time) s...
function detect (line 121) | func detect(values ...string) string {
function parseUsername (line 131) | func parseUsername(r *http.Request) string {
function sanitize (line 160) | func sanitize(r *http.Request) {
FILE: vendor/github.com/influxdata/influxdb/services/httpd/response_writer.go
type ResponseWriter (line 15) | type ResponseWriter interface
function NewResponseWriter (line 24) | func NewResponseWriter(w http.ResponseWriter, r *http.Request) ResponseW...
function WriteError (line 41) | func WriteError(w ResponseWriter, err error) (int, error) {
type responseWriter (line 46) | type responseWriter struct
method WriteResponse (line 54) | func (w *responseWriter) WriteResponse(resp Response) (int, error) {
method Flush (line 59) | func (w *responseWriter) Flush() {
method CloseNotify (line 67) | func (w *responseWriter) CloseNotify() <-chan bool {
type jsonFormatter (line 74) | type jsonFormatter struct
method WriteResponse (line 79) | func (w *jsonFormatter) WriteResponse(resp Response) (n int, err error) {
type csvFormatter (line 98) | type csvFormatter struct
method WriteResponse (line 104) | func (w *csvFormatter) WriteResponse(resp Response) (n int, err error) {
FILE: vendor/github.com/influxdata/influxdb/services/httpd/response_writer_test.go
function TestResponseWriter_CSV (line 15) | func TestResponseWriter_CSV(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/httpd/service.go
constant statRequest (line 22) | statRequest = "req"
constant statQueryRequest (line 23) | statQueryRequest = "queryReq"
constant statWriteRequest (line 24) | statWriteRequest = "writeReq"
constant statPingRequest (line 25) | statPingRequest = "pingReq"
constant statStatusRequest (line 26) | statStatusRequest = "statusReq"
constant statWriteRequestBytesReceived (line 27) | statWriteRequestBytesReceived = "writeReqBytes"
constant statQueryRequestBytesTransmitted (line 28) | statQueryRequestBytesTransmitted = "queryRespBytes"
constant statPointsWrittenOK (line 29) | statPointsWrittenOK = "pointsWrittenOK"
constant statPointsWrittenDropped (line 30) | statPointsWrittenDropped = "pointsWrittenDropped"
constant statPointsWrittenFail (line 31) | statPointsWrittenFail = "pointsWrittenFail"
constant statAuthFail (line 32) | statAuthFail = "authFail"
constant statRequestDuration (line 33) | statRequestDuration = "reqDurationNs"
constant statQueryRequestDuration (line 34) | statQueryRequestDuration = "queryReqDurationNs"
constant statWriteRequestDuration (line 35) | statWriteRequestDuration = "writeReqDurationNs"
constant statRequestsActive (line 36) | statRequestsActive = "reqActive"
constant statWriteRequestsActive (line 37) | statWriteRequestsActive = "writeReqActive"
constant statClientError (line 38) | statClientError = "clientError"
constant statServerError (line 39) | statServerError = "serverError"
type Service (line 43) | type Service struct
method Open (line 83) | func (s *Service) Open() error {
method Close (line 160) | func (s *Service) Close() error {
method WithLogger (line 175) | func (s *Service) WithLogger(log zap.Logger) {
method Err (line 181) | func (s *Service) Err() <-chan error { return s.err }
method Addr (line 184) | func (s *Service) Addr() net.Addr {
method Statistics (line 192) | func (s *Service) Statistics(tags map[string]string) []models.Statistic {
method serveTCP (line 197) | func (s *Service) serveTCP() {
method serveUnixSocket (line 202) | func (s *Service) serveUnixSocket() {
method serve (line 207) | func (s *Service) serve(listener net.Listener) {
function NewService (line 62) | func NewService(c Config) *Service {
FILE: vendor/github.com/influxdata/influxdb/services/meta/client.go
constant SaltBytes (line 30) | SaltBytes = 32
constant metaFile (line 32) | metaFile = "meta.db"
constant ShardGroupDeletedExpiration (line 36) | ShardGroupDeletedExpiration = -2 * 7 * 24 * time.Hour
type Client (line 49) | type Client struct
method Open (line 88) | func (c *Client) Open() error {
method Close (line 108) | func (c *Client) Close() error {
method AcquireLease (line 128) | func (c *Client) AcquireLease(name string) (*Lease, error) {
method ClusterID (line 137) | func (c *Client) ClusterID() uint64 {
method Database (line 145) | func (c *Client) Database(name string) *DatabaseInfo {
method Databases (line 159) | func (c *Client) Databases() []DatabaseInfo {
method CreateDatabase (line 171) | func (c *Client) CreateDatabase(name string) (*DatabaseInfo, error) {
method CreateDatabaseWithRetentionPolicy (line 214) | func (c *Client) CreateDatabaseWithRetentionPolicy(name string, spec *...
method DropDatabase (line 270) | func (c *Client) DropDatabase(name string) error {
method CreateRetentionPolicy (line 288) | func (c *Client) CreateRetentionPolicy(database string, spec *Retentio...
method RetentionPolicy (line 311) | func (c *Client) RetentionPolicy(database, name string) (rpi *Retentio...
method DropRetentionPolicy (line 324) | func (c *Client) DropRetentionPolicy(database, name string) error {
method UpdateRetentionPolicy (line 342) | func (c *Client) UpdateRetentionPolicy(database, name string, rpu *Ret...
method Users (line 360) | func (c *Client) Users() []UserInfo {
method User (line 373) | func (c *Client) User(name string) (User, error) {
method hashWithSalt (line 391) | func (c *Client) hashWithSalt(salt []byte, password string) []byte {
method saltedHash (line 399) | func (c *Client) saltedHash(password string) (salt, hash []byte, err e...
method CreateUser (line 409) | func (c *Client) CreateUser(name, password string, admin bool) (User, ...
method UpdateUser (line 443) | func (c *Client) UpdateUser(name, password string) error {
method DropUser (line 469) | func (c *Client) DropUser(name string) error {
method SetPrivilege (line 487) | func (c *Client) SetPrivilege(username, database string, p influxql.Pr...
method SetAdminPrivilege (line 505) | func (c *Client) SetAdminPrivilege(username string, admin bool) error {
method UserPrivileges (line 523) | func (c *Client) UserPrivileges(username string) (map[string]influxql....
method UserPrivilege (line 535) | func (c *Client) UserPrivilege(username, database string) (*influxql.P...
method AdminUserExists (line 547) | func (c *Client) AdminUserExists() bool {
method Authenticate (line 554) | func (c *Client) Authenticate(username, password string) (User, error) {
method UserCount (line 593) | func (c *Client) UserCount() int {
method ShardIDs (line 601) | func (c *Client) ShardIDs() []uint64 {
method ShardGroupsByTimeRange (line 621) | func (c *Client) ShardGroupsByTimeRange(database, policy string, min, ...
method ShardsByTimeRange (line 643) | func (c *Client) ShardsByTimeRange(sources influxql.Sources, tmin, tma...
method DropShard (line 666) | func (c *Client) DropShard(id uint64) error {
method PruneShardGroups (line 676) | func (c *Client) PruneShardGroups() error {
method CreateShardGroup (line 702) | func (c *Client) CreateShardGroup(database, policy string, timestamp t...
method DeleteShardGroup (line 754) | func (c *Client) DeleteShardGroup(database, policy string, id uint64) ...
method PrecreateShardGroups (line 775) | func (c *Client) PrecreateShardGroups(from, to time.Time) error {
method ShardOwner (line 821) | func (c *Client) ShardOwner(shardID uint64) (database, policy string, ...
method CreateContinuousQuery (line 847) | func (c *Client) CreateContinuousQuery(database, name, query string) e...
method DropContinuousQuery (line 865) | func (c *Client) DropContinuousQuery(database, name string) error {
method CreateSubscription (line 883) | func (c *Client) CreateSubscription(database, rp, name, mode string, d...
method DropSubscription (line 901) | func (c *Client) DropSubscription(database, rp, name string) error {
method SetData (line 919) | func (c *Client) SetData(data *Data) error {
method Data (line 939) | func (c *Client) Data() Data {
method WaitForDataChanged (line 948) | func (c *Client) WaitForDataChanged() chan struct{} {
method commit (line 956) | func (c *Client) commit(data *Data) error {
method MarshalBinary (line 975) | func (c *Client) MarshalBinary() ([]byte, error) {
method WithLogger (line 982) | func (c *Client) WithLogger(log zap.Logger) {
method Load (line 1023) | func (c *Client) Load() error {
type authUser (line 65) | type authUser struct
function NewClient (line 72) | func NewClient(config *Config) *Client {
function createShardGroup (line 732) | func createShardGroup(data *Data, database, policy string, timestamp tim...
function snapshot (line 989) | func snapshot(path string, data *Data) error {
type uint64Slice (line 1046) | type uint64Slice
method Len (line 1048) | func (a uint64Slice) Len() int { return len(a) }
method Swap (line 1049) | func (a uint64Slice) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 1050) | func (a uint64Slice) Less(i, j int) bool { return a[i] < a[j] }
FILE: vendor/github.com/influxdata/influxdb/services/meta/client_test.go
function TestMetaClient_CreateDatabaseOnly (line 19) | func TestMetaClient_CreateDatabaseOnly(t *testing.T) {
function TestMetaClient_CreateDatabaseIfNotExists (line 50) | func TestMetaClient_CreateDatabaseIfNotExists(t *testing.T) {
function TestMetaClient_CreateDatabaseWithRetentionPolicy (line 73) | func TestMetaClient_CreateDatabaseWithRetentionPolicy(t *testing.T) {
function TestMetaClient_CreateDatabaseWithRetentionPolicy_Conflict_Fields (line 134) | func TestMetaClient_CreateDatabaseWithRetentionPolicy_Conflict_Fields(t ...
function TestMetaClient_CreateDatabaseWithRetentionPolicy_Conflict_NonDefault (line 184) | func TestMetaClient_CreateDatabaseWithRetentionPolicy_Conflict_NonDefaul...
function TestMetaClient_Databases (line 219) | func TestMetaClient_Databases(t *testing.T) {
function TestMetaClient_DropDatabase (line 256) | func TestMetaClient_DropDatabase(t *testing.T) {
function TestMetaClient_CreateRetentionPolicy (line 288) | func TestMetaClient_CreateRetentionPolicy(t *testing.T) {
function TestMetaClient_DefaultRetentionPolicy (line 405) | func TestMetaClient_DefaultRetentionPolicy(t *testing.T) {
function TestMetaClient_UpdateRetentionPolicy (line 446) | func TestMetaClient_UpdateRetentionPolicy(t *testing.T) {
function TestMetaClient_DropRetentionPolicy (line 527) | func TestMetaClient_DropRetentionPolicy(t *testing.T) {
function TestMetaClient_CreateUser (line 578) | func TestMetaClient_CreateUser(t *testing.T) {
function TestMetaClient_UpdateUser (line 749) | func TestMetaClient_UpdateUser(t *testing.T) {
function TestMetaClient_ContinuousQueries (line 762) | func TestMetaClient_ContinuousQueries(t *testing.T) {
function TestMetaClient_Subscriptions_Create (line 818) | func TestMetaClient_Subscriptions_Create(t *testing.T) {
function TestMetaClient_Subscriptions_Drop (line 875) | func TestMetaClient_Subscriptions_Drop(t *testing.T) {
function TestMetaClient_Shards (line 920) | func TestMetaClient_Shards(t *testing.T) {
function TestMetaClient_CreateShardGroupIdempotent (line 976) | func TestMetaClient_CreateShardGroupIdempotent(t *testing.T) {
function TestMetaClient_PruneShardGroups (line 1030) | func TestMetaClient_PruneShardGroups(t *testing.T) {
function TestMetaClient_PersistClusterIDAfterRestart (line 1109) | func TestMetaClient_PersistClusterIDAfterRestart(t *testing.T) {
function newClient (line 1138) | func newClient() (string, *meta.Client) {
function newConfig (line 1147) | func newConfig() *meta.Config {
function testTempDir (line 1153) | func testTempDir(skip int) string {
FILE: vendor/github.com/influxdata/influxdb/services/meta/config.go
constant DefaultLeaseDuration (line 12) | DefaultLeaseDuration = 60 * time.Second
constant DefaultLoggingEnabled (line 15) | DefaultLoggingEnabled = true
type Config (line 19) | type Config struct
method Validate (line 35) | func (c *Config) Validate() error {
method Diagnostics (line 43) | func (c *Config) Diagnostics() (*diagnostics.Diagnostics, error) {
function NewConfig (line 27) | func NewConfig() *Config {
FILE: vendor/github.com/influxdata/influxdb/services/meta/config_test.go
function TestConfig_Parse (line 10) | func TestConfig_Parse(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/meta/data.go
constant DefaultRetentionPolicyReplicaN (line 24) | DefaultRetentionPolicyReplicaN = 1
constant DefaultRetentionPolicyDuration (line 27) | DefaultRetentionPolicyDuration = time.Duration(0)
constant DefaultRetentionPolicyName (line 30) | DefaultRetentionPolicyName = "autogen"
constant MinRetentionPolicyDuration (line 33) | MinRetentionPolicyDuration = time.Hour
type Data (line 37) | type Data struct
method Database (line 53) | func (data *Data) Database(name string) *DatabaseInfo {
method CloneDatabases (line 63) | func (data *Data) CloneDatabases() []DatabaseInfo {
method CreateDatabase (line 76) | func (data *Data) CreateDatabase(name string) error {
method DropDatabase (line 91) | func (data *Data) DropDatabase(name string) error {
method RetentionPolicy (line 107) | func (data *Data) RetentionPolicy(database, name string) (*RetentionPo...
method CreateRetentionPolicy (line 123) | func (data *Data) CreateRetentionPolicy(database string, rpi *Retentio...
method DropRetentionPolicy (line 170) | func (data *Data) DropRetentionPolicy(database, name string) error {
method UpdateRetentionPolicy (line 210) | func (data *Data) UpdateRetentionPolicy(database, name string, rpu *Re...
method DropShard (line 268) | func (data *Data) DropShard(id uint64) {
method ShardGroups (line 296) | func (data *Data) ShardGroups(database, policy string) ([]ShardGroupIn...
method ShardGroupsByTimeRange (line 316) | func (data *Data) ShardGroupsByTimeRange(database, policy string, tmin...
method ShardGroupByTimestamp (line 335) | func (data *Data) ShardGroupByTimestamp(database, policy string, times...
method CreateShardGroup (line 348) | func (data *Data) CreateShardGroup(database, policy string, timestamp ...
method DeleteShardGroup (line 388) | func (data *Data) DeleteShardGroup(database, policy string, id uint64)...
method CreateContinuousQuery (line 409) | func (data *Data) CreateContinuousQuery(database, name, query string) ...
method DropContinuousQuery (line 438) | func (data *Data) DropContinuousQuery(database, name string) error {
method CreateSubscription (line 473) | func (data *Data) CreateSubscription(database, rp, name, mode string, ...
method DropSubscription (line 505) | func (data *Data) DropSubscription(database, rp, name string) error {
method user (line 522) | func (data *Data) user(username string) *UserInfo {
method User (line 532) | func (data *Data) User(username string) User {
method CreateUser (line 542) | func (data *Data) CreateUser(name, hash string, admin bool) error {
method DropUser (line 566) | func (data *Data) DropUser(name string) error {
method UpdateUser (line 584) | func (data *Data) UpdateUser(name, hash string) error {
method CloneUsers (line 595) | func (data *Data) CloneUsers() []UserInfo {
method SetPrivilege (line 608) | func (data *Data) SetPrivilege(name, database string, p influxql.Privi...
method SetAdminPrivilege (line 623) | func (data *Data) SetAdminPrivilege(name string, admin bool) error {
method AdminUserExists (line 638) | func (data Data) AdminUserExists() bool {
method UserPrivileges (line 643) | func (data *Data) UserPrivileges(name string) (map[string]influxql.Pri...
method UserPrivilege (line 653) | func (data *Data) UserPrivilege(name, database string) (*influxql.Priv...
method Clone (line 669) | func (data *Data) Clone() *Data {
method marshal (line 679) | func (data *Data) marshal() *internal.Data {
method unmarshal (line 706) | func (data *Data) unmarshal(pb *internal.Data) {
method MarshalBinary (line 730) | func (data *Data) MarshalBinary() ([]byte, error) {
method UnmarshalBinary (line 735) | func (data *Data) UnmarshalBinary(buf []byte) error {
method hasAdminUser (line 746) | func (data *Data) hasAdminUser() bool {
type RetentionPolicyUpdate (line 190) | type RetentionPolicyUpdate struct
method SetName (line 198) | func (rpu *RetentionPolicyUpdate) SetName(v string) { rpu.Name = &v }
method SetDuration (line 201) | func (rpu *RetentionPolicyUpdate) SetDuration(v time.Duration) { rpu.D...
method SetReplicaN (line 204) | func (rpu *RetentionPolicyUpdate) SetReplicaN(v int) { rpu.ReplicaN = ...
method SetShardGroupDuration (line 207) | func (rpu *RetentionPolicyUpdate) SetShardGroupDuration(v time.Duratio...
function validateURL (line 454) | func validateURL(input string) error {
type NodeInfo (line 756) | type NodeInfo struct
type NodeInfos (line 763) | type NodeInfos
method Len (line 766) | func (n NodeInfos) Len() int { return len(n) }
method Swap (line 769) | func (n NodeInfos) Swap(i, j int) { n[i], n[j] = n[j], n[i] }
method Less (line 772) | func (n NodeInfos) Less(i, j int) bool { return n[i].ID < n[j].ID }
type DatabaseInfo (line 775) | type DatabaseInfo struct
method RetentionPolicy (line 783) | func (di DatabaseInfo) RetentionPolicy(name string) *RetentionPolicyIn...
method ShardInfos (line 800) | func (di DatabaseInfo) ShardInfos() []ShardInfo {
method clone (line 825) | func (di DatabaseInfo) clone() DatabaseInfo {
method marshal (line 847) | func (di DatabaseInfo) marshal() *internal.DatabaseInfo {
method unmarshal (line 865) | func (di *DatabaseInfo) unmarshal(pb *internal.DatabaseInfo) {
type RetentionPolicySpec (line 885) | type RetentionPolicySpec struct
method NewRetentionPolicyInfo (line 893) | func (s *RetentionPolicySpec) NewRetentionPolicyInfo() *RetentionPolic...
method Matches (line 899) | func (s *RetentionPolicySpec) Matches(rpi *RetentionPolicyInfo) bool {
method marshal (line 918) | func (s *RetentionPolicySpec) marshal() *internal.RetentionPolicySpec {
method unmarshal (line 936) | func (s *RetentionPolicySpec) unmarshal(pb *internal.RetentionPolicySp...
method MarshalBinary (line 954) | func (s *RetentionPolicySpec) MarshalBinary() ([]byte, error) {
method UnmarshalBinary (line 959) | func (s *RetentionPolicySpec) UnmarshalBinary(data []byte) error {
type RetentionPolicyInfo (line 969) | type RetentionPolicyInfo struct
method Apply (line 995) | func (rpi *RetentionPolicyInfo) Apply(spec *RetentionPolicySpec) *Rete...
method ShardGroupByTimestamp (line 1017) | func (rpi *RetentionPolicyInfo) ShardGroupByTimestamp(timestamp time.T...
method ExpiredShardGroups (line 1029) | func (rpi *RetentionPolicyInfo) ExpiredShardGroups(t time.Time) []*Sha...
method DeletedShardGroups (line 1043) | func (rpi *RetentionPolicyInfo) DeletedShardGroups() []*ShardGroupInfo {
method marshal (line 1054) | func (rpi *RetentionPolicyInfo) marshal() *internal.RetentionPolicyInfo {
method unmarshal (line 1076) | func (rpi *RetentionPolicyInfo) unmarshal(pb *internal.RetentionPolicy...
method clone (line 1097) | func (rpi RetentionPolicyInfo) clone() RetentionPolicyInfo {
method MarshalBinary (line 1111) | func (rpi *RetentionPolicyInfo) MarshalBinary() ([]byte, error) {
method UnmarshalBinary (line 1116) | func (rpi *RetentionPolicyInfo) UnmarshalBinary(data []byte) error {
function NewRetentionPolicyInfo (line 980) | func NewRetentionPolicyInfo(name string) *RetentionPolicyInfo {
function DefaultRetentionPolicyInfo (line 990) | func DefaultRetentionPolicyInfo() *RetentionPolicyInfo {
function shardGroupDuration (line 1126) | func shardGroupDuration(d time.Duration) time.Duration {
function normalisedShardDuration (line 1136) | func normalisedShardDuration(sgd, d time.Duration) time.Duration {
type ShardGroupInfo (line 1153) | type ShardGroupInfo struct
method Contains (line 1192) | func (sgi *ShardGroupInfo) Contains(timestamp time.Time) bool {
method Overlaps (line 1197) | func (sgi *ShardGroupInfo) Overlaps(min, max time.Time) bool {
method Deleted (line 1202) | func (sgi *ShardGroupInfo) Deleted() bool {
method Truncated (line 1207) | func (sgi *ShardGroupInfo) Truncated() bool {
method clone (line 1212) | func (sgi ShardGroupInfo) clone() ShardGroupInfo {
method ShardFor (line 1226) | func (sgi *ShardGroupInfo) ShardFor(hash uint64) ShardInfo {
method marshal (line 1231) | func (sgi *ShardGroupInfo) marshal() *internal.ShardGroupInfo {
method unmarshal (line 1252) | func (sgi *ShardGroupInfo) unmarshal(pb *internal.ShardGroupInfo) {
type ShardGroupInfos (line 1164) | type ShardGroupInfos
method Len (line 1167) | func (a ShardGroupInfos) Len() int { return len(a) }
method Swap (line 1170) | func (a ShardGroupInfos) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 1173) | func (a ShardGroupInfos) Less(i, j int) bool {
type ShardInfo (line 1279) | type ShardInfo struct
method OwnedBy (line 1285) | func (si ShardInfo) OwnedBy(nodeID uint64) bool {
method clone (line 1295) | func (si ShardInfo) clone() ShardInfo {
method marshal (line 1309) | func (si ShardInfo) marshal() *internal.ShardInfo {
method UnmarshalBinary (line 1323) | func (si *ShardInfo) UnmarshalBinary(buf []byte) error {
method unmarshal (line 1333) | func (si *ShardInfo) unmarshal(pb *internal.ShardInfo) {
type SubscriptionInfo (line 1353) | type SubscriptionInfo struct
method marshal (line 1360) | func (si SubscriptionInfo) marshal() *internal.SubscriptionInfo {
method unmarshal (line 1374) | func (si *SubscriptionInfo) unmarshal(pb *internal.SubscriptionInfo) {
type ShardOwner (line 1387) | type ShardOwner struct
method clone (line 1392) | func (so ShardOwner) clone() ShardOwner {
method marshal (line 1397) | func (so ShardOwner) marshal() *internal.ShardOwner {
method unmarshal (line 1404) | func (so *ShardOwner) unmarshal(pb *internal.ShardOwner) {
type ContinuousQueryInfo (line 1409) | type ContinuousQueryInfo struct
method clone (line 1415) | func (cqi ContinuousQueryInfo) clone() ContinuousQueryInfo { return cqi }
method marshal (line 1418) | func (cqi ContinuousQueryInfo) marshal() *internal.ContinuousQueryInfo {
method unmarshal (line 1426) | func (cqi *ContinuousQueryInfo) unmarshal(pb *internal.ContinuousQuery...
type UserInfo (line 1434) | type UserInfo struct
method ID (line 1454) | func (u *UserInfo) ID() string {
method IsAdmin (line 1458) | func (u *UserInfo) IsAdmin() bool {
method AuthorizeDatabase (line 1463) | func (ui *UserInfo) AuthorizeDatabase(privilege influxql.Privilege, da...
method AuthorizeSeriesRead (line 1472) | func (u *UserInfo) AuthorizeSeriesRead(database string, measurement []...
method AuthorizeSeriesWrite (line 1477) | func (u *UserInfo) AuthorizeSeriesWrite(database string, measurement [...
method clone (line 1482) | func (ui UserInfo) clone() UserInfo {
method marshal (line 1496) | func (ui UserInfo) marshal() *internal.UserInfo {
method unmarshal (line 1514) | func (ui *UserInfo) unmarshal(pb *internal.UserInfo) {
type User (line 1448) | type User interface
type Lease (line 1526) | type Lease struct
type Leases (line 1533) | type Leases struct
method Acquire (line 1551) | func (leases *Leases) Acquire(name string, nodeID uint64) (*Lease, err...
function NewLeases (line 1540) | func NewLeases(d time.Duration) *Leases {
function MarshalTime (line 1577) | func MarshalTime(t time.Time) int64 {
function UnmarshalTime (line 1586) | func UnmarshalTime(v int64) time.Time {
function ValidName (line 1594) | func ValidName(name string) bool {
FILE: vendor/github.com/influxdata/influxdb/services/meta/data_internal_test.go
function TestShardGroupSort (line 10) | func TestShardGroupSort(t *testing.T) {
function Test_Data_RetentionPolicy_MarshalBinary (line 33) | func Test_Data_RetentionPolicy_MarshalBinary(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/meta/data_test.go
function Test_Data_DropDatabase (line 13) | func Test_Data_DropDatabase(t *testing.T) {
function Test_Data_CreateRetentionPolicy (line 66) | func Test_Data_CreateRetentionPolicy(t *testing.T) {
function TestData_AdminUserExists (line 113) | func TestData_AdminUserExists(t *testing.T) {
function TestUserInfo_AuthorizeDatabase (line 191) | func TestUserInfo_AuthorizeDatabase(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/meta/errors.go
function ErrInvalidSubscriptionURL (line 99) | func ErrInvalidSubscriptionURL(url string) error {
FILE: vendor/github.com/influxdata/influxdb/services/meta/file_unix.go
function renameFile (line 8) | func renameFile(oldpath, newpath string) error {
FILE: vendor/github.com/influxdata/influxdb/services/meta/file_windows.go
function renameFile (line 6) | func renameFile(oldpath, newpath string) error {
FILE: vendor/github.com/influxdata/influxdb/services/meta/internal/meta.pb.go
constant _ (line 71) | _ = proto.GoGoProtoPackageIsVersion2
type Command_Type (line 73) | type Command_Type
method Enum (line 170) | func (x Command_Type) Enum() *Command_Type {
method String (line 175) | func (x Command_Type) String() string {
method UnmarshalJSON (line 178) | func (x *Command_Type) UnmarshalJSON(data []byte) error {
method EnumDescriptor (line 186) | func (Command_Type) EnumDescriptor() ([]byte, []int) { return fileDesc...
constant Command_CreateNodeCommand (line 76) | Command_CreateNodeCommand Command_Type = 1
constant Command_DeleteNodeCommand (line 77) | Command_DeleteNodeCommand Command_Type = 2
constant Command_CreateDatabaseCommand (line 78) | Command_CreateDatabaseCommand Command_Type = 3
constant Command_DropDatabaseCommand (line 79) | Command_DropDatabaseCommand Command_Type = 4
constant Command_CreateRetentionPolicyCommand (line 80) | Command_CreateRetentionPolicyCommand Command_Type = 5
constant Command_DropRetentionPolicyCommand (line 81) | Command_DropRetentionPolicyCommand Command_Type = 6
constant Command_SetDefaultRetentionPolicyCommand (line 82) | Command_SetDefaultRetentionPolicyCommand Command_Type = 7
constant Command_UpdateRetentionPolicyCommand (line 83) | Command_UpdateRetentionPolicyCommand Command_Type = 8
constant Command_CreateShardGroupCommand (line 84) | Command_CreateShardGroupCommand Command_Type = 9
constant Command_DeleteShardGroupCommand (line 85) | Command_DeleteShardGroupCommand Command_Type = 10
constant Command_CreateContinuousQueryCommand (line 86) | Command_CreateContinuousQueryCommand Command_Type = 11
constant Command_DropContinuousQueryCommand (line 87) | Command_DropContinuousQueryCommand Command_Type = 12
constant Command_CreateUserCommand (line 88) | Command_CreateUserCommand Command_Type = 13
constant Command_DropUserCommand (line 89) | Command_DropUserCommand Command_Type = 14
constant Command_UpdateUserCommand (line 90) | Command_UpdateUserCommand Command_Type = 15
constant Command_SetPrivilegeCommand (line 91) | Command_SetPrivilegeCommand Command_Type = 16
constant Command_SetDataCommand (line 92) | Command_SetDataCommand Command_Type = 17
constant Command_SetAdminPrivilegeCommand (line 93) | Command_SetAdminPrivilegeCommand Command_Type = 18
constant Command_UpdateNodeCommand (line 94) | Command_UpdateNodeCommand Command_Type = 19
constant Command_CreateSubscriptionCommand (line 95) | Command_CreateSubscriptionCommand Command_Type = 21
constant Command_DropSubscriptionCommand (line 96) | Command_DropSubscriptionCommand Command_Type = 22
constant Command_RemovePeerCommand (line 97) | Command_RemovePeerCommand Command_Type = 23
constant Command_CreateMetaNodeCommand (line 98) | Command_CreateMetaNodeCommand Command_Type = 24
constant Command_CreateDataNodeCommand (line 99) | Command_CreateDataNodeCommand Command_Type = 25
constant Command_UpdateDataNodeCommand (line 100) | Command_UpdateDataNodeCommand Command_Type = 26
constant Command_DeleteMetaNodeCommand (line 101) | Command_DeleteMetaNodeCommand Command_Type = 27
constant Command_DeleteDataNodeCommand (line 102) | Command_DeleteDataNodeCommand Command_Type = 28
constant Command_SetMetaNodeCommand (line 103) | Command_SetMetaNodeCommand Command_Type = 29
constant Command_DropShardCommand (line 104) | Command_DropShardCommand Command_Type = 30
type Data (line 188) | type Data struct
method Reset (line 204) | func (m *Data) Reset() { *m = Data{} }
method String (line 205) | func (m *Data) String() string { return proto.CompactTextSt...
method ProtoMessage (line 206) | func (*Data) ProtoMessage() {}
method Descriptor (line 207) | func (*Data) Descriptor() ([]byte, []int) { return fileDescriptorMeta,...
method GetTerm (line 209) | func (m *Data) GetTerm() uint64 {
method GetIndex (line 216) | func (m *Data) GetIndex() uint64 {
method GetClusterID (line 223) | func (m *Data) GetClusterID() uint64 {
method GetNodes (line 230) | func (m *Data) GetNodes() []*NodeInfo {
method GetDatabases (line 237) | func (m *Data) GetDatabases() []*DatabaseInfo {
method GetUsers (line 244) | func (m *Data) GetUsers() []*UserInfo {
method GetMaxNodeID (line 251) | func (m *Data) GetMaxNodeID() uint64 {
method GetMaxShardGroupID (line 258) | func (m *Data) GetMaxShardGroupID() uint64 {
method GetMaxShardID (line 265) | func (m *Data) GetMaxShardID() uint64 {
method GetDataNodes (line 272) | func (m *Data) GetDataNodes() []*NodeInfo {
method GetMetaNodes (line 279) | func (m *Data) GetMetaNodes() []*NodeInfo {
type NodeInfo (line 286) | type NodeInfo struct
method Reset (line 293) | func (m *NodeInfo) Reset() { *m = NodeInfo{} }
method String (line 294) | func (m *NodeInfo) String() string { return proto.CompactTe...
method ProtoMessage (line 295) | func (*NodeInfo) ProtoMessage() {}
method Descriptor (line 296) | func (*NodeInfo) Descriptor() ([]byte, []int) { return fileDescriptorM...
method GetID (line 298) | func (m *NodeInfo) GetID() uint64 {
method GetHost (line 305) | func (m *NodeInfo) GetHost() string {
method GetTCPHost (line 312) | func (m *NodeInfo) GetTCPHost() string {
type DatabaseInfo (line 319) | type DatabaseInfo struct
method Reset (line 327) | func (m *DatabaseInfo) Reset() { *m = DatabaseInfo{} }
method String (line 328) | func (m *DatabaseInfo) String() string { return proto.Compa...
method ProtoMessage (line 329) | func (*DatabaseInfo) ProtoMessage() {}
method Descriptor (line 330) | func (*DatabaseInfo) Descriptor() ([]byte, []int) { return fileDescrip...
method GetName (line 332) | func (m *DatabaseInfo) GetName() string {
method GetDefaultRetentionPolicy (line 339) | func (m *DatabaseInfo) GetDefaultRetentionPolicy() string {
method GetRetentionPolicies (line 346) | func (m *DatabaseInfo) GetRetentionPolicies() []*RetentionPolicyInfo {
method GetContinuousQueries (line 353) | func (m *DatabaseInfo) GetContinuousQueries() []*ContinuousQueryInfo {
type RetentionPolicySpec (line 360) | type RetentionPolicySpec struct
method Reset (line 368) | func (m *RetentionPolicySpec) Reset() { *m = Retent...
method String (line 369) | func (m *RetentionPolicySpec) String() string { return prot...
method ProtoMessage (line 370) | func (*RetentionPolicySpec) ProtoMessage() {}
method Descriptor (line 371) | func (*RetentionPolicySpec) Descriptor() ([]byte, []int) { return file...
method GetName (line 373) | func (m *RetentionPolicySpec) GetName() string {
method GetDuration (line 380) | func (m *RetentionPolicySpec) GetDuration() int64 {
method GetShardGroupDuration (line 387) | func (m *RetentionPolicySpec) GetShardGroupDuration() int64 {
method GetReplicaN (line 394) | func (m *RetentionPolicySpec) GetReplicaN() uint32 {
type RetentionPolicyInfo (line 401) | type RetentionPolicyInfo struct
method Reset (line 411) | func (m *RetentionPolicyInfo) Reset() { *m = Retent...
method String (line 412) | func (m *RetentionPolicyInfo) String() string { return prot...
method ProtoMessage (line 413) | func (*RetentionPolicyInfo) ProtoMessage() {}
method Descriptor (line 414) | func (*RetentionPolicyInfo) Descriptor() ([]byte, []int) { return file...
method GetName (line 416) | func (m *RetentionPolicyInfo) GetName() string {
method GetDuration (line 423) | func (m *RetentionPolicyInfo) GetDuration() int64 {
method GetShardGroupDuration (line 430) | func (m *RetentionPolicyInfo) GetShardGroupDuration() int64 {
method GetReplicaN (line 437) | func (m *RetentionPolicyInfo) GetReplicaN() uint32 {
method GetShardGroups (line 444) | func (m *RetentionPolicyInfo) GetShardGroups() []*ShardGroupInfo {
method GetSubscriptions (line 451) | func (m *RetentionPolicyInfo) GetSubscriptions() []*SubscriptionInfo {
type ShardGroupInfo (line 458) | type ShardGroupInfo struct
method Reset (line 468) | func (m *ShardGroupInfo) Reset() { *m = ShardGroupI...
method String (line 469) | func (m *ShardGroupInfo) String() string { return proto.Com...
method ProtoMessage (line 470) | func (*ShardGroupInfo) ProtoMessage() {}
method Descriptor (line 471) | func (*ShardGroupInfo) Descriptor() ([]byte, []int) { return fileDescr...
method GetID (line 473) | func (m *ShardGroupInfo) GetID() uint64 {
method GetStartTime (line 480) | func (m *ShardGroupInfo) GetStartTime() int64 {
method GetEndTime (line 487) | func (m *ShardGroupInfo) GetEndTime() int64 {
method GetDeletedAt (line 494) | func (m *ShardGroupInfo) GetDeletedAt() int64 {
method GetShards (line 501) | func (m *ShardGroupInfo) GetShards() []*ShardInfo {
method GetTruncatedAt (line 508) | func (m *ShardGroupInfo) GetTruncatedAt() int64 {
type ShardInfo (line 515) | type ShardInfo struct
method Reset (line 522) | func (m *ShardInfo) Reset() { *m = ShardInfo{} }
method String (line 523) | func (m *ShardInfo) String() string { return proto.CompactT...
method ProtoMessage (line 524) | func (*ShardInfo) ProtoMessage() {}
method Descriptor (line 525) | func (*ShardInfo) Descriptor() ([]byte, []int) { return fileDescriptor...
method GetID (line 527) | func (m *ShardInfo) GetID() uint64 {
method GetOwnerIDs (line 534) | func (m *ShardInfo) GetOwnerIDs() []uint64 {
method GetOwners (line 541) | func (m *ShardInfo) GetOwners() []*ShardOwner {
type SubscriptionInfo (line 548) | type SubscriptionInfo struct
method Reset (line 555) | func (m *SubscriptionInfo) Reset() { *m = Subscript...
method String (line 556) | func (m *SubscriptionInfo) String() string { return proto.C...
method ProtoMessage (line 557) | func (*SubscriptionInfo) ProtoMessage() {}
method Descriptor (line 558) | func (*SubscriptionInfo) Descriptor() ([]byte, []int) { return fileDes...
method GetName (line 560) | func (m *SubscriptionInfo) GetName() string {
method GetMode (line 567) | func (m *SubscriptionInfo) GetMode() string {
method GetDestinations (line 574) | func (m *SubscriptionInfo) GetDestinations() []string {
type ShardOwner (line 581) | type ShardOwner struct
method Reset (line 586) | func (m *ShardOwner) Reset() { *m = ShardOwner{} }
method String (line 587) | func (m *ShardOwner) String() string { return proto.Compact...
method ProtoMessage (line 588) | func (*ShardOwner) ProtoMessage() {}
method Descriptor (line 589) | func (*ShardOwner) Descriptor() ([]byte, []int) { return fileDescripto...
method GetNodeID (line 591) | func (m *ShardOwner) GetNodeID() uint64 {
type ContinuousQueryInfo (line 598) | type ContinuousQueryInfo struct
method Reset (line 604) | func (m *ContinuousQueryInfo) Reset() { *m = Contin...
method String (line 605) | func (m *ContinuousQueryInfo) String() string { return prot...
method ProtoMessage (line 606) | func (*ContinuousQueryInfo) ProtoMessage() {}
method Descriptor (line 607) | func (*ContinuousQueryInfo) Descriptor() ([]byte, []int) { return file...
method GetName (line 609) | func (m *ContinuousQueryInfo) GetName() string {
method GetQuery (line 616) | func (m *ContinuousQueryInfo) GetQuery() string {
type UserInfo (line 623) | type UserInfo struct
method Reset (line 631) | func (m *UserInfo) Reset() { *m = UserInfo{} }
method String (line 632) | func (m *UserInfo) String() string { return proto.CompactTe...
method ProtoMessage (line 633) | func (*UserInfo) ProtoMessage() {}
method Descriptor (line 634) | func (*UserInfo) Descriptor() ([]byte, []int) { return fileDescriptorM...
method GetName (line 636) | func (m *UserInfo) GetName() string {
method GetHash (line 643) | func (m *UserInfo) GetHash() string {
method GetAdmin (line 650) | func (m *UserInfo) GetAdmin() bool {
method GetPrivileges (line 657) | func (m *UserInfo) GetPrivileges() []*UserPrivilege {
type UserPrivilege (line 664) | type UserPrivilege struct
method Reset (line 670) | func (m *UserPrivilege) Reset() { *m = UserPrivileg...
method String (line 671) | func (m *UserPrivilege) String() string { return proto.Comp...
method ProtoMessage (line 672) | func (*UserPrivilege) ProtoMessage() {}
method Descriptor (line 673) | func (*UserPrivilege) Descriptor() ([]byte, []int) { return fileDescri...
method GetDatabase (line 675) | func (m *UserPrivilege) GetDatabase() string {
method GetPrivilege (line 682) | func (m *UserPrivilege) GetPrivilege() int32 {
type Command (line 689) | type Command struct
method Reset (line 695) | func (m *Command) Reset() { *m = Command{} }
method String (line 696) | func (m *Command) String() string { return proto.CompactTex...
method ProtoMessage (line 697) | func (*Command) ProtoMessage() {}
method Descriptor (line 698) | func (*Command) Descriptor() ([]byte, []int) { return fileDescriptorMe...
method ExtensionRangeArray (line 704) | func (*Command) ExtensionRangeArray() []proto.ExtensionRange {
method GetType (line 708) | func (m *Command) GetType() Command_Type {
type CreateNodeCommand (line 717) | type CreateNodeCommand struct
method Reset (line 723) | func (m *CreateNodeCommand) Reset() { *m = CreateNo...
method String (line 724) | func (m *CreateNodeCommand) String() string { return proto....
method ProtoMessage (line 725) | func (*CreateNodeCommand) ProtoMessage() {}
method Descriptor (line 726) | func (*CreateNodeCommand) Descriptor() ([]byte, []int) { return fileDe...
method GetHost (line 728) | func (m *CreateNodeCommand) GetHost() string {
method GetRand (line 735) | func (m *CreateNodeCommand) GetRand() uint64 {
type DeleteNodeCommand (line 750) | type DeleteNodeCommand struct
method Reset (line 756) | func (m *DeleteNodeCommand) Reset() { *m = DeleteNo...
method String (line 757) | func (m *DeleteNodeCommand) String() string { return proto....
method ProtoMessage (line 758) | func (*DeleteNodeCommand) ProtoMessage() {}
method Descriptor (line 759) | func (*DeleteNodeCommand) Descriptor() ([]byte, []int) { return fileDe...
method GetID (line 761) | func (m *DeleteNodeCommand) GetID() uint64 {
method GetForce (line 768) | func (m *DeleteNodeCommand) GetForce() bool {
type CreateDatabaseCommand (line 783) | type CreateDatabaseCommand struct
method Reset (line 789) | func (m *CreateDatabaseCommand) Reset() { *m = Crea...
method String (line 790) | func (m *CreateDatabaseCommand) String() string { return pr...
method ProtoMessage (line 791) | func (*CreateDatabaseCommand) ProtoMessage() {}
method Descriptor (line 792) | func (*CreateDatabaseCommand) Descriptor() ([]byte, []int) { return fi...
method GetName (line 794) | func (m *CreateDatabaseCommand) GetName() string {
method GetRetentionPolicy (line 801) | func (m *CreateDatabaseCommand) GetRetentionPolicy() *RetentionPolicyI...
type DropDatabaseCommand (line 816) | type DropDatabaseCommand struct
method Reset (line 821) | func (m *DropDatabaseCommand) Reset() { *m = DropDa...
method String (line 822) | func (m *DropDatabaseCommand) String() string { return prot...
method ProtoMessage (line 823) | func (*DropDatabaseCommand) ProtoMessage() {}
method Descriptor (line 824) | func (*DropDatabaseCommand) Descriptor() ([]byte, []int) { return file...
method GetName (line 826) | func (m *DropDatabaseCommand) GetName() string {
type CreateRetentionPolicyCommand (line 841) | type CreateRetentionPolicyCommand struct
method Reset (line 847) | func (m *CreateRetentionPolicyCommand) Reset() { *m = CreateRe...
method String (line 848) | func (m *CreateRetentionPolicyCommand) String() string { return proto....
method ProtoMessage (line 849) | func (*CreateRetentionPolicyCommand) ProtoMessage() {}
method Descriptor (line 850) | func (*CreateRetentionPolicyCommand) Descriptor() ([]byte, []int) {
method GetDatabase (line 854) | func (m *CreateRetentionPolicyCommand) GetDatabase() string {
method GetRetentionPolicy (line 861) | func (m *CreateRetentionPolicyCommand) GetRetentionPolicy() *Retention...
type DropRetentionPolicyCommand (line 876) | type DropRetentionPolicyCommand struct
method Reset (line 882) | func (m *DropRetentionPolicyCommand) Reset() { *m =...
method String (line 883) | func (m *DropRetentionPolicyCommand) String() string { retu...
method ProtoMessage (line 884) | func (*DropRetentionPolicyCommand) ProtoMessage() {}
method Descriptor (line 885) | func (*DropRetentionPolicyCommand) Descriptor() ([]byte, []int) { retu...
method GetDatabase (line 887) | func (m *DropRetentionPolicyCommand) GetDatabase() string {
method GetName (line 894) | func (m *DropRetentionPolicyCommand) GetName() string {
type SetDefaultRetentionPolicyCommand (line 909) | type SetDefaultRetentionPolicyCommand struct
method Reset (line 915) | func (m *SetDefaultRetentionPolicyCommand) Reset() { *m = SetD...
method String (line 916) | func (m *SetDefaultRetentionPolicyCommand) String() string { return pr...
method ProtoMessage (line 917) | func (*SetDefaultRetentionPolicyCommand) ProtoMessage() {}
method Descriptor (line 918) | func (*SetDefaultRetentionPolicyCommand) Descriptor() ([]byte, []int) {
method GetDatabase (line 922) | func (m *SetDefaultRetentionPolicyCommand) GetDatabase() string {
method GetName (line 929) | func (m *SetDefaultRetentionPolicyCommand) GetName() string {
type UpdateRetentionPolicyCommand (line 944) | type UpdateRetentionPolicyCommand struct
method Reset (line 953) | func (m *UpdateRetentionPolicyCommand) Reset() { *m = UpdateRe...
method String (line 954) | func (m *UpdateRetentionPolicyCommand) String() string { return proto....
method ProtoMessage (line 955) | func (*UpdateRetentionPolicyCommand) ProtoMessage() {}
method Descriptor (line 956) | func (*UpdateRetentionPolicyCommand) Descriptor() ([]byte, []int) {
method GetDatabase (line 960) | func (m *UpdateRetentionPolicyCommand) GetDatabase() string {
method GetName (line 967) | func (m *UpdateRetentionPolicyCommand) GetName() string {
method GetNewName (line 974) | func (m *UpdateRetentionPolicyCommand) GetNewName() string {
method GetDuration (line 981) | func (m *UpdateRetentionPolicyCommand) GetDuration() int64 {
method GetReplicaN (line 988) | func (m *UpdateRetentionPolicyCommand) GetReplicaN() uint32 {
type CreateShardGroupCommand (line 1003) | type CreateShardGroupCommand struct
method Reset (line 1010) | func (m *CreateShardGroupCommand) Reset() { *m = Cr...
method String (line 1011) | func (m *CreateShardGroupCommand) String() string { return ...
method ProtoMessage (line 1012) | func (*CreateShardGroupCommand) ProtoMessage() {}
method Descriptor (line 1013) | func (*CreateShardGroupCommand) Descriptor() ([]byte, []int) { return ...
method GetDatabase (line 1015) | func (m *CreateShardGroupCommand) GetDatabase() string {
method GetPolicy (line 1022) | func (m *CreateShardGroupCommand) GetPolicy() string {
method GetTimestamp (line 1029) | func (m *CreateShardGroupCommand) GetTimestamp() int64 {
type DeleteShardGroupCommand (line 1044) | type DeleteShardGroupCommand struct
method Reset (line 1051) | func (m *DeleteShardGroupCommand) Reset() { *m = De...
method String (line 1052) | func (m *DeleteShardGroupCommand) String() string { return ...
method ProtoMessage (line 1053) | func (*DeleteShardGroupCommand) ProtoMessage() {}
method Descriptor (line 1054) | func (*DeleteShardGroupCommand) Descriptor() ([]byte, []int) { return ...
method GetDatabase (line 1056) | func (m *DeleteShardGroupCommand) GetDatabase() string {
method GetPolicy (line 1063) | func (m *DeleteShardGroupCommand) GetPolicy() string {
method GetShardGroupID (line 1070) | func (m *DeleteShardGroupCommand) GetShardGroupID() uint64 {
type CreateContinuousQueryCommand (line 1085) | type CreateContinuousQueryCommand struct
method Reset (line 1092) | func (m *CreateContinuousQueryCommand) Reset() { *m = CreateCo...
method String (line 1093) | func (m *CreateContinuousQueryCommand) String() string { return proto....
method ProtoMessage (line 1094) | func (*CreateContinuousQueryCommand) ProtoMessage() {}
method Descriptor (line 1095) | func (*CreateContinuousQueryCommand) Descriptor() ([]byte, []int) {
method GetDatabase (line 1099) | func (m *CreateContinuousQueryCommand) GetDatabase() string {
method GetName (line 1106) | func (m *CreateContinuousQueryCommand) GetName() string {
method GetQuery (line 1113) | func (m *CreateContinuousQueryCommand) GetQuery() string {
type DropContinuousQueryCommand (line 1128) | type DropContinuousQueryCommand struct
method Reset (line 1134) | func (m *DropContinuousQueryCommand) Reset() { *m =...
method String (line 1135) | func (m *DropContinuousQueryCommand) String() string { retu...
method ProtoMessage (line 1136) | func (*DropContinuousQueryCommand) ProtoMessage() {}
method Descriptor (line 1137) | func (*DropContinuousQueryCommand) Descriptor() ([]byte, []int) { retu...
method GetDatabase (line 1139) | func (m *DropContinuousQueryCommand) GetDatabase() string {
method GetName (line 1146) | func (m *DropContinuousQueryCommand) GetName() string {
type CreateUserCommand (line 1161) | type CreateUserCommand struct
method Reset (line 1168) | func (m *CreateUserCommand) Reset() { *m = CreateUs...
method String (line 1169) | func (m *CreateUserCommand) String() string { return proto....
method ProtoMessage (line 1170) | func (*CreateUserCommand) ProtoMessage() {}
method Descriptor (line 1171) | func (*CreateUserCommand) Descriptor() ([]byte, []int) { return fileDe...
method GetName (line 1173) | func (m *CreateUserCommand) GetName() string {
method GetHash (line 1180) | func (m *CreateUserCommand) GetHash() string {
method GetAdmin (line 1187) | func (m *CreateUserCommand) GetAdmin() bool {
type DropUserCommand (line 1202) | type DropUserCommand struct
method Reset (line 1207) | func (m *DropUserCommand) Reset() { *m = DropUserCo...
method String (line 1208) | func (m *DropUserCommand) String() string { return proto.Co...
method ProtoMessage (line 1209) | func (*DropUserCommand) ProtoMessage() {}
method Descriptor (line 1210) | func (*DropUserCommand) Descriptor() ([]byte, []int) { return fileDesc...
method GetName (line 1212) | func (m *DropUserCommand) GetName() string {
type UpdateUserCommand (line 1227) | type UpdateUserCommand struct
method Reset (line 1233) | func (m *UpdateUserCommand) Reset() { *m = UpdateUs...
method String (line 1234) | func (m *UpdateUserCommand) String() string { return proto....
method ProtoMessage (line 1235) | func (*UpdateUserCommand) ProtoMessage() {}
method Descriptor (line 1236) | func (*UpdateUserCommand) Descriptor() ([]byte, []int) { return fileDe...
method GetName (line 1238) | func (m *UpdateUserCommand) GetName() string {
method GetHash (line 1245) | func (m *UpdateUserCommand) GetHash() string {
type SetPrivilegeCommand (line 1260) | type SetPrivilegeCommand struct
method Reset (line 1267) | func (m *SetPrivilegeCommand) Reset() { *m = SetPri...
method String (line 1268) | func (m *SetPrivilegeCommand) String() string { return prot...
method ProtoMessage (line 1269) | func (*SetPrivilegeCommand) ProtoMessage() {}
method Descriptor (line 1270) | func (*SetPrivilegeCommand) Descriptor() ([]byte, []int) { return file...
method GetUsername (line 1272) | func (m *SetPrivilegeCommand) GetUsername() string {
method GetDatabase (line 1279) | func (m *SetPrivilegeCommand) GetDatabase() string {
method GetPrivilege (line 1286) | func (m *SetPrivilegeCommand) GetPrivilege() int32 {
type SetDataCommand (line 1301) | type SetDataCommand struct
method Reset (line 1306) | func (m *SetDataCommand) Reset() { *m = SetDataComm...
method String (line 1307) | func (m *SetDataCommand) String() string { return proto.Com...
method ProtoMessage (line 1308) | func (*SetDataCommand) ProtoMessage() {}
method Descriptor (line 1309) | func (*SetDataCommand) Descriptor() ([]byte, []int) { return fileDescr...
method GetData (line 1311) | func (m *SetDataCommand) GetData() *Data {
type SetAdminPrivilegeCommand (line 1326) | type SetAdminPrivilegeCommand struct
method Reset (line 1332) | func (m *SetAdminPrivilegeCommand) Reset() { *m = S...
method String (line 1333) | func (m *SetAdminPrivilegeCommand) String() string { return...
method ProtoMessage (line 1334) | func (*SetAdminPrivilegeCommand) ProtoMessage() {}
method Descriptor (line 1335) | func (*SetAdminPrivilegeCommand) Descriptor() ([]byte, []int) { return...
method GetUsername (line 1337) | func (m *SetAdminPrivilegeCommand) GetUsername() string {
method GetAdmin (line 1344) | func (m *SetAdminPrivilegeCommand) GetAdmin() bool {
type UpdateNodeCommand (line 1359) | type UpdateNodeCommand struct
method Reset (line 1365) | func (m *UpdateNodeCommand) Reset() { *m = UpdateNo...
method String (line 1366) | func (m *UpdateNodeCommand) String() string { return proto....
method ProtoMessage (line 1367) | func (*UpdateNodeCommand) ProtoMessage() {}
method Descriptor (line 1368) | func (*UpdateNodeCommand) Descriptor() ([]byte, []int) { return fileDe...
method GetID (line 1370) | func (m *UpdateNodeCommand) GetID() uint64 {
method GetHost (line 1377) | func (m *UpdateNodeCommand) GetHost() string {
type CreateSubscriptionCommand (line 1392) | type CreateSubscriptionCommand struct
method Reset (line 1401) | func (m *CreateSubscriptionCommand) Reset() { *m = ...
method String (line 1402) | func (m *CreateSubscriptionCommand) String() string { retur...
method ProtoMessage (line 1403) | func (*CreateSubscriptionCommand) ProtoMessage() {}
method Descriptor (line 1404) | func (*CreateSubscriptionCommand) Descriptor() ([]byte, []int) { retur...
method GetName (line 1406) | func (m *CreateSubscriptionCommand) GetName() string {
method GetDatabase (line 1413) | func (m *CreateSubscriptionCommand) GetDatabase() string {
method GetRetentionPolicy (line 1420) | func (m *CreateSubscriptionCommand) GetRetentionPolicy() string {
method GetMode (line 1427) | func (m *CreateSubscriptionCommand) GetMode() string {
method GetDestinations (line 1434) | func (m *CreateSubscriptionCommand) GetDestinations() []string {
type DropSubscriptionCommand (line 1449) | type DropSubscriptionCommand struct
method Reset (line 1456) | func (m *DropSubscriptionCommand) Reset() { *m = Dr...
method String (line 1457) | func (m *DropSubscriptionCommand) String() string { return ...
method ProtoMessage (line 1458) | func (*DropSubscriptionCommand) ProtoMessage() {}
method Descriptor (line 1459) | func (*DropSubscriptionCommand) Descriptor() ([]byte, []int) { return ...
method GetName (line 1461) | func (m *DropSubscriptionCommand) GetName() string {
method GetDatabase (line 1468) | func (m *DropSubscriptionCommand) GetDatabase() string {
method GetRetentionPolicy (line 1475) | func (m *DropSubscriptionCommand) GetRetentionPolicy() string {
type RemovePeerCommand (line 1490) | type RemovePeerCommand struct
method Reset (line 1496) | func (m *RemovePeerCommand) Reset() { *m = RemovePe...
method String (line 1497) | func (m *RemovePeerCommand) String() string { return proto....
method ProtoMessage (line 1498) | func (*RemovePeerCommand) ProtoMessage() {}
method Descriptor (line 1499) | func (*RemovePeerCommand) Descriptor() ([]byte, []int) { return fileDe...
method GetID (line 1501) | func (m *RemovePeerCommand) GetID() uint64 {
method GetAddr (line 1508) | func (m *RemovePeerCommand) GetAddr() string {
type CreateMetaNodeCommand (line 1523) | type CreateMetaNodeCommand struct
method Reset (line 1530) | func (m *CreateMetaNodeCommand) Reset() { *m = Crea...
method String (line 1531) | func (m *CreateMetaNodeCommand) String() string { return pr...
method ProtoMessage (line 1532) | func (*CreateMetaNodeCommand) ProtoMessage() {}
method Descriptor (line 1533) | func (*CreateMetaNodeCommand) Descriptor() ([]byte, []int) { return fi...
method GetHTTPAddr (line 1535) | func (m *CreateMetaNodeCommand) GetHTTPAddr() string {
method GetTCPAddr (line 1542) | func (m *CreateMetaNodeCommand) GetTCPAddr() string {
method GetRand (line 1549) | func (m *CreateMetaNodeCommand) GetRand() uint64 {
type CreateDataNodeCommand (line 1564) | type CreateDataNodeCommand struct
method Reset (line 1570) | func (m *CreateDataNodeCommand) Reset() { *m = Crea...
method String (line 1571) | func (m *CreateDataNodeCommand) String() string { return pr...
method ProtoMessage (line 1572) | func (*CreateDataNodeCommand) ProtoMessage() {}
method Descriptor (line 1573) | func (*CreateDataNodeCommand) Descriptor() ([]byte, []int) { return fi...
method GetHTTPAddr (line 1575) | func (m *CreateDataNodeCommand) GetHTTPAddr() string {
method GetTCPAddr (line 1582) | func (m *CreateDataNodeCommand) GetTCPAddr() string {
type UpdateDataNodeCommand (line 1597) | type UpdateDataNodeCommand struct
method Reset (line 1604) | func (m *UpdateDataNodeCommand) Reset() { *m = Upda...
method String (line 1605) | func (m *UpdateDataNodeCommand) String() string { return pr...
method ProtoMessage (line 1606) | func (*UpdateDataNodeCommand) ProtoMessage() {}
method Descriptor (line 1607) | func (*UpdateDataNodeCommand) Descriptor() ([]byte, []int) { return fi...
method GetID (line 1609) | func (m *UpdateDataNodeCommand) GetID() uint64 {
method GetHost (line 1616) | func (m *UpdateDataNodeCommand) GetHost() string {
method GetTCPHost (line 1623) | func (m *UpdateDataNodeCommand) GetTCPHost() string {
type DeleteMetaNodeCommand (line 1638) | type DeleteMetaNodeCommand struct
method Reset (line 1643) | func (m *DeleteMetaNodeCommand) Reset() { *m = Dele...
method String (line 1644) | func (m *DeleteMetaNodeCommand) String() string { return pr...
method ProtoMessage (line 1645) | func (*DeleteMetaNodeCommand) ProtoMessage() {}
method Descriptor (line 1646) | func (*DeleteMetaNodeCommand) Descriptor() ([]byte, []int) { return fi...
method GetID (line 1648) | func (m *DeleteMetaNodeCommand) GetID() uint64 {
type DeleteDataNodeCommand (line 1663) | type DeleteDataNodeCommand struct
method Reset (line 1668) | func (m *DeleteDataNodeCommand) Reset() { *m = Dele...
method String (line 1669) | func (m *DeleteDataNodeCommand) String() string { return pr...
method ProtoMessage (line 1670) | func (*DeleteDataNodeCommand) ProtoMessage() {}
method Descriptor (line 1671) | func (*DeleteDataNodeCommand) Descriptor() ([]byte, []int) { return fi...
method GetID (line 1673) | func (m *DeleteDataNodeCommand) GetID() uint64 {
type Response (line 1688) | type Response struct
method Reset (line 1695) | func (m *Response) Reset() { *m = Response{} }
method String (line 1696) | func (m *Response) String() string { return proto.CompactTe...
method ProtoMessage (line 1697) | func (*Response) ProtoMessage() {}
method Descriptor (line 1698) | func (*Response) Descriptor() ([]byte, []int) { return fileDescriptorM...
method GetOK (line 1700) | func (m *Response) GetOK() bool {
method GetError (line 1707) | func (m *Response) GetError() string {
method GetIndex (line 1714) | func (m *Response) GetIndex() uint64 {
type SetMetaNodeCommand (line 1723) | type SetMetaNodeCommand struct
method Reset (line 1730) | func (m *SetMetaNodeCommand) Reset() { *m = SetMeta...
method String (line 1731) | func (m *SetMetaNodeCommand) String() string { return proto...
method ProtoMessage (line 1732) | func (*SetMetaNodeCommand) ProtoMessage() {}
method Descriptor (line 1733) | func (*SetMetaNodeCommand) Descriptor() ([]byte, []int) { return fileD...
method GetHTTPAddr (line 1735) | func (m *SetMetaNodeCommand) GetHTTPAddr() string {
method GetTCPAddr (line 1742) | func (m *SetMetaNodeCommand) GetTCPAddr() string {
method GetRand (line 1749) | func (m *SetMetaNodeCommand) GetRand() uint64 {
type DropShardCommand (line 1764) | type DropShardCommand struct
method Reset (line 1769) | func (m *DropShardCommand) Reset() { *m = DropShard...
method String (line 1770) | func (m *DropShardCommand) String() string { return proto.C...
method ProtoMessage (line 1771) | func (*DropShardCommand) ProtoMessage() {}
method Descriptor (line 1772) | func (*DropShardCommand) Descriptor() ([]byte, []int) { return fileDes...
method GetID (line 1774) | func (m *DropShardCommand) GetID() uint64 {
function init (line 1789) | func init() {
function init (line 1865) | func init() { proto.RegisterFile("internal/meta.proto", fileDescriptorMe...
FILE: vendor/github.com/influxdata/influxdb/services/meta/meta_test.go
function init (line 5) | func init() {
FILE: vendor/github.com/influxdata/influxdb/services/meta/query_authorizer.go
type QueryAuthorizer (line 10) | type QueryAuthorizer struct
method AuthorizeQuery (line 25) | func (a *QueryAuthorizer) AuthorizeQuery(u User, query *influxql.Query...
function NewQueryAuthorizer (line 15) | func NewQueryAuthorizer(c *Client) *QueryAuthorizer {
method AuthorizeQuery (line 54) | func (u *UserInfo) AuthorizeQuery(database string, query *influxql.Query...
type ErrAuthorize (line 104) | type ErrAuthorize struct
method Error (line 112) | func (e ErrAuthorize) Error() string {
FILE: vendor/github.com/influxdata/influxdb/services/meta/write_authorizer.go
type WriteAuthorizer (line 10) | type WriteAuthorizer struct
method AuthorizeWrite (line 20) | func (a WriteAuthorizer) AuthorizeWrite(username, database string) err...
function NewWriteAuthorizer (line 15) | func NewWriteAuthorizer(c *Client) *WriteAuthorizer {
FILE: vendor/github.com/influxdata/influxdb/services/opentsdb/config.go
constant DefaultBindAddress (line 12) | DefaultBindAddress = ":4242"
constant DefaultDatabase (line 15) | DefaultDatabase = "opentsdb"
constant DefaultRetentionPolicy (line 18) | DefaultRetentionPolicy = ""
constant DefaultConsistencyLevel (line 21) | DefaultConsistencyLevel = "one"
constant DefaultBatchSize (line 24) | DefaultBatchSize = 1000
constant DefaultBatchTimeout (line 27) | DefaultBatchTimeout = time.Second
constant DefaultBatchPending (line 30) | DefaultBatchPending = 5
constant DefaultCertificate (line 33) | DefaultCertificate = "/etc/ssl/influxdb.pem"
type Config (line 37) | type Config struct
method WithDefaults (line 69) | func (c *Config) WithDefaults() *Config {
function NewConfig (line 52) | func NewConfig() Config {
type Configs (line 100) | type Configs
method Diagnostics (line 103) | func (c Configs) Diagnostics() (*diagnostics.Diagnostics, error) {
method Enabled (line 122) | func (c Configs) Enabled() bool {
FILE: vendor/github.com/influxdata/influxdb/services/opentsdb/config_test.go
function TestConfig_Parse (line 10) | func TestConfig_Parse(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/opentsdb/handler.go
type Handler (line 22) | type Handler struct
method ServeHTTP (line 36) | func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
method servePut (line 48) | func (h *Handler) servePut(w http.ResponseWriter, r *http.Request) {
type chanListener (line 143) | type chanListener struct
method Accept (line 159) | func (ln *chanListener) Accept() (net.Conn, error) {
method Close (line 173) | func (ln *chanListener) Close() error {
method Addr (line 181) | func (ln *chanListener) Addr() net.Addr { return ln.addr }
function newChanListener (line 151) | func newChanListener(addr net.Addr) *chanListener {
type readerConn (line 184) | type readerConn struct
method Read (line 190) | func (conn *readerConn) Read(b []byte) (n int, err error) { return con...
type point (line 193) | type point struct
FILE: vendor/github.com/influxdata/influxdb/services/opentsdb/service.go
constant statHTTPConnectionsHandled (line 27) | statHTTPConnectionsHandled = "httpConnsHandled"
constant statTelnetConnectionsActive (line 28) | statTelnetConnectionsActive = "tlConnsActive"
constant statTelnetConnectionsHandled (line 29) | statTelnetConnectionsHandled = "tlConnsHandled"
constant statTelnetPointsReceived (line 30) | statTelnetPointsReceived = "tlPointsRx"
constant statTelnetBytesReceived (line 31) | statTelnetBytesReceived = "tlBytesRx"
constant statTelnetReadError (line 32) | statTelnetReadError = "tlReadErr"
constant statTelnetBadLine (line 33) | statTelnetBadLine = "tlBadLine"
constant statTelnetBadTime (line 34) | statTelnetBadTime = "tlBadTime"
constant statTelnetBadTag (line 35) | statTelnetBadTag = "tlBadTag"
constant statTelnetBadFloat (line 36) | statTelnetBadFloat = "tlBadFloat"
constant statBatchesTransmitted (line 37) | statBatchesTransmitted = "batchesTx"
constant statPointsTransmitted (line 38) | statPointsTransmitted = "pointsTx"
constant statBatchesTransmitFail (line 39) | statBatchesTransmitFail = "batchesTxFail"
constant statConnectionsActive (line 40) | statConnectionsActive = "connsActive"
constant statConnectionsHandled (line 41) | statConnectionsHandled = "connsHandled"
constant statDroppedPointsInvalid (line 42) | statDroppedPointsInvalid = "droppedPointsInvalid"
type Service (line 46) | type Service struct
method Open (line 105) | func (s *Service) Open() error {
method Close (line 159) | func (s *Service) Close() error {
method Closed (line 187) | func (s *Service) Closed() bool {
method closed (line 193) | func (s *Service) closed() bool {
method createInternalStorage (line 204) | func (s *Service) createInternalStorage() error {
method WithLogger (line 224) | func (s *Service) WithLogger(log zap.Logger) {
method Statistics (line 249) | func (s *Service) Statistics(tags map[string]string) []models.Statistic {
method Addr (line 275) | func (s *Service) Addr() net.Addr {
method serve (line 283) | func (s *Service) serve() {
method handleConn (line 301) | func (s *Service) handleConn(conn net.Conn) {
method handleTelnetConn (line 333) | func (s *Service) handleTelnetConn(conn net.Conn) {
method serveHTTP (line 437) | func (s *Service) serveHTTP() {
method processBatches (line 450) | func (s *Service) processBatches(batcher *tsdb.PointBatcher) {
function NewService (line 83) | func NewService(c Config) (*Service, error) {
type Statistics (line 229) | type Statistics struct
FILE: vendor/github.com/influxdata/influxdb/services/opentsdb/service_test.go
function Test_Service_OpenClose (line 22) | func Test_Service_OpenClose(t *testing.T) {
function TestService_CreatesDatabase (line 62) | func TestService_CreatesDatabase(t *testing.T) {
function TestService_Telnet (line 139) | func TestService_Telnet(t *testing.T) {
function TestService_HTTP (line 202) | func TestService_HTTP(t *testing.T) {
type TestService (line 251) | type TestService struct
method WritePointsPrivileged (line 293) | func (s *TestService) WritePointsPrivileged(database, retentionPolicy ...
function NewTestService (line 258) | func NewTestService(database string, bind string) *TestService {
FILE: vendor/github.com/influxdata/influxdb/services/precreator/config.go
constant DefaultCheckInterval (line 13) | DefaultCheckInterval = 10 * time.Minute
constant DefaultAdvancePeriod (line 17) | DefaultAdvancePeriod = 30 * time.Minute
type Config (line 21) | type Config struct
method Validate (line 37) | func (c Config) Validate() error {
method Diagnostics (line 55) | func (c Config) Diagnostics() (*diagnostics.Diagnostics, error) {
function NewConfig (line 28) | func NewConfig() Config {
FILE: vendor/github.com/influxdata/influxdb/services/precreator/config_test.go
function TestConfig_Parse (line 11) | func TestConfig_Parse(t *testing.T) {
function TestConfig_Validate (line 33) | func TestConfig_Validate(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/precreator/service.go
type Service (line 13) | type Service struct
method WithLogger (line 39) | func (s *Service) WithLogger(log zap.Logger) {
method Open (line 44) | func (s *Service) Open() error {
method Close (line 60) | func (s *Service) Close() error {
method runPrecreation (line 73) | func (s *Service) runPrecreation() {
method precreate (line 90) | func (s *Service) precreate(now time.Time) error {
function NewService (line 28) | func NewService(c Config) (*Service, error) {
FILE: vendor/github.com/influxdata/influxdb/services/precreator/service_test.go
function Test_ShardPrecreation (line 11) | func Test_ShardPrecreation(t *testing.T) {
type metaClient (line 49) | type metaClient struct
method PrecreateShardGroups (line 53) | func (m metaClient) PrecreateShardGroups(now, cutoff time.Time) error {
FILE: vendor/github.com/influxdata/influxdb/services/retention/config.go
type Config (line 12) | type Config struct
method Validate (line 23) | func (c Config) Validate() error {
method Diagnostics (line 38) | func (c Config) Diagnostics() (*diagnostics.Diagnostics, error) {
function NewConfig (line 18) | func NewConfig() Config {
FILE: vendor/github.com/influxdata/influxdb/services/retention/config_test.go
function TestConfig_Parse (line 11) | func TestConfig_Parse(t *testing.T) {
function TestConfig_Validate (line 29) | func TestConfig_Validate(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/retention/service.go
type Service (line 14) | type Service struct
method Open (line 42) | func (s *Service) Open() error {
method Close (line 51) | func (s *Service) Close() error {
method WithLogger (line 59) | func (s *Service) WithLogger(log zap.Logger) {
method deleteShardGroups (line 63) | func (s *Service) deleteShardGroups() {
method deleteShards (line 92) | func (s *Service) deleteShards() {
function NewService (line 33) | func NewService(c Config) *Service {
FILE: vendor/github.com/influxdata/influxdb/services/snapshotter/client.go
type Client (line 16) | type Client struct
method MetastoreBackup (line 26) | func (c *Client) MetastoreBackup() (*meta.Data, error) {
method doRequest (line 58) | func (c *Client) doRequest(req *Request) ([]byte, error) {
function NewClient (line 21) | func NewClient(host string) *Client {
FILE: vendor/github.com/influxdata/influxdb/services/snapshotter/service.go
constant MuxHeader (line 23) | MuxHeader = 3
constant BackupMagicHeader (line 27) | BackupMagicHeader = 0x59590101
type Service (line 31) | type Service struct
method Open (line 57) | func (s *Service) Open() error {
method Close (line 66) | func (s *Service) Close() error {
method WithLogger (line 75) | func (s *Service) WithLogger(log zap.Logger) {
method Err (line 80) | func (s *Service) Err() <-chan error { return s.err }
method serve (line 83) | func (s *Service) serve() {
method handleConn (line 110) | func (s *Service) handleConn(conn net.Conn) error {
method writeMetaStore (line 136) | func (s *Service) writeMetaStore(conn net.Conn) error {
method writeDatabaseInfo (line 175) | func (s *Service) writeDatabaseInfo(conn net.Conn, database string) er...
method writeRetentionPolicyInfo (line 209) | func (s *Service) writeRetentionPolicyInfo(conn net.Conn, database, re...
method readRequest (line 253) | func (s *Service) readRequest(conn net.Conn) (Request, error) {
function NewService (line 49) | func NewService() *Service {
type RequestType (line 262) | type RequestType
constant RequestShardBackup (line 266) | RequestShardBackup RequestType = iota
constant RequestMetastoreBackup (line 269) | RequestMetastoreBackup
constant RequestDatabaseInfo (line 272) | RequestDatabaseInfo
constant RequestRetentionPolicyInfo (line 275) | RequestRetentionPolicyInfo
type Request (line 280) | type Request struct
type Response (line 290) | type Response struct
FILE: vendor/github.com/influxdata/influxdb/services/subscriber/config.go
constant DefaultHTTPTimeout (line 16) | DefaultHTTPTimeout = 30 * time.Second
constant DefaultWriteConcurrency (line 19) | DefaultWriteConcurrency = 40
constant DefaultWriteBufferSize (line 22) | DefaultWriteBufferSize = 1000
type Config (line 26) | type Config struct
method Validate (line 60) | func (c Config) Validate() error {
method Diagnostics (line 90) | func (c Config) Diagnostics() (*diagnostics.Diagnostics, error) {
function NewConfig (line 48) | func NewConfig() Config {
function fileExists (line 84) | func fileExists(fileName string) bool {
FILE: vendor/github.com/influxdata/influxdb/services/subscriber/config_test.go
function TestConfig_Parse (line 14) | func TestConfig_Parse(t *testing.T) {
function TestConfig_ParseTLSConfig (line 32) | func TestConfig_ParseTLSConfig(t *testing.T) {
function TestConfig_ParseTLSConfigValidCerts (line 71) | func TestConfig_ParseTLSConfigValidCerts(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/subscriber/http.go
type HTTP (line 14) | type HTTP struct
method WritePoints (line 45) | func (h *HTTP) WritePoints(p *coordinator.WritePointsRequest) (err err...
function NewHTTP (line 19) | func NewHTTP(addr string, timeout time.Duration) (*HTTP, error) {
function NewHTTPS (line 24) | func NewHTTPS(addr string, timeout time.Duration, unsafeSsl bool, caCert...
function createTLSConfig (line 57) | func createTLSConfig(caCerts string) (*tls.Config, error) {
function loadCaCerts (line 64) | func loadCaCerts(caCerts string) (*tls.Config, error) {
FILE: vendor/github.com/influxdata/influxdb/services/subscriber/service.go
constant statCreateFailures (line 22) | statCreateFailures = "createFailures"
constant statPointsWritten (line 23) | statPointsWritten = "pointsWritten"
constant statWriteFailures (line 24) | statWriteFailures = "writeFailures"
type PointsWriter (line 30) | type PointsWriter interface
type subEntry (line 35) | type subEntry struct
type Service (line 44) | type Service struct
method Open (line 77) | func (s *Service) Open() error {
method Close (line 110) | func (s *Service) Close() error {
method WithLogger (line 129) | func (s *Service) WithLogger(log zap.Logger) {
method Statistics (line 141) | func (s *Service) Statistics(tags map[string]string) []models.Statistic {
method waitForMetaUpdates (line 161) | func (s *Service) waitForMetaUpdates() {
method Update (line 177) | func (s *Service) Update() error {
method createSubscription (line 187) | func (s *Service) createSubscription(se subEntry, mode string, destina...
method Points (line 227) | func (s *Service) Points() chan<- *coordinator.WritePointsRequest {
method run (line 232) | func (s *Service) run() {
method close (line 261) | func (s *Service) close(wg *sync.WaitGroup) {
method updateSubs (line 273) | func (s *Service) updateSubs(wg *sync.WaitGroup) {
method newPointsWriter (line 336) | func (s *Service) newPointsWriter(u url.URL) (PointsWriter, error) {
function NewService (line 65) | func NewService(c Config) *Service {
type Statistics (line 134) | type Statistics struct
type chanWriter (line 353) | type chanWriter struct
method Close (line 362) | func (c chanWriter) Close() {
method Run (line 366) | func (c chanWriter) Run() {
method Statistics (line 379) | func (c chanWriter) Statistics(tags map[string]string) []models.Statis...
type BalanceMode (line 387) | type BalanceMode
constant ALL (line 391) | ALL BalanceMode = iota
constant ANY (line 394) | ANY
type writerStats (line 397) | type writerStats struct
type balancewriter (line 404) | type balancewriter struct
method WritePoints (line 412) | func (b *balancewriter) WritePoints(p *coordinator.WritePointsRequest)...
method Statistics (line 436) | func (b *balancewriter) Statistics(tags map[string]string) []models.St...
FILE: vendor/github.com/influxdata/influxdb/services/subscriber/service_test.go
type MetaClient (line 13) | type MetaClient struct
method Databases (line 18) | func (m MetaClient) Databases() []meta.DatabaseInfo {
method WaitForDataChanged (line 22) | func (m MetaClient) WaitForDataChanged() chan struct{} {
type Subscription (line 26) | type Subscription struct
method WritePoints (line 30) | func (s Subscription) WritePoints(p *coordinator.WritePointsRequest) e...
function TestService_IgnoreNonMatch (line 34) | func TestService_IgnoreNonMatch(t *testing.T) {
function TestService_ModeALL (line 109) | func TestService_ModeALL(t *testing.T) {
function TestService_ModeANY (line 187) | func TestService_ModeANY(t *testing.T) {
function TestService_Multiple (line 269) | func TestService_Multiple(t *testing.T) {
function TestService_WaitForDataChanged (line 387) | func TestService_WaitForDataChanged(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/subscriber/udp.go
type UDP (line 10) | type UDP struct
method WritePoints (line 20) | func (u *UDP) WritePoints(p *coordinator.WritePointsRequest) (err erro...
function NewUDP (line 15) | func NewUDP(addr string) *UDP {
FILE: vendor/github.com/influxdata/influxdb/services/udp/config.go
constant DefaultBindAddress (line 12) | DefaultBindAddress = ":8089"
constant DefaultDatabase (line 15) | DefaultDatabase = "udp"
constant DefaultRetentionPolicy (line 18) | DefaultRetentionPolicy = ""
constant DefaultBatchSize (line 21) | DefaultBatchSize = 5000
constant DefaultBatchPending (line 24) | DefaultBatchPending = 10
constant DefaultBatchTimeout (line 27) | DefaultBatchTimeout = time.Second
constant DefaultPrecision (line 30) | DefaultPrecision = "n"
constant DefaultReadBuffer (line 43) | DefaultReadBuffer = 0
type Config (line 47) | type Config struct
method WithDefaults (line 74) | func (c *Config) WithDefaults() *Config {
function NewConfig (line 61) | func NewConfig() Config {
type Configs (line 98) | type Configs
method Diagnostics (line 101) | func (c Configs) Diagnostics() (*diagnostics.Diagnostics, error) {
method Enabled (line 120) | func (c Configs) Enabled() bool {
FILE: vendor/github.com/influxdata/influxdb/services/udp/config_test.go
function TestConfig_Parse (line 11) | func TestConfig_Parse(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/services/udp/service.go
constant parserChanLen (line 20) | parserChanLen = 1000
constant MaxUDPPayload (line 23) | MaxUDPPayload = 64 * 1024
constant statPointsReceived (line 28) | statPointsReceived = "pointsRx"
constant statBytesReceived (line 29) | statBytesReceived = "bytesRx"
constant statPointsParseFail (line 30) | statPointsParseFail = "pointsParseFail"
constant statReadFail (line 31) | statReadFail = "readFail"
constant statBatchesTransmitted (line 32) | statBatchesTransmitted = "batchesTx"
constant statPointsTransmitted (line 33) | statPointsTransmitted = "pointsTx"
constant statBatchesTransmitFail (line 34) | statBatchesTransmitFail = "batchesTxFail"
type Service (line 38) | type Service struct
method Open (line 78) | func (s *Service) Open() (err error) {
method Statistics (line 137) | func (s *Service) Statistics(tags map[string]string) []models.Statistic {
method writer (line 153) | func (s *Service) writer() {
method serve (line 179) | func (s *Service) serve() {
method parser (line 206) | func (s *Service) parser() {
method Close (line 230) | func (s *Service) Close() error {
method Closed (line 256) | func (s *Service) Closed() bool {
method closed (line 262) | func (s *Service) closed() bool {
method createInternalStorage (line 273) | func (s *Service) createInternalStorage() error {
method WithLogger (line 293) | func (s *Service) WithLogger(log zap.Logger) {
method Addr (line 298) | func (s *Service) Addr() net.Addr {
function NewService (line 65) | func NewService(c Config) *Service {
type Statistics (line 126) | type Statistics struct
FILE: vendor/github.com/influxdata/influxdb/services/udp/service_test.go
function TestService_OpenClose (line 15) | func TestService_OpenClose(t *testing.T) {
function TestService_CreatesDatabase (line 52) | func TestService_CreatesDatabase(t *testing.T) {
type TestService (line 127) | type TestService struct
method WritePointsPrivileged (line 158) | func (s *TestService) WritePointsPrivileged(database, retentionPolicy ...
function NewTestService (line 134) | func NewTestService(c *Config) *TestService {
FILE: vendor/github.com/influxdata/influxdb/stress/basic.go
constant backoffInterval (line 17) | backoffInterval = time.Duration(500 * time.Millisecond)
type AbstractTag (line 21) | type AbstractTag struct
type AbstractTags (line 27) | type AbstractTags
method Template (line 30) | func (t AbstractTags) Template() string {
type AbstractField (line 48) | type AbstractField struct
type AbstractFields (line 54) | type AbstractFields
method Template (line 57) | func (f AbstractFields) Template() (string, []string) {
type BasicPointGenerator (line 72) | type BasicPointGenerator struct
method timestamp (line 111) | func (b *BasicPointGenerator) timestamp(t time.Time) int64 {
method Template (line 124) | func (b *BasicPointGenerator) Template() func(i int, t time.Time) *Pnt {
method Generate (line 187) | func (b *BasicPointGenerator) Generate() (<-chan Point, error) {
method Time (line 237) | func (b *BasicPointGenerator) Time() time.Time {
function typeArr (line 90) | func typeArr(a []string) []interface{} {
type Pnt (line 142) | type Pnt struct
method Set (line 147) | func (p *Pnt) Set(b []byte) {
method Next (line 154) | func (p *Pnt) Next(i int, t time.Time) {
method Line (line 160) | func (p Pnt) Line() []byte {
method Graphite (line 166) | func (p Pnt) Graphite() []byte {
method OpenJSON (line 173) | func (p Pnt) OpenJSON() []byte {
method OpenTelnet (line 180) | func (p Pnt) OpenTelnet() []byte {
type BasicClient (line 246) | type BasicClient struct
method retry (line 263) | func (c *BasicClient) retry(b []byte, backoff time.Duration) {
method Batch (line 276) | func (c *BasicClient) Batch(ps <-chan Point, r chan<- response) error {
method send (line 365) | func (c *BasicClient) send(b []byte) (response, error) {
method BasicWriteHandler (line 612) | func (b *BasicClient) BasicWriteHandler(rs <-chan response, wt *Timer) {
function post (line 344) | func post(url string, datatype string, data io.Reader) (*http.Response, ...
type BasicQuery (line 384) | type BasicQuery struct
method QueryGenerate (line 391) | func (q *BasicQuery) QueryGenerate(now func() time.Time) (<-chan Query...
method SetTime (line 407) | func (q *BasicQuery) SetTime(t time.Time) {
type BasicQueryClient (line 413) | type BasicQueryClient struct
method Init (line 424) | func (b *BasicQueryClient) Init() error {
method Query (line 442) | func (b *BasicQueryClient) Query(cmd Query) (response, error) {
method Exec (line 467) | func (b *BasicQueryClient) Exec(qs <-chan Query, r chan<- response) er...
method BasicReadHandler (line 645) | func (b *BasicQueryClient) BasicReadHandler(r <-chan response, rt *Tim...
function resetDB (line 505) | func resetDB(c client.Client, database string) error {
type BasicProvisioner (line 525) | type BasicProvisioner struct
method Provision (line 533) | func (b *BasicProvisioner) Provision() error {
type BroadcastChannel (line 553) | type BroadcastChannel struct
method Register (line 564) | func (b *BroadcastChannel) Register(fn responseHandler) {
method Broadcast (line 576) | func (b *BroadcastChannel) Broadcast(r response) {
method Close (line 589) | func (b *BroadcastChannel) Close() {
method Handle (line 598) | func (b *BroadcastChannel) Handle(rs <-chan response, t *Timer) {
function NewBroadcastChannel (line 559) | func NewBroadcastChannel() *BroadcastChannel {
method HTTPHandler (line 661) | func (o *outputConfig) HTTPHandler(method string) func(r <-chan response...
FILE: vendor/github.com/influxdata/influxdb/stress/config.go
type Config (line 12) | type Config struct
type Provision (line 20) | type Provision struct
type Write (line 26) | type Write struct
type PointGenerators (line 33) | type PointGenerators struct
type InfluxClients (line 39) | type InfluxClients struct
type Read (line 45) | type Read struct
type QueryGenerators (line 52) | type QueryGenerators struct
type QueryClients (line 58) | type QueryClients struct
function NewConfig (line 63) | func NewConfig(s string) (*Config, error) {
function DecodeFile (line 78) | func DecodeFile(s string) (*Config, error) {
function DecodeConfig (line 91) | func DecodeConfig(s string) (*Config, error) {
type outputConfig (line 102) | type outputConfig struct
method SetParams (line 109) | func (t *outputConfig) SetParams(addr, db, rp string) {
method String (line 131) | func (t *outputConfig) String() string {
method Set (line 139) | func (t *outputConfig) Set(value string) error {
function NewOutputConfig (line 115) | func NewOutputConfig() *outputConfig {
FILE: vendor/github.com/influxdata/influxdb/stress/run.go
type Point (line 13) | type Point interface
type KeyValue (line 26) | type KeyValue struct
type Tag (line 32) | type Tag
type Field (line 35) | type Field
type Tags (line 38) | type Tags
method tagset (line 44) | func (t Tags) tagset() []byte {
type Fields (line 41) | type Fields
method fieldset (line 57) | func (f Fields) fieldset() []byte {
type StdPoint (line 70) | type StdPoint struct
method Line (line 79) | func (p StdPoint) Line() []byte {
method Graphite (line 96) | func (p StdPoint) Graphite() []byte {
method OpenJSON (line 107) | func (p StdPoint) OpenJSON() []byte {
method OpenTelnet (line 134) | func (p StdPoint) OpenTelnet() []byte {
type response (line 145) | type response struct
method Success (line 153) | func (r response) Success() bool {
type WriteResponse (line 159) | type WriteResponse
type QueryResponse (line 162) | type QueryResponse struct
type PointGenerator (line 172) | type PointGenerator interface
type InfluxClient (line 178) | type InfluxClient interface
type Writer (line 185) | type Writer struct
function NewWriter (line 191) | func NewWriter(p PointGenerator, i InfluxClient) Writer {
type Query (line 205) | type Query
type QueryGenerator (line 209) | type QueryGenerator interface
type QueryClient (line 216) | type QueryClient interface
type Querier (line 222) | type Querier struct
function NewQuerier (line 228) | func NewQuerier(q QueryGenerator, c QueryClient) Querier {
type Provisioner (line 243) | type Provisioner interface
type StressTest (line 253) | type StressTest struct
method Start (line 263) | func (s *StressTest) Start(wHandle responseHandler, rHandle responseHa...
type responseHandler (line 260) | type responseHandler
function NewStressTest (line 327) | func NewStressTest(p Provisioner, w Writer, r Querier) StressTest {
FILE: vendor/github.com/influxdata/influxdb/stress/stress_test.go
function TestTimer_StartTimer (line 19) | func TestTimer_StartTimer(t *testing.T) {
function TestNewTimer (line 29) | func TestNewTimer(t *testing.T) {
function TestTimer_StopTimer (line 42) | func TestTimer_StopTimer(t *testing.T) {
function TestTimer_Elapsed (line 52) | func TestTimer_Elapsed(t *testing.T) {
function Test_typeArr (line 66) | func Test_typeArr(t *testing.T) {
function Test_typeArrBadTypes (line 97) | func Test_typeArrBadTypes(t *testing.T) {
function TestPnt_Line (line 115) | func TestPnt_Line(t *testing.T) {
function TestAbstractTags_Template (line 126) | func TestAbstractTags_Template(t *testing.T) {
function TestAbstractFields_TemplateOneField (line 146) | func TestAbstractFields_TemplateOneField(t *testing.T) {
function TestAbstractFields_TemplateManyFields (line 163) | func TestAbstractFields_TemplateManyFields(t *testing.T) {
function TestBasicPointGenerator_Template (line 222) | func TestBasicPointGenerator_Template(t *testing.T) {
function TestBasicPointGenerator_Generate (line 243) | func TestBasicPointGenerator_Generate(t *testing.T) {
function Test_post (line 267) | func Test_post(t *testing.T) {
function TestBasicClient_send (line 300) | func TestBasicClient_send(t *testing.T) {
function TestBasicClient_Batch (line 324) | func TestBasicClient_Batch(t *testing.T) {
function TestBasicQuery_QueryGenerate (line 369) | func TestBasicQuery_QueryGenerate(t *testing.T) {
function TestBasicQueryClient_Query (line 389) | func TestBasicQueryClient_Query(t *testing.T) {
function Test_NewConfigWithFile (line 424) | func Test_NewConfigWithFile(t *testing.T) {
function Test_NewConfigWithoutFile (line 511) | func Test_NewConfigWithoutFile(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/stress/stress_test_server/server.go
function Query (line 24) | func Query(w http.ResponseWriter, req *http.Request) {
function Count (line 29) | func Count(w http.ResponseWriter, req *http.Request) {
function Write (line 37) | func Write(w http.ResponseWriter, req *http.Request) {
function init (line 57) | func init() {
function main (line 63) | func main() {
FILE: vendor/github.com/influxdata/influxdb/stress/template.go
function BasicStress (line 62) | func BasicStress() (*Config, error) {
FILE: vendor/github.com/influxdata/influxdb/stress/util.go
type Timer (line 8) | type Timer struct
method Start (line 14) | func (t *Timer) Start() time.Time {
method End (line 19) | func (t *Timer) End() time.Time {
method StartTimer (line 24) | func (t *Timer) StartTimer() {
method StopTimer (line 29) | func (t *Timer) StopTimer() {
method Elapsed (line 35) | func (t *Timer) Elapsed() time.Duration {
function NewTimer (line 41) | func NewTimer() *Timer {
type ResponseTime (line 49) | type ResponseTime struct
function NewResponseTime (line 56) | func NewResponseTime(v int) ResponseTime {
type ResponseTimes (line 62) | type ResponseTimes
method Len (line 66) | func (rs ResponseTimes) Len() int {
method Less (line 72) | func (rs ResponseTimes) Less(i, j int) bool {
method Swap (line 78) | func (rs ResponseTimes) Swap(i, j int) {
type ConcurrencyLimiter (line 87) | type ConcurrencyLimiter struct
method Increment (line 109) | func (c *ConcurrencyLimiter) Increment() {
method Decrement (line 116) | func (c *ConcurrencyLimiter) Decrement() {
method handleLimits (line 122) | func (c *ConcurrencyLimiter) handleLimits() {
function NewConcurrencyLimiter (line 96) | func NewConcurrencyLimiter(max int) *ConcurrencyLimiter {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/main.go
function RunStress (line 14) | func RunStress(file string) {
function blankResponse (line 43) | func blankResponse() stressClient.Response {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/exec.go
type ExecStatement (line 11) | type ExecStatement struct
method SetID (line 19) | func (i *ExecStatement) SetID(s string) {
method Run (line 24) | func (i *ExecStatement) Run(s *stressClient.StressTest) {
method Report (line 30) | func (i *ExecStatement) Report(s *stressClient.StressTest) string {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/exec_test.go
function TestExecSetID (line 9) | func TestExecSetID(t *testing.T) {
function TestExecRun (line 18) | func TestExecRun(t *testing.T) {
function TestExecReport (line 27) | func TestExecReport(t *testing.T) {
function newTestExec (line 36) | func newTestExec() *ExecStatement {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/function.go
type Function (line 14) | type Function struct
method NewStringer (line 22) | func (f *Function) NewStringer(series int) Stringer {
type Stringers (line 48) | type Stringers
method Eval (line 51) | func (s Stringers) Eval(time func() int64) []interface{} {
type Stringer (line 64) | type Stringer
function randStr (line 66) | func randStr(n int) func() string {
function NewStrFunc (line 77) | func NewStrFunc(fn string, arg int) Stringer {
function randFloat (line 86) | func randFloat(n int) func() string {
function incFloat (line 92) | func incFloat(n int) func() string {
function NewFloatFunc (line 102) | func NewFloatFunc(fn string, arg int) Stringer {
function randInt (line 113) | func randInt(n int) Stringer {
function incInt (line 119) | func incInt(n int) Stringer {
function NewIntFunc (line 129) | func NewIntFunc(fn string, arg int) Stringer {
function nTimes (line 142) | func nTimes(n int, fn Stringer) Stringer {
function cycle (line 157) | func cycle(n int, fn Stringer) Stringer {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/function_test.go
function TestNewStrRandStringer (line 7) | func TestNewStrRandStringer(t *testing.T) {
function TestNewIntIncStringer (line 16) | func TestNewIntIncStringer(t *testing.T) {
function TestNewIntRandStringer (line 25) | func TestNewIntRandStringer(t *testing.T) {
function TestNewFloatIncStringer (line 34) | func TestNewFloatIncStringer(t *testing.T) {
function TestNewFloatRandStringer (line 42) | func TestNewFloatRandStringer(t *testing.T) {
function TestStringersEval (line 51) | func TestStringersEval(t *testing.T) {
function spoofTime (line 96) | func spoofTime() int64 {
function newStrRandFunction (line 100) | func newStrRandFunction() *Function {
function newIntIncFunction (line 109) | func newIntIncFunction() *Function {
function newIntRandFunction (line 118) | func newIntRandFunction() *Function {
function newFloatIncFunction (line 127) | func newFloatIncFunction() *Function {
function newFloatRandFunction (line 136) | func newFloatRandFunction() *Function {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/go.go
type GoStatement (line 11) | type GoStatement struct
method SetID (line 18) | func (i *GoStatement) SetID(s string) {
method Run (line 23) | func (i *GoStatement) Run(s *stressClient.StressTest) {
method Report (line 38) | func (i *GoStatement) Report(s *stressClient.StressTest) string {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/go_test.go
function TestGoSetID (line 9) | func TestGoSetID(t *testing.T) {
function TestGoRun (line 18) | func TestGoRun(t *testing.T) {
function TestGoReport (line 27) | func TestGoReport(t *testing.T) {
function newTestGo (line 36) | func newTestGo() *GoStatement {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/influxql.go
type InfluxqlStatement (line 11) | type InfluxqlStatement struct
method tags (line 17) | func (i *InfluxqlStatement) tags() map[string]string {
method SetID (line 23) | func (i *InfluxqlStatement) SetID(s string) {
method Run (line 28) | func (i *InfluxqlStatement) Run(s *stressClient.StressTest) {
method Report (line 48) | func (i *InfluxqlStatement) Report(s *stressClient.StressTest) (out st...
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/influxql_test.go
function TestInfluxQlSetID (line 9) | func TestInfluxQlSetID(t *testing.T) {
function TestInfluxQlRun (line 18) | func TestInfluxQlRun(t *testing.T) {
function newTestInfluxQl (line 38) | func newTestInfluxQl() *InfluxqlStatement {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/insert.go
type InsertStatement (line 16) | type InsertStatement struct
method tags (line 53) | func (i *InsertStatement) tags() map[string]string {
method SetID (line 63) | func (i *InsertStatement) SetID(s string) {
method SetVars (line 68) | func (i *InsertStatement) SetVars(s *stressClient.StressTest) chan<- s...
method Run (line 95) | func (i *InsertStatement) Run(s *stressClient.StressTest) {
method Report (line 179) | func (i *InsertStatement) Report(s *stressClient.StressTest) string {
method numFields (line 206) | func (i *InsertStatement) numFields() string {
function fmtInt (line 212) | func fmtInt(i int) string {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/insert_test.go
function TestInsertSetID (line 10) | func TestInsertSetID(t *testing.T) {
function TestInsertRun (line 19) | func TestInsertRun(t *testing.T) {
function newTestInsert (line 40) | func newTestInsert() *InsertStatement {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/query.go
type QueryStatement (line 13) | type QueryStatement struct
method tags (line 32) | func (i *QueryStatement) tags() map[string]string {
method SetID (line 38) | func (i *QueryStatement) SetID(s string) {
method Run (line 43) | func (i *QueryStatement) Run(s *stressClient.StressTest) {
method Report (line 103) | func (i *QueryStatement) Report(s *stressClient.StressTest) string {
function getRandomTagPair (line 128) | func getRandomTagPair(m models.Tags) string {
function getRandomFieldKey (line 136) | func getRandomFieldKey(m map[string]interface{}) string {
function setMapValues (line 144) | func setMapValues(m map[string]interface{}, p models.Point) {
function setArgs (line 155) | func setArgs(m map[string]interface{}, args []string) []interface{} {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/query_test.go
function TestQuerySetID (line 9) | func TestQuerySetID(t *testing.T) {
function TestQueryRun (line 18) | func TestQueryRun(t *testing.T) {
function newTestQuery (line 33) | func newTestQuery() *QueryStatement {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/report.go
type insertReport (line 18) | type insertReport struct
method String (line 33) | func (ir *insertReport) String() string {
method Point (line 55) | func (ir *insertReport) Point() *influx.Point {
type queryReport (line 67) | type queryReport struct
method String (line 81) | func (qr *queryReport) String() string {
method Point (line 99) | func (qr *queryReport) Point() *influx.Point {
type influxQlReport (line 111) | type influxQlReport struct
method String (line 121) | func (iqlr *influxQlReport) String() string {
method Point (line 134) | func (iqlr *influxQlReport) Point() *influx.Point {
function getColumnIndex (line 146) | func getColumnIndex(col string, columns []string) int {
function numberBytes (line 157) | func numberBytes(columns []string, values [][]interface{}) int {
function countSuccesses (line 171) | func countSuccesses(columns []string, values [][]interface{}) (out int) {
function countRetries (line 186) | func countRetries(columns []string, values [][]interface{}) (out int) {
function responseTimes (line 201) | func responseTimes(columns []string, values [][]interface{}) (rs Respons...
function percentile (line 215) | func percentile(rs ResponseTimes) time.Duration {
function avgDuration (line 221) | func avgDuration(rs ResponseTimes) (out time.Duration) {
function stddevDuration (line 229) | func stddevDuration(rs ResponseTimes) (out time.Duration) {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/report_test.go
function TestInsertReportString (line 11) | func TestInsertReportString(t *testing.T) {
function TestInsertReportPoint (line 36) | func TestInsertReportPoint(t *testing.T) {
function TestQueryReportString (line 45) | func TestQueryReportString(t *testing.T) {
function TestQueryReportPoint (line 66) | func TestQueryReportPoint(t *testing.T) {
function TestInfluxQLReportString (line 75) | func TestInfluxQLReportString(t *testing.T) {
function TestInfluxQLReportPoint (line 84) | func TestInfluxQLReportPoint(t *testing.T) {
function newTestInsertReport (line 93) | func newTestInsertReport() *insertReport {
function newTestQueryReport (line 106) | func newTestQueryReport() *queryReport {
function newTestInfluxQLReport (line 118) | func newTestInfluxQLReport() *influxQlReport {
function TestGetColumnIndex (line 126) | func TestGetColumnIndex(t *testing.T) {
function TestNumberBytes (line 136) | func TestNumberBytes(t *testing.T) {
function TestCountSuccesses (line 146) | func TestCountSuccesses(t *testing.T) {
function TestCountRetries (line 156) | func TestCountRetries(t *testing.T) {
function TestResponseTimes (line 166) | func TestResponseTimes(t *testing.T) {
function TestPercentile (line 176) | func TestPercentile(t *testing.T) {
function TestAvgDuration (line 185) | func TestAvgDuration(t *testing.T) {
function TestStddevDuration (line 194) | func TestStddevDuration(t *testing.T) {
function createTestResponseTimes (line 203) | func createTestResponseTimes() ResponseTimes {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/response_time.go
type ResponseTime (line 9) | type ResponseTime struct
function NewResponseTime (line 16) | func NewResponseTime(v int) ResponseTime {
type ResponseTimes (line 22) | type ResponseTimes
method Len (line 26) | func (rs ResponseTimes) Len() int {
method Less (line 32) | func (rs ResponseTimes) Less(i, j int) bool {
method Swap (line 38) | func (rs ResponseTimes) Swap(i, j int) {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/response_time_test.go
function TestNewResponseTime (line 7) | func TestNewResponseTime(t *testing.T) {
function newResponseTimes (line 15) | func newResponseTimes() ResponseTimes {
function TestResponseTimeLen (line 22) | func TestResponseTimeLen(t *testing.T) {
function TestResponseTimeLess (line 29) | func TestResponseTimeLess(t *testing.T) {
function TestResponseTimeSwap (line 37) | func TestResponseTimeSwap(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/set.go
type SetStatement (line 11) | type SetStatement struct
method SetID (line 21) | func (i *SetStatement) SetID(s string) {
method Run (line 26) | func (i *SetStatement) Run(s *stressClient.StressTest) {
method Report (line 57) | func (i *SetStatement) Report(s *stressClient.StressTest) string {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/set_test.go
function TestSetSetID (line 10) | func TestSetSetID(t *testing.T) {
function TestSetRun (line 19) | func TestSetRun(t *testing.T) {
function testSetRunUtl (line 38) | func testSetRunUtl(t *testing.T, property string, value string) {
function TestSetReport (line 75) | func TestSetReport(t *testing.T) {
function newTestSet (line 85) | func newTestSet(toSet, value string) *SetStatement {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/statement.go
type Statement (line 12) | type Statement interface
function parseInt (line 18) | func parseInt(s string) int {
function parseFloat (line 26) | func parseFloat(s string) int {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/template.go
type Template (line 4) | type Template struct
method numSeries (line 26) | func (t *Template) numSeries() int {
method NewTagFunc (line 36) | func (t *Template) NewTagFunc() Stringer {
type Templates (line 10) | type Templates
method Init (line 13) | func (t Templates) Init(seriesCount int) Stringers {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/template_test.go
function TestNewTagFunc (line 7) | func TestNewTagFunc(t *testing.T) {
function TestNumSeries (line 23) | func TestNumSeries(t *testing.T) {
function TestTemplatesInit (line 39) | func TestTemplatesInit(t *testing.T) {
function newTestTemplates (line 55) | func newTestTemplates() Templates {
function newTestTagsTemplate (line 62) | func newTestTagsTemplate() *Template {
function newTestFunctionTemplate (line 68) | func newTestFunctionTemplate() *Template {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/timestamp.go
type Timestamp (line 9) | type Timestamp struct
method Time (line 16) | func (t *Timestamp) Time(startDate string, series int, precision strin...
function nextTime (line 33) | func nextTime(ti time.Time, step time.Duration, series int, precision st...
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/timestamp_test.go
function TestTimestampTime (line 8) | func TestTimestampTime(t *testing.T) {
function newTestTimestamp (line 24) | func newTestTimestamp() *Timestamp {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/wait.go
type WaitStatement (line 11) | type WaitStatement struct
method SetID (line 18) | func (w *WaitStatement) SetID(s string) {
method Run (line 23) | func (w *WaitStatement) Run(s *stressClient.StressTest) {
method Report (line 30) | func (w *WaitStatement) Report(s *stressClient.StressTest) string {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/statement/wait_test.go
function TestWaitSetID (line 10) | func TestWaitSetID(t *testing.T) {
function TestWaitRun (line 19) | func TestWaitRun(t *testing.T) {
function TestWaitReport (line 28) | func TestWaitReport(t *testing.T) {
function newTestWait (line 37) | func newTestWait() *WaitStatement {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/commune.go
type commune (line 12) | type commune struct
method point (line 22) | func (c *commune) point(precision string) models.Point {
function newCommune (line 18) | func newCommune(n int) *commune {
method SetCommune (line 41) | func (st *StressTest) SetCommune(name string) chan<- string {
method GetPoint (line 49) | func (st *StressTest) GetPoint(name, precision string) models.Point {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/commune_test.go
function TestCommunePoint (line 7) | func TestCommunePoint(t *testing.T) {
function TestSetCommune (line 39) | func TestSetCommune(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/directive.go
type Directive (line 5) | type Directive struct
function NewDirective (line 12) | func NewDirective(property string, value string, tracer *Tracer) Directi...
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/directive_test.go
function TestNewDirective (line 7) | func TestNewDirective(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/package.go
type Package (line 5) | type Package struct
function NewPackage (line 13) | func NewPackage(t Type, body []byte, statementID string, tracer *Tracer)...
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/package_test.go
function TestNewPackage (line 7) | func TestNewPackage(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/reporting.go
method tags (line 15) | func (sc *stressClient) tags(statementID string) map[string]string {
method tags (line 30) | func (st *StressTest) tags() map[string]string {
method writePoint (line 39) | func (sc *stressClient) writePoint(retries int, statementID string, stat...
method queryPoint (line 59) | func (sc *stressClient) queryPoint(statementID string, body []byte, stat...
function sumTags (line 79) | func sumTags(tags1, tags2 map[string]string) map[string]string {
function fmtInt (line 93) | func fmtInt(i int) string {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/reporting_test.go
function TestNewStressClientTags (line 8) | func TestNewStressClientTags(t *testing.T) {
function TestNewStressTestTags (line 33) | func TestNewStressTestTags(t *testing.T) {
function TestWritePoint (line 48) | func TestWritePoint(t *testing.T) {
function TestQueryPoint (line 75) | func TestQueryPoint(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/response.go
type Response (line 12) | type Response struct
method AddTags (line 26) | func (resp Response) AddTags(newTags map[string]string) (*influx.Point...
function NewResponse (line 18) | func NewResponse(pt *influx.Point, tr *Tracer) Response {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/response_test.go
function TestNewResponse (line 7) | func TestNewResponse(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/stressTest.go
function NewStressTest (line 12) | func NewStressTest() *StressTest {
function NewTestStressTest (line 47) | func NewTestStressTest() (*StressTest, chan Package, chan Directive) {
type StressTest (line 69) | type StressTest struct
method SendPackage (line 89) | func (st *StressTest) SendPackage(p Package) {
method SendDirective (line 94) | func (st *StressTest) SendDirective(d Directive) {
method resultsListen (line 99) | func (st *StressTest) resultsListen() {
method NewResultsPointBatch (line 123) | func (st *StressTest) NewResultsPointBatch() influx.BatchPoints {
method batcher (line 132) | func (st *StressTest) batcher(pt *influx.Point, bp influx.BatchPoints)...
method createDatabase (line 146) | func (st *StressTest) createDatabase(db string) {
method GetStatementResults (line 158) | func (st *StressTest) GetStatementResults(sID, t string) (res []influx...
method queryTestResults (line 164) | func (st *StressTest) queryTestResults(qry string) (res []influx.Resul...
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/stressTest_test.go
function NewBlankTestPoint (line 10) | func NewBlankTestPoint() *influx.Point {
function TestStressTestBatcher (line 20) | func TestStressTestBatcher(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/stress_client.go
type Type (line 9) | type Type
constant Write (line 13) | Write Type = iota
constant Query (line 14) | Query
function startStressClient (line 17) | func startStressClient(packageCh <-chan Package, directiveCh <-chan Dire...
type stressClient (line 46) | type stressClient struct
method listen (line 106) | func (sc *stressClient) listen() {
method directiveListen (line 129) | func (sc *stressClient) directiveListen() {
function newTestStressClient (line 81) | func newTestStressClient(url string) (*stressClient, chan Directive, cha...
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/stress_client_query.go
method spinOffQueryPackage (line 12) | func (sc *stressClient) spinOffQueryPackage(p Package, serv int) {
method prepareQuerySend (line 24) | func (sc *stressClient) prepareQuerySend(p Package, serv int) {
method makeGet (line 43) | func (sc *stressClient) makeGet(addr, statementID string, tr *Tracer) {
function success (line 71) | func success(r *http.Response) bool {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/stress_client_write.go
method spinOffWritePackage (line 17) | func (sc *stressClient) spinOffWritePackage(p Package, serv int) {
method retry (line 28) | func (sc *stressClient) retry(p Package, backoff time.Duration, serv int) {
method prepareWrite (line 75) | func (sc *stressClient) prepareWrite(points []byte, serv int) (*http.Res...
function makePost (line 95) | func makePost(url string, points io.Reader) (*http.Response, error) {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/tracer.go
type Tracer (line 8) | type Tracer struct
function NewTracer (line 15) | func NewTracer(tags map[string]string) *Tracer {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/tracer_test.go
function TestNewTracer (line 7) | func TestNewTracer(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stress_client/util.go
type ConcurrencyLimiter (line 17) | type ConcurrencyLimiter struct
method Increment (line 41) | func (c *ConcurrencyLimiter) Increment() {
method Decrement (line 48) | func (c *ConcurrencyLimiter) Decrement() {
method NewMax (line 53) | func (c *ConcurrencyLimiter) NewMax(i int) {
method handleLimits (line 61) | func (c *ConcurrencyLimiter) handleLimits() {
function NewConcurrencyLimiter (line 28) | func NewConcurrencyLimiter(max int) *ConcurrencyLimiter {
function parseInt (line 76) | func parseInt(s string) int {
function randStr (line 85) | func randStr(n int) string {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stressql/parser.go
type Token (line 17) | type Token
constant ILLEGAL (line 21) | ILLEGAL Token = iota
constant EOF (line 22) | EOF
constant STATEMENT (line 23) | STATEMENT
constant BREAK (line 24) | BREAK
function check (line 29) | func check(e error) {
function isNewline (line 35) | func isNewline(r rune) bool {
type Scanner (line 40) | type Scanner struct
method read (line 49) | func (s *Scanner) read() rune {
method unread (line 57) | func (s *Scanner) unread() { _ = s.r.UnreadRune() }
method peek (line 59) | func (s *Scanner) peek() rune {
method Scan (line 66) | func (s *Scanner) Scan() (tok Token, lit string) {
method scanNewlines (line 82) | func (s *Scanner) scanNewlines() (tok Token, lit string) {
method scanStatements (line 100) | func (s *Scanner) scanStatements() (tok Token, lit string) {
function NewScanner (line 45) | func NewScanner(r io.Reader) *Scanner {
function ParseStatements (line 122) | func ParseStatements(file string) ([]statement.Statement, error) {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stressql/parser_test.go
function TestParseStatements (line 6) | func TestParseStatements(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stressql/statement/parser.go
type Token (line 18) | type Token
constant ILLEGAL (line 22) | ILLEGAL Token = iota
constant EOF (line 23) | EOF
constant WS (line 25) | WS
constant literalBeg (line 27) | literalBeg
constant IDENT (line 29) | IDENT
constant NUMBER (line 30) | NUMBER
constant DURATIONVAL (line 31) | DURATIONVAL
constant STRING (line 32) | STRING
constant BADSTRING (line 33) | BADSTRING
constant TEMPLATEVAR (line 34) | TEMPLATEVAR
constant literalEnd (line 35) | literalEnd
constant COMMA (line 37) | COMMA
constant LPAREN (line 38) | LPAREN
constant RPAREN (line 39) | RPAREN
constant LBRACKET (line 40) | LBRACKET
constant RBRACKET (line 41) | RBRACKET
constant PIPE (line 42) | PIPE
constant PERIOD (line 43) | PERIOD
constant keywordBeg (line 45) | keywordBeg
constant SET (line 46) | SET
constant USE (line 47) | USE
constant QUERY (line 48) | QUERY
constant INSERT (line 49) | INSERT
constant GO (line 50) | GO
constant DO (line 51) | DO
constant WAIT (line 52) | WAIT
constant STR (line 53) | STR
constant INT (line 54) | INT
constant FLOAT (line 55) | FLOAT
constant EXEC (line 56) | EXEC
constant keywordEnd (line 57) | keywordEnd
function isWhitespace (line 62) | func isWhitespace(ch rune) bool { return ch == ' ' || ch == '\t' || ch =...
function isDigit (line 64) | func isDigit(r rune) bool {
function isLetter (line 68) | func isLetter(ch rune) bool {
type Scanner (line 73) | type Scanner struct
method read (line 82) | func (s *Scanner) read() rune {
method unread (line 90) | func (s *Scanner) unread() { _ = s.r.UnreadRune() }
method Scan (line 93) | func (s *Scanner) Scan() (tok Token, lit string) {
method scanWhitespace (line 135) | func (s *Scanner) scanWhitespace() (tok Token, lit string) {
method scanIdent (line 153) | func (s *Scanner) scanIdent() (tok Token, lit string) {
method scanTemplateVar (line 196) | func (s *Scanner) scanTemplateVar() (tok Token, lit string) {
method scanNumber (line 204) | func (s *Scanner) scanNumber() (tok Token, lit string) {
function NewScanner (line 78) | func NewScanner(r io.Reader) *Scanner {
type Parser (line 230) | type Parser struct
method Parse (line 245) | func (p *Parser) Parse() (statement.Statement, error) {
method ParseQueryStatement (line 273) | func (p *Parser) ParseQueryStatement() (*statement.QueryStatement, err...
method ParseInsertStatement (line 317) | func (p *Parser) ParseInsertStatement() (*statement.InsertStatement, e...
method ParseTemplate (line 414) | func (p *Parser) ParseTemplate() (*statement.Template, error) {
method ParseExecStatement (line 452) | func (p *Parser) ParseExecStatement() (*statement.ExecStatement, error) {
method ParseSetStatement (line 475) | func (p *Parser) ParseSetStatement() (*statement.SetStatement, error) {
method ParseWaitStatement (line 512) | func (p *Parser) ParseWaitStatement() (*statement.WaitStatement, error) {
method ParseGoStatement (line 526) | func (p *Parser) ParseGoStatement() (*statement.GoStatement, error) {
method ParseFunction (line 562) | func (p *Parser) ParseFunction() (*statement.Function, error) {
method ParseTimestamp (line 614) | func (p *Parser) ParseTimestamp() (*statement.Timestamp, error) {
method scan (line 649) | func (p *Parser) scan() (tok Token, lit string) {
method scanIgnoreWhitespace (line 666) | func (p *Parser) scanIgnoreWhitespace() (tok Token, lit string) {
method unscan (line 675) | func (p *Parser) unscan() { p.buf.n = 1 }
function NewParser (line 240) | func NewParser(r io.Reader) *Parser {
function RandStr (line 678) | func RandStr(n int) string {
FILE: vendor/github.com/influxdata/influxdb/stress/v2/stressql/statement/parser_test.go
function newParserFromString (line 13) | func newParserFromString(s string) *Parser {
function TestParser_ParseStatement (line 20) | func TestParser_ParseStatement(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/tcp/mux.go
constant DefaultTimeout (line 17) | DefaultTimeout = 30 * time.Second
type Mux (line 21) | type Mux struct
method Serve (line 67) | func (mux *Mux) Serve(ln net.Listener) error {
method handleConn (line 101) | func (mux *Mux) handleConn(conn net.Conn) {
method Listen (line 156) | func (mux *Mux) Listen(header byte) net.Listener {
method DefaultListener (line 180) | func (mux *Mux) DefaultListener() net.Listener {
type replayConn (line 37) | type replayConn struct
method Read (line 43) | func (rc *replayConn) Read(b []byte) (int, error) {
function NewMux (line 58) | func NewMux() *Mux {
type listener (line 192) | type listener struct
method Accept (line 198) | func (ln *listener) Accept() (c net.Conn, err error) {
method Close (line 207) | func (ln *listener) Close() error { return nil }
method Addr (line 210) | func (ln *listener) Addr() net.Addr {
function Dial (line 226) | func Dial(network, address string, header byte) (net.Conn, error) {
FILE: vendor/github.com/influxdata/influxdb/tcp/mux_test.go
function TestMux (line 20) | func TestMux(t *testing.T) {
function TestMux_Listen_ErrAlreadyRegistered (line 145) | func TestMux_Listen_ErrAlreadyRegistered(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/tests/backup_restore_test.go
function TestServer_BackupAndRestore (line 15) | func TestServer_BackupAndRestore(t *testing.T) {
function freePort (line 105) | func freePort() string {
FILE: vendor/github.com/influxdata/influxdb/tests/server_bench_test.go
function BenchmarkServer_Query_Count_1 (line 12) | func BenchmarkServer_Query_Count_1(b *testing.B) { benchmarkServerQue...
function BenchmarkServer_Query_Count_1K (line 13) | func BenchmarkServer_Query_Count_1K(b *testing.B) { benchmarkServerQue...
function BenchmarkServer_Query_Count_100K (line 14) | func BenchmarkServer_Query_Count_100K(b *testing.B) { benchmarkServerQue...
function BenchmarkServer_Query_Count_1M (line 15) | func BenchmarkServer_Query_Count_1M(b *testing.B) { benchmarkServerQue...
function benchmarkServerQueryCount (line 17) | func benchmarkServerQueryCount(b *testing.B, pointN int) {
function BenchmarkServer_Query_Count_Where_500 (line 45) | func BenchmarkServer_Query_Count_Where_500(b *testing.B) {
function BenchmarkServer_Query_Count_Where_1K (line 48) | func BenchmarkServer_Query_Count_Where_1K(b *testing.B) {
function BenchmarkServer_Query_Count_Where_10K (line 51) | func BenchmarkServer_Query_Count_Where_10K(b *testing.B) {
function BenchmarkServer_Query_Count_Where_100K (line 54) | func BenchmarkServer_Query_Count_Where_100K(b *testing.B) {
function BenchmarkServer_Query_Count_Where_Regex_500 (line 58) | func BenchmarkServer_Query_Count_Where_Regex_500(b *testing.B) {
function BenchmarkServer_Query_Count_Where_Regex_1K (line 61) | func BenchmarkServer_Query_Count_Where_Regex_1K(b *testing.B) {
function BenchmarkServer_Query_Count_Where_Regex_10K (line 64) | func BenchmarkServer_Query_Count_Where_Regex_10K(b *testing.B) {
function BenchmarkServer_Query_Count_Where_Regex_100K (line 67) | func BenchmarkServer_Query_Count_Where_Regex_100K(b *testing.B) {
function benchmarkServerQueryCountWhere (line 71) | func benchmarkServerQueryCountWhere(b *testing.B, useRegex bool, pointN ...
function BenchmarkServer_ShowSeries_1 (line 107) | func BenchmarkServer_ShowSeries_1(b *testing.B) { benchmarkServerShow...
function BenchmarkServer_ShowSeries_1K (line 108) | func BenchmarkServer_ShowSeries_1K(b *testing.B) { benchmarkServerShow...
function BenchmarkServer_ShowSeries_100K (line 109) | func BenchmarkServer_ShowSeries_100K(b *testing.B) { benchmarkServerShow...
function BenchmarkServer_ShowSeries_1M (line 110) | func BenchmarkServer_ShowSeries_1M(b *testing.B) { benchmarkServerShow...
function benchmarkServerShowSeries (line 112) | func benchmarkServerShowSeries(b *testing.B, pointN int) {
FILE: vendor/github.com/influxdata/influxdb/tests/server_helpers.go
type Server (line 27) | type Server interface
type RemoteServer (line 48) | type RemoteServer struct
method URL (line 53) | func (s *RemoteServer) URL() string {
method Open (line 57) | func (s *RemoteServer) Open() error {
method Close (line 69) | func (s *RemoteServer) Close() {
method SetLogOutput (line 73) | func (s *RemoteServer) SetLogOutput(w io.Writer) {
method Closed (line 77) | func (s *RemoteServer) Closed() bool {
method CreateDatabase (line 81) | func (s *RemoteServer) CreateDatabase(db string) (*meta.DatabaseInfo, ...
method CreateDatabaseAndRetentionPolicy (line 91) | func (s *RemoteServer) CreateDatabaseAndRetentionPolicy(db string, rp ...
method CreateSubscription (line 109) | func (s *RemoteServer) CreateSubscription(database, rp, name, mode str...
method DropDatabase (line 125) | func (s *RemoteServer) DropDatabase(db string) error {
method Reset (line 136) | func (s *RemoteServer) Reset() error {
method WritePoints (line 157) | func (s *RemoteServer) WritePoints(database, retentionPolicy string, c...
function NewServer (line 162) | func NewServer(c *run.Config) Server {
function OpenServer (line 197) | func OpenServer(c *run.Config) Server {
function OpenServerWithVersion (line 207) | func OpenServerWithVersion(c *run.Config, version string) Server {
function OpenDefaultServer (line 236) | func OpenDefaultServer(c *run.Config) Server {
type LocalServer (line 245) | type LocalServer struct
method Close (line 254) | func (s *LocalServer) Close() {
method Closed (line 272) | func (s *LocalServer) Closed() bool {
method URL (line 279) | func (s *LocalServer) URL() string {
method CreateDatabase (line 290) | func (s *LocalServer) CreateDatabase(db string) (*meta.DatabaseInfo, e...
method CreateDatabaseAndRetentionPolicy (line 297) | func (s *LocalServer) CreateDatabaseAndRetentionPolicy(db string, rp *...
method CreateSubscription (line 308) | func (s *LocalServer) CreateSubscription(database, rp, name, mode stri...
method DropDatabase (line 314) | func (s *LocalServer) DropDatabase(db string) error {
method Reset (line 320) | func (s *LocalServer) Reset() error {
method WritePoints (line 331) | func (s *LocalServer) WritePoints(database, retentionPolicy string, co...
type client (line 338) | type client struct
method URL (line 342) | func (c *client) URL() string {
method Query (line 347) | func (s *client) Query(query string) (results string, err error) {
method MustQuery (line 352) | func (s *client) MustQuery(query string) string {
method QueryWithParams (line 361) | func (s *client) QueryWithParams(query string, values url.Values) (res...
method MustQueryWithParams (line 373) | func (s *client) MustQueryWithParams(query string, values url.Values) ...
method HTTPGet (line 382) | func (s *client) HTTPGet(url string) (results string, err error) {
method HTTPPost (line 402) | func (s *client) HTTPPost(url string, content []byte) (results string,...
method Write (line 440) | func (s *client) Write(db, rp, body string, params url.Values) (result...
method MustWrite (line 460) | func (s *client) MustWrite(db, rp, body string, params url.Values) str...
type WriteError (line 422) | type WriteError struct
method StatusCode (line 427) | func (wr WriteError) StatusCode() int {
method Body (line 431) | func (wr WriteError) Body() string {
method Error (line 435) | func (wr WriteError) Error() string {
function NewConfig (line 469) | func NewConfig() *run.Config {
function newRetentionPolicySpec (line 497) | func newRetentionPolicySpec(name string, rf int, duration time.Duration)...
function maxInt64 (line 501) | func maxInt64() string {
function now (line 506) | func now() time.Time {
function yesterday (line 510) | func yesterday() time.Time {
function mustParseTime (line 514) | func mustParseTime(layout, value string) time.Time {
function mustParseLocation (line 522) | func mustParseLocation(tzname string) *time.Location {
function MustReadAll (line 533) | func MustReadAll(r io.Reader) []byte {
function MustTempFile (line 542) | func MustTempFile() string {
function RemoteEnabled (line 552) | func RemoteEnabled() bool {
function expectPattern (line 556) | func expectPattern(exp, act string) bool {
type Query (line 564) | type Query struct
method Execute (line 576) | func (q *Query) Execute(s Server) (err error) {
method success (line 585) | func (q *Query) success() bool {
method Error (line 592) | func (q *Query) Error(err error) string {
method failureMessage (line 596) | func (q *Query) failureMessage() string {
type Write (line 600) | type Write struct
method duplicate (line 606) | func (w *Write) duplicate() *Write {
type Writes (line 614) | type Writes
method duplicate (line 616) | func (a Writes) duplicate() Writes {
type Tests (line 624) | type Tests
type Test (line 626) | type Test struct
method duplicate (line 643) | func (t Test) duplicate() Test {
method addQueries (line 665) | func (t *Test) addQueries(q ...*Query) {
method database (line 669) | func (t *Test) database() string {
method retentionPolicy (line 676) | func (t *Test) retentionPolicy() string {
method init (line 683) | func (t *Test) init(s Server) error {
function NewTest (line 636) | func NewTest(db, rp string) Test {
function writeTestData (line 703) | func writeTestData(s Server, t *Test) error {
function configureLogging (line 725) | func configureLogging(s Server) {
FILE: vendor/github.com/influxdata/influxdb/tests/server_suite.go
function init (line 14) | func init() {
method load (line 528) | func (tests Tests) load(t *testing.T, key string) Test {
FILE: vendor/github.com/influxdata/influxdb/tests/server_test.go
function TestMain (line 21) | func TestMain(m *testing.M) {
function TestServer_HTTPResponseVersion (line 44) | func TestServer_HTTPResponseVersion(t *testing.T) {
function TestServer_DatabaseCommands (line 61) | func TestServer_DatabaseCommands(t *testing.T) {
function TestServer_Query_DropAndRecreateDatabase (line 81) | func TestServer_Query_DropAndRecreateDatabase(t *testing.T) {
function TestServer_Query_DropDatabaseIsolated (line 110) | func TestServer_Query_DropDatabaseIsolated(t *testing.T) {
function TestServer_Query_DeleteSeries (line 142) | func TestServer_Query_DeleteSeries(t *testing.T) {
function TestServer_Query_DropAndRecreateSeries (line 171) | func TestServer_Query_DropAndRecreateSeries(t *testing.T) {
function TestServer_Query_DropSeriesFromRegex (line 220) | func TestServer_Query_DropSeriesFromRegex(t *testing.T) {
function TestServer_RetentionPolicyCommands (line 250) | func TestServer_RetentionPolicyCommands(t *testing.T) {
function TestServer_DatabaseRetentionPolicyAutoCreate (line 282) | func TestServer_DatabaseRetentionPolicyAutoCreate(t *testing.T) {
function TestServer_ShowDatabases_NoAuth (line 302) | func TestServer_ShowDatabases_NoAuth(t *testing.T) {
function TestServer_ShowDatabases_WithAuth (line 340) | func TestServer_ShowDatabases_WithAuth(t *testing.T) {
function TestServer_UserCommands (line 412) | func TestServer_UserCommands(t *testing.T) {
function TestServer_Write_FieldTypeConflict (line 507) | func TestServer_Write_FieldTypeConflict(t *testing.T) {
function TestServer_Write_LineProtocol_Float (line 558) | func TestServer_Write_LineProtocol_Float(t *testing.T) {
function TestServer_Write_LineProtocol_Bool (line 583) | func TestServer_Write_LineProtocol_Bool(t *testing.T) {
function TestServer_Write_LineProtocol_String (line 608) | func TestServer_Write_LineProtocol_String(t *testing.T) {
function TestServer_Write_LineProtocol_Integer (line 633) | func TestServer_Write_LineProtocol_Integer(t *testing.T) {
function TestServer_Write_LineProtocol_Partial (line 659) | func TestServer_Write_LineProtocol_Partial(t *testing.T) {
function TestServer_Query_DefaultDBAndRP (line 691) | func TestServer_Query_DefaultDBAndRP(t *testing.T) {
function TestServer_Query_Multiple_Measurements (line 744) | func TestServer_Query_Multiple_Measurements(t *testing.T) {
function TestServer_Query_IdenticalTagValues (line 790) | func TestServer_Query_IdenticalTagValues(t *testing.T) {
function TestServer_Query_NoShards (line 841) | func TestServer_Query_NoShards(t *testing.T) {
function TestServer_Query_NonExistent (line 879) | func TestServer_Query_NonExistent(t *testing.T) {
function TestServer_Query_Math (line 922) | func TestServer_Query_Math(t *testing.T) {
function TestServer_Query_Count (line 1014) | func TestServer_Query_Count(t *testing.T) {
function TestServer_Query_MaxSelectSeriesN (line 1089) | func TestServer_Query_MaxSelectSeriesN(t *testing.T) {
function TestServer_Query_Now (line 1134) | func TestServer_Query_Now(t *testing.T) {
function TestServer_Query_EpochPrecision (line 1187) | func TestServer_Query_EpochPrecision(t *testing.T) {
function TestServer_Query_Tags (line 1256) | func TestServer_Query_Tags(t *testing.T) {
function TestServer_Query_Alias (line 1433) | func TestServer_Query_Alias(t *testing.T) {
function TestServer_Query_Common (line 1508) | func TestServer_Query_Common(t *testing.T) {
function TestServer_Query_SelectTwoPoints (line 1581) | func TestServer_Query_SelectTwoPoints(t *testing.T) {
function TestServer_Query_SelectTwoNegativePoints (line 1625) | func TestServer_Query_SelectTwoNegativePoints(t *testing.T) {
function TestServer_Query_SelectRelativeTime (line 1662) | func TestServer_Query_SelectRelativeTime(t *testing.T) {
function TestServer_Query_SelectRawDerivative (line 1707) | func TestServer_Query_SelectRawDerivative(t *testing.T) {
function TestServer_Query_SelectRawNonNegativeDerivative (line 1749) | func TestServer_Query_SelectRawNonNegativeDerivative(t *testing.T) {
function TestServer_Query_SelectGroupByTimeDerivative (line 1795) | func TestServer_Query_SelectGroupByTimeDerivative(t *testing.T) {
function TestServer_Query_SelectGroupByTimeDerivativeWithFill (line 1946) | func TestServer_Query_SelectGroupByTimeDerivativeWithFill(t *testing.T) {
function TestServer_Query_SelectGroupByTimeDifference (line 2180) | func TestServer_Query_SelectGroupByTimeDifference(t *testing.T) {
function TestServer_Query_SelectGroupByTimeDifferenceWithFill (line 2266) | func TestServer_Query_SelectGroupByTimeDifferenceWithFill(t *testing.T) {
function TestServer_Query_SelectGroupByTimeMovingAverage (line 2400) | func TestServer_Query_SelectGroupByTimeMovingAverage(t *testing.T) {
function TestServer_Query_SelectGroupByTimeMovingAverageWithFill (line 2488) | func TestServer_Query_SelectGroupByTimeMovingAverageWithFill(t *testing....
function TestServer_Query_SelectGroupByTimeCumulativeSum (line 2624) | func TestServer_Query_SelectGroupByTimeCumulativeSum(t *testing.T) {
function TestServer_Query_SelectGroupByTimeCumulativeSumWithFill (line 2710) | func TestServer_Query_SelectGroupByTimeCumulativeSumWithFill(t *testing....
function TestServer_Query_CumulativeCount (line 2843) | func TestServer_Query_CumulativeCount(t *testing.T) {
function TestServer_Query_SelectGroupByTime_MultipleAggregates (line 2885) | func TestServer_Query_SelectGroupByTime_MultipleAggregates(t *testing.T) {
function TestServer_Query_MathWithFill (line 2927) | func TestServer_Query_MathWithFill(t *testing.T) {
function TestServer_Query_MergeMany (line 2971) | func TestServer_Query_MergeMany(t *testing.T) {
function TestServer_Query_SLimitAndSOffset (line 3031) | func TestServer_Query_SLimitAndSOffset(t *testing.T) {
function TestServer_Query_Regex (line 3088) | func TestServer_Query_Regex(t *testing.T) {
function TestServer_Query_Aggregates_Int (line 3163) | func TestServer_Query_Aggregates_Int(t *testing.T) {
function TestServer_Query_Aggregates_IntMax (line 3203) | func TestServer_Query_Aggregates_IntMax(t *testing.T) {
function TestServer_Query_Aggregates_IntMany (line 3243) | func TestServer_Query_Aggregates_IntMany(t *testing.T) {
function TestServer_Query_Aggregates_IntMany_GroupBy (line 3389) | func TestServer_Query_Aggregates_IntMany_GroupBy(t *testing.T) {
function TestServer_Query_Aggregates_IntMany_OrderByDesc (line 3483) | func TestServer_Query_Aggregates_IntMany_OrderByDesc(t *testing.T) {
function TestServer_Query_Aggregates_IntOverlap (line 3529) | func TestServer_Query_Aggregates_IntOverlap(t *testing.T) {
function TestServer_Query_Aggregates_FloatSingle (line 3596) | func TestServer_Query_Aggregates_FloatSingle(t *testing.T) {
function TestServer_Query_Aggregates_FloatMany (line 3635) | func TestServer_Query_Aggregates_FloatMany(t *testing.T) {
function TestServer_Query_Aggregates_FloatOverlap (line 3775) | func TestServer_Query_Aggregates_FloatOverlap(t *testing.T) {
function TestServer_Query_Aggregates_GroupByOffset (line 3841) | func TestServer_Query_Aggregates_GroupByOffset(t *testing.T) {
function TestServer_Query_Aggregates_Load (line 3900) | func TestServer_Query_Aggregates_Load(t *testing.T) {
function TestServer_Query_Aggregates_CPU (line 3953) | func TestServer_Query_Aggregates_CPU(t *testing.T) {
function TestServer_Query_Aggregates_String (line 3993) | func TestServer_Query_Aggregates_String(t *testing.T) {
function TestServer_Query_Aggregates_Math (line 4070) | func TestServer_Query_Aggregates_Math(t *testing.T) {
function TestServer_Query_AggregateSelectors (line 4136) | func TestServer_Query_AggregateSelectors(t *testing.T) {
function TestServer_Query_ExactTimeRange (line 4465) | func TestServer_Query_ExactTimeRange(t *testing.T) {
function TestServer_Query_Selectors (line 4519) | func TestServer_Query_Selectors(t *testing.T) {
function TestServer_Query_TopBottomInt (line 4597) | func TestServer_Query_TopBottomInt(t *testing.T) {
function TestServer_Query_TopBottomWriteTags (line 4850) | func TestServer_Query_TopBottomWriteTags(t *testing.T) {
function TestServer_Query_Aggregates_IdenticalTime (line 4918) | func TestServer_Query_Aggregates_IdenticalTime(t *testing.T) {
function TestServer_Query_GroupByTimeCutoffs (line 4983) | func TestServer_Query_GroupByTimeCutoffs(t *testing.T) {
function TestServer_Query_MapType (line 5062) | func TestServer_Query_MapType(t *testing.T) {
function TestServer_Query_Subqueries (line 5137) | func TestServer_Query_Subqueries(t *testing.T) {
function TestServer_Query_SubqueryWithGroupBy (line 5298) | func TestServer_Query_SubqueryWithGroupBy(t *testing.T) {
function TestServer_Query_SubqueryMath (line 5369) | func TestServer_Query_SubqueryMath(t *testing.T) {
function TestServer_Query_PercentileDerivative (line 5415) | func TestServer_Query_PercentileDerivative(t *testing.T) {
function TestServer_Query_UnderscoreMeasurement (line 5463) | func TestServer_Query_UnderscoreMeasurement(t *testing.T) {
function TestServer_Write_Precision (line 5507) | func TestServer_Write_Precision(t *testing.T) {
function TestServer_Query_Wildcards (line 5621) | func TestServer_Query_Wildcards(t *testing.T) {
function TestServer_Query_WildcardExpansion (line 5736) | func TestServer_Query_WildcardExpansion(t *testing.T) {
function TestServer_Query_AcrossShardsAndFields (line 5813) | func TestServer_Query_AcrossShardsAndFields(t *testing.T) {
function TestServer_Query_OrderedAcrossShards (line 5884) | func TestServer_Query_OrderedAcrossShards(t *testing.T) {
function TestServer_Query_Where_Fields (line 5951) | func TestServer_Query_Where_Fields(t *testing.T) {
function TestServer_Query_Where_With_Tags (line 6170) | func TestServer_Query_Where_With_Tags(t *testing.T) {
function TestServer_Query_With_EmptyTags (line 6255) | func TestServer_Query_With_EmptyTags(t *testing.T) {
function TestServer_Query_LimitAndOffset (line 6355) | func TestServer_Query_LimitAndOffset(t *testing.T) {
function TestServer_Query_Fill (line 6469) | func TestServer_Query_Fill(t *testing.T) {
function TestServer_Query_TimeZone (line 6565) | func TestServer_Query_TimeZone(t *testing.T) {
function TestServer_Query_Chunk (line 6660) | func TestServer_Query_Chunk(t *testing.T) {
function TestServer_Query_DropAndRecreateMeasurement (line 6711) | func TestServer_Query_DropAndRecreateMeasurement(t *testing.T) {
function TestServer_Query_ShowQueries_Future (line 6871) | func TestServer_Query_ShowQueries_Future(t *testing.T) {
function TestServer_Query_ShowSeries (line 6940) | func TestServer_Query_ShowSeries(t *testing.T) {
function TestServer_Query_ShowStats (line 7039) | func TestServer_Query_ShowStats(t *testing.T) {
function TestServer_Query_ShowMeasurements (line 7080) | func TestServer_Query_ShowMeasurements(t *testing.T) {
function TestServer_Query_ShowTagKeys (line 7167) | func TestServer_Query_ShowTagKeys(t *testing.T) {
function TestServer_Query_ShowFieldKeys (line 7314) | func TestServer_Query_ShowFieldKeys(t *testing.T) {
function TestServer_ContinuousQuery (line 7377) | func TestServer_ContinuousQuery(t *testing.T) {
function TestServer_ContinuousQuery_Deadlock (line 7489) | func TestServer_ContinuousQuery_Deadlock(t *testing.T) {
function TestServer_Query_EvilIdentifiers (line 7567) | func TestServer_Query_EvilIdentifiers(t *testing.T) {
function TestServer_Query_OrderByTime (line 7608) | func TestServer_Query_OrderByTime(t *testing.T) {
function TestServer_Query_FieldWithMultiplePeriods (line 7686) | func TestServer_Query_FieldWithMultiplePeriods(t *testing.T) {
function TestServer_Query_FieldWithMultiplePeriodsMeasurementPrefixMatch (line 7737) | func TestServer_Query_FieldWithMultiplePeriodsMeasurementPrefixMatch(t *...
function TestServer_Query_IntoTarget (line 7788) | func TestServer_Query_IntoTarget(t *testing.T) {
function TestServer_Query_IntoTarget_Sparse (line 7844) | func TestServer_Query_IntoTarget_Sparse(t *testing.T) {
function TestServer_Query_DuplicateMeasurements (line 7901) | func TestServer_Query_DuplicateMeasurements(t *testing.T) {
function TestServer_Query_LargeTimestamp (line 7951) | func TestServer_Query_LargeTimestamp(t *testing.T) {
function TestServer_Query_DotProduct (line 8000) | func TestServer_Query_DotProduct(t *testing.T) {
function TestServer_ConcurrentPointsWriter_Subscriber (line 8049) | func TestServer_ConcurrentPointsWriter_Subscriber(t *testing.T) {
function TestServer_WhereTimeInclusive (line 8080) | func TestServer_WhereTimeInclusive(t *testing.T) {
function TestServer_Query_ImplicitEndTime (line 8186) | func TestServer_Query_ImplicitEndTime(t *testing.T) {
function TestServer_Query_Sample_Wildcard (line 8241) | func TestServer_Query_Sample_Wildcard(t *testing.T) {
function TestServer_Query_Sample_LimitOffset (line 8285) | func TestServer_Query_Sample_LimitOffset(t *testing.T) {
function TestServer_NestedAggregateWithMathPanics (line 8344) | func TestServer_NestedAggregateWithMathPanics(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/toml/toml.go
constant maxInt (line 11) | maxInt = int64(^uint(0) >> 1)
type Duration (line 14) | type Duration
method String (line 17) | func (d Duration) String() string {
method UnmarshalText (line 22) | func (d *Duration) UnmarshalText(text []byte) error {
method MarshalText (line 40) | func (d Duration) MarshalText() (text []byte, err error) {
type Size (line 46) | type Size
method UnmarshalText (line 49) | func (s *Size) UnmarshalText(text []byte) error {
FILE: vendor/github.com/influxdata/influxdb/toml/toml_test.go
function TestSize_UnmarshalText_MB (line 15) | func TestSize_UnmarshalText_MB(t *testing.T) {
function TestSize_UnmarshalText_GB (line 25) | func TestSize_UnmarshalText_GB(t *testing.T) {
function TestConfig_Encode (line 34) | func TestConfig_Encode(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/batcher.go
type PointBatcher (line 13) | type PointBatcher struct
method Start (line 52) | func (b *PointBatcher) Start() {
method Stop (line 114) | func (b *PointBatcher) Stop() {
method In (line 125) | func (b *PointBatcher) In() chan<- models.Point {
method Out (line 130) | func (b *PointBatcher) Out() <-chan []models.Point {
method Flush (line 136) | func (b *PointBatcher) Flush() {
method Stats (line 142) | func (b *PointBatcher) Stats() *PointBatcherStats {
function NewPointBatcher (line 31) | func NewPointBatcher(sz int, bp int, d time.Duration) *PointBatcher {
type PointBatcherStats (line 43) | type PointBatcherStats struct
FILE: vendor/github.com/influxdata/influxdb/tsdb/batcher_test.go
function TestBatch_Size (line 12) | func TestBatch_Size(t *testing.T) {
function TestBatch_SizeBuffered (line 35) | func TestBatch_SizeBuffered(t *testing.T) {
function TestBatch_Timeout (line 58) | func TestBatch_Timeout(t *testing.T) {
function TestBatch_Flush (line 81) | func TestBatch_Flush(t *testing.T) {
function TestBatch_MultipleBatches (line 103) | func TestBatch_MultipleBatches(t *testing.T) {
function checkPointBatcherStats (line 131) | func checkPointBatcherStats(t *testing.T, b *tsdb.PointBatcher, batchTot...
FILE: vendor/github.com/influxdata/influxdb/tsdb/config.go
constant DefaultEngine (line 14) | DefaultEngine = "tsm1"
constant DefaultIndex (line 17) | DefaultIndex = "inmem"
constant DefaultCacheMaxMemorySize (line 25) | DefaultCacheMaxMemorySize = 1024 * 1024 * 1024
constant DefaultCacheSnapshotMemorySize (line 29) | DefaultCacheSnapshotMemorySize = 25 * 1024 * 1024
constant DefaultCacheSnapshotWriteColdDuration (line 34) | DefaultCacheSnapshotWriteColdDuration = time.Duration(10 * time.Minute)
constant DefaultCompactFullWriteColdDuration (line 38) | DefaultCompactFullWriteColdDuration = time.Duration(4 * time.Hour)
constant DefaultMaxPointsPerBlock (line 42) | DefaultMaxPointsPerBlock = 1000
constant DefaultMaxSeriesPerDatabase (line 46) | DefaultMaxSeriesPerDatabase = 1000000
constant DefaultMaxValuesPerTag (line 49) | DefaultMaxValuesPerTag = 100000
constant DefaultMaxConcurrentCompactions (line 53) | DefaultMaxConcurrentCompactions = 0
type Config (line 57) | type Config struct
method Validate (line 122) | func (c *Config) Validate() error {
method Diagnostics (line 159) | func (c Config) Diagnostics() (*diagnostics.Diagnostics, error) {
function NewConfig (line 101) | func NewConfig() Config {
FILE: vendor/github.com/influxdata/influxdb/tsdb/config_test.go
function TestConfig_Parse (line 11) | func TestConfig_Parse(t *testing.T) {
function TestConfig_Validate_Error (line 38) | func TestConfig_Validate_Error(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/cursor.go
constant EOF (line 6) | EOF = influxql.ZeroTime
type Cursor (line 9) | type Cursor interface
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine.go
type Engine (line 30) | type Engine interface
type EngineFormat (line 85) | type EngineFormat
constant TSM1Format (line 89) | TSM1Format EngineFormat = 2
type NewEngineFunc (line 93) | type NewEngineFunc
function RegisterEngine (line 99) | func RegisterEngine(name string, fn NewEngineFunc) {
function RegisteredEngines (line 107) | func RegisteredEngines() []string {
function NewEngine (line 118) | func NewEngine(id uint64, i Index, database, path string, walPath string...
type EngineOptions (line 144) | type EngineOptions struct
function NewEngineOptions (line 155) | func NewEngineOptions() EngineOptions {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/bit_reader.go
type BitReader (line 6) | type BitReader struct
method Reset (line 23) | func (r *BitReader) Reset(data []byte) {
method CanReadBitFast (line 33) | func (r *BitReader) CanReadBitFast() bool { return r.buf.n > 1 }
method ReadBitFast (line 37) | func (r *BitReader) ReadBitFast() bool {
method ReadBit (line 45) | func (r *BitReader) ReadBit() (bool, error) {
method ReadBits (line 52) | func (r *BitReader) ReadBits(nbits uint) (uint64, error) {
method readBuf (line 105) | func (r *BitReader) readBuf() {
function NewBitReader (line 16) | func NewBitReader(data []byte) *BitReader {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/bit_reader_test.go
function TestBitStreamEOF (line 16) | func TestBitStreamEOF(t *testing.T) {
function TestBitStream (line 68) | func TestBitStream(t *testing.T) {
function TestByteStream (line 92) | func TestByteStream(t *testing.T) {
function TestBitReader_Quick (line 142) | func TestBitReader_Quick(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/bool.go
constant booleanUncompressed (line 16) | booleanUncompressed = 0
constant booleanCompressedBitPacked (line 19) | booleanCompressedBitPacked = 1
type BooleanEncoder (line 23) | type BooleanEncoder struct
method Reset (line 45) | func (e *BooleanEncoder) Reset() {
method Write (line 53) | func (e *BooleanEncoder) Write(b bool) {
method flush (line 72) | func (e *BooleanEncoder) flush() {
method Flush (line 88) | func (e *BooleanEncoder) Flush() {}
method Bytes (line 91) | func (e *BooleanEncoder) Bytes() ([]byte, error) {
function NewBooleanEncoder (line 38) | func NewBooleanEncoder(sz int) BooleanEncoder {
type BooleanDecoder (line 108) | type BooleanDecoder struct
method SetBytes (line 117) | func (e *BooleanDecoder) SetBytes(b []byte) {
method Next (line 144) | func (e *BooleanDecoder) Next() bool {
method Read (line 154) | func (e *BooleanDecoder) Read() bool {
method Error (line 172) | func (e *BooleanDecoder) Error() error {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/bool_test.go
function Test_BooleanEncoder_NoValues (line 11) | func Test_BooleanEncoder_NoValues(t *testing.T) {
function Test_BooleanEncoder_Single (line 25) | func Test_BooleanEncoder_Single(t *testing.T) {
function Test_BooleanEncoder_Multi_Compressed (line 45) | func Test_BooleanEncoder_Multi_Compressed(t *testing.T) {
function Test_BooleanEncoder_Quick (line 80) | func Test_BooleanEncoder_Quick(t *testing.T) {
function Test_BooleanDecoder_Corrupt (line 117) | func Test_BooleanDecoder_Corrupt(t *testing.T) {
function BenchmarkBooleanDecoder_2048 (line 134) | func BenchmarkBooleanDecoder_2048(b *testing.B) { benchmarkBooleanDecode...
function benchmarkBooleanDecoder (line 136) | func benchmarkBooleanDecoder(b *testing.B, size int) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/cache.go
constant ringShards (line 22) | ringShards = 4096
function ErrCacheMemorySizeLimitExceeded (line 31) | func ErrCacheMemorySizeLimitExceeded(n, limit uint64) error {
type entry (line 36) | type entry struct
method add (line 84) | func (e *entry) add(values []Value) error {
method deduplicate (line 118) | func (e *entry) deduplicate() {
method count (line 129) | func (e *entry) count() int {
method filter (line 137) | func (e *entry) filter(min, max int64) {
method size (line 144) | func (e *entry) size() int {
method InfluxQLType (line 152) | func (e *entry) InfluxQLType() (influxql.DataType, error) {
function newEntryValues (line 50) | func newEntryValues(values []Value, hint int) (*entry, error) {
constant statCacheMemoryBytes (line 162) | statCacheMemoryBytes = "memBytes"
constant statCacheDiskBytes (line 163) | statCacheDiskBytes = "diskBytes"
constant statSnapshots (line 164) | statSnapshots = "snapshotCount"
constant statCacheAgeMs (line 165) | statCacheAgeMs = "cacheAgeMs"
constant statCachedBytes (line 169) | statCachedBytes = "cachedBytes"
constant statWALCompactionTimeMs (line 170) | statWALCompactionTimeMs = "WALCompactionTimeMs"
constant statCacheWriteOK (line 172) | statCacheWriteOK = "writeOk"
constant statCacheWriteErr (line 173) | statCacheWriteErr = "writeErr"
constant statCacheWriteDropped (line 174) | statCacheWriteDropped = "writeDropped"
type storer (line 178) | type storer interface
type Cache (line 190) | type Cache struct
method Statistics (line 251) | func (c *Cache) Statistics(tags map[string]string) []models.Statistic {
method init (line 271) | func (c *Cache) init() {
method Free (line 282) | func (c *Cache) Free() {
method Write (line 294) | func (c *Cache) Write(key string, values []Value) error {
method WriteMulti (line 325) | func (c *Cache) WriteMulti(values map[string][]Value) error {
method Snapshot (line 372) | func (c *Cache) Snapshot() (*Cache, error) {
method Deduplicate (line 424) | func (c *Cache) Deduplicate() {
method ClearSnapshot (line 436) | func (c *Cache) ClearSnapshot(success bool) {
method Size (line 460) | func (c *Cache) Size() uint64 {
method increaseSize (line 465) | func (c *Cache) increaseSize(delta uint64) {
method decreaseSize (line 470) | func (c *Cache) decreaseSize(delta uint64) {
method MaxSize (line 476) | func (c *Cache) MaxSize() uint64 {
method Keys (line 481) | func (c *Cache) Keys() []string {
method unsortedKeys (line 490) | func (c *Cache) unsortedKeys() []string {
method Values (line 498) | func (c *Cache) Values(key string) Values {
method Delete (line 555) | func (c *Cache) Delete(keys []string) {
method DeleteRange (line 563) | func (c *Cache) DeleteRange(keys []string, min, max int64) {
method SetMaxSize (line 595) | func (c *Cache) SetMaxSize(size uint64) {
method values (line 604) | func (c *Cache) values(key string) Values {
method ApplyEntryFn (line 618) | func (c *Cache) ApplyEntryFn(f func(key string, entry *entry) error) e...
method UpdateAge (line 713) | func (c *Cache) UpdateAge() {
method UpdateCompactTime (line 721) | func (c *Cache) UpdateCompactTime(d time.Duration) {
method updateCachedBytes (line 726) | func (c *Cache) updateCachedBytes(b uint64) {
method updateMemSize (line 731) | func (c *Cache) updateMemSize(b int64) {
method updateSnapshots (line 751) | func (c *Cache) updateSnapshots() {
function NewCache (line 221) | func NewCache(maxSize uint64, path string) *Cache {
type CacheStatistics (line 238) | type CacheStatistics struct
type CacheLoader (line 628) | type CacheLoader struct
method Load (line 646) | func (cl *CacheLoader) Load(cache *Cache) error {
method WithLogger (line 708) | func (cl *CacheLoader) WithLogger(log zap.Logger) {
function NewCacheLoader (line 635) | func NewCacheLoader(files []string) *CacheLoader {
function valueType (line 735) | func valueType(v Value) int {
type emptyStore (line 757) | type emptyStore struct
method entry (line 759) | func (e emptyStore) entry(key string) (*entry, bool) { ...
method write (line 760) | func (e emptyStore) write(key string, values Values) error { ...
method add (line 761) | func (e emptyStore) add(key string, entry *entry) {}
method remove (line 762) | func (e emptyStore) remove(key string) {}
method keys (line 763) | func (e emptyStore) keys(sorted bool) []string { ...
method apply (line 764) | func (e emptyStore) apply(f func(string, *entry) error) error { ...
method applySerial (line 765) | func (e emptyStore) applySerial(f func(string, *entry) error) error { ...
method reset (line 766) | func (e emptyStore) reset() {}
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/cache_race_test.go
function TestCacheCheckConcurrentReadsAreSafe (line 12) | func TestCacheCheckConcurrentReadsAreSafe(t *testing.T) {
function TestCacheRace (line 57) | func TestCacheRace(t *testing.T) {
function TestCacheRace2Compacters (line 122) | func TestCacheRace2Compacters(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/cache_test.go
function TestCache_NewCache (line 20) | func TestCache_NewCache(t *testing.T) {
function TestCache_CacheWrite (line 37) | func TestCache_CacheWrite(t *testing.T) {
function TestCache_CacheWrite_TypeConflict (line 61) | func TestCache_CacheWrite_TypeConflict(t *testing.T) {
function TestCache_CacheWriteMulti (line 82) | func TestCache_CacheWriteMulti(t *testing.T) {
function TestCache_WriteMulti_Stats (line 104) | func TestCache_WriteMulti_Stats(t *testing.T) {
function TestCache_CacheWriteMulti_TypeConflict (line 147) | func TestCache_CacheWriteMulti_TypeConflict(t *testing.T) {
function TestCache_Cache_DeleteRange (line 169) | func TestCache_Cache_DeleteRange(t *testing.T) {
function TestCache_DeleteRange_NoValues (line 208) | func TestCache_DeleteRange_NoValues(t *testing.T) {
function TestCache_Cache_Delete (line 243) | func TestCache_Cache_Delete(t *testing.T) {
function TestCache_Cache_Delete_NonExistent (line 282) | func TestCache_Cache_Delete_NonExistent(t *testing.T) {
function TestCache_CacheWriteMulti_Duplicates (line 294) | func TestCache_CacheWriteMulti_Duplicates(t *testing.T) {
function TestCache_CacheValues (line 327) | func TestCache_CacheValues(t *testing.T) {
function TestCache_CacheSnapshot (line 352) | func TestCache_CacheSnapshot(t *testing.T) {
function TestCache_Snapshot_Stats (line 437) | func TestCache_Snapshot_Stats(t *testing.T) {
function TestCache_CacheEmptySnapshot (line 462) | func TestCache_CacheEmptySnapshot(t *testing.T) {
function TestCache_CacheWriteMemoryExceeded (line 486) | func TestCache_CacheWriteMemoryExceeded(t *testing.T) {
function TestCache_Deduplicate_Concurrent (line 522) | func TestCache_Deduplicate_Concurrent(t *testing.T) {
function TestCacheLoader_LoadSingle (line 558) | func TestCacheLoader_LoadSingle(t *testing.T) {
function TestCacheLoader_LoadDouble (line 630) | func TestCacheLoader_LoadDouble(t *testing.T) {
function TestCacheLoader_LoadDeleted (line 695) | func TestCacheLoader_LoadDeleted(t *testing.T) {
function mustTempDir (line 761) | func mustTempDir() string {
function mustTempFile (line 769) | func mustTempFile(dir string) *os.File {
function mustMarshalEntry (line 777) | func mustMarshalEntry(entry WALEntry) (WalEntryType, []byte) {
type TestStore (line 790) | type TestStore struct
method entry (line 802) | func (s *TestStore) entry(key string) (*entry, bool) { ...
method write (line 803) | func (s *TestStore) write(key string, values Values) error { ...
method add (line 804) | func (s *TestStore) add(key string, entry *entry) { ...
method remove (line 805) | func (s *TestStore) remove(key string) { ...
method keys (line 806) | func (s *TestStore) keys(sorted bool) []string { ...
method apply (line 807) | func (s *TestStore) apply(f func(string, *entry) error) error { ...
method applySerial (line 808) | func (s *TestStore) applySerial(f func(string, *entry) error) error { ...
method reset (line 809) | func (s *TestStore) reset() { ...
function NewTestStore (line 801) | func NewTestStore() *TestStore { re...
function BenchmarkCacheFloatEntries (line 813) | func BenchmarkCacheFloatEntries(b *testing.B) {
type points (line 828) | type points struct
function BenchmarkCacheParallelFloatEntries (line 833) | func BenchmarkCacheParallelFloatEntries(b *testing.B) {
function BenchmarkEntry_add (line 858) | func BenchmarkEntry_add(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/compact.gen.go
method mergeFloat (line 14) | func (k *tsmKeyIterator) mergeFloat() {
method combineFloat (line 47) | func (k *tsmKeyIterator) combineFloat(dedup bool) blocks {
method chunkFloat (line 189) | func (k *tsmKeyIterator) chunkFloat(dst blocks) blocks {
method mergeInteger (line 228) | func (k *tsmKeyIterator) mergeInteger() {
method combineInteger (line 261) | func (k *tsmKeyIterator) combineInteger(dedup bool) blocks {
method chunkInteger (line 403) | func (k *tsmKeyIterator) chunkInteger(dst blocks) blocks {
method mergeString (line 442) | func (k *tsmKeyIterator) mergeString() {
method combineString (line 475) | func (k *tsmKeyIterator) combineString(dedup bool) blocks {
method chunkString (line 617) | func (k *tsmKeyIterator) chunkString(dst blocks) blocks {
method mergeBoolean (line 656) | func (k *tsmKeyIterator) mergeBoolean() {
method combineBoolean (line 689) | func (k *tsmKeyIterator) combineBoolean(dedup bool) blocks {
method chunkBoolean (line 831) | func (k *tsmKeyIterator) chunkBoolean(dst blocks) blocks {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/compact.go
constant maxTSMFileSize (line 29) | maxTSMFileSize = uint32(2048 * 1024 * 1024)
constant CompactionTempExtension (line 33) | CompactionTempExtension = "tmp"
constant TSMFileExtension (line 36) | TSMFileExtension = "tsm"
type errCompactionInProgress (line 46) | type errCompactionInProgress struct
method Error (line 51) | func (e errCompactionInProgress) Error() string {
type CompactionGroup (line 59) | type CompactionGroup
type CompactionPlanner (line 63) | type CompactionPlanner interface
type DefaultPlanner (line 75) | type DefaultPlanner struct
method FullyCompacted (line 160) | func (c *DefaultPlanner) FullyCompacted() bool {
method PlanLevel (line 166) | func (c *DefaultPlanner) PlanLevel(level int) []CompactionGroup {
method PlanOptimize (line 251) | func (c *DefaultPlanner) PlanOptimize() []CompactionGroup {
method Plan (line 319) | func (c *DefaultPlanner) Plan(lastWrite time.Time) []CompactionGroup {
method findGenerations (line 505) | func (c *DefaultPlanner) findGenerations() tsmGenerations {
method acquire (line 546) | func (c *DefaultPlanner) acquire(groups []CompactionGroup) bool {
method Release (line 570) | func (c *DefaultPlanner) Release(groups []CompactionGroup) {
type fileStore (line 99) | type fileStore interface
function NewDefaultPlanner (line 105) | func NewDefaultPlanner(fs fileStore, writeColdDuration time.Duration) *D...
type tsmGeneration (line 116) | type tsmGeneration struct
method size (line 122) | func (t *tsmGeneration) size() uint64 {
method level (line 131) | func (t *tsmGeneration) level() int {
method count (line 145) | func (t *tsmGeneration) count() int {
method hasTombstones (line 150) | func (t *tsmGeneration) hasTombstones() bool {
type Compactor (line 582) | type Compactor struct
method Open (line 603) | func (c *Compactor) Open() {
method Close (line 619) | func (c *Compactor) Close() {
method DisableSnapshots (line 636) | func (c *Compactor) DisableSnapshots() {
method EnableSnapshots (line 647) | func (c *Compactor) EnableSnapshots() {
method DisableCompactions (line 657) | func (c *Compactor) DisableCompactions() {
method EnableCompactions (line 668) | func (c *Compactor) EnableCompactions() {
method WriteSnapshot (line 678) | func (c *Compactor) WriteSnapshot(cache *Cache) ([]string, error) {
method compact (line 704) | func (c *Compactor) compact(fast bool, tsmFiles []string) ([]string, e...
method CompactFull (line 762) | func (c *Compactor) CompactFull(tsmFiles []string) ([]string, error) {
method CompactFast (line 794) | func (c *Compactor) CompactFast(tsmFiles []string) ([]string, error) {
method removeTmpFiles (line 828) | func (c *Compactor) removeTmpFiles(files []string) error {
method writeNewFiles (line 839) | func (c *Compactor) writeNewFiles(generation, sequence int, iter KeyIt...
method write (line 888) | func (c *Compactor) write(path string, iter KeyIterator) (err error) {
method add (line 950) | func (c *Compactor) add(files []string) bool {
method remove (line 968) | func (c *Compactor) remove(files []string) {
type KeyIterator (line 977) | type KeyIterator interface
type tsmKeyIterator (line 992) | type tsmKeyIterator struct
method hasMergedValues (line 1106) | func (k *tsmKeyIterator) hasMergedValues() bool {
method Next (line 1114) | func (k *tsmKeyIterator) Next() bool {
method merge (line 1227) | func (k *tsmKeyIterator) merge() {
method Read (line 1242) | func (k *tsmKeyIterator) Read() (string, int64, int64, []byte, error) {
method Close (line 1258) | func (k *tsmKeyIterator) Close() error {
type block (line 1039) | type block struct
method overlapsTimeRange (line 1051) | func (b *block) overlapsTimeRange(min, max int64) bool {
method read (line 1055) | func (b *block) read() bool {
method markRead (line 1059) | func (b *block) markRead(min, max int64) {
method partiallyRead (line 1069) | func (b *block) partiallyRead() bool {
type blocks (line 1073) | type blocks
method Len (line 1075) | func (a blocks) Len() int { return len(a) }
method Less (line 1077) | func (a blocks) Less(i, j int) bool {
method Swap (line 1084) | func (a blocks) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
function NewTSMKeyIterator (line 1088) | func NewTSMKeyIterator(size int, fast bool, interrupt chan struct{}, rea...
type cacheKeyIterator (line 1270) | type cacheKeyIterator struct
method encode (line 1310) | func (c *cacheKeyIterator) encode() {
method encodeRange (line 1335) | func (c *cacheKeyIterator) encodeRange(start, stop int) {
method Next (line 1365) | func (c *cacheKeyIterator) Next() bool {
method Read (line 1382) | func (c *cacheKeyIterator) Read() (string, int64, int64, []byte, error) {
method Close (line 1394) | func (c *cacheKeyIterator) Close() error {
type cacheBlock (line 1281) | type cacheBlock struct
function NewCacheKeyIterator (line 1289) | func NewCacheKeyIterator(cache *Cache, size int, interrupt chan struct{}...
type tsmGenerations (line 1398) | type tsmGenerations
method Len (line 1400) | func (a tsmGenerations) Len() int { return len(a) }
method Less (line 1401) | func (a tsmGenerations) Less(i, j int) bool { return a[i].id < a[j].id }
method Swap (line 1402) | func (a tsmGenerations) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method hasTombstones (line 1403) | func (a tsmGenerations) hasTombstones() bool {
method level (line 1412) | func (a tsmGenerations) level() int {
method chunk (line 1423) | func (a tsmGenerations) chunk(size int) []tsmGenerations {
method IsSorted (line 1437) | func (a tsmGenerations) IsSorted() bool {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/compact_test.go
function TestCompactor_Snapshot (line 16) | func TestCompactor_Snapshot(t *testing.T) {
function TestCompactor_CompactFull (line 92) | func TestCompactor_CompactFull(t *testing.T) {
function TestCompactor_Compact_OverlappingBlocks (line 195) | func TestCompactor_Compact_OverlappingBlocks(t *testing.T) {
function TestCompactor_Compact_OverlappingBlocksMultiple (line 265) | func TestCompactor_Compact_OverlappingBlocksMultiple(t *testing.T) {
function TestCompactor_CompactFull_SkipFullBlocks (line 344) | func TestCompactor_CompactFull_SkipFullBlocks(t *testing.T) {
function TestCompactor_CompactFull_TombstonedSkipBlock (line 438) | func TestCompactor_CompactFull_TombstonedSkipBlock(t *testing.T) {
function TestCompactor_CompactFull_TombstonedPartialBlock (line 537) | func TestCompactor_CompactFull_TombstonedPartialBlock(t *testing.T) {
function TestCompactor_CompactFull_TombstonedMultipleRanges (line 638) | func TestCompactor_CompactFull_TombstonedMultipleRanges(t *testing.T) {
function TestCompactor_CompactFull_MaxKeys (line 742) | func TestCompactor_CompactFull_MaxKeys(t *testing.T) {
function TestTSMKeyIterator_Single (line 822) | func TestTSMKeyIterator_Single(t *testing.T) {
function TestTSMKeyIterator_Duplicate (line 874) | func TestTSMKeyIterator_Duplicate(t *testing.T) {
function TestTSMKeyIterator_MultipleKeysDeleted (line 929) | func TestTSMKeyIterator_MultipleKeysDeleted(t *testing.T) {
function TestTSMKeyIterator_Abort (line 997) | func TestTSMKeyIterator_Abort(t *testing.T) {
function TestCacheKeyIterator_Single (line 1031) | func TestCacheKeyIterator_Single(t *testing.T) {
function TestCacheKeyIterator_Chunked (line 1078) | func TestCacheKeyIterator_Chunked(t *testing.T) {
function TestCacheKeyIterator_Abort (line 1129) | func TestCacheKeyIterator_Abort(t *testing.T) {
function TestDefaultPlanner_Plan_Min (line 1165) | func TestDefaultPlanner_Plan_Min(t *testing.T) {
function TestDefaultPlanner_Plan_CombineSequence (line 1195) | func TestDefaultPlanner_Plan_CombineSequence(t *testing.T) {
function TestDefaultPlanner_Plan_MultipleGroups (line 1249) | func TestDefaultPlanner_Plan_MultipleGroups(t *testing.T) {
function TestDefaultPlanner_PlanLevel_SmallestCompactionStep (line 1326) | func TestDefaultPlanner_PlanLevel_SmallestCompactionStep(t *testing.T) {
function TestDefaultPlanner_PlanLevel_SplitFile (line 1375) | func TestDefaultPlanner_PlanLevel_SplitFile(t *testing.T) {
function TestDefaultPlanner_PlanLevel_IsolatedLowLevel (line 1428) | func TestDefaultPlanner_PlanLevel_IsolatedLowLevel(t *testing.T) {
function TestDefaultPlanner_PlanLevel_IsolatedHighLevel (line 1477) | func TestDefaultPlanner_PlanLevel_IsolatedHighLevel(t *testing.T) {
function TestDefaultPlanner_PlanLevel3_MinFiles (line 1524) | func TestDefaultPlanner_PlanLevel3_MinFiles(t *testing.T) {
function TestDefaultPlanner_PlanLevel2_MinFiles (line 1567) | func TestDefaultPlanner_PlanLevel2_MinFiles(t *testing.T) {
function TestDefaultPlanner_PlanLevel_Tombstone (line 1599) | func TestDefaultPlanner_PlanLevel_Tombstone(t *testing.T) {
function TestDefaultPlanner_PlanLevel_Multiple (line 1649) | func TestDefaultPlanner_PlanLevel_Multiple(t *testing.T) {
function TestDefaultPlanner_PlanOptimize_NoLevel4 (line 1710) | func TestDefaultPlanner_PlanOptimize_NoLevel4(t *testing.T) {
function TestDefaultPlanner_PlanOptimize_Level4 (line 1741) | func TestDefaultPlanner_PlanOptimize_Level4(t *testing.T) {
function TestDefaultPlanner_PlanOptimize_Multiple (line 1794) | func TestDefaultPlanner_PlanOptimize_Multiple(t *testing.T) {
function TestDefaultPlanner_PlanOptimize_Optimized (line 1871) | func TestDefaultPlanner_PlanOptimize_Optimized(t *testing.T) {
function TestDefaultPlanner_PlanOptimize_Tombstones (line 1902) | func TestDefaultPlanner_PlanOptimize_Tombstones(t *testing.T) {
function TestDefaultPlanner_Plan_FullOnCold (line 1943) | func TestDefaultPlanner_Plan_FullOnCold(t *testing.T) {
function TestDefaultPlanner_Plan_SkipMaxSizeFiles (line 1994) | func TestDefaultPlanner_Plan_SkipMaxSizeFiles(t *testing.T) {
function TestDefaultPlanner_Plan_SkipPlanningAfterFull (line 2022) | func TestDefaultPlanner_Plan_SkipPlanningAfterFull(t *testing.T) {
function TestDefaultPlanner_Plan_TwoGenLevel3 (line 2114) | func TestDefaultPlanner_Plan_TwoGenLevel3(t *testing.T) {
function TestDefaultPlanner_Plan_NotFullOverMaxsize (line 2175) | func TestDefaultPlanner_Plan_NotFullOverMaxsize(t *testing.T) {
function TestDefaultPlanner_Plan_CompactsMiddleSteps (line 2241) | func TestDefaultPlanner_Plan_CompactsMiddleSteps(t *testing.T) {
function TestDefaultPlanner_Plan_LargeSets (line 2286) | func TestDefaultPlanner_Plan_LargeSets(t *testing.T) {
function TestDefaultPlanner_Plan_LargeGeneration (line 2322) | func TestDefaultPlanner_Plan_LargeGeneration(t *testing.T) {
function assertValueEqual (line 2358) | func assertValueEqual(t *testing.T, a, b tsm1.Value) {
function MustTSMWriter (line 2367) | func MustTSMWriter(dir string, gen int) (tsm1.TSMWriter, string) {
function MustWriteTSM (line 2396) | func MustWriteTSM(dir string, gen int, values map[string][]tsm1.Value) s...
function MustTSMReader (line 2416) | func MustTSMReader(dir string, gen int, values map[string][]tsm1.Value) ...
function MustOpenTSMReader (line 2420) | func MustOpenTSMReader(name string) *tsm1.TSMReader {
type fakeFileStore (line 2433) | type fakeFileStore struct
method Stats (line 2439) | func (w *fakeFileStore) Stats() []tsm1.FileStat {
method NextGeneration (line 2443) | func (w *fakeFileStore) NextGeneration() int {
method LastModified (line 2447) | func (w *fakeFileStore) LastModified() time.Time {
method BlockCount (line 2451) | func (w *fakeFileStore) BlockCount(path string, idx int) int {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/cursor.go
type multiFieldCursor (line 12) | type multiFieldCursor struct
method SeekTo (line 31) | func (m *multiFieldCursor) SeekTo(seek int64) (key int64, value interf...
method Next (line 38) | func (m *multiFieldCursor) Next() (int64, interface{}) {
method Ascending (line 42) | func (m *multiFieldCursor) Ascending() bool {
method read (line 46) | func (m *multiFieldCursor) read() (int64, interface{}) {
function NewMultiFieldCursor (line 21) | func NewMultiFieldCursor(fields []string, cursors []tsdb.Cursor, ascendi...
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/encoding.gen.go
type Values (line 15) | type Values
method MinTime (line 17) | func (a Values) MinTime() int64 {
method MaxTime (line 21) | func (a Values) MaxTime() int64 {
method Size (line 25) | func (a Values) Size() int {
method ordered (line 33) | func (a Values) ordered() bool {
method assertOrdered (line 45) | func (a Values) assertOrdered() {
method Deduplicate (line 58) | func (a Values) Deduplicate() Values {
method Exclude (line 90) | func (a Values) Exclude(min, max int64) Values {
method Include (line 104) | func (a Values) Include(min, max int64) Values {
method Merge (line 120) | func (a Values) Merge(b Values) Values {
method Len (line 160) | func (a Values) Len() int { return len(a) }
method Swap (line 161) | func (a Values) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 162) | func (a Values) Less(i, j int) bool { return a[i].UnixNano() < a[j].Un...
type FloatValues (line 165) | type FloatValues
method MinTime (line 167) | func (a FloatValues) MinTime() int64 {
method MaxTime (line 171) | func (a FloatValues) MaxTime() int64 {
method Size (line 175) | func (a FloatValues) Size() int {
method ordered (line 183) | func (a FloatValues) ordered() bool {
method assertOrdered (line 195) | func (a FloatValues) assertOrdered() {
method Deduplicate (line 208) | func (a FloatValues) Deduplicate() FloatValues {
method Exclude (line 240) | func (a FloatValues) Exclude(min, max int64) FloatValues {
method Include (line 254) | func (a FloatValues) Include(min, max int64) FloatValues {
method Merge (line 270) | func (a FloatValues) Merge(b FloatValues) FloatValues {
method Encode (line 309) | func (a FloatValues) Encode(buf []byte) ([]byte, error) {
method Len (line 354) | func (a FloatValues) Len() int { return len(a) }
method Swap (line 355) | func (a FloatValues) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 356) | func (a FloatValues) Less(i, j int) bool { return a[i].UnixNano() < a[...
function encodeFloatValuesBlock (line 313) | func encodeFloatValuesBlock(buf []byte, values []FloatValue) ([]byte, er...
type IntegerValues (line 359) | type IntegerValues
method MinTime (line 361) | func (a IntegerValues) MinTime() int64 {
method MaxTime (line 365) | func (a IntegerValues) MaxTime() int64 {
method Size (line 369) | func (a IntegerValues) Size() int {
method ordered (line 377) | func (a IntegerValues) ordered() bool {
method assertOrdered (line 389) | func (a IntegerValues) assertOrdered() {
method Deduplicate (line 402) | func (a IntegerValues) Deduplicate() IntegerValues {
method Exclude (line 434) | func (a IntegerValues) Exclude(min, max int64) IntegerValues {
method Include (line 448) | func (a IntegerValues) Include(min, max int64) IntegerValues {
method Merge (line 464) | func (a IntegerValues) Merge(b IntegerValues) IntegerValues {
method Encode (line 503) | func (a IntegerValues) Encode(buf []byte) ([]byte, error) {
method Len (line 548) | func (a IntegerValues) Len() int { return len(a) }
method Swap (line 549) | func (a IntegerValues) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 550) | func (a IntegerValues) Less(i, j int) bool { return a[i].UnixNano() < ...
function encodeIntegerValuesBlock (line 507) | func encodeIntegerValuesBlock(buf []byte, values []IntegerValue) ([]byte...
type StringValues (line 553) | type StringValues
method MinTime (line 555) | func (a StringValues) MinTime() int64 {
method MaxTime (line 559) | func (a StringValues) MaxTime() int64 {
method Size (line 563) | func (a StringValues) Size() int {
method ordered (line 571) | func (a StringValues) ordered() bool {
method assertOrdered (line 583) | func (a StringValues) assertOrdered() {
method Deduplicate (line 596) | func (a StringValues) Deduplicate() StringValues {
method Exclude (line 628) | func (a StringValues) Exclude(min, max int64) StringValues {
method Include (line 642) | func (a StringValues) Include(min, max int64) StringValues {
method Merge (line 658) | func (a StringValues) Merge(b StringValues) StringValues {
method Encode (line 697) | func (a StringValues) Encode(buf []byte) ([]byte, error) {
method Len (line 742) | func (a StringValues) Len() int { return len(a) }
method Swap (line 743) | func (a StringValues) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 744) | func (a StringValues) Less(i, j int) bool { return a[i].UnixNano() < a...
function encodeStringValuesBlock (line 701) | func encodeStringValuesBlock(buf []byte, values []StringValue) ([]byte, ...
type BooleanValues (line 747) | type BooleanValues
method MinTime (line 749) | func (a BooleanValues) MinTime() int64 {
method MaxTime (line 753) | func (a BooleanValues) MaxTime() int64 {
method Size (line 757) | func (a BooleanValues) Size() int {
method ordered (line 765) | func (a BooleanValues) ordered() bool {
method assertOrdered (line 777) | func (a BooleanValues) assertOrdered() {
method Deduplicate (line 790) | func (a BooleanValues) Deduplicate() BooleanValues {
method Exclude (line 822) | func (a BooleanValues) Exclude(min, max int64) BooleanValues {
method Include (line 836) | func (a BooleanValues) Include(min, max int64) BooleanValues {
method Merge (line 852) | func (a BooleanValues) Merge(b BooleanValues) BooleanValues {
method Encode (line 891) | func (a BooleanValues) Encode(buf []byte) ([]byte, error) {
method Len (line 936) | func (a BooleanValues) Len() int { return len(a) }
method Swap (line 937) | func (a BooleanValues) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 938) | func (a BooleanValues) Less(i, j int) bool { return a[i].UnixNano() < ...
function encodeBooleanValuesBlock (line 895) | func encodeBooleanValuesBlock(buf []byte, values []BooleanValue) ([]byte...
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/encoding.go
constant BlockFloat64 (line 16) | BlockFloat64 = byte(0)
constant BlockInteger (line 19) | BlockInteger = byte(1)
constant BlockBoolean (line 22) | BlockBoolean = byte(2)
constant BlockString (line 25) | BlockString = byte(3)
constant encodedBlockHeaderSize (line 29) | encodedBlockHeaderSize = 1
function init (line 32) | func init() {
type Value (line 94) | type Value interface
function NewValue (line 113) | func NewValue(t int64, value interface{}) Value {
function NewIntegerValue (line 128) | func NewIntegerValue(t int64, v int64) Value {
function NewFloatValue (line 133) | func NewFloatValue(t int64, v float64) Value {
function NewBooleanValue (line 138) | func NewBooleanValue(t int64, v bool) Value {
function NewStringValue (line 143) | func NewStringValue(t int64, v string) Value {
type EmptyValue (line 148) | type EmptyValue struct
method UnixNano (line 151) | func (e EmptyValue) UnixNano() int64 { return tsdb.EOF }
method Value (line 154) | func (e EmptyValue) Value() interface{} { return nil }
method Size (line 157) | func (e EmptyValue) Size() int { return 0 }
method String (line 160) | func (e EmptyValue) String() string { return "" }
method internalOnly (line 162) | func (_ EmptyValue) internalOnly() {}
method Encode (line 170) | func (a Values) Encode(buf []byte) ([]byte, error) {
method InfluxQLType (line 190) | func (a Values) InfluxQLType() (influxql.DataType, error) {
function BlockType (line 211) | func BlockType(block []byte) (byte, error) {
function BlockCount (line 222) | func BlockCount(block []byte) int {
function DecodeBlock (line 236) | func DecodeBlock(block []byte, vals []Value) ([]Value, error) {
type FloatValue (line 296) | type FloatValue struct
method internalOnly (line 166) | func (_ FloatValue) internalOnly() {}
method UnixNano (line 302) | func (v FloatValue) UnixNano() int64 {
method Value (line 307) | func (v FloatValue) Value() interface{} {
method Size (line 312) | func (v FloatValue) Size() int {
method String (line 317) | func (v FloatValue) String() string {
function encodeFloatBlock (line 321) | func encodeFloatBlock(buf []byte, values []Value) ([]byte, error) {
function DecodeFloatBlock (line 371) | func DecodeFloatBlock(block []byte, a *[]FloatValue) ([]FloatValue, erro...
type BooleanValue (line 431) | type BooleanValue struct
method internalOnly (line 165) | func (_ BooleanValue) internalOnly() {}
method Size (line 437) | func (v BooleanValue) Size() int {
method UnixNano (line 442) | func (v BooleanValue) UnixNano() int64 {
method Value (line 447) | func (v BooleanValue) Value() interface{} {
method String (line 452) | func (v BooleanValue) String() string {
function encodeBooleanBlock (line 456) | func encodeBooleanBlock(buf []byte, values []Value) ([]byte, error) {
function DecodeBooleanBlock (line 501) | func DecodeBooleanBlock(block []byte, a *[]BooleanValue) ([]BooleanValue...
type IntegerValue (line 557) | type IntegerValue struct
method internalOnly (line 164) | func (_ IntegerValue) internalOnly() {}
method Value (line 563) | func (v IntegerValue) Value() interface{} {
method UnixNano (line 568) | func (v IntegerValue) UnixNano() int64 {
method Size (line 573) | func (v IntegerValue) Size() int {
method String (line 578) | func (v IntegerValue) String() string {
function encodeIntegerBlock (line 582) | func encodeIntegerBlock(buf []byte, values []Value) ([]byte, error) {
function DecodeIntegerBlock (line 618) | func DecodeIntegerBlock(block []byte, a *[]IntegerValue) ([]IntegerValue...
type StringValue (line 675) | type StringValue struct
method internalOnly (line 163) | func (_ StringValue) internalOnly() {}
method Value (line 681) | func (v StringValue) Value() interface{} {
method UnixNano (line 686) | func (v StringValue) UnixNano() int64 {
method Size (line 691) | func (v StringValue) Size() int {
method String (line 696) | func (v StringValue) String() string {
function encodeStringBlock (line 700) | func encodeStringBlock(buf []byte, values []Value) ([]byte, error) {
function DecodeStringBlock (line 737) | func DecodeStringBlock(block []byte, a *[]StringValue) ([]StringValue, e...
function packBlock (line 796) | func packBlock(buf []byte, typ byte, ts []byte, values []byte) []byte {
function unpackBlock (line 816) | func unpackBlock(buf []byte) (ts, values []byte, err error) {
function ZigZagEncode (line 839) | func ZigZagEncode(x int64) uint64 {
function ZigZagDecode (line 844) | func ZigZagDecode(v uint64) int64 {
function getTimeEncoder (line 847) | func getTimeEncoder(sz int) TimeEncoder {
function putTimeEncoder (line 852) | func putTimeEncoder(enc TimeEncoder) { timeEncoderPool.Put(enc) }
function getIntegerEncoder (line 854) | func getIntegerEncoder(sz int) IntegerEncoder {
function putIntegerEncoder (line 859) | func putIntegerEncoder(enc IntegerEncoder) { integerEncoderPool.Put(enc) }
function getFloatEncoder (line 861) | func getFloatEncoder(sz int) *FloatEncoder {
function putFloatEncoder (line 866) | func putFloatEncoder(enc *FloatEncoder) { floatEncoderPool.Put(enc) }
function getStringEncoder (line 868) | func getStringEncoder(sz int) StringEncoder {
function putStringEncoder (line 873) | func putStringEncoder(enc StringEncoder) { stringEncoderPool.Put(enc) }
function getBooleanEncoder (line 875) | func getBooleanEncoder(sz int) BooleanEncoder {
function putBooleanEncoder (line 880) | func putBooleanEncoder(enc BooleanEncoder) { booleanEncoderPool.Put(enc) }
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/encoding_test.go
function TestEncoding_FloatBlock (line 13) | func TestEncoding_FloatBlock(t *testing.T) {
function TestEncoding_FloatBlock_ZeroTime (line 37) | func TestEncoding_FloatBlock_ZeroTime(t *testing.T) {
function TestEncoding_FloatBlock_SimilarFloats (line 59) | func TestEncoding_FloatBlock_SimilarFloats(t *testing.T) {
function TestEncoding_IntBlock_Basic (line 83) | func TestEncoding_IntBlock_Basic(t *testing.T) {
function TestEncoding_IntBlock_Negatives (line 117) | func TestEncoding_IntBlock_Negatives(t *testing.T) {
function TestEncoding_BooleanBlock_Basic (line 145) | func TestEncoding_BooleanBlock_Basic(t *testing.T) {
function TestEncoding_StringBlock_Basic (line 173) | func TestEncoding_StringBlock_Basic(t *testing.T) {
function TestEncoding_BlockType (line 197) | func TestEncoding_BlockType(t *testing.T) {
function TestEncoding_Count (line 233) | func TestEncoding_Count(t *testing.T) {
function TestValues_MergeFloat (line 259) | func TestValues_MergeFloat(t *testing.T) {
function TestIntegerValues_Merge (line 509) | func TestIntegerValues_Merge(t *testing.T) {
function TestFloatValues_Merge (line 648) | func TestFloatValues_Merge(t *testing.T) {
function TestBooleanValues_Merge (line 783) | func TestBooleanValues_Merge(t *testing.T) {
function TestStringValues_Merge (line 918) | func TestStringValues_Merge(t *testing.T) {
function getTimes (line 1056) | func getTimes(n, step int, precision time.Duration) []int64 {
function BenchmarkDecodeBlock_Float_Empty (line 1065) | func BenchmarkDecodeBlock_Float_Empty(b *testing.B) {
function BenchmarkDecodeBlock_Float_EqualSize (line 1088) | func BenchmarkDecodeBlock_Float_EqualSize(b *testing.B) {
function BenchmarkDecodeBlock_Float_TypeSpecific (line 1111) | func BenchmarkDecodeBlock_Float_TypeSpecific(b *testing.B) {
function BenchmarkDecodeBlock_Integer_Empty (line 1134) | func BenchmarkDecodeBlock_Integer_Empty(b *testing.B) {
function BenchmarkDecodeBlock_Integer_EqualSize (line 1157) | func BenchmarkDecodeBlock_Integer_EqualSize(b *testing.B) {
function BenchmarkDecodeBlock_Integer_TypeSpecific (line 1180) | func BenchmarkDecodeBlock_Integer_TypeSpecific(b *testing.B) {
function BenchmarkDecodeBlock_Boolean_Empty (line 1203) | func BenchmarkDecodeBlock_Boolean_Empty(b *testing.B) {
function BenchmarkDecodeBlock_Boolean_EqualSize (line 1226) | func BenchmarkDecodeBlock_Boolean_EqualSize(b *testing.B) {
function BenchmarkDecodeBlock_Boolean_TypeSpecific (line 1249) | func BenchmarkDecodeBlock_Boolean_TypeSpecific(b *testing.B) {
function BenchmarkDecodeBlock_String_Empty (line 1272) | func BenchmarkDecodeBlock_String_Empty(b *testing.B) {
function BenchmarkDecodeBlock_String_EqualSize (line 1295) | func BenchmarkDecodeBlock_String_EqualSize(b *testing.B) {
function BenchmarkDecodeBlock_String_TypeSpecific (line 1318) | func BenchmarkDecodeBlock_String_TypeSpecific(b *testing.B) {
function BenchmarkValues_Deduplicate (line 1341) | func BenchmarkValues_Deduplicate(b *testing.B) {
function BenchmarkValues_Merge (line 1356) | func BenchmarkValues_Merge(b *testing.B) {
function BenchmarkValues_MergeDisjoint (line 1371) | func BenchmarkValues_MergeDisjoint(b *testing.B) {
function BenchmarkValues_MergeSame (line 1386) | func BenchmarkValues_MergeSame(b *testing.B) {
function BenchmarkValues_MergeSimilar (line 1401) | func BenchmarkValues_MergeSimilar(b *testing.B) {
function BenchmarkValues_MergeUnevenA (line 1419) | func BenchmarkValues_MergeUnevenA(b *testing.B) {
function BenchmarkValues_MergeUnevenB (line 1434) | func BenchmarkValues_MergeUnevenB(b *testing.B) {
function benchmarkMerge (line 1449) | func benchmarkMerge(a, c tsm1.Values, b *testing.B) {
function BenchmarkValues_EncodeInteger (line 1461) | func BenchmarkValues_EncodeInteger(b *testing.B) {
function BenchmarkValues_EncodeFloat (line 1477) | func BenchmarkValues_EncodeFloat(b *testing.B) {
function BenchmarkValues_EncodeString (line 1492) | func BenchmarkValues_EncodeString(b *testing.B) {
function BenchmarkValues_EncodeBool (line 1507) | func BenchmarkValues_EncodeBool(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/engine.go
function init (line 37) | func init() {
constant keyFieldSeparator (line 52) | keyFieldSeparator = "#!~#"
constant statCacheCompactions (line 57) | statCacheCompactions = "cacheCompactions"
constant statCacheCompactionsActive (line 58) | statCacheCompactionsActive = "cacheCompactionsActive"
constant statCacheCompactionError (line 59) | statCacheCompactionError = "cacheCompactionErr"
constant statCacheCompactionDuration (line 60) | statCacheCompactionDuration = "cacheCompactionDuration"
constant statTSMLevel1Compactions (line 62) | statTSMLevel1Compactions = "tsmLevel1Compactions"
constant statTSMLevel1CompactionsActive (line 63) | statTSMLevel1CompactionsActive = "tsmLevel1CompactionsActive"
constant statTSMLevel1CompactionError (line 64) | statTSMLevel1CompactionError = "tsmLevel1CompactionErr"
constant statTSMLevel1CompactionDuration (line 65) | statTSMLevel1CompactionDuration = "tsmLevel1CompactionDuration"
constant statTSMLevel2Compactions (line 67) | statTSMLevel2Compactions = "tsmLevel2Compactions"
constant statTSMLevel2CompactionsActive (line 68) | statTSMLevel2CompactionsActive = "tsmLevel2CompactionsActive"
constant statTSMLevel2CompactionError (line 69) | statTSMLevel2CompactionError = "tsmLevel2CompactionErr"
constant statTSMLevel2CompactionDuration (line 70) | statTSMLevel2CompactionDuration = "tsmLevel2CompactionDuration"
constant statTSMLevel3Compactions (line 72) | statTSMLevel3Compactions = "tsmLevel3Compactions"
constant statTSMLevel3CompactionsActive (line 73) | statTSMLevel3CompactionsActive = "tsmLevel3CompactionsActive"
constant statTSMLevel3CompactionError (line 74) | statTSMLevel3CompactionError = "tsmLevel3CompactionErr"
constant statTSMLevel3CompactionDuration (line 75) | statTSMLevel3CompactionDuration = "tsmLevel3CompactionDuration"
constant statTSMOptimizeCompactions (line 77) | statTSMOptimizeCompactions = "tsmOptimizeCompactions"
constant statTSMOptimizeCompactionsActive (line 78) | statTSMOptimizeCompactionsActive = "tsmOptimizeCompactionsActive"
constant statTSMOptimizeCompactionError (line 79) | statTSMOptimizeCompactionError = "tsmOptimizeCompactionErr"
constant statTSMOptimizeCompactionDuration (line 80) | statTSMOptimizeCompactionDuration = "tsmOptimizeCompactionDuration"
constant statTSMFullCompactions (line 82) | statTSMFullCompactions = "tsmFullCompactions"
constant statTSMFullCompactionsActive (line 83) | statTSMFullCompactionsActive = "tsmFullCompactionsActive"
constant statTSMFullCompactionError (line 84) | statTSMFullCompactionError = "tsmFullCompactionErr"
constant statTSMFullCompactionDuration (line 85) | statTSMFullCompactionDuration = "tsmFullCompactionDuration"
type Engine (line 89) | type Engine struct
method SetEnabled (line 194) | func (e *Engine) SetEnabled(enabled bool) {
method SetCompactionsEnabled (line 201) | func (e *Engine) SetCompactionsEnabled(enabled bool) {
method enableLevelCompactions (line 215) | func (e *Engine) enableLevelCompactions(wait bool) {
method disableLevelCompactions (line 254) | func (e *Engine) disableLevelCompactions(wait bool) {
method enableSnapshotCompactions (line 275) | func (e *Engine) enableSnapshotCompactions() {
method disableSnapshotCompactions (line 300) | func (e *Engine) disableSnapshotCompactions() {
method Path (line 319) | func (e *Engine) Path() string { return e.path }
method SetFieldName (line 321) | func (e *Engine) SetFieldName(measurement []byte, name string) {
method MeasurementExists (line 325) | func (e *Engine) MeasurementExists(name []byte) (bool, error) {
method MeasurementNamesByExpr (line 329) | func (e *Engine) MeasurementNamesByExpr(expr influxql.Expr) ([][]byte,...
method MeasurementNamesByRegex (line 333) | func (e *Engine) MeasurementNamesByRegex(re *regexp.Regexp) ([][]byte,...
method MeasurementFields (line 338) | func (e *Engine) MeasurementFields(measurement []byte) *tsdb.Measureme...
method ForEachMeasurementSeriesByExpr (line 342) | func (e *Engine) ForEachMeasurementSeriesByExpr(name []byte, condition...
method HasTagKey (line 346) | func (e *Engine) HasTagKey(name, key []byte) (bool, error) {
method MeasurementTagKeysByExpr (line 350) | func (e *Engine) MeasurementTagKeysByExpr(name []byte, expr influxql.E...
method MeasurementTagKeyValuesByExpr (line 363) | func (e *Engine) MeasurementTagKeyValuesByExpr(name []byte, keys []str...
method ForEachMeasurementTagKey (line 367) | func (e *Engine) ForEachMeasurementTagKey(name []byte, fn func(key []b...
method TagKeyCardinality (line 371) | func (e *Engine) TagKeyCardinality(name, key []byte) int {
method SeriesN (line 376) | func (e *Engine) SeriesN() int64 {
method SeriesSketches (line 380) | func (e *Engine) SeriesSketches() (estimator.Sketch, estimator.Sketch,...
method MeasurementsSketches (line 384) | func (e *Engine) MeasurementsSketches() (estimator.Sketch, estimator.S...
method LastModified (line 389) | func (e *Engine) LastModified() time.Time {
method Statistics (line 424) | func (e *Engine) Statistics(tags map[string]string) []models.Statistic {
method DiskSize (line 469) | func (e *Engine) DiskSize() int64 {
method Open (line 474) | func (e *Engine) Open() error {
method Close (line 505) | func (e *Engine) Close() error {
method WithLogger (line 520) | func (e *Engine) WithLogger(log zap.Logger) {
method LoadMetadataIndex (line 532) | func (e *Engine) LoadMetadataIndex(shardID uint64, index tsdb.Index) e...
method IsIdle (line 573) | func (e *Engine) IsIdle() bool {
method Backup (line 593) | func (e *Engine) Backup(w io.Writer, basePath string, since time.Time)...
method writeFileToBackup (line 641) | func (e *Engine) writeFileToBackup(name string, shardRelativePath, ful...
method Restore (line 671) | func (e *Engine) Restore(r io.Reader, basePath string) error {
method Import (line 678) | func (e *Engine) Import(r io.Reader, basePath string) error {
method overlay (line 686) | func (e *Engine) overlay(r io.Reader, basePath string, asNew bool) err...
method readFileFromBackup (line 769) | func (e *Engine) readFileFromBackup(tr *tar.Reader, shardRelativePath ...
method addToIndexFromKey (line 816) | func (e *Engine) addToIndexFromKey(key []byte, fieldType influxql.Data...
method WritePoints (line 838) | func (e *Engine) WritePoints(points []models.Point) error {
method containsSeries (line 899) | func (e *Engine) containsSeries(keys [][]byte) (map[string]bool, error) {
method deleteSeries (line 926) | func (e *Engine) deleteSeries(seriesKeys [][]byte) error {
method DeleteSeriesRange (line 931) | func (e *Engine) DeleteSeriesRange(seriesKeys [][]byte, min, max int64...
method DeleteMeasurement (line 1019) | func (e *Engine) DeleteMeasurement(name []byte) error {
method deleteMeasurement (line 1036) | func (e *Engine) deleteMeasurement(name []byte) error {
method ForEachMeasurementName (line 1050) | func (e *Engine) ForEachMeasurementName(fn func(name []byte) error) er...
method MeasurementSeriesKeysByExpr (line 1055) | func (e *Engine) MeasurementSeriesKeysByExpr(name []byte, expr influxq...
method CreateSeriesListIfNotExists (line 1059) | func (e *Engine) CreateSeriesListIfNotExists(keys, names [][]byte, tag...
method CreateSeriesIfNotExists (line 1063) | func (e *Engine) CreateSeriesIfNotExists(key, name []byte, tags models...
method WriteTo (line 1068) | func (e *Engine) WriteTo(w io.Writer) (n int64, err error) { panic("no...
method WriteSnapshot (line 1071) | func (e *Engine) WriteSnapshot() error {
method CreateSnapshot (line 1129) | func (e *Engine) CreateSnapshot() (string, error) {
method writeSnapshotAndCommit (line 1141) | func (e *Engine) writeSnapshotAndCommit(closedFiles []string, snapshot...
method compactCache (line 1175) | func (e *Engine) compactCache(quit <-chan struct{}) {
method ShouldCompactCache (line 1203) | func (e *Engine) ShouldCompactCache(lastWriteTime time.Time) bool {
method compactTSMLevel (line 1214) | func (e *Engine) compactTSMLevel(fast bool, level int, quit <-chan str...
method compactTSMFull (line 1235) | func (e *Engine) compactTSMFull(quit <-chan struct{}) {
method onFileStoreReplace (line 1257) | func (e *Engine) onFileStoreReplace(newFiles []TSMFile) {
method levelCompactionStrategy (line 1418) | func (e *Engine) levelCompactionStrategy(fast bool, level int) *compac...
method fullCompactionStrategy (line 1445) | func (e *Engine) fullCompactionStrategy() *compactionStrategy {
method reloadCache (line 1487) | func (e *Engine) reloadCache() error {
method cleanup (line 1514) | func (e *Engine) cleanup() error {
method cleanupTempTSMFiles (line 1534) | func (e *Engine) cleanupTempTSMFiles() error {
method KeyCursor (line 1549) | func (e *Engine) KeyCursor(key string, t int64, ascending bool) *KeyCu...
method CreateIterator (line 1554) | func (e *Engine) CreateIterator(measurement string, opt influxql.Itera...
method createCallIterator (line 1588) | func (e *Engine) createCallIterator(measurement string, call *influxql...
method createVarRefIterator (line 1658) | func (e *Engine) createVarRefIterator(measurement string, opt influxql...
method createTagSetIterators (line 1736) | func (e *Engine) createTagSetIterators(ref *influxql.VarRef, name stri...
method createTagSetGroupIterators (line 1802) | func (e *Engine) createTagSetGroupIterators(ref *influxql.VarRef, name...
method createVarRefSeriesIterator (line 1838) | func (e *Engine) createVarRefSeriesIterator(ref *influxql.VarRef, name...
method buildCursor (line 1963) | func (e *Engine) buildCursor(measurement, seriesKey string, ref *influ...
method buildFloatCursor (line 2012) | func (e *Engine) buildFloatCursor(measurement, seriesKey, field string...
method buildIntegerCursor (line 2019) | func (e *Engine) buildIntegerCursor(measurement, seriesKey, field stri...
method buildStringCursor (line 2026) | func (e *Engine) buildStringCursor(measurement, seriesKey, field strin...
method buildBooleanCursor (line 2033) | func (e *Engine) buildBooleanCursor(measurement, seriesKey, field stri...
method SeriesPointIterator (line 2039) | func (e *Engine) SeriesPointIterator(opt influxql.IteratorOptions) (in...
function NewEngine (line 144) | func NewEngine(id uint64, idx tsdb.Index, database, path string, walPath...
type EngineStatistics (line 401) | type EngineStatistics struct
type compactionStrategy (line 1307) | type compactionStrategy struct
method Apply (line 1330) | func (s *compactionStrategy) Apply() {
method compactGroup (line 1359) | func (s *compactionStrategy) compactGroup(groupNum int) {
function SeriesFieldKey (line 2044) | func SeriesFieldKey(seriesKey, field string) string {
function tsmFieldTypeToInfluxQLDataType (line 2048) | func tsmFieldTypeToInfluxQLDataType(typ byte) (influxql.DataType, error) {
function SeriesAndFieldFromCompositeKey (line 2064) | func SeriesAndFieldFromCompositeKey(key []byte) ([]byte, []byte) {
function readDir (line 2074) | func readDir(root, rel string) ([]string, error) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/engine_test.go
function TestEngine_DeleteWALLoadMetadata (line 118) | func TestEngine_DeleteWALLoadMetadata(t *testing.T) {
function TestEngine_Backup (line 149) | func TestEngine_Backup(t *testing.T) {
function TestEngine_CreateIterator_Cache_Ascending (line 254) | func TestEngine_CreateIterator_Cache_Ascending(t *testing.T) {
function TestEngine_CreateIterator_Cache_Descending (line 307) | func TestEngine_CreateIterator_Cache_Descending(t *testing.T) {
function TestEngine_CreateIterator_TSM_Ascending (line 359) | func TestEngine_CreateIterator_TSM_Ascending(t *testing.T) {
function TestEngine_CreateIterator_TSM_Descending (line 412) | func TestEngine_CreateIterator_TSM_Descending(t *testing.T) {
function TestEngine_CreateIterator_Aux (line 465) | func TestEngine_CreateIterator_Aux(t *testing.T) {
function TestEngine_CreateIterator_Condition (line 521) | func TestEngine_CreateIterator_Condition(t *testing.T) {
function TestEngine_DeleteSeries (line 580) | func TestEngine_DeleteSeries(t *testing.T) {
function TestEngine_LastModified (line 638) | func TestEngine_LastModified(t *testing.T) {
function TestEngine_SnapshotsDisabled (line 701) | func TestEngine_SnapshotsDisabled(t *testing.T) {
function BenchmarkEngine_CreateIterator_Count_1K (line 736) | func BenchmarkEngine_CreateIterator_Count_1K(b *testing.B) {
function BenchmarkEngine_CreateIterator_Count_100K (line 739) | func BenchmarkEngine_CreateIterator_Count_100K(b *testing.B) {
function BenchmarkEngine_CreateIterator_Count_1M (line 742) | func BenchmarkEngine_CreateIterator_Count_1M(b *testing.B) {
function benchmarkEngineCreateIteratorCount (line 746) | func benchmarkEngineCreateIteratorCount(b *testing.B, pointN int) {
function BenchmarkEngine_CreateIterator_First_1K (line 755) | func BenchmarkEngine_CreateIterator_First_1K(b *testing.B) {
function BenchmarkEngine_CreateIterator_First_100K (line 758) | func BenchmarkEngine_CreateIterator_First_100K(b *testing.B) {
function BenchmarkEngine_CreateIterator_First_1M (line 761) | func BenchmarkEngine_CreateIterator_First_1M(b *testing.B) {
function benchmarkEngineCreateIteratorFirst (line 765) | func benchmarkEngineCreateIteratorFirst(b *testing.B, pointN int) {
function BenchmarkEngine_CreateIterator_Last_1K (line 775) | func BenchmarkEngine_CreateIterator_Last_1K(b *testing.B) {
function BenchmarkEngine_CreateIterator_Last_100K (line 778) | func BenchmarkEngine_CreateIterator_Last_100K(b *testing.B) {
function BenchmarkEngine_CreateIterator_Last_1M (line 781) | func BenchmarkEngine_CreateIterator_Last_1M(b *testing.B) {
function benchmarkEngineCreateIteratorLast (line 785) | func benchmarkEngineCreateIteratorLast(b *testing.B, pointN int) {
function BenchmarkEngine_CreateIterator_Limit_1K (line 795) | func BenchmarkEngine_CreateIterator_Limit_1K(b *testing.B) {
function BenchmarkEngine_CreateIterator_Limit_100K (line 798) | func BenchmarkEngine_CreateIterator_Limit_100K(b *testing.B) {
function BenchmarkEngine_CreateIterator_Limit_1M (line 801) | func BenchmarkEngine_CreateIterator_Limit_1M(b *testing.B) {
function BenchmarkEngine_WritePoints_10 (line 805) | func BenchmarkEngine_WritePoints_10(b *testing.B) {
function BenchmarkEngine_WritePoints_100 (line 809) | func BenchmarkEngine_WritePoints_100(b *testing.B) {
function BenchmarkEngine_WritePoints_1000 (line 813) | func BenchmarkEngine_WritePoints_1000(b *testing.B) {
function BenchmarkEngine_WritePoints_5000 (line 817) | func BenchmarkEngine_WritePoints_5000(b *testing.B) {
function benchmarkEngine_WritePoints (line 821) | func benchmarkEngine_WritePoints(b *testing.B, batchSize int) {
function BenchmarkEngine_WritePoints_Parallel_1000 (line 843) | func BenchmarkEngine_WritePoints_Parallel_1000(b *testing.B) {
function BenchmarkEngine_WritePoints_Parallel_5000 (line 847) | func BenchmarkEngine_WritePoints_Parallel_5000(b *testing.B) {
function BenchmarkEngine_WritePoints_Parallel_10000 (line 851) | func BenchmarkEngine_WritePoints_Parallel_10000(b *testing.B) {
function BenchmarkEngine_WritePoints_Parallel_25000 (line 855) | func BenchmarkEngine_WritePoints_Parallel_25000(b *testing.B) {
function BenchmarkEngine_WritePoints_Parallel_50000 (line 859) | func BenchmarkEngine_WritePoints_Parallel_50000(b *testing.B) {
function BenchmarkEngine_WritePoints_Parallel_75000 (line 863) | func BenchmarkEngine_WritePoints_Parallel_75000(b *testing.B) {
function BenchmarkEngine_WritePoints_Parallel_100000 (line 867) | func BenchmarkEngine_WritePoints_Parallel_100000(b *testing.B) {
function BenchmarkEngine_WritePoints_Parallel_200000 (line 871) | func BenchmarkEngine_WritePoints_Parallel_200000(b *testing.B) {
function benchmarkEngine_WritePoints_Parallel (line 875) | func benchmarkEngine_WritePoints_Parallel(b *testing.B, batchSize int) {
function benchmarkEngineCreateIteratorLimit (line 923) | func benchmarkEngineCreateIteratorLimit(b *testing.B, pointN int) {
function benchmarkIterator (line 934) | func benchmarkIterator(b *testing.B, opt influxql.IteratorOptions, point...
function MustInitBenchmarkEngine (line 957) | func MustInitBenchmarkEngine(pointN int) *Engine {
type Engine (line 1015) | type Engine struct
method Close (line 1059) | func (e *Engine) Close() error {
method Reopen (line 1068) | func (e *Engine) Reopen() error {
method MustWriteSnapshot (line 1095) | func (e *Engine) MustWriteSnapshot() {
method WritePointsString (line 1102) | func (e *Engine) WritePointsString(buf ...string) error {
function NewEngine (line 1022) | func NewEngine() *Engine {
function MustOpenEngine (line 1047) | func MustOpenEngine() *Engine {
function MustParsePointsString (line 1107) | func MustParsePointsString(buf string) []models.Point {
function MustParsePointString (line 1116) | func MustParsePointString(buf string) models.Point { return MustParsePoi...
type mockPlanner (line 1118) | type mockPlanner struct
method Plan (line 1120) | func (m *mockPlanner) Plan(lastWrite time.Time) []tsm1.CompactionGroup...
method PlanLevel (line 1121) | func (m *mockPlanner) PlanLevel(level int) []tsm1.CompactionGroup ...
method PlanOptimize (line 1122) | func (m *mockPlanner) PlanOptimize() []tsm1.CompactionGroup ...
method Release (line 1123) | func (m *mockPlanner) Release(groups []tsm1.CompactionGroup) {}
method FullyCompacted (line 1124) | func (m *mockPlanner) FullyCompacted() bool ...
function ParseTags (line 1127) | func ParseTags(s string) influxql.Tags {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/file_store.gen.go
method ReadFloatBlock (line 10) | func (c *KeyCursor) ReadFloatBlock(buf *[]FloatValue) ([]FloatValue, err...
method ReadIntegerBlock (line 173) | func (c *KeyCursor) ReadIntegerBlock(buf *[]IntegerValue) ([]IntegerValu...
method ReadStringBlock (line 336) | func (c *KeyCursor) ReadStringBlock(buf *[]StringValue) ([]StringValue, ...
method ReadBooleanBlock (line 499) | func (c *KeyCursor) ReadBooleanBlock(buf *[]BooleanValue) ([]BooleanValu...
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/file_store.go
type TSMFile (line 22) | type TSMFile interface
constant statFileStoreBytes (line 114) | statFileStoreBytes = "diskBytes"
constant statFileStoreCount (line 115) | statFileStoreCount = "numFiles"
type FileStore (line 119) | type FileStore struct
method enableTraceLogging (line 185) | func (f *FileStore) enableTraceLogging(enabled bool) {
method WithLogger (line 193) | func (f *FileStore) WithLogger(log zap.Logger) {
method Statistics (line 209) | func (f *FileStore) Statistics(tags map[string]string) []models.Statis...
method Count (line 221) | func (f *FileStore) Count() int {
method Files (line 228) | func (f *FileStore) Files() []TSMFile {
method CurrentGeneration (line 235) | func (f *FileStore) CurrentGeneration() int {
method NextGeneration (line 242) | func (f *FileStore) NextGeneration() int {
method WalkKeys (line 251) | func (f *FileStore) WalkKeys(fn func(key []byte, typ byte) error) error {
method Keys (line 285) | func (f *FileStore) Keys() map[string]byte {
method Type (line 301) | func (f *FileStore) Type(key string) (byte, error) {
method Delete (line 314) | func (f *FileStore) Delete(keys []string) error {
method DeleteRange (line 319) | func (f *FileStore) DeleteRange(keys []string, min, max int64) error {
method Open (line 334) | func (f *FileStore) Open() error {
method Close (line 431) | func (f *FileStore) Close() error {
method DiskSizeBytes (line 445) | func (f *FileStore) DiskSizeBytes() int64 {
method Read (line 451) | func (f *FileStore) Read(key string, t int64) ([]Value, error) {
method KeyCursor (line 475) | func (f *FileStore) KeyCursor(key string, t int64, ascending bool) *Ke...
method Stats (line 482) | func (f *FileStore) Stats() []FileStat {
method ReplaceWithCallback (line 508) | func (f *FileStore) ReplaceWithCallback(oldFiles, newFiles []string, u...
method Replace (line 513) | func (f *FileStore) Replace(oldFiles, newFiles []string) error {
method replace (line 517) | func (f *FileStore) replace(oldFiles, newFiles []string, updatedFn fun...
method LastModified (line 663) | func (f *FileStore) LastModified() time.Time {
method BlockCount (line 674) | func (f *FileStore) BlockCount(path string, idx int) int {
method walkFiles (line 698) | func (f *FileStore) walkFiles(fn func(f TSMFile) error) error {
method locations (line 731) | func (f *FileStore) locations(key string, t int64, ascending bool) []*...
method CreateSnapshot (line 805) | func (f *FileStore) CreateSnapshot() (string, error) {
type FileStat (line 142) | type FileStat struct
method OverlapsTimeRange (line 152) | func (f FileStat) OverlapsTimeRange(min, max int64) bool {
method OverlapsKeyRange (line 157) | func (f FileStat) OverlapsKeyRange(min, max string) bool {
method ContainsKey (line 162) | func (f FileStat) ContainsKey(key string) bool {
function NewFileStore (line 167) | func NewFileStore(dir string) *FileStore {
type FileStoreStatistics (line 203) | type FileStoreStatistics struct
function ParseTSMFileName (line 841) | func ParseTSMFileName(name string) (int, int, error) {
type KeyCursor (line 869) | type KeyCursor struct
method Close (line 974) | func (c *KeyCursor) Close() {
method hasOverlappingBlocks (line 988) | func (c *KeyCursor) hasOverlappingBlocks() bool {
method seek (line 1004) | func (c *KeyCursor) seek(t int64) {
method seekAscending (line 1017) | func (c *KeyCursor) seekAscending(t int64) {
method seekDescending (line 1036) | func (c *KeyCursor) seekDescending(t int64) {
method Next (line 1057) | func (c *KeyCursor) Next() {
method nextAscending (line 1073) | func (c *KeyCursor) nextAscending() {
method nextDescending (line 1106) | func (c *KeyCursor) nextDescending() {
method filterFloatValues (line 1138) | func (c *KeyCursor) filterFloatValues(tombstones []TimeRange, values F...
method filterIntegerValues (line 1145) | func (c *KeyCursor) filterIntegerValues(tombstones []TimeRange, values...
method filterStringValues (line 1152) | func (c *KeyCursor) filterStringValues(tombstones []TimeRange, values ...
method filterBooleanValues (line 1159) | func (c *KeyCursor) filterBooleanValues(tombstones []TimeRange, values...
type location (line 897) | type location struct
method read (line 904) | func (l *location) read() bool {
method markRead (line 908) | func (l *location) markRead(min, max int64) {
type descLocations (line 918) | type descLocations
method Len (line 921) | func (a descLocations) Len() int { return len(a) }
method Swap (line 922) | func (a descLocations) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 923) | func (a descLocations) Less(i, j int) bool {
type ascLocations (line 930) | type ascLocations
method Len (line 933) | func (a ascLocations) Len() int { return len(a) }
method Swap (line 934) | func (a ascLocations) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 935) | func (a ascLocations) Less(i, j int) bool {
function newKeyCursor (line 944) | func newKeyCursor(fs *FileStore, key string, t int64, ascending bool) *K...
type purger (line 1166) | type purger struct
method add (line 1175) | func (p *purger) add(files []TSMFile) {
method purge (line 1184) | func (p *purger) purge() {
type tsmReaders (line 1223) | type tsmReaders
method Len (line 1225) | func (a tsmReaders) Len() int { return len(a) }
method Less (line 1226) | func (a tsmReaders) Less(i, j int) bool { return a[i].Path() < a[j].Pa...
method Swap (line 1227) | func (a tsmReaders) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
type stream (line 1229) | type stream struct
type seriesKey (line 1234) | type seriesKey struct
function merge (line 1241) | func merge(c ...chan seriesKey) chan seriesKey {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/file_store_internal_test.go
function TestMergeSeriesKey_Single (line 9) | func TestMergeSeriesKey_Single(t *testing.T) {
function TestMergeSeriesKey_Nil (line 31) | func TestMergeSeriesKey_Nil(t *testing.T) {
function TestMergeSeriesKey_Duplicates (line 45) | func TestMergeSeriesKey_Duplicates(t *testing.T) {
function TestMergeSeriesKey_Alternating (line 76) | func TestMergeSeriesKey_Alternating(t *testing.T) {
function TestMergeSeriesKey_AlternatingDuplicates (line 106) | func TestMergeSeriesKey_AlternatingDuplicates(t *testing.T) {
function TestMergeSeriesKey_Unbuffered (line 139) | func TestMergeSeriesKey_Unbuffered(t *testing.T) {
function TestMergeSeriesKey_OneEmpty (line 176) | func TestMergeSeriesKey_OneEmpty(t *testing.T) {
function TestMergeSeriesKey_Overlapping (line 207) | func TestMergeSeriesKey_Overlapping(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/file_store_test.go
function TestFileStore_Read (line 17) | func TestFileStore_Read(t *testing.T) {
function TestFileStore_SeekToAsc_FromStart (line 54) | func TestFileStore_SeekToAsc_FromStart(t *testing.T) {
function TestFileStore_SeekToAsc_Duplicate (line 93) | func TestFileStore_SeekToAsc_Duplicate(t *testing.T) {
function TestFileStore_SeekToAsc_BeforeStart (line 166) | func TestFileStore_SeekToAsc_BeforeStart(t *testing.T) {
function TestFileStore_SeekToAsc_BeforeStart_OverlapFloat (line 207) | func TestFileStore_SeekToAsc_BeforeStart_OverlapFloat(t *testing.T) {
function TestFileStore_SeekToAsc_BeforeStart_OverlapInteger (line 274) | func TestFileStore_SeekToAsc_BeforeStart_OverlapInteger(t *testing.T) {
function TestFileStore_SeekToAsc_BeforeStart_OverlapBoolean (line 340) | func TestFileStore_SeekToAsc_BeforeStart_OverlapBoolean(t *testing.T) {
function TestFileStore_SeekToAsc_BeforeStart_OverlapString (line 406) | func TestFileStore_SeekToAsc_BeforeStart_OverlapString(t *testing.T) {
function TestFileStore_SeekToAsc_OverlapMinFloat (line 472) | func TestFileStore_SeekToAsc_OverlapMinFloat(t *testing.T) {
function TestFileStore_SeekToAsc_OverlapMinInteger (line 552) | func TestFileStore_SeekToAsc_OverlapMinInteger(t *testing.T) {
function TestFileStore_SeekToAsc_OverlapMinBoolean (line 631) | func TestFileStore_SeekToAsc_OverlapMinBoolean(t *testing.T) {
function TestFileStore_SeekToAsc_OverlapMinString (line 710) | func TestFileStore_SeekToAsc_OverlapMinString(t *testing.T) {
function TestFileStore_SeekToAsc_Middle (line 787) | func TestFileStore_SeekToAsc_Middle(t *testing.T) {
function TestFileStore_SeekToAsc_End (line 845) | func TestFileStore_SeekToAsc_End(t *testing.T) {
function TestFileStore_SeekToDesc_FromStart (line 883) | func TestFileStore_SeekToDesc_FromStart(t *testing.T) {
function TestFileStore_SeekToDesc_Duplicate (line 921) | func TestFileStore_SeekToDesc_Duplicate(t *testing.T) {
function TestFileStore_SeekToDesc_OverlapMaxFloat (line 980) | func TestFileStore_SeekToDesc_OverlapMaxFloat(t *testing.T) {
function TestFileStore_SeekToDesc_OverlapMaxInteger (line 1045) | func TestFileStore_SeekToDesc_OverlapMaxInteger(t *testing.T) {
function TestFileStore_SeekToDesc_OverlapMaxBoolean (line 1108) | func TestFileStore_SeekToDesc_OverlapMaxBoolean(t *testing.T) {
function TestFileStore_SeekToDesc_OverlapMaxString (line 1171) | func TestFileStore_SeekToDesc_OverlapMaxString(t *testing.T) {
function TestFileStore_SeekToDesc_AfterEnd (line 1234) | func TestFileStore_SeekToDesc_AfterEnd(t *testing.T) {
function TestFileStore_SeekToDesc_AfterEnd_OverlapFloat (line 1272) | func TestFileStore_SeekToDesc_AfterEnd_OverlapFloat(t *testing.T) {
function TestFileStore_SeekToDesc_AfterEnd_OverlapInteger (line 1369) | func TestFileStore_SeekToDesc_AfterEnd_OverlapInteger(t *testing.T) {
function TestFileStore_SeekToDesc_AfterEnd_OverlapBoolean (line 1446) | func TestFileStore_SeekToDesc_AfterEnd_OverlapBoolean(t *testing.T) {
function TestFileStore_SeekToDesc_AfterEnd_OverlapString (line 1543) | func TestFileStore_SeekToDesc_AfterEnd_OverlapString(t *testing.T) {
function TestFileStore_SeekToDesc_Middle (line 1640) | func TestFileStore_SeekToDesc_Middle(t *testing.T) {
function TestFileStore_SeekToDesc_End (line 1717) | func TestFileStore_SeekToDesc_End(t *testing.T) {
function TestKeyCursor_TombstoneRange (line 1755) | func TestKeyCursor_TombstoneRange(t *testing.T) {
function TestKeyCursor_TombstoneRange_PartialFloat (line 1799) | func TestKeyCursor_TombstoneRange_PartialFloat(t *testing.T) {
function TestKeyCursor_TombstoneRange_PartialInteger (line 1843) | func TestKeyCursor_TombstoneRange_PartialInteger(t *testing.T) {
function TestKeyCursor_TombstoneRange_PartialString (line 1887) | func TestKeyCursor_TombstoneRange_PartialString(t *testing.T) {
function TestKeyCursor_TombstoneRange_PartialBoolean (line 1931) | func TestKeyCursor_TombstoneRange_PartialBoolean(t *testing.T) {
function TestFileStore_Open (line 1975) | func TestFileStore_Open(t *testing.T) {
function TestFileStore_Remove (line 2006) | func TestFileStore_Remove(t *testing.T) {
function TestFileStore_Replace (line 2047) | func TestFileStore_Replace(t *testing.T) {
function TestFileStore_Open_Deleted (line 2138) | func TestFileStore_Open_Deleted(t *testing.T) {
function TestFileStore_Delete (line 2179) | func TestFileStore_Delete(t *testing.T) {
function TestFileStore_Stats (line 2213) | func TestFileStore_Stats(t *testing.T) {
function TestFileStore_CreateSnapshot (line 2288) | func TestFileStore_CreateSnapshot(t *testing.T) {
function newFileDir (line 2342) | func newFileDir(dir string, values ...keyValues) ([]string, error) {
function newFiles (line 2376) | func newFiles(dir string, values ...keyValues) ([]string, error) {
type keyValues (line 2410) | type keyValues struct
function MustTempDir (line 2415) | func MustTempDir() string {
function MustTempFile (line 2423) | func MustTempFile(dir string) *os.File {
function fatal (line 2431) | func fatal(t *testing.T, msg string, err error) {
function tsmFileName (line 2435) | func tsmFileName(id int) string {
function BenchmarkFileStore_Stats (line 2441) | func BenchmarkFileStore_Stats(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/file_unix.go
function syncDir (line 7) | func syncDir(dirName string) error {
function renameFile (line 18) | func renameFile(oldpath, newpath string) error {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/file_windows.go
function syncDir (line 5) | func syncDir(dirName string) error {
function renameFile (line 10) | func renameFile(oldpath, newpath string) error {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/float.go
constant floatUncompressed (line 24) | floatUncompressed = 0
constant floatCompressedGorilla (line 27) | floatCompressedGorilla = 1
constant uvnan (line 31) | uvnan = 0x7FF8000000000001
type FloatEncoder (line 34) | type FloatEncoder struct
method Reset (line 62) | func (s *FloatEncoder) Reset() {
method Bytes (line 77) | func (s *FloatEncoder) Bytes() ([]byte, error) {
method Flush (line 82) | func (s *FloatEncoder) Flush() {
method Write (line 92) | func (s *FloatEncoder) Write(v float64) {
function NewFloatEncoder (line 49) | func NewFloatEncoder() *FloatEncoder {
type FloatDecoder (line 147) | type FloatDecoder struct
method SetBytes (line 163) | func (it *FloatDecoder) SetBytes(b []byte) error {
method Next (line 192) | func (it *FloatDecoder) Next() bool {
method Values (line 278) | func (it *FloatDecoder) Values() float64 {
method Error (line 283) | func (it *FloatDecoder) Error() error {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/float_test.go
function TestFloatEncoder_Simple (line 12) | func TestFloatEncoder_Simple(t *testing.T) {
function TestFloatEncoder_SimilarFloats (line 75) | func TestFloatEncoder_SimilarFloats(t *testing.T) {
function TestFloatEncoder_Roundtrip (line 151) | func TestFloatEncoder_Roundtrip(t *testing.T) {
function TestFloatEncoder_Roundtrip_NaN (line 188) | func TestFloatEncoder_Roundtrip_NaN(t *testing.T) {
function Test_FloatEncoder_Quick (line 203) | func Test_FloatEncoder_Quick(t *testing.T) {
function TestFloatDecoder_Empty (line 242) | func TestFloatDecoder_Empty(t *testing.T) {
function BenchmarkFloatEncoder (line 253) | func BenchmarkFloatEncoder(b *testing.B) {
function BenchmarkFloatDecoder (line 263) | func BenchmarkFloatDecoder(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/int.go
constant intUncompressed (line 32) | intUncompressed = 0
constant intCompressedSimple (line 34) | intCompressedSimple = 1
constant intCompressedRLE (line 36) | intCompressedRLE = 2
type IntegerEncoder (line 40) | type IntegerEncoder struct
method Flush (line 55) | func (e *IntegerEncoder) Flush() {}
method Reset (line 58) | func (e *IntegerEncoder) Reset() {
method Write (line 65) | func (e *IntegerEncoder) Write(v int64) {
method Bytes (line 79) | func (e *IntegerEncoder) Bytes() ([]byte, error) {
method encodeRLE (line 95) | func (e *IntegerEncoder) encodeRLE() ([]byte, error) {
method encodePacked (line 115) | func (e *IntegerEncoder) encodePacked() ([]byte, error) {
method encodeUncompressed (line 141) | func (e *IntegerEncoder) encodeUncompressed() ([]byte, error) {
function NewIntegerEncoder (line 47) | func NewIntegerEncoder(sz int) IntegerEncoder {
type IntegerDecoder (line 157) | type IntegerDecoder struct
method SetBytes (line 176) | func (d *IntegerDecoder) SetBytes(b []byte) {
method Next (line 196) | func (d *IntegerDecoder) Next() bool {
method Error (line 219) | func (d *IntegerDecoder) Error() error {
method Read (line 224) | func (d *IntegerDecoder) Read() int64 {
method decodeRLE (line 237) | func (d *IntegerDecoder) decodeRLE() {
method decodePacked (line 280) | func (d *IntegerDecoder) decodePacked() {
method decodeUncompressed (line 310) | func (d *IntegerDecoder) decodeUncompressed() {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/int_test.go
function Test_IntegerEncoder_NoValues (line 11) | func Test_IntegerEncoder_NoValues(t *testing.T) {
function Test_IntegerEncoder_One (line 29) | func Test_IntegerEncoder_One(t *testing.T) {
function Test_IntegerEncoder_Two (line 54) | func Test_IntegerEncoder_Two(t *testing.T) {
function Test_IntegerEncoder_Negative (line 89) | func Test_IntegerEncoder_Negative(t *testing.T) {
function Test_IntegerEncoder_Large_Range (line 133) | func Test_IntegerEncoder_Large_Range(t *testing.T) {
function Test_IntegerEncoder_Uncompressed (line 166) | func Test_IntegerEncoder_Uncompressed(t *testing.T) {
function Test_IntegerEncoder_NegativeUncompressed (line 215) | func Test_IntegerEncoder_NegativeUncompressed(t *testing.T) {
function Test_IntegerEncoder_AllNegative (line 260) | func Test_IntegerEncoder_AllNegative(t *testing.T) {
function Test_IntegerEncoder_CounterPacked (line 298) | func Test_IntegerEncoder_CounterPacked(t *testing.T) {
function Test_IntegerEncoder_CounterRLE (line 342) | func Test_IntegerEncoder_CounterRLE(t *testing.T) {
function Test_IntegerEncoder_Descending (line 386) | func Test_IntegerEncoder_Descending(t *testing.T) {
function Test_IntegerEncoder_Flat (line 430) | func Test_IntegerEncoder_Flat(t *testing.T) {
function Test_IntegerEncoder_MinMax (line 474) | func Test_IntegerEncoder_MinMax(t *testing.T) {
function Test_IntegerEncoder_Quick (line 516) | func Test_IntegerEncoder_Quick(t *testing.T) {
function Test_IntegerDecoder_Corrupt (line 555) | func Test_IntegerDecoder_Corrupt(t *testing.T) {
function BenchmarkIntegerEncoderRLE (line 574) | func BenchmarkIntegerEncoderRLE(b *testing.B) {
function BenchmarkIntegerEncoderPackedSimple (line 588) | func BenchmarkIntegerEncoderPackedSimple(b *testing.B) {
function BenchmarkIntegerDecoderPackedSimple (line 607) | func BenchmarkIntegerDecoderPackedSimple(b *testing.B) {
function BenchmarkIntegerDecoderRLE (line 627) | func BenchmarkIntegerDecoderRLE(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/iterator.gen.go
type cursor (line 20) | type cursor interface
type cursorAt (line 27) | type cursorAt interface
type nilCursor (line 33) | type nilCursor struct
method next (line 35) | func (nilCursor) next() (int64, interface{}) { return tsdb.EOF, nil }
type bufCursor (line 38) | type bufCursor struct
method close (line 53) | func (c *bufCursor) close() error {
method next (line 60) | func (c *bufCursor) next() (int64, interface{}) {
method unread (line 70) | func (c *bufCursor) unread(k int64, v interface{}) {
method peek (line 76) | func (c *bufCursor) peek() (k int64, v interface{}) {
method nextAt (line 85) | func (c *bufCursor) nextAt(seek int64) interface{} {
function newBufCursor (line 49) | func newBufCursor(cur cursor, ascending bool) *bufCursor {
constant statsBufferCopyIntervalN (line 118) | statsBufferCopyIntervalN = 100
type floatFinalizerIterator (line 120) | type floatFinalizerIterator struct
method closeGC (line 131) | func (itr *floatFinalizerIterator) closeGC() {
method Close (line 137) | func (itr *floatFinalizerIterator) Close() error {
function newFloatFinalizerIterator (line 125) | func newFloatFinalizerIterator(inner influxql.FloatIterator, logger zap....
type floatIterator (line 142) | type floatIterator struct
method Next (line 188) | func (itr *floatIterator) Next() (*influxql.FloatPoint, error) {
method copyStats (line 248) | func (itr *floatIterator) copyStats() {
method Stats (line 255) | func (itr *floatIterator) Stats() influxql.IteratorStats {
method Close (line 263) | func (itr *floatIterator) Close() error {
function newFloatIterator (line 159) | func newFloatIterator(name string, tags influxql.Tags, opt influxql.Iter...
type floatLimitIterator (line 277) | type floatLimitIterator struct
method Stats (line 290) | func (itr *floatLimitIterator) Stats() influxql.IteratorStats { return...
method Close (line 291) | func (itr *floatLimitIterator) Close() error { return...
method Next (line 293) | func (itr *floatLimitIterator) Next() (*influxql.FloatPoint, error) {
function newFloatLimitIterator (line 283) | func newFloatLimitIterator(input influxql.FloatIterator, opt influxql.It...
type floatCursor (line 313) | type floatCursor interface
function newFloatCursor (line 318) | func newFloatCursor(seek int64, ascending bool, cacheValues Values, tsmK...
type floatAscendingCursor (line 325) | type floatAscendingCursor struct
method peekCache (line 358) | func (c *floatAscendingCursor) peekCache() (t int64, v float64) {
method peekTSM (line 368) | func (c *floatAscendingCursor) peekTSM() (t int64, v float64) {
method close (line 378) | func (c *floatAscendingCursor) close() error {
method next (line 388) | func (c *floatAscendingCursor) next() (int64, interface{}) { return c....
method nextFloat (line 391) | func (c *floatAscendingCursor) nextFloat() (int64, float64) {
method nextCache (line 419) | func (c *floatAscendingCursor) nextCache() {
method nextTSM (line 427) | func (c *floatAscendingCursor) nextTSM() {
function newFloatAscendingCursor (line 339) | func newFloatAscendingCursor(seek int64, cacheValues Values, tsmKeyCurso...
type floatDescendingCursor (line 439) | type floatDescendingCursor struct
method peekCache (line 478) | func (c *floatDescendingCursor) peekCache() (t int64, v float64) {
method peekTSM (line 488) | func (c *floatDescendingCursor) peekTSM() (t int64, v float64) {
method close (line 498) | func (c *floatDescendingCursor) close() error {
method next (line 508) | func (c *floatDescendingCursor) next() (int64, interface{}) { return c...
method nextFloat (line 511) | func (c *floatDescendingCursor) nextFloat() (int64, float64) {
method nextCache (line 539) | func (c *floatDescendingCursor) nextCache() {
method nextTSM (line 547) | func (c *floatDescendingCursor) nextTSM() {
function newFloatDescendingCursor (line 453) | func newFloatDescendingCursor(seek int64, cacheValues Values, tsmKeyCurs...
type floatLiteralCursor (line 561) | type floatLiteralCursor struct
method close (line 565) | func (c *floatLiteralCursor) close() error { return ...
method peek (line 566) | func (c *floatLiteralCursor) peek() (t int64, v interface{}) { return ...
method next (line 567) | func (c *floatLiteralCursor) next() (t int64, v interface{}) { return ...
method nextAt (line 568) | func (c *floatLiteralCursor) nextAt(seek int64) interface{} { return ...
type floatNilLiteralCursor (line 572) | type floatNilLiteralCursor struct
method close (line 574) | func (c *floatNilLiteralCursor) close() error { retu...
method peek (line 575) | func (c *floatNilLiteralCursor) peek() (t int64, v interface{}) { retu...
method next (line 576) | func (c *floatNilLiteralCursor) next() (t int64, v interface{}) { retu...
method nextAt (line 577) | func (c *floatNilLiteralCursor) nextAt(seek int64) interface{} { retu...
type integerFinalizerIterator (line 579) | type integerFinalizerIterator struct
method closeGC (line 590) | func (itr *integerFinalizerIterator) closeGC() {
method Close (line 596) | func (itr *integerFinalizerIterator) Close() error {
function newIntegerFinalizerIterator (line 584) | func newIntegerFinalizerIterator(inner influxql.IntegerIterator, logger ...
type integerIterator (line 601) | type integerIterator struct
method Next (line 647) | func (itr *integerIterator) Next() (*influxql.IntegerPoint, error) {
method copyStats (line 707) | func (itr *integerIterator) copyStats() {
method Stats (line 714) | func (itr *integerIterator) Stats() influxql.IteratorStats {
method Close (line 722) | func (itr *integerIterator) Close() error {
function newIntegerIterator (line 618) | func newIntegerIterator(name string, tags influxql.Tags, opt influxql.It...
type integerLimitIterator (line 736) | type integerLimitIterator struct
method Stats (line 749) | func (itr *integerLimitIterator) Stats() influxql.IteratorStats { retu...
method Close (line 750) | func (itr *integerLimitIterator) Close() error { retu...
method Next (line 752) | func (itr *integerLimitIterator) Next() (*influxql.IntegerPoint, error) {
function newIntegerLimitIterator (line 742) | func newIntegerLimitIterator(input influxql.IntegerIterator, opt influxq...
type integerCursor (line 772) | type integerCursor interface
function newIntegerCursor (line 777) | func newIntegerCursor(seek int64, ascending bool, cacheValues Values, ts...
type integerAscendingCursor (line 784) | type integerAscendingCursor struct
method peekCache (line 817) | func (c *integerAscendingCursor) peekCache() (t int64, v int64) {
method peekTSM (line 827) | func (c *integerAscendingCursor) peekTSM() (t int64, v int64) {
method close (line 837) | func (c *integerAscendingCursor) close() error {
method next (line 847) | func (c *integerAscendingCursor) next() (int64, interface{}) { return ...
method nextInteger (line 850) | func (c *integerAscendingCursor) nextInteger() (int64, int64) {
method nextCache (line 878) | func (c *integerAscendingCursor) nextCache() {
method nextTSM (line 886) | func (c *integerAscendingCursor) nextTSM() {
function newIntegerAscendingCursor (line 798) | func newIntegerAscendingCursor(seek int64, cacheValues Values, tsmKeyCur...
type integerDescendingCursor (line 898) | type integerDescendingCursor struct
method peekCache (line 937) | func (c *integerDescendingCursor) peekCache() (t int64, v int64) {
method peekTSM (line 947) | func (c *integerDescendingCursor) peekTSM() (t int64, v int64) {
method close (line 957) | func (c *integerDescendingCursor) close() error {
method next (line 967) | func (c *integerDescendingCursor) next() (int64, interface{}) { return...
method nextInteger (line 970) | func (c *integerDescendingCursor) nextInteger() (int64, int64) {
method nextCache (line 998) | func (c *integerDescendingCursor) nextCache() {
method nextTSM (line 1006) | func (c *integerDescendingCursor) nextTSM() {
function newIntegerDescendingCursor (line 912) | func newIntegerDescendingCursor(seek int64, cacheValues Values, tsmKeyCu...
type integerLiteralCursor (line 1020) | type integerLiteralCursor struct
method close (line 1024) | func (c *integerLiteralCursor) close() error { retur...
method peek (line 1025) | func (c *integerLiteralCursor) peek() (t int64, v interface{}) { retur...
method next (line 1026) | func (c *integerLiteralCursor) next() (t int64, v interface{}) { retur...
method nextAt (line 1027) | func (c *integerLiteralCursor) nextAt(seek int64) interface{} { retur...
type integerNilLiteralCursor (line 1031) | type integerNilLiteralCursor struct
method close (line 1033) | func (c *integerNilLiteralCursor) close() error { re...
method peek (line 1034) | func (c *integerNilLiteralCursor) peek() (t int64, v interface{}) { re...
method next (line 1035) | func (c *integerNilLiteralCursor) next() (t int64, v interface{}) { re...
method nextAt (line 1036) | func (c *integerNilLiteralCursor) nextAt(seek int64) interface{} { re...
type stringFinalizerIterator (line 1038) | type stringFinalizerIterator struct
method closeGC (line 1049) | func (itr *stringFinalizerIterator) closeGC() {
method Close (line 1055) | func (itr *stringFinalizerIterator) Close() error {
function newStringFinalizerIterator (line 1043) | func newStringFinalizerIterator(inner influxql.StringIterator, logger za...
type stringIterator (line 1060) | type stringIterator struct
method Next (line 1106) | func (itr *stringIterator) Next() (*influxql.StringPoint, error) {
method copyStats (line 1166) | func (itr *stringIterator) copyStats() {
method Stats (line 1173) | func (itr *stringIterator) Stats() influxql.IteratorStats {
method Close (line 1181) | func (itr *stringIterator) Close() error {
function newStringIterator (line 1077) | func newStringIterator(name string, tags influxql.Tags, opt influxql.Ite...
type stringLimitIterator (line 1195) | type stringLimitIterator struct
method Stats (line 1208) | func (itr *stringLimitIterator) Stats() influxql.IteratorStats { retur...
method Close (line 1209) | func (itr *stringLimitIterator) Close() error { retur...
method Next (line 1211) | func (itr *stringLimitIterator) Next() (*influxql.StringPoint, error) {
function newStringLimitIterator (line 1201) | func newStringLimitIterator(input influxql.StringIterator, opt influxql....
type stringCursor (line 1231) | type stringCursor interface
function newStringCursor (line 1236) | func newStringCursor(seek int64, ascending bool, cacheValues Values, tsm...
type stringAscendingCursor (line 1243) | type stringAscendingCursor struct
method peekCache (line 1276) | func (c *stringAscendingCursor) peekCache() (t int64, v string) {
method peekTSM (line 1286) | func (c *stringAscendingCursor) peekTSM() (t int64, v string) {
method close (line 1296) | func (c *stringAscendingCursor) close() error {
method next (line 1306) | func (c *stringAscendingCursor) next() (int64, interface{}) { return c...
method nextString (line 1309) | func (c *stringAscendingCursor) nextString() (int64, string) {
method nextCache (line 1337) | func (c *stringAscendingCursor) nextCache() {
method nextTSM (line 1345) | func (c *stringAscendingCursor) nextTSM() {
function newStringAscendingCursor (line 1257) | func newStringAscendingCursor(seek int64, cacheValues Values, tsmKeyCurs...
type stringDescendingCursor (line 1357) | type stringDescendingCursor struct
method peekCache (line 1396) | func (c *stringDescendingCursor) peekCache() (t int64, v string) {
method peekTSM (line 1406) | func (c *stringDescendingCursor) peekTSM() (t int64, v string) {
method close (line 1416) | func (c *stringDescendingCursor) close() error {
method next (line 1426) | func (c *stringDescendingCursor) next() (int64, interface{}) { return ...
method nextString (line 1429) | func (c *stringDescendingCursor) nextString() (int64, string) {
method nextCache (line 1457) | func (c *stringDescendingCursor) nextCache() {
method nextTSM (line 1465) | func (c *stringDescendingCursor) nextTSM() {
function newStringDescendingCursor (line 1371) | func newStringDescendingCursor(seek int64, cacheValues Values, tsmKeyCur...
type stringLiteralCursor (line 1479) | type stringLiteralCursor struct
method close (line 1483) | func (c *stringLiteralCursor) close() error { return...
method peek (line 1484) | func (c *stringLiteralCursor) peek() (t int64, v interface{}) { return...
method next (line 1485) | func (c *stringLiteralCursor) next() (t int64, v interface{}) { return...
method nextAt (line 1486) | func (c *stringLiteralCursor) nextAt(seek int64) interface{} { return...
type stringNilLiteralCursor (line 1490) | type stringNilLiteralCursor struct
method close (line 1492) | func (c *stringNilLiteralCursor) close() error { ret...
method peek (line 1493) | func (c *stringNilLiteralCursor) peek() (t int64, v interface{}) { ret...
method next (line 1494) | func (c *stringNilLiteralCursor) next() (t int64, v interface{}) { ret...
method nextAt (line 1495) | func (c *stringNilLiteralCursor) nextAt(seek int64) interface{} { ret...
type booleanFinalizerIterator (line 1497) | type booleanFinalizerIterator struct
method closeGC (line 1508) | func (itr *booleanFinalizerIterator) closeGC() {
method Close (line 1514) | func (itr *booleanFinalizerIterator) Close() error {
function newBooleanFinalizerIterator (line 1502) | func newBooleanFinalizerIterator(inner influxql.BooleanIterator, logger ...
type booleanIterator (line 1519) | type booleanIterator struct
method Next (line 1565) | func (itr *booleanIterator) Next() (*influxql.BooleanPoint, error) {
method copyStats (line 1625) | func (itr *booleanIterator) copyStats() {
method Stats (line 1632) | func (itr *booleanIterator) Stats() influxql.IteratorStats {
method Close (line 1640) | func (itr *booleanIterator) Close() error {
function newBooleanIterator (line 1536) | func newBooleanIterator(name string, tags influxql.Tags, opt influxql.It...
type booleanLimitIterator (line 1654) | type booleanLimitIterator struct
method Stats (line 1667) | func (itr *booleanLimitIterator) Stats() influxql.IteratorStats { retu...
method Close (line 1668) | func (itr *booleanLimitIterator) Close() error { retu...
method Next (line 1670) | func (itr *booleanLimitIterator) Next() (*influxql.BooleanPoint, error) {
function newBooleanLimitIterator (line 1660) | func newBooleanLimitIterator(input influxql.BooleanIterator, opt influxq...
type booleanCursor (line 1690) | type booleanCursor interface
function newBooleanCursor (line 1695) | func newBooleanCursor(seek int64, ascending bool, cacheValues Values, ts...
type booleanAscendingCursor (line 1702) | type booleanAscendingCursor struct
method peekCache (line 1735) | func (c *booleanAscendingCursor) peekCache() (t int64, v bool) {
method peekTSM (line 1745) | func (c *booleanAscendingCursor) peekTSM() (t int64, v bool) {
method close (line 1755) | func (c *booleanAscendingCursor) close() error {
method next (line 1765) | func (c *booleanAscendingCursor) next() (int64, interface{}) { return ...
method nextBoolean (line 1768) | func (c *booleanAscendingCursor) nextBoolean() (int64, bool) {
method nextCache (line 1796) | func (c *booleanAscendingCursor) nextCache() {
method nextTSM (line 1804) | func (c *booleanAscendingCursor) nextTSM() {
function newBooleanAscendingCursor (line 1716) | func newBooleanAscendingCursor(seek int64, cacheValues Values, tsmKeyCur...
type booleanDescendingCursor (line 1816) | type booleanDescendingCursor struct
method peekCache (line 1855) | func (c *booleanDescendingCursor) peekCache() (t int64, v bool) {
method peekTSM (line 1865) | func (c *booleanDescendingCursor) peekTSM() (t int64, v bool) {
method close (line 1875) | func (c *booleanDescendingCursor) close() error {
method next (line 1885) | func (c *booleanDescendingCursor) next() (int64, interface{}) { return...
method nextBoolean (line 1888) | func (c *booleanDescendingCursor) nextBoolean() (int64, bool) {
method nextCache (line 1916) | func (c *booleanDescendingCursor) nextCache() {
method nextTSM (line 1924) | func (c *booleanDescendingCursor) nextTSM() {
function newBooleanDescendingCursor (line 1830) | func newBooleanDescendingCursor(seek int64, cacheValues Values, tsmKeyCu...
type booleanLiteralCursor (line 1938) | type booleanLiteralCursor struct
method close (line 1942) | func (c *booleanLiteralCursor) close() error { retur...
method peek (line 1943) | func (c *booleanLiteralCursor) peek() (t int64, v interface{}) { retur...
method next (line 1944) | func (c *booleanLiteralCursor) next() (t int64, v interface{}) { retur...
method nextAt (line 1945) | func (c *booleanLiteralCursor) nextAt(seek int64) interface{} { retur...
type booleanNilLiteralCursor (line 1949) | type booleanNilLiteralCursor struct
method close (line 1951) | func (c *booleanNilLiteralCursor) close() error { re...
method peek (line 1952) | func (c *booleanNilLiteralCursor) peek() (t int64, v interface{}) { re...
method next (line 1953) | func (c *booleanNilLiteralCursor) next() (t int64, v interface{}) { re...
method nextAt (line 1954) | func (c *booleanNilLiteralCursor) nextAt(seek int64) interface{} { re...
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/iterator.go
function newLimitIterator (line 10) | func newLimitIterator(input influxql.Iterator, opt influxql.IteratorOpti...
type floatCastIntegerCursor (line 25) | type floatCastIntegerCursor struct
method close (line 29) | func (c *floatCastIntegerCursor) close() error { return c.cursor.close...
method next (line 31) | func (c *floatCastIntegerCursor) next() (t int64, v interface{}) { ret...
method nextFloat (line 33) | func (c *floatCastIntegerCursor) nextFloat() (int64, float64) {
type integerCastFloatCursor (line 38) | type integerCastFloatCursor struct
method close (line 42) | func (c *integerCastFloatCursor) close() error { return c.cursor.close...
method next (line 44) | func (c *integerCastFloatCursor) next() (t int64, v interface{}) { ret...
method nextInteger (line 46) | func (c *integerCastFloatCursor) nextInteger() (int64, int64) {
type cursorsAt (line 51) | type cursorsAt
method close (line 53) | func (c cursorsAt) close() {
function newMergeFinalizerIterator (line 62) | func newMergeFinalizerIterator(inputs []influxql.Iterator, opt influxql....
function newFinalizerIterator (line 75) | func newFinalizerIterator(itr influxql.Iterator, log zap.Logger) influxq...
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/mmap_solaris.go
function mmap (line 12) | func mmap(f *os.File, offset int64, length int) ([]byte, error) {
function munmap (line 25) | func munmap(b []byte) (err error) {
function madvise (line 30) | func madvise(b []byte, advice int) (err error) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/mmap_unix.go
function mmap (line 10) | func mmap(f *os.File, offset int64, length int) ([]byte, error) {
function munmap (line 19) | func munmap(b []byte) (err error) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/mmap_windows.go
function openSharedFile (line 22) | func openSharedFile(f *os.File) (file *os.File, err error) {
function mmap (line 46) | func mmap(f *os.File, offset int64, length int) (out []byte, err error) {
function munmap (line 84) | func munmap(b []byte) (err error) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/pools.go
function getBuf (line 8) | func getBuf(size int) *[]byte {
function putBuf (line 24) | func putBuf(buf *[]byte) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/reader.go
type TSMReader (line 19) | type TSMReader struct
method applyTombstones (line 216) | func (t *TSMReader) applyTombstones() error {
method Path (line 247) | func (t *TSMReader) Path() string {
method Key (line 255) | func (t *TSMReader) Key(index int) (string, byte, []IndexEntry) {
method KeyAt (line 260) | func (t *TSMReader) KeyAt(idx int) ([]byte, byte) {
method ReadAt (line 265) | func (t *TSMReader) ReadAt(entry *IndexEntry, vals []Value) ([]Value, ...
method ReadFloatBlockAt (line 273) | func (t *TSMReader) ReadFloatBlockAt(entry *IndexEntry, vals *[]FloatV...
method ReadIntegerBlockAt (line 281) | func (t *TSMReader) ReadIntegerBlockAt(entry *IndexEntry, vals *[]Inte...
method ReadStringBlockAt (line 289) | func (t *TSMReader) ReadStringBlockAt(entry *IndexEntry, vals *[]Strin...
method ReadBooleanBlockAt (line 297) | func (t *TSMReader) ReadBooleanBlockAt(entry *IndexEntry, vals *[]Bool...
method Read (line 305) | func (t *TSMReader) Read(key string, timestamp int64) ([]Value, error) {
method ReadAll (line 313) | func (t *TSMReader) ReadAll(key string) ([]Value, error) {
method ReadBytes (line 320) | func (t *TSMReader) ReadBytes(e *IndexEntry, b []byte) (uint32, []byte...
method Type (line 328) | func (t *TSMReader) Type(key string) (byte, error) {
method Close (line 333) | func (t *TSMReader) Close() error {
method Ref (line 351) | func (t *TSMReader) Ref() {
method Unref (line 358) | func (t *TSMReader) Unref() {
method InUse (line 363) | func (t *TSMReader) InUse() bool {
method Remove (line 369) | func (t *TSMReader) Remove() error {
method Rename (line 376) | func (t *TSMReader) Rename(path string) error {
method remove (line 383) | func (t *TSMReader) remove() error {
method Contains (line 401) | func (t *TSMReader) Contains(key string) bool {
method ContainsValue (line 408) | func (t *TSMReader) ContainsValue(key string, ts int64) bool {
method DeleteRange (line 414) | func (t *TSMReader) DeleteRange(keys []string, minTime, maxTime int64)...
method Delete (line 439) | func (t *TSMReader) Delete(keys []string) error {
method TimeRange (line 449) | func (t *TSMReader) TimeRange() (int64, int64) {
method KeyRange (line 454) | func (t *TSMReader) KeyRange() (string, string) {
method KeyCount (line 459) | func (t *TSMReader) KeyCount() int {
method Entries (line 464) | func (t *TSMReader) Entries(key string) []IndexEntry {
method ReadEntries (line 469) | func (t *TSMReader) ReadEntries(key string, entries *[]IndexEntry) {
method IndexSize (line 474) | func (t *TSMReader) IndexSize() uint32 {
method Size (line 479) | func (t *TSMReader) Size() uint32 {
method LastModified (line 487) | func (t *TSMReader) LastModified() int64 {
method HasTombstones (line 500) | func (t *TSMReader) HasTombstones() bool {
method TombstoneFiles (line 508) | func (t *TSMReader) TombstoneFiles() []FileStat {
method TombstoneRange (line 516) | func (t *TSMReader) TombstoneRange(key string) []TimeRange {
method Stats (line 524) | func (t *TSMReader) Stats() FileStat {
method BlockIterator (line 540) | func (t *TSMReader) BlockIterator() *BlockIterator {
type TSMIndex (line 43) | type TSMIndex interface
type BlockIterator (line 107) | type BlockIterator struct
method PeekNext (line 123) | func (b *BlockIterator) PeekNext() string {
method Next (line 134) | func (b *BlockIterator) Next() bool {
method Read (line 159) | func (b *BlockIterator) Read() (key string, minTime int64, maxTime int...
type blockAccessor (line 172) | type blockAccessor interface
function NewTSMReader (line 188) | func NewTSMReader(f *os.File) (*TSMReader, error) {
type indirectIndex (line 549) | type indirectIndex struct
method search (line 620) | func (d *indirectIndex) search(key []byte) int {
method Entries (line 658) | func (d *indirectIndex) Entries(key string) []IndexEntry {
method ReadEntries (line 692) | func (d *indirectIndex) ReadEntries(key string, entries *[]IndexEntry) {
method Entry (line 698) | func (d *indirectIndex) Entry(key string, timestamp int64) *IndexEntry {
method Key (line 709) | func (d *indirectIndex) Key(idx int) (string, byte, []IndexEntry) {
method KeyAt (line 731) | func (d *indirectIndex) KeyAt(idx int) ([]byte, byte) {
method KeyCount (line 745) | func (d *indirectIndex) KeyCount() int {
method Delete (line 753) | func (d *indirectIndex) Delete(keys []string) {
method DeleteRange (line 786) | func (d *indirectIndex) DeleteRange(keys []string, minTime, maxTime in...
method TombstoneRange (line 841) | func (d *indirectIndex) TombstoneRange(key string) []TimeRange {
method Contains (line 849) | func (d *indirectIndex) Contains(key string) bool {
method ContainsValue (line 854) | func (d *indirectIndex) ContainsValue(key string, timestamp int64) bool {
method Type (line 873) | func (d *indirectIndex) Type(key string) (byte, error) {
method OverlapsTimeRange (line 892) | func (d *indirectIndex) OverlapsTimeRange(min, max int64) bool {
method OverlapsKeyRange (line 897) | func (d *indirectIndex) OverlapsKeyRange(min, max string) bool {
method KeyRange (line 902) | func (d *indirectIndex) KeyRange() (string, string) {
method TimeRange (line 907) | func (d *indirectIndex) TimeRange() (int64, int64) {
method MarshalBinary (line 912) | func (d *indirectIndex) MarshalBinary() ([]byte, error) {
method UnmarshalBinary (line 921) | func (d *indirectIndex) UnmarshalBinary(b []byte) error {
method Size (line 1002) | func (d *indirectIndex) Size() uint32 {
type TimeRange (line 607) | type TimeRange struct
function NewIndirectIndex (line 612) | func NewIndirectIndex() *indirectIndex {
type mmapAccessor (line 1011) | type mmapAccessor struct
method init (line 1019) | func (m *mmapAccessor) init() (*indirectIndex, error) {
method rename (line 1060) | func (m *mmapAccessor) rename(path string) error {
method read (line 1099) | func (m *mmapAccessor) read(key string, timestamp int64) ([]Value, err...
method readBlock (line 1108) | func (m *mmapAccessor) readBlock(entry *IndexEntry, values []Value) ([...
method readFloatBlock (line 1125) | func (m *mmapAccessor) readFloatBlock(entry *IndexEntry, values *[]Flo...
method readIntegerBlock (line 1143) | func (m *mmapAccessor) readIntegerBlock(entry *IndexEntry, values *[]I...
method readStringBlock (line 1161) | func (m *mmapAccessor) readStringBlock(entry *IndexEntry, values *[]St...
method readBooleanBlock (line 1179) | func (m *mmapAccessor) readBooleanBlock(entry *IndexEntry, values *[]B...
method readBytes (line 1197) | func (m *mmapAccessor) readBytes(entry *IndexEntry, b []byte) (uint32,...
method readAll (line 1210) | func (m *mmapAccessor) readAll(key string) ([]Value, error) {
method path (line 1256) | func (m *mmapAccessor) path() string {
method close (line 1263) | func (m *mmapAccessor) close() error {
type indexEntries (line 1280) | type indexEntries struct
method Len (line 1285) | func (a *indexEntries) Len() int { return len(a.entries) }
method Swap (line 1286) | func (a *indexEntries) Swap(i, j int) { a.entries[i], a.entries[j] = a...
method Less (line 1287) | func (a *indexEntries) Less(i, j int) bool {
method MarshalBinary (line 1291) | func (a *indexEntries) MarshalBinary() ([]byte, error) {
method WriteTo (line 1301) | func (a *indexEntries) WriteTo(w io.Writer) (total int64, err error) {
function readKey (line 1317) | func readKey(b []byte) (n int, key []byte, err error) {
function readEntries (line 1328) | func readEntries(b []byte, entries *indexEntries) (n int, err error) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/reader_test.go
function TestTSMReader_Type (line 14) | func TestTSMReader_Type(t *testing.T) {
function TestTSMReader_MMAP_ReadAll (line 56) | func TestTSMReader_MMAP_ReadAll(t *testing.T) {
function TestTSMReader_MMAP_Read (line 134) | func TestTSMReader_MMAP_Read(t *testing.T) {
function TestTSMReader_MMAP_Keys (line 211) | func TestTSMReader_MMAP_Keys(t *testing.T) {
function TestTSMReader_MMAP_Tombstone (line 289) | func TestTSMReader_MMAP_Tombstone(t *testing.T) {
function TestTSMReader_MMAP_TombstoneRange (line 342) | func TestTSMReader_MMAP_TombstoneRange(t *testing.T) {
function TestTSMReader_MMAP_TombstoneOutsideTimeRange (line 407) | func TestTSMReader_MMAP_TombstoneOutsideTimeRange(t *testing.T) {
function TestTSMReader_MMAP_TombstoneOutsideKeyRange (line 471) | func TestTSMReader_MMAP_TombstoneOutsideKeyRange(t *testing.T) {
function TestTSMReader_MMAP_TombstoneOverlapKeyRange (line 536) | func TestTSMReader_MMAP_TombstoneOverlapKeyRange(t *testing.T) {
function TestTSMReader_MMAP_TombstoneFullRange (line 604) | func TestTSMReader_MMAP_TombstoneFullRange(t *testing.T) {
function TestTSMReader_MMAP_TombstoneMultipleRanges (line 657) | func TestTSMReader_MMAP_TombstoneMultipleRanges(t *testing.T) {
function TestTSMReader_MMAP_TombstoneOutsideRange (line 716) | func TestTSMReader_MMAP_TombstoneOutsideRange(t *testing.T) {
function TestTSMReader_MMAP_Stats (line 800) | func TestTSMReader_MMAP_Stats(t *testing.T) {
function TestTSMReader_VerifiesFileType (line 863) | func TestTSMReader_VerifiesFileType(t *testing.T) {
function TestIndirectIndex_Entries (line 878) | func TestIndirectIndex_Entries(t *testing.T) {
function TestIndirectIndex_Entries_NonExistent (line 920) | func TestIndirectIndex_Entries_NonExistent(t *testing.T) {
function TestIndirectIndex_MaxBlocks (line 945) | func TestIndirectIndex_MaxBlocks(t *testing.T) {
function TestIndirectIndex_Type (line 958) | func TestIndirectIndex_Type(t *testing.T) {
function TestIndirectIndex_Keys (line 982) | func TestIndirectIndex_Keys(t *testing.T) {
function TestBlockIterator_Single (line 1005) | func TestBlockIterator_Single(t *testing.T) {
function TestBlockIterator_MultipleBlocks (line 1074) | func TestBlockIterator_MultipleBlocks(t *testing.T) {
function TestBlockIterator_Sorted (line 1152) | func TestBlockIterator_Sorted(t *testing.T) {
function TestIndirectIndex_UnmarshalBinary_BlockCountOverflow (line 1222) | func TestIndirectIndex_UnmarshalBinary_BlockCountOverflow(t *testing.T) {
function TestCompacted_NotFull (line 1257) | func TestCompacted_NotFull(t *testing.T) {
function TestTSMReader_File_ReadAll (line 1305) | func TestTSMReader_File_ReadAll(t *testing.T) {
function TestTSMReader_FuzzCrashes (line 1383) | func TestTSMReader_FuzzCrashes(t *testing.T) {
function TestTSMReader_File_Read (line 1452) | func TestTSMReader_File_Read(t *testing.T) {
function TestTSMReader_References (line 1529) | func TestTSMReader_References(t *testing.T) {
function BenchmarkIndirectIndex_UnmarshalBinary (line 1625) | func BenchmarkIndirectIndex_UnmarshalBinary(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/ring.go
constant partitions (line 16) | partitions = 4096
type ring (line 34) | type ring struct
method reset (line 85) | func (r *ring) reset() {
method getPartition (line 94) | func (r *ring) getPartition(key string) *partition {
method entry (line 100) | func (r *ring) entry(key string) (*entry, bool) {
method write (line 107) | func (r *ring) write(key string, values Values) error {
method add (line 112) | func (r *ring) add(key string, entry *entry) {
method remove (line 119) | func (r *ring) remove(key string) {
method keys (line 128) | func (r *ring) keys(sorted bool) []string {
method apply (line 145) | func (r *ring) apply(f func(string, *entry) error) error {
method applySerial (line 187) | func (r *ring) applySerial(f func(string, *entry) error) error {
function newring (line 56) | func newring(n int) (*ring, error) {
type partition (line 202) | type partition struct
method entry (line 215) | func (p *partition) entry(key string) (*entry, bool) {
method write (line 225) | func (p *partition) write(key string, values Values) error {
method add (line 254) | func (p *partition) add(key string, entry *entry) {
method remove (line 262) | func (p *partition) remove(key string) {
method keys (line 269) | func (p *partition) keys() []string {
method reset (line 281) | func (p *partition) reset() {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/ring_test.go
function TestRing_newRing (line 10) | func TestRing_newRing(t *testing.T) {
function benchmarkRingkeys (line 48) | func benchmarkRingkeys(b *testing.B, r *ring, keys int) {
function BenchmarkRing_keys_100 (line 61) | func BenchmarkRing_keys_100(b *testing.B) { benchmarkRingkeys(b, Must...
function BenchmarkRing_keys_1000 (line 62) | func BenchmarkRing_keys_1000(b *testing.B) { benchmarkRingkeys(b, Must...
function BenchmarkRing_keys_10000 (line 63) | func BenchmarkRing_keys_10000(b *testing.B) { benchmarkRingkeys(b, Must...
function BenchmarkRing_keys_100000 (line 64) | func BenchmarkRing_keys_100000(b *testing.B) { benchmarkRingkeys(b, Must...
function benchmarkRingWrite (line 66) | func benchmarkRingWrite(b *testing.B, r *ring, n int) {
function BenchmarkRing_write_1_100 (line 95) | func BenchmarkRing_write_1_100(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_1_1000 (line 96) | func BenchmarkRing_write_1_1000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_1_10000 (line 97) | func BenchmarkRing_write_1_10000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_1_100000 (line 98) | func BenchmarkRing_write_1_100000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_4_100 (line 99) | func BenchmarkRing_write_4_100(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_4_1000 (line 100) | func BenchmarkRing_write_4_1000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_4_10000 (line 101) | func BenchmarkRing_write_4_10000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_4_100000 (line 102) | func BenchmarkRing_write_4_100000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_32_100 (line 103) | func BenchmarkRing_write_32_100(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_32_1000 (line 104) | func BenchmarkRing_write_32_1000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_32_10000 (line 105) | func BenchmarkRing_write_32_10000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_32_100000 (line 106) | func BenchmarkRing_write_32_100000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_128_100 (line 107) | func BenchmarkRing_write_128_100(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_128_1000 (line 108) | func BenchmarkRing_write_128_1000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_128_10000 (line 109) | func BenchmarkRing_write_128_10000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_128_100000 (line 110) | func BenchmarkRing_write_128_100000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_256_100 (line 111) | func BenchmarkRing_write_256_100(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_256_1000 (line 112) | func BenchmarkRing_write_256_1000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_256_10000 (line 113) | func BenchmarkRing_write_256_10000(b *testing.B) { benchmarkRingWrite(b...
function BenchmarkRing_write_256_100000 (line 114) | func BenchmarkRing_write_256_100000(b *testing.B) { benchmarkRingWrite(b...
function MustNewRing (line 116) | func MustNewRing(n int) *ring {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/string.go
constant stringUncompressed (line 18) | stringUncompressed = 0
constant stringCompressedSnappy (line 21) | stringCompressedSnappy = 1
type StringEncoder (line 25) | type StringEncoder struct
method Flush (line 38) | func (e *StringEncoder) Flush() {}
method Reset (line 41) | func (e *StringEncoder) Reset() {
method Write (line 46) | func (e *StringEncoder) Write(s string) {
method Bytes (line 57) | func (e *StringEncoder) Bytes() ([]byte, error) {
function NewStringEncoder (line 31) | func NewStringEncoder(sz int) StringEncoder {
type StringDecoder (line 65) | type StringDecoder struct
method SetBytes (line 74) | func (e *StringDecoder) SetBytes(b []byte) error {
method Next (line 95) | func (e *StringDecoder) Next() bool {
method Read (line 105) | func (e *StringDecoder) Read() string {
method Error (line 131) | func (e *StringDecoder) Error() error {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/string_test.go
function Test_StringEncoder_NoValues (line 10) | func Test_StringEncoder_NoValues(t *testing.T) {
function Test_StringEncoder_Single (line 26) | func Test_StringEncoder_Single(t *testing.T) {
function Test_StringEncoder_Multi_Compressed (line 48) | func Test_StringEncoder_Multi_Compressed(t *testing.T) {
function Test_StringEncoder_Quick (line 89) | func Test_StringEncoder_Quick(t *testing.T) {
function Test_StringDecoder_Empty (line 129) | func Test_StringDecoder_Empty(t *testing.T) {
function Test_StringDecoder_CorruptRead (line 140) | func Test_StringDecoder_CorruptRead(t *testing.T) {
function Test_StringDecoder_CorruptSetBytes (line 163) | func Test_StringDecoder_CorruptSetBytes(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/timestamp.go
constant timeUncompressed (line 45) | timeUncompressed = 0
constant timeCompressedPackedSimple (line 47) | timeCompressedPackedSimple = 1
constant timeCompressedRLE (line 49) | timeCompressedRLE = 2
type TimeEncoder (line 53) | type TimeEncoder interface
type encoder (line 59) | type encoder struct
method Reset (line 74) | func (e *encoder) Reset() {
method Write (line 81) | func (e *encoder) Write(t int64) {
method reduce (line 85) | func (e *encoder) reduce() (max, divisor uint64, rle bool, deltas []ui...
method Bytes (line 119) | func (e *encoder) Bytes() ([]byte, error) {
method encodePacked (line 141) | func (e *encoder) encodePacked(div uint64, dts []uint64) ([]byte, erro...
method encodeRaw (line 181) | func (e *encoder) encodeRaw() ([]byte, error) {
method encodeRLE (line 194) | func (e *encoder) encodeRLE(first, delta, div uint64, n int) ([]byte, ...
function NewTimeEncoder (line 66) | func NewTimeEncoder(sz int) TimeEncoder {
type TimeDecoder (line 219) | type TimeDecoder struct
method Init (line 233) | func (d *TimeDecoder) Init(b []byte) {
method Next (line 246) | func (d *TimeDecoder) Next() bool {
method Read (line 269) | func (d *TimeDecoder) Read() int64 {
method Error (line 274) | func (d *TimeDecoder) Error() error {
method decode (line 278) | func (d *TimeDecoder) decode(b []byte) {
method decodePacked (line 295) | func (d *TimeDecoder) decodePacked(b []byte) {
method decodeRLE (line 332) | func (d *TimeDecoder) decodeRLE(b []byte) {
method decodeRaw (line 373) | func (d *TimeDecoder) decodeRaw(b []byte) {
function CountTimestamps (line 387) | func CountTimestamps(b []byte) int {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/timestamp_test.go
function Test_TimeEncoder (line 10) | func Test_TimeEncoder(t *testing.T) {
function Test_TimeEncoder_NoValues (line 44) | func Test_TimeEncoder_NoValues(t *testing.T) {
function Test_TimeEncoder_One (line 58) | func Test_TimeEncoder_One(t *testing.T) {
function Test_TimeEncoder_Two (line 83) | func Test_TimeEncoder_Two(t *testing.T) {
function Test_TimeEncoder_Three (line 118) | func Test_TimeEncoder_Three(t *testing.T) {
function Test_TimeEncoder_Large_Range (line 164) | func Test_TimeEncoder_Large_Range(t *testing.T) {
function Test_TimeEncoder_Uncompressed (line 198) | func Test_TimeEncoder_Uncompressed(t *testing.T) {
function Test_TimeEncoder_RLE (line 250) | func Test_TimeEncoder_RLE(t *testing.T) {
function Test_TimeEncoder_Reverse (line 291) | func Test_TimeEncoder_Reverse(t *testing.T) {
function Test_TimeEncoder_220SecondDelta (line 323) | func Test_TimeEncoder_220SecondDelta(t *testing.T) {
function Test_TimeEncoder_Quick (line 368) | func Test_TimeEncoder_Quick(t *testing.T) {
function Test_TimeEncoder_RLESeconds (line 404) | func Test_TimeEncoder_RLESeconds(t *testing.T) {
function TestTimeEncoder_Count_Uncompressed (line 445) | func TestTimeEncoder_Count_Uncompressed(t *testing.T) {
function TestTimeEncoder_Count_RLE (line 471) | func TestTimeEncoder_Count_RLE(t *testing.T) {
function TestTimeEncoder_Count_Simple8 (line 500) | func TestTimeEncoder_Count_Simple8(t *testing.T) {
function TestTimeDecoder_Corrupt (line 528) | func TestTimeDecoder_Corrupt(t *testing.T) {
function BenchmarkTimeEncoder (line 547) | func BenchmarkTimeEncoder(b *testing.B) {
function BenchmarkTimeDecoder_Packed (line 565) | func BenchmarkTimeDecoder_Packed(b *testing.B) {
function BenchmarkTimeDecoder_RLE (line 584) | func BenchmarkTimeDecoder_RLE(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/tombstone.go
constant v2header (line 16) | v2header = 0x1502
constant v2headerSize (line 17) | v2headerSize = 4
type Tombstoner (line 21) | type Tombstoner struct
method Add (line 46) | func (t *Tombstoner) Add(keys []string) error {
method AddRange (line 51) | func (t *Tombstoner) AddRange(keys []string, min, max int64) error {
method ReadAll (line 90) | func (t *Tombstoner) ReadAll() ([]Tombstone, error) {
method Delete (line 95) | func (t *Tombstoner) Delete() error {
method HasTombstones (line 106) | func (t *Tombstoner) HasTombstones() bool {
method TombstoneFiles (line 112) | func (t *Tombstoner) TombstoneFiles() []FileStat {
method Walk (line 146) | func (t *Tombstoner) Walk(fn func(t Tombstone) error) error {
method writeTombstone (line 173) | func (t *Tombstoner) writeTombstone(tombstones []Tombstone) error {
method readTombstone (line 227) | func (t *Tombstoner) readTombstone() ([]Tombstone, error) {
method readTombstoneV1 (line 243) | func (t *Tombstoner) readTombstoneV1(f *os.File, fn func(t Tombstone) ...
method readTombstoneV2 (line 264) | func (t *Tombstoner) readTombstoneV2(f *os.File, fn func(t Tombstone) ...
method tombstonePath (line 326) | func (t *Tombstoner) tombstonePath() string {
type Tombstone (line 36) | type Tombstone struct
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/tombstone_test.go
function TestTombstoner_Add (line 11) | func TestTombstoner_Add(t *testing.T) {
function TestTombstoner_Add_Empty (line 80) | func TestTombstoner_Add_Empty(t *testing.T) {
function TestTombstoner_Delete (line 116) | func TestTombstoner_Delete(t *testing.T) {
function TestTombstoner_ReadV1 (line 160) | func TestTombstoner_ReadV1(t *testing.T) {
function TestTombstoner_ReadEmptyV1 (line 210) | func TestTombstoner_ReadEmptyV1(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/wal.go
constant DefaultSegmentSize (line 28) | DefaultSegmentSize = 10 * 1024 * 1024
constant WALFileExtension (line 31) | WALFileExtension = "wal"
constant WALFilePrefix (line 34) | WALFilePrefix = "_"
constant walEncodeBufSize (line 37) | walEncodeBufSize = 4 * 1024 * 1024
constant float64EntryType (line 39) | float64EntryType = 1
constant integerEntryType (line 40) | integerEntryType = 2
constant booleanEntryType (line 41) | booleanEntryType = 3
constant stringEntryType (line 42) | stringEntryType = 4
type WalEntryType (line 46) | type WalEntryType
constant WriteWALEntryType (line 50) | WriteWALEntryType WalEntryType = 0x01
constant DeleteWALEntryType (line 53) | DeleteWALEntryType WalEntryType = 0x02
constant DeleteRangeWALEntryType (line 56) | DeleteRangeWALEntryType WalEntryType = 0x03
constant statWALOldBytes (line 74) | statWALOldBytes = "oldSegmentsDiskBytes"
constant statWALCurrentBytes (line 75) | statWALCurrentBytes = "currentSegmentDiskBytes"
constant statWriteOk (line 76) | statWriteOk = "writeOk"
constant statWriteErr (line 77) | statWriteErr = "writeErr"
type WAL (line 81) | type WAL struct
method enableTraceLogging (line 135) | func (l *WAL) enableTraceLogging(enabled bool) {
method WithLogger (line 143) | func (l *WAL) WithLogger(log zap.Logger) {
method Statistics (line 160) | func (l *WAL) Statistics(tags map[string]string) []models.Statistic {
method Path (line 174) | func (l *WAL) Path() string {
method Open (line 181) | func (l *WAL) Open() error {
method scheduleSync (line 241) | func (l *WAL) scheduleSync() {
method sync (line 286) | func (l *WAL) sync() {
method WriteMulti (line 297) | func (l *WAL) WriteMulti(values map[string][]Value) (int, error) {
method ClosedSegments (line 313) | func (l *WAL) ClosedSegments() ([]string, error) {
method Remove (line 345) | func (l *WAL) Remove(files []string) error {
method LastWriteTime (line 374) | func (l *WAL) LastWriteTime() time.Time {
method DiskSizeBytes (line 380) | func (l *WAL) DiskSizeBytes() int64 {
method writeToLog (line 384) | func (l *WAL) writeToLog(entry WALEntry) (int, error) {
method rollSegment (line 452) | func (l *WAL) rollSegment() error {
method CloseSegment (line 466) | func (l *WAL) CloseSegment() error {
method Delete (line 481) | func (l *WAL) Delete(keys []string) (int, error) {
method DeleteRange (line 498) | func (l *WAL) DeleteRange(keys []string, min, max int64) (int, error) {
method Close (line 516) | func (l *WAL) Close() error {
method newSegmentFile (line 546) | func (l *WAL) newSegmentFile() error {
function NewWAL (line 118) | func NewWAL(path string) *WAL {
type WALStatistics (line 152) | type WALStatistics struct
function segmentFileNames (line 536) | func segmentFileNames(dir string) ([]string, error) {
type WALEntry (line 576) | type WALEntry interface
type WriteWALEntry (line 585) | type WriteWALEntry struct
method MarshalSize (line 590) | func (w *WriteWALEntry) MarshalSize() int {
method Encode (line 632) | func (w *WriteWALEntry) Encode(dst []byte) ([]byte, error) {
method MarshalBinary (line 731) | func (w *WriteWALEntry) MarshalBinary() ([]byte, error) {
method UnmarshalBinary (line 738) | func (w *WriteWALEntry) UnmarshalBinary(b []byte) error {
method Type (line 850) | func (w *WriteWALEntry) Type() WalEntryType {
type DeleteWALEntry (line 855) | type DeleteWALEntry struct
method MarshalBinary (line 861) | func (w *DeleteWALEntry) MarshalBinary() ([]byte, error) {
method UnmarshalBinary (line 867) | func (w *DeleteWALEntry) UnmarshalBinary(b []byte) error {
method MarshalSize (line 872) | func (w *DeleteWALEntry) MarshalSize() int {
method Encode (line 888) | func (w *DeleteWALEntry) Encode(dst []byte) ([]byte, error) {
method Type (line 907) | func (w *DeleteWALEntry) Type() WalEntryType {
type DeleteRangeWALEntry (line 912) | type DeleteRangeWALEntry struct
method MarshalBinary (line 919) | func (w *DeleteRangeWALEntry) MarshalBinary() ([]byte, error) {
method UnmarshalBinary (line 925) | func (w *DeleteRangeWALEntry) UnmarshalBinary(b []byte) error {
method MarshalSize (line 950) | func (w *DeleteRangeWALEntry) MarshalSize() int {
method Encode (line 966) | func (w *DeleteRangeWALEntry) Encode(b []byte) ([]byte, error) {
method Type (line 987) | func (w *DeleteRangeWALEntry) Type() WalEntryType {
type WALSegmentWriter (line 992) | type WALSegmentWriter struct
method path (line 1006) | func (w *WALSegmentWriter) path() string {
method Write (line 1014) | func (w *WALSegmentWriter) Write(entryType WalEntryType, compressed []...
method sync (line 1034) | func (w *WALSegmentWriter) sync() error {
method Flush (line 1045) | func (w *WALSegmentWriter) Flush() error {
method close (line 1049) | func (w *WALSegmentWriter) close() error {
function NewWALSegmentWriter (line 999) | func NewWALSegmentWriter(w io.WriteCloser) *WALSegmentWriter {
type WALSegmentReader (line 1057) | type WALSegmentReader struct
method Reset (line 1073) | func (r *WALSegmentReader) Reset(rc io.ReadCloser) {
method Next (line 1082) | func (r *WALSegmentReader) Next() bool {
method Read (line 1152) | func (r *WALSegmentReader) Read() (WALEntry, error) {
method Count (line 1162) | func (r *WALSegmentReader) Count() int64 {
method Error (line 1167) | func (r *WALSegmentReader) Error() error {
method Close (line 1172) | func (r *WALSegmentReader) Close() error {
function NewWALSegmentReader (line 1066) | func NewWALSegmentReader(r io.ReadCloser) *WALSegmentReader {
function idFromFileName (line 1182) | func idFromFileName(name string) (int, error) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/wal_test.go
function TestWALWriter_WriteMulti_Single (line 14) | func TestWALWriter_WriteMulti_Single(t *testing.T) {
function TestWALWriter_WriteMulti_LargeBatch (line 77) | func TestWALWriter_WriteMulti_LargeBatch(t *testing.T) {
function TestWALWriter_WriteMulti_Multiple (line 137) | func TestWALWriter_WriteMulti_Multiple(t *testing.T) {
function TestWALWriter_WriteDelete_Single (line 211) | func TestWALWriter_WriteDelete_Single(t *testing.T) {
function TestWALWriter_WriteMultiDelete_Multiple (line 258) | func TestWALWriter_WriteMultiDelete_Multiple(t *testing.T) {
function TestWALWriter_WriteMultiDeleteRange_Multiple (line 352) | func TestWALWriter_WriteMultiDeleteRange_Multiple(t *testing.T) {
function TestWAL_ClosedSegments (line 460) | func TestWAL_ClosedSegments(t *testing.T) {
function TestWAL_Delete (line 506) | func TestWAL_Delete(t *testing.T) {
function TestWALWriter_Corrupt (line 548) | func TestWALWriter_Corrupt(t *testing.T) {
function TestWriteWALSegment_UnmarshalBinary_WriteWALCorrupt (line 605) | func TestWriteWALSegment_UnmarshalBinary_WriteWALCorrupt(t *testing.T) {
function TestWriteWALSegment_UnmarshalBinary_DeleteWALCorrupt (line 639) | func TestWriteWALSegment_UnmarshalBinary_DeleteWALCorrupt(t *testing.T) {
function TestWriteWALSegment_UnmarshalBinary_DeleteRangeWALCorrupt (line 661) | func TestWriteWALSegment_UnmarshalBinary_DeleteRangeWALCorrupt(t *testin...
function BenchmarkWALSegmentWriter (line 685) | func BenchmarkWALSegmentWriter(b *testing.B) {
function BenchmarkWALSegmentReader (line 710) | func BenchmarkWALSegmentReader(b *testing.B) {
function MustReadFileSize (line 751) | func MustReadFileSize(f *os.File) int64 {
function mustMarshalEntry (line 759) | func mustMarshalEntry(entry tsm1.WALEntry) (tsm1.WalEntryType, []byte) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/writer.go
constant MagicNumber (line 81) | MagicNumber uint32 = 0x16D116D1
constant Version (line 84) | Version byte = 1
constant indexEntrySize (line 87) | indexEntrySize = 28
constant indexCountSize (line 90) | indexCountSize = 2
constant indexTypeSize (line 93) | indexTypeSize = 1
constant maxIndexEntries (line 96) | maxIndexEntries = (1 << (indexCountSize * 8)) - 1
constant maxKeyLength (line 99) | maxKeyLength = (1 << (2 * 8)) - 1
type TSMWriter (line 117) | type TSMWriter interface
type IndexWriter (line 148) | type IndexWriter interface
type IndexEntry (line 172) | type IndexEntry struct
method UnmarshalBinary (line 184) | func (e *IndexEntry) UnmarshalBinary(b []byte) error {
method AppendTo (line 197) | func (e *IndexEntry) AppendTo(b []byte) []byte {
method Contains (line 216) | func (e *IndexEntry) Contains(t int64) bool {
method OverlapsTimeRange (line 221) | func (e *IndexEntry) OverlapsTimeRange(min, max int64) bool {
method String (line 226) | func (e *IndexEntry) String() string {
function NewIndexWriter (line 232) | func NewIndexWriter() IndexWriter {
type directIndex (line 240) | type directIndex struct
method Add (line 246) | func (d *directIndex) Add(key string, blockType byte, minTime, maxTime...
method entries (line 273) | func (d *directIndex) entries(key string) []IndexEntry {
method Entries (line 281) | func (d *directIndex) Entries(key string) []IndexEntry {
method Entry (line 288) | func (d *directIndex) Entry(key string, t int64) *IndexEntry {
method Keys (line 301) | func (d *directIndex) Keys() []string {
method KeyCount (line 313) | func (d *directIndex) KeyCount() int {
method addEntries (line 320) | func (d *directIndex) addEntries(key string, entries *indexEntries) {
method WriteTo (line 329) | func (d *directIndex) WriteTo(w io.Writer) (int64, error) {
method MarshalBinary (line 388) | func (d *directIndex) MarshalBinary() ([]byte, error) {
method UnmarshalBinary (line 396) | func (d *directIndex) UnmarshalBinary(b []byte) error {
method Size (line 422) | func (d *directIndex) Size() uint32 {
type tsmWriter (line 427) | type tsmWriter struct
method writeHeader (line 443) | func (t *tsmWriter) writeHeader() error {
method Write (line 457) | func (t *tsmWriter) Write(key string, values Values) error {
method WriteBlock (line 509) | func (t *tsmWriter) WriteBlock(key string, minTime, maxTime int64, blo...
method WriteIndex (line 560) | func (t *tsmWriter) WriteIndex() error {
method Flush (line 580) | func (t *tsmWriter) Flush() error {
method Close (line 593) | func (t *tsmWriter) Close() error {
method Size (line 604) | func (t *tsmWriter) Size() uint32 {
function NewTSMWriter (line 435) | func NewTSMWriter(w io.Writer) (TSMWriter, error) {
function verifyVersion (line 610) | func verifyVersion(r io.ReadSeeker) error {
FILE: vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/writer_test.go
function TestTSMWriter_Write_Empty (line 14) | func TestTSMWriter_Write_Empty(t *testing.T) {
function TestTSMWriter_Write_NoValues (line 30) | func TestTSMWriter_Write_NoValues(t *testing.T) {
function TestTSMWriter_Write_Single (line 50) | func TestTSMWriter_Write_Single(t *testing.T) {
function TestTSMWriter_Write_Multiple (line 116) | func TestTSMWriter_Write_Multiple(t *testing.T) {
function TestTSMWriter_Write_MultipleKeyValues (line 177) | func TestTSMWriter_Write_MultipleKeyValues(t *testing.T) {
function TestTSMWriter_Write_ReverseKeys (line 245) | func TestTSMWriter_Write_ReverseKeys(t *testing.T) {
function TestTSMWriter_Write_SameKey (line 313) | func TestTSMWriter_Write_SameKey(t *testing.T) {
function TestTSMWriter_Read_Multiple (line 382) | func TestTSMWriter_Read_Multiple(t *testing.T) {
function TestTSMWriter_WriteBlock_Empty (line 466) | func TestTSMWriter_WriteBlock_Empty(t *testing.T) {
function TestTSMWriter_WriteBlock_Multiple (line 500) | func TestTSMWriter_WriteBlock_Multiple(t *testing.T) {
function TestTSMWriter_WriteBlock_MaxKey (line 615) | func TestTSMWriter_WriteBlock_MaxKey(t *testing.T) {
function TestTSMWriter_Write_MaxKey (line 635) | func TestTSMWriter_Write_MaxKey(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index.go
type Index (line 15) | type Index interface
type IndexFormat (line 64) | type IndexFormat
constant InMemFormat (line 68) | InMemFormat IndexFormat = 1
constant TSI1Format (line 71) | TSI1Format IndexFormat = 2
type NewIndexFunc (line 75) | type NewIndexFunc
function RegisterIndex (line 81) | func RegisterIndex(name string, fn NewIndexFunc) {
function RegisteredIndexes (line 89) | func RegisteredIndexes() []string {
function NewIndex (line 100) | func NewIndex(id uint64, database, path string, options EngineOptions) (...
function MustOpenIndex (line 121) | func MustOpenIndex(id uint64, database, path string, options EngineOptio...
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/inmem/inmem.go
constant IndexName (line 33) | IndexName = "inmem"
function init (line 35) | func init() {
type Index (line 46) | type Index struct
method Type (line 76) | func (i *Index) Type() string { return IndexName }
method Open (line 77) | func (i *Index) Open() (err error) { return nil }
method Close (line 78) | func (i *Index) Close() error { return nil }
method WithLogger (line 80) | func (i *Index) WithLogger(zap.Logger) {}
method Series (line 83) | func (i *Index) Series(key []byte) (*Series, error) {
method SeriesSketches (line 91) | func (i *Index) SeriesSketches() (estimator.Sketch, estimator.Sketch, ...
method SeriesN (line 100) | func (i *Index) SeriesN() int64 {
method Measurement (line 108) | func (i *Index) Measurement(name []byte) (*Measurement, error) {
method MeasurementExists (line 115) | func (i *Index) MeasurementExists(name []byte) (bool, error) {
method MeasurementsSketches (line 122) | func (i *Index) MeasurementsSketches() (estimator.Sketch, estimator.Sk...
method MeasurementsByName (line 129) | func (i *Index) MeasurementsByName(names [][]byte) ([]*Measurement, er...
method CreateSeriesIfNotExists (line 144) | func (i *Index) CreateSeriesIfNotExists(shardID uint64, key, name []by...
method CreateMeasurementIndexIfNotExists (line 196) | func (i *Index) CreateMeasurementIndexIfNotExists(name []byte) *Measur...
method HasTagKey (line 226) | func (i *Index) HasTagKey(name, key []byte) (bool, error) {
method HasTagValue (line 238) | func (i *Index) HasTagValue(name, key, value []byte) bool {
method TagValueN (line 250) | func (i *Index) TagValueN(name, key []byte) int {
method MeasurementTagKeysByExpr (line 262) | func (i *Index) MeasurementTagKeysByExpr(name []byte, expr influxql.Ex...
method MeasurementTagKeyValuesByExpr (line 277) | func (i *Index) MeasurementTagKeyValuesByExpr(name []byte, keys []stri...
method ForEachMeasurementTagKey (line 342) | func (i *Index) ForEachMeasurementTagKey(name []byte, fn func(key []by...
method TagKeyCardinality (line 364) | func (i *Index) TagKeyCardinality(name, key []byte) int {
method TagsForSeries (line 376) | func (i *Index) TagsForSeries(key string) (models.Tags, error) {
method MeasurementNamesByExpr (line 389) | func (i *Index) MeasurementNamesByExpr(expr influxql.Expr) ([][]byte, ...
method measurementNamesByExpr (line 406) | func (i *Index) measurementNamesByExpr(expr influxql.Expr) ([][]byte, ...
method measurementNamesByNameFilter (line 472) | func (i *Index) measurementNamesByNameFilter(op influxql.Token, val st...
method measurementNamesByTagFilters (line 497) | func (i *Index) measurementNamesByTagFilters(filter *TagFilter) [][]by...
method MeasurementNamesByRegex (line 547) | func (i *Index) MeasurementNamesByRegex(re *regexp.Regexp) ([][]byte, ...
method DropMeasurement (line 562) | func (i *Index) DropMeasurement(name []byte) error {
method dropMeasurement (line 568) | func (i *Index) dropMeasurement(name string) error {
method DropSeries (line 586) | func (i *Index) DropSeries(key []byte) error {
method ForEachMeasurementSeriesByExpr (line 618) | func (i *Index) ForEachMeasurementSeriesByExpr(name []byte, expr influ...
method TagSets (line 635) | func (i *Index) TagSets(shardID uint64, name []byte, opt influxql.Iter...
method SeriesKeys (line 652) | func (i *Index) SeriesKeys() []string {
method SetFieldSet (line 663) | func (i *Index) SetFieldSet(*tsdb.MeasurementFieldSet) {}
method SetFieldName (line 666) | func (i *Index) SetFieldName(measurement []byte, name string) {
method ForEachMeasurementName (line 672) | func (i *Index) ForEachMeasurementName(fn func(name []byte) error) err...
method MeasurementSeriesKeysByExpr (line 690) | func (i *Index) MeasurementSeriesKeysByExpr(name []byte, condition inf...
method SeriesPointIterator (line 724) | func (i *Index) SeriesPointIterator(opt influxql.IteratorOptions) (inf...
method SnapshotTo (line 742) | func (i *Index) SnapshotTo(path string) error { return nil }
method AssignShard (line 745) | func (i *Index) AssignShard(k string, shardID uint64) {
method UnassignShard (line 754) | func (i *Index) UnassignShard(k string, shardID uint64) error {
method RemoveShard (line 774) | func (i *Index) RemoveShard(shardID uint64) {
method assignExistingSeries (line 782) | func (i *Index) assignExistingSeries(shardID uint64, keys, names [][]b...
function NewIndex (line 61) | func NewIndex(database string) *Index {
type ShardIndex (line 805) | type ShardIndex struct
method CreateSeriesListIfNotExists (line 813) | func (idx *ShardIndex) CreateSeriesListIfNotExists(keys, names [][]byt...
method InitializeSeries (line 891) | func (i *ShardIndex) InitializeSeries(key, name []byte, tags models.Ta...
method CreateSeriesIfNotExists (line 895) | func (i *ShardIndex) CreateSeriesIfNotExists(key, name []byte, tags mo...
method TagSets (line 900) | func (i *ShardIndex) TagSets(name []byte, opt influxql.IteratorOptions...
function NewShardIndex (line 905) | func NewShardIndex(id uint64, database, path string, opt tsdb.EngineOpti...
type seriesPointIterator (line 914) | type seriesPointIterator struct
method Stats (line 926) | func (itr *seriesPointIterator) Stats() influxql.IteratorStats { retur...
method Close (line 929) | func (itr *seriesPointIterator) Close() error { return nil }
method Next (line 932) | func (itr *seriesPointIterator) Next() (*influxql.FloatPoint, error) {
method nextKeys (line 960) | func (itr *seriesPointIterator) nextKeys() error {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/inmem/meta.go
type Measurement (line 19) | type Measurement struct
method HasField (line 48) | func (m *Measurement) HasField(name string) bool {
method SeriesByID (line 56) | func (m *Measurement) SeriesByID(id uint64) *Series {
method SeriesByIDMap (line 63) | func (m *Measurement) SeriesByIDMap() map[uint64]*Series {
method SeriesByIDSlice (line 70) | func (m *Measurement) SeriesByIDSlice(ids []uint64) []*Series {
method AppendSeriesKeysByID (line 81) | func (m *Measurement) AppendSeriesKeysByID(dst []string, ids []uint64)...
method SeriesKeysByID (line 93) | func (m *Measurement) SeriesKeysByID(ids SeriesIDs) [][]byte {
method SeriesKeys (line 108) | func (m *Measurement) SeriesKeys() [][]byte {
method SeriesIDs (line 118) | func (m *Measurement) SeriesIDs() SeriesIDs {
method HasTagKey (line 149) | func (m *Measurement) HasTagKey(k string) bool {
method HasTagKeyValue (line 156) | func (m *Measurement) HasTagKeyValue(k, v []byte) bool {
method HasSeries (line 168) | func (m *Measurement) HasSeries() bool {
method Cardinality (line 175) | func (m *Measurement) Cardinality(key string) int {
method cardinality (line 183) | func (m *Measurement) cardinality(key string) int {
method CardinalityBytes (line 188) | func (m *Measurement) CardinalityBytes(key []byte) int {
method AddSeries (line 198) | func (m *Measurement) AddSeries(s *Series) bool {
method DropSeries (line 241) | func (m *Measurement) DropSeries(series *Series) {
method filters (line 277) | func (m *Measurement) filters(condition influxql.Expr) ([]uint64, map[...
method ForEachSeriesByExpr (line 285) | func (m *Measurement) ForEachSeriesByExpr(condition influxql.Expr, fn ...
method TagSets (line 311) | func (m *Measurement) TagSets(shardID uint64, opt influxql.IteratorOpt...
method IDsForExpr (line 532) | func (m *Measurement) IDsForExpr(n *influxql.BinaryExpr) SeriesIDs {
method idsForExpr (line 539) | func (m *Measurement) idsForExpr(n *influxql.BinaryExpr) (SeriesIDs, i...
method WalkWhereForSeriesIds (line 727) | func (m *Measurement) WalkWhereForSeriesIds(expr influxql.Expr) (Serie...
method expandExpr (line 791) | func (m *Measurement) expandExpr(expr influxql.Expr) []tagSetExpr {
method SeriesIDsAllOrByExpr (line 849) | func (m *Measurement) SeriesIDsAllOrByExpr(expr influxql.Expr) (Series...
method TagKeysByExpr (line 873) | func (m *Measurement) TagKeysByExpr(expr influxql.Expr) (map[string]st...
method tagKeysByFilter (line 933) | func (m *Measurement) tagKeysByFilter(op influxql.Token, val string, r...
method uniqueTagValues (line 992) | func (m *Measurement) uniqueTagValues(expr influxql.Expr) map[string][...
method WalkTagKeys (line 1410) | func (m *Measurement) WalkTagKeys(fn func(k string)) {
method TagKeys (line 1420) | func (m *Measurement) TagKeys() []string {
method TagValues (line 1432) | func (m *Measurement) TagValues(key string) []string {
method SetFieldName (line 1443) | func (m *Measurement) SetFieldName(name string) {
method FieldNames (line 1457) | func (m *Measurement) FieldNames() []string {
method SeriesByTagKeyValue (line 1468) | func (m *Measurement) SeriesByTagKeyValue(key string) map[string]Serie...
function NewMeasurement (line 36) | func NewMeasurement(database, name string) *Measurement {
function intersectSeriesFilters (line 399) | func intersectSeriesFilters(lids, rids SeriesIDs, lfilters, rfilters Fil...
function unionSeriesFilters (line 453) | func unionSeriesFilters(lids, rids SeriesIDs, lfilters, rfilters FilterE...
type FilterExprs (line 705) | type FilterExprs
method DeleteBoolLiteralTrues (line 708) | func (fe FilterExprs) DeleteBoolLiteralTrues() {
method Len (line 717) | func (fe FilterExprs) Len() int {
function expandExprWithValues (line 812) | func expandExprWithValues(expr influxql.Expr, keys []string, tagExprs []...
type tagValuer (line 957) | type tagValuer struct
method Value (line 962) | func (v *tagValuer) Value(name string) (interface{}, bool) {
type tagSetExpr (line 973) | type tagSetExpr struct
type tagExpr (line 979) | type tagExpr struct
function copyTagExprs (line 985) | func copyTagExprs(a []tagExpr) []tagExpr {
type Measurements (line 1042) | type Measurements
method Len (line 1045) | func (a Measurements) Len() int { return len(a) }
method Less (line 1048) | func (a Measurements) Less(i, j int) bool { return a[i].Name < a[j].Na...
method Swap (line 1051) | func (a Measurements) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Intersect (line 1053) | func (a Measurements) Intersect(other Measurements) Measurements {
method Union (line 1083) | func (a Measurements) Union(other Measurements) Measurements {
type Series (line 1111) | type Series struct
method AssignShard (line 1129) | func (s *Series) AssignShard(shardID uint64) {
method UnassignShard (line 1145) | func (s *Series) UnassignShard(shardID uint64) {
method Assigned (line 1151) | func (s *Series) Assigned(shardID uint64) bool {
method ShardN (line 1158) | func (s *Series) ShardN() int {
method Measurement (line 1166) | func (s *Series) Measurement() *Measurement {
method SetMeasurement (line 1171) | func (s *Series) SetMeasurement(m *Measurement) {
method ForEachTag (line 1176) | func (s *Series) ForEachTag(fn func(models.Tag)) {
method Tags (line 1185) | func (s *Series) Tags() models.Tags {
method CopyTags (line 1192) | func (s *Series) CopyTags() {
method GetTagString (line 1199) | func (s *Series) GetTagString(key string) string {
function NewSeries (line 1121) | func NewSeries(key []byte, tags models.Tags) *Series {
type SeriesIDs (line 1207) | type SeriesIDs
method Len (line 1210) | func (a SeriesIDs) Len() int { return len(a) }
method Less (line 1213) | func (a SeriesIDs) Less(i, j int) bool { return a[i] < a[j] }
method Swap (line 1216) | func (a SeriesIDs) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Equals (line 1219) | func (a SeriesIDs) Equals(other SeriesIDs) bool {
method Intersect (line 1233) | func (a SeriesIDs) Intersect(other SeriesIDs) SeriesIDs {
method Union (line 1265) | func (a SeriesIDs) Union(other SeriesIDs) SeriesIDs {
method Reject (line 1296) | func (a SeriesIDs) Reject(other SeriesIDs) SeriesIDs {
type seriesID (line 1324) | type seriesID struct
type evictSeriesIDs (line 1331) | type evictSeriesIDs struct
method mark (line 1351) | func (a *evictSeriesIDs) mark(ids []uint64) {
method evict (line 1384) | func (a *evictSeriesIDs) evict() (ids SeriesIDs) {
function newEvictSeriesIDs (line 1338) | func newEvictSeriesIDs(ids []uint64) evictSeriesIDs {
type TagFilter (line 1401) | type TagFilter struct
type stringSet (line 1476) | type stringSet
method add (line 1484) | func (s stringSet) add(ss ...string) {
method list (line 1491) | func (s stringSet) list() []string {
method union (line 1501) | func (s stringSet) union(o stringSet) stringSet {
method intersect (line 1513) | func (s stringSet) intersect(o stringSet) stringSet {
function newStringSet (line 1479) | func newStringSet() stringSet {
function filter (line 1530) | func filter(a []uint64, v uint64) []uint64 {
type byTagKey (line 1542) | type byTagKey
method Len (line 1544) | func (t byTagKey) Len() int { return len(t) }
method Less (line 1545) | func (t byTagKey) Less(i, j int) bool { return bytes.Compare(t[i].Key,...
method Swap (line 1546) | func (t byTagKey) Swap(i, j int) { t[i], t[j] = t[j], t[i] }
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/inmem/meta_test.go
function TestSeriesIDs_Equals (line 14) | func TestSeriesIDs_Equals(t *testing.T) {
function TestSeriesIDs_Intersect (line 27) | func TestSeriesIDs_Intersect(t *testing.T) {
function TestSeriesIDs_Union (line 50) | func TestSeriesIDs_Union(t *testing.T) {
function TestSeriesIDs_Reject (line 73) | func TestSeriesIDs_Reject(t *testing.T) {
function TestMeasurement_AppendSeriesKeysByID_Missing (line 95) | func TestMeasurement_AppendSeriesKeysByID_Missing(t *testing.T) {
function TestMeasurement_AppendSeriesKeysByID_Exists (line 104) | func TestMeasurement_AppendSeriesKeysByID_Exists(t *testing.T) {
function TestMeasurement_TagsSet_Deadlock (line 121) | func TestMeasurement_TagsSet_Deadlock(t *testing.T) {
function TestMeasurement_ForEachSeriesByExpr_Deadlock (line 140) | func TestMeasurement_ForEachSeriesByExpr_Deadlock(t *testing.T) {
function BenchmarkMeasurement_SeriesIDForExp_EQRegex (line 161) | func BenchmarkMeasurement_SeriesIDForExp_EQRegex(b *testing.B) {
function BenchmarkMeasurement_SeriesIDForExp_NERegex (line 192) | func BenchmarkMeasurement_SeriesIDForExp_NERegex(b *testing.B) {
function benchmarkTagSets (line 224) | func benchmarkTagSets(b *testing.B, n int, opt influxql.IteratorOptions) {
function BenchmarkMeasurement_TagSetsNoDimensions_1000 (line 244) | func BenchmarkMeasurement_TagSetsNoDimensions_1000(b *testing.B) {
function BenchmarkMeasurement_TagSetsDimensions_1000 (line 248) | func BenchmarkMeasurement_TagSetsDimensions_1000(b *testing.B) {
function BenchmarkMeasurement_TagSetsNoDimensions_100000 (line 252) | func BenchmarkMeasurement_TagSetsNoDimensions_100000(b *testing.B) {
function BenchmarkMeasurement_TagSetsDimensions_100000 (line 256) | func BenchmarkMeasurement_TagSetsDimensions_100000(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/internal/file_set.go
type File (line 11) | type File struct
method Close (line 36) | func (f *File) Close() error { return...
method Path (line 37) | func (f *File) Path() string { return...
method ID (line 38) | func (f *File) ID() int { return...
method Level (line 39) | func (f *File) Level() int { return...
method Measurement (line 40) | func (f *File) Measurement(name []byte) tsi1.MeasurementElem { return...
method MeasurementIterator (line 41) | func (f *File) MeasurementIterator() tsi1.MeasurementIterator { return...
method HasSeries (line 42) | func (f *File) HasSeries(name []byte, tags models.Tags, buf []byte) (e...
method Series (line 45) | func (f *File) Series(name []byte, tags models.Tags) tsi1.SeriesElem {...
method SeriesN (line 46) | func (f *File) SeriesN() uint64 {...
method TagKey (line 47) | func (f *File) TagKey(name, key []byte) tsi1.TagKeyElem {...
method TagKeyIterator (line 48) | func (f *File) TagKeyIterator(name []byte) tsi1.TagKeyIterator {...
method TagValue (line 49) | func (f *File) TagValue(name, key, value []byte) tsi1.TagValueElem {
method TagValueIterator (line 52) | func (f *File) TagValueIterator(name, key []byte) tsi1.TagValueIterator {
method SeriesIterator (line 55) | func (f *File) SeriesIterator() tsi1.SeriesIterator { return f.SeriesI...
method MeasurementSeriesIterator (line 56) | func (f *File) MeasurementSeriesIterator(name []byte) tsi1.SeriesItera...
method TagKeySeriesIterator (line 59) | func (f *File) TagKeySeriesIterator(name, key []byte) tsi1.SeriesItera...
method TagValueSeriesIterator (line 62) | func (f *File) TagValueSeriesIterator(name, key, value []byte) tsi1.Se...
method MergeSeriesSketches (line 65) | func (f *File) MergeSeriesSketches(s, t estimator.Sketch) error { retu...
method MergeMeasurementsSketches (line 66) | func (f *File) MergeMeasurementsSketches(s, t estimator.Sketch) error {
method Retain (line 69) | func (f *File) Retain() { f.Retainf() }
method Release (line 70) | func (f *File) Release() { f.Releasef() }
method Filter (line 71) | func (f *File) Filter() *bloom.Filter { return f.Filterf() }
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/file_set.go
type FileSet (line 19) | type FileSet struct
method Close (line 35) | func (p FileSet) Close() error {
method Retain (line 46) | func (fs *FileSet) Retain() {
method Release (line 53) | func (fs *FileSet) Release() {
method Prepend (line 60) | func (fs *FileSet) Prepend(f File) (*FileSet, error) {
method MustReplace (line 66) | func (fs *FileSet) MustReplace(oldFiles []File, newFile File) *FileSet {
method MaxID (line 100) | func (fs *FileSet) MaxID() int {
method Files (line 111) | func (fs *FileSet) Files() []File {
method LogFiles (line 116) | func (fs *FileSet) LogFiles() []*LogFile {
method IndexFiles (line 127) | func (fs *FileSet) IndexFiles() []*IndexFile {
method LastContiguousIndexFilesByLevel (line 139) | func (fs *FileSet) LastContiguousIndexFilesByLevel(level int) []*Index...
method SeriesIterator (line 161) | func (fs *FileSet) SeriesIterator() SeriesIterator {
method Measurement (line 174) | func (fs *FileSet) Measurement(name []byte) MeasurementElem {
method MeasurementIterator (line 188) | func (fs *FileSet) MeasurementIterator() MeasurementIterator {
method MeasurementSeriesIterator (line 201) | func (fs *FileSet) MeasurementSeriesIterator(name []byte) SeriesIterat...
method TagKeyIterator (line 213) | func (fs *FileSet) TagKeyIterator(name []byte) TagKeyIterator {
method MeasurementTagKeysByExpr (line 225) | func (fs *FileSet) MeasurementTagKeysByExpr(name []byte, expr influxql...
method tagValuesByKeyAndExpr (line 291) | func (fs *FileSet) tagValuesByKeyAndExpr(name []byte, keys []string, e...
method tagKeysByFilter (line 329) | func (fs *FileSet) tagKeysByFilter(name []byte, op influxql.Token, val...
method TagKeySeriesIterator (line 354) | func (fs *FileSet) TagKeySeriesIterator(name, key []byte) SeriesIterat...
method HasTagKey (line 366) | func (fs *FileSet) HasTagKey(name, key []byte) bool {
method HasTagValue (line 376) | func (fs *FileSet) HasTagValue(name, key, value []byte) bool {
method TagValueIterator (line 386) | func (fs *FileSet) TagValueIterator(name, key []byte) TagValueIterator {
method TagValueSeriesIterator (line 398) | func (fs *FileSet) TagValueSeriesIterator(name, key, value []byte) Ser...
method MatchTagValueSeriesIterator (line 411) | func (fs *FileSet) MatchTagValueSeriesIterator(name, key []byte, value...
method matchTagValueEqualEmptySeriesIterator (line 427) | func (fs *FileSet) matchTagValueEqualEmptySeriesIterator(name, key []b...
method matchTagValueEqualNotEmptySeriesIterator (line 446) | func (fs *FileSet) matchTagValueEqualNotEmptySeriesIterator(name, key ...
method matchTagValueNotEqualEmptySeriesIterator (line 461) | func (fs *FileSet) matchTagValueNotEqualEmptySeriesIterator(name, key ...
method matchTagValueNotEqualNotEmptySeriesIterator (line 476) | func (fs *FileSet) matchTagValueNotEqualNotEmptySeriesIterator(name, k...
method MeasurementNamesByExpr (line 495) | func (fs *FileSet) MeasurementNamesByExpr(expr influxql.Expr) ([][]byt...
method measurementNamesByExpr (line 510) | func (fs *FileSet) measurementNamesByExpr(expr influxql.Expr) ([][]byt...
method measurementNamesByNameFilter (line 577) | func (fs *FileSet) measurementNamesByNameFilter(op influxql.Token, val...
method measurementNamesByTagFilter (line 601) | func (fs *FileSet) measurementNamesByTagFilter(op influxql.Token, key,...
method HasSeries (line 646) | func (fs *FileSet) HasSeries(name []byte, tags models.Tags, buf []byte...
method FilterNamesTags (line 657) | func (fs *FileSet) FilterNamesTags(names [][]byte, tagsSlice []models....
method SeriesSketches (line 709) | func (fs *FileSet) SeriesSketches() (estimator.Sketch, estimator.Sketc...
method MeasurementsSketches (line 722) | func (fs *FileSet) MeasurementsSketches() (estimator.Sketch, estimator...
method MeasurementSeriesByExprIterator (line 737) | func (fs *FileSet) MeasurementSeriesByExprIterator(name []byte, expr i...
method MeasurementSeriesKeysByExpr (line 746) | func (fs *FileSet) MeasurementSeriesKeysByExpr(name []byte, expr influ...
method seriesByExprIterator (line 769) | func (fs *FileSet) seriesByExprIterator(name []byte, expr influxql.Exp...
method seriesByBinaryExprIterator (line 807) | func (fs *FileSet) seriesByBinaryExprIterator(name []byte, n *influxql...
method seriesByBinaryExprStringIterator (line 858) | func (fs *FileSet) seriesByBinaryExprStringIterator(name, key, value [...
method seriesByBinaryExprRegexIterator (line 892) | func (fs *FileSet) seriesByBinaryExprRegexIterator(name, key []byte, v...
method seriesByBinaryExprVarRefIterator (line 904) | func (fs *FileSet) seriesByBinaryExprVarRefIterator(name, key []byte, ...
method buildFilters (line 919) | func (fs *FileSet) buildFilters() error {
function NewFileSet (line 26) | func NewFileSet(levels []CompactionLevel, files []File) (*FileSet, error) {
type File (line 953) | type File interface
type Files (line 990) | type Files
method IDs (line 992) | func (a Files) IDs() []int {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/file_set_test.go
function TestFileSet_SeriesIterator (line 11) | func TestFileSet_SeriesIterator(t *testing.T) {
function TestFileSet_MeasurementSeriesIterator (line 81) | func TestFileSet_MeasurementSeriesIterator(t *testing.T) {
function TestFileSet_MeasurementIterator (line 144) | func TestFileSet_MeasurementIterator(t *testing.T) {
function TestFileSet_TagKeyIterator (line 206) | func TestFileSet_TagKeyIterator(t *testing.T) {
function BenchmarkFileset_FilterNamesTags (line 273) | func BenchmarkFileset_FilterNamesTags(b *testing.B) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/index.go
constant IndexName (line 26) | IndexName = "tsi1"
constant DefaultMaxLogFileSize (line 30) | DefaultMaxLogFileSize = 5 * 1024 * 1024
function init (line 33) | func init() {
constant LogFileExt (line 46) | LogFileExt = ".tsl"
constant IndexFileExt (line 47) | IndexFileExt = ".tsi"
constant CompactingExt (line 49) | CompactingExt = ".compacting"
constant ManifestFileName (line 53) | ManifestFileName = "MANIFEST"
type Index (line 59) | type Index struct
method Type (line 112) | func (i *Index) Type() string { return IndexName }
method Open (line 115) | func (i *Index) Open() error {
method openLogFile (line 199) | func (i *Index) openLogFile(path string) (*LogFile, error) {
method openIndexFile (line 208) | func (i *Index) openIndexFile(path string) (*IndexFile, error) {
method deleteNonManifestFiles (line 218) | func (i *Index) deleteNonManifestFiles(m *Manifest) error {
method Close (line 246) | func (i *Index) Close() error {
method NextSequence (line 265) | func (i *Index) NextSequence() int {
method nextSequence (line 271) | func (i *Index) nextSequence() int {
method ManifestPath (line 277) | func (i *Index) ManifestPath() string {
method Manifest (line 282) | func (i *Index) Manifest() *Manifest {
method writeManifestFile (line 296) | func (i *Index) writeManifestFile() error {
method WithLogger (line 301) | func (i *Index) WithLogger(logger zap.Logger) {
method SetFieldSet (line 306) | func (i *Index) SetFieldSet(fs *tsdb.MeasurementFieldSet) {
method RetainFileSet (line 313) | func (i *Index) RetainFileSet() *FileSet {
method retainFileSet (line 320) | func (i *Index) retainFileSet() *FileSet {
method FileN (line 327) | func (i *Index) FileN() int { return len(i.fileSet.files) }
method prependActiveLogFile (line 330) | func (i *Index) prependActiveLogFile() error {
method ForEachMeasurementName (line 355) | func (i *Index) ForEachMeasurementName(fn func(name []byte) error) err...
method MeasurementExists (line 374) | func (i *Index) MeasurementExists(name []byte) (bool, error) {
method MeasurementNamesByExpr (line 381) | func (i *Index) MeasurementNamesByExpr(expr influxql.Expr) ([][]byte, ...
method MeasurementNamesByRegex (line 387) | func (i *Index) MeasurementNamesByRegex(re *regexp.Regexp) ([][]byte, ...
method DropMeasurement (line 402) | func (i *Index) DropMeasurement(name []byte) error {
method CreateSeriesListIfNotExists (line 470) | func (i *Index) CreateSeriesListIfNotExists(_, names [][]byte, tagsSli...
method InitializeSeries (line 499) | func (i *Index) InitializeSeries(key, name []byte, tags models.Tags) e...
method CreateSeriesIfNotExists (line 504) | func (i *Index) CreateSeriesIfNotExists(key, name []byte, tags models....
method DropSeries (line 531) | func (i *Index) DropSeries(key []byte) error {
method SeriesSketches (line 573) | func (i *Index) SeriesSketches() (estimator.Sketch, estimator.Sketch, ...
method MeasurementsSketches (line 581) | func (i *Index) MeasurementsSketches() (estimator.Sketch, estimator.Sk...
method SeriesN (line 592) | func (i *Index) SeriesN() int64 {
method HasTagKey (line 604) | func (i *Index) HasTagKey(name, key []byte) (bool, error) {
method MeasurementTagKeysByExpr (line 611) | func (i *Index) MeasurementTagKeysByExpr(name []byte, expr influxql.Ex...
method MeasurementTagKeyValuesByExpr (line 621) | func (i *Index) MeasurementTagKeyValuesByExpr(name []byte, keys []stri...
method ForEachMeasurementSeriesByExpr (line 668) | func (i *Index) ForEachMeasurementSeriesByExpr(name []byte, condition ...
method ForEachMeasurementTagKey (line 689) | func (i *Index) ForEachMeasurementTagKey(name []byte, fn func(key []by...
method TagKeyCardinality (line 709) | func (i *Index) TagKeyCardinality(name, key []byte) int {
method MeasurementSeriesKeysByExpr (line 714) | func (i *Index) MeasurementSeriesKeysByExpr(name []byte, expr influxql...
method TagSets (line 722) | func (i *Index) TagSets(name []byte, opt influxql.IteratorOptions) ([]...
method SnapshotTo (line 784) | func (i *Index) SnapshotTo(path string) error {
method SetFieldName (line 815) | func (i *Index) SetFieldName(measurement []byte, name string) {}
method RemoveShard (line 816) | func (i *Index) RemoveShard(shardID uint64) {}
method AssignShard (line 817) | func (i *Index) AssignShard(k string, shardID uint64) {}
method UnassignShard (line 819) | func (i *Index) UnassignShard(k string, shardID uint64) error {
method SeriesPointIterator (line 825) | func (i *Index) SeriesPointIterator(opt influxql.IteratorOptions) (inf...
method Compact (line 832) | func (i *Index) Compact() {
method compact (line 839) | func (i *Index) compact() {
method compactToLevel (line 895) | func (i *Index) compactToLevel(files []*IndexFile, level int) {
method CheckLogFile (line 990) | func (i *Index) CheckLogFile() error {
method checkLogFile (line 1006) | func (i *Index) checkLogFile() error {
method compactLogFile (line 1033) | func (i *Index) compactLogFile(logFile *LogFile) {
function NewIndex (line 100) | func NewIndex() *Index {
type seriesPointIterator (line 1116) | type seriesPointIterator struct
method Stats (line 1141) | func (itr *seriesPointIterator) Stats() influxql.IteratorStats { retur...
method Close (line 1144) | func (itr *seriesPointIterator) Close() error {
method Next (line 1150) | func (itr *seriesPointIterator) Next() (*influxql.FloatPoint, error) {
function newSeriesPointIterator (line 1128) | func newSeriesPointIterator(fs *FileSet, fieldset *tsdb.MeasurementField...
function unionStringSets (line 1191) | func unionStringSets(a, b map[string]struct{}) map[string]struct{} {
function intersectStringSets (line 1203) | func intersectStringSets(a, b map[string]struct{}) map[string]struct{} {
function ParseFilename (line 1221) | func ParseFilename(name string) (level, id int) {
type Manifest (line 1234) | type Manifest struct
method HasFile (line 1249) | func (m *Manifest) HasFile(name string) bool {
function NewManifest (line 1240) | func NewManifest() *Manifest {
function ReadManifestFile (line 1259) | func ReadManifestFile(path string) (*Manifest, error) {
function WriteManifestFile (line 1275) | func WriteManifestFile(path string, m *Manifest) error {
function joinIntSlice (line 1289) | func joinIntSlice(a []int, sep string) string {
type CompactionLevel (line 1300) | type CompactionLevel struct
constant MaxIndexMergeCount (line 1319) | MaxIndexMergeCount = 2
constant MaxIndexFileSize (line 1322) | MaxIndexFileSize = 4 * (1 << 30)
function generateCompactionToken (line 1326) | func generateCompactionToken() string {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/index_file.go
constant IndexFileVersion (line 18) | IndexFileVersion = 1
constant FileSignature (line 21) | FileSignature = "TSI1"
constant IndexFileVersionSize (line 26) | IndexFileVersionSize = 2
constant SeriesBlockOffsetSize (line 27) | SeriesBlockOffsetSize = 8
constant SeriesBlockSizeSize (line 28) | SeriesBlockSizeSize = 8
constant MeasurementBlockOffsetSize (line 29) | MeasurementBlockOffsetSize = 8
constant MeasurementBlockSizeSize (line 30) | MeasurementBlockSizeSize = 8
constant IndexFileTrailerSize (line 32) | IndexFileTrailerSize = IndexFileVersionSize +
type IndexFile (line 46) | type IndexFile struct
method Open (line 76) | func (f *IndexFile) Open() error {
method Close (line 89) | func (f *IndexFile) Close() error {
method ID (line 101) | func (f *IndexFile) ID() int { return f.id }
method Path (line 104) | func (f *IndexFile) Path() string { return f.path }
method SetPath (line 107) | func (f *IndexFile) SetPath(path string) { f.path = path }
method Level (line 110) | func (f *IndexFile) Level() int { return f.level }
method Filter (line 113) | func (f *IndexFile) Filter() *bloom.Filter { return f.sblk.filter }
method Retain (line 116) | func (f *IndexFile) Retain() { f.wg.Add(1) }
method Release (line 119) | func (f *IndexFile) Release() { f.wg.Done() }
method Size (line 122) | func (f *IndexFile) Size() int64 { return int64(len(f.data)) }
method Compacting (line 125) | func (f *IndexFile) Compacting() bool {
method setCompacting (line 133) | func (f *IndexFile) setCompacting(v bool) {
method UnmarshalBinary (line 141) | func (f *IndexFile) UnmarshalBinary(data []byte) error {
method Measurement (line 199) | func (f *IndexFile) Measurement(name []byte) MeasurementElem {
method MeasurementN (line 208) | func (f *IndexFile) MeasurementN() (n uint64) {
method TagValueIterator (line 218) | func (f *IndexFile) TagValueIterator(name, key []byte) TagValueIterator {
method TagKeySeriesIterator (line 236) | func (f *IndexFile) TagKeySeriesIterator(name, key []byte) SeriesItera...
method TagValueSeriesIterator (line 261) | func (f *IndexFile) TagValueSeriesIterator(name, key, value []byte) Se...
method TagKey (line 284) | func (f *IndexFile) TagKey(name, key []byte) TagKeyElem {
method TagValue (line 293) | func (f *IndexFile) TagValue(name, key, value []byte) TagValueElem {
method HasSeries (line 302) | func (f *IndexFile) HasSeries(name []byte, tags models.Tags, buf []byt...
method Series (line 308) | func (f *IndexFile) Series(name []byte, tags models.Tags) SeriesElem {
method TagValueElem (line 313) | func (f *IndexFile) TagValueElem(name, key, value []byte) TagValueElem {
method MeasurementIterator (line 322) | func (f *IndexFile) MeasurementIterator() MeasurementIterator {
method TagKeyIterator (line 327) | func (f *IndexFile) TagKeyIterator(name []byte) TagKeyIterator {
method MeasurementSeriesIterator (line 336) | func (f *IndexFile) MeasurementSeriesIterator(name []byte) SeriesItera...
method MergeMeasurementsSketches (line 345) | func (f *IndexFile) MergeMeasurementsSketches(s, t estimator.Sketch) e...
method SeriesN (line 353) | func (f *IndexFile) SeriesN() uint64 {
method SeriesIterator (line 358) | func (f *IndexFile) SeriesIterator() SeriesIterator {
method MergeSeriesSketches (line 364) | func (f *IndexFile) MergeSeriesSketches(s, t estimator.Sketch) error {
function NewIndexFile (line 71) | func NewIndexFile() *IndexFile {
function ReadIndexFileTrailer (line 372) | func ReadIndexFileTrailer(data []byte) (IndexFileTrailer, error) {
type IndexFileTrailer (line 400) | type IndexFileTrailer struct
method WriteTo (line 413) | func (t *IndexFileTrailer) WriteTo(w io.Writer) (n int64, err error) {
function FormatIndexFileName (line 437) | func FormatIndexFileName(id, level int) string {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/index_file_test.go
function TestCreateIndexFile (line 12) | func TestCreateIndexFile(t *testing.T) {
function TestGenerateIndexFile (line 30) | func TestGenerateIndexFile(t *testing.T) {
function BenchmarkIndexFile_TagValueSeries (line 45) | func BenchmarkIndexFile_TagValueSeries(b *testing.B) {
function benchmarkIndexFile_TagValueSeries (line 57) | func benchmarkIndexFile_TagValueSeries(b *testing.B, idx *tsi1.IndexFile) {
function CreateIndexFile (line 71) | func CreateIndexFile(series []Series) (*tsi1.IndexFile, error) {
function GenerateIndexFile (line 93) | func GenerateIndexFile(measurementN, tagN, valueN int) (*tsi1.IndexFile,...
function MustGenerateIndexFile (line 114) | func MustGenerateIndexFile(measurementN, tagN, valueN int) *tsi1.IndexFi...
function MustFindOrGenerateIndexFile (line 131) | func MustFindOrGenerateIndexFile(measurementN, tagN, valueN int) *tsi1.I...
function pow (line 148) | func pow(x, y int) int {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/index_files.go
type IndexFiles (line 16) | type IndexFiles
method IDs (line 19) | func (p IndexFiles) IDs() []int {
method Retain (line 28) | func (p IndexFiles) Retain() {
method Release (line 35) | func (p IndexFiles) Release() {
method Files (line 42) | func (p IndexFiles) Files() []File {
method MeasurementNames (line 51) | func (p *IndexFiles) MeasurementNames() [][]byte {
method MeasurementIterator (line 62) | func (p IndexFiles) MeasurementIterator() MeasurementIterator {
method TagKeyIterator (line 75) | func (p *IndexFiles) TagKeyIterator(name []byte) (TagKeyIterator, erro...
method SeriesIterator (line 88) | func (p IndexFiles) SeriesIterator() SeriesIterator {
method MeasurementSeriesIterator (line 101) | func (p IndexFiles) MeasurementSeriesIterator(name []byte) SeriesItera...
method TagValueSeriesIterator (line 114) | func (p IndexFiles) TagValueSeriesIterator(name, key, value []byte) Se...
method CompactTo (line 126) | func (p IndexFiles) CompactTo(w io.Writer, m, k uint64) (n int64, err ...
method writeSeriesBlockTo (line 190) | func (p IndexFiles) writeSeriesBlockTo(w io.Writer, m, k uint64, info ...
method writeTagsetsTo (line 219) | func (p IndexFiles) writeTagsetsTo(w io.Writer, info *indexCompactInfo...
method writeTagsetTo (line 230) | func (p IndexFiles) writeTagsetTo(w io.Writer, name []byte, info *inde...
method writeMeasurementBlockTo (line 286) | func (p IndexFiles) writeMeasurementBlockTo(w io.Writer, info *indexCo...
method Stat (line 319) | func (p IndexFiles) Stat() (*IndexFilesInfo, error) {
type IndexFilesInfo (line 341) | type IndexFilesInfo struct
type indexCompactInfo (line 349) | type indexCompactInfo struct
type indexTagSetPos (line 359) | type indexTagSetPos struct
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/index_files_test.go
function TestIndexFiles_WriteTo (line 12) | func TestIndexFiles_WriteTo(t *testing.T) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/index_test.go
constant M (line 16) | M, K = 4096, 6
function TestIndex_ForEachMeasurementName (line 19) | func TestIndex_ForEachMeasurementName(t *testing.T) {
function TestIndex_MeasurementExists (line 72) | func TestIndex_MeasurementExists(t *testing.T) {
function TestIndex_MeasurementNamesByExpr (line 123) | func TestIndex_MeasurementNamesByExpr(t *testing.T) {
function TestIndex_MeasurementNamesByRegex (line 178) | func TestIndex_MeasurementNamesByRegex(t *testing.T) {
function TestIndex_DropMeasurement (line 203) | func TestIndex_DropMeasurement(t *testing.T) {
type Index (line 247) | type Index struct
method Close (line 268) | func (idx *Index) Close() error {
method Reopen (line 274) | func (idx *Index) Reopen() error {
method Run (line 298) | func (idx *Index) Run(t *testing.T, fn func(t *testing.T)) {
method CreateSeriesSliceIfNotExists (line 322) | func (idx *Index) CreateSeriesSliceIfNotExists(a []Series) error {
function NewIndex (line 252) | func NewIndex() *Index {
function MustOpenIndex (line 259) | func MustOpenIndex() *Index {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/log_file.go
constant LogEntrySeriesTombstoneFlag (line 32) | LogEntrySeriesTombstoneFlag = 0x01
constant LogEntryMeasurementTombstoneFlag (line 33) | LogEntryMeasurementTombstoneFlag = 0x02
constant LogEntryTagKeyTombstoneFlag (line 34) | LogEntryTagKeyTombstoneFlag = 0x04
constant LogEntryTagValueTombstoneFlag (line 35) | LogEntryTagValueTombstoneFlag = 0x08
type LogFile (line 39) | type LogFile struct
method Open (line 74) | func (f *LogFile) Open() error {
method open (line 82) | func (f *LogFile) open() error {
method Close (line 138) | func (f *LogFile) Close() error {
method Flush (line 162) | func (f *LogFile) Flush() error {
method ID (line 170) | func (f *LogFile) ID() int { return f.id }
method Path (line 173) | func (f *LogFile) Path() string { return f.path }
method SetPath (line 176) | func (f *LogFile) SetPath(path string) { f.path = path }
method Level (line 179) | func (f *LogFile) Level() int { return 0 }
method Filter (line 182) | func (f *LogFile) Filter() *bloom.Filter { return nil }
method Retain (line 185) | func (f *LogFile) Retain() { f.wg.Add(1) }
method Release (line 188) | func (f *LogFile) Release() { f.wg.Done() }
method Stat (line 191) | func (f *LogFile) Stat() (int64, time.Time) {
method Size (line 199) | func (f *LogFile) Size() int64 {
method Measurement (line 207) | func (f *LogFile) Measurement(name []byte) MeasurementElem {
method MeasurementNames (line 220) | func (f *LogFile) MeasurementNames() []string {
method measurementNames (line 226) | func (f *LogFile) measurementNames() []string {
method DeleteMeasurement (line 236) | func (f *LogFile) DeleteMeasurement(name []byte) error {
method TagKeySeriesIterator (line 249) | func (f *LogFile) TagKeySeriesIterator(name, key []byte) SeriesIterator {
method TagKeyIterator (line 276) | func (f *LogFile) TagKeyIterator(name []byte) TagKeyIterator {
method TagKey (line 293) | func (f *LogFile) TagKey(name, key []byte) TagKeyElem {
method TagValue (line 311) | func (f *LogFile) TagValue(name, key, value []byte) TagValueElem {
method TagValueIterator (line 334) | func (f *LogFile) TagValueIterator(name, key []byte) TagValueIterator {
method DeleteTagKey (line 351) | func (f *LogFile) DeleteTagKey(name, key []byte) error {
method TagValueSeriesIterator (line 364) | func (f *LogFile) TagValueSeriesIterator(name, key, value []byte) Seri...
method MeasurementN (line 389) | func (f *LogFile) MeasurementN() (n uint64) {
method TagKeyN (line 396) | func (f *LogFile) TagKeyN() (n uint64) {
method TagValueN (line 406) | func (f *LogFile) TagValueN() (n uint64) {
method DeleteTagValue (line 418) | func (f *LogFile) DeleteTagValue(name, key, value []byte) error {
method AddSeriesList (line 431) | func (f *LogFile) AddSeriesList(names [][]byte, tagsSlice []models.Tag...
method AddSeries (line 447) | func (f *LogFile) AddSeries(name []byte, tags models.Tags) error {
method DeleteSeries (line 464) | func (f *LogFile) DeleteSeries(name []byte, tags models.Tags) error {
method SeriesN (line 477) | func (f *LogFile) SeriesN() (n uint64) {
method HasSeries (line 488) | func (f *LogFile) HasSeries(name []byte, tags models.Tags, buf []byte)...
method FilterNamesTags (line 498) | func (f *LogFile) FilterNamesTags(names [][]byte, tagsSlice []models.T...
method Series (line 526) | func (f *LogFile) Series(name []byte, tags models.Tags) SeriesElem {
method SeriesWithBuffer (line 531) | func (f *LogFile) SeriesWithBuffer(name []byte, tags models.Tags, buf ...
method appendEntry (line 550) | func (f *LogFile) appendEntry(e *LogEntry) error {
method execEntry (line 580) | func (f *LogFile) execEntry(e *LogEntry) {
method execDeleteMeasurementEntry (line 593) | func (f *LogFile) execDeleteMeasurementEntry(e *LogEntry) {
method execDeleteTagKeyEntry (line 603) | func (f *LogFile) execDeleteTagKeyEntry(e *LogEntry) {
method execDeleteTagValueEntry (line 614) | func (f *LogFile) execDeleteTagValueEntry(e *LogEntry) {
method execSeriesEntry (line 627) | func (f *LogFile) execSeriesEntry(e *LogEntry) {
method SeriesIterator (line 668) | func (f *LogFile) SeriesIterator() SeriesIterator {
method createMeasurementIfNotExists (line 720) | func (f *LogFile) createMeasurementIfNotExists(name []byte) *logMeasur...
method MeasurementIterator (line 734) | func (f *LogFile) MeasurementIterator() MeasurementIterator {
method MeasurementSeriesIterator (line 747) | func (f *LogFile) MeasurementSeriesIterator(name []byte) SeriesIterator {
method CompactTo (line 759) | func (f *LogFile) CompactTo(w io.Writer, m, k uint64) (n int64, err er...
method writeSeriesBlockTo (line 823) | func (f *LogFile) writeSeriesBlockTo(w io.Writer, names []string, m, k...
method updateSeriesOffsets (line 862) | func (f *LogFile) updateSeriesOffsets(w io.Writer, names []string, inf...
method writeTagsetsTo (line 901) | func (f *LogFile) writeTagsetsTo(w io.Writer, names []string, info *lo...
method writeTagsetTo (line 911) | func (f *LogFile) writeTagsetTo(w io.Writer, name string, info *logFil...
method writeMeasurementBlockTo (line 957) | func (f *LogFile) writeMeasurementBlockTo(w io.Writer, names []string,...
method MergeSeriesSketches (line 1037) | func (f *LogFile) MergeSeriesSketches(sketch, tsketch estimator.Sketch...
method MergeMeasurementsSketches (line 1051) | func (f *LogFile) MergeMeasurementsSketches(sketch, tsketch estimator....
function NewLogFile (line 62) | func NewLogFile(path string) *LogFile {
type logFileCompactInfo (line 977) | type logFileCompactInfo struct
method createMeasurementInfoIfNotExists (line 988) | func (info *logFileCompactInfo) createMeasurementInfoIfNotExists(name ...
function newLogFileCompactInfo (line 982) | func newLogFileCompactInfo() *logFileCompactInfo {
type logFileMeasurementCompactInfo (line 999) | type logFileMeasurementCompactInfo struct
method createTagSetInfoIfNotExists (line 1007) | func (info *logFileMeasurementCompactInfo) createTagSetInfoIfNotExists...
type logFileTagSetCompactInfo (line 1016) | type logFileTagSetCompactInfo struct
method createTagValueInfoIfNotExists (line 1020) | func (info *logFileTagSetCompactInfo) createTagValueInfoIfNotExists(va...
type logFileTagValueCompactInfo (line 1029) | type logFileTagValueCompactInfo struct
type LogEntry (line 1062) | type LogEntry struct
method UnmarshalBinary (line 1071) | func (e *LogEntry) UnmarshalBinary(data []byte) error {
function appendLogEntry (line 1153) | func appendLogEntry(dst []byte, e *LogEntry) []byte {
type logSerie (line 1194) | type logSerie struct
method String (line 1200) | func (s *logSerie) String() string {
method Name (line 1204) | func (s *logSerie) Name() []byte { return s.name }
method Tags (line 1205) | func (s *logSerie) Tags() models.Tags { return s.tags }
method Deleted (line 1206) | func (s *logSerie) Deleted() bool { return s.deleted }
method Expr (line 1207) | func (s *logSerie) Expr() influxql.Expr { return nil }
method Compare (line 1208) | func (s *logSerie) Compare(name []byte, tags models.Tags) int {
type logSeries (line 1215) | type logSeries
method Len (line 1217) | func (a logSeries) Len() int { return len(a) }
method Swap (line 1218) | func (a logSeries) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 1219) | func (a logSeries) Less(i, j int) bool {
type logMeasurements (line 1224) | type logMeasurements
method names (line 1227) | func (m logMeasurements) names() []string {
type logMeasurement (line 1236) | type logMeasurement struct
method Name (line 1243) | func (m *logMeasurement) Name() []byte { return m.name }
method Deleted (line 1244) | func (m *logMeasurement) Deleted() bool { return m.deleted }
method createTagSetIfNotExists (line 1246) | func (m *logMeasurement) createTagSetIfNotExists(key []byte) logTagKey {
method createSeriesIfNotExists (line 1255) | func (m *logMeasurement) createSeriesIfNotExists(key []byte, name []by...
method keys (line 1267) | func (m *logMeasurement) keys() []string {
type logMeasurementSlice (line 1277) | type logMeasurementSlice
method Len (line 1279) | func (a logMeasurementSlice) Len() int { return len(a) }
method Swap (line 1280) | func (a logMeasurementSlice) Swap(i, j int) { a[i], a[j] = a[j], ...
method Less (line 1281) | func (a logMeasurementSlice) Less(i, j int) bool { return bytes.Compar...
type logMeasurementIterator (line 1284) | type logMeasurementIterator struct
method Next (line 1289) | func (itr *logMeasurementIterator) Next() (e MeasurementElem) {
type logTagKey (line 1297) | type logTagKey struct
method Key (line 1303) | func (tk *logTagKey) Key() []byte { return tk.name }
method Deleted (line 1304) | func (tk *logTagKey) Deleted() bool { return tk.deleted }
method TagValueIterator (line 1306) | func (tk *logTagKey) TagValueIterator() TagValueIterator {
method createTagValueIfNotExists (line 1314) | func (tk *logTagKey) createTagValueIfNotExists(value []byte) logTagVal...
type logTagKeySlice (line 1323) | type logTagKeySlice
method Len (line 1325) | func (a logTagKeySlice) Len() int { return len(a) }
method Swap (line 1326) | func (a logTagKeySlice) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 1327) | func (a logTagKeySlice) Less(i, j int) bool { return bytes.Compare(a[i...
type logTagValue (line 1329) | type logTagValue struct
method Value (line 1335) | func (tv *logTagValue) Value() []byte { return tv.name }
method Deleted (line 1336) | func (tv *logTagValue) Deleted() bool { return tv.deleted }
type logTagValueSlice (line 1339) | type logTagValueSlice
method Len (line 1341) | func (a logTagValueSlice) Len() int { return len(a) }
method Swap (line 1342) | func (a logTagValueSlice) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 1343) | func (a logTagValueSlice) Less(i, j int) bool { return bytes.Compare(a...
type logTagKeyIterator (line 1346) | type logTagKeyIterator struct
method Next (line 1357) | func (itr *logTagKeyIterator) Next() (e TagKeyElem) {
function newLogTagKeyIterator (line 1351) | func newLogTagKeyIterator(a []logTagKey) *logTagKeyIterator {
type logTagValueIterator (line 1366) | type logTagValueIterator struct
method Next (line 1377) | func (itr *logTagValueIterator) Next() (e TagValueElem) {
function newLogTagValueIterator (line 1371) | func newLogTagValueIterator(a []logTagValue) *logTagValueIterator {
type logSeriesIterator (line 1386) | type logSeriesIterator struct
method Next (line 1407) | func (itr *logSeriesIterator) Next() (e SeriesElem) {
function newLogSeriesIterator (line 1392) | func newLogSeriesIterator(m map[string]*logSerie) *logSeriesIterator {
function FormatLogFileName (line 1416) | func FormatLogFileName(id int) string {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/log_file_test.go
function TestLogFile_AddSeries (line 22) | func TestLogFile_AddSeries(t *testing.T) {
function TestLogFile_SeriesStoredInOrder (line 61) | func TestLogFile_SeriesStoredInOrder(t *testing.T) {
function TestLogFile_DeleteMeasurement (line 121) | func TestLogFile_DeleteMeasurement(t *testing.T) {
type LogFile (line 151) | type LogFile struct
method Close (line 176) | func (f *LogFile) Close() error {
method Reopen (line 182) | func (f *LogFile) Reopen() error {
function NewLogFile (line 156) | func NewLogFile() *LogFile {
function MustOpenLogFile (line 167) | func MustOpenLogFile() *LogFile {
function CreateLogFile (line 193) | func CreateLogFile(series []Series) (*LogFile, error) {
function GenerateLogFile (line 205) | func GenerateLogFile(measurementN, tagN, valueN int) (*LogFile, error) {
function MustGenerateLogFile (line 228) | func MustGenerateLogFile(measurementN, tagN, valueN int) *LogFile {
function benchmarkLogFile_AddSeries (line 236) | func benchmarkLogFile_AddSeries(b *testing.B, measurementN, seriesKeyN, ...
function BenchmarkLogFile_AddSeries_100_1_1 (line 278) | func BenchmarkLogFile_AddSeries_100_1_1(b *testing.B) { benchmarkLogF...
function BenchmarkLogFile_AddSeries_1000_1_1 (line 279) | func BenchmarkLogFile_AddSeries_1000_1_1(b *testing.B) { benchmarkLogF...
function BenchmarkLogFile_AddSeries_10000_1_1 (line 280) | func BenchmarkLogFile_AddSeries_10000_1_1(b *testing.B) { benchmarkLogF...
function BenchmarkLogFile_AddSeries_100_2_10 (line 281) | func BenchmarkLogFile_AddSeries_100_2_10(b *testing.B) { benchmarkLogF...
function BenchmarkLogFile_AddSeries_100000_1_1 (line 282) | func BenchmarkLogFile_AddSeries_100000_1_1(b *testing.B) { benchmarkLogF...
function BenchmarkLogFile_AddSeries_100_3_7 (line 283) | func BenchmarkLogFile_AddSeries_100_3_7(b *testing.B) { benchmarkLogF...
function BenchmarkLogFile_AddSeries_200_3_7 (line 284) | func BenchmarkLogFile_AddSeries_200_3_7(b *testing.B) { benchmarkLogF...
function BenchmarkLogFile_AddSeries_200_4_7 (line 285) | func BenchmarkLogFile_AddSeries_200_4_7(b *testing.B) { benchmarkLogF...
function BenchmarkLogFile_WriteTo (line 287) | func BenchmarkLogFile_WriteTo(b *testing.B) {
function MustStartCPUProfile (line 328) | func MustStartCPUProfile(name string) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/measurement_block.go
constant MeasurementBlockVersion (line 16) | MeasurementBlockVersion = 1
constant MeasurementTombstoneFlag (line 20) | MeasurementTombstoneFlag = 0x01
constant MeasurementFillSize (line 26) | MeasurementFillSize = 1
constant MeasurementTrailerSize (line 29) | MeasurementTrailerSize = 0 +
constant MeasurementNSize (line 37) | MeasurementNSize = 8
constant MeasurementOffsetSize (line 38) | MeasurementOffsetSize = 8
type MeasurementBlock (line 48) | type MeasurementBlock struct
method Version (line 63) | func (blk *MeasurementBlock) Version() int { return blk.version }
method Elem (line 66) | func (blk *MeasurementBlock) Elem(name []byte) (e MeasurementBlockElem...
method UnmarshalBinary (line 109) | func (blk *MeasurementBlock) UnmarshalBinary(data []byte) error {
method Iterator (line 140) | func (blk *MeasurementBlock) Iterator() MeasurementIterator {
method seriesIDIterator (line 145) | func (blk *MeasurementBlock) seriesIDIterator(name []byte) seriesIDIte...
type blockMeasurementIterator (line 155) | type blockMeasurementIterator struct
method Next (line 161) | func (itr *blockMeasurementIterator) Next() MeasurementElem {
type rawSeriesIDIterator (line 177) | type rawSeriesIDIterator struct
method next (line 184) | func (itr *rawSeriesIDIterator) next() uint32 {
type MeasurementBlockTrailer (line 198) | type MeasurementBlockTrailer struct
method WriteTo (line 259) | func (t *MeasurementBlockTrailer) WriteTo(w io.Writer) (n int64, err e...
function ReadMeasurementBlockTrailer (line 227) | func ReadMeasurementBlockTrailer(data []byte) (MeasurementBlockTrailer, ...
type MeasurementBlockElem (line 297) | type MeasurementBlockElem struct
method Name (line 316) | func (e *MeasurementBlockElem) Name() []byte { return e.name }
method Deleted (line 319) | func (e *MeasurementBlockElem) Deleted() bool {
method TagBlockOffset (line 324) | func (e *MeasurementBlockElem) TagBlockOffset() int64 { return e.tagBl...
method TagBlockSize (line 327) | func (e *MeasurementBlockElem) TagBlockSize() int64 { return e.tagBloc...
method SeriesData (line 330) | func (e *MeasurementBlockElem) SeriesData() []byte { return e.series.d...
method SeriesN (line 333) | func (e *MeasurementBlockElem) SeriesN() uint32 { return e.series.n }
method SeriesID (line 336) | func (e *MeasurementBlockElem) SeriesID(i int) uint32 {
method SeriesIDs (line 344) | func (e *MeasurementBlockElem) SeriesIDs() []uint32 {
method Size (line 359) | func (e *MeasurementBlockElem) Size() int { return e.size }
method UnmarshalBinary (line 362) | func (e *MeasurementBlockElem) UnmarshalBinary(data []byte) error {
type MeasurementBlockWriter (line 390) | type MeasurementBlockWriter struct
method Add (line 408) | func (mw *MeasurementBlockWriter) Add(name []byte, deleted bool, offse...
method WriteTo (line 424) | func (mw *MeasurementBlockWriter) WriteTo(w io.Writer) (n int64, err e...
method writeMeasurementTo (line 519) | func (mw *MeasurementBlockWriter) writeMeasurementTo(w io.Writer, name...
function NewMeasurementBlockWriter (line 399) | func NewMeasurementBlockWriter() *MeasurementBlockWriter {
function writeSketchTo (line 572) | func writeSketchTo(w io.Writer, s estimator.Sketch, n *int64) error {
type measurement (line 584) | type measurement struct
method flag (line 594) | func (mm measurement) flag() byte {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/measurement_block_test.go
function TestReadMeasurementBlockTrailer (line 13) | func TestReadMeasurementBlockTrailer(t *testing.T) {
function TestMeasurementBlockTrailer_WriteTo (line 56) | func TestMeasurementBlockTrailer_WriteTo(t *testing.T) {
function TestMeasurementBlockWriter (line 105) | func TestMeasurementBlockWriter(t *testing.T) {
type Measurements (line 163) | type Measurements
type Measurement (line 165) | type Measurement struct
function NewMeasurement (line 173) | func NewMeasurement(name []byte, deleted bool, offset, size int64, ids [...
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/series_block.go
constant SeriesBlockTrailerSize (line 27) | SeriesBlockTrailerSize = 0 +
constant SeriesCountSize (line 37) | SeriesCountSize = 4
constant SeriesIDSize (line 38) | SeriesIDSize = 4
constant SeriesTombstoneFlag (line 44) | SeriesTombstoneFlag = 0x01
constant SeriesHashIndexFlag (line 48) | SeriesHashIndexFlag = 0x02
constant MaxSeriesBlockHashSize (line 52) | MaxSeriesBlockHashSize = (65536 * LoadFactor) / 100
type SeriesBlock (line 55) | type SeriesBlock struct
method HasSeries (line 77) | func (blk *SeriesBlock) HasSeries(name []byte, tags models.Tags, buf [...
method Series (line 83) | func (blk *SeriesBlock) Series(name []byte, tags models.Tags) SeriesEl...
method Offset (line 95) | func (blk *SeriesBlock) Offset(name []byte, tags models.Tags, buf []by...
method SeriesCount (line 160) | func (blk *SeriesBlock) SeriesCount() uint32 {
method SeriesIterator (line 165) | func (blk *SeriesBlock) SeriesIterator() SeriesIterator {
method UnmarshalBinary (line 177) | func (blk *SeriesBlock) UnmarshalBinary(data []byte) error {
type seriesBlockIndex (line 238) | type seriesBlockIndex struct
type seriesBlockIterator (line 245) | type seriesBlockIterator struct
method Next (line 253) | func (itr *seriesBlockIterator) Next() SeriesElem {
type seriesDecodeIterator (line 286) | type seriesDecodeIterator struct
method Next (line 298) | func (itr *seriesDecodeIterator) Next() SeriesElem {
function newSeriesDecodeIterator (line 293) | func newSeriesDecodeIterator(sblk *SeriesBlock, itr seriesIDIterator) *s...
type SeriesBlockElem (line 311) | type SeriesBlockElem struct
method Deleted (line 319) | func (e *SeriesBlockElem) Deleted() bool { return (e.flag & SeriesTomb...
method Name (line 322) | func (e *SeriesBlockElem) Name() []byte { return e.name }
method Tags (line 325) | func (e *SeriesBlockElem) Tags() models.Tags { return e.tags }
method Expr (line 329) | func (e *SeriesBlockElem) Expr() influxql.Expr { return nil }
method UnmarshalBinary (line 332) | func (e *SeriesBlockElem) UnmarshalBinary(data []byte) error {
function AppendSeriesElem (line 370) | func AppendSeriesElem(dst []byte, flag byte, name []byte, tags models.Ta...
function AppendSeriesKey (line 377) | func AppendSeriesKey(dst []byte, name []byte, tags models.Tags) []byte {
function ReadSeriesKey (line 433) | func ReadSeriesKey(data []byte) []byte {
function CompareSeriesKeys (line 438) | func CompareSeriesKeys(a, b []byte) int {
type seriesKeys (line 510) | type seriesKeys
method Len (line 512) | func (a seriesKeys) Len() int { return len(a) }
method Swap (line 513) | func (a seriesKeys) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 514) | func (a seriesKeys) Less(i, j int) bool {
type SeriesBlockEncoder (line 519) | type SeriesBlockEncoder struct
method N (line 559) | func (enc *SeriesBlockEncoder) N() int64 { return enc.n }
method Encode (line 563) | func (enc *SeriesBlockEncoder) Encode(name []byte, tags models.Tags, d...
method Close (line 619) | func (enc *SeriesBlockEncoder) Close() error {
method writeIndexEntries (line 672) | func (enc *SeriesBlockEncoder) writeIndexEntries() error {
method ensureHeaderWritten (line 701) | func (enc *SeriesBlockEncoder) ensureHeaderWritten() error {
method checkFlushIndex (line 716) | func (enc *SeriesBlockEncoder) checkFlushIndex(min []byte) error {
method flushIndex (line 736) | func (enc *SeriesBlockEncoder) flushIndex() error {
function NewSeriesBlockEncoder (line 542) | func NewSeriesBlockEncoder(w io.Writer, n uint32, m, k uint64) *SeriesBl...
type seriesBlockIndexEncodeInfo (line 790) | type seriesBlockIndexEncodeInfo struct
function ReadSeriesBlockTrailer (line 798) | func ReadSeriesBlockTrailer(data []byte) SeriesBlockTrailer {
type SeriesBlockTrailer (line 834) | type SeriesBlockTrailer struct
method WriteTo (line 870) | func (t SeriesBlockTrailer) WriteTo(w io.Writer) (n int64, err error) {
type serie (line 918) | type serie struct
method flag (line 925) | func (s *serie) flag() uint8 { return encodeSerieFlag(s.deleted) }
function encodeSerieFlag (line 927) | func encodeSerieFlag(deleted bool) byte {
type series (line 935) | type series
method Len (line 937) | func (a series) Len() int { return len(a) }
method Swap (line 938) | func (a series) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 939) | func (a series) Less(i, j int) bool {
function mapIndexFileSeriesBlock (line 949) | func mapIndexFileSeriesBlock(w io.Writer) (*SeriesBlock, []byte, error) {
function mapIndexFileSeriesBlockBuffer (line 961) | func mapIndexFileSeriesBlockBuffer(buf *bytes.Buffer) (*SeriesBlock, []b...
function mapIndexFileSeriesBlockFile (line 973) | func mapIndexFileSeriesBlockFile(f *os.File) (*SeriesBlock, []byte, erro...
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/series_block_test.go
function TestSeriesBlock_UnmarshalBinary (line 13) | func TestSeriesBlock_UnmarshalBinary(t *testing.T) {
function TestSeriesBlock_Series (line 24) | func TestSeriesBlock_Series(t *testing.T) {
function CreateSeriesBlock (line 55) | func CreateSeriesBlock(a []Series) (*tsi1.SeriesBlock, error) {
function MustCreateSeriesBlock (line 81) | func MustCreateSeriesBlock(a []Series) *tsi1.SeriesBlock {
type Series (line 90) | type Series struct
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/tag_block.go
constant TagBlockVersion (line 14) | TagBlockVersion = 1
constant TagKeyTombstoneFlag (line 18) | TagKeyTombstoneFlag = 0x01
constant TagValueTombstoneFlag (line 23) | TagValueTombstoneFlag = 0x01
constant TagKeyNSize (line 29) | TagKeyNSize = 8
constant TagKeyOffsetSize (line 30) | TagKeyOffsetSize = 8
constant TagValueNSize (line 33) | TagValueNSize = 8
constant TagValueOffsetSize (line 34) | TagValueOffsetSize = 8
type TagBlock (line 44) | type TagBlock struct
method Version (line 56) | func (blk *TagBlock) Version() int { return blk.version }
method UnmarshalBinary (line 60) | func (blk *TagBlock) UnmarshalBinary(data []byte) error {
method TagKeyElem (line 92) | func (blk *TagBlock) TagKeyElem(key []byte) TagKeyElem {
method TagValueElem (line 131) | func (blk *TagBlock) TagValueElem(key, value []byte) TagValueElem {
method TagKeyIterator (line 180) | func (blk *TagBlock) TagKeyIterator() TagKeyIterator {
type tagBlockKeyIterator (line 188) | type tagBlockKeyIterator struct
method Next (line 195) | func (itr *tagBlockKeyIterator) Next() TagKeyElem {
type tagBlockValueIterator (line 210) | type tagBlockValueIterator struct
method Next (line 216) | func (itr *tagBlockValueIterator) Next() TagValueElem {
type TagBlockKeyElem (line 231) | type TagBlockKeyElem struct
method Deleted (line 256) | func (e *TagBlockKeyElem) Deleted() bool { return (e.flag & TagKeyTomb...
method Key (line 259) | func (e *TagBlockKeyElem) Key() []byte { return e.key }
method TagValueIterator (line 262) | func (e *TagBlockKeyElem) TagValueIterator() TagValueIterator {
method unmarshal (line 268) | func (e *TagBlockKeyElem) unmarshal(buf, data []byte) {
type TagBlockValueElem (line 299) | type TagBlockValueElem struct
method Deleted (line 311) | func (e *TagBlockValueElem) Deleted() bool { return (e.flag & TagValue...
method Value (line 314) | func (e *TagBlockValueElem) Value() []byte { return e.value }
method SeriesN (line 317) | func (e *TagBlockValueElem) SeriesN() uint32 { return e.series.n }
method SeriesData (line 320) | func (e *TagBlockValueElem) SeriesData() []byte { return e.series.data }
method SeriesID (line 323) | func (e *TagBlockValueElem) SeriesID(i int) uint32 {
method SeriesIDs (line 328) | func (e *TagBlockValueElem) SeriesIDs() []uint32 {
method Size (line 343) | func (e *TagBlockValueElem) Size() int { return e.size }
method unmarshal (line 346) | func (e *TagBlockValueElem) unmarshal(buf []byte) {
constant TagBlockTrailerSize (line 374) | TagBlockTrailerSize = 0 +
type TagBlockTrailer (line 382) | type TagBlockTrailer struct
method WriteTo (line 406) | func (t *TagBlockTrailer) WriteTo(w io.Writer) (n int64, err error) {
function ReadTagBlockTrailer (line 439) | func ReadTagBlockTrailer(data []byte) (TagBlockTrailer, error) {
type TagBlockEncoder (line 470) | type TagBlockEncoder struct
method N (line 497) | func (enc *TagBlockEncoder) N() int64 { return enc.n }
method EncodeKey (line 500) | func (enc *TagBlockEncoder) EncodeKey(key []byte, deleted bool) error {
method EncodeValue (line 535) | func (enc *TagBlockEncoder) EncodeValue(value []byte, deleted bool, se...
method Close (line 590) | func (enc *TagBlockEncoder) Close() error {
method ensureHeaderWritten (line 620) | func (enc *TagBlockEncoder) ensureHeaderWritten() error {
method flushValueHashIndex (line 634) | func (enc *TagBlockEncoder) flushValueHashIndex() error {
method encodeTagKeyBlock (line 667) | func (enc *TagBlockEncoder) encodeTagKeyBlock() error {
function NewTagBlockEncoder (line 486) | func NewTagBlockEncoder(w io.Writer) *TagBlockEncoder {
type tagKeyEncodeEntry (line 724) | type tagKeyEncodeEntry struct
function encodeTagKeyFlag (line 738) | func encodeTagKeyFlag(deleted bool) byte {
function encodeTagValueFlag (line 746) | func encodeTagValueFlag(deleted bool) byte {
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/tag_block_test.go
function TestTagBlockWriter (line 13) | func TestTagBlockWriter(t *testing.T) {
function BenchmarkTagBlock_SeriesN_10_1000 (line 83) | func BenchmarkTagBlock_SeriesN_10_1000(b *testing.B) {
function BenchmarkTagBlock_SeriesN_100_1000 (line 86) | func BenchmarkTagBlock_SeriesN_100_1000(b *testing.B) {
function BenchmarkTagBlock_SeriesN_1000_1000 (line 89) | func BenchmarkTagBlock_SeriesN_1000_1000(b *testing.B) {
function BenchmarkTagBlock_SeriesN_1_1000000 (line 92) | func BenchmarkTagBlock_SeriesN_1_1000000(b *testing.B) {
function benchmarkTagBlock_SeriesN (line 96) | func benchmarkTagBlock_SeriesN(b *testing.B, tagN, valueN int, blk **tsi...
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/tsi1.go
constant LoadFactor (line 16) | LoadFactor = 80
type MeasurementElem (line 19) | type MeasurementElem interface
type MeasurementElems (line 25) | type MeasurementElems
method Len (line 27) | func (a MeasurementElems) Len() int { return len(a) }
method Swap (line 28) | func (a MeasurementElems) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 29) | func (a MeasurementElems) Less(i, j int) bool { return bytes.Compare(a...
type MeasurementIterator (line 32) | type MeasurementIterator interface
function MergeMeasurementIterators (line 39) | func MergeMeasurementIterators(itrs ...MeasurementIterator) MeasurementI...
type measurementMergeIterator (line 51) | type measurementMergeIterator struct
method Next (line 61) | func (itr *measurementMergeIterator) Next() MeasurementElem {
type measurementMergeElem (line 98) | type measurementMergeElem
method Name (line 101) | func (p measurementMergeElem) Name() []byte {
method Deleted (line 109) | func (p measurementMergeElem) Deleted() bool {
type filterUndeletedMeasurementIterator (line 117) | type filterUndeletedMeasurementIterator struct
method Next (line 129) | func (itr *filterUndeletedMeasurementIterator) Next() MeasurementElem {
function FilterUndeletedMeasurementIterator (line 122) | func FilterUndeletedMeasurementIterator(itr MeasurementIterator) Measure...
type TagKeyElem (line 142) | type TagKeyElem interface
type TagKeyIterator (line 149) | type TagKeyIterator interface
function MergeTagKeyIterators (line 156) | func MergeTagKeyIterators(itrs ...TagKeyIterator) TagKeyIterator {
type tagKeyMergeIterator (line 168) | type tagKeyMergeIterator struct
method Next (line 178) | func (itr *tagKeyMergeIterator) Next() TagKeyElem {
type tagKeyMergeElem (line 216) | type tagKeyMergeElem
method Key (line 219) | func (p tagKeyMergeElem) Key() []byte {
method Deleted (line 227) | func (p tagKeyMergeElem) Deleted() bool {
method TagValueIterator (line 235) | func (p tagKeyMergeElem) TagValueIterator() TagValueIterator {
type TagValueElem (line 253) | type TagValueElem interface
type TagValueIterator (line 259) | type TagValueIterator interface
function MergeTagValueIterators (line 266) | func MergeTagValueIterators(itrs ...TagValueIterator) TagValueIterator {
type tagValueMergeIterator (line 278) | type tagValueMergeIterator struct
method Next (line 288) | func (itr *tagValueMergeIterator) Next() TagValueElem {
type tagValueMergeElem (line 325) | type tagValueMergeElem
method Value (line 328) | func (p tagValueMergeElem) Value() []byte {
method Deleted (line 336) | func (p tagValueMergeElem) Deleted() bool {
type SeriesElem (line 344) | type SeriesElem interface
function SeriesElemKey (line 354) | func SeriesElemKey(e SeriesElem) []byte {
function CompareSeriesElem (line 372) | func CompareSeriesElem(a, b SeriesElem) int {
type seriesElem (line 380) | type seriesElem struct
method Name (line 386) | func (e *seriesElem) Name() []byte { return e.name }
method Tags (line 387) | func (e *seriesElem) Tags() models.Tags { return e.tags }
method Deleted (line 388) | func (e *seriesElem) Deleted() bool { return e.deleted }
method Expr (line 389) | func (e *seriesElem) Expr() influxql.Expr { return nil }
type SeriesIterator (line 392) | type SeriesIterator interface
function MergeSeriesIterators (line 399) | func MergeSeriesIterators(itrs ...SeriesIterator) SeriesIterator {
type seriesMergeIterator (line 413) | type seriesMergeIterator struct
method Next (line 422) | func (itr *seriesMergeIterator) Next() SeriesElem {
function IntersectSeriesIterators (line 474) | func IntersectSeriesIterators(itr0, itr1 SeriesIterator) SeriesIterator {
type seriesIntersectIterator (line 483) | type seriesIntersectIterator struct
method Next (line 490) | func (itr *seriesIntersectIterator) Next() (e SeriesElem) {
function UnionSeriesIterators (line 540) | func UnionSeriesIterators(itr0, itr1 SeriesIterator) SeriesIterator {
type seriesUnionIterator (line 552) | type seriesUnionIterator struct
method Next (line 559) | func (itr *seriesUnionIterator) Next() (e SeriesElem) {
function DifferenceSeriesIterators (line 608) | func DifferenceSeriesIterators(itr0, itr1 SeriesIterator) SeriesIterator {
type seriesDifferenceIterator (line 618) | type seriesDifferenceIterator struct
method Next (line 624) | func (itr *seriesDifferenceIterator) Next() (e SeriesElem) {
type filterUndeletedSeriesIterator (line 659) | type filterUndeletedSeriesIterator struct
method Next (line 671) | func (itr *filterUndeletedSeriesIterator) Next() SeriesElem {
function FilterUndeletedSeriesIterator (line 664) | func FilterUndeletedSeriesIterator(itr SeriesIterator) SeriesIterator {
type seriesExprElem (line 684) | type seriesExprElem struct
method Expr (line 690) | func (e *seriesExprElem) Expr() influxql.Expr { return e.expr }
type seriesExprIterator (line 693) | type seriesExprIterator struct
method Next (line 713) | func (itr *seriesExprIterator) Next() SeriesElem {
function newSeriesExprIterator (line 699) | func newSeriesExprIterator(itr SeriesIterator, expr influxql.Expr) Serie...
type seriesIDIterator (line 722) | type seriesIDIterator interface
function writeTo (line 727) | func writeTo(w io.Writer, v []byte, n *int64) error {
function writeUint8To (line 734) | func writeUint8To(w io.Writer, v uint8, n *int64) error {
function writeUint16To (line 741) | func writeUint16To(w io.Writer, v uint16, n *int64) error {
function writeUint32To (line 750) | func writeUint32To(w io.Writer, v uint32, n *int64) error {
function writeUint64To (line 759) | func writeUint64To(w io.Writer, v uint64, n *int64) error {
function writeUvarintTo (line 768) | func writeUvarintTo(w io.Writer, v uint64, n *int64) error {
type uint32Slice (line 776) | type uint32Slice
method Len (line 778) | func (a uint32Slice) Len() int { return len(a) }
method Swap (line 779) | func (a uint32Slice) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 780) | func (a uint32Slice) Less(i, j int) bool { return a[i] < a[j] }
type uint64Slice (line 782) | type uint64Slice
method Len (line 784) | func (a uint64Slice) Len() int { return len(a) }
method Swap (line 785) | func (a uint64Slice) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 786) | func (a uint64Slice) Less(i, j int) bool { return a[i] < a[j] }
type byteSlices (line 788) | type byteSlices
method Len (line 790) | func (a byteSlices) Len() int { return len(a) }
method Swap (line 791) | func (a byteSlices) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 792) | func (a byteSlices) Less(i, j int) bool { return bytes.Compare(a[i], a...
function copyBytes (line 795) | func copyBytes(b []byte) []byte {
function assert (line 805) | func assert(condition bool, msg string, v ...interface{}) {
type byTagKey (line 811) | type byTagKey
method Len (line 813) | func (t byTagKey) Len() int { return len(t) }
method Less (line 814) | func (t byTagKey) Less(i, j int) bool { return bytes.Compare(t[i].Key,...
method Swap (line 815) | func (t byTagKey) Swap(i, j int) { t[i], t[j] = t[j], t[i] }
function hexdump (line 818) | func hexdump(data []byte) { os.Stderr.Write([]byte(hex.Dump(data))) }
FILE: vendor/github.com/influxdata/influxdb/tsdb/index/tsi1/tsi1_test.go
function TestMeasurementIterator (line 15) | func TestMeasurementIterator(t *testing.T) {
function TestMergeMeasurementIterators (line 32) | func TestMergeMeasurementIterators(t *testing.T) {
function TestTagKeyIterator (line 61) | func TestTagKeyIterator(t *testing.T) {
function TestMergeTagKeyIterators (line 78) | func TestMergeTagKeyIterators(t *testing.T) {
function TestTagValueIterator (line 107) | func TestTagValueIterator(t *testing.T) {
function TestMergeTagValueIterators (line 124) | func TestMergeTagValueIterators(t *testing.T) {
function TestSeriesIterator (line 153) | func TestSeriesIterator(t *testing.T) {
function TestMergeSeriesIterators (line 170) | func TestMergeSeriesIterators(t *testing.T) {
type MeasurementElem (line 203) | type MeasurementElem struct
method Name (line 208) | func (e *MeasurementElem) Name() []byte { retur...
method Deleted (line 209) | func (e *MeasurementElem) Deleted() bool { retur...
method TagKeyIterator (line 210) | func (e *MeasurementElem) TagKeyIterator() tsi1.TagKeyIterator { retur...
type MeasurementIterator (line 213) | type MeasurementIterator struct
method Next (line 218) | func (itr *MeasurementIterator) Next() (e tsi1.MeasurementElem) {
type TagKeyElem (line 227) | type TagKeyElem struct
method Key (line 232) | func (e *TagKeyElem) Key() []byte { return...
method Deleted (line 233) | func (e *TagKeyElem) Deleted() bool { return...
method TagValueIterator (line 234) | func (e *TagKeyElem) TagValueIterator() tsi1.TagValueIterator { return...
type TagKeyIterator (line 237) | type TagKeyIterator struct
method Next (line 242) | func (itr *TagKeyIterator) Next() (e tsi1.TagKeyElem) {
type TagValueElem (line 251) | type TagValueElem struct
method Value (line 256) | func (e *TagValueElem) Value() []byte { return e...
method Deleted (line 257) | func (e *TagValueElem) Deleted() bool { return e...
method SeriesIterator (line 258) | func (e *TagValueElem) SeriesIterator() tsi1.SeriesIterator { return n...
type TagValueIterator (line 261) | type TagValueIterator struct
method Next (line 266) | func (itr *TagValueIterator) Next() (e tsi1.TagValueElem) {
type SeriesElem (line 275) | type SeriesElem struct
method Name (line 282) | func (e *SeriesElem) Name() []byte { return e.name }
method Tags (line 283) | func (e *SeriesElem) Tags() models.Tags { return e.tags }
method Deleted (line 284) | func (e *SeriesElem) Deleted() bool { return e.deleted }
method Expr (line 285) | func (e *SeriesElem) Expr() influxql.Expr { return e.expr }
type SeriesIterator (line 288) | type SeriesIterator struct
method Next (line 293) | func (itr *SeriesIterator) Next() (e tsi1.SeriesElem) {
function MustTempDir (line 302) | func MustTempDir() string {
FILE: vendor/github.com/influxdata/influxdb/tsdb/internal/meta.pb.go
constant _ (line 32) | _ = proto.GoGoProtoPackageIsVersion2
type Series (line 34) | type Series struct
method Reset (line 40) | func (m *Series) Reset() { *m = Series{} }
method String (line 41) | func (m *Series) String() string { return proto.CompactText...
method ProtoMessage (line 42) | func (*Series) ProtoMessage() {}
method Descriptor (line 43) | func (*Series) Descriptor() ([]byte, []int) { return fileDescriptorMet...
method GetKey (line 45) | func (m *Series) GetKey() string {
method GetTags (line 52) | func (m *Series) GetTags() []*Tag {
type Tag (line 59) | type Tag struct
method Reset (line 65) | func (m *Tag) Reset() { *m = Tag{} }
method String (line 66) | func (m *Tag) String() string { return proto.CompactTextStr...
method ProtoMessage (line 67) | func (*Tag) ProtoMessage() {}
method Descriptor (line 68) | func (*Tag) Descriptor() ([]byte, []int) { return fileDescriptorMeta, ...
method GetKey (line 70) | func (m *Tag) GetKey() string {
method GetValue (line 77) | func (m *Tag) GetValue() string {
type MeasurementFields (line 84) | type MeasurementFields struct
method Reset (line 89) | func (m *MeasurementFields) Reset() { *m = Measurem...
method String (line 90) | func (m *MeasurementFields) String() string { return proto....
method ProtoMessage (line 91) | func (*MeasurementFields) ProtoMessage() {}
method Descriptor (line 92) | func (*MeasurementFields) Descriptor() ([]byte, []int) { return fileDe...
method GetFields (line 94) | func (m *MeasurementFields) GetFields() []*Field {
type Field (line 101) | type Field struct
method Reset (line 108) | func (m *Field) Reset() { *m = Field{} }
method String (line 109) | func (m *Field) String() string { return proto.CompactTextS...
method ProtoMessage (line 110) | func (*Field) ProtoMessage() {}
method Descriptor (line 111) | func (*Field) Descriptor() ([]byte, []int) { return fileDescriptorMeta...
method GetID (line 113) | func (m *Field) GetID() int32 {
method GetName (line 120) | func (m *Field) GetName() string {
method GetType (line 127) | func (m *Field) GetType() int32 {
function init (line 134) | func init() {
function init (line 141) | func init() { proto.RegisterFile("internal/meta.proto", fileDescriptorMe...
FILE: vendor/github.com/influxdata/influxdb/tsdb/meta.go
function MarshalTags (line 13) | func MarshalTags(tags map[string]string) []byte {
function MakeTagsKey (line 48) | func MakeTagsKey(keys []string, tags models.Tags) []byte {
function MeasurementFromSeriesKey (line 103) | func MeasurementFromSeriesKey(key []byte) []byte {
FILE: vendor/github.com/influxdata/influxdb/tsdb/meta_test.go
function TestMarshalTags (line 14) | func TestMarshalTags(t *testing.T) {
function BenchmarkMarshalTags_KeyN1 (line 43) | func BenchmarkMarshalTags_KeyN1(b *testing.B) { benchmarkMarshalTags(b,...
function BenchmarkMarshalTags_KeyN3 (line 44) | func BenchmarkMarshalTags_KeyN3(b *testing.B) { benchmarkMarshalTags(b,...
function BenchmarkMarshalTags_KeyN5 (line 45) | func BenchmarkMarshalTags_KeyN5(b *testing.B) { benchmarkMarshalTags(b,...
function BenchmarkMarshalTags_KeyN10 (line 46) | func BenchmarkMarshalTags_KeyN10(b *testing.B) { benchmarkMarshalTags(b,...
function benchmarkMarshalTags (line 48) | func benchmarkMarshalTags(b *testing.B, keyN int) {
function TestMakeTagsKey (line 65) | func TestMakeTagsKey(t *testing.T) {
function BenchmarkMakeTagsKey_KeyN1 (line 114) | func BenchmarkMakeTagsKey_KeyN1(b *testing.B) { benchmarkMakeTagsKey(b,...
function BenchmarkMakeTagsKey_KeyN3 (line 115) | func BenchmarkMakeTagsKey_KeyN3(b *testing.B) { benchmarkMakeTagsKey(b,...
function BenchmarkMakeTagsKey_KeyN5 (line 116) | func BenchmarkMakeTagsKey_KeyN5(b *testing.B) { benchmarkMakeTagsKey(b,...
function BenchmarkMakeTagsKey_KeyN10 (line 117) | func BenchmarkMakeTagsKey_KeyN10(b *testing.B) { benchmarkMakeTagsKey(b,...
function makeTagsAndKeys (line 119) | func makeTagsAndKeys(keyN int) ([]string, models.Tags) {
function benchmarkMakeTagsKey (line 133) | func benchmarkMakeTagsKey(b *testing.B, keyN int) {
type TestSeries (line 143) | type TestSeries struct
function genTestSeries (line 148) | func genTestSeries(mCnt, tCnt, vCnt int) []*TestSeries {
type TagValGenerator (line 163) | type TagValGenerator struct
method First (line 177) | func (tvg *TagValGenerator) First() string {
method Curr (line 182) | func (tvg *TagValGenerator) Curr() string {
method Next (line 186) | func (tvg *TagValGenerator) Next() string {
function NewTagValGenerator (line 169) | func NewTagValGenerator(tagKey string, nVals int) *TagValGenerator {
type TagSet (line 195) | type TagSet
type TagSetGenerator (line 197) | type TagSetGenerator struct
method First (line 214) | func (tsg *TagSetGenerator) First() TagSet {
method Curr (line 221) | func (tsg *TagSetGenerator) Curr() TagSet {
method Next (line 229) | func (tsg *TagSetGenerator) Next() TagSet {
method AllSets (line 246) | func (tsg *TagSetGenerator) AllSets() []TagSet {
function NewTagSetGenerator (line 201) | func NewTagSetGenerator(nSets int, nTagVals ...int) *TagSetGenerator {
function genStrList (line 254) | func genStrList(prefix string, n int) []string {
FILE: vendor/github.com/influxdata/influxdb/tsdb/shard.go
constant monitorStatInterval (line 27) | monitorStatInterval = 30 * time.Second
constant statWriteReq (line 30) | statWriteReq = "writeReq"
constant statWriteReqOK (line 31) | statWriteReqOK = "writeReqOk"
constant statWriteReqErr (line 32) | statWriteReqErr = "writeReqErr"
constant statSeriesCreate (line 33) | statSeriesCreate = "seriesCreate"
constant statFieldsCreate (line 34) | statFieldsCreate = "fieldsCreate"
constant statWritePointsErr (line 35) | statWritePointsErr = "writePointsErr"
constant statWritePointsDropped (line 36) | statWritePointsDropped = "writePointsDropped"
constant statWritePointsOK (line 37) | statWritePointsOK = "writePointsOk"
constant statWriteBytes (line 38) | statWriteBytes = "writeBytes"
constant statDiskBytes (line 39) | statDiskBytes = "diskBytes"
type ShardError (line 72) | type ShardError struct
method Error (line 86) | func (e ShardError) Error() string {
function NewShardError (line 78) | func NewShardError(id uint64, err error) error {
type PartialWriteError (line 92) | type PartialWriteError struct
method Error (line 100) | func (e PartialWriteError) Error() string {
type Shard (line 108) | type Shard struct
method WithLogger (line 168) | func (s *Shard) WithLogger(log zap.Logger) {
method SetEnabled (line 180) | func (s *Shard) SetEnabled(enabled bool) {
method ID (line 192) | func (s *Shard) ID() uint64 {
method Database (line 197) | func (s *Shard) Database() string {
method RetentionPolicy (line 202) | func (s *Shard) RetentionPolicy() string {
method Statistics (line 220) | func (s *Shard) Statistics(tags map[string]string) []models.Statistic {
method Path (line 256) | func (s *Shard) Path() string { return s.path }
method Open (line 259) | func (s *Shard) Open() error {
method Close (line 321) | func (s *Shard) Close() error {
method CloseFast (line 332) | func (s *Shard) CloseFast() error {
method close (line 340) | func (s *Shard) close(clean bool) error {
method IndexType (line 368) | func (s *Shard) IndexType() string {
method ready (line 380) | func (s *Shard) ready() error {
method LastModified (line 391) | func (s *Shard) LastModified() time.Time {
method UnloadIndex (line 400) | func (s *Shard) UnloadIndex() {
method IsIdle (line 410) | func (s *Shard) IsIdle() bool {
method SetCompactionsEnabled (line 419) | func (s *Shard) SetCompactionsEnabled(enabled bool) {
method DiskSize (line 428) | func (s *Shard) DiskSize() (int64, error) {
method WritePoints (line 448) | func (s *Shard) WritePoints(points []models.Point) error {
method validateSeriesAndFields (line 489) | func (s *Shard) validateSeriesAndFields(points []models.Point) ([]mode...
method createFieldsAndMeasurements (line 640) | func (s *Shard) createFieldsAndMeasurements(fieldsToCreate []*FieldCre...
method DeleteSeries (line 664) | func (s *Shard) DeleteSeries(seriesKeys [][]byte) error {
method DeleteSeriesRange (line 669) | func (s *Shard) DeleteSeriesRange(seriesKeys [][]byte, min, max int64)...
method DeleteMeasurement (line 678) | func (s *Shard) DeleteMeasurement(name []byte) error {
method SeriesN (line 687) | func (s *Shard) SeriesN() int64 {
method SeriesSketches (line 696) | func (s *Shard) SeriesSketches() (estimator.Sketch, estimator.Sketch, ...
method MeasurementsSketches (line 705) | func (s *Shard) MeasurementsSketches() (estimator.Sketch, estimator.Sk...
method MeasurementNamesByExpr (line 715) | func (s *Shard) MeasurementNamesByExpr(cond influxql.Expr) ([][]byte, ...
method MeasurementNamesByRegex (line 724) | func (s *Shard) MeasurementNamesByRegex(re *regexp.Regexp) ([][]byte, ...
method MeasurementSeriesKeysByExpr (line 734) | func (s *Shard) MeasurementSeriesKeysByExpr(name []byte, expr influxql...
method MeasurementTagKeysByExpr (line 743) | func (s *Shard) MeasurementTagKeysByExpr(name []byte, expr influxql.Ex...
method MeasurementTagKeyValuesByExpr (line 753) | func (s *Shard) MeasurementTagKeyValuesByExpr(name []byte, key []strin...
method MeasurementFields (line 764) | func (s *Shard) MeasurementFields(name []byte) *MeasurementFields {
method MeasurementExists (line 775) | func (s *Shard) MeasurementExists(name []byte) (bool, error) {
method WriteTo (line 784) | func (s *Shard) WriteTo(w io.Writer) (int64, error) {
method CreateIterator (line 795) | func (s *Shard) CreateIterator(measurement string, opt influxql.Iterat...
method createSystemIterator (line 811) | func (s *Shard) createSystemIterator(engine Engine, measurement string...
method createSeriesIterator (line 827) | func (s *Shard) createSeriesIterator(opt influxql.IteratorOptions) (in...
method FieldDimensions (line 853) | func (s *Shard) FieldDimensions(measurements []string) (fields map[str...
method mapType (line 915) | func (s *Shard) mapType(measurement, field string) (influxql.DataType,...
method expandSources (line 964) | func (s *Shard) expandSources(sources influxql.Sources) (influxql.Sour...
method Backup (line 1021) | func (s *Shard) Backup(w io.Writer, basePath string, since time.Time) ...
method Restore (line 1031) | func (s *Shard) Restore(r io.Reader, basePath string) error {
method Import (line 1060) | func (s *Shard) Import(r io.Reader, basePath string) error {
method CreateSnapshot (line 1076) | func (s *Shard) CreateSnapshot() (string, error) {
method ForEachMeasurementName (line 1085) | func (s *Shard) ForEachMeasurementName(fn func(name []byte) error) err...
method ForEachMeasurementTagKey (line 1093) | func (s *Shard) ForEachMeasurementTagKey(name []byte, fn func(key []by...
method TagKeyCardinality (line 1101) | func (s *Shard) TagKeyCardinality(name, key []byte) int {
method engine (line 1117) | func (s *Shard) engine() (Engine, error) {
method engineNoLock (line 1125) | func (s *Shard) engineNoLock() (Engine, error) {
function NewShard (line 136) | func NewShard(id uint64, path string, walPath string, opt EngineOptions)...
type ShardStatistics (line 207) | type ShardStatistics struct
type FieldCreate (line 442) | type FieldCreate struct
type ShardGroup (line 1132) | type ShardGroup interface
type Shards (line 1141) | type Shards
method Len (line 1144) | func (a Shards) Len() int { return len(a) }
method Less (line 1147) | func (a Shards) Less(i, j int) bool { return a[i].id < a[j].id }
method Swap (line 1150) | func (a Shards) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method MeasurementsByRegex (line 1154) | func (a Shards) MeasurementsByRegex(re *regexp.Regexp) []string {
method FieldDimensions (line 1183) | func (a Shards) FieldDimensions(measurements []string) (fields map[str...
method MapType (line 1204) | func (a Shards) MapType(measurement, field string) influxql.DataType {
method CreateIterator (line 1216) | func (a Shards) CreateIterator(measurement string, opt influxql.Iterat...
method ExpandSources (line 1247) | func (a Shards) ExpandSources(sources influxql.Sources) (influxql.Sour...
type MeasurementFields (line 1286) | type MeasurementFields struct
method MarshalBinary (line 1298) | func (m *MeasurementFields) MarshalBinary() ([]byte, error) {
method UnmarshalBinary (line 1313) | func (m *MeasurementFields) UnmarshalBinary(buf []byte) error {
method CreateFieldIfNotExists (line 1331) | func (m *MeasurementFields) CreateFieldIfNotExists(name []byte, typ in...
method FieldN (line 1367) | func (m *MeasurementFields) FieldN() int {
method Field (line 1375) | func (m *MeasurementFields) Field(name string) *Field {
method HasField (line 1382) | func (m *MeasurementFields) HasField(name string) bool {
method FieldBytes (line 1393) | func (m *MeasurementFields) FieldBytes(name []byte) *Field {
method FieldSet (line 1401) | func (m *MeasurementFields) FieldSet() map[string]influxql.DataType {
method Clone (line 1413) | func (m *MeasurementFields) Clone() *MeasurementFields {
function NewMeasurementFields (line 1293) | func NewMeasurementFields() *MeasurementFields {
type MeasurementFieldSet (line 1427) | type MeasurementFieldSet struct
method Fields (line 1440) | func (fs *MeasurementFieldSet) Fields(name string) *MeasurementFields {
method CreateFieldsIfNotExists (line 1448) | func (fs *MeasurementFieldSet) CreateFieldsIfNotExists(name []byte) *M...
method Delete (line 1468) | func (fs *MeasurementFieldSet) Delete(name string) {
method DeleteWithLock (line 1475) | func (fs *MeasurementFieldSet) DeleteWithLock(name string, fn func() e...
function NewMeasurementFieldSet (line 1433) | func NewMeasurementFieldSet() *MeasurementFieldSet {
type Field (line 1488) | type Field struct
function NewFieldKeysIterator (line 1496) | func NewFieldKeysIterator(engine Engine, opt influxql.IteratorOptions) (...
type fieldKeysIterator (line 1510) | type fieldKeysIterator struct
method Stats (line 1520) | func (itr *fieldKeysIterator) Stats() influxql.IteratorStats { return ...
method Close (line 1523) | func (itr *fieldKeysIterator) Close() error { return nil }
method Next (line 1526) | func (itr *fieldKeysIterator) Next() (*influxql.FloatPoint, error) {
function NewTagKeysIterator (line 1571) | func NewTagKeysIterator(engine Engine, opt influxql.IteratorOptions) (in...
type measurementKeyFunc (line 1586) | type measurementKeyFunc
function newMeasurementKeysIterator (line 1588) | func newMeasurementKeysIterator(engine Engine, fn measurementKeyFunc, op...
type measurementKeysIterator (line 1601) | type measurementKeysIterator struct
method Stats (line 1611) | func (itr *measurementKeysIterator) Stats() influxql.IteratorStats { r...
method Close (line 1614) | func (itr *measurementKeysIterator) Close() error { return nil }
method Next (line 1617) | func (itr *measurementKeysIterator) Next() (*influxql.FloatPoint, erro...
type LimitError (line 1647) | type LimitError struct
method Error (line 1651) | func (e *LimitError) Error() string { return e.Reason }
FILE: vendor/github.com/influxdata/influxdb/tsdb/shard_internal_test.go
function TestShard_MapType (line 21) | func TestShard_MapType(t *testing.T) {
function TestShard_MeasurementsByRegex (line 155) | func TestShard_MeasurementsByRegex(t *testing.T) {
type TempShard (line 208) | type TempShard struct
method Close (line 240) | func (sh *TempShard) Close() error {
method MustWritePointsString (line 247) | func (sh *TempShard) MustWritePointsString(s string) {
function NewTempShard (line 214) | func NewTempShard(index string) *TempShard {
FILE: vendor/github.com/influxdata/influxdb/tsdb/shard_test.go
function TestShardWriteAndIndex (line 25) | func TestShardWriteAndIndex(t *testing.T) {
function TestMaxSeriesLimit (line 92) | func TestMaxSeriesLimit(t *testing.T) {
function TestShard_MaxTagValuesLimit (line 145) | func TestShard_MaxTagValuesLimit(t *testing.T) {
function TestWriteTimeTag (line 198) | func TestWriteTimeTag(t *testing.T) {
function TestWriteTimeField (line 246) | func TestWriteTimeField(t *testing.T) {
function TestShardWriteAddNewField (line 279) | func TestShardWriteAddNewField(t *testing.T) {
function TestShard_WritePoints_FieldConflictConcurrent (line 326) | func TestShard_WritePoints_FieldConflictConcurrent(t *testing.T) {
function TestShard_WritePoints_FieldConflictConcurrentQuery (line 410) | func TestShard_WritePoints_FieldConflictConcurrentQuery(t *testing.T) {
function TestShard_Close_RemoveIndex (line 558) | func TestShard_Close_RemoveIndex(t *testing.T) {
function TestShard_CreateIterator_Ascending (line 599) | func TestShard_CreateIterator_Ascending(t *testing.T) {
function TestShard_CreateIterator_Descending (line 674) | func TestShard_CreateIterator_Descending(t *testing.T) {
function TestShard_Disabled_WriteQuery (line 748) | func TestShard_Disabled_WriteQuery(t *testing.T) {
function TestShard_Closed_Functions (line 792) | func TestShard_Closed_Functions(t *testing.T) {
function TestShard_FieldDimensions (line 825) | func TestShard_FieldDimensions(t *testing.T) {
function BenchmarkWritePoints_NewSeries_1K (line 884) | func BenchmarkWritePoints_NewSeries_1K(b *testing.B) { benchmarkWriteP...
function BenchmarkWritePoints_NewSeries_100K (line 885) | func BenchmarkWritePoints_NewSeries_100K(b *testing.B) { benchmarkWriteP...
function BenchmarkWritePoints_NewSeries_250K (line 886) | func BenchmarkWritePoints_NewSeries_250K(b *testing.B) { benchmarkWriteP...
function BenchmarkWritePoints_NewSeries_500K (line 887) | func BenchmarkWritePoints_NewSeries_500K(b *testing.B) { benchmarkWriteP...
function BenchmarkWritePoints_NewSeries_1M (line 888) | func BenchmarkWritePoints_NewSeries_1M(b *testing.B) { benchmarkWriteP...
function BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_100_TagValues (line 891) | func BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_100_TagValues...
function BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_500_TagValues (line 894) | func BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_500_TagValues...
function BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_1000_TagValues (line 897) | func BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_1000_TagValue...
function BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_5000_TagValues (line 900) | func BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_5000_TagValue...
function BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_10000_TagValues (line 903) | func BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_10000_TagValu...
function BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_50000_TagValues (line 906) | func BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_50000_TagValu...
function BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_100000_TagValues (line 909) | func BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_100000_TagVal...
function BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_500000_TagValues (line 912) | func BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_500000_TagVal...
function BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_1000000_TagValues (line 915) | func BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_1000000_TagVa...
function BenchmarkWritePoints_NewSeries_100_Measurements_1_TagKey_1_TagValue (line 920) | func BenchmarkWritePoints_NewSeries_100_Measurements_1_TagKey_1_TagValue...
function BenchmarkWritePoints_NewSeries_500_Measurements_1_TagKey_1_TagValue (line 923) | func BenchmarkWritePoints_NewSeries_500_Measurements_1_TagKey_1_TagValue...
function BenchmarkWritePoints_NewSeries_1000_Measurement_1_TagKey_1_TagValue (line 926) | func BenchmarkWritePoints_NewSeries_1000_Measurement_1_TagKey_1_TagValue...
function BenchmarkWritePoints_NewSeries_5000_Measurement_1_TagKey_1_TagValue (line 930) | func BenchmarkWritePoints_NewSeries_5000_Measurement_1_TagKey_1_TagValue...
function BenchmarkWritePoints_NewSeries_10000_Measurement_1_TagKey_1_TagValue (line 933) | func BenchmarkWritePoints_NewSeries_10000_Measurement_1_TagKey_1_TagValu...
function BenchmarkWritePoints_NewSeries_50000_Measurement_1_TagKey_1_TagValue (line 936) | func BenchmarkWritePoints_NewSeries_50000_Measurement_1_TagKey_1_TagValu...
function BenchmarkWritePoints_NewSeries_100000_Measurement_1_TagKey_1_TagValue (line 939) | func BenchmarkWritePoints_NewSeries_100000_Measurement_1_TagKey_1_TagVal...
function BenchmarkWritePoints_NewSeries_500000_Measurement_1_TagKey_1_TagValue (line 942) | func BenchmarkWritePoints_NewSeries_500000_Measurement_1_TagKey_1_TagVal...
function BenchmarkWritePoints_NewSeries_1000000_Measurement_1_TagKey_1_TagValue (line 945) | func BenchmarkWritePoints_NewSeries_1000000_Measurement_1_TagKey_1_TagVa...
function BenchmarkWritePoints_NewSeries_1_Measurement_2_TagKeys_1_TagValue (line 950) | func BenchmarkWritePoints_NewSeries_1_Measurement_2_TagKeys_1_TagValue(b...
function BenchmarkWritePoints_NewSeries_1_Measurements_4_TagKeys_1_TagValue (line 953) | func BenchmarkWritePoints_NewSeries_1_Measurements_4_TagKeys_1_TagValue(...
function BenchmarkWritePoints_NewSeries_1_Measurements_8_TagKeys_1_TagValue (line 956) | func BenchmarkWritePoints_NewSeries_1_Measurements_8_TagKeys_1_TagValue(...
function BenchmarkWritePoints_NewSeries_1_Measurement_16_TagKeys_1_TagValue (line 959) | func BenchmarkWritePoints_NewSeries_1_Measurement_16_TagKeys_1_TagValue(...
function BenchmarkWritePoints_NewSeries_1_Measurement_32_TagKeys_1_TagValue (line 962) | func BenchmarkWritePoints_NewSeries_1_Measurement_32_TagKeys_1_TagValue(...
function BenchmarkWritePoints_NewSeries_1_Measurement_64_TagKeys_1_TagValue (line 965) | func BenchmarkWritePoints_NewSeries_1_Measurement_64_TagKeys_1_TagValue(...
function BenchmarkWritePoints_NewSeries_1_Measurement_128_TagKeys_1_TagValue (line 969) | func BenchmarkWritePoints_NewSeries_1_Measurement_128_TagKeys_1_TagValue...
function BenchmarkWritePoints_NewSeries_1_Measurement_256_TagKeys_1_TagValue (line 972) | func BenchmarkWritePoints_NewSeries_1_Measurement_256_TagKeys_1_TagValue...
function BenchmarkWritePoints_NewSeries_1_Measurement_512_TagKeys_1_TagValue (line 975) | func BenchmarkWritePoints_NewSeries_1_Measurement_512_TagKeys_1_TagValue...
function BenchmarkWritePoints_NewSeries_1_Measurement_1024_TagKeys_1_TagValue (line 978) | func BenchmarkWritePoints_NewSeries_1_Measurement_1024_TagKeys_1_TagValu...
function BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_65536_TagValue (line 983) | func BenchmarkWritePoints_NewSeries_1_Measurement_1_TagKey_65536_TagValu...
function BenchmarkWritePoints_NewSeries_1_Measurement_2_TagKeys_256_TagValue (line 986) | func BenchmarkWritePoints_NewSeries_1_Measurement_2_TagKeys_256_TagValue...
function BenchmarkWritePoints_NewSeries_1_Measurement_4_TagKeys_16_TagValue (line 989) | func BenchmarkWritePoints_NewSeries_1_Measurement_4_TagKeys_16_TagValue(...
function BenchmarkWritePoints_NewSeries_1_Measurement_8_TagKeys_4_TagValue (line 992) | func BenchmarkWritePoints_NewSeries_1_Measurement_8_TagKeys_4_TagValue(b...
function BenchmarkWritePoints_NewSeries_1_Measurement_16_TagKeys_2_TagValue (line 995) | func BenchmarkWritePoints_NewSeries_1_Measurement_16_TagKeys_2_TagValue(...
function BenchmarkWritePoints_ExistingSeries_1K (line 999) | func BenchmarkWritePoints_ExistingSeries_1K(b *testing.B) {
function BenchmarkWritePoints_ExistingSeries_100K (line 1002) | func BenchmarkWritePoints_ExistingSeries_100K(b *testing.B) {
function BenchmarkWritePoints_ExistingSeries_250K (line 1005) | func BenchmarkWritePoints_ExistingSeries_250K(b *testing.B) {
function BenchmarkWritePoints_ExistingSeries_500K (line 1008) | func BenchmarkWritePoints_ExistingSeries_500K(b *testing.B) {
function BenchmarkWritePoints_ExistingSeries_1M (line 1011) | func BenchmarkWritePoints_ExistingSeries_1M(b *testing.B) {
function benchmarkWritePoints (line 1020) | func benchmarkWritePoints(b *testing.B, mCnt, tkCnt, tvCnt, pntCnt int) {
function benchmarkWritePointsExistingSeries (line 1059) | func benchmarkWritePointsExistingSeries(b *testing.B, mCnt, tkCnt, tvCnt...
function chunkedWrite (line 1096) | func chunkedWrite(shard *tsdb.Shard, points []models.Point) {
type Shard (line 1117) | type Shard struct
method Close (line 1146) | func (sh *Shard) Close() error {
method MustWritePointsString (line 1153) | func (sh *Shard) MustWritePointsString(s string) {
function NewShard (line 1123) | func NewShard() *Shard {
FILE: vendor/github.com/influxdata/influxdb/tsdb/store.go
constant statDatabaseSeries (line 35) | statDatabaseSeries = "numSeries"
constant statDatabaseMeasurements (line 36) | statDatabaseMeasurements = "numMeasurements"
type Store (line 40) | type Store struct
method WithLogger (line 78) | func (s *Store) WithLogger(log zap.Logger) {
method Statistics (line 87) | func (s *Store) Statistics(tags map[string]string) []models.Statistic {
method Path (line 126) | func (s *Store) Path() string { return s.path }
method Open (line 130) | func (s *Store) Open() error {
method loadShards (line 155) | func (s *Store) loadShards() error {
method Close (line 281) | func (s *Store) Close() error {
method createIndexIfNotExists (line 306) | func (s *Store) createIndexIfNotExists(name string) (interface{}, erro...
method Shard (line 321) | func (s *Store) Shard(id uint64) *Shard {
method Shards (line 332) | func (s *Store) Shards(ids []uint64) []*Shard {
method ShardGroup (line 347) | func (s *Store) ShardGroup(ids []uint64) ShardGroup {
method ShardN (line 352) | func (s *Store) ShardN() int {
method CreateShard (line 359) | func (s *Store) CreateShard(database, retentionPolicy string, shardID ...
method CreateShardSnapshot (line 412) | func (s *Store) CreateShardSnapshot(id uint64) (string, error) {
method SetShardEnabled (line 422) | func (s *Store) SetShardEnabled(shardID uint64, enabled bool) error {
method DeleteShard (line 432) | func (s *Store) DeleteShard(shardID uint64) error {
method DeleteDatabase (line 463) | func (s *Store) DeleteDatabase(name string) error {
method DeleteRetentionPolicy (line 518) | func (s *Store) DeleteRetentionPolicy(database, name string) error {
method DeleteMeasurement (line 569) | func (s *Store) DeleteMeasurement(database, name string) error {
method filterShards (line 590) | func (s *Store) filterShards(fn func(sh *Shard) bool) []*Shard {
method walkShards (line 617) | func (s *Store) walkShards(shards []*Shard, fn func(sh *Shard) error) ...
method ShardIDs (line 651) | func (s *Store) ShardIDs() []uint64 {
method shardIDs (line 657) | func (s *Store) shardIDs() []uint64 {
method shardsSlice (line 666) | func (s *Store) shardsSlice() []*Shard {
method Databases (line 676) | func (s *Store) Databases() []string {
method DiskSize (line 689) | func (s *Store) DiskSize() (int64, error) {
method estimateCardinality (line 706) | func (s *Store) estimateCardinality(dbName string, getSketches func(*S...
method SeriesCardinality (line 739) | func (s *Store) SeriesCardinality(database string) (int64, error) {
method MeasurementsCardinality (line 750) | func (s *Store) MeasurementsCardinality(database string) (int64, error) {
method BackupShard (line 761) | func (s *Store) BackupShard(id uint64, since time.Time, w io.Writer) e...
method RestoreShard (line 777) | func (s *Store) RestoreShard(id uint64, r io.Reader) error {
method ImportShard (line 795) | func (s *Store) ImportShard(id uint64, r io.Reader) error {
method ShardRelativePath (line 811) | func (s *Store) ShardRelativePath(id uint64) (string, error) {
method DeleteSeries (line 821) | func (s *Store) DeleteSeries(database string, sources []influxql.Sourc...
method ExpandSources (line 892) | func (s *Store) ExpandSources(sources influxql.Sources) (influxql.Sour...
method WriteToShard (line 902) | func (s *Store) WriteToShard(shardID uint64, points []models.Point) er...
method MeasurementNames (line 925) | func (s *Store) MeasurementNames(database string, cond influxql.Expr) ...
method MeasurementSeriesCounts (line 955) | func (s *Store) MeasurementSeriesCounts(database string) (measuments i...
method TagValues (line 988) | func (s *Store) TagValues(database string, cond influxql.Expr) ([]TagV...
method monitorShards (line 1233) | func (s *Store) monitorShards() {
method filterShowSeriesResult (line 1330) | func (e *Store) filterShowSeriesResult(limit, offset int, rows models....
function NewStore (line 65) | func NewStore(path string) *Store {
function byDatabase (line 609) | func byDatabase(name string) func(sh *Shard) bool {
type TagValues (line 960) | type TagValues struct
type TagValuesSlice (line 965) | type TagValuesSlice
method Len (line 967) | func (a TagValuesSlice) Len() int { return len(a) }
method Swap (line 968) | func (a TagValuesSlice) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 969) | func (a TagValuesSlice) Less(i, j int) bool { return a[i].Measurement ...
type tagValues (line 974) | type tagValues struct
type tagValuesSlice (line 981) | type tagValuesSlice
method Len (line 983) | func (a tagValuesSlice) Len() int { return len(a) }
method Swap (line 984) | func (a tagValuesSlice) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 985) | func (a tagValuesSlice) Less(i, j int) bool { return bytes.Compare(a[i...
function mergeTagValues (line 1132) | func mergeTagValues(valueIdxs [][2]int, tvs ...tagValues) TagValues {
type KeyValue (line 1305) | type KeyValue struct
type KeyValues (line 1310) | type KeyValues
method Len (line 1313) | func (a KeyValues) Len() int { return len(a) }
method Swap (line 1316) | func (a KeyValues) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 1319) | func (a KeyValues) Less(i, j int) bool {
function decodeStorePath (line 1358) | func decodeStorePath(shardOrWALPath string) (database, retentionPolicy s...
function relativePath (line 1372) | func relativePath(storePath, shardPath string) (string, error) {
FILE: vendor/github.com/influxdata/influxdb/tsdb/store_internal_test.go
function TestStore_mergeTagValues (line 10) | func TestStore_mergeTagValues(t *testing.T) {
function createtagValues (line 125) | func createtagValues(mname string, kvs map[string][]string) tagValues {
function createTagValues (line 146) | func createTagValues(mname string, kvs map[string][]string) TagValues {
FILE: vendor/github.com/influxdata/influxdb/tsdb/store_test.go
function TestStore_DeleteRetentionPolicy (line 28) | func TestStore_DeleteRetentionPolicy(t *testing.T) {
function TestStore_CreateShard (line 98) | func TestStore_CreateShard(t *testing.T) {
function TestStore_DeleteShard (line 129) | func TestStore_DeleteShard(t *testing.T) {
function TestStore_CreateShardSnapShot (line 151) | func TestStore_CreateShardSnapShot(t *testing.T) {
function TestStore_Open (line 173) | func TestStore_Open(t *testing.T) {
function TestStore_Open_InvalidDatabaseFile (line 210) | func TestStore_Open_InvalidDatabaseFile(t *testing.T) {
function TestStore_Open_InvalidRetentionPolicy (line 230) | func TestStore_Open_InvalidRetentionPolicy(t *testing.T) {
function TestStore_Open_InvalidShard (line 254) | func TestStore_Open_InvalidShard(t *testing.T) {
function TestShards_CreateIterator (line 278) | func TestShards_CreateIterator(t *testing.T) {
function TestStore_BackupRestoreShard (line 355) | func TestStore_BackupRestoreShard(t *testing.T) {
function TestStore_MeasurementNames_Deduplicate (line 423) | func TestStore_MeasurementNames_Deduplicate(t *testing.T) {
function testStoreCardinalityTombstoning (line 457) | func testStoreCardinalityTombstoning(t *testing.T, store *Store) {
function TestStore_Cardinality_Tombstoning_Inmem (line 519) | func TestStore_Cardinality_Tombstoning_Inmem(t *testing.T) {
function TestStore_Cardinality_Tombstoning_TSI (line 531) | func TestStore_Cardinality_Tombstoning_TSI(t *testing.T) {
function testStoreCardinalityUnique (line 543) | func testStoreCardinalityUnique(t *testing.T, store *Store) {
function TestStore_Cardinality_Unique_Inmem (line 591) | func TestStore_Cardinality_Unique_Inmem(t *testing.T) {
function TestStore_Cardinality_Unique_TSI1 (line 604) | func TestStore_Cardinality_Unique_TSI1(t *testing.T) {
function testStoreCardinalityDuplicates (line 619) | func testStoreCardinalityDuplicates(t *testing.T, store *Store) {
function TestStore_Cardinality_Duplicates_Inmem (line 681) | func TestStore_Cardinality_Duplicates_Inmem(t *testing.T) {
function TestStore_Cardinality_Duplicates_TSI1 (line 694) | func TestStore_Cardinality_Duplicates_TSI1(t *testing.T) {
function testStoreCardinalityCompactions (line 709) | func testStoreCardinalityCompactions(t *testing.T, store *Store) {
function TestStore_Cardinality_Compactions_Inmem (line 757) | func TestStore_Cardinality_Compactions_Inmem(t *testing.T) {
function TestStore_Cardinality_Compactions_TSI1 (line 770) | func TestStore_Cardinality_Compactions_TSI1(t *testing.T) {
function TestStore_TagValues (line 783) | func TestStore_TagValues(t *testing.T) {
function createTagValues (line 910) | func createTagValues(mname string, kvs map[string][]string) tsdb.TagValu...
function benchmarkStoreSeriesCardinality (line 933) | func benchmarkStoreSeriesCardinality(b *testing.B, store *Store, n int) {
function BenchmarkStore_SeriesCardinality_100_Shards_Inmem (line 952) | func BenchmarkStore_SeriesCardinality_100_Shards_Inmem(b *testing.B) {
function BenchmarkStore_SeriesCardinality_100_Shards_TSI (line 962) | func BenchmarkStore_SeriesCardinality_100_Shards_TSI(b *testing.B) {
function BenchmarkStoreOpen_200KSeries_100Shards (line 972) | func BenchmarkStoreOpen_200KSeries_100Shards(b *testing.B) { benchmarkSt...
function benchmarkStoreOpen (line 974) | func benchmarkStoreOpen(b *testing.B, mCnt, tkCnt, tvCnt, pntCnt, shardC...
function BenchmarkStore_TagValues (line 1025) | func BenchmarkStore_TagValues(b *testing.B) {
type Store (line 1146) | type Store struct
method Reopen (line 1181) | func (s *Store) Reopen() error {
method Close (line 1191) | func (s *Store) Close() error {
method MustCreateShardWithData (line 1197) | func (s *Store) MustCreateShardWithData(db, rp string, shardID int, da...
method MustWriteToShardString (line 1206) | func (s *Store) MustWriteToShardString(shardID int, data ...string) {
method BatchWrite (line 1222) | func (s *Store) BatchWrite(shardID int, points []models.Point) error {
function NewStore (line 1151) | func NewStore() *Store {
function MustOpenStore (line 1172) | func MustOpenStore() *Store {
function ParseTags (line 1246) | func ParseTags(s string) influxql.Tags {
function dirExists (line 1255) | func dirExists(path string) bool {
FILE: vendor/github.com/influxdata/influxdb/uuid/uuid.go
type UUID (line 43) | type UUID
method String (line 82) | func (u UUID) String() string {
function TimeUUID (line 51) | func TimeUUID() UUID {
function FromTime (line 58) | func FromTime(aTime time.Time) UUID {
FILE: vendor/github.com/vmware/govmomi/client.go
type Client (line 71) | type Client struct
method Login (line 128) | func (c *Client) Login(ctx context.Context, u *url.Userinfo) error {
method LoginExtensionByCertificate (line 133) | func (c *Client) LoginExtensionByCertificate(ctx context.Context, key ...
method Logout (line 138) | func (c *Client) Logout(ctx context.Context) error {
method PropertyCollector (line 145) | func (c *Client) PropertyCollector() *property.Collector {
method RetrieveOne (line 150) | func (c *Client) RetrieveOne(ctx context.Context, obj types.ManagedObj...
method Retrieve (line 155) | func (c *Client) Retrieve(ctx context.Context, objs []types.ManagedObj...
method Wait (line 160) | func (c *Client) Wait(ctx context.Context, obj types.ManagedObjectRefe...
method IsVC (line 165) | func (c *Client) IsVC() bool {
function NewClient (line 79) | func NewClient(ctx context.Context, u *url.URL, insecure bool) (*Client,...
function NewClientWithCertificate (line 104) | func NewClientWithCertificate(ctx context.Context, u *url.URL, insecure ...
FILE: vendor/github.com/vmware/govmomi/client_test.go
function TestNewClient (line 31) | func TestNewClient(t *testing.T) {
function TestInvalidSdk (line 85) | func TestInvalidSdk(t *testing.T) {
function TestPropertiesN (line 99) | func TestPropertiesN(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/event/history_collector.go
type HistoryCollector (line 29) | type HistoryCollector struct
method LatestPage (line 39) | func (h HistoryCollector) LatestPage(ctx context.Context) ([]types.Bas...
method ReadNextEvents (line 50) | func (h HistoryCollector) ReadNextEvents(ctx context.Context, maxCount...
method ReadPreviousEvents (line 64) | func (h HistoryCollector) ReadPreviousEvents(ctx context.Context, maxC...
function NewHistoryCollector (line 33) | func NewHistoryCollector(c *vim25.Client, ref types.ManagedObjectReferen...
FILE: vendor/github.com/vmware/govmomi/event/manager.go
type Manager (line 33) | type Manager struct
method CreateCollectorForEvents (line 53) | func (m Manager) CreateCollectorForEvents(ctx context.Context, filter ...
method LogUserEvent (line 67) | func (m Manager) LogUserEvent(ctx context.Context, entity types.Manage...
method PostEvent (line 82) | func (m Manager) PostEvent(ctx context.Context, eventToPost types.Base...
method QueryEvents (line 97) | func (m Manager) QueryEvents(ctx context.Context, filter types.EventFi...
method RetrieveArgumentDescription (line 111) | func (m Manager) RetrieveArgumentDescription(ctx context.Context, even...
method eventCategoryMap (line 125) | func (m Manager) eventCategoryMap(ctx context.Context) (map[string]str...
method EventCategory (line 149) | func (m Manager) EventCategory(ctx context.Context, event types.BaseEv...
method Events (line 164) | func (m Manager) Events(ctx context.Context, objects []types.ManagedOb...
function NewManager (line 41) | func NewManager(c *vim25.Client) *Manager {
FILE: vendor/github.com/vmware/govmomi/event/processor.go
constant latestPageProp (line 28) | latestPageProp = "latestPage"
type tailInfo (line 30) | type tailInfo struct
type eventProcessor (line 36) | type eventProcessor struct
method addObject (line 52) | func (p *eventProcessor) addObject(ctx context.Context, obj types.Mana...
method run (line 79) | func (p *eventProcessor) run(ctx context.Context, tail bool) error {
method process (line 133) | func (p *eventProcessor) process(c types.ManagedObjectReference, pc []...
function newEventProcessor (line 43) | func newEventProcessor(mgr Manager, pageSize int32, callback func(types....
constant invalidKey (line 157) | invalidKey = int32(-1)
type eventTailer (line 159) | type eventTailer struct
method newEvents (line 169) | func (t *eventTailer) newEvents(evs []types.BaseEvent) []types.BaseEve...
function newEventTailer (line 163) | func newEventTailer() *eventTailer {
FILE: vendor/github.com/vmware/govmomi/event/sort.go
function Sort (line 29) | func Sort(events []types.BaseEvent) {
type baseEvent (line 33) | type baseEvent
method Len (line 35) | func (d baseEvent) Len() int {
method Less (line 39) | func (d baseEvent) Less(i, j int) bool {
method Swap (line 43) | func (d baseEvent) Swap(i, j int) {
FILE: vendor/github.com/vmware/govmomi/examples/datastores/main.go
function main (line 37) | func main() {
FILE: vendor/github.com/vmware/govmomi/examples/examples.go
function getEnvString (line 32) | func getEnvString(v string, def string) string {
function getEnvBool (line 42) | func getEnvBool(v string, def bool) bool {
constant envURL (line 57) | envURL = "GOVMOMI_URL"
constant envUserName (line 58) | envUserName = "GOVMOMI_USERNAME"
constant envPassword (line 59) | envPassword = "GOVMOMI_PASSWORD"
constant envInsecure (line 60) | envInsecure = "GOVMOMI_INSECURE"
function processOverride (line 69) | func processOverride(u *url.URL) {
function NewClient (line 102) | func NewClient(ctx context.Context) (*govmomi.Client, error) {
FILE: vendor/github.com/vmware/govmomi/examples/hosts/main.go
function main (line 37) | func main() {
FILE: vendor/github.com/vmware/govmomi/examples/networks/main.go
function main (line 29) | func main() {
FILE: vendor/github.com/vmware/govmomi/examples/virtualmachines/main.go
function main (line 34) | func main() {
FILE: vendor/github.com/vmware/govmomi/find/error.go
type NotFoundError (line 21) | type NotFoundError struct
method Error (line 26) | func (e *NotFoundError) Error() string {
type MultipleFoundError (line 30) | type MultipleFoundError struct
method Error (line 35) | func (e *MultipleFoundError) Error() string {
type DefaultNotFoundError (line 39) | type DefaultNotFoundError struct
method Error (line 43) | func (e *DefaultNotFoundError) Error() string {
type DefaultMultipleFoundError (line 47) | type DefaultMultipleFoundError struct
method Error (line 51) | func (e DefaultMultipleFoundError) Error() string {
function toDefaultError (line 55) | func toDefaultError(err error) error {
FILE: vendor/github.com/vmware/govmomi/find/finder.go
type Finder (line 33) | type Finder struct
method SetDatacenter (line 54) | func (f *Finder) SetDatacenter(dc *object.Datacenter) *Finder {
method findRoot (line 62) | func (f *Finder) findRoot(ctx context.Context, root *list.Element, par...
method find (line 92) | func (f *Finder) find(ctx context.Context, arg string, s *spec) ([]lis...
method datacenter (line 143) | func (f *Finder) datacenter() (*object.Datacenter, error) {
method datacenterPath (line 152) | func (f *Finder) datacenterPath(ctx context.Context, ref types.Managed...
method dcFolders (line 180) | func (f *Finder) dcFolders(ctx context.Context) (*object.DatacenterFol...
method dcReference (line 200) | func (f *Finder) dcReference(_ context.Context) (object.Reference, err...
method vmFolder (line 209) | func (f *Finder) vmFolder(ctx context.Context) (object.Reference, erro...
method hostFolder (line 218) | func (f *Finder) hostFolder(ctx context.Context) (object.Reference, er...
method datastoreFolder (line 227) | func (f *Finder) datastoreFolder(ctx context.Context) (object.Referenc...
method networkFolder (line 236) | func (f *Finder) networkFolder(ctx context.Context) (object.Reference,...
method rootFolder (line 245) | func (f *Finder) rootFolder(_ context.Context) (object.Reference, erro...
method managedObjectList (line 249) | func (f *Finder) managedObjectList(ctx context.Context, path string, t...
method Element (line 276) | func (f *Finder) Element(ctx context.Context, ref types.ManagedObjectR...
method ObjectReference (line 303) | func (f *Finder) ObjectReference(ctx context.Context, ref types.Manage...
method ManagedObjectList (line 326) | func (f *Finder) ManagedObjectList(ctx context.Context, path string, i...
method ManagedObjectListChildren (line 330) | func (f *Finder) ManagedObjectListChildren(ctx context.Context, path s...
method DatacenterList (line 334) | func (f *Finder) DatacenterList(ctx context.Context, path string) ([]*...
method Datacenter (line 362) | func (f *Finder) Datacenter(ctx context.Context, path string) (*object...
method DefaultDatacenter (line 375) | func (f *Finder) DefaultDatacenter(ctx context.Context) (*object.Datac...
method DatacenterOrDefault (line 384) | func (f *Finder) DatacenterOrDefault(ctx context.Context, path string)...
method DatastoreList (line 396) | func (f *Finder) DatastoreList(ctx context.Context, path string) ([]*o...
method Datastore (line 435) | func (f *Finder) Datastore(ctx context.Context, path string) (*object....
method DefaultDatastore (line 448) | func (f *Finder) DefaultDatastore(ctx context.Context) (*object.Datast...
method DatastoreOrDefault (line 457) | func (f *Finder) DatastoreOrDefault(ctx context.Context, path string) ...
method DatastoreClusterList (line 469) | func (f *Finder) DatastoreClusterList(ctx context.Context, path string...
method DatastoreCluster (line 496) | func (f *Finder) DatastoreCluster(ctx context.Context, path string) (*...
method DefaultDatastoreCluster (line 509) | func (f *Finder) DefaultDatastoreCluster(ctx context.Context) (*object...
method DatastoreClusterOrDefault (line 518) | func (f *Finder) DatastoreClusterOrDefault(ctx context.Context, path s...
method ComputeResourceList (line 530) | func (f *Finder) ComputeResourceList(ctx context.Context, path string)...
method ComputeResource (line 562) | func (f *Finder) ComputeResource(ctx context.Context, path string) (*o...
method DefaultComputeResource (line 575) | func (f *Finder) DefaultComputeResource(ctx context.Context) (*object....
method ComputeResourceOrDefault (line 584) | func (f *Finder) ComputeResourceOrDefault(ctx context.Context, path st...
method ClusterComputeResourceList (line 596) | func (f *Finder) ClusterComputeResourceList(ctx context.Context, path ...
method ClusterComputeResource (line 628) | func (f *Finder) ClusterComputeResource(ctx context.Context, path stri...
method HostSystemList (line 641) | func (f *Finder) HostSystemList(ctx context.Context, path string) ([]*...
method HostSystem (line 684) | func (f *Finder) HostSystem(ctx context.Context, path string) (*object...
method DefaultHostSystem (line 697) | func (f *Finder) DefaultHostSystem(ctx context.Context) (*object.HostS...
method HostSystemOrDefault (line 706) | func (f *Finder) HostSystemOrDefault(ctx context.Context, path string)...
method NetworkList (line 718) | func (f *Finder) NetworkList(ctx context.Context, path string) ([]obje...
method Network (line 758) | func (f *Finder) Network(ctx context.Context, path string) (object.Net...
method DefaultNetwork (line 771) | func (f *Finder) DefaultNetwork(ctx context.Context) (object.NetworkRe...
method NetworkOrDefault (line 780) | func (f *Finder) NetworkOrDefault(ctx context.Context, path string) (o...
method ResourcePoolList (line 792) | func (f *Finder) ResourcePoolList(ctx context.Context, path string) ([...
method ResourcePool (line 824) | func (f *Finder) ResourcePool(ctx context.Context, path string) (*obje...
method DefaultResourcePool (line 837) | func (f *Finder) DefaultResourcePool(ctx context.Context) (*object.Res...
method ResourcePoolOrDefault (line 846) | func (f *Finder) ResourcePoolOrDefault(ctx context.Context, path strin...
method ResourcePoolListAll (line 860) | func (f *Finder) ResourcePoolListAll(ctx context.Context, path string)...
method DefaultFolder (line 881) | func (f *Finder) DefaultFolder(ctx context.Context) (*object.Folder, e...
method FolderOrDefault (line 891) | func (f *Finder) FolderOrDefault(ctx context.Context, path string) (*o...
method VirtualMachineList (line 902) | func (f *Finder) VirtualMachineList(ctx context.Context, path string) ...
method VirtualMachine (line 930) | func (f *Finder) VirtualMachine(ctx context.Context, path string) (*ob...
method VirtualAppList (line 943) | func (f *Finder) VirtualAppList(ctx context.Context, path string) ([]*...
method VirtualApp (line 970) | func (f *Finder) VirtualApp(ctx context.Context, path string) (*object...
method FolderList (line 983) | func (f *Finder) FolderList(ctx context.Context, path string) ([]*obje...
method Folder (line 1010) | func (f *Finder) Folder(ctx context.Context, path string) (*object.Fol...
function NewFinder (line 41) | func NewFinder(client *vim25.Client, all bool) *Finder {
FILE: vendor/github.com/vmware/govmomi/find/recurser.go
type spec (line 31) | type spec struct
method traversable (line 59) | func (s *spec) traversable(o mo.Reference) bool {
method traversableChildType (line 91) | func (s *spec) traversableChildType(ctypes []string) bool {
method wanted (line 107) | func (s *spec) wanted(e list.Element) bool {
method listMode (line 127) | func (s *spec) listMode(isPath bool) bool {
type recurser (line 139) | type recurser struct
method List (line 146) | func (r recurser) List(ctx context.Context, s *spec, root list.Element...
method Find (line 205) | func (r recurser) Find(ctx context.Context, s *spec, root list.Element...
FILE: vendor/github.com/vmware/govmomi/gen/gen_from_vmodl.rb
function read (line 21) | def read(file)
class Prop (line 25) | class Prop
method initialize (line 26) | def initialize(vmodl, data)
method slice? (line 31) | def slice?
method optional? (line 35) | def optional?
method name (line 39) | def name
method var_field (line 43) | def var_field
method var_type_prefix (line 48) | def var_type_prefix(base=false)
method var_type (line 60) | def var_type
method var_tag (line 112) | def var_tag
method dump (line 116) | def dump(io)
class Managed (line 121) | class Managed
method initialize (line 122) | def initialize(vmodl, name, data)
method name (line 128) | def name
method props (line 132) | def props
method dump (line 138) | def dump(io)
method dump_init (line 173) | def dump_init(io)
class Vmodl (line 180) | class Vmodl
method initialize (line 181) | def initialize(data)
method managed_hash (line 185) | def managed_hash
method managed (line 195) | def managed
FILE: vendor/github.com/vmware/govmomi/gen/vim_wsdl.rb
function valid_ns? (line 20) | def valid_ns?(t)
function init_type (line 24) | def init_type(io, name, kind)
class Peek (line 41) | class Peek
class Type (line 42) | class Type
method initialize (line 45) | def initialize(name)
method base? (line 50) | def base?
method types (line 59) | def self.types
method refs (line 63) | def self.refs
method enums (line 67) | def self.enums
method ref (line 71) | def self.ref(type)
method enum (line 75) | def self.enum(type)
method enum? (line 79) | def self.enum?(type)
method register (line 83) | def self.register(name)
method base? (line 88) | def self.base?(name)
method dump_interfaces (line 93) | def self.dump_interfaces(io)
class EnumValue (line 102) | class EnumValue
method initialize (line 103) | def initialize(type, value)
method type_name (line 108) | def type_name
method var_name (line 112) | def var_name
method var_value (line 124) | def var_value
method dump (line 128) | def dump(io)
class Simple (line 133) | class Simple
method initialize (line 138) | def initialize(node)
method name (line 142) | def name
method type (line 146) | def type
method is_enum? (line 150) | def is_enum?
method dump_init (line 154) | def dump_init(io)
method var_name (line 158) | def var_name
method ns (line 165) | def ns(t = self.type)
method vim_type? (line 169) | def vim_type?
method vim_type (line 173) | def vim_type(t = self.type)
method base_type? (line 181) | def base_type?
method enum_type? (line 185) | def enum_type?
method any_type? (line 189) | def any_type?
method pointer_type? (line 193) | def pointer_type?
method var_type (line 197) | def var_type
method slice? (line 269) | def slice?
method optional? (line 273) | def optional?
method need_omitempty= (line 277) | def need_omitempty=(v)
method need_omitempty? (line 281) | def need_omitempty?
method need_typeattr? (line 290) | def need_typeattr?
method test_attr (line 296) | def test_attr(attr, expected)
class Element (line 311) | class Element < Simple
method initialize (line 312) | def initialize(node)
method has_type? (line 316) | def has_type?
method child (line 320) | def child
method dump (line 330) | def dump(io)
method dump_init (line 338) | def dump_init(io)
method dump_field (line 344) | def dump_field(io)
method peek (line 351) | def peek(type=nil)
class Attribute (line 362) | class Attribute < Simple
method dump_field (line 363) | def dump_field(io)
class SimpleType (line 371) | class SimpleType < Simple
method is_enum? (line 372) | def is_enum?
method dump (line 376) | def dump(io)
method dump_init (line 387) | def dump_init(io)
method peek (line 391) | def peek
class ComplexType (line 396) | class ComplexType < Simple
class SimpleContent (line 397) | class SimpleContent < Simple
method dump (line 398) | def dump(io)
method peek (line 408) | def peek
class ComplexContent (line 412) | class ComplexContent < Simple
method base (line 413) | def base
method dump (line 423) | def dump(io)
method dump_interface (line 427) | def dump_interface(io, name)
method peek (line 431) | def peek
class Sequence (line 436) | class Sequence < Simple
method sequence (line 437) | def sequence
method dump (line 448) | def dump(io, base = nil)
method dump_interface (line 465) | def dump_interface(io, name)
method peek (line 474) | def peek(base = nil)
method klass (line 491) | def klass
method dump_init (line 511) | def dump_init(io)
method dump (line 515) | def dump(io)
method peek (line 521) | def peek
class Schema (line 527) | class Schema
method initialize (line 532) | def initialize(xml)
method validate_assumptions! (line 539) | def validate_assumptions!
method types (line 617) | def types
method imports (line 666) | def imports
method includes (line 672) | def includes
class Operation (line 680) | class Operation
method initialize (line 683) | def initialize(wsdl, operation_node)
method name (line 688) | def name
method namespace (line 692) | def namespace
method remove_ns (line 697) | def remove_ns(x)
method keep_ns (line 705) | def keep_ns(x)
method find_type_for (line 713) | def find_type_for(type)
method input (line 725) | def input
method go_input (line 730) | def go_input
method output (line 734) | def output
method go_output (line 739) | def go_output
method dump (line 743) | def dump(io)
class WSDL (line 772) | class WSDL
method read (line 777) | def self.read(file)
method initialize (line 781) | def initialize(xml)
method validate_assumptions! (line 790) | def validate_assumptions!
method types (line 796) | def types(&blk)
method schemas (line 804) | def schemas
method operations (line 810) | def operations
method message (line 816) | def message(type)
method peek (line 828) | def peek
method header (line 836) | def self.header(name)
FILE: vendor/github.com/vmware/govmomi/govc/about/cert.go
type cert (line 34) | type cert struct
method Register (line 46) | func (cmd *cert) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 57) | func (cmd *cert) Description() string {
method Process (line 70) | func (cmd *cert) Process(ctx context.Context) error {
method Run (line 99) | func (cmd *cert) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 42) | func init() {
type certResult (line 80) | type certResult struct
method Write (line 85) | func (r *certResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/about/command.go
type about (line 31) | type about struct
method Register (line 42) | func (cmd *about) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 52) | func (cmd *about) Description() string {
method Process (line 62) | func (cmd *about) Process(ctx context.Context) error {
method Run (line 72) | func (cmd *about) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
type infoResult (line 91) | type infoResult struct
method Write (line 97) | func (r *infoResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/cli/command.go
type HasFlags (line 30) | type HasFlags interface
type Command (line 38) | type Command interface
function generalHelp (line 44) | func generalHelp(w io.Writer) {
function commandHelp (line 59) | func commandHelp(w io.Writer, name string, cmd Command, f *flag.FlagSet) {
function clientLogout (line 93) | func clientLogout(ctx context.Context, cmd Command) error {
function Run (line 105) | func Run(args []string) int {
FILE: vendor/github.com/vmware/govmomi/govc/cli/register.go
function Register (line 23) | func Register(name string, c Command) {
function Alias (line 27) | func Alias(name string, alias string) {
function Commands (line 31) | func Commands() map[string]Command {
FILE: vendor/github.com/vmware/govmomi/govc/cluster/add.go
type add (line 29) | type add struct
method Register (line 42) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 56) | func (cmd *add) Process(ctx context.Context) error {
method Description (line 75) | func (cmd *add) Description() string {
method Add (line 86) | func (cmd *add) Add(ctx context.Context, cluster *object.ClusterComput...
method Run (line 106) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/cluster/change.go
type change (line 29) | type change struct
method Register (line 39) | func (cmd *change) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 67) | func (cmd *change) Process(ctx context.Context) error {
method Usage (line 74) | func (cmd *change) Usage() string {
method Description (line 78) | func (cmd *change) Description() string {
method Run (line 86) | func (cmd *change) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/cluster/create.go
type create (line 28) | type create struct
method Register (line 38) | func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 43) | func (cmd *create) Usage() string {
method Description (line 47) | func (cmd *create) Description() string {
method Process (line 58) | func (cmd *create) Process(ctx context.Context) error {
method Run (line 65) | func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/datacenter/create.go
type create (line 27) | type create struct
method Register (line 35) | func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 40) | func (cmd *create) Usage() string {
method Process (line 44) | func (cmd *create) Process(ctx context.Context) error {
method Run (line 51) | func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 31) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/datacenter/info.go
type info (line 36) | type info struct
method Register (line 46) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 57) | func (cmd *info) Process(ctx context.Context) error {
method Usage (line 70) | func (cmd *info) Usage() string {
method Run (line 74) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 42) | func init() {
type infoResult (line 132) | type infoResult struct
method Write (line 139) | func (r *infoResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/cp.go
type cp (line 29) | type cp struct
method Register (line 40) | func (cmd *cp) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 50) | func (cmd *cp) Process(ctx context.Context) error {
method Usage (line 60) | func (cmd *cp) Usage() string {
method Description (line 64) | func (cmd *cp) Description() string {
method Run (line 72) | func (cmd *cp) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/create.go
type create (line 35) | type create struct
method Register (line 122) | func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 150) | func (cmd *create) Process(ctx context.Context) error {
method Usage (line 157) | func (cmd *create) Usage() string {
method Description (line 161) | func (cmd *create) Description() string {
method Run (line 170) | func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
method GetHostNasVolumeSpec (line 188) | func (cmd *create) GetHostNasVolumeSpec() types.HostNasVolumeSpec {
method CreateNasDatastore (line 207) | func (cmd *create) CreateNasDatastore(ctx context.Context, hosts []*ob...
method CreateVmfsDatastore (line 245) | func (cmd *create) CreateVmfsDatastore(ctx context.Context, hosts []*o...
method CreateLocalDatastore (line 299) | func (cmd *create) CreateLocalDatastore(ctx context.Context, hosts []*...
function init (line 57) | func init() {
function init (line 77) | func init() {
type typeFlag (line 83) | type typeFlag
method Set (line 85) | func (t *typeFlag) Set(s string) error {
method String (line 97) | func (t *typeFlag) String() string {
method partOf (line 101) | func (t *typeFlag) partOf(m []string) bool {
method IsNasType (line 110) | func (t *typeFlag) IsNasType() bool {
method IsVmfsType (line 114) | func (t *typeFlag) IsVmfsType() bool {
method IsLocalType (line 118) | func (t *typeFlag) IsLocalType() bool {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/disk/create.go
type create (line 30) | type create struct
method Register (line 40) | func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 48) | func (cmd *create) Process(ctx context.Context) error {
method Usage (line 55) | func (cmd *create) Usage() string {
method Description (line 59) | func (cmd *create) Description() string {
method Run (line 67) | func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/disk/info.go
type info (line 32) | type info struct
method Register (line 44) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 53) | func (cmd *info) Process(ctx context.Context) error {
method Usage (line 60) | func (cmd *info) Usage() string {
method Description (line 64) | func (cmd *info) Description() string {
method Run (line 112) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 40) | func init() {
function fullPath (line 71) | func fullPath(s string) string {
function dsPath (line 75) | func dsPath(s string) string {
type infoResult (line 87) | type infoResult
method Write (line 89) | func (r infoResult) Write(w io.Writer) error {
type chainResult (line 101) | type chainResult
method Write (line 103) | func (r chainResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/download.go
type download (line 32) | type download struct
method Register (line 41) | func (cmd *download) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 49) | func (cmd *download) Process(ctx context.Context) error {
method Usage (line 59) | func (cmd *download) Usage() string {
method Description (line 63) | func (cmd *download) Description() string {
method Run (line 73) | func (cmd *download) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 37) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/info.go
type info (line 35) | type info struct
method Register (line 45) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 56) | func (cmd *info) Process(ctx context.Context) error {
method Usage (line 69) | func (cmd *info) Usage() string {
method Run (line 73) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 41) | func init() {
type infoResult (line 122) | type infoResult struct
method Write (line 127) | func (r *infoResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/ls.go
type ls (line 36) | type ls struct
method Register (line 50) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 63) | func (cmd *ls) Process(ctx context.Context) error {
method Usage (line 73) | func (cmd *ls) Usage() string {
method Run (line 88) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
method ListPath (line 152) | func (cmd *ls) ListPath(b *object.HostDatastoreBrowser, path string, s...
function init (line 46) | func init() {
function isInvalid (line 77) | func isInvalid(err error) bool {
type listOutput (line 185) | type listOutput struct
method add (line 190) | func (o *listOutput) add(r types.HostDatastoreBrowserSearchResults) {
method hasMultiplePaths (line 230) | func (o *listOutput) hasMultiplePaths() bool {
method MarshalJSON (line 247) | func (o *listOutput) MarshalJSON() ([]byte, error) {
method Write (line 251) | func (o *listOutput) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/mkdir.go
type mkdir (line 32) | type mkdir struct
method Register (line 43) | func (cmd *mkdir) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 51) | func (cmd *mkdir) Process(ctx context.Context) error {
method Usage (line 58) | func (cmd *mkdir) Usage() string {
method Run (line 62) | func (cmd *mkdir) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 39) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/mv.go
type mv (line 29) | type mv struct
method Register (line 39) | func (cmd *mv) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 46) | func (cmd *mv) Process(ctx context.Context) error {
method Usage (line 53) | func (cmd *mv) Usage() string {
method Description (line 57) | func (cmd *mv) Description() string {
method Run (line 65) | func (cmd *mv) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/remove.go
type remove (line 27) | type remove struct
method Register (line 36) | func (cmd *remove) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 44) | func (cmd *remove) Process(ctx context.Context) error {
method Usage (line 54) | func (cmd *remove) Usage() string {
method Description (line 58) | func (cmd *remove) Description() string {
method Run (line 66) | func (cmd *remove) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/rm.go
type rm (line 29) | type rm struct
method Register (line 42) | func (cmd *rm) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 51) | func (cmd *rm) Process(ctx context.Context) error {
method Usage (line 58) | func (cmd *rm) Usage() string {
method Description (line 62) | func (cmd *rm) Description() string {
method Run (line 71) | func (cmd *rm) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 37) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/tail.go
type tail (line 30) | type tail struct
method Register (line 43) | func (cmd *tail) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 55) | func (cmd *tail) Description() string {
method Process (line 63) | func (cmd *tail) Process(ctx context.Context) error {
method Usage (line 73) | func (cmd *tail) Usage() string {
method Run (line 77) | func (cmd *tail) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 39) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/upload.go
type upload (line 30) | type upload struct
method Register (line 39) | func (cmd *upload) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 47) | func (cmd *upload) Process(ctx context.Context) error {
method Usage (line 57) | func (cmd *upload) Usage() string {
method Description (line 61) | func (cmd *upload) Description() string {
method Run (line 71) | func (cmd *upload) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/vsan/ls.go
type ls (line 32) | type ls struct
method Register (line 43) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 51) | func (cmd *ls) Process(ctx context.Context) error {
method Usage (line 58) | func (cmd *ls) Usage() string {
method Description (line 62) | func (cmd *ls) Description() string {
method Run (line 71) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 39) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/datastore/vsan/rm.go
type rm (line 29) | type rm struct
method Register (line 40) | func (cmd *rm) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 48) | func (cmd *rm) Process(ctx context.Context) error {
method Usage (line 55) | func (cmd *rm) Usage() string {
method Description (line 59) | func (cmd *rm) Description() string {
method Run (line 68) | func (cmd *rm) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/boot.go
type boot (line 29) | type boot struct
method Register (line 40) | func (cmd *boot) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 55) | func (cmd *boot) Description() string {
method Process (line 62) | func (cmd *boot) Process(ctx context.Context) error {
method Run (line 69) | func (cmd *boot) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/cdrom/add.go
type add (line 28) | type add struct
method Register (line 38) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 45) | func (cmd *add) Description() string {
method Process (line 55) | func (cmd *add) Process(ctx context.Context) error {
method Run (line 62) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/cdrom/eject.go
type eject (line 27) | type eject struct
method Register (line 37) | func (cmd *eject) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 44) | func (cmd *eject) Process(ctx context.Context) error {
method Description (line 51) | func (cmd *eject) Description() string {
method Run (line 61) | func (cmd *eject) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/cdrom/insert.go
type insert (line 27) | type insert struct
method Register (line 38) | func (cmd *insert) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 47) | func (cmd *insert) Process(ctx context.Context) error {
method Usage (line 57) | func (cmd *insert) Usage() string {
method Description (line 61) | func (cmd *insert) Description() string {
method Run (line 70) | func (cmd *insert) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/connect.go
type connect (line 28) | type connect struct
method Register (line 36) | func (cmd *connect) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 41) | func (cmd *connect) Process(ctx context.Context) error {
method Usage (line 48) | func (cmd *connect) Usage() string {
method Description (line 52) | func (cmd *connect) Description() string {
method Run (line 59) | func (cmd *connect) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/disconnect.go
type disconnect (line 28) | type disconnect struct
method Register (line 36) | func (cmd *disconnect) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 41) | func (cmd *disconnect) Process(ctx context.Context) error {
method Usage (line 48) | func (cmd *disconnect) Usage() string {
method Description (line 52) | func (cmd *disconnect) Description() string {
method Run (line 59) | func (cmd *disconnect) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/floppy/add.go
type add (line 28) | type add struct
method Register (line 36) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 41) | func (cmd *add) Description() string {
method Process (line 49) | func (cmd *add) Process(ctx context.Context) error {
method Run (line 56) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/floppy/eject.go
type eject (line 27) | type eject struct
method Register (line 37) | func (cmd *eject) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 44) | func (cmd *eject) Process(ctx context.Context) error {
method Description (line 51) | func (cmd *eject) Description() string {
method Run (line 60) | func (cmd *eject) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/floppy/insert.go
type insert (line 27) | type insert struct
method Register (line 38) | func (cmd *insert) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 47) | func (cmd *insert) Process(ctx context.Context) error {
method Usage (line 57) | func (cmd *insert) Usage() string {
method Description (line 61) | func (cmd *insert) Description() string {
method Run (line 70) | func (cmd *insert) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/info.go
type info (line 35) | type info struct
method Register (line 45) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 56) | func (cmd *info) Process(ctx context.Context) error {
method Usage (line 69) | func (cmd *info) Usage() string {
method Description (line 73) | func (cmd *info) Description() string {
method match (line 82) | func (cmd *info) match(p string, devices object.VirtualDeviceList) obj...
method Run (line 103) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 41) | func init() {
type infoResult (line 152) | type infoResult struct
method Write (line 158) | func (r *infoResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/device/ls.go
type ls (line 30) | type ls struct
method Register (line 40) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 47) | func (cmd *ls) Process(ctx context.Context) error {
method Description (line 54) | func (cmd *ls) Description() string {
method Run (line 61) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/remove.go
type remove (line 28) | type remove struct
method Register (line 37) | func (cmd *remove) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 43) | func (cmd *remove) Process(ctx context.Context) error {
method Usage (line 50) | func (cmd *remove) Usage() string {
method Description (line 54) | func (cmd *remove) Description() string {
method Run (line 62) | func (cmd *remove) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/scsi/add.go
type add (line 31) | type add struct
method Register (line 43) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 58) | func (cmd *add) Description() string {
method Process (line 67) | func (cmd *add) Process(ctx context.Context) error {
method Run (line 74) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 39) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/serial/add.go
type add (line 28) | type add struct
method Register (line 36) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 41) | func (cmd *add) Description() string {
method Process (line 49) | func (cmd *add) Process(ctx context.Context) error {
method Run (line 56) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/serial/connect.go
type connect (line 30) | type connect struct
method Register (line 42) | func (cmd *connect) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 51) | func (cmd *connect) Usage() string {
method Description (line 55) | func (cmd *connect) Description() string {
method Process (line 72) | func (cmd *connect) Process(ctx context.Context) error {
method Run (line 79) | func (cmd *connect) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/serial/disconnect.go
type disconnect (line 27) | type disconnect struct
method Register (line 37) | func (cmd *disconnect) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 44) | func (cmd *disconnect) Description() string {
method Process (line 53) | func (cmd *disconnect) Process(ctx context.Context) error {
method Run (line 60) | func (cmd *disconnect) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/device/usb/add.go
type add (line 30) | type add struct
method Register (line 42) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 54) | func (cmd *add) Description() string {
method Process (line 63) | func (cmd *add) Process(ctx context.Context) error {
method Run (line 70) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/dvs/add.go
type add (line 33) | type add struct
method Register (line 44) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 52) | func (cmd *add) Process(ctx context.Context) error {
method Usage (line 59) | func (cmd *add) Usage() string {
method Description (line 63) | func (cmd *add) Description() string {
method Run (line 70) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 40) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/dvs/create.go
type create (line 29) | type create struct
method Register (line 41) | func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 53) | func (cmd *create) Usage() string {
method Description (line 57) | func (cmd *create) Description() string {
method Process (line 68) | func (cmd *create) Process(ctx context.Context) error {
method Run (line 75) | func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 37) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/dvs/portgroup/add.go
type add (line 30) | type add struct
method Register (line 42) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 53) | func (cmd *add) Description() string {
method Process (line 62) | func (cmd *add) Process(ctx context.Context) error {
method Usage (line 69) | func (cmd *add) Usage() string {
method Run (line 73) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/dvs/portgroup/change.go
type change (line 30) | type change struct
method Register (line 40) | func (cmd *change) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 47) | func (cmd *change) Description() string {
method Process (line 55) | func (cmd *change) Process(ctx context.Context) error {
method Usage (line 62) | func (cmd *change) Usage() string {
method Run (line 66) | func (cmd *change) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/dvs/portgroup/info.go
type info (line 32) | type info struct
method Register (line 48) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 61) | func (cmd *info) Process(ctx context.Context) error {
method Usage (line 69) | func (cmd *info) Usage() string {
method Description (line 73) | func (cmd *info) Description() string {
method Run (line 81) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 44) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/dvs/portgroup/spec.go
type DVPortgroupConfigSpec (line 29) | type DVPortgroupConfigSpec struct
method Register (line 33) | func (spec *DVPortgroupConfigSpec) Register(ctx context.Context, f *fl...
method Spec (line 53) | func (spec *DVPortgroupConfigSpec) Spec() types.DVPortgroupConfigSpec {
FILE: vendor/github.com/vmware/govmomi/govc/env/command.go
type env (line 30) | type env struct
method Register (line 41) | func (cmd *env) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 51) | func (cmd *env) Process(ctx context.Context) error {
method Description (line 61) | func (cmd *env) Description() string {
method Run (line 68) | func (cmd *env) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 37) | func init() {
type envResult (line 95) | type envResult
method Write (line 97) | func (r envResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/events/command.go
type events (line 33) | type events struct
method Register (line 46) | func (cmd *events) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 56) | func (cmd *events) Description() string {
method Usage (line 65) | func (cmd *events) Usage() string {
method Process (line 69) | func (cmd *events) Process(ctx context.Context) error {
method printEvents (line 76) | func (cmd *events) printEvents(ctx context.Context, obj *types.Managed...
method Run (line 107) | func (cmd *events) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 41) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/extension/info.go
type info (line 33) | type info struct
method Register (line 42) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 50) | func (cmd *info) Process(ctx context.Context) error {
method Usage (line 60) | func (cmd *info) Usage() string {
method Run (line 64) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
type infoResult (line 102) | type infoResult struct
method Write (line 106) | func (r *infoResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/extension/register.go
type register (line 32) | type register struct
method Register (line 42) | func (cmd *register) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 49) | func (cmd *register) Process(ctx context.Context) error {
method Run (line 56) | func (cmd *register) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/extension/setcert.go
type setcert (line 39) | type setcert struct
method Register (line 52) | func (cmd *setcert) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 60) | func (cmd *setcert) Process(ctx context.Context) error {
method Usage (line 67) | func (cmd *setcert) Usage() string {
method Description (line 71) | func (cmd *setcert) Description() string {
method create (line 80) | func (cmd *setcert) create(id string) error {
method Run (line 141) | func (cmd *setcert) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 48) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/extension/unregister.go
type unregister (line 28) | type unregister struct
method Register (line 36) | func (cmd *unregister) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 41) | func (cmd *unregister) Process(ctx context.Context) error {
method Run (line 48) | func (cmd *unregister) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/fields/add.go
type add (line 29) | type add struct
method Register (line 37) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 42) | func (cmd *add) Process(ctx context.Context) error {
method Usage (line 49) | func (cmd *add) Usage() string {
method Run (line 53) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/fields/ls.go
type ls (line 31) | type ls struct
method Register (line 39) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 44) | func (cmd *ls) Process(ctx context.Context) error {
method Run (line 51) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/fields/rename.go
type rename (line 28) | type rename struct
method Register (line 36) | func (cmd *rename) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 41) | func (cmd *rename) Process(ctx context.Context) error {
method Usage (line 48) | func (cmd *rename) Usage() string {
method Run (line 52) | func (cmd *rename) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/fields/rm.go
type rm (line 28) | type rm struct
method Register (line 36) | func (cmd *rm) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 41) | func (cmd *rm) Process(ctx context.Context) error {
method Usage (line 48) | func (cmd *rm) Usage() string {
method Run (line 52) | func (cmd *rm) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/fields/set.go
type set (line 28) | type set struct
method Register (line 36) | func (cmd *set) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 41) | func (cmd *set) Process(ctx context.Context) error {
method Usage (line 48) | func (cmd *set) Usage() string {
method Run (line 52) | func (cmd *set) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/flags/client.go
constant envURL (line 40) | envURL = "GOVC_URL"
constant envUsername (line 41) | envUsername = "GOVC_USERNAME"
constant envPassword (line 42) | envPassword = "GOVC_PASSWORD"
constant envCertificate (line 43) | envCertificate = "GOVC_CERTIFICATE"
constant envPrivateKey (line 44) | envPrivateKey = "GOVC_PRIVATE_KEY"
constant envInsecure (line 45) | envInsecure = "GOVC_INSECURE"
constant envPersist (line 46) | envPersist = "GOVC_PERSIST_SESSION"
constant envMinAPIVersion (line 47) | envMinAPIVersion = "GOVC_MIN_API_VERSION"
constant envVimNamespace (line 48) | envVimNamespace = "GOVC_VIM_NAMESPACE"
constant envVimVersion (line 49) | envVimVersion = "GOVC_VIM_VERSION"
constant envTLSCaCerts (line 50) | envTLSCaCerts = "GOVC_TLS_CA_CERTS"
constant envTLSKnownHosts (line 51) | envTLSKnownHosts = "GOVC_TLS_KNOWN_HOSTS"
constant cDescr (line 54) | cDescr = "ESX or vCenter URL"
type ClientFlag (line 56) | type ClientFlag struct
method URLWithoutPassword (line 100) | func (flag *ClientFlag) URLWithoutPassword() *url.URL {
method IsSecure (line 110) | func (flag *ClientFlag) IsSecure() bool {
method String (line 114) | func (flag *ClientFlag) String() string {
method Set (line 123) | func (flag *ClientFlag) Set(s string) error {
method Register (line 131) | func (flag *ClientFlag) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 221) | func (flag *ClientFlag) Process(ctx context.Context) error {
method configure (line 263) | func (flag *ClientFlag) configure(sc *soap.Client) (soap.RoundTripper,...
method sessionFile (line 283) | func (flag *ClientFlag) sessionFile() string {
method saveClient (line 293) | func (flag *ClientFlag) saveClient(c *vim25.Client) error {
method restoreClient (line 318) | func (flag *ClientFlag) restoreClient(c *vim25.Client) (bool, error) {
method loadClient (line 343) | func (flag *ClientFlag) loadClient() (*vim25.Client, error) {
method SetRootCAs (line 381) | func (flag *ClientFlag) SetRootCAs(c *soap.Client) error {
method newClient (line 388) | func (flag *ClientFlag) newClient() (*vim25.Client, error) {
method localTicket (line 447) | func (flag *ClientFlag) localTicket(ctx context.Context, m *session.Ma...
method Client (line 496) | func (flag *ClientFlag) Client() (*vim25.Client, error) {
method Logout (line 524) | func (flag *ClientFlag) Logout(ctx context.Context) error {
method Environ (line 535) | func (flag *ClientFlag) Environ(extra bool) []string {
function init (line 83) | func init() {
function NewClientFlag (line 89) | func NewClientFlag(ctx context.Context) (*ClientFlag, context.Context) {
function apiVersionValid (line 463) | func apiVersionValid(c *vim25.Client, minVersionString string) error {
FILE: vendor/github.com/vmware/govmomi/govc/flags/common.go
type flagKey (line 21) | type flagKey
type common (line 24) | type common struct
method RegisterOnce (line 29) | func (c *common) RegisterOnce(fn func()) {
method ProcessOnce (line 33) | func (c *common) ProcessOnce(fn func() error) (err error) {
FILE: vendor/github.com/vmware/govmomi/govc/flags/datacenter.go
type DatacenterFlag (line 30) | type DatacenterFlag struct
method Register (line 56) | func (flag *DatacenterFlag) Register(ctx context.Context, f *flag.Flag...
method Process (line 68) | func (flag *DatacenterFlag) Process(ctx context.Context) error {
method Finder (line 80) | func (flag *DatacenterFlag) Finder() (*find.Finder, error) {
method Datacenter (line 111) | func (flag *DatacenterFlag) Datacenter() (*object.Datacenter, error) {
method DatacenterIfSpecified (line 129) | func (flag *DatacenterFlag) DatacenterIfSpecified() (*object.Datacente...
method ManagedObjects (line 136) | func (flag *DatacenterFlag) ManagedObjects(ctx context.Context, args [...
function NewDatacenterFlag (line 44) | func NewDatacenterFlag(ctx context.Context) (*DatacenterFlag, context.Co...
FILE: vendor/github.com/vmware/govmomi/govc/flags/datastore.go
type DatastoreFlag (line 29) | type DatastoreFlag struct
method Register (line 59) | func (f *DatastoreFlag) Register(ctx context.Context, fs *flag.FlagSet) {
method Process (line 70) | func (f *DatastoreFlag) Process(ctx context.Context) error {
method Datastore (line 79) | func (f *DatastoreFlag) Datastore() (*object.Datastore, error) {
method DatastoreIfSpecified (line 96) | func (flag *DatastoreFlag) DatastoreIfSpecified() (*object.Datastore, ...
method DatastorePath (line 103) | func (f *DatastoreFlag) DatastorePath(name string) (string, error) {
method Stat (line 112) | func (f *DatastoreFlag) Stat(ctx context.Context, file string) (types....
function NewCustomDatastoreFlag (line 43) | func NewCustomDatastoreFlag(ctx context.Context) (*DatastoreFlag, contex...
function NewDatastoreFlag (line 49) | func NewDatastoreFlag(ctx context.Context) (*DatastoreFlag, context.Cont...
FILE: vendor/github.com/vmware/govmomi/govc/flags/debug.go
type DebugFlag (line 31) | type DebugFlag struct
method Register (line 49) | func (flag *DebugFlag) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 63) | func (flag *DebugFlag) Process(ctx context.Context) error {
function NewDebugFlag (line 39) | func NewDebugFlag(ctx context.Context) (*DebugFlag, context.Context) {
FILE: vendor/github.com/vmware/govmomi/govc/flags/empty.go
type EmptyFlag (line 24) | type EmptyFlag struct
method Register (line 26) | func (flag *EmptyFlag) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 29) | func (flag *EmptyFlag) Process(ctx context.Context) error {
FILE: vendor/github.com/vmware/govmomi/govc/flags/folder.go
type FolderFlag (line 28) | type FolderFlag struct
method Register (line 50) | func (flag *FolderFlag) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 61) | func (flag *FolderFlag) Process(ctx context.Context) error {
method Folder (line 70) | func (flag *FolderFlag) Folder() (*object.Folder, error) {
method FolderOrDefault (line 87) | func (flag *FolderFlag) FolderOrDefault(kind string) (*object.Folder, ...
function NewFolderFlag (line 39) | func NewFolderFlag(ctx context.Context) (*FolderFlag, context.Context) {
FILE: vendor/github.com/vmware/govmomi/govc/flags/host_connect.go
type HostConnectFlag (line 31) | type HostConnectFlag struct
method Register (line 51) | func (flag *HostConnectFlag) Register(ctx context.Context, f *flag.Fla...
method Process (line 63) | func (flag *HostConnectFlag) Process(ctx context.Context) error {
method Spec (line 70) | func (flag *HostConnectFlag) Spec(c *vim25.Client) types.HostConnectSp...
method Fault (line 88) | func (flag *HostConnectFlag) Fault(err error) error {
function NewHostConnectFlag (line 41) | func NewHostConnectFlag(ctx context.Context) (*HostConnectFlag, context....
FILE: vendor/github.com/vmware/govmomi/govc/flags/host_system.go
type HostSystemFlag (line 28) | type HostSystemFlag struct
method Register (line 55) | func (flag *HostSystemFlag) Register(ctx context.Context, f *flag.Flag...
method Process (line 68) | func (flag *HostSystemFlag) Process(ctx context.Context) error {
method HostSystemIfSpecified (line 83) | func (flag *HostSystemFlag) HostSystemIfSpecified() (*object.HostSyste...
method HostSystem (line 115) | func (flag *HostSystemFlag) HostSystem() (*object.HostSystem, error) {
method HostNetworkSystem (line 134) | func (flag *HostSystemFlag) HostNetworkSystem() (*object.HostNetworkSy...
function NewHostSystemFlag (line 42) | func NewHostSystemFlag(ctx context.Context) (*HostSystemFlag, context.Co...
FILE: vendor/github.com/vmware/govmomi/govc/flags/int32.go
type int32Value (line 27) | type int32Value
method Set (line 29) | func (i *int32Value) Set(s string) error {
method Get (line 35) | func (i *int32Value) Get() interface{} {
method String (line 39) | func (i *int32Value) String() string {
function NewInt32 (line 44) | func NewInt32(v *int32) flag.Value {
type int32ptrValue (line 48) | type int32ptrValue struct
method Set (line 52) | func (i *int32ptrValue) Set(s string) error {
method Get (line 59) | func (i *int32ptrValue) Get() interface{} {
method String (line 66) | func (i *int32ptrValue) String() string {
function NewOptionalInt32 (line 70) | func NewOptionalInt32(v **int32) flag.Value {
FILE: vendor/github.com/vmware/govmomi/govc/flags/network.go
type NetworkFlag (line 29) | type NetworkFlag struct
method Register (line 54) | func (flag *NetworkFlag) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 68) | func (flag *NetworkFlag) Process(ctx context.Context) error {
method String (line 77) | func (flag *NetworkFlag) String() string {
method Set (line 81) | func (flag *NetworkFlag) Set(name string) error {
method IsSet (line 87) | func (flag *NetworkFlag) IsSet() bool {
method Network (line 91) | func (flag *NetworkFlag) Network() (object.NetworkReference, error) {
method Device (line 108) | func (flag *NetworkFlag) Device() (types.BaseVirtualDevice, error) {
function NewNetworkFlag (line 43) | func NewNetworkFlag(ctx context.Context) (*NetworkFlag, context.Context) {
FILE: vendor/github.com/vmware/govmomi/govc/flags/optional_bool.go
type optionalBool (line 25) | type optionalBool struct
method Set (line 29) | func (b *optionalBool) Set(s string) error {
method Get (line 35) | func (b *optionalBool) Get() interface{} {
method String (line 42) | func (b *optionalBool) String() string {
method IsBoolFlag (line 49) | func (b *optionalBool) IsBoolFlag() bool { return true }
function NewOptionalBool (line 53) | func NewOptionalBool(v **bool) flag.Value {
FILE: vendor/github.com/vmware/govmomi/govc/flags/optional_bool_test.go
function TestOptionalBool (line 24) | func TestOptionalBool(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/govc/flags/output.go
type OutputWriter (line 34) | type OutputWriter interface
type OutputFlag (line 38) | type OutputFlag struct
method Register (line 59) | func (flag *OutputFlag) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 66) | func (flag *OutputFlag) Process(ctx context.Context) error {
method Log (line 80) | func (flag *OutputFlag) Log(s string) (int, error) {
method Write (line 89) | func (flag *OutputFlag) Write(b []byte) (int, error) {
method WriteString (line 99) | func (flag *OutputFlag) WriteString(s string) (int, error) {
method WriteResult (line 103) | func (flag *OutputFlag) WriteResult(result OutputWriter) error {
method ProgressLogger (line 214) | func (flag *OutputFlag) ProgressLogger(prefix string) *progressLogger {
function NewOutputFlag (line 49) | func NewOutputFlag(ctx context.Context) (*OutputFlag, context.Context) {
type progressLogger (line 118) | type progressLogger struct
method loopA (line 145) | func (p *progressLogger) loopA() {
method loopB (line 174) | func (p *progressLogger) loopB(tick *time.Ticker, ch <-chan progress.R...
method Sink (line 203) | func (p *progressLogger) Sink() chan<- progress.Report {
method Wait (line 209) | func (p *progressLogger) Wait() {
function newProgressLogger (line 128) | func newProgressLogger(flag *OutputFlag, prefix string) *progressLogger {
FILE: vendor/github.com/vmware/govmomi/govc/flags/resource_pool.go
type ResourcePoolFlag (line 28) | type ResourcePoolFlag struct
method Register (line 50) | func (flag *ResourcePoolFlag) Register(ctx context.Context, f *flag.Fl...
method Process (line 61) | func (flag *ResourcePoolFlag) Process(ctx context.Context) error {
method ResourcePool (line 70) | func (flag *ResourcePoolFlag) ResourcePool() (*object.ResourcePool, er...
method ResourcePoolIfSpecified (line 87) | func (flag *ResourcePoolFlag) ResourcePoolIfSpecified() (*object.Resou...
function NewResourcePoolFlag (line 39) | func NewResourcePoolFlag(ctx context.Context) (*ResourcePoolFlag, contex...
FILE: vendor/github.com/vmware/govmomi/govc/flags/search.go
constant SearchVirtualMachines (line 34) | SearchVirtualMachines = iota + 1
constant SearchHosts (line 35) | SearchHosts
constant SearchVirtualApps (line 36) | SearchVirtualApps
type SearchFlag (line 39) | type SearchFlag struct
method Register (line 86) | func (flag *SearchFlag) Register(ctx context.Context, fs *flag.FlagSet) {
method Process (line 113) | func (flag *SearchFlag) Process(ctx context.Context) error {
method IsSet (line 144) | func (flag *SearchFlag) IsSet() bool {
method searchIndex (line 148) | func (flag *SearchFlag) searchIndex(c *vim25.Client) *object.SearchInd...
method searchByDatastorePath (line 152) | func (flag *SearchFlag) searchByDatastorePath(c *vim25.Client, dc *obj...
method searchByDNSName (line 162) | func (flag *SearchFlag) searchByDNSName(c *vim25.Client, dc *object.Da...
method searchByInventoryPath (line 174) | func (flag *SearchFlag) searchByInventoryPath(c *vim25.Client, dc *obj...
method searchByIP (line 180) | func (flag *SearchFlag) searchByIP(c *vim25.Client, dc *object.Datacen...
method searchByUUID (line 192) | func (flag *SearchFlag) searchByUUID(c *vim25.Client, dc *object.Datac...
method search (line 225) | func (flag *SearchFlag) search() (object.Reference, error) {
method VirtualMachine (line 276) | func (flag *SearchFlag) VirtualMachine() (*object.VirtualMachine, erro...
method VirtualMachines (line 290) | func (flag *SearchFlag) VirtualMachines(args []string) ([]*object.Virt...
method VirtualApp (line 334) | func (flag *SearchFlag) VirtualApp() (*object.VirtualApp, error) {
method VirtualApps (line 348) | func (flag *SearchFlag) VirtualApps(args []string) ([]*object.VirtualA...
method HostSystem (line 385) | func (flag *SearchFlag) HostSystem() (*object.HostSystem, error) {
method HostSystems (line 399) | func (flag *SearchFlag) HostSystems(args []string) ([]*object.HostSyst...
function NewSearchFlag (line 59) | func NewSearchFlag(ctx context.Context, t int) (*SearchFlag, context.Con...
FILE: vendor/github.com/vmware/govmomi/govc/flags/storage_pod.go
type StoragePodFlag (line 12) | type StoragePodFlag struct
method Register (line 35) | func (f *StoragePodFlag) Register(ctx context.Context, fs *flag.FlagSe...
method Process (line 46) | func (f *StoragePodFlag) Process(ctx context.Context) error {
method Isset (line 50) | func (f *StoragePodFlag) Isset() bool {
method StoragePod (line 54) | func (f *StoragePodFlag) StoragePod() (*object.StoragePod, error) {
function NewStoragePodFlag (line 24) | func NewStoragePodFlag(ctx context.Context) (*StoragePodFlag, context.Co...
FILE: vendor/github.com/vmware/govmomi/govc/flags/version.go
constant Version (line 24) | Version = "0.15.0"
type version (line 26) | type version
method Lte (line 43) | func (v version) Lte(u version) bool {
function ParseVersion (line 28) | func ParseVersion(s string) (version, error) {
FILE: vendor/github.com/vmware/govmomi/govc/flags/version_test.go
function TestParseVersion (line 21) | func TestParseVersion(t *testing.T) {
function TestLte (line 41) | func TestLte(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/govc/flags/virtual_app.go
type VirtualAppFlag (line 28) | type VirtualAppFlag struct
method Register (line 52) | func (flag *VirtualAppFlag) Register(ctx context.Context, f *flag.Flag...
method Process (line 64) | func (flag *VirtualAppFlag) Process(ctx context.Context) error {
method VirtualApp (line 76) | func (flag *VirtualAppFlag) VirtualApp() (*object.VirtualApp, error) {
function NewVirtualAppFlag (line 40) | func NewVirtualAppFlag(ctx context.Context) (*VirtualAppFlag, context.Co...
FILE: vendor/github.com/vmware/govmomi/govc/flags/virtual_machine.go
type VirtualMachineFlag (line 28) | type VirtualMachineFlag struct
method Register (line 54) | func (flag *VirtualMachineFlag) Register(ctx context.Context, f *flag....
method Process (line 67) | func (flag *VirtualMachineFlag) Process(ctx context.Context) error {
method VirtualMachine (line 82) | func (flag *VirtualMachineFlag) VirtualMachine() (*object.VirtualMachi...
function NewVirtualMachineFlag (line 41) | func NewVirtualMachineFlag(ctx context.Context) (*VirtualMachineFlag, co...
FILE: vendor/github.com/vmware/govmomi/govc/folder/create.go
type create (line 28) | type create struct
method Register (line 38) | func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 45) | func (cmd *create) Usage() string {
method Description (line 49) | func (cmd *create) Description() string {
method Process (line 59) | func (cmd *create) Process(ctx context.Context) error {
method Run (line 66) | func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/folder/info.go
type info (line 35) | type info struct
method Register (line 45) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 56) | func (cmd *info) Process(ctx context.Context) error {
method Usage (line 69) | func (cmd *info) Usage() string {
method Run (line 73) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 41) | func init() {
type infoResult (line 124) | type infoResult struct
method Write (line 129) | func (r *infoResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/host/account/account.go
type AccountFlag (line 28) | type AccountFlag struct
method Register (line 44) | func (f *AccountFlag) Register(ctx context.Context, fs *flag.FlagSet) {
method Process (line 54) | func (f *AccountFlag) Process(ctx context.Context) error {
method HostAccountManager (line 67) | func (f *AccountFlag) HostAccountManager(ctx context.Context) (*object...
function newAccountFlag (line 36) | func newAccountFlag(ctx context.Context) (*AccountFlag, context.Context) {
FILE: vendor/github.com/vmware/govmomi/govc/host/account/create.go
type create (line 26) | type create struct
method Register (line 34) | func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 39) | func (cmd *create) Description() string {
method Process (line 46) | func (cmd *create) Process(ctx context.Context) error {
method Run (line 53) | func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 30) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/account/remove.go
type remove (line 26) | type remove struct
method Register (line 34) | func (cmd *remove) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 39) | func (cmd *remove) Description() string {
method Process (line 46) | func (cmd *remove) Process(ctx context.Context) error {
method Run (line 53) | func (cmd *remove) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 30) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/account/update.go
type update (line 26) | type update struct
method Register (line 34) | func (cmd *update) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 39) | func (cmd *update) Description() string {
method Process (line 46) | func (cmd *update) Process(ctx context.Context) error {
method Run (line 53) | func (cmd *update) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 30) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/add.go
type add (line 31) | type add struct
method Register (line 42) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 52) | func (cmd *add) Process(ctx context.Context) error {
method Description (line 71) | func (cmd *add) Description() string {
method Add (line 83) | func (cmd *add) Add(ctx context.Context, parent *object.Folder) error {
method Run (line 105) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/autostart/add.go
type add (line 30) | type add struct
method Register (line 51) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 67) | func (cmd *add) Process(ctx context.Context) error {
method Usage (line 74) | func (cmd *add) Usage() string {
method Run (line 78) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 41) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/autostart/autostart.go
type AutostartFlag (line 31) | type AutostartFlag struct
method Register (line 45) | func (f *AutostartFlag) Register(ctx context.Context, fs *flag.FlagSet) {
method Process (line 51) | func (f *AutostartFlag) Process(ctx context.Context) error {
method VirtualMachines (line 68) | func (f *AutostartFlag) VirtualMachines(args []string) ([]*object.Virt...
method HostAutoStartManager (line 92) | func (f *AutostartFlag) HostAutoStartManager() (*mo.HostAutoStartManag...
method ReconfigureDefaults (line 114) | func (f *AutostartFlag) ReconfigureDefaults(template types.AutoStartDe...
method ReconfigureVMs (line 141) | func (f *AutostartFlag) ReconfigureVMs(args []string, template types.A...
function newAutostartFlag (line 37) | func newAutostartFlag(ctx context.Context) (*AutostartFlag, context.Cont...
FILE: vendor/github.com/vmware/govmomi/govc/host/autostart/configure.go
type configure (line 28) | type configure struct
method Register (line 38) | func (cmd *configure) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 49) | func (cmd *configure) Process(ctx context.Context) error {
method Usage (line 56) | func (cmd *configure) Usage() string {
method Run (line 60) | func (cmd *configure) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/autostart/info.go
type info (line 34) | type info struct
method Register (line 45) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 52) | func (cmd *info) Process(ctx context.Context) error {
method Usage (line 62) | func (cmd *info) Usage() string {
method Run (line 66) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 41) | func init() {
type infoResult (line 80) | type infoResult struct
method MarshalJSON (line 85) | func (r *infoResult) MarshalJSON() ([]byte, error) {
method vmPaths (line 90) | func (r *infoResult) vmPaths() (map[string]string, error) {
method Write (line 114) | func (r *infoResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/host/autostart/remove.go
type remove (line 27) | type remove struct
method Register (line 35) | func (cmd *remove) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 40) | func (cmd *remove) Process(ctx context.Context) error {
method Usage (line 47) | func (cmd *remove) Usage() string {
method Run (line 51) | func (cmd *remove) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 31) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/cert/csr.go
type csr (line 28) | type csr struct
method Register (line 38) | func (cmd *csr) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 45) | func (cmd *csr) Description() string {
method Process (line 49) | func (cmd *csr) Process(ctx context.Context) error {
method Run (line 56) | func (cmd *csr) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/cert/info.go
type info (line 27) | type info struct
method Register (line 36) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 44) | func (cmd *info) Description() string {
method Process (line 48) | func (cmd *info) Process(ctx context.Context) error {
method Run (line 58) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/cert/install.go
type install (line 31) | type install struct
method Register (line 39) | func (cmd *install) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 44) | func (cmd *install) Usage() string {
method Description (line 48) | func (cmd *install) Description() string {
method Process (line 54) | func (cmd *install) Process(ctx context.Context) error {
method Run (line 61) | func (cmd *install) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/date/change.go
type change (line 30) | type change struct
method Register (line 53) | func (cmd *change) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 62) | func (cmd *change) Description() string {
method Process (line 72) | func (cmd *change) Process(ctx context.Context) error {
method Run (line 79) | func (cmd *change) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
type serverConfig (line 42) | type serverConfig
method String (line 44) | func (s *serverConfig) String() string {
method Set (line 48) | func (s *serverConfig) Set(v string) error {
FILE: vendor/github.com/vmware/govmomi/govc/host/date/info.go
type info (line 35) | type info struct
method Register (line 44) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 52) | func (cmd *info) Description() string {
method Process (line 56) | func (cmd *info) Process(ctx context.Context) error {
method Run (line 92) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 40) | func init() {
type dateInfo (line 66) | type dateInfo struct
method servers (line 72) | func (info *dateInfo) servers() string {
method Write (line 79) | func (info *dateInfo) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/host/disconnect.go
type disconnect (line 29) | type disconnect struct
method Register (line 37) | func (cmd *disconnect) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 42) | func (cmd *disconnect) Process(ctx context.Context) error {
method Description (line 49) | func (cmd *disconnect) Description() string {
method Disconnect (line 53) | func (cmd *disconnect) Disconnect(ctx context.Context, host *object.Ho...
method Run (line 66) | func (cmd *disconnect) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/esxcli/command.go
type Command (line 27) | type Command struct
method Namespace (line 77) | func (c *Command) Namespace() string {
method Name (line 81) | func (c *Command) Name() string {
method Method (line 85) | func (c *Command) Method() string {
method Moid (line 89) | func (c *Command) Moid() string {
method Parse (line 95) | func (c *Command) Parse(params []CommandInfoParam) ([]types.ReflectMan...
method Argument (line 124) | func (c *Command) Argument(name string, val string) types.ReflectManag...
type CommandInfoItem (line 32) | type CommandInfoItem struct
type CommandInfoParam (line 38) | type CommandInfoParam struct
type CommandInfoHint (line 44) | type CommandInfoHint struct
type CommandInfoHints (line 49) | type CommandInfoHints
method Formatter (line 131) | func (h CommandInfoHints) Formatter() string {
method Fields (line 141) | func (h CommandInfoHints) Fields() []string {
type CommandInfoMethod (line 51) | type CommandInfoMethod struct
type CommandInfo (line 57) | type CommandInfo struct
function NewCommand (line 62) | func NewCommand(args []string) *Command {
FILE: vendor/github.com/vmware/govmomi/govc/host/esxcli/command_test.go
function TestSystemSettingsAdvancedSetCommand (line 26) | func TestSystemSettingsAdvancedSetCommand(t *testing.T) {
function TestNetworkVmListCommand (line 92) | func TestNetworkVmListCommand(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/govc/host/esxcli/esxcli.go
type esxcli (line 32) | type esxcli struct
method Usage (line 42) | func (cmd *esxcli) Usage() string {
method Register (line 46) | func (cmd *esxcli) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 53) | func (cmd *esxcli) Description() string {
method Process (line 65) | func (cmd *esxcli) Process(ctx context.Context) error {
method Run (line 72) | func (cmd *esxcli) Run(ctx context.Context, f *flag.FlagSet) error {
method formatSimple (line 121) | func (cmd *esxcli) formatSimple(w io.Writer, res *Response) {
method formatTable (line 143) | func (cmd *esxcli) formatTable(w io.Writer, res *Response) {
function init (line 38) | func init() {
type result (line 100) | type result struct
method Write (line 105) | func (r *result) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/host/esxcli/executor.go
type Executor (line 31) | type Executor struct
method CommandInfo (line 76) | func (e *Executor) CommandInfo(c *Command) (*CommandInfoMethod, error) {
method NewRequest (line 108) | func (e *Executor) NewRequest(args []string) (*types.ExecuteSoap, *Com...
method Execute (line 130) | func (e *Executor) Execute(req *types.ExecuteSoap, res interface{}) er...
method Run (line 153) | func (e *Executor) Run(args []string) (*Response, error) {
function NewExecutor (line 39) | func NewExecutor(c *vim25.Client, host *object.HostSystem) (*Executor, e...
FILE: vendor/github.com/vmware/govmomi/govc/host/esxcli/firewall_info.go
type FirewallInfo (line 21) | type FirewallInfo struct
function GetFirewallInfo (line 30) | func GetFirewallInfo(s *object.HostSystem) (*FirewallInfo, error) {
FILE: vendor/github.com/vmware/govmomi/govc/host/esxcli/guest_info.go
type hostInfo (line 30) | type hostInfo struct
type GuestInfo (line 35) | type GuestInfo struct
method hostInfo (line 47) | func (g *GuestInfo) hostInfo(ref *types.ManagedObjectReference) (*host...
method IpAddress (line 85) | func (g *GuestInfo) IpAddress(vm *object.VirtualMachine) (string, erro...
function NewGuestInfo (line 40) | func NewGuestInfo(c *vim25.Client) *GuestInfo {
FILE: vendor/github.com/vmware/govmomi/govc/host/esxcli/response.go
type Values (line 24) | type Values
method UnmarshalXML (line 31) | func (v Values) UnmarshalXML(d *xml.Decoder, start xml.StartElement) e...
type Response (line 26) | type Response struct
method Type (line 57) | func (r *Response) Type(start xml.StartElement) string {
method UnmarshalXML (line 66) | func (r *Response) UnmarshalXML(d *xml.Decoder, start xml.StartElement...
FILE: vendor/github.com/vmware/govmomi/govc/host/esxcli/response_test.go
function load (line 28) | func load(name string) *Response {
function TestSystemHostnameGetResponse (line 47) | func TestSystemHostnameGetResponse(t *testing.T) {
function TestNetworkVmList (line 63) | func TestNetworkVmList(t *testing.T) {
function TestNetworkVmPortList (line 86) | func TestNetworkVmPortList(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/govc/host/firewall/find.go
type find (line 32) | type find struct
method Register (line 47) | func (cmd *find) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 63) | func (cmd *find) Process(ctx context.Context) error {
method Description (line 76) | func (cmd *find) Description() string {
method Run (line 87) | func (cmd *find) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 43) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/info.go
type info (line 35) | type info struct
method Register (line 45) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 56) | func (cmd *info) Process(ctx context.Context) error {
method Run (line 69) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 41) | func init() {
type infoResult (line 123) | type infoResult struct
method Write (line 128) | func (r *infoResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/host/maintenance/enter.go
type enter (line 29) | type enter struct
method Register (line 40) | func (cmd *enter) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 48) | func (cmd *enter) Process(ctx context.Context) error {
method Usage (line 55) | func (cmd *enter) Usage() string {
method Description (line 59) | func (cmd *enter) Description() string {
method EnterMaintenanceMode (line 66) | func (cmd *enter) EnterMaintenanceMode(ctx context.Context, host *obje...
method Run (line 79) | func (cmd *enter) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/maintenance/exit.go
type exit (line 29) | type exit struct
method Register (line 39) | func (cmd *exit) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 46) | func (cmd *exit) Process(ctx context.Context) error {
method Usage (line 53) | func (cmd *exit) Usage() string {
method Description (line 57) | func (cmd *exit) Description() string {
method ExitMaintenanceMode (line 67) | func (cmd *exit) ExitMaintenanceMode(ctx context.Context, host *object...
method Run (line 80) | func (cmd *exit) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/option/ls.go
type ls (line 28) | type ls struct
method Register (line 37) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 49) | func (cmd *ls) Process(ctx context.Context) error {
method Description (line 59) | func (cmd *ls) Description() string {
method Run (line 68) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/option/set.go
type set (line 28) | type set struct
method Register (line 37) | func (cmd *set) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 46) | func (cmd *set) Process(ctx context.Context) error {
method Description (line 56) | func (cmd *set) Description() string {
method Run (line 64) | func (cmd *set) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/portgroup/add.go
type add (line 28) | type add struct
method Register (line 38) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 46) | func (cmd *add) Description() string {
method Usage (line 53) | func (cmd *add) Usage() string {
method Process (line 57) | func (cmd *add) Process(ctx context.Context) error {
method Run (line 64) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/portgroup/change.go
type change (line 28) | type change struct
method Register (line 40) | func (cmd *change) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 56) | func (cmd *change) Description() string {
method Usage (line 64) | func (cmd *change) Usage() string {
method Process (line 68) | func (cmd *change) Process(ctx context.Context) error {
method Run (line 78) | func (cmd *change) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/portgroup/info.go
type info (line 34) | type info struct
method Register (line 44) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 53) | func (cmd *info) Process(ctx context.Context) error {
method Run (line 88) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 40) | func init() {
function networkInfoPortgroup (line 66) | func networkInfoPortgroup(ctx context.Context, c *flags.ClientFlag, h *f...
type infoResult (line 99) | type infoResult struct
method Write (line 103) | func (r *infoResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/host/portgroup/remove.go
type remove (line 27) | type remove struct
method Register (line 35) | func (cmd *remove) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 40) | func (cmd *remove) Description() string {
method Usage (line 47) | func (cmd *remove) Usage() string {
method Process (line 51) | func (cmd *remove) Process(ctx context.Context) error {
method Run (line 58) | func (cmd *remove) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 31) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/reconnect.go
type reconnect (line 30) | type reconnect struct
method Register (line 41) | func (cmd *reconnect) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 52) | func (cmd *reconnect) Process(ctx context.Context) error {
method Description (line 62) | func (cmd *reconnect) Description() string {
method Reconnect (line 69) | func (cmd *reconnect) Reconnect(ctx context.Context, host *object.Host...
method Run (line 82) | func (cmd *reconnect) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 37) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/remove.go
type remove (line 30) | type remove struct
method Register (line 38) | func (cmd *remove) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 43) | func (cmd *remove) Process(ctx context.Context) error {
method Usage (line 50) | func (cmd *remove) Usage() string {
method Description (line 54) | func (cmd *remove) Description() string {
method Remove (line 58) | func (cmd *remove) Remove(ctx context.Context, host *object.HostSystem...
method Run (line 86) | func (cmd *remove) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/service/command.go
type service (line 30) | type service struct
method Register (line 39) | func (cmd *service) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 47) | func (cmd *service) Process(ctx context.Context) error {
method Usage (line 57) | func (cmd *service) Usage() string {
method Description (line 61) | func (cmd *service) Description() string {
method status (line 71) | func (cmd *service) status(ctx context.Context, s *object.HostServiceS...
method Run (line 86) | func (cmd *service) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/service/ls.go
type ls (line 31) | type ls struct
method Register (line 41) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 52) | func (cmd *ls) Process(ctx context.Context) error {
method Description (line 65) | func (cmd *ls) Description() string {
method Run (line 89) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 37) | func init() {
function Status (line 69) | func Status(s types.HostService) string {
function Policy (line 76) | func Policy(s types.HostService) string {
type optionResult (line 108) | type optionResult
method Write (line 110) | func (services optionResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/host/shutdown.go
type shutdown (line 31) | type shutdown struct
method Register (line 40) | func (cmd *shutdown) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 47) | func (cmd *shutdown) Process(ctx context.Context) error {
method Description (line 54) | func (cmd *shutdown) Description() string {
method Shutdown (line 58) | func (cmd *shutdown) Shutdown(ctx context.Context, host *object.HostSy...
method Run (line 78) | func (cmd *shutdown) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/storage/info.go
type infoType (line 36) | type infoType
method Set (line 38) | func (t *infoType) Set(s string) error {
method String (line 51) | func (t *infoType) String() string {
method Result (line 55) | func (t *infoType) Result(hss mo.HostStorageSystem) flags.OutputWriter {
type info (line 66) | type info struct
method Register (line 79) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 96) | func (cmd *info) Description() string {
method Process (line 103) | func (cmd *info) Process(ctx context.Context) error {
method Run (line 113) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 75) | func init() {
type hbaResult (line 158) | type hbaResult
method Write (line 160) | func (r hbaResult) Write(w io.Writer) error {
type lunResult (line 184) | type lunResult
method Write (line 186) | func (r lunResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/host/storage/mark.go
type mark (line 31) | type mark struct
method Register (line 42) | func (cmd *mark) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 50) | func (cmd *mark) Process(ctx context.Context) error {
method Usage (line 57) | func (cmd *mark) Usage() string {
method Description (line 61) | func (cmd *mark) Description() string {
method Mark (line 65) | func (cmd *mark) Mark(ctx context.Context, ss *object.HostStorageSyste...
method Run (line 106) | func (cmd *mark) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/storage/partition.go
type partition (line 33) | type partition struct
method Register (line 42) | func (cmd *partition) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 49) | func (cmd *partition) Process(ctx context.Context) error {
method Usage (line 59) | func (cmd *partition) Usage() string {
method Description (line 63) | func (cmd *partition) Description() string {
method Run (line 67) | func (cmd *partition) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
type partitionInfo (line 98) | type partitionInfo
method Write (line 100) | func (p partitionInfo) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/host/vnic/info.go
type info (line 34) | type info struct
method Register (line 42) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 47) | func (cmd *info) Process(ctx context.Context) error {
method Run (line 54) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/vnic/service.go
type service (line 30) | type service struct
method Register (line 40) | func (cmd *service) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 47) | func (cmd *service) Process(ctx context.Context) error {
method Usage (line 55) | func (cmd *service) Usage() string {
method Description (line 59) | func (cmd *service) Description() string {
method Run (line 83) | func (cmd *service) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/vswitch/add.go
type add (line 28) | type add struct
method Register (line 39) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 49) | func (cmd *add) Process(ctx context.Context) error {
method Usage (line 56) | func (cmd *add) Usage() string {
method Run (line 60) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/host/vswitch/info.go
type info (line 34) | type info struct
method Register (line 44) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 53) | func (cmd *info) Process(ctx context.Context) error {
method Run (line 66) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 40) | func init() {
type infoResult (line 90) | type infoResult struct
method Write (line 94) | func (r *infoResult) Write(w io.Writer) error {
function keys (line 113) | func keys(key string, vals []string) string {
function enabled (line 120) | func enabled(b *bool) string {
function HostNetworkPolicy (line 127) | func HostNetworkPolicy(w io.Writer, p *types.HostNetworkPolicy) {
FILE: vendor/github.com/vmware/govmomi/govc/host/vswitch/remove.go
type remove (line 27) | type remove struct
method Register (line 35) | func (cmd *remove) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 40) | func (cmd *remove) Process(ctx context.Context) error {
method Usage (line 47) | func (cmd *remove) Usage() string {
method Run (line 51) | func (cmd *remove) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 31) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/importx/archive.go
type ArchiveFlag (line 35) | type ArchiveFlag struct
method Register (line 43) | func (f *ArchiveFlag) Register(ctx context.Context, fs *flag.FlagSet) {
method Process (line 46) | func (f *ArchiveFlag) Process(ctx context.Context) error {
method ReadOvf (line 50) | func (f *ArchiveFlag) ReadOvf(fpath string) ([]byte, error) {
method ReadEnvelope (line 60) | func (f *ArchiveFlag) ReadEnvelope(fpath string) (*ovf.Envelope, error) {
function newArchiveFlag (line 39) | func newArchiveFlag(ctx context.Context) (*ArchiveFlag, context.Context) {
type Archive (line 79) | type Archive interface
type TapeArchive (line 83) | type TapeArchive struct
method Open (line 96) | func (t *TapeArchive) Open(name string) (io.ReadCloser, int64, error) {
type TapeArchiveEntry (line 87) | type TapeArchiveEntry struct
method Close (line 92) | func (t *TapeArchiveEntry) Close() error {
type FileArchive (line 128) | type FileArchive struct
method Open (line 132) | func (t *FileArchive) Open(name string) (io.ReadCloser, int64, error) {
FILE: vendor/github.com/vmware/govmomi/govc/importx/folder.go
type FolderFlag (line 28) | type FolderFlag struct
method Register (line 40) | func (flag *FolderFlag) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 46) | func (flag *FolderFlag) Process(ctx context.Context) error {
method Folder (line 50) | func (flag *FolderFlag) Folder() (*object.Folder, error) {
function newFolderFlag (line 34) | func newFolderFlag(ctx context.Context) (*FolderFlag, context.Context) {
FILE: vendor/github.com/vmware/govmomi/govc/importx/importable.go
type importable (line 24) | type importable struct
method Ext (line 29) | func (i importable) Ext() string {
method Base (line 33) | func (i importable) Base() string {
method BaseClean (line 37) | func (i importable) BaseClean() string {
method RemoteSrcVMDK (line 43) | func (i importable) RemoteSrcVMDK() string {
method RemoteDstVMDK (line 48) | func (i importable) RemoteDstVMDK() string {
method toRemotePath (line 53) | func (i importable) toRemotePath(p string) string {
FILE: vendor/github.com/vmware/govmomi/govc/importx/lease_updater.go
type ovfFileItem (line 33) | type ovfFileItem struct
method Sink (line 39) | func (o ovfFileItem) Sink() chan<- progress.Report {
type leaseUpdater (line 43) | type leaseUpdater struct
method waitForProgress (line 75) | func (l *leaseUpdater) waitForProgress(item ovfFileItem) {
method run (line 104) | func (l *leaseUpdater) run() {
method Done (line 128) | func (l *leaseUpdater) Done() {
function newLeaseUpdater (line 55) | func newLeaseUpdater(client *vim25.Client, lease *object.HttpNfcLease, i...
FILE: vendor/github.com/vmware/govmomi/govc/importx/options.go
type Property (line 29) | type Property struct
type Network (line 34) | type Network struct
type Options (line 39) | type Options struct
type OptionsFlag (line 64) | type OptionsFlag struct
method Register (line 74) | func (flag *OptionsFlag) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 78) | func (flag *OptionsFlag) Process(ctx context.Context) error {
function newOptionsFlag (line 70) | func newOptionsFlag(ctx context.Context) (*OptionsFlag, context.Context) {
FILE: vendor/github.com/vmware/govmomi/govc/importx/ova.go
type ova (line 28) | type ova struct
method Usage (line 36) | func (cmd *ova) Usage() string {
method Run (line 40) | func (cmd *ova) Run(ctx context.Context, f *flag.FlagSet) error {
method Import (line 57) | func (cmd *ova) Import(fpath string) (*types.ManagedObjectReference, e...
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/importx/ovf.go
type ovfx (line 36) | type ovfx struct
method Register (line 58) | func (cmd *ovfx) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 78) | func (cmd *ovfx) Process(ctx context.Context) error {
method Usage (line 103) | func (cmd *ovfx) Usage() string {
method Run (line 107) | func (cmd *ovfx) Run(ctx context.Context, f *flag.FlagSet) error {
method Prepare (line 124) | func (cmd *ovfx) Prepare(f *flag.FlagSet) (string, error) {
method Deploy (line 155) | func (cmd *ovfx) Deploy(vm *object.VirtualMachine) error {
method Map (line 171) | func (cmd *ovfx) Map(op []Property) (p []types.KeyValue) {
method NetworkMap (line 179) | func (cmd *ovfx) NetworkMap(e *ovf.Envelope) (p []types.OvfNetworkMapp...
method Import (line 209) | func (cmd *ovfx) Import(fpath string) (*types.ManagedObjectReference, ...
method Upload (line 334) | func (cmd *ovfx) Upload(lease *object.HttpNfcLease, ofi ovfFileItem) e...
method PowerOn (line 367) | func (cmd *ovfx) PowerOn(vm *object.VirtualMachine) error {
method InjectOvfEnv (line 387) | func (cmd *ovfx) InjectOvfEnv(vm *object.VirtualMachine) error {
method WaitForIP (line 438) | func (cmd *ovfx) WaitForIP(vm *object.VirtualMachine) error {
function init (line 54) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/importx/spec.go
type spec (line 40) | type spec struct
method Register (line 50) | func (cmd *spec) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 57) | func (cmd *spec) Process(ctx context.Context) error {
method Usage (line 64) | func (cmd *spec) Usage() string {
method Run (line 68) | func (cmd *spec) Run(ctx context.Context, f *flag.FlagSet) error {
method Map (line 90) | func (cmd *spec) Map(e *ovf.Envelope) (res []Property) {
method Spec (line 124) | func (cmd *spec) Spec(fpath string) error {
function init (line 46) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/importx/vmdk.go
type vmdk (line 39) | type vmdk struct
method Register (line 59) | func (cmd *vmdk) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 72) | func (cmd *vmdk) Process(ctx context.Context) error {
method Usage (line 85) | func (cmd *vmdk) Usage() string {
method Run (line 89) | func (cmd *vmdk) Run(ctx context.Context, f *flag.FlagSet) error {
method PrepareDestination (line 148) | func (cmd *vmdk) PrepareDestination(i importable) error {
method Upload (line 191) | func (cmd *vmdk) Upload(i importable) error {
method Import (line 203) | func (cmd *vmdk) Import(i importable) error {
method Copy (line 219) | func (cmd *vmdk) Copy(i importable) error {
method CopyHostAgent (line 240) | func (cmd *vmdk) CopyHostAgent(i importable, s progress.Sinker) error {
method CopyVirtualCenter (line 265) | func (cmd *vmdk) CopyVirtualCenter(i importable, s progress.Sinker) er...
method MoveDisk (line 314) | func (cmd *vmdk) MoveDisk(src, dst string) error {
method DeleteDisk (line 327) | func (cmd *vmdk) DeleteDisk(path string) error {
method DetachDisk (line 338) | func (cmd *vmdk) DetachDisk(vm *object.VirtualMachine) (string, error) {
method CreateVM (line 364) | func (cmd *vmdk) CreateVM(spec *configSpec) (*object.VirtualMachine, e...
method CloneVM (line 384) | func (cmd *vmdk) CloneVM(vm *object.VirtualMachine, name string) (*obj...
method DestroyVM (line 409) | func (cmd *vmdk) DestroyVM(vm *object.VirtualMachine) error {
function init (line 54) | func init() {
type configSpec (line 429) | type configSpec
method ToSpec (line 431) | func (c *configSpec) ToSpec() types.VirtualMachineConfigSpec {
method AddChange (line 435) | func (c *configSpec) AddChange(d types.BaseVirtualDeviceConfigSpec) {
method AddDisk (line 439) | func (c *configSpec) AddDisk(ds *object.Datastore, path string) {
method RemoveDisk (line 461) | func (c *configSpec) RemoveDisk(vm *mo.VirtualMachine) string {
FILE: vendor/github.com/vmware/govmomi/govc/license/add.go
type add (line 30) | type add struct
method Register (line 39) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 47) | func (cmd *add) Process(ctx context.Context) error {
method Usage (line 57) | func (cmd *add) Usage() string {
method Run (line 61) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/license/assign.go
type assign (line 29) | type assign struct
method Register (line 42) | func (cmd *assign) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 56) | func (cmd *assign) Process(ctx context.Context) error {
method Usage (line 69) | func (cmd *assign) Usage() string {
method Run (line 73) | func (cmd *assign) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/license/assigned.go
type assigned (line 33) | type assigned struct
method Register (line 44) | func (cmd *assigned) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 54) | func (cmd *assigned) Process(ctx context.Context) error {
method Run (line 64) | func (cmd *assigned) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 40) | func init() {
type assignedOutput (line 83) | type assignedOutput
method Write (line 85) | func (res assignedOutput) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/license/decode.go
type decode (line 28) | type decode struct
method Register (line 39) | func (cmd *decode) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 49) | func (cmd *decode) Process(ctx context.Context) error {
method Usage (line 59) | func (cmd *decode) Usage() string {
method Run (line 63) | func (cmd *decode) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/license/ls.go
type ls (line 30) | type ls struct
method Register (line 41) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 51) | func (cmd *ls) Process(ctx context.Context) error {
method Run (line 61) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 37) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/license/output.go
type licenseOutput (line 28) | type licenseOutput
method Write (line 30) | func (res licenseOutput) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/license/remove.go
type remove (line 28) | type remove struct
method Register (line 37) | func (cmd *remove) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 45) | func (cmd *remove) Process(ctx context.Context) error {
method Usage (line 55) | func (cmd *remove) Usage() string {
method Run (line 59) | func (cmd *remove) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/logs/command.go
type logs (line 29) | type logs struct
method Register (line 42) | func (cmd *logs) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 52) | func (cmd *logs) Process(ctx context.Context) error {
method Description (line 59) | func (cmd *logs) Description() string {
method Run (line 73) | func (cmd *logs) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/logs/download.go
type download (line 33) | type download struct
method Register (line 43) | func (cmd *download) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 50) | func (cmd *download) Process(ctx context.Context) error {
method Usage (line 57) | func (cmd *download) Usage() string {
method Description (line 61) | func (cmd *download) Description() string {
method DownloadFile (line 73) | func (cmd *download) DownloadFile(c *vim25.Client, b string) error {
method GenerateLogBundles (line 90) | func (cmd *download) GenerateLogBundles(m *object.DiagnosticManager, h...
method Run (line 108) | func (cmd *download) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 39) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/logs/ls.go
type ls (line 31) | type ls struct
method Register (line 39) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 44) | func (cmd *ls) Process(ctx context.Context) error {
method Description (line 51) | func (cmd *ls) Description() string {
method Run (line 59) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/ls/command.go
type ls (line 33) | type ls struct
method Register (line 46) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 56) | func (cmd *ls) Description() string {
method Process (line 65) | func (cmd *ls) Process(ctx context.Context) error {
method Usage (line 72) | func (cmd *ls) Usage() string {
method typeMatch (line 76) | func (cmd *ls) typeMatch(ref types.ManagedObjectReference) bool {
method Run (line 84) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 42) | func init() {
type listResult (line 139) | type listResult struct
method Write (line 144) | func (l listResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/main.go
function main (line 79) | func main() {
FILE: vendor/github.com/vmware/govmomi/govc/main_test.go
function TestMain (line 27) | func TestMain(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/govc/metric/change.go
type change (line 28) | type change struct
method Register (line 39) | func (cmd *change) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 47) | func (cmd *change) Usage() string {
method Description (line 51) | func (cmd *change) Description() string {
method Process (line 58) | func (cmd *change) Process(ctx context.Context) error {
method Run (line 65) | func (cmd *change) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/metric/info.go
type info (line 32) | type info struct
method Register (line 40) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 45) | func (cmd *info) Usage() string {
method Description (line 49) | func (cmd *info) Description() string {
method Process (line 65) | func (cmd *info) Process(ctx context.Context) error {
method Run (line 131) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
type EntityDetail (line 72) | type EntityDetail struct
type MetricInfo (line 78) | type MetricInfo struct
type infoResult (line 85) | type infoResult struct
method Write (line 90) | func (r *infoResult) Write(w io.Writer) error {
method MarshalJSON (line 121) | func (r *infoResult) MarshalJSON() ([]byte, error) {
FILE: vendor/github.com/vmware/govmomi/govc/metric/interval/change.go
type change (line 31) | type change struct
method Register (line 42) | func (cmd *change) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 50) | func (cmd *change) Description() string {
method Process (line 58) | func (cmd *change) Process(ctx context.Context) error {
method Run (line 65) | func (cmd *change) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/metric/interval/info.go
type info (line 30) | type info struct
method Register (line 38) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 43) | func (cmd *info) Description() string {
method Process (line 51) | func (cmd *info) Process(ctx context.Context) error {
method Run (line 58) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/metric/ls.go
type ls (line 32) | type ls struct
method Register (line 42) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 49) | func (cmd *ls) Usage() string {
method Description (line 53) | func (cmd *ls) Description() string {
method Process (line 62) | func (cmd *ls) Process(ctx context.Context) error {
method Run (line 109) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
type lsResult (line 69) | type lsResult struct
method Write (line 75) | func (r *lsResult) Write(w io.Writer) error {
method MarshalJSON (line 97) | func (r *lsResult) MarshalJSON() ([]byte, error) {
FILE: vendor/github.com/vmware/govmomi/govc/metric/performance.go
type PerformanceFlag (line 28) | type PerformanceFlag struct
method Register (line 44) | func (f *PerformanceFlag) Register(ctx context.Context, fs *flag.FlagS...
method Process (line 51) | func (f *PerformanceFlag) Process(ctx context.Context) error {
method Manager (line 62) | func (f *PerformanceFlag) Manager(ctx context.Context) (*performance.M...
method Interval (line 79) | func (f *PerformanceFlag) Interval(val int32) int32 {
method ErrNotFound (line 94) | func (f *PerformanceFlag) ErrNotFound(name string) error {
function NewPerformanceFlag (line 37) | func NewPerformanceFlag(ctx context.Context) (*PerformanceFlag, context....
FILE: vendor/github.com/vmware/govmomi/govc/metric/reset.go
type reset (line 28) | type reset struct
method Register (line 36) | func (cmd *reset) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 41) | func (cmd *reset) Usage() string {
method Description (line 45) | func (cmd *reset) Description() string {
method Process (line 52) | func (cmd *reset) Process(ctx context.Context) error {
method Run (line 59) | func (cmd *reset) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/metric/sample.go
type sample (line 38) | type sample struct
method Register (line 52) | func (cmd *sample) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 63) | func (cmd *sample) Usage() string {
method Description (line 67) | func (cmd *sample) Description() string {
method Process (line 89) | func (cmd *sample) Process(ctx context.Context) error {
method Run (line 257) | func (cmd *sample) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 48) | func init() {
type sampleResult (line 96) | type sampleResult struct
method name (line 103) | func (r *sampleResult) name(e types.ManagedObjectReference) string {
method Plot (line 126) | func (r *sampleResult) Plot(w io.Writer) error {
method Write (line 224) | func (r *sampleResult) Write(w io.Writer) error {
function sampleInfoTimes (line 116) | func sampleInfoTimes(m *performance.EntityMetric) []string {
FILE: vendor/github.com/vmware/govmomi/govc/object/collect.go
type collect (line 36) | type collect struct
method Register (line 48) | func (cmd *collect) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 56) | func (cmd *collect) Usage() string {
method Description (line 60) | func (cmd *collect) Description() string {
method Process (line 76) | func (cmd *collect) Process(ctx context.Context) error {
method Run (line 195) | func (cmd *collect) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 44) | func init() {
type change (line 85) | type change struct
method MarshalJSON (line 90) | func (pc *change) MarshalJSON() ([]byte, error) {
method output (line 94) | func (pc *change) output(name string, rval reflect.Value, rtype reflec...
method writeStruct (line 151) | func (pc *change) writeStruct(name string, rval reflect.Value, rtype r...
method Write (line 166) | func (pc *change) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/object/destroy.go
type destroy (line 29) | type destroy struct
method Register (line 37) | func (cmd *destroy) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 42) | func (cmd *destroy) Usage() string {
method Description (line 46) | func (cmd *destroy) Description() string {
method Process (line 53) | func (cmd *destroy) Process(ctx context.Context) error {
method Run (line 60) | func (cmd *destroy) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/object/find.go
type find (line 35) | type find struct
method Register (line 116) | func (cmd *find) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 126) | func (cmd *find) Usage() string {
method Description (line 130) | func (cmd *find) Description() string {
method Process (line 154) | func (cmd *find) Process(ctx context.Context) error {
method rootMatch (line 162) | func (cmd *find) rootMatch(ctx context.Context, root object.Reference,...
method Run (line 181) | func (cmd *find) Run(ctx context.Context, f *flag.FlagSet) error {
function aliasHelp (line 63) | func aliasHelp() string {
type kinds (line 73) | type kinds
method String (line 75) | func (e *kinds) String() string {
method Set (line 79) | func (e *kinds) Set(value string) error {
method alias (line 84) | func (e *kinds) alias(value string) string {
method wanted (line 98) | func (e *kinds) wanted(kind string) bool {
function init (line 112) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/object/method.go
type method (line 28) | type method struct
method Register (line 41) | func (cmd *method) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 51) | func (cmd *method) Usage() string {
method Description (line 55) | func (cmd *method) Description() string {
method Process (line 64) | func (cmd *method) Process(ctx context.Context) error {
method Run (line 71) | func (cmd *method) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 37) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/object/mv.go
type mv (line 28) | type mv struct
method Register (line 36) | func (cmd *mv) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 41) | func (cmd *mv) Usage() string {
method Description (line 45) | func (cmd *mv) Description() string {
method Process (line 53) | func (cmd *mv) Process(ctx context.Context) error {
method Run (line 60) | func (cmd *mv) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/object/reload.go
type reload (line 29) | type reload struct
method Register (line 37) | func (cmd *reload) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 42) | func (cmd *reload) Usage() string {
method Description (line 46) | func (cmd *reload) Description() string {
method Process (line 54) | func (cmd *reload) Process(ctx context.Context) error {
method Run (line 61) | func (cmd *reload) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/object/rename.go
type rename (line 29) | type rename struct
method Register (line 37) | func (cmd *rename) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 42) | func (cmd *rename) Usage() string {
method Description (line 46) | func (cmd *rename) Description() string {
method Process (line 53) | func (cmd *rename) Process(ctx context.Context) error {
method Run (line 60) | func (cmd *rename) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/option/ls.go
type List (line 34) | type List struct
method Register (line 43) | func (cmd *List) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 51) | func (cmd *List) Process(ctx context.Context) error {
method Usage (line 61) | func (cmd *List) Usage() string {
method Description (line 69) | func (cmd *List) Description() string {
method Query (line 78) | func (cmd *List) Query(ctx context.Context, f *flag.FlagSet, m *object...
method Run (line 101) | func (cmd *List) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 39) | func init() {
type optionResult (line 112) | type optionResult
method Write (line 114) | func (r optionResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/option/set.go
type Set (line 31) | type Set struct
method Register (line 39) | func (cmd *Set) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 44) | func (cmd *Set) Process(ctx context.Context) error {
method Usage (line 51) | func (cmd *Set) Usage() string {
method Description (line 57) | func (cmd *Set) Description() string {
method Update (line 65) | func (cmd *Set) Update(ctx context.Context, f *flag.FlagSet, m *object...
method Run (line 111) | func (cmd *Set) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/permissions/ls.go
type ls (line 26) | type ls struct
method Register (line 36) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 43) | func (cmd *ls) Process(ctx context.Context) error {
method Usage (line 50) | func (cmd *ls) Usage() string {
method Description (line 54) | func (cmd *ls) Description() string {
method Run (line 62) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/permissions/permissions.go
type List (line 31) | type List struct
method Write (line 119) | func (l *List) Write(w io.Writer) error {
method Add (line 163) | func (l *List) Add(perms []types.Permission) {
type PermissionFlag (line 39) | type PermissionFlag struct
method Register (line 58) | func (f *PermissionFlag) Register(ctx context.Context, fs *flag.FlagSe...
method Process (line 65) | func (f *PermissionFlag) Process(ctx context.Context) error {
method Manager (line 76) | func (f *PermissionFlag) Manager(ctx context.Context) (*object.Authori...
method Role (line 92) | func (f *PermissionFlag) Role(name string) (*types.AuthorizationRole, ...
method ManagedObjects (line 100) | func (f *PermissionFlag) ManagedObjects(ctx context.Context, args []st...
function NewPermissionFlag (line 50) | func NewPermissionFlag(ctx context.Context) (*PermissionFlag, context.Co...
FILE: vendor/github.com/vmware/govmomi/govc/permissions/remove.go
type remove (line 27) | type remove struct
method Register (line 39) | func (cmd *remove) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 47) | func (cmd *remove) Process(ctx context.Context) error {
method Usage (line 54) | func (cmd *remove) Usage() string {
method Description (line 58) | func (cmd *remove) Description() string {
method Run (line 66) | func (cmd *remove) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/permissions/set.go
type set (line 27) | type set struct
method Register (line 39) | func (cmd *set) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 49) | func (cmd *set) Process(ctx context.Context) error {
method Usage (line 56) | func (cmd *set) Usage() string {
method Description (line 60) | func (cmd *set) Description() string {
method Run (line 68) | func (cmd *set) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/pool/change.go
type change (line 28) | type change struct
method Register (line 39) | func (cmd *change) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 48) | func (cmd *change) Process(ctx context.Context) error {
method Usage (line 58) | func (cmd *change) Usage() string {
method Description (line 62) | func (cmd *change) Description() string {
method Run (line 66) | func (cmd *change) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/pool/create.go
type create (line 31) | type create struct
method Register (line 40) | func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 53) | func (cmd *create) Process(ctx context.Context) error {
method Usage (line 63) | func (cmd *create) Usage() string {
method Description (line 67) | func (cmd *create) Description() string {
method Run (line 71) | func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/pool/destroy.go
type destroy (line 28) | type destroy struct
method Register (line 38) | func (cmd *destroy) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 45) | func (cmd *destroy) Process(ctx context.Context) error {
method Usage (line 52) | func (cmd *destroy) Usage() string {
method Description (line 56) | func (cmd *destroy) Description() string {
method Run (line 60) | func (cmd *destroy) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/pool/info.go
type info (line 35) | type info struct
method Register (line 47) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 57) | func (cmd *info) Process(ctx context.Context) error {
method Usage (line 67) | func (cmd *info) Usage() string {
method Description (line 71) | func (cmd *info) Description() string {
method Run (line 75) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 43) | func init() {
type infoResult (line 166) | type infoResult struct
method Write (line 171) | func (r *infoResult) Write(w io.Writer) error {
function writeInfo (line 194) | func writeInfo(w io.Writer, name string, units string, ru *types.Resourc...
FILE: vendor/github.com/vmware/govmomi/govc/pool/resource_config_spec.go
type sharesInfo (line 29) | type sharesInfo
method String (line 31) | func (s *sharesInfo) String() string {
method Set (line 35) | func (s *sharesInfo) Set(val string) error {
function NewResourceConfigSpecFlag (line 52) | func NewResourceConfigSpecFlag() *ResourceConfigSpecFlag {
type ResourceConfigSpecFlag (line 63) | type ResourceConfigSpecFlag struct
method Register (line 67) | func (s *ResourceConfigSpecFlag) Register(ctx context.Context, f *flag...
method Process (line 89) | func (s *ResourceConfigSpecFlag) Process(ctx context.Context) error {
method SetAllocation (line 93) | func (s *ResourceConfigSpecFlag) SetAllocation(f func(types.BaseResour...
FILE: vendor/github.com/vmware/govmomi/govc/role/create.go
type create (line 27) | type create struct
method Register (line 35) | func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 40) | func (cmd *create) Process(ctx context.Context) error {
method Usage (line 47) | func (cmd *create) Usage() string {
method Description (line 51) | func (cmd *create) Description() string {
method Run (line 61) | func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 31) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/role/ls.go
type ls (line 32) | type ls struct
method Register (line 40) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 45) | func (cmd *ls) Process(ctx context.Context) error {
method Usage (line 52) | func (cmd *ls) Usage() string {
method Description (line 56) | func (cmd *ls) Description() string {
method Run (line 87) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
type lsRoleList (line 66) | type lsRoleList
method Write (line 68) | func (rl lsRoleList) Write(w io.Writer) error {
type lsRole (line 78) | type lsRole
method Write (line 80) | func (r lsRole) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/role/remove.go
type remove (line 27) | type remove struct
method Register (line 37) | func (cmd *remove) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 44) | func (cmd *remove) Process(ctx context.Context) error {
method Usage (line 51) | func (cmd *remove) Usage() string {
method Description (line 55) | func (cmd *remove) Description() string {
method Run (line 63) | func (cmd *remove) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/role/update.go
type update (line 27) | type update struct
method Register (line 39) | func (cmd *update) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 48) | func (cmd *update) Process(ctx context.Context) error {
method Usage (line 55) | func (cmd *update) Usage() string {
method Description (line 59) | func (cmd *update) Description() string {
method Run (line 71) | func (cmd *update) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/role/usage.go
type usage (line 27) | type usage struct
method Register (line 35) | func (cmd *usage) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 40) | func (cmd *usage) Process(ctx context.Context) error {
method Usage (line 47) | func (cmd *usage) Usage() string {
method Description (line 51) | func (cmd *usage) Description() string {
method Run (line 59) | func (cmd *usage) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 31) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/session/ls.go
type ls (line 33) | type ls struct
method Register (line 42) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 50) | func (cmd *ls) Description() string {
method Process (line 58) | func (cmd *ls) Process(ctx context.Context) error {
method Run (line 107) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
type sessionInfo (line 68) | type sessionInfo struct
method Write (line 73) | func (s *sessionInfo) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/session/rm.go
type rm (line 28) | type rm struct
method Register (line 36) | func (cmd *rm) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 41) | func (cmd *rm) Usage() string {
method Description (line 45) | func (cmd *rm) Description() string {
method Process (line 53) | func (cmd *rm) Process(ctx context.Context) error {
method Run (line 60) | func (cmd *rm) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vapp/destroy.go
type destroy (line 29) | type destroy struct
method Register (line 37) | func (cmd *destroy) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 42) | func (cmd *destroy) Process(ctx context.Context) error {
method Usage (line 49) | func (cmd *destroy) Usage() string {
method Run (line 53) | func (cmd *destroy) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vapp/power.go
type power (line 29) | type power struct
method Register (line 42) | func (cmd *power) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 52) | func (cmd *power) Process(ctx context.Context) error {
method Run (line 75) | func (cmd *power) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/version/command.go
type version (line 31) | type version struct
method Register (line 46) | func (cmd *version) Register(ctx context.Context, f *flag.FlagSet) {
method Run (line 50) | func (cmd *version) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 37) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/change.go
type extraConfig (line 30) | type extraConfig
method String (line 32) | func (e *extraConfig) String() string {
method Set (line 36) | func (e *extraConfig) Set(v string) error {
type change (line 45) | type change struct
method Register (line 56) | func (cmd *change) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 71) | func (cmd *change) Description() string {
method Process (line 83) | func (cmd *change) Process(ctx context.Context) error {
method Run (line 90) | func (cmd *change) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 52) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/clone.go
type clone (line 33) | type clone struct
method Register (line 68) | func (cmd *clone) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 106) | func (cmd *clone) Usage() string {
method Description (line 110) | func (cmd *clone) Description() string {
method Process (line 117) | func (cmd *clone) Process(ctx context.Context) error {
method Run (line 149) | func (cmd *clone) Run(ctx context.Context, f *flag.FlagSet) error {
method cloneVM (line 264) | func (cmd *clone) cloneVM(ctx context.Context) (*object.Task, error) {
function init (line 64) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/create.go
type create (line 34) | type create struct
method Register (line 79) | func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 122) | func (cmd *create) Process(ctx context.Context) error {
method Run (line 159) | func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
method createVM (line 274) | func (cmd *create) createVM(ctx context.Context) (*object.Task, error) {
method addStorage (line 334) | func (cmd *create) addStorage(devices object.VirtualDeviceList) (objec...
method addNetwork (line 419) | func (cmd *create) addNetwork(devices object.VirtualDeviceList) (objec...
method recommendDatastore (line 429) | func (cmd *create) recommendDatastore(ctx context.Context, spec *types...
function init (line 75) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/destroy.go
type destroy (line 27) | type destroy struct
method Register (line 36) | func (cmd *destroy) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 44) | func (cmd *destroy) Process(ctx context.Context) error {
method Run (line 54) | func (cmd *destroy) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/disk/attach.go
type attach (line 28) | type attach struct
method Register (line 42) | func (cmd *attach) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 54) | func (cmd *attach) Process(ctx context.Context) error {
method Run (line 64) | func (cmd *attach) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/disk/change.go
type change (line 33) | type change struct
method Description (line 49) | func (cmd *change) Description() string {
method Register (line 61) | func (cmd *change) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 76) | func (cmd *change) Process(ctx context.Context) error {
method FindDisk (line 83) | func (cmd *change) FindDisk(ctx context.Context, list object.VirtualDe...
method CheckDiskProperties (line 105) | func (cmd *change) CheckDiskProperties(ctx context.Context, name strin...
method Run (line 123) | func (cmd *change) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 45) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/disk/create.go
type create (line 32) | type create struct
method Register (line 58) | func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 79) | func (cmd *create) Process(ctx context.Context) error {
method Description (line 92) | func (cmd *create) Description() string {
method Run (line 99) | func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 54) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/auth.go
type AuthFlag (line 29) | type AuthFlag struct
method String (line 37) | func (flag *AuthFlag) String() string {
method Set (line 41) | func (flag *AuthFlag) Set(s string) error {
method Register (line 53) | func (flag *AuthFlag) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 61) | func (flag *AuthFlag) Process(ctx context.Context) error {
method Auth (line 65) | func (flag *AuthFlag) Auth() types.BaseGuestAuthentication {
function newAuthFlag (line 33) | func newAuthFlag(ctx context.Context) (*AuthFlag, context.Context) {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/chmod.go
type chmod (line 28) | type chmod struct
method Register (line 36) | func (cmd *chmod) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 41) | func (cmd *chmod) Process(ctx context.Context) error {
method Usage (line 48) | func (cmd *chmod) Usage() string {
method Description (line 52) | func (cmd *chmod) Description() string {
method Run (line 59) | func (cmd *chmod) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/chown.go
type chown (line 29) | type chown struct
method Register (line 37) | func (cmd *chown) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 42) | func (cmd *chown) Process(ctx context.Context) error {
method Usage (line 49) | func (cmd *chown) Usage() string {
method Description (line 53) | func (cmd *chown) Description() string {
method Run (line 60) | func (cmd *chown) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/download.go
type download (line 30) | type download struct
method Register (line 40) | func (cmd *download) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 47) | func (cmd *download) Usage() string {
method Description (line 51) | func (cmd *download) Description() string {
method Process (line 61) | func (cmd *download) Process(ctx context.Context) error {
method Run (line 68) | func (cmd *download) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/file_attr.go
type FileAttrFlag (line 27) | type FileAttrFlag struct
method Register (line 35) | func (flag *FileAttrFlag) Register(ctx context.Context, f *flag.FlagSe...
method Process (line 41) | func (flag *FileAttrFlag) Process(ctx context.Context) error {
method Attr (line 45) | func (flag *FileAttrFlag) Attr() types.BaseGuestFileAttributes {
function newFileAttrFlag (line 31) | func newFileAttrFlag(ctx context.Context) (*FileAttrFlag, context.Contex...
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/getenv.go
type getenv (line 27) | type getenv struct
method Register (line 35) | func (cmd *getenv) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 40) | func (cmd *getenv) Process(ctx context.Context) error {
method Usage (line 47) | func (cmd *getenv) Usage() string {
method Description (line 51) | func (cmd *getenv) Description() string {
method Run (line 59) | func (cmd *getenv) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 31) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/guest.go
type GuestFlag (line 31) | type GuestFlag struct
method Register (line 46) | func (flag *GuestFlag) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 52) | func (flag *GuestFlag) Process(ctx context.Context) error {
method FileManager (line 65) | func (flag *GuestFlag) FileManager() (*guest.FileManager, error) {
method ProcessManager (line 81) | func (flag *GuestFlag) ProcessManager() (*guest.ProcessManager, error) {
method ParseURL (line 97) | func (flag *GuestFlag) ParseURL(urlStr string) (*url.URL, error) {
method VirtualMachine (line 106) | func (flag *GuestFlag) VirtualMachine() (*object.VirtualMachine, error) {
function newGuestFlag (line 38) | func newGuestFlag(ctx context.Context) (*GuestFlag, context.Context) {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/kill.go
type kill (line 26) | type kill struct
method Register (line 36) | func (cmd *kill) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 43) | func (cmd *kill) Process(ctx context.Context) error {
method Description (line 50) | func (cmd *kill) Description() string {
method Run (line 57) | func (cmd *kill) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/ls.go
type ls (line 31) | type ls struct
method Register (line 41) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 48) | func (cmd *ls) Process(ctx context.Context) error {
method Usage (line 55) | func (cmd *ls) Usage() string {
method Description (line 59) | func (cmd *ls) Description() string {
method Run (line 66) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 37) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/mkdir.go
type mkdir (line 28) | type mkdir struct
method Register (line 38) | func (cmd *mkdir) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 45) | func (cmd *mkdir) Process(ctx context.Context) error {
method Usage (line 52) | func (cmd *mkdir) Usage() string {
method Description (line 56) | func (cmd *mkdir) Description() string {
method Run (line 64) | func (cmd *mkdir) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/mktemp.go
type mktemp (line 27) | type mktemp struct
method Register (line 40) | func (cmd *mktemp) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 50) | func (cmd *mktemp) Process(ctx context.Context) error {
method Description (line 57) | func (cmd *mktemp) Description() string {
method Run (line 67) | func (cmd *mktemp) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/mv.go
type mv (line 28) | type mv struct
method Register (line 38) | func (cmd *mv) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 45) | func (cmd *mv) Process(ctx context.Context) error {
method Usage (line 52) | func (cmd *mv) Usage() string {
method Description (line 56) | func (cmd *mv) Description() string {
method Run (line 64) | func (cmd *mv) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/ps.go
type ps (line 34) | type ps struct
method Register (line 76) | func (cmd *ps) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 91) | func (cmd *ps) Process(ctx context.Context) error {
method Description (line 101) | func (cmd *ps) Description() string {
method list (line 126) | func (cmd *ps) list(ctx context.Context) ([]types.GuestProcessInfo, er...
method Run (line 149) | func (cmd *ps) Run(ctx context.Context, f *flag.FlagSet) error {
type pidSelector (line 46) | type pidSelector
method String (line 48) | func (s *pidSelector) String() string {
method Set (line 52) | func (s *pidSelector) Set(value string) error {
type uidSelector (line 61) | type uidSelector
method String (line 63) | func (s uidSelector) String() string {
method Set (line 67) | func (s uidSelector) Set(value string) error {
function init (line 72) | func init() {
function running (line 117) | func running(procs []types.GuestProcessInfo) bool {
type psResult (line 160) | type psResult struct
method Write (line 165) | func (r *psResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/rm.go
type rm (line 26) | type rm struct
method Register (line 34) | func (cmd *rm) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 39) | func (cmd *rm) Process(ctx context.Context) error {
method Usage (line 46) | func (cmd *rm) Usage() string {
method Description (line 50) | func (cmd *rm) Description() string {
method Run (line 57) | func (cmd *rm) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 30) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/rmdir.go
type rmdir (line 26) | type rmdir struct
method Register (line 36) | func (cmd *rmdir) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 43) | func (cmd *rmdir) Process(ctx context.Context) error {
method Usage (line 50) | func (cmd *rmdir) Usage() string {
method Description (line 54) | func (cmd *rmdir) Description() string {
method Run (line 62) | func (cmd *rmdir) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/start.go
type start (line 29) | type start struct
method Register (line 51) | func (cmd *start) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 59) | func (cmd *start) Process(ctx context.Context) error {
method Usage (line 66) | func (cmd *start) Usage() string {
method Description (line 70) | func (cmd *start) Description() string {
method Run (line 82) | func (cmd *start) Run(ctx context.Context, f *flag.FlagSet) error {
type env (line 36) | type env
method String (line 38) | func (e *env) String() string {
method Set (line 42) | func (e *env) Set(value string) error {
function init (line 47) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/tools.go
type tools (line 28) | type tools struct
method Register (line 42) | func (cmd *tools) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 55) | func (cmd *tools) Process(ctx context.Context) error {
method Usage (line 65) | func (cmd *tools) Usage() string {
method Description (line 69) | func (cmd *tools) Description() string {
method Upgrade (line 78) | func (cmd *tools) Upgrade(ctx context.Context, vm *object.VirtualMachi...
method Run (line 87) | func (cmd *tools) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/touch.go
type touch (line 30) | type touch struct
method Register (line 42) | func (cmd *touch) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 51) | func (cmd *touch) Process(ctx context.Context) error {
method Usage (line 58) | func (cmd *touch) Usage() string {
method Description (line 62) | func (cmd *touch) Description() string {
method Run (line 70) | func (cmd *touch) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/guest/upload.go
type upload (line 30) | type upload struct
method Register (line 41) | func (cmd *upload) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 50) | func (cmd *upload) Usage() string {
method Description (line 54) | func (cmd *upload) Description() string {
method Process (line 64) | func (cmd *upload) Process(ctx context.Context) error {
method Run (line 74) | func (cmd *upload) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 37) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/info.go
type info (line 40) | type info struct
method Register (line 56) | func (cmd *info) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 73) | func (cmd *info) Process(ctx context.Context) error {
method Run (line 86) | func (cmd *info) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 52) | func init() {
type infoResult (line 162) | type infoResult struct
method collectReferences (line 171) | func (r *infoResult) collectReferences(pc *property.Collector, ctx con...
method entityNames (line 265) | func (r *infoResult) entityNames(refs []types.ManagedObjectReference) ...
method Write (line 273) | func (r *infoResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/vm/ip.go
type ip (line 32) | type ip struct
method Register (line 47) | func (cmd *ip) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 61) | func (cmd *ip) Usage() string {
method Description (line 65) | func (cmd *ip) Description() string {
method Process (line 101) | func (cmd *ip) Process(ctx context.Context) error {
method Run (line 111) | func (cmd *ip) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 43) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/markastemplate.go
type markastemplate (line 27) | type markastemplate struct
method Register (line 35) | func (cmd *markastemplate) Register(ctx context.Context, f *flag.FlagS...
method Process (line 40) | func (cmd *markastemplate) Process(ctx context.Context) error {
method Usage (line 47) | func (cmd *markastemplate) Usage() string {
method Description (line 51) | func (cmd *markastemplate) Description() string {
method Run (line 58) | func (cmd *markastemplate) Run(ctx context.Context, f *flag.FlagSet) e...
function init (line 31) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/markasvm.go
type markasvm (line 27) | type markasvm struct
method Register (line 37) | func (cmd *markasvm) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 46) | func (cmd *markasvm) Process(ctx context.Context) error {
method Usage (line 59) | func (cmd *markasvm) Usage() string {
method Description (line 63) | func (cmd *markasvm) Description() string {
method Run (line 71) | func (cmd *markasvm) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/migrate.go
type migrate (line 30) | type migrate struct
method Register (line 44) | func (cmd *migrate) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 60) | func (cmd *migrate) Process(ctx context.Context) error {
method Usage (line 74) | func (cmd *migrate) Usage() string {
method Description (line 78) | func (cmd *migrate) Description() string {
method relocate (line 86) | func (cmd *migrate) relocate(ctx context.Context, vm *object.VirtualMa...
method Run (line 103) | func (cmd *migrate) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 40) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/network/add.go
type add (line 28) | type add struct
method Register (line 37) | func (cmd *add) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 44) | func (cmd *add) Description() string {
method Process (line 52) | func (cmd *add) Process(ctx context.Context) error {
method Run (line 62) | func (cmd *add) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 33) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/network/change.go
type change (line 30) | type change struct
method Register (line 39) | func (cmd *change) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 46) | func (cmd *change) Process(ctx context.Context) error {
method Usage (line 56) | func (cmd *change) Usage() string {
method Description (line 60) | func (cmd *change) Description() string {
method Run (line 69) | func (cmd *change) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/power.go
type power (line 31) | type power struct
method Register (line 48) | func (cmd *power) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 64) | func (cmd *power) Process(ctx context.Context) error {
method Run (line 101) | func (cmd *power) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 44) | func init() {
function isToolsUnavailable (line 90) | func isToolsUnavailable(err error) bool {
FILE: vendor/github.com/vmware/govmomi/govc/vm/question.go
type question (line 32) | type question struct
method Register (line 42) | func (cmd *question) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 49) | func (cmd *question) Process(ctx context.Context) error {
method Run (line 56) | func (cmd *question) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/rdm/attach.go
type attach (line 30) | type attach struct
method Register (line 40) | func (cmd *attach) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 48) | func (cmd *attach) Description() string {
method Process (line 55) | func (cmd *attach) Process(ctx context.Context) error {
method Run (line 64) | func (cmd *attach) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 36) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/rdm/ls.go
type ls (line 33) | type ls struct
method Register (line 42) | func (cmd *ls) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 50) | func (cmd *ls) Description() string {
method Process (line 57) | func (cmd *ls) Process(ctx context.Context) error {
method Run (line 68) | func (cmd *ls) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 38) | func init() {
type infoResult (line 89) | type infoResult struct
method Write (line 93) | func (r *infoResult) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/govc/vm/register.go
type register (line 29) | type register struct
method Register (line 52) | func (cmd *register) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 75) | func (cmd *register) Process(ctx context.Context) error {
method Usage (line 98) | func (cmd *register) Usage() string {
method Description (line 102) | func (cmd *register) Description() string {
method Run (line 111) | func (cmd *register) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 48) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/snapshot/create.go
type create (line 27) | type create struct
method Register (line 39) | func (cmd *create) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 48) | func (cmd *create) Usage() string {
method Description (line 52) | func (cmd *create) Description() string {
method Process (line 59) | func (cmd *create) Process(ctx context.Context) error {
method Run (line 66) | func (cmd *create) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/snapshot/remove.go
type remove (line 28) | type remove struct
method Register (line 39) | func (cmd *remove) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 47) | func (cmd *remove) Usage() string {
method Description (line 51) | func (cmd *remove) Description() string {
method Process (line 60) | func (cmd *remove) Process(ctx context.Context) error {
method Run (line 67) | func (cmd *remove) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 35) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/snapshot/revert.go
type revert (line 28) | type revert struct
method Register (line 38) | func (cmd *revert) Register(ctx context.Context, f *flag.FlagSet) {
method Usage (line 45) | func (cmd *revert) Usage() string {
method Description (line 49) | func (cmd *revert) Description() string {
method Process (line 59) | func (cmd *revert) Process(ctx context.Context) error {
method Run (line 66) | func (cmd *revert) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 34) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/snapshot/tree.go
type tree (line 32) | type tree struct
method Register (line 47) | func (cmd *tree) Register(ctx context.Context, f *flag.FlagSet) {
method Description (line 57) | func (cmd *tree) Description() string {
method Process (line 67) | func (cmd *tree) Process(ctx context.Context) error {
method write (line 74) | func (cmd *tree) write(level int, parent string, st []types.VirtualMac...
method Run (line 111) | func (cmd *tree) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 43) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/unregister.go
type unregister (line 27) | type unregister struct
method Register (line 36) | func (cmd *unregister) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 44) | func (cmd *unregister) Process(ctx context.Context) error {
method Usage (line 54) | func (cmd *unregister) Usage() string {
method Description (line 58) | func (cmd *unregister) Description() string {
method Run (line 62) | func (cmd *unregister) Run(ctx context.Context, f *flag.FlagSet) error {
function init (line 32) | func init() {
FILE: vendor/github.com/vmware/govmomi/govc/vm/vnc.go
type intRange (line 39) | type intRange struct
method Set (line 45) | func (i *intRange) Set(s string) error {
method String (line 62) | func (i *intRange) String() string {
type vnc (line 66) | type vnc struct
method Register (line 82) | func (cmd *vnc) Register(ctx context.Context, f *flag.FlagSet) {
method Process (line 93) | func (cmd *vnc) Process(ctx context.Context) error {
method Usage (line 105) | func (cmd *vnc) Usage() string {
method Description (line 109) | func (cmd *vnc) Description() string {
method Run (line 120) | func (cmd *vnc) Run(ctx context.Context, f *flag.FlagSet) error {
method loadVMs (line 147) | func (cmd *vnc) loadVMs(args []string) ([]*vncVM, error) {
function init (line 76) | func init() {
type vncVM (line 188) | type vncVM struct
method hostReference (line 223) | func (v *vncVM) hostReference() types.ManagedObjectReference {
method enable (line 227) | func (v *vncVM) enable(port int, password string) error {
method disable (line 249) | func (v *vncVM) disable() error {
method reconfigure (line 256) | func (v *vncVM) reconfigure() error {
method uri (line 275) | func (v *vncVM) uri() (string, error) {
method write (line 289) | func (v *vncVM) write(w io.Writer) error {
function newVNCVM (line 198) | func newVNCVM(c *vim25.Client, vm *object.VirtualMachine) (*vncVM, error) {
type vncHost (line 302) | type vncHost struct
method popUnusedPort (line 387) | func (h *vncHost) popUnusedPort() (int, error) {
method managementIP (line 401) | func (h *vncHost) managementIP() (string, error) {
function newVNCHost (line 309) | func newVNCHost(c *vim25.Client, host *object.HostSystem, low, high int)...
function loadUsedPorts (line 334) | func loadUsedPorts(c *vim25.Client, host types.ManagedObjectReference) (...
type vncResult (line 421) | type vncResult
method MarshalJSON (line 423) | func (vms vncResult) MarshalJSON() ([]byte, error) {
method Write (line 435) | func (vms vncResult) Write(w io.Writer) error {
type vncOptions (line 446) | type vncOptions
method ToExtraConfig (line 464) | func (vo vncOptions) ToExtraConfig() []types.BaseOptionValue {
function vncOptionsFromExtraConfig (line 450) | func vncOptionsFromExtraConfig(ov []types.BaseOptionValue) vncOptions {
FILE: vendor/github.com/vmware/govmomi/guest/auth_manager.go
type AuthManager (line 27) | type AuthManager struct
method Reference (line 35) | func (m AuthManager) Reference() types.ManagedObjectReference {
method AcquireCredentials (line 39) | func (m AuthManager) AcquireCredentials(ctx context.Context, requested...
method ReleaseCredentials (line 55) | func (m AuthManager) ReleaseCredentials(ctx context.Context, auth type...
method ValidateCredentials (line 67) | func (m AuthManager) ValidateCredentials(ctx context.Context, auth typ...
FILE: vendor/github.com/vmware/govmomi/guest/file_manager.go
type FileManager (line 29) | type FileManager struct
method Reference (line 37) | func (m FileManager) Reference() types.ManagedObjectReference {
method ChangeFileAttributes (line 41) | func (m FileManager) ChangeFileAttributes(ctx context.Context, auth ty...
method CreateTemporaryDirectory (line 54) | func (m FileManager) CreateTemporaryDirectory(ctx context.Context, aut...
method CreateTemporaryFile (line 72) | func (m FileManager) CreateTemporaryFile(ctx context.Context, auth typ...
method DeleteDirectory (line 90) | func (m FileManager) DeleteDirectory(ctx context.Context, auth types.B...
method DeleteFile (line 103) | func (m FileManager) DeleteFile(ctx context.Context, auth types.BaseGu...
method InitiateFileTransferFromGuest (line 115) | func (m FileManager) InitiateFileTransferFromGuest(ctx context.Context...
method InitiateFileTransferToGuest (line 140) | func (m FileManager) InitiateFileTransferToGuest(ctx context.Context, ...
method ListFiles (line 159) | func (m FileManager) ListFiles(ctx context.Context, auth types.BaseGue...
method MakeDirectory (line 178) | func (m FileManager) MakeDirectory(ctx context.Context, auth types.Bas...
method MoveDirectory (line 191) | func (m FileManager) MoveDirectory(ctx context.Context, auth types.Bas...
method MoveFile (line 204) | func (m FileManager) MoveFile(ctx context.Context, auth types.BaseGues...
FILE: vendor/github.com/vmware/govmomi/guest/operations_manager.go
type OperationsManager (line 28) | type OperationsManager struct
method retrieveOne (line 37) | func (m OperationsManager) retrieveOne(ctx context.Context, p string, ...
method AuthManager (line 42) | func (m OperationsManager) AuthManager(ctx context.Context) (*AuthMana...
method FileManager (line 53) | func (m OperationsManager) FileManager(ctx context.Context) (*FileMana...
method ProcessManager (line 64) | func (m OperationsManager) ProcessManager(ctx context.Context) (*Proce...
function NewOperationsManager (line 33) | func NewOperationsManager(c *vim25.Client, vm types.ManagedObjectReferen...
FILE: vendor/github.com/vmware/govmomi/guest/process_manager.go
type ProcessManager (line 27) | type ProcessManager struct
method Reference (line 35) | func (m ProcessManager) Reference() types.ManagedObjectReference {
method ListProcesses (line 39) | func (m ProcessManager) ListProcesses(ctx context.Context, auth types....
method ReadEnvironmentVariable (line 55) | func (m ProcessManager) ReadEnvironmentVariable(ctx context.Context, a...
method StartProgram (line 71) | func (m ProcessManager) StartProgram(ctx context.Context, auth types.B...
method TerminateProcess (line 87) | func (m ProcessManager) TerminateProcess(ctx context.Context, auth typ...
FILE: vendor/github.com/vmware/govmomi/license/assignment_manager.go
type AssignmentManager (line 27) | type AssignmentManager struct
method QueryAssigned (line 31) | func (m AssignmentManager) QueryAssigned(ctx context.Context, id strin...
method Remove (line 45) | func (m AssignmentManager) Remove(ctx context.Context, id string) error {
method Update (line 56) | func (m AssignmentManager) Update(ctx context.Context, id string, key ...
FILE: vendor/github.com/vmware/govmomi/license/manager.go
type Manager (line 31) | type Manager struct
method Add (line 51) | func (m Manager) Add(ctx context.Context, key string, labels map[strin...
method Decode (line 66) | func (m Manager) Decode(ctx context.Context, key string) (types.Licens...
method Remove (line 80) | func (m Manager) Remove(ctx context.Context, key string) error {
method Update (line 90) | func (m Manager) Update(ctx context.Context, key string, labels map[st...
method List (line 105) | func (m Manager) List(ctx context.Context) (InfoList, error) {
method AssignmentManager (line 116) | func (m Manager) AssignmentManager(ctx context.Context) (*AssignmentMa...
function NewManager (line 35) | func NewManager(c *vim25.Client) *Manager {
function mapToKeyValueSlice (line 43) | func mapToKeyValueSlice(m map[string]string) []types.KeyValue {
type licenseFeature (line 135) | type licenseFeature struct
function parseLicenseFeature (line 140) | func parseLicenseFeature(feature string) *licenseFeature {
function HasFeature (line 158) | func HasFeature(license types.LicenseManagerLicenseInfo, key string) bool {
type InfoList (line 183) | type InfoList
method WithFeature (line 185) | func (l InfoList) WithFeature(key string) InfoList {
FILE: vendor/github.com/vmware/govmomi/list/lister.go
type Element (line 31) | type Element struct
method String (line 36) | func (e Element) String() string {
function ToElement (line 40) | func ToElement(r mo.Reference, prefix string) Element {
type Lister (line 112) | type Lister struct
method retrieveProperties (line 119) | func (l Lister) retrieveProperties(ctx context.Context, req types.Retr...
method List (line 152) | func (l Lister) List(ctx context.Context) ([]Element, error) {
method ListFolder (line 173) | func (l Lister) ListFolder(ctx context.Context) ([]Element, error) {
method ListDatacenter (line 247) | func (l Lister) ListDatacenter(ctx context.Context) ([]Element, error) {
method ListComputeResource (line 305) | func (l Lister) ListComputeResource(ctx context.Context) ([]Element, e...
method ListResourcePool (line 370) | func (l Lister) ListResourcePool(ctx context.Context) ([]Element, erro...
method ListHostSystem (line 433) | func (l Lister) ListHostSystem(ctx context.Context) ([]Element, error) {
method ListVirtualApp (line 500) | func (l Lister) ListVirtualApp(ctx context.Context) ([]Element, error) {
FILE: vendor/github.com/vmware/govmomi/list/path.go
function ToParts (line 24) | func ToParts(p string) []string {
FILE: vendor/github.com/vmware/govmomi/list/path_test.go
function TestToParts (line 24) | func TestToParts(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/object/authorization_manager.go
type AuthorizationManager (line 28) | type AuthorizationManager struct
method RoleList (line 62) | func (m AuthorizationManager) RoleList(ctx context.Context) (Authoriza...
method RetrieveEntityPermissions (line 73) | func (m AuthorizationManager) RetrieveEntityPermissions(ctx context.Co...
method RemoveEntityPermission (line 88) | func (m AuthorizationManager) RemoveEntityPermission(ctx context.Conte...
method SetEntityPermissions (line 100) | func (m AuthorizationManager) SetEntityPermissions(ctx context.Context...
method RetrieveRolePermissions (line 111) | func (m AuthorizationManager) RetrieveRolePermissions(ctx context.Cont...
method RetrieveAllPermissions (line 125) | func (m AuthorizationManager) RetrieveAllPermissions(ctx context.Conte...
method AddRole (line 138) | func (m AuthorizationManager) AddRole(ctx context.Context, name string...
method RemoveRole (line 153) | func (m AuthorizationManager) RemoveRole(ctx context.Context, id int32...
method UpdateRole (line 164) | func (m AuthorizationManager) UpdateRole(ctx context.Context, id int32...
function NewAuthorizationManager (line 32) | func NewAuthorizationManager(c *vim25.Client) *AuthorizationManager {
type AuthorizationRoleList (line 40) | type AuthorizationRoleList
method ById (line 42) | func (l AuthorizationRoleList) ById(id int32) *types.AuthorizationRole {
method ByName (line 52) | func (l AuthorizationRoleList) ByName(name string) *types.Authorizatio...
FILE: vendor/github.com/vmware/govmomi/object/authorization_manager_internal.go
type DisabledMethodRequest (line 26) | type DisabledMethodRequest struct
type disableMethodsRequest (line 31) | type disableMethodsRequest struct
type disableMethodsBody (line 39) | type disableMethodsBody struct
method Fault (line 45) | func (b *disableMethodsBody) Fault() *soap.Fault { return b.Err }
method DisableMethods (line 47) | func (m AuthorizationManager) DisableMethods(ctx context.Context, entity...
type enableMethodsRequest (line 60) | type enableMethodsRequest struct
type enableMethodsBody (line 67) | type enableMethodsBody struct
method Fault (line 73) | func (b *enableMethodsBody) Fault() *soap.Fault { return b.Err }
method EnableMethods (line 75) | func (m AuthorizationManager) EnableMethods(ctx context.Context, entity ...
FILE: vendor/github.com/vmware/govmomi/object/cluster_compute_resource.go
type ClusterComputeResource (line 27) | type ClusterComputeResource struct
method ReconfigureCluster (line 37) | func (c ClusterComputeResource) ReconfigureCluster(ctx context.Context...
method AddHost (line 52) | func (c ClusterComputeResource) AddHost(ctx context.Context, spec type...
method Destroy (line 75) | func (c ClusterComputeResource) Destroy(ctx context.Context) (*Task, e...
function NewClusterComputeResource (line 31) | func NewClusterComputeResource(c *vim25.Client, ref types.ManagedObjectR...
FILE: vendor/github.com/vmware/govmomi/object/common.go
type Common (line 37) | type Common struct
method String (line 44) | func (c Common) String() string {
method Reference (line 58) | func (c Common) Reference() types.ManagedObjectReference {
method Client (line 62) | func (c Common) Client() *vim25.Client {
method Name (line 67) | func (c Common) Name() string {
method SetInventoryPath (line 74) | func (c *Common) SetInventoryPath(p string) {
method ObjectName (line 80) | func (c Common) ObjectName(ctx context.Context) (string, error) {
method Properties (line 96) | func (c Common) Properties(ctx context.Context, r types.ManagedObjectR...
method Destroy (line 100) | func (c Common) Destroy(ctx context.Context) (*Task, error) {
method Rename (line 113) | func (c Common) Rename(ctx context.Context, name string) (*Task, error) {
function NewCommon (line 54) | func NewCommon(c *vim25.Client, r types.ManagedObjectReference) Common {
FILE: vendor/github.com/vmware/govmomi/object/common_test.go
function TestCommonName (line 21) | func TestCommonName(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/object/compute_resource.go
type ComputeResource (line 30) | type ComputeResource struct
method Hosts (line 40) | func (c ComputeResource) Hosts(ctx context.Context) ([]*HostSystem, er...
method Datastores (line 70) | func (c ComputeResource) Datastores(ctx context.Context) ([]*Datastore...
method ResourcePool (line 87) | func (c ComputeResource) ResourcePool(ctx context.Context) (*ResourceP...
method Reconfigure (line 98) | func (c ComputeResource) Reconfigure(ctx context.Context, spec types.B...
method Destroy (line 113) | func (c ComputeResource) Destroy(ctx context.Context) (*Task, error) {
function NewComputeResource (line 34) | func NewComputeResource(c *vim25.Client, ref types.ManagedObjectReferenc...
FILE: vendor/github.com/vmware/govmomi/object/custom_fields_manager.go
type CustomFieldsManager (line 34) | type CustomFieldsManager struct
method Add (line 55) | func (m CustomFieldsManager) Add(ctx context.Context, name string, moT...
method Remove (line 72) | func (m CustomFieldsManager) Remove(ctx context.Context, key int32) er...
method Rename (line 82) | func (m CustomFieldsManager) Rename(ctx context.Context, key int32, na...
method Set (line 93) | func (m CustomFieldsManager) Set(ctx context.Context, entity types.Man...
method Field (line 105) | func (m CustomFieldsManager) Field(ctx context.Context) ([]types.Custo...
method FindKey (line 116) | func (m CustomFieldsManager) FindKey(ctx context.Context, key string) ...
function GetCustomFieldsManager (line 40) | func GetCustomFieldsManager(c *vim25.Client) (*CustomFieldsManager, erro...
function NewCustomFieldsManager (line 47) | func NewCustomFieldsManager(c *vim25.Client) *CustomFieldsManager {
FILE: vendor/github.com/vmware/govmomi/object/customization_spec_manager.go
type CustomizationSpecManager (line 27) | type CustomizationSpecManager struct
method DoesCustomizationSpecExist (line 39) | func (cs CustomizationSpecManager) DoesCustomizationSpecExist(ctx cont...
method GetCustomizationSpec (line 54) | func (cs CustomizationSpecManager) GetCustomizationSpec(ctx context.Co...
method CreateCustomizationSpec (line 69) | func (cs CustomizationSpecManager) CreateCustomizationSpec(ctx context...
method OverwriteCustomizationSpec (line 83) | func (cs CustomizationSpecManager) OverwriteCustomizationSpec(ctx cont...
method DeleteCustomizationSpec (line 97) | func (cs CustomizationSpecManager) DeleteCustomizationSpec(ctx context...
method DuplicateCustomizationSpec (line 111) | func (cs CustomizationSpecManager) DuplicateCustomizationSpec(ctx cont...
method RenameCustomizationSpec (line 126) | func (cs CustomizationSpecManager) RenameCustomizationSpec(ctx context...
method CustomizationSpecItemToXml (line 141) | func (cs CustomizationSpecManager) CustomizationSpecItemToXml(ctx cont...
method XmlToCustomizationSpecItem (line 155) | func (cs CustomizationSpecManager) XmlToCustomizationSpecItem(ctx cont...
function NewCustomizationSpecManager (line 31) | func NewCustomizationSpecManager(c *vim25.Client) *CustomizationSpecMana...
FILE: vendor/github.com/vmware/govmomi/object/datacenter.go
type DatacenterFolders (line 29) | type DatacenterFolders struct
type Datacenter (line 36) | type Datacenter struct
method Folders (line 46) | func (d *Datacenter) Folders(ctx context.Context) (*DatacenterFolders,...
method Destroy (line 79) | func (d Datacenter) Destroy(ctx context.Context) (*Task, error) {
function NewDatacenter (line 40) | func NewDatacenter(c *vim25.Client, ref types.ManagedObjectReference) *D...
FILE: vendor/github.com/vmware/govmomi/object/datastore.go
type DatastoreNoSuchDirectoryError (line 40) | type DatastoreNoSuchDirectoryError struct
method Error (line 45) | func (e DatastoreNoSuchDirectoryError) Error() string {
type DatastoreNoSuchFileError (line 50) | type DatastoreNoSuchFileError struct
method Error (line 55) | func (e DatastoreNoSuchFileError) Error() string {
type Datastore (line 59) | type Datastore struct
method Path (line 71) | func (d Datastore) Path(path string) string {
method NewURL (line 79) | func (d Datastore) NewURL(path string) *url.URL {
method URL (line 94) | func (d Datastore) URL(ctx context.Context, dc *Datacenter, path strin...
method Browser (line 98) | func (d Datastore) Browser(ctx context.Context) (*HostDatastoreBrowser...
method useServiceTicket (line 109) | func (d Datastore) useServiceTicket() bool {
method useServiceTicketHostName (line 130) | func (d Datastore) useServiceTicketHostName(name string) bool {
method HostContext (line 170) | func (d Datastore) HostContext(ctx context.Context, host *HostSystem) ...
method ServiceTicket (line 177) | func (d Datastore) ServiceTicket(ctx context.Context, path string, met...
method uploadTicket (line 249) | func (d Datastore) uploadTicket(ctx context.Context, path string, para...
method downloadTicket (line 265) | func (d Datastore) downloadTicket(ctx context.Context, path string, pa...
method Upload (line 282) | func (d Datastore) Upload(ctx context.Context, f io.Reader, path strin...
method UploadFile (line 291) | func (d Datastore) UploadFile(ctx context.Context, file string, path s...
method Download (line 300) | func (d Datastore) Download(ctx context.Context, path string, param *s...
method DownloadFile (line 309) | func (d Datastore) DownloadFile(ctx context.Context, path string, file...
method AttachedHosts (line 318) | func (d Datastore) AttachedHosts(ctx context.Context) ([]*HostSystem, ...
method AttachedClusterHosts (line 358) | func (d Datastore) AttachedClusterHosts(ctx context.Context, cluster *...
method Stat (line 385) | func (d Datastore) Stat(ctx context.Context, file string) (types.BaseF...
method Type (line 431) | func (d Datastore) Type(ctx context.Context) (types.HostFileSystemVolu...
function NewDatastore (line 65) | func NewDatastore(c *vim25.Client, ref types.ManagedObjectReference) *Da...
type datastoreServiceTicketHostKey (line 166) | type datastoreServiceTicketHostKey struct
FILE: vendor/github.com/vmware/govmomi/object/datastore_file.go
type DatastoreFile (line 34) | type DatastoreFile struct
method Read (line 58) | func (f *DatastoreFile) Read(b []byte) (int, error) {
method Close (line 89) | func (f *DatastoreFile) Close() error {
method Seek (line 103) | func (f *DatastoreFile) Seek(offset int64, whence int) (int64, error) {
method Stat (line 167) | func (f *DatastoreFile) Stat() (os.FileInfo, error) {
method get (line 188) | func (f *DatastoreFile) get() (io.Reader, error) {
method Tail (line 259) | func (f *DatastoreFile) Tail(n int) error {
method TailFunc (line 265) | func (f *DatastoreFile) TailFunc(lines int, include func(line int, mes...
method Follow (line 406) | func (f *DatastoreFile) Follow(interval time.Duration) io.ReadCloser {
method Open (line 48) | func (d Datastore) Open(ctx context.Context, name string) (*DatastoreFil...
type fileStat (line 130) | type fileStat struct
method Name (line 135) | func (s *fileStat) Name() string {
method Size (line 139) | func (s *fileStat) Size() int64 {
method Mode (line 143) | func (s *fileStat) Mode() os.FileMode {
method ModTime (line 147) | func (s *fileStat) ModTime() time.Time {
method IsDir (line 151) | func (s *fileStat) IsDir() bool {
method Sys (line 155) | func (s *fileStat) Sys() interface{} {
function statusError (line 159) | func statusError(res *http.Response) error {
function lastIndexLines (line 235) | func lastIndexLines(s []byte, line *int, include func(l int, m string) b...
type followDatastoreFile (line 346) | type followDatastoreFile struct
method Read (line 354) | func (f *followDatastoreFile) Read(p []byte) (int, error) {
method Close (line 400) | func (f *followDatastoreFile) Close() error {
FILE: vendor/github.com/vmware/govmomi/object/datastore_file_manager.go
type DatastoreFileManager (line 33) | type DatastoreFileManager struct
method Delete (line 58) | func (m *DatastoreFileManager) Delete(ctx context.Context, name string...
method DeleteFile (line 68) | func (m *DatastoreFileManager) DeleteFile(ctx context.Context, name st...
method DeleteVirtualDisk (line 82) | func (m *DatastoreFileManager) DeleteVirtualDisk(ctx context.Context, ...
method Path (line 101) | func (m *DatastoreFileManager) Path(name string) *DatastorePath {
method markDiskAsDeletable (line 112) | func (m *DatastoreFileManager) markDiskAsDeletable(ctx context.Context...
method NewFileManager (line 43) | func (d Datastore) NewFileManager(dc *Datacenter, force bool) *Datastore...
FILE: vendor/github.com/vmware/govmomi/object/datastore_path.go
type DatastorePath (line 25) | type DatastorePath struct
method FromString (line 32) | func (p *DatastorePath) FromString(s string) bool {
method String (line 57) | func (p *DatastorePath) String() string {
FILE: vendor/github.com/vmware/govmomi/object/datastore_path_test.go
function TestParseDatastorePath (line 21) | func TestParseDatastorePath(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/object/diagnostic_log.go
type DiagnosticLog (line 27) | type DiagnosticLog struct
method Seek (line 37) | func (l *DiagnosticLog) Seek(ctx context.Context, nlines int32) error {
method Copy (line 50) | func (l *DiagnosticLog) Copy(ctx context.Context, w io.Writer) (int, e...
FILE: vendor/github.com/vmware/govmomi/object/diagnostic_manager.go
type DiagnosticManager (line 27) | type DiagnosticManager struct
method Log (line 39) | func (m DiagnosticManager) Log(ctx context.Context, host *HostSystem, ...
method BrowseLog (line 47) | func (m DiagnosticManager) BrowseLog(ctx context.Context, host *HostSy...
method GenerateLogBundles (line 68) | func (m DiagnosticManager) GenerateLogBundles(ctx context.Context, inc...
method QueryDescriptions (line 88) | func (m DiagnosticManager) QueryDescriptions(ctx context.Context, host...
function NewDiagnosticManager (line 31) | func NewDiagnosticManager(c *vim25.Client) *DiagnosticManager {
FILE: vendor/github.com/vmware/govmomi/object/distributed_virtual_portgroup.go
type DistributedVirtualPortgroup (line 28) | type DistributedVirtualPortgroup struct
method EthernetCardBackingInfo (line 39) | func (p DistributedVirtualPortgroup) EthernetCardBackingInfo(ctx conte...
method Reconfigure (line 61) | func (p DistributedVirtualPortgroup) Reconfigure(ctx context.Context, ...
function NewDistributedVirtualPortgroup (line 32) | func NewDistributedVirtualPortgroup(c *vim25.Client, ref types.ManagedOb...
FILE: vendor/github.com/vmware/govmomi/object/distributed_virtual_switch.go
type DistributedVirtualSwitch (line 27) | type DistributedVirtualSwitch struct
method EthernetCardBackingInfo (line 37) | func (s DistributedVirtualSwitch) EthernetCardBackingInfo(ctx context....
method Reconfigure (line 41) | func (s DistributedVirtualSwitch) Reconfigure(ctx context.Context, spe...
method AddPortgroup (line 55) | func (s DistributedVirtualSwitch) AddPortgroup(ctx context.Context, sp...
function NewDistributedVirtualSwitch (line 31) | func NewDistributedVirtualSwitch(c *vim25.Client, ref types.ManagedObjec...
FILE: vendor/github.com/vmware/govmomi/object/extension_manager.go
type ExtensionManager (line 28) | type ExtensionManager struct
method List (line 49) | func (m ExtensionManager) List(ctx context.Context) ([]types.Extension...
method Find (line 60) | func (m ExtensionManager) Find(ctx context.Context, key string) (*type...
method Register (line 74) | func (m ExtensionManager) Register(ctx context.Context, extension type...
method SetCertificate (line 84) | func (m ExtensionManager) SetCertificate(ctx context.Context, key stri...
method Unregister (line 95) | func (m ExtensionManager) Unregister(ctx context.Context, key string) ...
method Update (line 105) | func (m ExtensionManager) Update(ctx context.Context, extension types....
function GetExtensionManager (line 34) | func GetExtensionManager(c *vim25.Client) (*ExtensionManager, error) {
function NewExtensionManager (line 41) | func NewExtensionManager(c *vim25.Client) *ExtensionManager {
FILE: vendor/github.com/vmware/govmomi/object/file_manager.go
type FileManager (line 27) | type FileManager struct
method CopyDatastoreFile (line 39) | func (f FileManager) CopyDatastoreFile(ctx context.Context, sourceName...
method DeleteDatastoreFile (line 66) | func (f FileManager) DeleteDatastoreFile(ctx context.Context, name str...
method MakeDirectory (line 86) | func (f FileManager) MakeDirectory(ctx context.Context, name string, d...
method MoveDatastoreFile (line 102) | func (f FileManager) MoveDatastoreFile(ctx context.Context, sourceName...
function NewFileManager (line 31) | func NewFileManager(c *vim25.Client) *FileManager {
FILE: vendor/github.com/vmware/govmomi/object/folder.go
type Folder (line 28) | type Folder struct
method Children (line 44) | func (f Folder) Children(ctx context.Context) ([]Reference, error) {
method CreateDatacenter (line 62) | func (f Folder) CreateDatacenter(ctx context.Context, datacenter strin...
method CreateCluster (line 81) | func (f Folder) CreateCluster(ctx context.Context, cluster string, spe...
method CreateFolder (line 101) | func (f Folder) CreateFolder(ctx context.Context, name string) (*Folde...
method CreateStoragePod (line 115) | func (f Folder) CreateStoragePod(ctx context.Context, name string) (*S...
method AddStandaloneHost (line 129) | func (f Folder) AddStandaloneHost(ctx context.Context, spec types.Host...
method CreateVM (line 152) | func (f Folder) CreateVM(ctx context.Context, config types.VirtualMach...
method RegisterVM (line 172) | func (f Folder) RegisterVM(ctx context.Context, path string, name stri...
method CreateDVS (line 201) | func (f Folder) CreateDVS(ctx context.Context, spec types.DVSCreateSpe...
method MoveInto (line 215) | func (f Folder) MoveInto(ctx context.Context, list []types.ManagedObje...
function NewFolder (line 32) | func NewFolder(c *vim25.Client, ref types.ManagedObjectReference) *Folder {
function NewRootFolder (line 38) | func NewRootFolder(c *vim25.Client) *Folder {
FILE: vendor/github.com/vmware/govmomi/object/history_collector.go
type HistoryCollector (line 27) | type HistoryCollector struct
method Destroy (line 37) | func (h HistoryCollector) Destroy(ctx context.Context) error {
method Reset (line 46) | func (h HistoryCollector) Reset(ctx context.Context) error {
method Rewind (line 55) | func (h HistoryCollector) Rewind(ctx context.Context) error {
method SetPageSize (line 64) | func (h HistoryCollector) SetPageSize(ctx context.Context, maxCount in...
function NewHistoryCollector (line 31) | func NewHistoryCollector(c *vim25.Client, ref types.ManagedObjectReferen...
FILE: vendor/github.com/vmware/govmomi/object/host_account_manager.go
type HostAccountManager (line 27) | type HostAccountManager struct
method Create (line 37) | func (m HostAccountManager) Create(ctx context.Context, user *types.Ho...
method Update (line 47) | func (m HostAccountManager) Update(ctx context.Context, user *types.Ho...
method Remove (line 57) | func (m HostAccountManager) Remove(ctx context.Context, userName strin...
function NewHostAccountManager (line 31) | func NewHostAccountManager(c *vim25.Client, ref types.ManagedObjectRefer...
FILE: vendor/github.com/vmware/govmomi/object/host_certificate_info.go
type HostCertificateInfo (line 36) | type HostCertificateInfo struct
method FromCertificate (line 50) | func (info *HostCertificateInfo) FromCertificate(cert *x509.Certificat...
method FromURL (line 81) | func (info *HostCertificateInfo) FromURL(u *url.URL, config *tls.Confi...
method fromName (line 115) | func (info *HostCertificateInfo) fromName(name *pkix.Name) string {
method toName (line 154) | func (info *HostCertificateInfo) toName(s string) *pkix.Name {
method SubjectName (line 187) | func (info *HostCertificateInfo) SubjectName() *pkix.Name {
method IssuerName (line 196) | func (info *HostCertificateInfo) IssuerName() *pkix.Name {
method Write (line 205) | func (info *HostCertificateInfo) Write(w io.Writer) error {
FILE: vendor/github.com/vmware/govmomi/object/host_certificate_info_test.go
function TestHostCertificateManagerCertificateInfo (line 21) | func TestHostCertificateManagerCertificateInfo(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/object/host_certificate_manager.go
type HostCertificateManager (line 30) | type HostCertificateManager struct
method CertificateInfo (line 45) | func (m HostCertificateManager) CertificateInfo(ctx context.Context) (...
method GenerateCertificateSigningRequest (line 67) | func (m HostCertificateManager) GenerateCertificateSigningRequest(ctx ...
method GenerateCertificateSigningRequestByDn (line 83) | func (m HostCertificateManager) GenerateCertificateSigningRequestByDn(...
method InstallServerCertificate (line 98) | func (m HostCertificateManager) InstallServerCertificate(ctx context.C...
method ListCACertificateRevocationLists (line 124) | func (m HostCertificateManager) ListCACertificateRevocationLists(ctx c...
method ListCACertificates (line 138) | func (m HostCertificateManager) ListCACertificates(ctx context.Context...
method ReplaceCACertificatesAndCRLs (line 153) | func (m HostCertificateManager) ReplaceCACertificatesAndCRLs(ctx conte...
function NewHostCertificateManager (line 36) | func NewHostCertificateManager(c *vim25.Client, ref types.ManagedObjectR...
FILE: vendor/github.com/vmware/govmomi/object/host_config_manager.go
type HostConfigManager (line 27) | type HostConfigManager struct
method DatastoreSystem (line 37) | func (m HostConfigManager) DatastoreSystem(ctx context.Context) (*Host...
method NetworkSystem (line 48) | func (m HostConfigManager) NetworkSystem(ctx context.Context) (*HostNe...
method FirewallSystem (line 59) | func (m HostConfigManager) FirewallSystem(ctx context.Context) (*HostF...
method StorageSystem (line 70) | func (m HostConfigManager) StorageSystem(ctx context.Context) (*HostSt...
method VirtualNicManager (line 81) | func (m HostConfigManager) VirtualNicManager(ctx context.Context) (*Ho...
method VsanSystem (line 92) | func (m HostConfigManager) VsanSystem(ctx context.Context) (*HostVsanS...
method VsanInternalSystem (line 108) | func (m HostConfigManager) VsanInternalSystem(ctx context.Context) (*H...
method AccountManager (line 124) | func (m HostConfigManager) AccountManager(ctx context.Context) (*HostA...
method OptionManager (line 149) | func (m HostConfigManager) OptionManager(ctx context.Context) (*Option...
method ServiceSystem (line 160) | func (m HostConfigManager) ServiceSystem(ctx context.Context) (*HostSe...
method CertificateManager (line 171) | func (m HostConfigManager) CertificateManager(ctx context.Context) (*H...
method DateTimeSystem (line 187) | func (m HostConfigManager) DateTimeSystem(ctx context.Context) (*HostD...
function NewHostConfigManager (line 31) | func NewHostConfigManager(c *vim25.Client, ref types.ManagedObjectRefere...
FILE: vendor/github.com/vmware/govmomi/object/host_datastore_browser.go
type HostDatastoreBrowser (line 27) | type HostDatastoreBrowser struct
method SearchDatastore (line 37) | func (b HostDatastoreBrowser) SearchDatastore(ctx context.Context, dat...
method SearchDatastoreSubFolders (line 52) | func (b HostDatastoreBrowser) SearchDatastoreSubFolders(ctx context.Co...
function NewHostDatastoreBrowser (line 31) | func NewHostDatastoreBrowser(c *vim25.Client, ref types.ManagedObjectRef...
FILE: vendor/github.com/vmware/govmomi/object/host_datastore_system.go
type HostDatastoreSystem (line 27) | type HostDatastoreSystem struct
method CreateLocalDatastore (line 37) | func (s HostDatastoreSystem) CreateLocalDatastore(ctx context.Context,...
method CreateNasDatastore (line 52) | func (s HostDatastoreSystem) CreateNasDatastore(ctx context.Context, s...
method CreateVmfsDatastore (line 66) | func (s HostDatastoreSystem) CreateVmfsDatastore(ctx context.Context, ...
method Remove (line 80) | func (s HostDatastoreSystem) Remove(ctx context.Context, ds *Datastore...
method QueryAvailableDisksForVmfs (line 94) | func (s HostDatastoreSystem) QueryAvailableDisksForVmfs(ctx context.Co...
method QueryVmfsDatastoreCreateOptions (line 107) | func (s HostDatastoreSystem) QueryVmfsDatastoreCreateOptions(ctx conte...
function NewHostDatastoreSystem (line 31) | func NewHostDatastoreSystem(c *vim25.Client, ref types.ManagedObjectRefe...
FILE: vendor/github.com/vmware/govmomi/object/host_date_time_system.go
type HostDateTimeSystem (line 28) | type HostDateTimeSystem struct
method UpdateConfig (line 38) | func (s HostDateTimeSystem) UpdateConfig(ctx context.Context, config t...
method Update (line 48) | func (s HostDateTimeSystem) Update(ctx context.Context, date time.Time...
method Query (line 58) | func (s HostDateTimeSystem) Query(ctx context.Context) (*time.Time, er...
function NewHostDateTimeSystem (line 32) | func NewHostDateTimeSystem(c *vim25.Client, ref types.ManagedObjectRefer...
FILE: vendor/github.com/vmware/govmomi/object/host_firewall_system.go
type HostFirewallSystem (line 31) | type HostFirewallSystem struct
method DisableRuleset (line 41) | func (s HostFirewallSystem) DisableRuleset(ctx context.Context, id str...
method EnableRuleset (line 51) | func (s HostFirewallSystem) EnableRuleset(ctx context.Context, id stri...
method Refresh (line 61) | func (s HostFirewallSystem) Refresh(ctx context.Context) error {
method Info (line 70) | func (s HostFirewallSystem) Info(ctx context.Context) (*types.HostFire...
function NewHostFirewallSystem (line 35) | func NewHostFirewallSystem(c *vim25.Client, ref types.ManagedObjectRefer...
type HostFirewallRulesetList (line 82) | type HostFirewallRulesetList
method ByRule (line 85) | func (l HostFirewallRulesetList) ByRule(rule types.HostFirewallRule) H...
method EnabledByRule (line 110) | func (l HostFirewallRulesetList) EnabledByRule(rule types.HostFirewall...
method Enabled (line 147) | func (l HostFirewallRulesetList) Enabled() HostFirewallRulesetList {
method Disabled (line 160) | func (l HostFirewallRulesetList) Disabled() HostFirewallRulesetList {
method Keys (line 173) | func (l HostFirewallRulesetList) Keys() []string {
FILE: vendor/github.com/vmware/govmomi/object/host_network_system.go
type HostNetworkSystem (line 27) | type HostNetworkSystem struct
method AddPortGroup (line 38) | func (o HostNetworkSystem) AddPortGroup(ctx context.Context, portgrp t...
method AddServiceConsoleVirtualNic (line 53) | func (o HostNetworkSystem) AddServiceConsoleVirtualNic(ctx context.Con...
method AddVirtualNic (line 69) | func (o HostNetworkSystem) AddVirtualNic(ctx context.Context, portgrou...
method AddVirtualSwitch (line 85) | func (o HostNetworkSystem) AddVirtualSwitch(ctx context.Context, vswit...
method QueryNetworkHint (line 101) | func (o HostNetworkSystem) QueryNetworkHint(ctx context.Context, devic...
method RefreshNetworkSystem (line 116) | func (o HostNetworkSystem) RefreshNetworkSystem(ctx context.Context) e...
method RemovePortGroup (line 130) | func (o HostNetworkSystem) RemovePortGroup(ctx context.Context, pgName...
method RemoveServiceConsoleVirtualNic (line 145) | func (o HostNetworkSystem) RemoveServiceConsoleVirtualNic(ctx context....
method RemoveVirtualNic (line 160) | func (o HostNetworkSystem) RemoveVirtualNic(ctx context.Context, devic...
method RemoveVirtualSwitch (line 175) | func (o HostNetworkSystem) RemoveVirtualSwitch(ctx context.Context, vs...
method RestartServiceConsoleVirtualNic (line 190) | func (o HostNetworkSystem) RestartServiceConsoleVirtualNic(ctx context...
method UpdateConsoleIpRouteConfig (line 205) | func (o HostNetworkSystem) UpdateConsoleIpRouteConfig(ctx context.Cont...
method UpdateDnsConfig (line 220) | func (o HostNetworkSystem) UpdateDnsConfig(ctx context.Context, config...
method UpdateIpRouteConfig (line 235) | func (o HostNetworkSystem) UpdateIpRouteConfig(ctx context.Context, co...
method UpdateIpRouteTableConfig (line 250) | func (o HostNetworkSystem) UpdateIpRouteTableConfig(ctx context.Contex...
method UpdateNetworkConfig (line 265) | func (o HostNetworkSystem) UpdateNetworkConfig(ctx context.Context, co...
method UpdatePhysicalNicLinkSpeed (line 281) | func (o HostNetworkSystem) UpdatePhysicalNicLinkSpeed(ctx context.Cont...
method UpdatePortGroup (line 297) | func (o HostNetworkSystem) UpdatePortGroup(ctx context.Context, pgName...
method UpdateServiceConsoleVirtualNic (line 313) | func (o HostNetworkSystem) UpdateServiceConsoleVirtualNic(ctx context....
method UpdateVirtualNic (line 329) | func (o HostNetworkSystem) UpdateVirtualNic(ctx context.Context, devic...
method UpdateVirtualSwitch (line 345) | func (o HostNetworkSystem) UpdateVirtualSwitch(ctx context.Context, vs...
function NewHostNetworkSystem (line 31) | func NewHostNetworkSystem(c *vim25.Client, ref types.ManagedObjectRefere...
FILE: vendor/github.com/vmware/govmomi/object/host_service_system.go
type HostServiceSystem (line 28) | type HostServiceSystem struct
method Service (line 38) | func (s HostServiceSystem) Service(ctx context.Context) ([]types.HostS...
method Start (line 49) | func (s HostServiceSystem) Start(ctx context.Context, id string) error {
method Stop (line 59) | func (s HostServiceSystem) Stop(ctx context.Context, id string) error {
method Restart (line 69) | func (s HostServiceSystem) Restart(ctx context.Context, id string) err...
method UpdatePolicy (line 79) | func (s HostServiceSystem) UpdatePolicy(ctx context.Context, id string...
function NewHostServiceSystem (line 32) | func NewHostServiceSystem(c *vim25.Client, ref types.ManagedObjectRefere...
FILE: vendor/github.com/vmware/govmomi/object/host_storage_system.go
type HostStorageSystem (line 28) | type HostStorageSystem struct
method RetrieveDiskPartitionInfo (line 38) | func (s HostStorageSystem) RetrieveDiskPartitionInfo(ctx context.Conte...
method ComputeDiskPartitionInfo (line 56) | func (s HostStorageSystem) ComputeDiskPartitionInfo(ctx context.Contex...
method UpdateDiskPartitionInfo (line 71) | func (s HostStorageSystem) UpdateDiskPartitionInfo(ctx context.Context...
method RescanAllHba (line 82) | func (s HostStorageSystem) RescanAllHba(ctx context.Context) error {
method MarkAsSsd (line 91) | func (s HostStorageSystem) MarkAsSsd(ctx context.Context, uuid string)...
method MarkAsNonSsd (line 105) | func (s HostStorageSystem) MarkAsNonSsd(ctx context.Context, uuid stri...
method MarkAsLocal (line 119) | func (s HostStorageSystem) MarkAsLocal(ctx context.Context, uuid strin...
method MarkAsNonLocal (line 133) | func (s HostStorageSystem) MarkAsNonLocal(ctx context.Context, uuid st...
function NewHostStorageSystem (line 32) | func NewHostStorageSystem(c *vim25.Client, ref types.ManagedObjectRefere...
FILE: vendor/github.com/vmware/govmomi/object/host_system.go
type HostSystem (line 30) | type HostSystem struct
method ConfigManager (line 40) | func (h HostSystem) ConfigManager() *HostConfigManager {
method ResourcePool (line 44) | func (h HostSystem) ResourcePool(ctx context.Context) (*ResourcePool, ...
method ManagementIPs (line 76) | func (h HostSystem) ManagementIPs(ctx context.Context) ([]net.IP, erro...
method Disconnect (line 97) | func (h HostSystem) Disconnect(ctx context.Context) (*Task, error) {
method Reconnect (line 110) | func (h HostSystem) Reconnect(ctx context.Context, cnxSpec *types.Host...
method EnterMaintenanceMode (line 125) | func (h HostSystem) EnterMaintenanceMode(ctx context.Context, timeout ...
method ExitMaintenanceMode (line 141) | func (h HostSystem) ExitMaintenanceMode(ctx context.Context, timeout i...
function NewHostSystem (line 34) | func NewHostSystem(c *vim25.Client, ref types.ManagedObjectReference) *H...
FILE: vendor/github.com/vmware/govmomi/object/host_virtual_nic_manager.go
type HostVirtualNicManager (line 28) | type HostVirtualNicManager struct
method Info (line 40) | func (m HostVirtualNicManager) Info(ctx context.Context) (*types.HostV...
method DeselectVnic (line 51) | func (m HostVirtualNicManager) DeselectVnic(ctx context.Context, nicTy...
method SelectVnic (line 73) | func (m HostVirtualNicManager) SelectVnic(ctx context.Context, nicType...
function NewHostVirtualNicManager (line 33) | func NewHostVirtualNicManager(c *vim25.Client, ref types.ManagedObjectRe...
FILE: vendor/github.com/vmware/govmomi/object/host_vsan_internal_system.go
type HostVsanInternalSystem (line 28) | type HostVsanInternalSystem struct
method QueryVsanObjectUuidsByFilter (line 41) | func (m HostVsanInternalSystem) QueryVsanObjectUuidsByFilter(ctx conte...
method GetVsanObjExtAttrs (line 82) | func (m HostVsanInternalSystem) GetVsanObjExtAttrs(ctx context.Context...
method DeleteVsanObjects (line 104) | func (m HostVsanInternalSystem) DeleteVsanObjects(ctx context.Context,...
function NewHostVsanInternalSystem (line 32) | func NewHostVsanInternalSystem(c *vim25.Client, ref types.ManagedObjectR...
type VsanObjExtAttrs (line 57) | type VsanObjExtAttrs struct
method DatastorePath (line 65) | func (a *VsanObjExtAttrs) DatastorePath(dir string) string {
FILE: vendor/github.com/vmware/govmomi/object/host_vsan_system.go
type HostVsanSystem (line 28) | type HostVsanSystem struct
method Update (line 38) | func (s HostVsanSystem) Update(ctx context.Context, config types.VsanH...
method updateVnic (line 53) | func (s HostVsanSystem) updateVnic(ctx context.Context, device string,...
function NewHostVsanSystem (line 32) | func NewHostVsanSystem(c *vim25.Client, ref types.ManagedObjectReference...
FILE: vendor/github.com/vmware/govmomi/object/http_nfc_lease.go
type HttpNfcLease (line 31) | type HttpNfcLease struct
method HttpNfcLeaseAbort (line 42) | func (o HttpNfcLease) HttpNfcLeaseAbort(ctx context.Context, fault *ty...
method HttpNfcLeaseComplete (line 57) | func (o HttpNfcLease) HttpNfcLeaseComplete(ctx context.Context) error {
method HttpNfcLeaseGetManifest (line 71) | func (o HttpNfcLease) HttpNfcLeaseGetManifest(ctx context.Context) err...
method HttpNfcLeaseProgress (line 85) | func (o HttpNfcLease) HttpNfcLeaseProgress(ctx context.Context, percen...
method Wait (line 99) | func (o HttpNfcLease) Wait(ctx context.Context) (*types.HttpNfcLeaseIn...
function NewHttpNfcLease (line 35) | func NewHttpNfcLease(c *vim25.Client, ref types.ManagedObjectReference) ...
FILE: vendor/github.com/vmware/govmomi/object/namespace_manager.go
type DatastoreNamespaceManager (line 27) | type DatastoreNamespaceManager struct
method CreateDirectory (line 41) | func (nm DatastoreNamespaceManager) CreateDirectory(ctx context.Contex...
method DeleteDirectory (line 59) | func (nm DatastoreNamespaceManager) DeleteDirectory(ctx context.Contex...
function NewDatastoreNamespaceManager (line 31) | func NewDatastoreNamespaceManager(c *vim25.Client) *DatastoreNamespaceMa...
FILE: vendor/github.com/vmware/govmomi/object/network.go
type Network (line 26) | type Network struct
method EthernetCardBackingInfo (line 37) | func (n Network) EthernetCardBackingInfo(_ context.Context) (types.Bas...
function NewNetwork (line 30) | func NewNetwork(c *vim25.Client, ref types.ManagedObjectReference) *Netw...
FILE: vendor/github.com/vmware/govmomi/object/network_reference.go
type NetworkReference (line 27) | type NetworkReference interface
FILE: vendor/github.com/vmware/govmomi/object/opaque_network.go
type OpaqueNetwork (line 28) | type OpaqueNetwork struct
method EthernetCardBackingInfo (line 39) | func (n OpaqueNetwork) EthernetCardBackingInfo(ctx context.Context) (t...
function NewOpaqueNetwork (line 32) | func NewOpaqueNetwork(c *vim25.Client, ref types.ManagedObjectReference)...
FILE: vendor/github.com/vmware/govmomi/object/option_manager.go
type OptionManager (line 27) | type OptionManager struct
method Query (line 37) | func (m OptionManager) Query(ctx context.Context, name string) ([]type...
method Update (line 51) | func (m OptionManager) Update(ctx context.Context, value []types.BaseO...
function NewOptionManager (line 31) | func NewOptionManager(c *vim25.Client, ref types.ManagedObjectReference)...
FILE: vendor/github.com/vmware/govmomi/object/ovf_manager.go
type OvfManager (line 27) | type OvfManager struct
method CreateDescriptor (line 40) | func (o OvfManager) CreateDescriptor(ctx context.Context, obj Referenc...
method CreateImportSpec (line 56) | func (o OvfManager) CreateImportSpec(ctx context.Context, ovfDescripto...
method ParseDescriptor (line 74) | func (o OvfManager) ParseDescriptor(ctx context.Context, ovfDescriptor...
method ValidateHost (line 90) | func (o OvfManager) ValidateHost(ctx context.Context, ovfDescriptor st...
function NewOvfManager (line 31) | func NewOvfManager(c *vim25.Client) *OvfManager {
FILE: vendor/github.com/vmware/govmomi/object/resource_pool.go
type ResourcePool (line 27) | type ResourcePool struct
method ImportVApp (line 37) | func (p ResourcePool) ImportVApp(ctx context.Context, spec types.BaseI...
method Create (line 61) | func (p ResourcePool) Create(ctx context.Context, name string, spec ty...
method CreateVApp (line 76) | func (p ResourcePool) CreateVApp(ctx context.Context, name string, res...
method UpdateConfig (line 97) | func (p ResourcePool) UpdateConfig(ctx context.Context, name string, c...
method DestroyChildren (line 117) | func (p ResourcePool) DestroyChildren(ctx context.Context) error {
method Destroy (line 126) | func (p ResourcePool) Destroy(ctx context.Context) (*Task, error) {
function NewResourcePool (line 31) | func NewResourcePool(c *vim25.Client, ref types.ManagedObjectReference) ...
FILE: vendor/github.com/vmware/govmomi/object/search_index.go
type SearchIndex (line 27) | type SearchIndex struct
method FindByDatastorePath (line 40) | func (s SearchIndex) FindByDatastorePath(ctx context.Context, dc *Data...
method FindByDnsName (line 59) | func (s SearchIndex) FindByDnsName(ctx context.Context, dc *Datacenter...
method FindByInventoryPath (line 82) | func (s SearchIndex) FindByInventoryPath(ctx context.Context, path str...
method FindByIp (line 100) | func (s SearchIndex) FindByIp(ctx context.Context, dc *Datacenter, ip ...
method FindByUuid (line 123) | func (s SearchIndex) FindByUuid(ctx context.Context, dc *Datacenter, u...
method FindChild (line 147) | func (s SearchIndex) FindChild(ctx context.Context, entity Reference, ...
function NewSearchIndex (line 31) | func NewSearchIndex(c *vim25.Client) *SearchIndex {
FILE: vendor/github.com/vmware/govmomi/object/search_index_test.go
function TestSearch (line 29) | func TestSearch(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/object/storage_pod.go
type StoragePod (line 24) | type StoragePod struct
function NewStoragePod (line 28) | func NewStoragePod(c *vim25.Client, ref types.ManagedObjectReference) *S...
FILE: vendor/github.com/vmware/govmomi/object/storage_resource_manager.go
type StorageResourceManager (line 27) | type StorageResourceManager struct
method ApplyStorageDrsRecommendation (line 39) | func (sr StorageResourceManager) ApplyStorageDrsRecommendation(ctx con...
method ApplyStorageDrsRecommendationToPod (line 53) | func (sr StorageResourceManager) ApplyStorageDrsRecommendationToPod(ct...
method CancelStorageDrsRecommendation (line 71) | func (sr StorageResourceManager) CancelStorageDrsRecommendation(ctx co...
method ConfigureDatastoreIORM (line 82) | func (sr StorageResourceManager) ConfigureDatastoreIORM(ctx context.Co...
method ConfigureStorageDrsForPod (line 100) | func (sr StorageResourceManager) ConfigureStorageDrsForPod(ctx context...
method QueryDatastorePerformanceSummary (line 119) | func (sr StorageResourceManager) QueryDatastorePerformanceSummary(ctx ...
method QueryIORMConfigOption (line 136) | func (sr StorageResourceManager) QueryIORMConfigOption(ctx context.Con...
method RecommendDatastores (line 153) | func (sr StorageResourceManager) RecommendDatastores(ctx context.Conte...
method RefreshStorageDrsRecommendation (line 167) | func (sr StorageResourceManager) RefreshStorageDrsRecommendation(ctx c...
function NewStorageResourceManager (line 31) | func NewStorageResourceManager(c *vim25.Client) *StorageResourceManager {
FILE: vendor/github.com/vmware/govmomi/object/task.go
type Task (line 33) | type Task struct
method Wait (line 45) | func (t *Task) Wait(ctx context.Context) error {
method WaitForResult (line 50) | func (t *Task) WaitForResult(ctx context.Context, s progress.Sinker) (...
function NewTask (line 37) | func NewTask(c *vim25.Client, ref types.ManagedObjectReference) *Task {
FILE: vendor/github.com/vmware/govmomi/object/types.go
type Reference (line 24) | type Reference interface
function NewReference (line 28) | func NewReference(c *vim25.Client, e types.ManagedObjectReference) Refer...
FILE: vendor/github.com/vmware/govmomi/object/virtual_app.go
type VirtualApp (line 27) | type VirtualApp struct
method CreateChildVM (line 37) | func (p VirtualApp) CreateChildVM(ctx context.Context, config types.Vi...
method UpdateConfig (line 56) | func (p VirtualApp) UpdateConfig(ctx context.Context, spec types.VAppC...
method PowerOn (line 66) | func (p VirtualApp) PowerOn(ctx context.Context) (*Task, error) {
method PowerOff (line 79) | func (p VirtualApp) PowerOff(ctx context.Context, force bool) (*Task, ...
method Suspend (line 94) | func (p VirtualApp) Suspend(ctx context.Context) (*Task, error) {
function NewVirtualApp (line 31) | func NewVirtualApp(c *vim25.Client, ref types.ManagedObjectReference) *V...
FILE: vendor/github.com/vmware/govmomi/object/virtual_device_list.go
constant DeviceTypeCdrom (line 33) | DeviceTypeCdrom = "cdrom"
constant DeviceTypeDisk (line 34) | DeviceTypeDisk = "disk"
constant DeviceTypeEthernet (line 35) | DeviceTypeEthernet = "ethernet"
constant DeviceTypeFloppy (line 36) | DeviceTypeFloppy = "floppy"
type VirtualDeviceList (line 40) | type VirtualDeviceList
method Select (line 72) | func (l VirtualDeviceList) Select(f func(device types.BaseVirtualDevic...
method SelectByType (line 85) | func (l VirtualDeviceList) SelectByType(deviceType types.BaseVirtualDe...
method SelectByBackingInfo (line 107) | func (l VirtualDeviceList) SelectByBackingInfo(backing types.BaseVirtu...
method Find (line 152) | func (l VirtualDeviceList) Find(name string) types.BaseVirtualDevice {
method FindByKey (line 162) | func (l VirtualDeviceList) FindByKey(key int32) types.BaseVirtualDevice {
method FindIDEController (line 174) | func (l VirtualDeviceList) FindIDEController(name string) (*types.Virt...
method CreateIDEController (line 195) | func (l VirtualDeviceList) CreateIDEController() (types.BaseVirtualDev...
method FindSCSIController (line 204) | func (l VirtualDeviceList) FindSCSIController(name string) (*types.Vir...
method CreateSCSIController (line 225) | func (l VirtualDeviceList) CreateSCSIController(name string) (types.Ba...
method newSCSIBusNumber (line 256) | func (l VirtualDeviceList) newSCSIBusNumber() int32 {
method FindNVMEController (line 280) | func (l VirtualDeviceList) FindNVMEController(name string) (*types.Vir...
method CreateNVMEController (line 301) | func (l VirtualDeviceList) CreateNVMEController() (types.BaseVirtualDe...
method newNVMEBusNumber (line 313) | func (l VirtualDeviceList) newNVMEBusNumber() int32 {
method FindDiskController (line 335) | func (l VirtualDeviceList) FindDiskController(name string) (types.Base...
method PickController (line 353) | func (l VirtualDeviceList) PickController(kind types.BaseVirtualContro...
method newUnitNumber (line 377) | func (l VirtualDeviceList) newUnitNumber(c types.BaseVirtualController...
method NewKey (line 410) | func (l VirtualDeviceList) NewKey() int32 {
method AssignController (line 424) | func (l VirtualDeviceList) AssignController(device types.BaseVirtualDe...
method CreateDisk (line 435) | func (l VirtualDeviceList) CreateDisk(c types.BaseVirtualController, d...
method ChildDisk (line 460) | func (l VirtualDeviceList) ChildDisk(parent *types.VirtualDisk) *types...
method connectivity (line 481) | func (l VirtualDeviceList) connectivity(device types.BaseVirtualDevice...
method Connect (line 494) | func (l VirtualDeviceList) Connect(device types.BaseVirtualDevice) err...
method Disconnect (line 499) | func (l VirtualDeviceList) Disconnect(device types.BaseVirtualDevice) ...
method FindCdrom (line 504) | func (l VirtualDeviceList) FindCdrom(name string) (*types.VirtualCdrom...
method CreateCdrom (line 525) | func (l VirtualDeviceList) CreateCdrom(c *types.VirtualIDEController) ...
method InsertIso (line 542) | func (l VirtualDeviceList) InsertIso(device *types.VirtualCdrom, iso s...
method EjectIso (line 553) | func (l VirtualDeviceList) EjectIso(device *types.VirtualCdrom) *types...
method setDefaultCdromBacking (line 558) | func (l VirtualDeviceList) setDefaultCdromBacking(device *types.Virtua...
method FindFloppy (line 568) | func (l VirtualDeviceList) FindFloppy(name string) (*types.VirtualFlop...
method CreateFloppy (line 589) | func (l VirtualDeviceList) CreateFloppy() (*types.VirtualFloppy, error) {
method InsertImg (line 611) | func (l VirtualDeviceList) InsertImg(device *types.VirtualFloppy, img ...
method EjectImg (line 622) | func (l VirtualDeviceList) EjectImg(device *types.VirtualFloppy) *type...
method setDefaultFloppyBacking (line 627) | func (l VirtualDeviceList) setDefaultFloppyBacking(device *types.Virtu...
method FindSerialPort (line 637) | func (l VirtualDeviceList) FindSerialPort(name string) (*types.Virtual...
method CreateSerialPort (line 658) | func (l VirtualDeviceList) CreateSerialPort() (*types.VirtualSerialPor...
method ConnectSerialPort (line 676) | func (l VirtualDeviceList) ConnectSerialPort(device *types.VirtualSeri...
method DisconnectSerialPort (line 704) | func (l VirtualDeviceList) DisconnectSerialPort(device *types.VirtualS...
method setDefaultSerialPortBacking (line 709) | func (l VirtualDeviceList) setDefaultSerialPortBacking(device *types.V...
method CreateEthernetCard (line 719) | func (l VirtualDeviceList) CreateEthernetCard(name string, backing typ...
method PrimaryMacAddress (line 745) | func (l VirtualDeviceList) PrimaryMacAddress() string {
method BootOrder (line 777) | func (l VirtualDeviceList) BootOrder(order []string) []types.BaseVirtu...
method SelectBootOrder (line 802) | func (l VirtualDeviceList) SelectBootOrder(order []types.BaseVirtualMa...
method TypeName (line 819) | func (l VirtualDeviceList) TypeName(device types.BaseVirtualDevice) st...
method deviceName (line 829) | func (l VirtualDeviceList) deviceName(device types.BaseVirtualDevice) ...
method Type (line 842) | func (l VirtualDeviceList) Type(device types.BaseVirtualDevice) string {
method Name (line 858) | func (l VirtualDeviceList) Name(device types.BaseVirtualDevice) string {
method ConfigSpec (line 881) | func (l VirtualDeviceList) ConfigSpec(op types.VirtualDeviceConfigSpec...
function SCSIControllerTypes (line 43) | func SCSIControllerTypes() VirtualDeviceList {
function EthernetCardTypes (line 59) | func EthernetCardTypes() VirtualDeviceList {
FILE: vendor/github.com/vmware/govmomi/object/virtual_device_list_test.go
function intPtrValue (line 27) | func intPtrValue(val int32) *int32 {
function TestSelectByType (line 460) | func TestSelectByType(t *testing.T) {
function TestSelectByBackingInfo (line 508) | func TestSelectByBackingInfo(t *testing.T) {
function TestFind (line 567) | func TestFind(t *testing.T) {
function TestFindController (line 582) | func TestFindController(t *testing.T) {
function TestPickController (line 616) | func TestPickController(t *testing.T) {
function TestCreateSCSIController (line 668) | func TestCreateSCSIController(t *testing.T) {
function TestCreateEthernetCard (line 684) | func TestCreateEthernetCard(t *testing.T) {
function TestCdrom (line 698) | func TestCdrom(t *testing.T) {
function TestSerialPort (line 729) | func TestSerialPort(t *testing.T) {
function TestPrimaryMacAddress (line 737) | func TestPrimaryMacAddress(t *testing.T) {
function TestBootOrder (line 745) | func TestBootOrder(t *testing.T) {
function TestName (line 798) | func TestName(t *testing.T) {
function TestChildDisk (line 855) | func TestChildDisk(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/object/virtual_disk_manager.go
type VirtualDiskManager (line 27) | type VirtualDiskManager struct
method CopyVirtualDisk (line 40) | func (m VirtualDiskManager) CopyVirtualDisk(
method CreateVirtualDisk (line 73) | func (m VirtualDiskManager) CreateVirtualDisk(
method MoveVirtualDisk (line 98) | func (m VirtualDiskManager) MoveVirtualDisk(
method DeleteVirtualDisk (line 129) | func (m VirtualDiskManager) DeleteVirtualDisk(ctx context.Context, nam...
method QueryVirtualDiskUuid (line 149) | func (m VirtualDiskManager) QueryVirtualDiskUuid(ctx context.Context, ...
function NewVirtualDiskManager (line 31) | func NewVirtualDiskManager(c *vim25.Client) *VirtualDiskManager {
FILE: vendor/github.com/vmware/govmomi/object/virtual_disk_manager_internal.go
function init (line 27) | func init() {
type arrayOfVirtualDiskInfo (line 33) | type arrayOfVirtualDiskInfo struct
type queryVirtualDiskInfoTaskRequest (line 37) | type queryVirtualDiskInfoTaskRequest struct
type queryVirtualDiskInfoTaskResponse (line 44) | type queryVirtualDiskInfoTaskResponse struct
type queryVirtualDiskInfoTaskBody (line 48) | type queryVirtualDiskInfoTaskBody struct
method Fault (line 54) | func (b *queryVirtualDiskInfoTaskBody) Fault() *soap.Fault { return b....
function queryVirtualDiskInfoTask (line 56) | func queryVirtualDiskInfoTask(ctx context.Context, r soap.RoundTripper, ...
type VirtualDiskInfo (line 68) | type VirtualDiskInfo struct
method QueryVirtualDiskInfo (line 74) | func (m VirtualDiskManager) QueryVirtualDiskInfo(ctx context.Context, na...
FILE: vendor/github.com/vmware/govmomi/object/virtual_machine.go
constant PropRuntimePowerState (line 34) | PropRuntimePowerState = "summary.runtime.powerState"
type VirtualMachine (line 37) | type VirtualMachine struct
method PowerState (line 47) | func (v VirtualMachine) PowerState(ctx context.Context) (types.Virtual...
method PowerOn (line 58) | func (v VirtualMachine) PowerOn(ctx context.Context) (*Task, error) {
method PowerOff (line 71) | func (v VirtualMachine) PowerOff(ctx context.Context) (*Task, error) {
method Reset (line 84) | func (v VirtualMachine) Reset(ctx context.Context) (*Task, error) {
method Suspend (line 97) | func (v VirtualMachine) Suspend(ctx context.Context) (*Task, error) {
method ShutdownGuest (line 110) | func (v VirtualMachine) ShutdownGuest(ctx context.Context) error {
method RebootGuest (line 119) | func (v VirtualMachine) RebootGuest(ctx context.Context) error {
method Destroy (line 128) | func (v VirtualMachine) Destroy(ctx context.Context) (*Task, error) {
method Clone (line 141) | func (v VirtualMachine) Clone(ctx context.Context, folder *Folder, nam...
method Customize (line 157) | func (v VirtualMachine) Customize(ctx context.Context, spec types.Cust...
method Relocate (line 171) | func (v VirtualMachine) Relocate(ctx context.Context, config types.Vir...
method Reconfigure (line 186) | func (v VirtualMachine) Reconfigure(ctx context.Context, config types....
method WaitForIP (line 200) | func (v VirtualMachine) WaitForIP(ctx context.Context) (string, error) {
method WaitForNetIP (line 235) | func (v VirtualMachine) WaitForNetIP(ctx context.Context, v4 bool, dev...
method Device (line 317) | func (v VirtualMachine) Device(ctx context.Context) (VirtualDeviceList...
method HostSystem (line 338) | func (v VirtualMachine) HostSystem(ctx context.Context) (*HostSystem, ...
method ResourcePool (line 354) | func (v VirtualMachine) ResourcePool(ctx context.Context) (*ResourcePo...
method configureDevice (line 370) | func (v VirtualMachine) configureDevice(ctx context.Context, op types....
method AddDevice (line 407) | func (v VirtualMachine) AddDevice(ctx context.Context, device ...types...
method EditDevice (line 412) | func (v VirtualMachine) EditDevice(ctx context.Context, device ...type...
method RemoveDevice (line 417) | func (v VirtualMachine) RemoveDevice(ctx context.Context, keepFiles bo...
method BootOptions (line 426) | func (v VirtualMachine) BootOptions(ctx context.Context) (*types.Virtu...
method SetBootOptions (line 438) | func (v VirtualMachine) SetBootOptions(ctx context.Context, options *t...
method Answer (line 452) | func (v VirtualMachine) Answer(ctx context.Context, id, answer string)...
method CreateSnapshot (line 468) | func (v VirtualMachine) CreateSnapshot(ctx context.Context, name strin...
method RemoveAllSnapshot (line 486) | func (v VirtualMachine) RemoveAllSnapshot(ctx context.Context, consoli...
method FindSnapshot (line 525) | func (v VirtualMachine) FindSnapshot(ctx context.Context, name string)...
method RemoveSnapshot (line 552) | func (v VirtualMachine) RemoveSnapshot(ctx context.Context, name strin...
method RevertToCurrentSnapshot (line 573) | func (v VirtualMachine) RevertToCurrentSnapshot(ctx context.Context, s...
method RevertToSnapshot (line 588) | func (v VirtualMachine) RevertToSnapshot(ctx context.Context, name str...
method IsToolsRunning (line 608) | func (v VirtualMachine) IsToolsRunning(ctx context.Context) (bool, err...
method WaitForPowerState (line 620) | func (v VirtualMachine) WaitForPowerState(ctx context.Context, state t...
method MarkAsTemplate (line 642) | func (v VirtualMachine) MarkAsTemplate(ctx context.Context) error {
method MarkAsVirtualMachine (line 655) | func (v VirtualMachine) MarkAsVirtualMachine(ctx context.Context, pool...
method Migrate (line 674) | func (v VirtualMachine) Migrate(ctx context.Context, pool *ResourcePoo...
method Unregister (line 699) | func (v VirtualMachine) Unregister(ctx context.Context) error {
method QueryConfigTarget (line 709) | func (v VirtualMachine) QueryConfigTarget(ctx context.Context) (*types...
method MountToolsInstaller (line 729) | func (v VirtualMachine) MountToolsInstaller(ctx context.Context) error {
method UnmountToolsInstaller (line 738) | func (v VirtualMachine) UnmountToolsInstaller(ctx context.Context) err...
method UpgradeTools (line 747) | func (v VirtualMachine) UpgradeTools(ctx context.Context, options stri...
function NewVirtualMachine (line 41) | func NewVirtualMachine(c *vim25.Client, ref types.ManagedObjectReference...
type snapshotMap (line 500) | type snapshotMap
method add (line 502) | func (m snapshotMap) add(parent string, tree []types.VirtualMachineSna...
FILE: vendor/github.com/vmware/govmomi/object/virtual_machine_test.go
function TestVirtualMachineSnapshotMap (line 183) | func TestVirtualMachineSnapshotMap(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/object/vmware_distributed_virtual_switch.go
type VmwareDistributedVirtualSwitch (line 19) | type VmwareDistributedVirtualSwitch struct
FILE: vendor/github.com/vmware/govmomi/ovf/cim.go
type CIMVirtualSystemSettingData (line 23) | type CIMVirtualSystemSettingData struct
type CIMResourceAllocationSettingData (line 52) | type CIMResourceAllocationSettingData struct
FILE: vendor/github.com/vmware/govmomi/ovf/env.go
constant ovfEnvHeader (line 26) | ovfEnvHeader = `
constant ovfEnvPropertyHeader (line 39) | ovfEnvPropertyHeader = ``
constant ovfEnvPropertyEntry (line 40) | ovfEnvPropertyEntry = ``
constant ovfEnvPropertyFooter (line 41) | ovfEnvPropertyFooter = ``
constant ovfEnvFooter (line 42) | ovfEnvFooter = ``
type Env (line 45) | type Env struct
method Marshal (line 71) | func (e Env) Marshal() (string, error) {
method MarshalManual (line 82) | func (e Env) MarshalManual() string {
type PlatformSection (line 54) | type PlatformSection struct
type PropertySection (line 61) | type PropertySection struct
type EnvProperty (line 65) | type EnvProperty struct
FILE: vendor/github.com/vmware/govmomi/ovf/env_test.go
function testEnv (line 20) | func testEnv() Env {
function TestMarshalEnv (line 36) | func TestMarshalEnv(t *testing.T) {
function TestMarshalManualEnv (line 49) | func TestMarshalManualEnv(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/ovf/envelope.go
type Envelope (line 19) | type Envelope struct
type VirtualSystem (line 37) | type VirtualSystem struct
type File (line 47) | type File struct
type Content (line 55) | type Content struct
type Section (line 61) | type Section struct
type AnnotationSection (line 66) | type AnnotationSection struct
type ProductSection (line 72) | type ProductSection struct
type Property (line 88) | type Property struct
type PropertyConfigurationValue (line 102) | type PropertyConfigurationValue struct
type NetworkSection (line 107) | type NetworkSection struct
type Network (line 113) | type Network struct
type DiskSection (line 119) | type DiskSection struct
type VirtualDiskDesc (line 125) | type VirtualDiskDesc struct
type OperatingSystemSection (line 135) | type OperatingSystemSection struct
type EulaSection (line 145) | type EulaSection struct
type VirtualHardwareSection (line 151) | type VirtualHardwareSection struct
type VirtualSystemSettingData (line 161) | type VirtualSystemSettingData struct
type ResourceAllocationSettingData (line 165) | type ResourceAllocationSettingData struct
type ResourceAllocationSection (line 173) | type ResourceAllocationSection struct
type DeploymentOptionSection (line 179) | type DeploymentOptionSection struct
type DeploymentOptionConfiguration (line 185) | type DeploymentOptionConfiguration struct
FILE: vendor/github.com/vmware/govmomi/ovf/ovf.go
function Unmarshal (line 24) | func Unmarshal(r io.Reader) (*Envelope, error) {
FILE: vendor/github.com/vmware/govmomi/ovf/ovf_test.go
function testFile (line 27) | func testFile(t *testing.T) *os.File {
function testEnvelope (line 41) | func testEnvelope(t *testing.T) *Envelope {
function TestUnmarshal (line 57) | func TestUnmarshal(t *testing.T) {
function TestDeploymentOptions (line 61) | func TestDeploymentOptions(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/pbm/client.go
type Client (line 30) | type Client struct
method QueryProfile (line 54) | func (c *Client) QueryProfile(ctx context.Context, rtype types.PbmProf...
method RetrieveContent (line 69) | func (c *Client) RetrieveContent(ctx context.Context, ids []types.PbmP...
method CheckRequirements (line 85) | func (c *Client) CheckRequirements(ctx context.Context, hubs []types.P...
method CreateProfile (line 123) | func (c *Client) CreateProfile(ctx context.Context, capabilityProfileC...
method UpdateProfile (line 137) | func (c *Client) UpdateProfile(ctx context.Context, id types.PbmProfil...
method DeleteProfile (line 152) | func (c *Client) DeleteProfile(ctx context.Context, ids []types.PbmPro...
method QueryAssociatedEntity (line 166) | func (c *Client) QueryAssociatedEntity(ctx context.Context, id types.P...
method QueryAssociatedEntities (line 181) | func (c *Client) QueryAssociatedEntities(ctx context.Context, ids []ty...
method ProfileIDByName (line 195) | func (c *Client) ProfileIDByName(ctx context.Context, profileName stri...
function NewClient (line 36) | func NewClient(ctx context.Context, c *vim25.Client) (*Client, error) {
type PlacementCompatibilityResult (line 83) | type PlacementCompatibilityResult
method CompatibleDatastores (line 101) | func (l PlacementCompatibilityResult) CompatibleDatastores() []types.P...
method NonCompatibleDatastores (line 112) | func (l PlacementCompatibilityResult) NonCompatibleDatastores() []type...
FILE: vendor/github.com/vmware/govmomi/pbm/client_test.go
function TestClient (line 35) | func TestClient(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/pbm/methods/methods.go
type PbmAssignDefaultRequirementProfileBody (line 26) | type PbmAssignDefaultRequirementProfileBody struct
method Fault (line 32) | func (b *PbmAssignDefaultRequirementProfileBody) Fault() *soap.Fault {...
function PbmAssignDefaultRequirementProfile (line 34) | func PbmAssignDefaultRequirementProfile(ctx context.Context, r soap.Roun...
type PbmCheckCompatibilityBody (line 46) | type PbmCheckCompatibilityBody struct
method Fault (line 52) | func (b *PbmCheckCompatibilityBody) Fault() *soap.Fault { return b.Fau...
function PbmCheckCompatibility (line 54) | func PbmCheckCompatibility(ctx context.Context, r soap.RoundTripper, req...
type PbmCheckCompatibilityWithSpecBody (line 66) | type PbmCheckCompatibilityWithSpecBody struct
method Fault (line 72) | func (b *PbmCheckCompatibilityWithSpecBody) Fault() *soap.Fault { retu...
function PbmCheckCompatibilityWithSpec (line 74) | func PbmCheckCompatibilityWithSpec(ctx context.Context, r soap.RoundTrip...
type PbmCheckComplianceBody (line 86) | type PbmCheckComplianceBody struct
method Fault (line 92) | func (b *PbmCheckComplianceBody) Fault() *soap.Fault { return b.Fault_ }
function PbmCheckCompliance (line 94) | func PbmCheckCompliance(ctx context.Context, r soap.RoundTripper, req *t...
type PbmCheckRequirementsBody (line 106) | type PbmCheckRequirementsBody struct
method Fault (line 112) | func (b *PbmCheckRequirementsBody) Fault() *soap.Fault { return b.Faul...
function PbmCheckRequirements (line 114) | func PbmCheckRequirements(ctx context.Context, r soap.RoundTripper, req ...
type PbmCheckRollupComplianceBody (line 126) | type PbmCheckRollupComplianceBody struct
method Fault (line 132) | func (b *PbmCheckRollupComplianceBody) Fault() *soap.Fault { return b....
function PbmCheckRollupCompliance (line 134) | func PbmCheckRollupCompliance(ctx context.Context, r soap.RoundTripper, ...
type PbmCreateBody (line 146) | type PbmCreateBody struct
method Fault (line 152) | func (b *PbmCreateBody) Fault() *soap.Fault { return b.Fault_ }
function PbmCreate (line 154) | func PbmCreate(ctx context.Context, r soap.RoundTripper, req *types.PbmC...
type PbmDeleteBody (line 166) | type PbmDeleteBody struct
method Fault (line 172) | func (b *PbmDeleteBody) Fault() *soap.Fault { return b.Fault_ }
function PbmDelete (line 174) | func PbmDelete(ctx context.Context, r soap.RoundTripper, req *types.PbmD...
type PbmFetchCapabilityMetadataBody (line 186) | type PbmFetchCapabilityMetadataBody struct
method Fault (line 192) | func (b *PbmFetchCapabilityMetadataBody) Fault() *soap.Fault { return ...
function PbmFetchCapabilityMetadata (line 194) | func PbmFetchCapabilityMetadata(ctx context.Context, r soap.RoundTripper...
type PbmFetchCapabilitySchemaBody (line 206) | type PbmFetchCapabilitySchemaBody struct
method Fault (line 212) | func (b *PbmFetchCapabilitySchemaBody) Fault() *soap.Fault { return b....
function PbmFetchCapabilitySchema (line 214) | func PbmFetchCapabilitySchema(ctx context.Context, r soap.RoundTripper, ...
type PbmFetchComplianceResultBody (line 226) | type PbmFetchComplianceResultBody struct
method Fault (line 232) | func (b *PbmFetchComplianceResultBody) Fault() *soap.Fault { return b....
function PbmFetchComplianceResult (line 234) | func PbmFetchComplianceResult(ctx context.Context, r soap.RoundTripper, ...
type PbmFetchResourceTypeBody (line 246) | type PbmFetchResourceTypeBody struct
method Fault (line 252) | func (b *PbmFetchResourceTypeBody) Fault() *soap.Fault { return b.Faul...
function PbmFetchResourceType (line 254) | func PbmFetchResourceType(ctx context.Context, r soap.RoundTripper, req ...
type PbmFetchRollupComplianceResultBody (line 266) | type PbmFetchRollupComplianceResultBody struct
method Fault (line 272) | func (b *PbmFetchRollupComplianceResultBody) Fault() *soap.Fault { ret...
function PbmFetchRollupComplianceResult (line 274) | func PbmFetchRollupComplianceResult(ctx context.Context, r soap.RoundTri...
type PbmFetchVendorInfoBody (line 286) | type PbmFetchVendorInfoBody struct
method Fault (line 292) | func (b *PbmFetchVendorInfoBody) Fault() *soap.Fault { return b.Fault_ }
function PbmFetchVendorInfo (line 294) | func PbmFetchVendorInfo(ctx context.Context, r soap.RoundTripper, req *t...
type PbmFindApplicableDefaultProfileBody (line 306) | type PbmFindApplicableDefaultProfileBody struct
method Fault (line 312) | func (b *PbmFindApplicableDefaultProfileBody) Fault() *soap.Fault { re...
function PbmFindApplicableDefaultProfile (line 314) | func PbmFindApplicableDefaultProfile(ctx context.Context, r soap.RoundTr...
type PbmQueryAssociatedEntitiesBody (line 326) | type PbmQueryAssociatedEntitiesBody struct
method Fault (line 332) | func (b *PbmQueryAssociatedEntitiesBody) Fault() *soap.Fault { return ...
function PbmQueryAssociatedEntities (line 334) | func PbmQueryAssociatedEntities(ctx context.Context, r soap.RoundTripper...
type PbmQueryAssociatedEntityBody (line 346) | type PbmQueryAssociatedEntityBody struct
method Fault (line 352) | func (b *PbmQueryAssociatedEntityBody) Fault() *soap.Fault { return b....
function PbmQueryAssociatedEntity (line 354) | func PbmQueryAssociatedEntity(ctx context.Context, r soap.RoundTripper, ...
type PbmQueryAssociatedProfileBody (line 366) | type PbmQueryAssociatedProfileBody struct
method Fault (line 372) | func (b *PbmQueryAssociatedProfileBody) Fault() *soap.Fault { return b...
function PbmQueryAssociatedProfile (line 374) | func PbmQueryAssociatedProfile(ctx context.Context, r soap.RoundTripper,...
type PbmQueryAssociatedProfilesBody (line 386) | type PbmQueryAssociatedProfilesBody struct
method Fault (line 392) | func (b *PbmQueryAssociatedProfilesBody) Fault() *soap.Fault { return ...
function PbmQueryAssociatedProfiles (line 394) | func PbmQueryAssociatedProfiles(ctx context.Context, r soap.RoundTripper...
type PbmQueryByRollupComplianceStatusBody (line 406) | type PbmQueryByRollupComplianceStatusBody struct
method Fault (line 412) | func (b *PbmQueryByRollupComplianceStatusBody) Fault() *soap.Fault { r...
function PbmQueryByRollupComplianceStatus (line 414) | func PbmQueryByRollupComplianceStatus(ctx context.Context, r soap.RoundT...
type PbmQueryDefaultRequirementProfileBody (line 426) | type PbmQueryDefaultRequirementProfileBody struct
method Fault (line 432) | func (b *PbmQueryDefaultRequirementProfileBody) Fault() *soap.Fault { ...
function PbmQueryDefaultRequirementProfile (line 434) | func PbmQueryDefaultRequirementProfile(ctx context.Context, r soap.Round...
type PbmQueryDefaultRequirementProfilesBody (line 446) | type PbmQueryDefaultRequirementProfilesBody struct
method Fault (line 452) | func (b *PbmQueryDefaultRequirementProfilesBody) Fault() *soap.Fault {...
function PbmQueryDefaultRequirementProfiles (line 454) | func PbmQueryDefaultRequirementProfiles(ctx context.Context, r soap.Roun...
type PbmQueryMatchingHubBody (line 466) | type PbmQueryMatchingHubBody struct
method Fault (line 472) | func (b *PbmQueryMatchingHubBody) Fault() *soap.Fault { return b.Fault_ }
function PbmQueryMatchingHub (line 474) | func PbmQueryMatchingHub(ctx context.Context, r soap.RoundTripper, req *...
type PbmQueryMatchingHubWithSpecBody (line 486) | type PbmQueryMatchingHubWithSpecBody struct
method Fault (line 492) | func (b *PbmQueryMatchingHubWithSpecBody) Fault() *soap.Fault { return...
function PbmQueryMatchingHubWithSpec (line 494) | func PbmQueryMatchingHubWithSpec(ctx context.Context, r soap.RoundTrippe...
type PbmQueryProfileBody (line 506) | type PbmQueryProfileBody struct
method Fault (line 512) | func (b *PbmQueryProfileBody) Fault() *soap.Fault { return b.Fault_ }
function PbmQueryProfile (line 514) | func PbmQueryProfile(ctx context.Context, r soap.RoundTripper, req *type...
type PbmQueryReplicationGroupsBody (line 526) | type PbmQueryReplicationGroupsBody struct
method Fault (line 532) | func (b *PbmQueryReplicationGroupsBody) Fault() *soap.Fault { return b...
function PbmQueryReplicationGroups (line 534) | func PbmQueryReplicationGroups(ctx context.Context, r soap.RoundTripper,...
type PbmQuerySpaceStatsForStorageContainerBody (line 546) | type PbmQuerySpaceStatsForStorageContainerBody struct
method Fault (line 552) | func (b *PbmQuerySpaceStatsForStorageContainerBody) Fault() *soap.Faul...
function PbmQuerySpaceStatsForStorageContainer (line 554) | func PbmQuerySpaceStatsForStorageContainer(ctx context.Context, r soap.R...
type PbmResetDefaultRequirementProfileBody (line 566) | type PbmResetDefaultRequirementProfileBody struct
method Fault (line 572) | func (b *PbmResetDefaultRequirementProfileBody) Fault() *soap.Fault { ...
function PbmResetDefaultRequirementProfile (line 574) | func PbmResetDefaultRequirementProfile(ctx context.Context, r soap.Round...
type PbmResetVSanDefaultProfileBody (line 586) | type PbmResetVSanDefaultProfileBody struct
method Fault (line 592) | func (b *PbmResetVSanDefaultProfileBody) Fault() *soap.Fault { return ...
function PbmResetVSanDefaultProfile (line 594) | func PbmResetVSanDefaultProfile(ctx context.Context, r soap.RoundTripper...
type PbmRetrieveContentBody (line 606) | type PbmRetrieveContentBody struct
method Fault (line 612) | func (b *PbmRetrieveContentBody) Fault() *soap.Fault { return b.Fault_ }
function PbmRetrieveContent (line 614) | func PbmRetrieveContent(ctx context.Context, r soap.RoundTripper, req *t...
type PbmRetrieveServiceContentBody (line 626) | type PbmRetrieveServiceContentBody struct
method Fault (line 632) | func (b *PbmRetrieveServiceContentBody) Fault() *soap.Fault { return b...
function PbmRetrieveServiceContent (line 634) | func PbmRetrieveServiceContent(ctx context.Context, r soap.RoundTripper,...
type PbmUpdateBody (line 646) | type PbmUpdateBody struct
method Fault (line 652) | func (b *PbmUpdateBody) Fault() *soap.Fault { return b.Fault_ }
function PbmUpdate (line 654) | func PbmUpdate(ctx context.Context, r soap.RoundTripper, req *types.PbmU...
FILE: vendor/github.com/vmware/govmomi/pbm/pbm_util.go
type CapabilityProfileCreateSpec (line 28) | type CapabilityProfileCreateSpec struct
type Capability (line 36) | type Capability struct
type Property (line 43) | type Property struct
function CreateCapabilityProfileSpec (line 50) | func CreateCapabilityProfileSpec(pbmCreateSpec CapabilityProfileCreateSp...
function createCapabilityInstances (line 74) | func createCapabilityInstances(rules []Capability) ([]types.PbmCapabilit...
function verifyPropertyValueIsInt (line 131) | func verifyPropertyValueIsInt(propertyValue string, dataType string) (in...
function verifyPropertyValueIsBoolean (line 140) | func verifyPropertyValueIsBoolean(propertyValue string, dataType string)...
FILE: vendor/github.com/vmware/govmomi/pbm/types/enum.go
type PbmBuiltinGenericType (line 25) | type PbmBuiltinGenericType
constant PbmBuiltinGenericTypeVMW_RANGE (line 28) | PbmBuiltinGenericTypeVMW_RANGE = PbmBuiltinGenericType("VMW_RANGE")
constant PbmBuiltinGenericTypeVMW_SET (line 29) | PbmBuiltinGenericTypeVMW_SET = PbmBuiltinGenericType("VMW_SET")
function init (line 32) | func init() {
type PbmBuiltinType (line 36) | type PbmBuiltinType
constant PbmBuiltinTypeXSD_LONG (line 39) | PbmBuiltinTypeXSD_LONG = PbmBuiltinType("XSD_LONG")
constant PbmBuiltinTypeXSD_SHORT (line 40) | PbmBuiltinTypeXSD_SHORT = PbmBuiltinType("XSD_SHORT")
constant PbmBuiltinTypeXSD_INTEGER (line 41) | PbmBuiltinTypeXSD_INTEGER = PbmBuiltinType("XSD_INTEGER")
constant PbmBuiltinTypeXSD_INT (line 42) | PbmBuiltinTypeXSD_INT = PbmBuiltinType("XSD_INT")
constant PbmBuiltinTypeXSD_STRING (line 43) | PbmBuiltinTypeXSD_STRING = PbmBuiltinType("XSD_STRING")
constant PbmBuiltinTypeXSD_BOOLEAN (line 44) | PbmBuiltinTypeXSD_BOOLEAN = PbmBuiltinType("XSD_BOOLEAN")
constant PbmBuiltinTypeXSD_DOUBLE (line 45) | PbmBuiltinTypeXSD_DOUBLE = PbmBuiltinType("XSD_DOUBLE")
constant PbmBuiltinTypeXSD_DATETIME (line 46) | PbmBuiltinTypeXSD_DATETIME = PbmBuiltinType("XSD_DATETIME")
constant PbmBuiltinTypeVMW_TIMESPAN (line 47) | PbmBuiltinTypeVMW_TIMESPAN = PbmBuiltinType("VMW_TIMESPAN")
constant PbmBuiltinTypeVMW_POLICY (line 48) | PbmBuiltinTypeVMW_POLICY = PbmBuiltinType("VMW_POLICY")
function init (line 51) | func init() {
type PbmCapabilityOperator (line 55) | type PbmCapabilityOperator
constant PbmCapabilityOperatorNOT (line 58) | PbmCapabilityOperatorNOT = PbmCapabilityOperator("NOT")
function init (line 61) | func init() {
type PbmCapabilityTimeUnitType (line 65) | type PbmCapabilityTimeUnitType
constant PbmCapabilityTimeUnitTypeSECONDS (line 68) | PbmCapabilityTimeUnitTypeSECONDS = PbmCapabilityTimeUnitType("SECONDS")
constant PbmCapabilityTimeUnitTypeMINUTES (line 69) | PbmCapabilityTimeUnitTypeMINUTES = PbmCapabilityTimeUnitType("MINUTES")
constant PbmCapabilityTimeUnitTypeHOURS (line 70) | PbmCapabilityTimeUnitTypeHOURS = PbmCapabilityTimeUnitType("HOURS")
constant PbmCapabilityTimeUnitTypeDAYS (line 71) | PbmCapabilityTimeUnitTypeDAYS = PbmCapabilityTimeUnitType("DAYS")
constant PbmCapabilityTimeUnitTypeWEEKS (line 72) | PbmCapabilityTimeUnitTypeWEEKS = PbmCapabilityTimeUnitType("WEEKS")
constant PbmCapabilityTimeUnitTypeMONTHS (line 73) | PbmCapabilityTimeUnitTypeMONTHS = PbmCapabilityTimeUnitType("MONTHS")
constant PbmCapabilityTimeUnitTypeYEARS (line 74) | PbmCapabilityTimeUnitTypeYEARS = PbmCapabilityTimeUnitType("YEARS")
function init (line 77) | func init() {
type PbmComplianceResultComplianceTaskStatus (line 81) | type PbmComplianceResultComplianceTaskStatus
constant PbmComplianceResultComplianceTaskStatusInProgress (line 84) | PbmComplianceResultComplianceTaskStatusInProgress = PbmComplianceResultC...
constant PbmComplianceResultComplianceTaskStatusSuccess (line 85) | PbmComplianceResultComplianceTaskStatusSuccess = PbmComplianceResultC...
constant PbmComplianceResultComplianceTaskStatusFailed (line 86) | PbmComplianceResultComplianceTaskStatusFailed = PbmComplianceResultC...
function init (line 89) | func init() {
type PbmComplianceStatus (line 93) | type PbmComplianceStatus
constant PbmComplianceStatusCompliant (line 96) | PbmComplianceStatusCompliant = PbmComplianceStatus("compliant")
constant PbmComplianceStatusNonCompliant (line 97) | PbmComplianceStatusNonCompliant = PbmComplianceStatus("nonCompliant")
constant PbmComplianceStatusUnknown (line 98) | PbmComplianceStatusUnknown = PbmComplianceStatus("unknown")
constant PbmComplianceStatusNotApplicable (line 99) | PbmComplianceStatusNotApplicable = PbmComplianceStatus("notApplicable")
constant PbmComplianceStatusOutOfDate (line 100) | PbmComplianceStatusOutOfDate = PbmComplianceStatus("outOfDate")
function init (line 103) | func init() {
type PbmIofilterInfoFilterType (line 107) | type PbmIofilterInfoFilterType
constant PbmIofilterInfoFilterTypeINSPECTION (line 110) | PbmIofilterInfoFilterTypeINSPECTION = PbmIofilterInfoFilterType(...
constant PbmIofilterInfoFilterTypeCOMPRESSION (line 111) | PbmIofilterInfoFilterTypeCOMPRESSION = PbmIofilterInfoFilterType(...
constant PbmIofilterInfoFilterTypeENCRYPTION (line 112) | PbmIofilterInfoFilterTypeENCRYPTION = PbmIofilterInfoFilterType(...
constant PbmIofilterInfoFilterTypeREPLICATION (line 113) | PbmIofilterInfoFilterTypeREPLICATION = PbmIofilterInfoFilterType(...
constant PbmIofilterInfoFilterTypeCACHE (line 114) | PbmIofilterInfoFilterTypeCACHE = PbmIofilterInfoFilterType(...
constant PbmIofilterInfoFilterTypeDATAPROVIDER (line 115) | PbmIofilterInfoFilterTypeDATAPROVIDER = PbmIofilterInfoFilterType(...
constant PbmIofilterInfoFilterTypeDATASTOREIOCONTROL (line 116) | PbmIofilterInfoFilterTypeDATASTOREIOCONTROL = PbmIofilterInfoFilterType(...
function init (line 119) | func init() {
type PbmLineOfServiceInfoLineOfServiceEnum (line 123) | type PbmLineOfServiceInfoLineOfServiceEnum
constant PbmLineOfServiceInfoLineOfServiceEnumINSPECTION (line 126) | PbmLineOfServiceInfoLineOfServiceEnumINSPECTION = PbmLineOfSer...
constant PbmLineOfServiceInfoLineOfServiceEnumCOMPRESSION (line 127) | PbmLineOfServiceInfoLineOfServiceEnumCOMPRESSION = PbmLineOfSer...
constant PbmLineOfServiceInfoLineOfServiceEnumENCRYPTION (line 128) | PbmLineOfServiceInfoLineOfServiceEnumENCRYPTION = PbmLineOfSer...
constant PbmLineOfServiceInfoLineOfServiceEnumREPLICATION (line 129) | PbmLineOfServiceInfoLineOfServiceEnumREPLICATION = PbmLineOfSer...
constant PbmLineOfServiceInfoLineOfServiceEnumCACHING (line 130) | PbmLineOfServiceInfoLineOfServiceEnumCACHING = PbmLineOfSer...
constant PbmLineOfServiceInfoLineOfServiceEnumPERSISTENCE (line 131) | PbmLineOfServiceInfoLineOfServiceEnumPERSISTENCE = PbmLineOfSer...
constant PbmLineOfServiceInfoLineOfServiceEnumDATA_PROVIDER (line 132) | PbmLineOfServiceInfoLineOfServiceEnumDATA_PROVIDER = PbmLineOfSer...
constant PbmLineOfServiceInfoLineOfServiceEnumDATASTORE_IO_CONTROL (line 133) | PbmLineOfServiceInfoLineOfServiceEnumDATASTORE_IO_CONTROL = PbmLineOfSer...
function init (line 136) | func init() {
type PbmObjectType (line 140) | type PbmObjectType
constant PbmObjectTypeVirtualMachine (line 143) | PbmObjectTypeVirtualMachine = PbmObjectType("virtualMachine")
constant PbmObjectTypeVirtualMachineAndDisks (line 144) | PbmObjectTypeVirtualMachineAndDisks = PbmObjectType("virtualMachineAndDi...
constant PbmObjectTypeVirtualDiskId (line 145) | PbmObjectTypeVirtualDiskId = PbmObjectType("virtualDiskId")
constant PbmObjectTypeVirtualDiskUUID (line 146) | PbmObjectTypeVirtualDiskUUID = PbmObjectType("virtualDiskUUID")
constant PbmObjectTypeDatastore (line 147) | PbmObjectTypeDatastore = PbmObjectType("datastore")
constant PbmObjectTypeUnknown (line 148) | PbmObjectTypeUnknown = PbmObjectType("unknown")
function init (line 151) | func init() {
type PbmProfileCategoryEnum (line 155) | type PbmProfileCategoryEnum
constant PbmProfileCategoryEnumREQUIREMENT (line 158) | PbmProfileCategoryEnumREQUIREMENT = PbmProfileCategoryEnum("REQU...
constant PbmProfileCategoryEnumRESOURCE (line 159) | PbmProfileCategoryEnumRESOURCE = PbmProfileCategoryEnum("RESO...
constant PbmProfileCategoryEnumDATA_SERVICE_POLICY (line 160) | PbmProfileCategoryEnumDATA_SERVICE_POLICY = PbmProfileCategoryEnum("DATA...
function init (line 163) | func init() {
type PbmProfileResourceTypeEnum (line 167) | type PbmProfileResourceTypeEnum
constant PbmProfileResourceTypeEnumSTORAGE (line 170) | PbmProfileResourceTypeEnumSTORAGE = PbmProfileResourceTypeEnum("STORAGE")
function init (line 173) | func init() {
type PbmSystemCreatedProfileType (line 177) | type PbmSystemCreatedProfileType
constant PbmSystemCreatedProfileTypeVsanDefaultProfile (line 180) | PbmSystemCreatedProfileTypeVsanDefaultProfile = PbmSystemCreatedProfileT...
constant PbmSystemCreatedProfileTypeVVolDefaultProfile (line 181) | PbmSystemCreatedProfileTypeVVolDefaultProfile = PbmSystemCreatedProfileT...
function init (line 184) | func init() {
type PbmVmOperation (line 188) | type PbmVmOperation
constant PbmVmOperationCREATE (line 191) | PbmVmOperationCREATE = PbmVmOperation("CREATE")
constant PbmVmOperationRECONFIGURE (line 192) | PbmVmOperationRECONFIGURE = PbmVmOperation("RECONFIGURE")
constant PbmVmOperationMIGRATE (line 193) | PbmVmOperationMIGRATE = PbmVmOperation("MIGRATE")
constant PbmVmOperationCLONE (line 194) | PbmVmOperationCLONE = PbmVmOperation("CLONE")
function init (line 197) | func init() {
type PbmVvolType (line 201) | type PbmVvolType
constant PbmVvolTypeConfig (line 204) | PbmVvolTypeConfig = PbmVvolType("Config")
constant PbmVvolTypeData (line 205) | PbmVvolTypeData = PbmVvolType("Data")
constant PbmVvolTypeSwap (line 206) | PbmVvolTypeSwap = PbmVvolType("Swap")
function init (line 209) | func init() {
FILE: vendor/github.com/vmware/govmomi/pbm/types/if.go
method GetPbmCapabilityConstraints (line 25) | func (b *PbmCapabilityConstraints) GetPbmCapabilityConstraints() *PbmCap...
type BasePbmCapabilityConstraints (line 27) | type BasePbmCapabilityConstraints interface
function init (line 31) | func init() {
method GetPbmCapabilityProfile (line 35) | func (b *PbmCapabilityProfile) GetPbmCapabilityProfile() *PbmCapabilityP...
type BasePbmCapabilityProfile (line 37) | type BasePbmCapabilityProfile interface
function init (line 41) | func init() {
method GetPbmCapabilityProfilePropertyMismatchFault (line 45) | func (b *PbmCapabilityProfilePropertyMismatchFault) GetPbmCapabilityProf...
type BasePbmCapabilityProfilePropertyMismatchFault (line 49) | type BasePbmCapabilityProfilePropertyMismatchFault interface
function init (line 53) | func init() {
method GetPbmCapabilityTypeInfo (line 57) | func (b *PbmCapabilityTypeInfo) GetPbmCapabilityTypeInfo() *PbmCapabilit...
type BasePbmCapabilityTypeInfo (line 59) | type BasePbmCapabilityTypeInfo interface
function init (line 63) | func init() {
method GetPbmCompatibilityCheckFault (line 67) | func (b *PbmCompatibilityCheckFault) GetPbmCompatibilityCheckFault() *Pb...
type BasePbmCompatibilityCheckFault (line 71) | type BasePbmCompatibilityCheckFault interface
function init (line 75) | func init() {
method GetPbmFault (line 79) | func (b *PbmFault) GetPbmFault() *PbmFault { return b }
type BasePbmFault (line 81) | type BasePbmFault interface
function init (line 85) | func init() {
method GetPbmLineOfServiceInfo (line 89) | func (b *PbmLineOfServiceInfo) GetPbmLineOfServiceInfo() *PbmLineOfServi...
type BasePbmLineOfServiceInfo (line 91) | type BasePbmLineOfServiceInfo interface
function init (line 95) | func init() {
method GetPbmPlacementMatchingResources (line 99) | func (b *PbmPlacementMatchingResources) GetPbmPlacementMatchingResources...
type BasePbmPlacementMatchingResources (line 103) | type BasePbmPlacementMatchingResources interface
function init (line 107) | func init() {
method GetPbmPlacementRequirement (line 111) | func (b *PbmPlacementRequirement) GetPbmPlacementRequirement() *PbmPlace...
type BasePbmPlacementRequirement (line 113) | type BasePbmPlacementRequirement interface
function init (line 117) | func init() {
method GetPbmProfile (line 121) | func (b *PbmProfile) GetPbmProfile() *PbmProfile { return b }
type BasePbmProfile (line 123) | type BasePbmProfile interface
function init (line 127) | func init() {
method GetPbmPropertyMismatchFault (line 131) | func (b *PbmPropertyMismatchFault) GetPbmPropertyMismatchFault() *PbmPro...
type BasePbmPropertyMismatchFault (line 133) | type BasePbmPropertyMismatchFault interface
function init (line 137) | func init() {
FILE: vendor/github.com/vmware/govmomi/pbm/types/types.go
type ArrayOfPbmCapabilityConstraintInstance (line 26) | type ArrayOfPbmCapabilityConstraintInstance struct
function init (line 30) | func init() {
type ArrayOfPbmCapabilityInstance (line 34) | type ArrayOfPbmCapabilityInstance struct
function init (line 38) | func init() {
type ArrayOfPbmCapabilityMetadata (line 42) | type ArrayOfPbmCapabilityMetadata struct
function init (line 46) | func init() {
type ArrayOfPbmCapabilityMetadataPerCategory (line 50) | type ArrayOfPbmCapabilityMetadataPerCategory struct
function init (line 54) | func init() {
type ArrayOfPbmCapabilityPropertyInstance (line 58) | type ArrayOfPbmCapabilityPropertyInstance struct
function init (line 62) | func init() {
type ArrayOfPbmCapabilityPropertyMetadata (line 66) | type ArrayOfPbmCapabilityPropertyMetadata struct
function init (line 70) | func init() {
type ArrayOfPbmCapabilitySchema (line 74) | type ArrayOfPbmCapabilitySchema struct
function init (line 78) | func init() {
type ArrayOfPbmCapabilitySubProfile (line 82) | type ArrayOfPbmCapabilitySubProfile struct
function init (line 86) | func init() {
type ArrayOfPbmCapabilityVendorNamespaceInfo (line 90) | type ArrayOfPbmCapabilityVendorNamespaceInfo struct
function init (line 94) | func init() {
type ArrayOfPbmCapabilityVendorResourceTypeInfo (line 98) | type ArrayOfPbmCapabilityVendorResourceTypeInfo struct
function init (line 102) | func init() {
type ArrayOfPbmCompliancePolicyStatus (line 106) | type ArrayOfPbmCompliancePolicyStatus struct
function init (line 110) | func init() {
type ArrayOfPbmComplianceResult (line 114) | type ArrayOfPbmComplianceResult struct
function init (line 118) | func init() {
type ArrayOfPbmDatastoreSpaceStatistics (line 122) | type ArrayOfPbmDatastoreSpaceStatistics struct
function init (line 126) | func init() {
type ArrayOfPbmDefaultProfileInfo (line 130) | type ArrayOfPbmDefaultProfileInfo struct
function init (line 134) | func init() {
type ArrayOfPbmPlacementCompatibilityResult (line 138) | type ArrayOfPbmPlacementCompatibilityResult struct
function init (line 142) | func init() {
type ArrayOfPbmPlacementHub (line 146) | type ArrayOfPbmPlacementHub struct
function init (line 150) | func init() {
type ArrayOfPbmPlacementMatchingResources (line 154) | type ArrayOfPbmPlacementMatchingResources struct
function init (line 158) | func init() {
type ArrayOfPbmPlacementRequirement (line 162) | type ArrayOfPbmPlacementRequirement struct
function init (line 166) | func init() {
type ArrayOfPbmPlacementResourceUtilization (line 170) | type ArrayOfPbmPlacementResourceUtilization struct
function init (line 174) | func init() {
type ArrayOfPbmProfile (line 178) | type ArrayOfPbmProfile struct
function init (line 182) | func init() {
type ArrayOfPbmProfileId (line 186) | type ArrayOfPbmProfileId struct
function init (line 190) | func init() {
type ArrayOfPbmProfileOperationOutcome (line 194) | type ArrayOfPbmProfileOperationOutcome struct
function init (line 198) | func init() {
type ArrayOfPbmProfileResourceType (line 202) | type ArrayOfPbmProfileResourceType struct
function init (line 206) | func init() {
type ArrayOfPbmProfileType (line 210) | type ArrayOfPbmProfileType struct
function init (line 214) | func init() {
type ArrayOfPbmQueryProfileResult (line 218) | type ArrayOfPbmQueryProfileResult struct
function init (line 222) | func init() {
type ArrayOfPbmQueryReplicationGroupResult (line 226) | type ArrayOfPbmQueryReplicationGroupResult struct
function init (line 230) | func init() {
type ArrayOfPbmRollupComplianceResult (line 234) | type ArrayOfPbmRollupComplianceResult struct
function init (line 238) | func init() {
type ArrayOfPbmServerObjectRef (line 242) | type ArrayOfPbmServerObjectRef struct
function init (line 246) | func init() {
type PbmAboutInfo (line 250) | type PbmAboutInfo struct
function init (line 258) | func init() {
type PbmAlreadyExists (line 262) | type PbmAlreadyExists struct
function init (line 268) | func init() {
type PbmAssignDefaultRequirementProfile (line 272) | type PbmAssignDefaultRequirementProfile
function init (line 274) | func init() {
type PbmAssignDefaultRequirementProfileRequestType (line 278) | type PbmAssignDefaultRequirementProfileRequestType struct
function init (line 284) | func init() {
type PbmAssignDefaultRequirementProfileResponse (line 288) | type PbmAssignDefaultRequirementProfileResponse struct
type PbmCapabilityConstraintInstance (line 291) | type PbmCapabilityConstraintInstance struct
function init (line 297) | func init() {
type PbmCapabilityConstraints (line 301) | type PbmCapabilityConstraints struct
function init (line 305) | func init() {
type PbmCapabilityDescription (line 309) | type PbmCapabilityDescription struct
function init (line 316) | func init() {
type PbmCapabilityDiscreteSet (line 320) | type PbmCapabilityDiscreteSet struct
function init (line 326) | func init() {
type PbmCapabilityGenericTypeInfo (line 330) | type PbmCapabilityGenericTypeInfo struct
function init (line 336) | func init() {
type PbmCapabilityInstance (line 340) | type PbmCapabilityInstance struct
function init (line 347) | func init() {
type PbmCapabilityMetadata (line 351) | type PbmCapabilityMetadata struct
function init (line 363) | func init() {
type PbmCapabilityMetadataPerCategory (line 367) | type PbmCapabilityMetadataPerCategory struct
function init (line 374) | func init() {
type PbmCapabilityMetadataUniqueId (line 378) | type PbmCapabilityMetadataUniqueId struct
function init (line 385) | func init() {
type PbmCapabilityNamespaceInfo (line 389) | type PbmCapabilityNamespaceInfo struct
function init (line 397) | func init() {
type PbmCapabilityProfile (line 401) | type PbmCapabilityProfile struct
function init (line 413) | func init() {
type PbmCapabilityProfileCreateSpec (line 417) | type PbmCapabilityProfileCreateSpec struct
function init (line 427) | func init() {
type PbmCapabilityProfilePropertyMismatchFault (line 431) | type PbmCapabilityProfilePropertyMismatchFault struct
function init (line 437) | func init() {
type PbmCapabilityProfilePropertyMismatchFaultFault (line 441) | type PbmCapabilityProfilePropertyMismatchFaultFault
function init (line 443) | func init() {
type PbmCapabilityProfileUpdateSpec (line 447) | type PbmCapabilityProfileUpdateSpec struct
function init (line 455) | func init() {
type PbmCapabilityPropertyInstance (line 459) | type PbmCapabilityPropertyInstance struct
function init (line 467) | func init() {
type PbmCapabilityPropertyMetadata (line 471) | type PbmCapabilityPropertyMetadata struct
function init (line 483) | func init() {
type PbmCapabilityRange (line 487) | type PbmCapabilityRange struct
function init (line 494) | func init() {
type PbmCapabilitySchema (line 498) | type PbmCapabilitySchema struct
function init (line 507) | func init() {
type PbmCapabilitySchemaVendorInfo (line 511) | type PbmCapabilitySchemaVendorInfo struct
function init (line 518) | func init() {
type PbmCapabilitySubProfile (line 522) | type PbmCapabilitySubProfile struct
function init (line 530) | func init() {
type PbmCapabilitySubProfileConstraints (line 534) | type PbmCapabilitySubProfileConstraints struct
function init (line 540) | func init() {
type PbmCapabilityTimeSpan (line 544) | type PbmCapabilityTimeSpan struct
function init (line 551) | func init() {
type PbmCapabilityTypeInfo (line 555) | type PbmCapabilityTypeInfo struct
function init (line 561) | func init() {
type PbmCapabilityVendorNamespaceInfo (line 565) | type PbmCapabilityVendorNamespaceInfo struct
function init (line 572) | func init() {
type PbmCapabilityVendorResourceTypeInfo (line 576) | type PbmCapabilityVendorResourceTypeInfo struct
function init (line 583) | func init() {
type PbmCheckCompatibility (line 587) | type PbmCheckCompatibility
function init (line 589) | func init() {
type PbmCheckCompatibilityRequestType (line 593) | type PbmCheckCompatibilityRequestType struct
function init (line 599) | func init() {
type PbmCheckCompatibilityResponse (line 603) | type PbmCheckCompatibilityResponse struct
type PbmCheckCompatibilityWithSpec (line 607) | type PbmCheckCompatibilityWithSpec
function init (line 609) | func init() {
type PbmCheckCompatibilityWithSpecRequestType (line 613) | type PbmCheckCompatibilityWithSpecRequestType struct
function init (line 619) | func init() {
type PbmCheckCompatibilityWithSpecResponse (line 623) | type PbmCheckCompatibilityWithSpecResponse struct
type PbmCheckCompliance (line 627) | type PbmCheckCompliance
function init (line 629) | func init() {
type PbmCheckComplianceRequestType (line 633) | type PbmCheckComplianceRequestType struct
function init (line 639) | func init() {
type PbmCheckComplianceResponse (line 643) | type PbmCheckComplianceResponse struct
type PbmCheckRequirements (line 647) | type PbmCheckRequirements
function init (line 649) | func init() {
type PbmCheckRequirementsRequestType (line 653) | type PbmCheckRequirementsRequestType struct
function init (line 660) | func init() {
type PbmCheckRequirementsResponse (line 664) | type PbmCheckRequirementsResponse struct
type PbmCheckRollupCompliance (line 668) | type PbmCheckRollupCompliance
function init (line 670) | func init() {
type PbmCheckRollupComplianceRequestType (line 674) | type PbmCheckRollupComplianceRequestType struct
function init (line 679) | func init() {
type PbmCheckRollupComplianceResponse (line 683) | type PbmCheckRollupComplianceResponse struct
type PbmCompatibilityCheckFault (line 687) | type PbmCompatibilityCheckFault struct
function init (line 693) | func init() {
type PbmCompatibilityCheckFaultFault (line 697) | type PbmCompatibilityCheckFaultFault
function init (line 699) | func init() {
type PbmComplianceOperationalStatus (line 703) | type PbmComplianceOperationalStatus struct
function init (line 712) | func init() {
type PbmCompliancePolicyStatus (line 716) | type PbmCompliancePolicyStatus struct
function init (line 723) | func init() {
type PbmComplianceResult (line 727) | type PbmComplianceResult struct
function init (line 742) | func init() {
type PbmCreate (line 746) | type PbmCreate
function init (line 748) | func init() {
type PbmCreateRequestType (line 752) | type PbmCreateRequestType struct
function init (line 757) | func init() {
type PbmCreateResponse (line 761) | type PbmCreateResponse struct
type PbmDataServiceToPoliciesMap (line 765) | type PbmDataServiceToPoliciesMap struct
function init (line 773) | func init() {
type PbmDatastoreSpaceStatistics (line 777) | type PbmDatastoreSpaceStatistics struct
function init (line 789) | func init() {
type PbmDefaultCapabilityProfile (line 793) | type PbmDefaultCapabilityProfile struct
function init (line 800) | func init() {
type PbmDefaultProfileAppliesFault (line 804) | type PbmDefaultProfileAppliesFault struct
function init (line 808) | func init() {
type PbmDefaultProfileAppliesFaultFault (line 812) | type PbmDefaultProfileAppliesFaultFault
function init (line 814) | func init() {
type PbmDefaultProfileInfo (line 818) | type PbmDefaultProfileInfo struct
function init (line 825) | func init() {
type PbmDelete (line 829) | type PbmDelete
function init (line 831) | func init() {
type PbmDeleteRequestType (line 835) | type PbmDeleteRequestType struct
function init (line 840) | func init() {
type PbmDeleteResponse (line 844) | type PbmDeleteResponse struct
type PbmDuplicateName (line 848) | type PbmDuplicateName struct
function init (line 854) | func init() {
type PbmDuplicateNameFault (line 858) | type PbmDuplicateNameFault
function init (line 860) | func init() {
type PbmExtendedElementDescription (line 864) | type PbmExtendedElementDescription struct
function init (line 874) | func init() {
type PbmFault (line 878) | type PbmFault struct
function init (line 882) | func init() {
type PbmFaultFault (line 886) | type PbmFaultFault
function init (line 888) | func init() {
type PbmFaultInvalidLogin (line 892) | type PbmFaultInvalidLogin struct
function init (line 896) | func init() {
type PbmFaultInvalidLoginFault (line 900) | type PbmFaultInvalidLoginFault
function init (line 902) | func init() {
type PbmFaultNotFound (line 906) | type PbmFaultNotFound struct
function init (line 910) | func init() {
type PbmFaultNotFoundFault (line 914) | type PbmFaultNotFoundFault
function init (line 916) | func init() {
type PbmFaultProfileStorageFault (line 920) | type PbmFaultProfileStorageFault struct
function init (line 924) | func init() {
type PbmFaultProfileStorageFaultFault (line 928) | type PbmFaultProfileStorageFaultFault
function init (line 930) | func init() {
type PbmFetchCapabilityMetadata (line 934) | type PbmFetchCapabilityMetadata
function init (line 936) | func init() {
type PbmFetchCapabilityMetadataRequestType (line 940) | type PbmFetchCapabilityMetadataRequestType struct
function init (line 946) | func init() {
type PbmFetchCapabilityMetadataResponse (line 950) | type PbmFetchCapabilityMetadataResponse struct
type PbmFetchCapabilitySchema (line 954) | type PbmFetchCapabilitySchema
function init (line 956) | func init() {
type PbmFetchCapabilitySchemaRequestType (line 960) | type PbmFetchCapabilitySchemaRequestType struct
function init (line 966) | func init() {
type PbmFetchCapabilitySchemaResponse (line 970) | type PbmFetchCapabilitySchemaResponse struct
type PbmFetchComplianceResult (line 974) | type PbmFetchComplianceResult
function init (line 976) | func init() {
type PbmFetchComplianceResultRequestType (line 980) | type PbmFetchComplianceResultRequestType struct
function init (line 986) | func init() {
type PbmFetchComplianceResultResponse (line 990) | type PbmFetchComplianceResultResponse struct
type PbmFetchResourceType (line 994) | type PbmFetchResourceType
function init (line 996) | func init() {
type PbmFetchResourceTypeRequestType (line 1000) | type PbmFetchResourceTypeRequestType struct
function init (line 1004) | func init() {
type PbmFetchResourceTypeResponse (line 1008) | type PbmFetchResourceTypeResponse struct
type PbmFetchRollupComplianceResult (line 1012) | type PbmFetchRollupComplianceResult
function init (line 1014) | func init() {
type PbmFetchRollupComplianceResultRequestType (line 1018) | type PbmFetchRollupComplianceResultRequestType struct
function init (line 1023) | func init() {
type PbmFetchRollupComplianceResultResponse (line 1027) | type PbmFetchRollupComplianceResultResponse struct
type PbmFetchVendorInfo (line 1031) | type PbmFetchVendorInfo
function init (line 1033) | func init() {
type PbmFetchVendorInfoRequestType (line 1037) | type PbmFetchVendorInfoRequestType struct
function init (line 1042) | func init() {
type PbmFetchVendorInfoResponse (line 1046) | type PbmFetchVendorInfoResponse struct
type PbmFindApplicableDefaultProfile (line 1050) | type PbmFindApplicableDefaultProfile
function init (line 1052) | func init() {
type PbmFindApplicableDefaultProfileRequestType (line 1056) | type PbmFindApplicableDefaultProfileRequestType struct
function init (line 1061) | func init() {
type PbmFindApplicableDefaultProfileResponse (line 1065) | type PbmFindApplicableDefaultProfileResponse struct
type PbmIncompatibleVendorSpecificRuleSet (line 1069) | type PbmIncompatibleVendorSpecificRuleSet struct
function init (line 1073) | func init() {
type PbmIncompatibleVendorSpecificRuleSetFault (line 1077) | type PbmIncompatibleVendorSpecificRuleSetFault
function init (line 1079) | func init() {
type PbmLegacyHubsNotSupported (line 1083) | type PbmLegacyHubsNotSupported struct
function init (line 1089) | func init() {
type PbmLegacyHubsNotSupportedFault (line 1093) | type PbmLegacyHubsNotSupportedFault
function init (line 1095) | func init() {
type PbmLineOfServiceInfo (line 1099) | type PbmLineOfServiceInfo struct
function init (line 1107) | func init() {
type PbmNonExistentHubs (line 1111) | type PbmNonExistentHubs struct
function init (line 1117) | func init() {
type PbmNonExistentHubsFault (line 1121) | type PbmNonExistentHubsFault
function init (line 1123) | func init() {
type PbmPersistenceBasedDataServiceInfo (line 1127) | type PbmPersistenceBasedDataServiceInfo struct
function init (line 1133) | func init() {
type PbmPlacementCapabilityConstraintsRequirement (line 1137) | type PbmPlacementCapabilityConstraintsRequirement struct
function init (line 1143) | func init() {
type PbmPlacementCapabilityProfileRequirement (line 1147) | type PbmPlacementCapabilityProfileRequirement struct
function init (line 1153) | func init() {
type PbmPlacementCompatibilityResult (line 1157) | type PbmPlacementCompatibilityResult struct
function init (line 1168) | func init() {
type PbmPlacementHub (line 1172) | type PbmPlacementHub struct
function init (line 1179) | func init() {
type PbmPlacementMatchingReplicationResources (line 1183) | type PbmPlacementMatchingReplicationResources struct
function init (line 1189) | func init() {
type PbmPlacementMatchingResources (line 1193) | type PbmPlacementMatchingResources struct
function init (line 1197) | func init() {
type PbmPlacementRequirement (line 1201) | type PbmPlacementRequirement struct
function init (line 1205) | func init() {
type PbmPlacementResourceUtilization (line 1209) | type PbmPlacementResourceUtilization struct
function init (line 1219) | func init() {
type PbmProfile (line 1223) | type PbmProfile struct
function init (line 1235) | func init() {
type PbmProfileId (line 1239) | type PbmProfileId struct
function init (line 1245) | func init() {
type PbmProfileOperationOutcome (line 1249) | type PbmProfileOperationOutcome struct
function init (line 1256) | func init() {
type PbmProfileResourceType (line 1260) | type PbmProfileResourceType struct
function init (line 1266) | func init() {
type PbmProfileType (line 1270) | type PbmProfileType struct
function init (line 1276) | func init() {
type PbmPropertyMismatchFault (line 1280) | type PbmPropertyMismatchFault struct
function init (line 1287) | func init() {
type PbmPropertyMismatchFaultFault (line 1291) | type PbmPropertyMismatchFaultFault
function init (line 1293) | func init() {
type PbmQueryAssociatedEntities (line 1297) | type PbmQueryAssociatedEntities
function init (line 1299) | func init() {
type PbmQueryAssociatedEntitiesRequestType (line 1303) | type PbmQueryAssociatedEntitiesRequestType struct
function init (line 1308) | func init() {
type PbmQueryAssociatedEntitiesResponse (line 1312) | type PbmQueryAssociatedEntitiesResponse struct
type PbmQueryAssociatedEntity (line 1316) | type PbmQueryAssociatedEntity
function init (line 1318) | func init() {
type PbmQueryAssociatedEntityRequestType (line 1322) | type PbmQueryAssociatedEntityRequestType struct
function init (line 1328) | func init() {
type PbmQueryAssociatedEntityResponse (line 1332) | type PbmQueryAssociatedEntityResponse struct
type PbmQueryAssociatedProfile (line 1336) | type PbmQueryAssociatedProfile
function init (line 1338) | func init() {
type PbmQueryAssociatedProfileRequestType (line 1342) | type PbmQueryAssociatedProfileRequestType struct
function init (line 1347) | func init() {
type PbmQueryAssociatedProfileResponse (line 1351) | type PbmQueryAssociatedProfileResponse struct
type PbmQueryAssociatedProfiles (line 1355) | type PbmQueryAssociatedProfiles
function init (line 1357) | func init() {
type PbmQueryAssociatedProfilesRequestType (line 1361) | type PbmQueryAssociatedProfilesRequestType struct
function init (line 1366) | func init() {
type PbmQueryAssociatedProfilesResponse (line 1370) | type PbmQueryAssociatedProfilesResponse struct
type PbmQueryByRollupComplianceStatus (line 1374) | type PbmQueryByRollupComplianceStatus
function init (line 1376) | func init() {
type PbmQueryByRollupComplianceStatusRequestType (line 1380) | type PbmQueryByRollupComplianceStatusRequestType struct
function init (line 1385) | func init() {
type PbmQueryByRollupComplianceStatusResponse (line 1389) | type PbmQueryByRollupComplianceStatusResponse struct
type PbmQueryDefaultRequirementProfile (line 1393) | type PbmQueryDefaultRequirementProfile
function init (line 1395) | func init() {
type PbmQueryDefaultRequirementProfileRequestType (line 1399) | type PbmQueryDefaultRequirementProfileRequestType struct
function init (line 1404) | func init() {
type PbmQueryDefaultRequirementProfileResponse (line 1408) | type PbmQueryDefaultRequirementProfileResponse struct
type PbmQueryDefaultRequirementProfiles (line 1412) | type PbmQueryDefaultRequirementProfiles
function init (line 1414) | func init() {
type PbmQueryDefaultRequirementProfilesRequestType (line 1418) | type PbmQueryDefaultRequirementProfilesRequestType struct
function init (line 1423) | func init() {
type PbmQueryDefaultRequirementProfilesResponse (line 1427) | type PbmQueryDefaultRequirementProfilesResponse struct
type PbmQueryMatchingHub (line 1431) | type PbmQueryMatchingHub
function init (line 1433) | func init() {
type PbmQueryMatchingHubRequestType (line 1437) | type PbmQueryMatchingHubRequestType struct
function init (line 1443) | func init() {
type PbmQueryMatchingHubResponse (line 1447) | type PbmQueryMatchingHubResponse struct
type PbmQueryMatchingHubWithSpec (line 1451) | type PbmQueryMatchingHubWithSpec
function init (line 1453) | func init() {
type PbmQueryMatchingHubWithSpecRequestType (line 1457) | type PbmQueryMatchingHubWithSpecRequestType struct
function init (line 1463) | func init() {
type PbmQueryMatchingHubWithSpecResponse (line 1467) | type PbmQueryMatchingHubWithSpecResponse struct
type PbmQueryProfile (line 1471) | type PbmQueryProfile
function init (line 1473) | func init() {
type PbmQueryProfileRequestType (line 1477) | type PbmQueryProfileRequestType struct
function init (line 1483) | func init() {
type PbmQueryProfileResponse (line 1487) | type PbmQueryProfileResponse struct
type PbmQueryProfileResult (line 1491) | type PbmQueryProfileResult struct
function init (line 1499) | func init() {
type PbmQueryReplicationGroupResult (line 1503) | type PbmQueryReplicationGroupResult struct
function init (line 1511) | func init() {
type PbmQueryReplicationGroups (line 1515) | type PbmQueryReplicationGroups
function init (line 1517) | func init() {
type PbmQueryReplicationGroupsRequestType (line 1521) | type PbmQueryReplicationGroupsRequestType struct
function init (line 1526) | func init() {
type PbmQueryReplicationGroupsResponse (line 1530) | type PbmQueryReplicationGroupsResponse struct
type PbmQuerySpaceStatsForStorageContainer (line 1534) | type PbmQuerySpaceStatsForStorageContainer
function init (line 1536) | func init() {
type PbmQuerySpaceStatsForStorageContainerRequestType (line 1540) | type PbmQuerySpaceStatsForStorageContainerRequestType struct
function init (line 1546) | func init() {
type PbmQuerySpaceStatsForStorageContainerResponse (line 1550) | type PbmQuerySpaceStatsForStorageContainerResponse struct
type PbmResetDefaultRequirementProfile (line 1554) | type PbmResetDefaultRequirementProfile
function init (line 1556) | func init() {
type PbmResetDefaultRequirementProfileRequestType (line 1560) | type PbmResetDefaultRequirementProfileRequestType struct
function init (line 1565) | func init() {
type PbmResetDefaultRequirementProfileResponse (line 1569) | type PbmResetDefaultRequirementProfileResponse struct
type PbmResetVSanDefaultProfile (line 1572) | type PbmResetVSanDefaultProfile
function init (line 1574) | func init() {
type PbmResetVSanDefaultProfileRequestType (line 1578) | type PbmResetVSanDefaultProfileRequestType struct
function init (line 1582) | func init() {
type PbmResetVSanDefaultProfileResponse (line 1586) | type PbmResetVSanDefaultProfileResponse struct
type PbmResourceInUse (line 1589) | type PbmResourceInUse struct
function init (line 1596) | func init() {
type PbmResourceInUseFault (line 1600) | type PbmResourceInUseFault
function init (line 1602) | func init() {
type PbmRetrieveContent (line 1606) | type PbmRetrieveContent
function init (line 1608) | func init() {
type PbmRetrieveContentRequestType (line 1612) | type PbmRetrieveContentRequestType struct
function init (line 1617) | func init() {
type PbmRetrieveContentResponse (line 1621) | type PbmRetrieveContentResponse struct
type PbmRetrieveServiceContent (line 1625) | type PbmRetrieveServiceContent
function init (line 1627) | func init() {
type PbmRetrieveServiceContentRequestType (line 1631) | type PbmRetrieveServiceContentRequestType struct
function init (line 1635) | func init() {
type PbmRetrieveServiceContentResponse (line 1639) | type PbmRetrieveServiceContentResponse struct
type PbmRollupComplianceResult (line 1643) | type PbmRollupComplianceResult struct
function init (line 1655) | func init() {
type PbmServerObjectRef (line 1659) | type PbmServerObjectRef struct
function init (line 1667) | func init() {
type PbmServiceInstanceContent (line 1671) | type PbmServiceInstanceContent struct
function init (line 1683) | func init() {
type PbmUpdate (line 1687) | type PbmUpdate
function init (line 1689) | func init() {
type PbmUpdateRequestType (line 1693) | type PbmUpdateRequestType struct
function init (line 1699) | func init() {
type PbmUpdateResponse (line 1703) | type PbmUpdateResponse struct
type PbmVaioDataServiceInfo (line 1706) | type PbmVaioDataServiceInfo struct
function init (line 1710) | func init() {
FILE: vendor/github.com/vmware/govmomi/performance/manager.go
type Manager (line 36) | type Manager struct
method HistoricalInterval (line 96) | func (m *Manager) HistoricalInterval(ctx context.Context) (IntervalLis...
method CounterInfo (line 109) | func (m *Manager) CounterInfo(ctx context.Context) ([]types.PerfCounte...
method CounterInfoByName (line 125) | func (m *Manager) CounterInfoByName(ctx context.Context) (map[string]*...
method CounterInfoByKey (line 151) | func (m *Manager) CounterInfoByKey(ctx context.Context) (map[int32]*ty...
method ProviderSummary (line 176) | func (m *Manager) ProviderSummary(ctx context.Context, entity types.Ma...
method AvailableMetric (line 245) | func (m *Manager) AvailableMetric(ctx context.Context, entity types.Ma...
method Query (line 270) | func (m *Manager) Query(ctx context.Context, spec []types.PerfQuerySpe...
method SampleByName (line 290) | func (m *Manager) SampleByName(ctx context.Context, spec types.PerfQue...
method ToMetricSeries (line 397) | func (m *Manager) ToMetricSeries(ctx context.Context, series []types.B...
function NewManager (line 63) | func NewManager(client *vim25.Client) *Manager {
type IntervalList (line 74) | type IntervalList
method Enabled (line 77) | func (l IntervalList) Enabled() map[int32][]string {
type groupPerfCounterInfo (line 206) | type groupPerfCounterInfo struct
method Len (line 211) | func (d groupPerfCounterInfo) Len() int {
method Less (line 215) | func (d groupPerfCounterInfo) Less(i, j int) bool {
method Swap (line 224) | func (d groupPerfCounterInfo) Swap(i, j int) {
type MetricList (line 229) | type MetricList
method ByKey (line 232) | func (l MetricList) ByKey() map[int32][]*types.PerfMetricId {
type MetricSeries (line 345) | type MetricSeries struct
method Format (line 352) | func (s *MetricSeries) Format(val int64) string {
method ValueCSV (line 362) | func (s *MetricSeries) ValueCSV() string {
type EntityMetric (line 373) | type EntityMetric struct
method SampleInfoCSV (line 381) | func (m *EntityMetric) SampleInfoCSV() string {
FILE: vendor/github.com/vmware/govmomi/property/collector.go
type Collector (line 35) | type Collector struct
method Reference (line 50) | func (p Collector) Reference() types.ManagedObjectReference {
method Create (line 56) | func (p *Collector) Create(ctx context.Context) (*Collector, error) {
method Destroy (line 75) | func (p *Collector) Destroy(ctx context.Context) error {
method CreateFilter (line 89) | func (p *Collector) CreateFilter(ctx context.Context, req types.Create...
method WaitForUpdates (line 100) | func (p *Collector) WaitForUpdates(ctx context.Context, v string) (*ty...
method RetrieveProperties (line 114) | func (p *Collector) RetrieveProperties(ctx context.Context, req types....
method Retrieve (line 123) | func (p *Collector) Retrieve(ctx context.Context, objs []types.Managed...
method RetrieveWithFilter (line 176) | func (p *Collector) RetrieveWithFilter(ctx context.Context, objs []typ...
method RetrieveOne (line 198) | func (p *Collector) RetrieveOne(ctx context.Context, obj types.Managed...
function DefaultCollector (line 41) | func DefaultCollector(c *vim25.Client) *Collector {
FILE: vendor/github.com/vmware/govmomi/property/filter.go
type Filter (line 30) | type Filter
method Keys (line 33) | func (f Filter) Keys() []string {
method MatchProperty (line 44) | func (f Filter) MatchProperty(prop types.DynamicProperty) bool {
method MatchPropertyList (line 114) | func (f Filter) MatchPropertyList(props []types.DynamicProperty) bool {
method MatchObjectContent (line 125) | func (f Filter) MatchObjectContent(objects []types.ObjectContent) []ty...
FILE: vendor/github.com/vmware/govmomi/property/filter_test.go
function TestMatchProperty (line 25) | func TestMatchProperty(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/property/wait.go
function Wait (line 38) | func Wait(ctx context.Context, c *Collector, obj types.ManagedObjectRefe...
function WaitForView (line 91) | func WaitForView(ctx context.Context, c *Collector, view types.ManagedOb...
function waitLoop (line 130) | func waitLoop(ctx context.Context, c *Collector, f func(types.ManagedObj...
FILE: vendor/github.com/vmware/govmomi/session/keep_alive.go
type keepAlive (line 28) | type keepAlive struct
method start (line 70) | func (k *keepAlive) start() {
method stop (line 101) | func (k *keepAlive) stop() {
method RoundTrip (line 112) | func (k *keepAlive) RoundTrip(ctx context.Context, req, res soap.HasFa...
function defaultKeepAlive (line 42) | func defaultKeepAlive(roundTripper soap.RoundTripper) error {
function KeepAlive (line 51) | func KeepAlive(roundTripper soap.RoundTripper, idleTime time.Duration) s...
function KeepAliveHandler (line 58) | func KeepAliveHandler(roundTripper soap.RoundTripper, idleTime time.Dura...
FILE: vendor/github.com/vmware/govmomi/session/keep_alive_test.go
type testKeepAlive (line 35) | type testKeepAlive
method Func (line 37) | func (t *testKeepAlive) Func(soap.RoundTripper) error {
function newManager (line 42) | func newManager(t *testing.T) (*Manager, *url.URL) {
function TestKeepAlive (line 57) | func TestKeepAlive(t *testing.T) {
function testSessionOK (line 107) | func testSessionOK(t *testing.T, m *Manager, ok bool) {
function TestRealKeepAlive (line 129) | func TestRealKeepAlive(t *testing.T) {
function isNotAuthenticated (line 167) | func isNotAuthenticated(err error) bool {
function isInvalidLogin (line 177) | func isInvalidLogin(err error) bool {
function TestKeepAliveHandler (line 187) | func TestKeepAliveHandler(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/session/manager.go
function init (line 35) | func init() {
type Manager (line 43) | type Manager struct
method Reference (line 56) | func (sm Manager) Reference() types.ManagedObjectReference {
method SetLocale (line 60) | func (sm *Manager) SetLocale(ctx context.Context, locale string) error {
method Login (line 70) | func (sm *Manager) Login(ctx context.Context, u *url.Userinfo) error {
method LoginExtensionByCertificate (line 92) | func (sm *Manager) LoginExtensionByCertificate(ctx context.Context, ke...
method Logout (line 108) | func (sm *Manager) Logout(ctx context.Context) error {
method UserSession (line 124) | func (sm *Manager) UserSession(ctx context.Context) (*types.UserSessio...
method TerminateSession (line 144) | func (sm *Manager) TerminateSession(ctx context.Context, sessionId []s...
method SessionIsActive (line 156) | func (sm *Manager) SessionIsActive(ctx context.Context) (bool, error) {
method AcquireGenericServiceTicket (line 175) | func (sm *Manager) AcquireGenericServiceTicket(ctx context.Context, sp...
method AcquireLocalTicket (line 189) | func (sm *Manager) AcquireLocalTicket(ctx context.Context, userName st...
function NewManager (line 48) | func NewManager(client *vim25.Client) *Manager {
FILE: vendor/github.com/vmware/govmomi/session/manager_test.go
function sessionClient (line 29) | func sessionClient(u *url.URL, t *testing.T) *Manager {
function TestLogin (line 39) | func TestLogin(t *testing.T) {
function TestLogout (line 52) | func TestLogout(t *testing.T) {
function TestSessionIsActive (line 75) | func TestSessionIsActive(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/task/error.go
type Error (line 21) | type Error struct
method Error (line 26) | func (e Error) Error() string {
method Fault (line 30) | func (e Error) Fault() types.BaseMethodFault {
FILE: vendor/github.com/vmware/govmomi/task/wait.go
type taskProgress (line 27) | type taskProgress struct
method Percentage (line 31) | func (t taskProgress) Percentage() float32 {
method Detail (line 35) | func (t taskProgress) Detail() string {
method Error (line 39) | func (t taskProgress) Error() error {
type taskCallback (line 47) | type taskCallback struct
method fn (line 53) | func (t *taskCallback) fn(pc []types.PropertyChange) bool {
function Wait (line 117) | func Wait(ctx context.Context, ref types.ManagedObjectReference, pc *pro...
FILE: vendor/github.com/vmware/govmomi/task/wait_test.go
function TestCallbackFn (line 25) | func TestCallbackFn(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/test/functional/helper.go
type Helper (line 32) | type Helper struct
method Defer (line 53) | func (h *Helper) Defer(fn func()) {
method Teardown (line 57) | func (h *Helper) Teardown() {
method RequireVirtualCenter (line 63) | func (h *Helper) RequireVirtualCenter() {
method Datacenter (line 71) | func (h *Helper) Datacenter() *object.Datacenter {
method DatacenterFolders (line 82) | func (h *Helper) DatacenterFolders() *object.DatacenterFolders {
method ComputeResource (line 91) | func (h *Helper) ComputeResource() *object.ComputeResource {
method LocalDatastores (line 100) | func (h *Helper) LocalDatastores(ctx context.Context, cr *object.Compu...
function NewHelper (line 40) | func NewHelper(t *testing.T) *Helper {
FILE: vendor/github.com/vmware/govmomi/test/functional/issue_242_test.go
function TestIssue242 (line 31) | func TestIssue242(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/test/helper.go
function URL (line 32) | func URL() *url.URL {
function NewAuthenticatedClient (line 46) | func NewAuthenticatedClient(t *testing.T) *vim25.Client {
FILE: vendor/github.com/vmware/govmomi/units/size.go
type ByteSize (line 26) | type ByteSize
method String (line 38) | func (b ByteSize) String() string {
method Set (line 78) | func (b *ByteSize) Set(s string) error {
constant _ (line 29) | _ = iota
constant KB (line 30) | KB = 1 << (10 * iota)
constant MB (line 31) | MB
constant GB (line 32) | GB
constant TB (line 33) | TB
constant PB (line 34) | PB
constant EB (line 35) | EB
type FileSize (line 56) | type FileSize
method String (line 58) | func (b FileSize) String() string {
FILE: vendor/github.com/vmware/govmomi/units/size_test.go
function TestMB (line 25) | func TestMB(t *testing.T) {
function TestTenMB (line 33) | func TestTenMB(t *testing.T) {
function assertEquals (line 42) | func assertEquals(t *testing.T, expected string, actual ByteSize) {
function TestByteSize (line 48) | func TestByteSize(t *testing.T) {
function TestByteSizeSet (line 65) | func TestByteSizeSet(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/view/container_view.go
type ContainerView (line 30) | type ContainerView struct
method Destroy (line 40) | func (v ContainerView) Destroy(ctx context.Context) error {
method Retrieve (line 49) | func (v ContainerView) Retrieve(ctx context.Context, kind []string, ps...
method RetrieveWithFilter (line 106) | func (v ContainerView) RetrieveWithFilter(ctx context.Context, kind []...
method Find (line 126) | func (v ContainerView) Find(ctx context.Context, kind []string, filter...
function NewContainerView (line 34) | func NewContainerView(c *vim25.Client, ref types.ManagedObjectReference)...
FILE: vendor/github.com/vmware/govmomi/view/list_view.go
type ListView (line 28) | type ListView struct
method Destroy (line 38) | func (v ListView) Destroy(ctx context.Context) error {
method Add (line 46) | func (v ListView) Add(ctx context.Context, refs []types.ManagedObjectR...
method Remove (line 55) | func (v ListView) Remove(ctx context.Context, refs []types.ManagedObje...
method Reset (line 64) | func (v ListView) Reset(ctx context.Context, refs []types.ManagedObjec...
function NewListView (line 32) | func NewListView(c *vim25.Client, ref types.ManagedObjectReference) *Lis...
FILE: vendor/github.com/vmware/govmomi/view/manager.go
type Manager (line 28) | type Manager struct
method CreateListView (line 40) | func (m Manager) CreateListView(ctx context.Context, objects []types.M...
method CreateContainerView (line 54) | func (m Manager) CreateContainerView(ctx context.Context, container ty...
function NewManager (line 32) | func NewManager(c *vim25.Client) *Manager {
FILE: vendor/github.com/vmware/govmomi/vim25/client.go
type Client (line 32) | type Client struct
method RoundTrip (line 65) | func (c *Client) RoundTrip(ctx context.Context, req, res soap.HasFault...
method MarshalJSON (line 74) | func (c *Client) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 83) | func (c *Client) UnmarshalJSON(b []byte) error {
method Valid (line 102) | func (c *Client) Valid() bool {
method IsVC (line 121) | func (c *Client) IsVC() bool {
function NewClient (line 45) | func NewClient(ctx context.Context, rt soap.RoundTripper) (*Client, erro...
type marshaledClient (line 69) | type marshaledClient struct
FILE: vendor/github.com/vmware/govmomi/vim25/client_test.go
function testURL (line 33) | func testURL(t *testing.T) *url.URL {
function sessionLogin (line 45) | func sessionLogin(t *testing.T, c *Client) {
function sessionCheck (line 62) | func sessionCheck(t *testing.T, c *Client) {
function TestClientSerialization (line 71) | func TestClientSerialization(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/debug/debug.go
type Provider (line 28) | type Provider interface
function SetProvider (line 35) | func SetProvider(p Provider) {
function Enabled (line 43) | func Enabled() bool {
function NewFile (line 48) | func NewFile(s string) io.WriteCloser {
function Flush (line 53) | func Flush() {
type FileProvider (line 60) | type FileProvider struct
method NewFile (line 66) | func (fp *FileProvider) NewFile(p string) io.WriteCloser {
method Flush (line 77) | func (fp *FileProvider) Flush() {
FILE: vendor/github.com/vmware/govmomi/vim25/methods/fault_test.go
type TestBody (line 39) | type TestBody struct
function TestFaultDetail (line 43) | func TestFaultDetail(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/methods/internal.go
type RetrieveDynamicTypeManagerBody (line 26) | type RetrieveDynamicTypeManagerBody struct
method Fault (line 32) | func (b *RetrieveDynamicTypeManagerBody) Fault() *soap.Fault { return ...
function RetrieveDynamicTypeManager (line 34) | func RetrieveDynamicTypeManager(ctx context.Context, r soap.RoundTripper...
type RetrieveManagedMethodExecuterBody (line 46) | type RetrieveManagedMethodExecuterBody struct
method Fault (line 52) | func (b *RetrieveManagedMethodExecuterBody) Fault() *soap.Fault { retu...
function RetrieveManagedMethodExecuter (line 54) | func RetrieveManagedMethodExecuter(ctx context.Context, r soap.RoundTrip...
type DynamicTypeMgrQueryMoInstancesBody (line 66) | type DynamicTypeMgrQueryMoInstancesBody struct
method Fault (line 72) | func (b *DynamicTypeMgrQueryMoInstancesBody) Fault() *soap.Fault { ret...
function DynamicTypeMgrQueryMoInstances (line 74) | func DynamicTypeMgrQueryMoInstances(ctx context.Context, r soap.RoundTri...
type DynamicTypeMgrQueryTypeInfoBody (line 86) | type DynamicTypeMgrQueryTypeInfoBody struct
method Fault (line 92) | func (b *DynamicTypeMgrQueryTypeInfoBody) Fault() *soap.Fault { return...
function DynamicTypeMgrQueryTypeInfo (line 94) | func DynamicTypeMgrQueryTypeInfo(ctx context.Context, r soap.RoundTrippe...
type ExecuteSoapBody (line 106) | type ExecuteSoapBody struct
method Fault (line 112) | func (b *ExecuteSoapBody) Fault() *soap.Fault { return b.Fault_ }
function ExecuteSoap (line 114) | func ExecuteSoap(ctx context.Context, r soap.RoundTripper, req *types.Ex...
FILE: vendor/github.com/vmware/govmomi/vim25/methods/methods.go
type AbdicateDomOwnershipBody (line 26) | type AbdicateDomOwnershipBody struct
method Fault (line 32) | func (b *AbdicateDomOwnershipBody) Fault() *soap.Fault { return b.Faul...
function AbdicateDomOwnership (line 34) | func AbdicateDomOwnership(ctx context.Context, r soap.RoundTripper, req ...
type AcknowledgeAlarmBody (line 46) | type AcknowledgeAlarmBody struct
method Fault (line 52) | func (b *AcknowledgeAlarmBody) Fault() *soap.Fault { return b.Fault_ }
function AcknowledgeAlarm (line 54) | func AcknowledgeAlarm(ctx context.Context, r soap.RoundTripper, req *typ...
type AcquireCimServicesTicketBody (line 66) | type AcquireCimServicesTicketBody struct
method Fault (line 72) | func (b *AcquireCimServicesTicketBody) Fault() *soap.Fault { return b....
function AcquireCimServicesTicket (line 74) | func AcquireCimServicesTicket(ctx context.Context, r soap.RoundTripper, ...
type AcquireCloneTicketBody (line 86) | type AcquireCloneTicketBody struct
method Fault (line 92) | func (b *AcquireCloneTicketBody) Fault() *soap.Fault { return b.Fault_ }
function AcquireCloneTicket (line 94) | func AcquireCloneTicket(ctx context.Context, r soap.RoundTripper, req *t...
type AcquireCredentialsInGuestBody (line 106) | type AcquireCredentialsInGuestBody struct
method Fault (line 112) | func (b *AcquireCredentialsInGuestBody) Fault() *soap.Fault { return b...
function AcquireCredentialsInGuest (line 114) | func AcquireCredentialsInGuest(ctx context.Context, r soap.RoundTripper,...
type AcquireGenericServiceTicketBody (line 126) | type AcquireGenericServiceTicketBody struct
method Fault (line 132) | func (b *AcquireGenericServiceTicketBody) Fault() *soap.Fault { return...
function AcquireGenericServiceTicket (line 134) | func AcquireGenericServiceTicket(ctx context.Context, r soap.RoundTrippe...
type AcquireLocalTicketBody (line 146) | type AcquireLocalTicketBody struct
method Fault (line 152) | func (b *AcquireLocalTicketBody) Fault() *soap.Fault { return b.Fault_ }
function AcquireLocalTicket (line 154) | func AcquireLocalTicket(ctx context.Context, r soap.RoundTripper, req *t...
type AcquireMksTicketBody (line 166) | type AcquireMksTicketBody struct
method Fault (line 172) | func (b *AcquireMksTicketBody) Fault() *soap.Fault { return b.Fault_ }
function AcquireMksTicket (line 174) | func AcquireMksTicket(ctx context.Context, r soap.RoundTripper, req *typ...
type AcquireTicketBody (line 186) | type AcquireTicketBody struct
method Fault (line 192) | func (b *AcquireTicketBody) Fault() *soap.Fault { return b.Fault_ }
function AcquireTicket (line 194) | func AcquireTicket(ctx context.Context, r soap.RoundTripper, req *types....
type AddAuthorizationRoleBody (line 206) | type AddAuthorizationRoleBody struct
method Fault (line 212) | func (b *AddAuthorizationRoleBody) Fault() *soap.Fault { return b.Faul...
function AddAuthorizationRole (line 214) | func AddAuthorizationRole(ctx context.Context, r soap.RoundTripper, req ...
type AddCustomFieldDefBody (line 226) | type AddCustomFieldDefBody struct
method Fault (line 232) | func (b *AddCustomFieldDefBody) Fault() *soap.Fault { return b.Fault_ }
function AddCustomFieldDef (line 234) | func AddCustomFieldDef(ctx context.Context, r soap.RoundTripper, req *ty...
type AddDVPortgroup_TaskBody (line 246) | type AddDVPortgroup_TaskBody struct
method Fault (line 252) | func (b *AddDVPortgroup_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function AddDVPortgroup_Task (line 254) | func AddDVPortgroup_Task(ctx context.Context, r soap.RoundTripper, req *...
type AddDisks_TaskBody (line 266) | type AddDisks_TaskBody struct
method Fault (line 272) | func (b *AddDisks_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function AddDisks_Task (line 274) | func AddDisks_Task(ctx context.Context, r soap.RoundTripper, req *types....
type AddFilterBody (line 286) | type AddFilterBody struct
method Fault (line 292) | func (b *AddFilterBody) Fault() *soap.Fault { return b.Fault_ }
function AddFilter (line 294) | func AddFilter(ctx context.Context, r soap.RoundTripper, req *types.AddF...
type AddFilterEntitiesBody (line 306) | type AddFilterEntitiesBody struct
method Fault (line 312) | func (b *AddFilterEntitiesBody) Fault() *soap.Fault { return b.Fault_ }
function AddFilterEntities (line 314) | func AddFilterEntities(ctx context.Context, r soap.RoundTripper, req *ty...
type AddGuestAliasBody (line 326) | type AddGuestAliasBody struct
method Fault (line 332) | func (b *AddGuestAliasBody) Fault() *soap.Fault { return b.Fault_ }
function AddGuestAlias (line 334) | func AddGuestAlias(ctx context.Context, r soap.RoundTripper, req *types....
type AddHost_TaskBody (line 346) | type AddHost_TaskBody struct
method Fault (line 352) | func (b *AddHost_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function AddHost_Task (line 354) | func AddHost_Task(ctx context.Context, r soap.RoundTripper, req *types.A...
type AddInternetScsiSendTargetsBody (line 366) | type AddInternetScsiSendTargetsBody struct
method Fault (line 372) | func (b *AddInternetScsiSendTargetsBody) Fault() *soap.Fault { return ...
function AddInternetScsiSendTargets (line 374) | func AddInternetScsiSendTargets(ctx context.Context, r soap.RoundTripper...
type AddInternetScsiStaticTargetsBody (line 386) | type AddInternetScsiStaticTargetsBody struct
method Fault (line 392) | func (b *AddInternetScsiStaticTargetsBody) Fault() *soap.Fault { retur...
function AddInternetScsiStaticTargets (line 394) | func AddInternetScsiStaticTargets(ctx context.Context, r soap.RoundTripp...
type AddKeyBody (line 406) | type AddKeyBody struct
method Fault (line 412) | func (b *AddKeyBody) Fault() *soap.Fault { return b.Fault_ }
function AddKey (line 414) | func AddKey(ctx context.Context, r soap.RoundTripper, req *types.AddKey)...
type AddKeysBody (line 426) | type AddKeysBody struct
method Fault (line 432) | func (b *AddKeysBody) Fault() *soap.Fault { return b.Fault_ }
function AddKeys (line 434) | func AddKeys(ctx context.Context, r soap.RoundTripper, req *types.AddKey...
type AddLicenseBody (line 446) | type AddLicenseBody struct
method Fault (line 452) | func (b *AddLicenseBody) Fault() *soap.Fault { return b.Fault_ }
function AddLicense (line 454) | func AddLicense(ctx context.Context, r soap.RoundTripper, req *types.Add...
type AddMonitoredEntitiesBody (line 466) | type AddMonitoredEntitiesBody struct
method Fault (line 472) | func (b *AddMonitoredEntitiesBody) Fault() *soap.Fault { return b.Faul...
function AddMonitoredEntities (line 474) | func AddMonitoredEntities(ctx context.Context, r soap.RoundTripper, req ...
type AddNetworkResourcePoolBody (line 486) | type AddNetworkResourcePoolBody struct
method Fault (line 492) | func (b *AddNetworkResourcePoolBody) Fault() *soap.Fault { return b.Fa...
function AddNetworkResourcePool (line 494) | func AddNetworkResourcePool(ctx context.Context, r soap.RoundTripper, re...
type AddPortGroupBody (line 506) | type AddPortGroupBody struct
method Fault (line 512) | func (b *AddPortGroupBody) Fault() *soap.Fault { return b.Fault_ }
function AddPortGroup (line 514) | func AddPortGroup(ctx context.Context, r soap.RoundTripper, req *types.A...
type AddServiceConsoleVirtualNicBody (line 526) | type AddServiceConsoleVirtualNicBody struct
method Fault (line 532) | func (b *AddServiceConsoleVirtualNicBody) Fault() *soap.Fault { return...
function AddServiceConsoleVirtualNic (line 534) | func AddServiceConsoleVirtualNic(ctx context.Context, r soap.RoundTrippe...
type AddStandaloneHost_TaskBody (line 546) | type AddStandaloneHost_TaskBody struct
method Fault (line 552) | func (b *AddStandaloneHost_TaskBody) Fault() *soap.Fault { return b.Fa...
function AddStandaloneHost_Task (line 554) | func AddStandaloneHost_Task(ctx context.Context, r soap.RoundTripper, re...
type AddVirtualNicBody (line 566) | type AddVirtualNicBody struct
method Fault (line 572) | func (b *AddVirtualNicBody) Fault() *soap.Fault { return b.Fault_ }
function AddVirtualNic (line 574) | func AddVirtualNic(ctx context.Context, r soap.RoundTripper, req *types....
type AddVirtualSwitchBody (line 586) | type AddVirtualSwitchBody struct
method Fault (line 592) | func (b *AddVirtualSwitchBody) Fault() *soap.Fault { return b.Fault_ }
function AddVirtualSwitch (line 594) | func AddVirtualSwitch(ctx context.Context, r soap.RoundTripper, req *typ...
type AllocateIpv4AddressBody (line 606) | type AllocateIpv4AddressBody struct
method Fault (line 612) | func (b *AllocateIpv4AddressBody) Fault() *soap.Fault { return b.Fault_ }
function AllocateIpv4Address (line 614) | func AllocateIpv4Address(ctx context.Context, r soap.RoundTripper, req *...
type AllocateIpv6AddressBody (line 626) | type AllocateIpv6AddressBody struct
method Fault (line 632) | func (b *AllocateIpv6AddressBody) Fault() *soap.Fault { return b.Fault_ }
function AllocateIpv6Address (line 634) | func AllocateIpv6Address(ctx context.Context, r soap.RoundTripper, req *...
type AnswerVMBody (line 646) | type AnswerVMBody struct
method Fault (line 652) | func (b *AnswerVMBody) Fault() *soap.Fault { return b.Fault_ }
function AnswerVM (line 654) | func AnswerVM(ctx context.Context, r soap.RoundTripper, req *types.Answe...
type ApplyEntitiesConfig_TaskBody (line 666) | type ApplyEntitiesConfig_TaskBody struct
method Fault (line 672) | func (b *ApplyEntitiesConfig_TaskBody) Fault() *soap.Fault { return b....
function ApplyEntitiesConfig_Task (line 674) | func ApplyEntitiesConfig_Task(ctx context.Context, r soap.RoundTripper, ...
type ApplyHostConfig_TaskBody (line 686) | type ApplyHostConfig_TaskBody struct
method Fault (line 692) | func (b *ApplyHostConfig_TaskBody) Fault() *soap.Fault { return b.Faul...
function ApplyHostConfig_Task (line 694) | func ApplyHostConfig_Task(ctx context.Context, r soap.RoundTripper, req ...
type ApplyRecommendationBody (line 706) | type ApplyRecommendationBody struct
method Fault (line 712) | func (b *ApplyRecommendationBody) Fault() *soap.Fault { return b.Fault_ }
function ApplyRecommendation (line 714) | func ApplyRecommendation(ctx context.Context, r soap.RoundTripper, req *...
type ApplyStorageDrsRecommendationToPod_TaskBody (line 726) | type ApplyStorageDrsRecommendationToPod_TaskBody struct
method Fault (line 732) | func (b *ApplyStorageDrsRecommendationToPod_TaskBody) Fault() *soap.Fa...
function ApplyStorageDrsRecommendationToPod_Task (line 734) | func ApplyStorageDrsRecommendationToPod_Task(ctx context.Context, r soap...
type ApplyStorageDrsRecommendation_TaskBody (line 746) | type ApplyStorageDrsRecommendation_TaskBody struct
method Fault (line 752) | func (b *ApplyStorageDrsRecommendation_TaskBody) Fault() *soap.Fault {...
function ApplyStorageDrsRecommendation_Task (line 754) | func ApplyStorageDrsRecommendation_Task(ctx context.Context, r soap.Roun...
type AreAlarmActionsEnabledBody (line 766) | type AreAlarmActionsEnabledBody struct
method Fault (line 772) | func (b *AreAlarmActionsEnabledBody) Fault() *soap.Fault { return b.Fa...
function AreAlarmActionsEnabled (line 774) | func AreAlarmActionsEnabled(ctx context.Context, r soap.RoundTripper, re...
type AssignUserToGroupBody (line 786) | type AssignUserToGroupBody struct
method Fault (line 792) | func (b *AssignUserToGroupBody) Fault() *soap.Fault { return b.Fault_ }
function AssignUserToGroup (line 794) | func AssignUserToGroup(ctx context.Context, r soap.RoundTripper, req *ty...
type AssociateProfileBody (line 806) | type AssociateProfileBody struct
method Fault (line 812) | func (b *AssociateProfileBody) Fault() *soap.Fault { return b.Fault_ }
function AssociateProfile (line 814) | func AssociateProfile(ctx context.Context, r soap.RoundTripper, req *typ...
type AttachDisk_TaskBody (line 826) | type AttachDisk_TaskBody struct
method Fault (line 832) | func (b *AttachDisk_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function AttachDisk_Task (line 834) | func AttachDisk_Task(ctx context.Context, r soap.RoundTripper, req *type...
type AttachScsiLunBody (line 846) | type AttachScsiLunBody struct
method Fault (line 852) | func (b *AttachScsiLunBody) Fault() *soap.Fault { return b.Fault_ }
function AttachScsiLun (line 854) | func AttachScsiLun(ctx context.Context, r soap.RoundTripper, req *types....
type AttachScsiLunEx_TaskBody (line 866) | type AttachScsiLunEx_TaskBody struct
method Fault (line 872) | func (b *AttachScsiLunEx_TaskBody) Fault() *soap.Fault { return b.Faul...
function AttachScsiLunEx_Task (line 874) | func AttachScsiLunEx_Task(ctx context.Context, r soap.RoundTripper, req ...
type AttachTagToVStorageObjectBody (line 886) | type AttachTagToVStorageObjectBody struct
method Fault (line 892) | func (b *AttachTagToVStorageObjectBody) Fault() *soap.Fault { return b...
function AttachTagToVStorageObject (line 894) | func AttachTagToVStorageObject(ctx context.Context, r soap.RoundTripper,...
type AttachVmfsExtentBody (line 906) | type AttachVmfsExtentBody struct
method Fault (line 912) | func (b *AttachVmfsExtentBody) Fault() *soap.Fault { return b.Fault_ }
function AttachVmfsExtent (line 914) | func AttachVmfsExtent(ctx context.Context, r soap.RoundTripper, req *typ...
type AutoStartPowerOffBody (line 926) | type AutoStartPowerOffBody struct
method Fault (line 932) | func (b *AutoStartPowerOffBody) Fault() *soap.Fault { return b.Fault_ }
function AutoStartPowerOff (line 934) | func AutoStartPowerOff(ctx context.Context, r soap.RoundTripper, req *ty...
type AutoStartPowerOnBody (line 946) | type AutoStartPowerOnBody struct
method Fault (line 952) | func (b *AutoStartPowerOnBody) Fault() *soap.Fault { return b.Fault_ }
function AutoStartPowerOn (line 954) | func AutoStartPowerOn(ctx context.Context, r soap.RoundTripper, req *typ...
type BackupFirmwareConfigurationBody (line 966) | type BackupFirmwareConfigurationBody struct
method Fault (line 972) | func (b *BackupFirmwareConfigurationBody) Fault() *soap.Fault { return...
function BackupFirmwareConfiguration (line 974) | func BackupFirmwareConfiguration(ctx context.Context, r soap.RoundTrippe...
type BindVnicBody (line 986) | type BindVnicBody struct
method Fault (line 992) | func (b *BindVnicBody) Fault() *soap.Fault { return b.Fault_ }
function BindVnic (line 994) | func BindVnic(ctx context.Context, r soap.RoundTripper, req *types.BindV...
type BrowseDiagnosticLogBody (line 1006) | type BrowseDiagnosticLogBody struct
method Fault (line 1012) | func (b *BrowseDiagnosticLogBody) Fault() *soap.Fault { return b.Fault_ }
function BrowseDiagnosticLog (line 1014) | func BrowseDiagnosticLog(ctx context.Context, r soap.RoundTripper, req *...
type CanProvisionObjectsBody (line 1026) | type CanProvisionObjectsBody struct
method Fault (line 1032) | func (b *CanProvisionObjectsBody) Fault() *soap.Fault { return b.Fault_ }
function CanProvisionObjects (line 1034) | func CanProvisionObjects(ctx context.Context, r soap.RoundTripper, req *...
type CancelRecommendationBody (line 1046) | type CancelRecommendationBody struct
method Fault (line 1052) | func (b *CancelRecommendationBody) Fault() *soap.Fault { return b.Faul...
function CancelRecommendation (line 1054) | func CancelRecommendation(ctx context.Context, r soap.RoundTripper, req ...
type CancelRetrievePropertiesExBody (line 1066) | type CancelRetrievePropertiesExBody struct
method Fault (line 1072) | func (b *CancelRetrievePropertiesExBody) Fault() *soap.Fault { return ...
function CancelRetrievePropertiesEx (line 1074) | func CancelRetrievePropertiesEx(ctx context.Context, r soap.RoundTripper...
type CancelStorageDrsRecommendationBody (line 1086) | type CancelStorageDrsRecommendationBody struct
method Fault (line 1092) | func (b *CancelStorageDrsRecommendationBody) Fault() *soap.Fault { ret...
function CancelStorageDrsRecommendation (line 1094) | func CancelStorageDrsRecommendation(ctx context.Context, r soap.RoundTri...
type CancelTaskBody (line 1106) | type CancelTaskBody struct
method Fault (line 1112) | func (b *CancelTaskBody) Fault() *soap.Fault { return b.Fault_ }
function CancelTask (line 1114) | func CancelTask(ctx context.Context, r soap.RoundTripper, req *types.Can...
type CancelWaitForUpdatesBody (line 1126) | type CancelWaitForUpdatesBody struct
method Fault (line 1132) | func (b *CancelWaitForUpdatesBody) Fault() *soap.Fault { return b.Faul...
function CancelWaitForUpdates (line 1134) | func CancelWaitForUpdates(ctx context.Context, r soap.RoundTripper, req ...
type CertMgrRefreshCACertificatesAndCRLs_TaskBody (line 1146) | type CertMgrRefreshCACertificatesAndCRLs_TaskBody struct
method Fault (line 1152) | func (b *CertMgrRefreshCACertificatesAndCRLs_TaskBody) Fault() *soap.F...
function CertMgrRefreshCACertificatesAndCRLs_Task (line 1154) | func CertMgrRefreshCACertificatesAndCRLs_Task(ctx context.Context, r soa...
type CertMgrRefreshCertificates_TaskBody (line 1166) | type CertMgrRefreshCertificates_TaskBody struct
method Fault (line 1172) | func (b *CertMgrRefreshCertificates_TaskBody) Fault() *soap.Fault { re...
function CertMgrRefreshCertificates_Task (line 1174) | func CertMgrRefreshCertificates_Task(ctx context.Context, r soap.RoundTr...
type CertMgrRevokeCertificates_TaskBody (line 1186) | type CertMgrRevokeCertificates_TaskBody struct
method Fault (line 1192) | func (b *CertMgrRevokeCertificates_TaskBody) Fault() *soap.Fault { ret...
function CertMgrRevokeCertificates_Task (line 1194) | func CertMgrRevokeCertificates_Task(ctx context.Context, r soap.RoundTri...
type ChangeAccessModeBody (line 1206) | type ChangeAccessModeBody struct
method Fault (line 1212) | func (b *ChangeAccessModeBody) Fault() *soap.Fault { return b.Fault_ }
function ChangeAccessMode (line 1214) | func ChangeAccessMode(ctx context.Context, r soap.RoundTripper, req *typ...
type ChangeFileAttributesInGuestBody (line 1226) | type ChangeFileAttributesInGuestBody struct
method Fault (line 1232) | func (b *ChangeFileAttributesInGuestBody) Fault() *soap.Fault { return...
function ChangeFileAttributesInGuest (line 1234) | func ChangeFileAttributesInGuest(ctx context.Context, r soap.RoundTrippe...
type ChangeLockdownModeBody (line 1246) | type ChangeLockdownModeBody struct
method Fault (line 1252) | func (b *ChangeLockdownModeBody) Fault() *soap.Fault { return b.Fault_ }
function ChangeLockdownMode (line 1254) | func ChangeLockdownMode(ctx context.Context, r soap.RoundTripper, req *t...
type ChangeNFSUserPasswordBody (line 1266) | type ChangeNFSUserPasswordBody struct
method Fault (line 1272) | func (b *ChangeNFSUserPasswordBody) Fault() *soap.Fault { return b.Fau...
function ChangeNFSUserPassword (line 1274) | func ChangeNFSUserPassword(ctx context.Context, r soap.RoundTripper, req...
type ChangeOwnerBody (line 1286) | type ChangeOwnerBody struct
method Fault (line 1292) | func (b *ChangeOwnerBody) Fault() *soap.Fault { return b.Fault_ }
function ChangeOwner (line 1294) | func ChangeOwner(ctx context.Context, r soap.RoundTripper, req *types.Ch...
type CheckAddHostEvc_TaskBody (line 1306) | type CheckAddHostEvc_TaskBody struct
method Fault (line 1312) | func (b *CheckAddHostEvc_TaskBody) Fault() *soap.Fault { return b.Faul...
function CheckAddHostEvc_Task (line 1314) | func CheckAddHostEvc_Task(ctx context.Context, r soap.RoundTripper, req ...
type CheckAnswerFileStatus_TaskBody (line 1326) | type CheckAnswerFileStatus_TaskBody struct
method Fault (line 1332) | func (b *CheckAnswerFileStatus_TaskBody) Fault() *soap.Fault { return ...
function CheckAnswerFileStatus_Task (line 1334) | func CheckAnswerFileStatus_Task(ctx context.Context, r soap.RoundTripper...
type CheckCompatibility_TaskBody (line 1346) | type CheckCompatibility_TaskBody struct
method Fault (line 1352) | func (b *CheckCompatibility_TaskBody) Fault() *soap.Fault { return b.F...
function CheckCompatibility_Task (line 1354) | func CheckCompatibility_Task(ctx context.Context, r soap.RoundTripper, r...
type CheckCompliance_TaskBody (line 1366) | type CheckCompliance_TaskBody struct
method Fault (line 1372) | func (b *CheckCompliance_TaskBody) Fault() *soap.Fault { return b.Faul...
function CheckCompliance_Task (line 1374) | func CheckCompliance_Task(ctx context.Context, r soap.RoundTripper, req ...
type CheckConfigureEvcMode_TaskBody (line 1386) | type CheckConfigureEvcMode_TaskBody struct
method Fault (line 1392) | func (b *CheckConfigureEvcMode_TaskBody) Fault() *soap.Fault { return ...
function CheckConfigureEvcMode_Task (line 1394) | func CheckConfigureEvcMode_Task(ctx context.Context, r soap.RoundTripper...
type CheckCustomizationResourcesBody (line 1406) | type CheckCustomizationResourcesBody struct
method Fault (line 1412) | func (b *CheckCustomizationResourcesBody) Fault() *soap.Fault { return...
function CheckCustomizationResources (line 1414) | func CheckCustomizationResources(ctx context.Context, r soap.RoundTrippe...
type CheckCustomizationSpecBody (line 1426) | type CheckCustomizationSpecBody struct
method Fault (line 1432) | func (b *CheckCustomizationSpecBody) Fault() *soap.Fault { return b.Fa...
function CheckCustomizationSpec (line 1434) | func CheckCustomizationSpec(ctx context.Context, r soap.RoundTripper, re...
type CheckForUpdatesBody (line 1446) | type CheckForUpdatesBody struct
method Fault (line 1452) | func (b *CheckForUpdatesBody) Fault() *soap.Fault { return b.Fault_ }
function CheckForUpdates (line 1454) | func CheckForUpdates(ctx context.Context, r soap.RoundTripper, req *type...
type CheckHostPatch_TaskBody (line 1466) | type CheckHostPatch_TaskBody struct
method Fault (line 1472) | func (b *CheckHostPatch_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function CheckHostPatch_Task (line 1474) | func CheckHostPatch_Task(ctx context.Context, r soap.RoundTripper, req *...
type CheckLicenseFeatureBody (line 1486) | type CheckLicenseFeatureBody struct
method Fault (line 1492) | func (b *CheckLicenseFeatureBody) Fault() *soap.Fault { return b.Fault_ }
function CheckLicenseFeature (line 1494) | func CheckLicenseFeature(ctx context.Context, r soap.RoundTripper, req *...
type CheckMigrate_TaskBody (line 1506) | type CheckMigrate_TaskBody struct
method Fault (line 1512) | func (b *CheckMigrate_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function CheckMigrate_Task (line 1514) | func CheckMigrate_Task(ctx context.Context, r soap.RoundTripper, req *ty...
type CheckProfileCompliance_TaskBody (line 1526) | type CheckProfileCompliance_TaskBody struct
method Fault (line 1532) | func (b *CheckProfileCompliance_TaskBody) Fault() *soap.Fault { return...
function CheckProfileCompliance_Task (line 1534) | func CheckProfileCompliance_Task(ctx context.Context, r soap.RoundTrippe...
type CheckRelocate_TaskBody (line 1546) | type CheckRelocate_TaskBody struct
method Fault (line 1552) | func (b *CheckRelocate_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function CheckRelocate_Task (line 1554) | func CheckRelocate_Task(ctx context.Context, r soap.RoundTripper, req *t...
type ClearComplianceStatusBody (line 1566) | type ClearComplianceStatusBody struct
method Fault (line 1572) | func (b *ClearComplianceStatusBody) Fault() *soap.Fault { return b.Fau...
function ClearComplianceStatus (line 1574) | func ClearComplianceStatus(ctx context.Context, r soap.RoundTripper, req...
type ClearNFSUserBody (line 1586) | type ClearNFSUserBody struct
method Fault (line 1592) | func (b *ClearNFSUserBody) Fault() *soap.Fault { return b.Fault_ }
function ClearNFSUser (line 1594) | func ClearNFSUser(ctx context.Context, r soap.RoundTripper, req *types.C...
type ClearSystemEventLogBody (line 1606) | type ClearSystemEventLogBody struct
method Fault (line 1612) | func (b *ClearSystemEventLogBody) Fault() *soap.Fault { return b.Fault_ }
function ClearSystemEventLog (line 1614) | func ClearSystemEventLog(ctx context.Context, r soap.RoundTripper, req *...
type CloneSessionBody (line 1626) | type CloneSessionBody struct
method Fault (line 1632) | func (b *CloneSessionBody) Fault() *soap.Fault { return b.Fault_ }
function CloneSession (line 1634) | func CloneSession(ctx context.Context, r soap.RoundTripper, req *types.C...
type CloneVApp_TaskBody (line 1646) | type CloneVApp_TaskBody struct
method Fault (line 1652) | func (b *CloneVApp_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function CloneVApp_Task (line 1654) | func CloneVApp_Task(ctx context.Context, r soap.RoundTripper, req *types...
type CloneVM_TaskBody (line 1666) | type CloneVM_TaskBody struct
method Fault (line 1672) | func (b *CloneVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function CloneVM_Task (line 1674) | func CloneVM_Task(ctx context.Context, r soap.RoundTripper, req *types.C...
type CloneVStorageObject_TaskBody (line 1686) | type CloneVStorageObject_TaskBody struct
method Fault (line 1692) | func (b *CloneVStorageObject_TaskBody) Fault() *soap.Fault { return b....
function CloneVStorageObject_Task (line 1694) | func CloneVStorageObject_Task(ctx context.Context, r soap.RoundTripper, ...
type CloseInventoryViewFolderBody (line 1706) | type CloseInventoryViewFolderBody struct
method Fault (line 1712) | func (b *CloseInventoryViewFolderBody) Fault() *soap.Fault { return b....
function CloseInventoryViewFolder (line 1714) | func CloseInventoryViewFolder(ctx context.Context, r soap.RoundTripper, ...
type ClusterEnterMaintenanceModeBody (line 1726) | type ClusterEnterMaintenanceModeBody struct
method Fault (line 1732) | func (b *ClusterEnterMaintenanceModeBody) Fault() *soap.Fault { return...
function ClusterEnterMaintenanceMode (line 1734) | func ClusterEnterMaintenanceMode(ctx context.Context, r soap.RoundTrippe...
type ComputeDiskPartitionInfoBody (line 1746) | type ComputeDiskPartitionInfoBody struct
method Fault (line 1752) | func (b *ComputeDiskPartitionInfoBody) Fault() *soap.Fault { return b....
function ComputeDiskPartitionInfo (line 1754) | func ComputeDiskPartitionInfo(ctx context.Context, r soap.RoundTripper, ...
type ComputeDiskPartitionInfoForResizeBody (line 1766) | type ComputeDiskPartitionInfoForResizeBody struct
method Fault (line 1772) | func (b *ComputeDiskPartitionInfoForResizeBody) Fault() *soap.Fault { ...
function ComputeDiskPartitionInfoForResize (line 1774) | func ComputeDiskPartitionInfoForResize(ctx context.Context, r soap.Round...
type ConfigureCryptoKeyBody (line 1786) | type ConfigureCryptoKeyBody struct
method Fault (line 1792) | func (b *ConfigureCryptoKeyBody) Fault() *soap.Fault { return b.Fault_ }
function ConfigureCryptoKey (line 1794) | func ConfigureCryptoKey(ctx context.Context, r soap.RoundTripper, req *t...
type ConfigureDatastoreIORM_TaskBody (line 1806) | type ConfigureDatastoreIORM_TaskBody struct
method Fault (line 1812) | func (b *ConfigureDatastoreIORM_TaskBody) Fault() *soap.Fault { return...
function ConfigureDatastoreIORM_Task (line 1814) | func ConfigureDatastoreIORM_Task(ctx context.Context, r soap.RoundTrippe...
type ConfigureDatastorePrincipalBody (line 1826) | type ConfigureDatastorePrincipalBody struct
method Fault (line 1832) | func (b *ConfigureDatastorePrincipalBody) Fault() *soap.Fault { return...
function ConfigureDatastorePrincipal (line 1834) | func ConfigureDatastorePrincipal(ctx context.Context, r soap.RoundTrippe...
type ConfigureEvcMode_TaskBody (line 1846) | type ConfigureEvcMode_TaskBody struct
method Fault (line 1852) | func (b *ConfigureEvcMode_TaskBody) Fault() *soap.Fault { return b.Fau...
function ConfigureEvcMode_Task (line 1854) | func ConfigureEvcMode_Task(ctx context.Context, r soap.RoundTripper, req...
type ConfigureHostCache_TaskBody (line 1866) | type ConfigureHostCache_TaskBody struct
method Fault (line 1872) | func (b *ConfigureHostCache_TaskBody) Fault() *soap.Fault { return b.F...
function ConfigureHostCache_Task (line 1874) | func ConfigureHostCache_Task(ctx context.Context, r soap.RoundTripper, r...
type ConfigureLicenseSourceBody (line 1886) | type ConfigureLicenseSourceBody struct
method Fault (line 1892) | func (b *ConfigureLicenseSourceBody) Fault() *soap.Fault { return b.Fa...
function ConfigureLicenseSource (line 1894) | func ConfigureLicenseSource(ctx context.Context, r soap.RoundTripper, re...
type ConfigurePowerPolicyBody (line 1906) | type ConfigurePowerPolicyBody struct
method Fault (line 1912) | func (b *ConfigurePowerPolicyBody) Fault() *soap.Fault { return b.Faul...
function ConfigurePowerPolicy (line 1914) | func ConfigurePowerPolicy(ctx context.Context, r soap.RoundTripper, req ...
type ConfigureStorageDrsForPod_TaskBody (line 1926) | type ConfigureStorageDrsForPod_TaskBody struct
method Fault (line 1932) | func (b *ConfigureStorageDrsForPod_TaskBody) Fault() *soap.Fault { ret...
function ConfigureStorageDrsForPod_Task (line 1934) | func ConfigureStorageDrsForPod_Task(ctx context.Context, r soap.RoundTri...
type ConfigureVFlashResourceEx_TaskBody (line 1946) | type ConfigureVFlashResourceEx_TaskBody struct
method Fault (line 1952) | func (b *ConfigureVFlashResourceEx_TaskBody) Fault() *soap.Fault { ret...
function ConfigureVFlashResourceEx_Task (line 1954) | func ConfigureVFlashResourceEx_Task(ctx context.Context, r soap.RoundTri...
type ConsolidateVMDisks_TaskBody (line 1966) | type ConsolidateVMDisks_TaskBody struct
method Fault (line 1972) | func (b *ConsolidateVMDisks_TaskBody) Fault() *soap.Fault { return b.F...
function ConsolidateVMDisks_Task (line 1974) | func ConsolidateVMDisks_Task(ctx context.Context, r soap.RoundTripper, r...
type ContinueRetrievePropertiesExBody (line 1986) | type ContinueRetrievePropertiesExBody struct
method Fault (line 1992) | func (b *ContinueRetrievePropertiesExBody) Fault() *soap.Fault { retur...
function ContinueRetrievePropertiesEx (line 1994) | func ContinueRetrievePropertiesEx(ctx context.Context, r soap.RoundTripp...
type ConvertNamespacePathToUuidPathBody (line 2006) | type ConvertNamespacePathToUuidPathBody struct
method Fault (line 2012) | func (b *ConvertNamespacePathToUuidPathBody) Fault() *soap.Fault { ret...
function ConvertNamespacePathToUuidPath (line 2014) | func ConvertNamespacePathToUuidPath(ctx context.Context, r soap.RoundTri...
type CopyDatastoreFile_TaskBody (line 2026) | type CopyDatastoreFile_TaskBody struct
method Fault (line 2032) | func (b *CopyDatastoreFile_TaskBody) Fault() *soap.Fault { return b.Fa...
function CopyDatastoreFile_Task (line 2034) | func CopyDatastoreFile_Task(ctx context.Context, r soap.RoundTripper, re...
type CopyVirtualDisk_TaskBody (line 2046) | type CopyVirtualDisk_TaskBody struct
method Fault (line 2052) | func (b *CopyVirtualDisk_TaskBody) Fault() *soap.Fault { return b.Faul...
function CopyVirtualDisk_Task (line 2054) | func CopyVirtualDisk_Task(ctx context.Context, r soap.RoundTripper, req ...
type CreateAlarmBody (line 2066) | type CreateAlarmBody struct
method Fault (line 2072) | func (b *CreateAlarmBody) Fault() *soap.Fault { return b.Fault_ }
function CreateAlarm (line 2074) | func CreateAlarm(ctx context.Context, r soap.RoundTripper, req *types.Cr...
type CreateChildVM_TaskBody (line 2086) | type CreateChildVM_TaskBody struct
method Fault (line 2092) | func (b *CreateChildVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function CreateChildVM_Task (line 2094) | func CreateChildVM_Task(ctx context.Context, r soap.RoundTripper, req *t...
type CreateClusterBody (line 2106) | type CreateClusterBody struct
method Fault (line 2112) | func (b *CreateClusterBody) Fault() *soap.Fault { return b.Fault_ }
function CreateCluster (line 2114) | func CreateCluster(ctx context.Context, r soap.RoundTripper, req *types....
type CreateClusterExBody (line 2126) | type CreateClusterExBody struct
method Fault (line 2132) | func (b *CreateClusterExBody) Fault() *soap.Fault { return b.Fault_ }
function CreateClusterEx (line 2134) | func CreateClusterEx(ctx context.Context, r soap.RoundTripper, req *type...
type CreateCollectorForEventsBody (line 2146) | type CreateCollectorForEventsBody struct
method Fault (line 2152) | func (b *CreateCollectorForEventsBody) Fault() *soap.Fault { return b....
function CreateCollectorForEvents (line 2154) | func CreateCollectorForEvents(ctx context.Context, r soap.RoundTripper, ...
type CreateCollectorForTasksBody (line 2166) | type CreateCollectorForTasksBody struct
method Fault (line 2172) | func (b *CreateCollectorForTasksBody) Fault() *soap.Fault { return b.F...
function CreateCollectorForTasks (line 2174) | func CreateCollectorForTasks(ctx context.Context, r soap.RoundTripper, r...
type CreateContainerViewBody (line 2186) | type CreateContainerViewBody struct
method Fault (line 2192) | func (b *CreateContainerViewBody) Fault() *soap.Fault { return b.Fault_ }
function CreateContainerView (line 2194) | func CreateContainerView(ctx context.Context, r soap.RoundTripper, req *...
type CreateCustomizationSpecBody (line 2206) | type CreateCustomizationSpecBody struct
method Fault (line 2212) | func (b *CreateCustomizationSpecBody) Fault() *soap.Fault { return b.F...
function CreateCustomizationSpec (line 2214) | func CreateCustomizationSpec(ctx context.Context, r soap.RoundTripper, r...
type CreateDVPortgroup_TaskBody (line 2226) | type CreateDVPortgroup_TaskBody struct
method Fault (line 2232) | func (b *CreateDVPortgroup_TaskBody) Fault() *soap.Fault { return b.Fa...
function CreateDVPortgroup_Task (line 2234) | func CreateDVPortgroup_Task(ctx context.Context, r soap.RoundTripper, re...
type CreateDVS_TaskBody (line 2246) | type CreateDVS_TaskBody struct
method Fault (line 2252) | func (b *CreateDVS_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function CreateDVS_Task (line 2254) | func CreateDVS_Task(ctx context.Context, r soap.RoundTripper, req *types...
type CreateDatacenterBody (line 2266) | type CreateDatacenterBody struct
method Fault (line 2272) | func (b *CreateDatacenterBody) Fault() *soap.Fault { return b.Fault_ }
function CreateDatacenter (line 2274) | func CreateDatacenter(ctx context.Context, r soap.RoundTripper, req *typ...
type CreateDefaultProfileBody (line 2286) | type CreateDefaultProfileBody struct
method Fault (line 2292) | func (b *CreateDefaultProfileBody) Fault() *soap.Fault { return b.Faul...
function CreateDefaultProfile (line 2294) | func CreateDefaultProfile(ctx context.Context, r soap.RoundTripper, req ...
type CreateDescriptorBody (line 2306) | type CreateDescriptorBody struct
method Fault (line 2312) | func (b *CreateDescriptorBody) Fault() *soap.Fault { return b.Fault_ }
function CreateDescriptor (line 2314) | func CreateDescriptor(ctx context.Context, r soap.RoundTripper, req *typ...
type CreateDiagnosticPartitionBody (line 2326) | type CreateDiagnosticPartitionBody struct
method Fault (line 2332) | func (b *CreateDiagnosticPartitionBody) Fault() *soap.Fault { return b...
function CreateDiagnosticPartition (line 2334) | func CreateDiagnosticPartition(ctx context.Context, r soap.RoundTripper,...
type CreateDirectoryBody (line 2346) | type CreateDirectoryBody struct
method Fault (line 2352) | func (b *CreateDirectoryBody) Fault() *soap.Fault { return b.Fault_ }
function CreateDirectory (line 2354) | func CreateDirectory(ctx context.Context, r soap.RoundTripper, req *type...
type CreateDisk_TaskBody (line 2366) | type CreateDisk_TaskBody struct
method Fault (line 2372) | func (b *CreateDisk_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function CreateDisk_Task (line 2374) | func CreateDisk_Task(ctx context.Context, r soap.RoundTripper, req *type...
type CreateFilterBody (line 2386) | type CreateFilterBody struct
method Fault (line 2392) | func (b *CreateFilterBody) Fault() *soap.Fault { return b.Fault_ }
function CreateFilter (line 2394) | func CreateFilter(ctx context.Context, r soap.RoundTripper, req *types.C...
type CreateFolderBody (line 2406) | type CreateFolderBody struct
method Fault (line 2412) | func (b *CreateFolderBody) Fault() *soap.Fault { return b.Fault_ }
function CreateFolder (line 2414) | func CreateFolder(ctx context.Context, r soap.RoundTripper, req *types.C...
type CreateGroupBody (line 2426) | type CreateGroupBody struct
method Fault (line 2432) | func (b *CreateGroupBody) Fault() *soap.Fault { return b.Fault_ }
function CreateGroup (line 2434) | func CreateGroup(ctx context.Context, r soap.RoundTripper, req *types.Cr...
type CreateImportSpecBody (line 2446) | type CreateImportSpecBody struct
method Fault (line 2452) | func (b *CreateImportSpecBody) Fault() *soap.Fault { return b.Fault_ }
function CreateImportSpec (line 2454) | func CreateImportSpec(ctx context.Context, r soap.RoundTripper, req *typ...
type CreateInventoryViewBody (line 2466) | type CreateInventoryViewBody struct
method Fault (line 2472) | func (b *CreateInventoryViewBody) Fault() *soap.Fault { return b.Fault_ }
function CreateInventoryView (line 2474) | func CreateInventoryView(ctx context.Context, r soap.RoundTripper, req *...
type CreateIpPoolBody (line 2486) | type CreateIpPoolBody struct
method Fault (line 2492) | func (b *CreateIpPoolBody) Fault() *soap.Fault { return b.Fault_ }
function CreateIpPool (line 2494) | func CreateIpPool(ctx context.Context, r soap.RoundTripper, req *types.C...
type CreateListViewBody (line 2506) | type CreateListViewBody struct
method Fault (line 2512) | func (b *CreateListViewBody) Fault() *soap.Fault { return b.Fault_ }
function CreateListView (line 2514) | func CreateListView(ctx context.Context, r soap.RoundTripper, req *types...
type CreateListViewFromViewBody (line 2526) | type CreateListViewFromViewBody struct
method Fault (line 2532) | func (b *CreateListViewFromViewBody) Fault() *soap.Fault { return b.Fa...
function CreateListViewFromView (line 2534) | func CreateListViewFromView(ctx context.Context, r soap.RoundTripper, re...
type CreateLocalDatastoreBody (line 2546) | type CreateLocalDatastoreBody struct
method Fault (line 2552) | func (b *CreateLocalDatastoreBody) Fault() *soap.Fault { return b.Faul...
function CreateLocalDatastore (line 2554) | func CreateLocalDatastore(ctx context.Context, r soap.RoundTripper, req ...
type CreateNasDatastoreBody (line 2566) | type CreateNasDatastoreBody struct
method Fault (line 2572) | func (b *CreateNasDatastoreBody) Fault() *soap.Fault { return b.Fault_ }
function CreateNasDatastore (line 2574) | func CreateNasDatastore(ctx context.Context, r soap.RoundTripper, req *t...
type CreateObjectScheduledTaskBody (line 2586) | type CreateObjectScheduledTaskBody struct
method Fault (line 2592) | func (b *CreateObjectScheduledTaskBody) Fault() *soap.Fault { return b...
function CreateObjectScheduledTask (line 2594) | func CreateObjectScheduledTask(ctx context.Context, r soap.RoundTripper,...
type CreatePerfIntervalBody (line 2606) | type CreatePerfIntervalBody struct
method Fault (line 2612) | func (b *CreatePerfIntervalBody) Fault() *soap.Fault { return b.Fault_ }
function CreatePerfInterval (line 2614) | func CreatePerfInterval(ctx context.Context, r soap.RoundTripper, req *t...
type CreateProfileBody (line 2626) | type CreateProfileBody struct
method Fault (line 2632) | func (b *CreateProfileBody) Fault() *soap.Fault { return b.Fault_ }
function CreateProfile (line 2634) | func CreateProfile(ctx context.Context, r soap.RoundTripper, req *types....
type CreatePropertyCollectorBody (line 2646) | type CreatePropertyCollectorBody struct
method Fault (line 2652) | func (b *CreatePropertyCollectorBody) Fault() *soap.Fault { return b.F...
function CreatePropertyCollector (line 2654) | func CreatePropertyCollector(ctx context.Context, r soap.RoundTripper, r...
type CreateRegistryKeyInGuestBody (line 2666) | type CreateRegistryKeyInGuestBody struct
method Fault (line 2672) | func (b *CreateRegistryKeyInGuestBody) Fault() *soap.Fault { return b....
function CreateRegistryKeyInGuest (line 2674) | func CreateRegistryKeyInGuest(ctx context.Context, r soap.RoundTripper, ...
type CreateResourcePoolBody (line 2686) | type CreateResourcePoolBody struct
method Fault (line 2692) | func (b *CreateResourcePoolBody) Fault() *soap.Fault { return b.Fault_ }
function CreateResourcePool (line 2694) | func CreateResourcePool(ctx context.Context, r soap.RoundTripper, req *t...
type CreateScheduledTaskBody (line 2706) | type CreateScheduledTaskBody struct
method Fault (line 2712) | func (b *CreateScheduledTaskBody) Fault() *soap.Fault { return b.Fault_ }
function CreateScheduledTask (line 2714) | func CreateScheduledTask(ctx context.Context, r soap.RoundTripper, req *...
type CreateScreenshot_TaskBody (line 2726) | type CreateScreenshot_TaskBody struct
method Fault (line 2732) | func (b *CreateScreenshot_TaskBody) Fault() *soap.Fault { return b.Fau...
function CreateScreenshot_Task (line 2734) | func CreateScreenshot_Task(ctx context.Context, r soap.RoundTripper, req...
type CreateSecondaryVMEx_TaskBody (line 2746) | type CreateSecondaryVMEx_TaskBody struct
method Fault (line 2752) | func (b *CreateSecondaryVMEx_TaskBody) Fault() *soap.Fault { return b....
function CreateSecondaryVMEx_Task (line 2754) | func CreateSecondaryVMEx_Task(ctx context.Context, r soap.RoundTripper, ...
type CreateSecondaryVM_TaskBody (line 2766) | type CreateSecondaryVM_TaskBody struct
method Fault (line 2772) | func (b *CreateSecondaryVM_TaskBody) Fault() *soap.Fault { return b.Fa...
function CreateSecondaryVM_Task (line 2774) | func CreateSecondaryVM_Task(ctx context.Context, r soap.RoundTripper, re...
type CreateSnapshotEx_TaskBody (line 2786) | type CreateSnapshotEx_TaskBody struct
method Fault (line 2792) | func (b *CreateSnapshotEx_TaskBody) Fault() *soap.Fault { return b.Fau...
function CreateSnapshotEx_Task (line 2794) | func CreateSnapshotEx_Task(ctx context.Context, r soap.RoundTripper, req...
type CreateSnapshot_TaskBody (line 2806) | type CreateSnapshot_TaskBody struct
method Fault (line 2812) | func (b *CreateSnapshot_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function CreateSnapshot_Task (line 2814) | func CreateSnapshot_Task(ctx context.Context, r soap.RoundTripper, req *...
type CreateStoragePodBody (line 2826) | type CreateStoragePodBody struct
method Fault (line 2832) | func (b *CreateStoragePodBody) Fault() *soap.Fault { return b.Fault_ }
function CreateStoragePod (line 2834) | func CreateStoragePod(ctx context.Context, r soap.RoundTripper, req *typ...
type CreateTaskBody (line 2846) | type CreateTaskBody struct
method Fault (line 2852) | func (b *CreateTaskBody) Fault() *soap.Fault { return b.Fault_ }
function CreateTask (line 2854) | func CreateTask(ctx context.Context, r soap.RoundTripper, req *types.Cre...
type CreateTemporaryDirectoryInGuestBody (line 2866) | type CreateTemporaryDirectoryInGuestBody struct
method Fault (line 2872) | func (b *CreateTemporaryDirectoryInGuestBody) Fault() *soap.Fault { re...
function CreateTemporaryDirectoryInGuest (line 2874) | func CreateTemporaryDirectoryInGuest(ctx context.Context, r soap.RoundTr...
type CreateTemporaryFileInGuestBody (line 2886) | type CreateTemporaryFileInGuestBody struct
method Fault (line 2892) | func (b *CreateTemporaryFileInGuestBody) Fault() *soap.Fault { return ...
function CreateTemporaryFileInGuest (line 2894) | func CreateTemporaryFileInGuest(ctx context.Context, r soap.RoundTripper...
type CreateUserBody (line 2906) | type CreateUserBody struct
method Fault (line 2912) | func (b *CreateUserBody) Fault() *soap.Fault { return b.Fault_ }
function CreateUser (line 2914) | func CreateUser(ctx context.Context, r soap.RoundTripper, req *types.Cre...
type CreateVAppBody (line 2926) | type CreateVAppBody struct
method Fault (line 2932) | func (b *CreateVAppBody) Fault() *soap.Fault { return b.Fault_ }
function CreateVApp (line 2934) | func CreateVApp(ctx context.Context, r soap.RoundTripper, req *types.Cre...
type CreateVM_TaskBody (line 2946) | type CreateVM_TaskBody struct
method Fault (line 2952) | func (b *CreateVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function CreateVM_Task (line 2954) | func CreateVM_Task(ctx context.Context, r soap.RoundTripper, req *types....
type CreateVirtualDisk_TaskBody (line 2966) | type CreateVirtualDisk_TaskBody struct
method Fault (line 2972) | func (b *CreateVirtualDisk_TaskBody) Fault() *soap.Fault { return b.Fa...
function CreateVirtualDisk_Task (line 2974) | func CreateVirtualDisk_Task(ctx context.Context, r soap.RoundTripper, re...
type CreateVmfsDatastoreBody (line 2986) | type CreateVmfsDatastoreBody struct
method Fault (line 2992) | func (b *CreateVmfsDatastoreBody) Fault() *soap.Fault { return b.Fault_ }
function CreateVmfsDatastore (line 2994) | func CreateVmfsDatastore(ctx context.Context, r soap.RoundTripper, req *...
type CreateVvolDatastoreBody (line 3006) | type CreateVvolDatastoreBody struct
method Fault (line 3012) | func (b *CreateVvolDatastoreBody) Fault() *soap.Fault { return b.Fault_ }
function CreateVvolDatastore (line 3014) | func CreateVvolDatastore(ctx context.Context, r soap.RoundTripper, req *...
type CurrentTimeBody (line 3026) | type CurrentTimeBody struct
method Fault (line 3032) | func (b *CurrentTimeBody) Fault() *soap.Fault { return b.Fault_ }
function CurrentTime (line 3034) | func CurrentTime(ctx context.Context, r soap.RoundTripper, req *types.Cu...
type CustomizationSpecItemToXmlBody (line 3046) | type CustomizationSpecItemToXmlBody struct
method Fault (line 3052) | func (b *CustomizationSpecItemToXmlBody) Fault() *soap.Fault { return ...
function CustomizationSpecItemToXml (line 3054) | func CustomizationSpecItemToXml(ctx context.Context, r soap.RoundTripper...
type CustomizeVM_TaskBody (line 3066) | type CustomizeVM_TaskBody struct
method Fault (line 3072) | func (b *CustomizeVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function CustomizeVM_Task (line 3074) | func CustomizeVM_Task(ctx context.Context, r soap.RoundTripper, req *typ...
type DVPortgroupRollback_TaskBody (line 3086) | type DVPortgroupRollback_TaskBody struct
method Fault (line 3092) | func (b *DVPortgroupRollback_TaskBody) Fault() *soap.Fault { return b....
function DVPortgroupRollback_Task (line 3094) | func DVPortgroupRollback_Task(ctx context.Context, r soap.RoundTripper, ...
type DVSManagerExportEntity_TaskBody (line 3106) | type DVSManagerExportEntity_TaskBody struct
method Fault (line 3112) | func (b *DVSManagerExportEntity_TaskBody) Fault() *soap.Fault { return...
function DVSManagerExportEntity_Task (line 3114) | func DVSManagerExportEntity_Task(ctx context.Context, r soap.RoundTrippe...
type DVSManagerImportEntity_TaskBody (line 3126) | type DVSManagerImportEntity_TaskBody struct
method Fault (line 3132) | func (b *DVSManagerImportEntity_TaskBody) Fault() *soap.Fault { return...
function DVSManagerImportEntity_Task (line 3134) | func DVSManagerImportEntity_Task(ctx context.Context, r soap.RoundTrippe...
type DVSManagerLookupDvPortGroupBody (line 3146) | type DVSManagerLookupDvPortGroupBody struct
method Fault (line 3152) | func (b *DVSManagerLookupDvPortGroupBody) Fault() *soap.Fault { return...
function DVSManagerLookupDvPortGroup (line 3154) | func DVSManagerLookupDvPortGroup(ctx context.Context, r soap.RoundTrippe...
type DVSRollback_TaskBody (line 3166) | type DVSRollback_TaskBody struct
method Fault (line 3172) | func (b *DVSRollback_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function DVSRollback_Task (line 3174) | func DVSRollback_Task(ctx context.Context, r soap.RoundTripper, req *typ...
type DatastoreEnterMaintenanceModeBody (line 3186) | type DatastoreEnterMaintenanceModeBody struct
method Fault (line 3192) | func (b *DatastoreEnterMaintenanceModeBody) Fault() *soap.Fault { retu...
function DatastoreEnterMaintenanceMode (line 3194) | func DatastoreEnterMaintenanceMode(ctx context.Context, r soap.RoundTrip...
type DatastoreExitMaintenanceMode_TaskBody (line 3206) | type DatastoreExitMaintenanceMode_TaskBody struct
method Fault (line 3212) | func (b *DatastoreExitMaintenanceMode_TaskBody) Fault() *soap.Fault { ...
function DatastoreExitMaintenanceMode_Task (line 3214) | func DatastoreExitMaintenanceMode_Task(ctx context.Context, r soap.Round...
type DecodeLicenseBody (line 3226) | type DecodeLicenseBody struct
method Fault (line 3232) | func (b *DecodeLicenseBody) Fault() *soap.Fault { return b.Fault_ }
function DecodeLicense (line 3234) | func DecodeLicense(ctx context.Context, r soap.RoundTripper, req *types....
type DefragmentAllDisksBody (line 3246) | type DefragmentAllDisksBody struct
method Fault (line 3252) | func (b *DefragmentAllDisksBody) Fault() *soap.Fault { return b.Fault_ }
function DefragmentAllDisks (line 3254) | func DefragmentAllDisks(ctx context.Context, r soap.RoundTripper, req *t...
type DefragmentVirtualDisk_TaskBody (line 3266) | type DefragmentVirtualDisk_TaskBody struct
method Fault (line 3272) | func (b *DefragmentVirtualDisk_TaskBody) Fault() *soap.Fault { return ...
function DefragmentVirtualDisk_Task (line 3274) | func DefragmentVirtualDisk_Task(ctx context.Context, r soap.RoundTripper...
type DeleteCustomizationSpecBody (line 3286) | type DeleteCustomizationSpecBody struct
method Fault (line 3292) | func (b *DeleteCustomizationSpecBody) Fault() *soap.Fault { return b.F...
function DeleteCustomizationSpec (line 3294) | func DeleteCustomizationSpec(ctx context.Context, r soap.RoundTripper, r...
type DeleteDatastoreFile_TaskBody (line 3306) | type DeleteDatastoreFile_TaskBody struct
method Fault (line 3312) | func (b *DeleteDatastoreFile_TaskBody) Fault() *soap.Fault { return b....
function DeleteDatastoreFile_Task (line 3314) | func DeleteDatastoreFile_Task(ctx context.Context, r soap.RoundTripper, ...
type DeleteDirectoryBody (line 3326) | type DeleteDirectoryBody struct
method Fault (line 3332) | func (b *DeleteDirectoryBody) Fault() *soap.Fault { return b.Fault_ }
function DeleteDirectory (line 3334) | func DeleteDirectory(ctx context.Context, r soap.RoundTripper, req *type...
type DeleteDirectoryInGuestBody (line 3346) | type DeleteDirectoryInGuestBody struct
method Fault (line 3352) | func (b *DeleteDirectoryInGuestBody) Fault() *soap.Fault { return b.Fa...
function DeleteDirectoryInGuest (line 3354) | func DeleteDirectoryInGuest(ctx context.Context, r soap.RoundTripper, re...
type DeleteFileBody (line 3366) | type DeleteFileBody struct
method Fault (line 3372) | func (b *DeleteFileBody) Fault() *soap.Fault { return b.Fault_ }
function DeleteFile (line 3374) | func DeleteFile(ctx context.Context, r soap.RoundTripper, req *types.Del...
type DeleteFileInGuestBody (line 3386) | type DeleteFileInGuestBody struct
method Fault (line 3392) | func (b *DeleteFileInGuestBody) Fault() *soap.Fault { return b.Fault_ }
function DeleteFileInGuest (line 3394) | func DeleteFileInGuest(ctx context.Context, r soap.RoundTripper, req *ty...
type DeleteHostSpecificationBody (line 3406) | type DeleteHostSpecificationBody struct
method Fault (line 3412) | func (b *DeleteHostSpecificationBody) Fault() *soap.Fault { return b.F...
function DeleteHostSpecification (line 3414) | func DeleteHostSpecification(ctx context.Context, r soap.RoundTripper, r...
type DeleteHostSubSpecificationBody (line 3426) | type DeleteHostSubSpecificationBody struct
method Fault (line 3432) | func (b *DeleteHostSubSpecificationBody) Fault() *soap.Fault { return ...
function DeleteHostSubSpecification (line 3434) | func DeleteHostSubSpecification(ctx context.Context, r soap.RoundTripper...
type DeleteRegistryKeyInGuestBody (line 3446) | type DeleteRegistryKeyInGuestBody struct
method Fault (line 3452) | func (b *DeleteRegistryKeyInGuestBody) Fault() *soap.Fault { return b....
function DeleteRegistryKeyInGuest (line 3454) | func DeleteRegistryKeyInGuest(ctx context.Context, r soap.RoundTripper, ...
type DeleteRegistryValueInGuestBody (line 3466) | type DeleteRegistryValueInGuestBody struct
method Fault (line 3472) | func (b *DeleteRegistryValueInGuestBody) Fault() *soap.Fault { return ...
function DeleteRegistryValueInGuest (line 3474) | func DeleteRegistryValueInGuest(ctx context.Context, r soap.RoundTripper...
type DeleteScsiLunStateBody (line 3486) | type DeleteScsiLunStateBody struct
method Fault (line 3492) | func (b *DeleteScsiLunStateBody) Fault() *soap.Fault { return b.Fault_ }
function DeleteScsiLunState (line 3494) | func DeleteScsiLunState(ctx context.Context, r soap.RoundTripper, req *t...
type DeleteVStorageObject_TaskBody (line 3506) | type DeleteVStorageObject_TaskBody struct
method Fault (line 3512) | func (b *DeleteVStorageObject_TaskBody) Fault() *soap.Fault { return b...
function DeleteVStorageObject_Task (line 3514) | func DeleteVStorageObject_Task(ctx context.Context, r soap.RoundTripper,...
type DeleteVffsVolumeStateBody (line 3526) | type DeleteVffsVolumeStateBody struct
method Fault (line 3532) | func (b *DeleteVffsVolumeStateBody) Fault() *soap.Fault { return b.Fau...
function DeleteVffsVolumeState (line 3534) | func DeleteVffsVolumeState(ctx context.Context, r soap.RoundTripper, req...
type DeleteVirtualDisk_TaskBody (line 3546) | type DeleteVirtualDisk_TaskBody struct
method Fault (line 3552) | func (b *DeleteVirtualDisk_TaskBody) Fault() *soap.Fault { return b.Fa...
function DeleteVirtualDisk_Task (line 3554) | func DeleteVirtualDisk_Task(ctx context.Context, r soap.RoundTripper, re...
type DeleteVmfsVolumeStateBody (line 3566) | type DeleteVmfsVolumeStateBody struct
method Fault (line 3572) | func (b *DeleteVmfsVolumeStateBody) Fault() *soap.Fault { return b.Fau...
function DeleteVmfsVolumeState (line 3574) | func DeleteVmfsVolumeState(ctx context.Context, r soap.RoundTripper, req...
type DeleteVsanObjectsBody (line 3586) | type DeleteVsanObjectsBody struct
method Fault (line 3592) | func (b *DeleteVsanObjectsBody) Fault() *soap.Fault { return b.Fault_ }
function DeleteVsanObjects (line 3594) | func DeleteVsanObjects(ctx context.Context, r soap.RoundTripper, req *ty...
type DeselectVnicBody (line 3606) | type DeselectVnicBody struct
method Fault (line 3612) | func (b *DeselectVnicBody) Fault() *soap.Fault { return b.Fault_ }
function DeselectVnic (line 3614) | func DeselectVnic(ctx context.Context, r soap.RoundTripper, req *types.D...
type DeselectVnicForNicTypeBody (line 3626) | type DeselectVnicForNicTypeBody struct
method Fault (line 3632) | func (b *DeselectVnicForNicTypeBody) Fault() *soap.Fault { return b.Fa...
function DeselectVnicForNicType (line 3634) | func DeselectVnicForNicType(ctx context.Context, r soap.RoundTripper, re...
type DestroyChildrenBody (line 3646) | type DestroyChildrenBody struct
method Fault (line 3652) | func (b *DestroyChildrenBody) Fault() *soap.Fault { return b.Fault_ }
function DestroyChildren (line 3654) | func DestroyChildren(ctx context.Context, r soap.RoundTripper, req *type...
type DestroyCollectorBody (line 3666) | type DestroyCollectorBody struct
method Fault (line 3672) | func (b *DestroyCollectorBody) Fault() *soap.Fault { return b.Fault_ }
function DestroyCollector (line 3674) | func DestroyCollector(ctx context.Context, r soap.RoundTripper, req *typ...
type DestroyDatastoreBody (line 3686) | type DestroyDatastoreBody struct
method Fault (line 3692) | func (b *DestroyDatastoreBody) Fault() *soap.Fault { return b.Fault_ }
function DestroyDatastore (line 3694) | func DestroyDatastore(ctx context.Context, r soap.RoundTripper, req *typ...
type DestroyIpPoolBody (line 3706) | type DestroyIpPoolBody struct
method Fault (line 3712) | func (b *DestroyIpPoolBody) Fault() *soap.Fault { return b.Fault_ }
function DestroyIpPool (line 3714) | func DestroyIpPool(ctx context.Context, r soap.RoundTripper, req *types....
type DestroyNetworkBody (line 3726) | type DestroyNetworkBody struct
method Fault (line 3732) | func (b *DestroyNetworkBody) Fault() *soap.Fault { return b.Fault_ }
function DestroyNetwork (line 3734) | func DestroyNetwork(ctx context.Context, r soap.RoundTripper, req *types...
type DestroyProfileBody (line 3746) | type DestroyProfileBody struct
method Fault (line 3752) | func (b *DestroyProfileBody) Fault() *soap.Fault { return b.Fault_ }
function DestroyProfile (line 3754) | func DestroyProfile(ctx context.Context, r soap.RoundTripper, req *types...
type DestroyPropertyCollectorBody (line 3766) | type DestroyPropertyCollectorBody struct
method Fault (line 3772) | func (b *DestroyPropertyCollectorBody) Fault() *soap.Fault { return b....
function DestroyPropertyCollector (line 3774) | func DestroyPropertyCollector(ctx context.Context, r soap.RoundTripper, ...
type DestroyPropertyFilterBody (line 3786) | type DestroyPropertyFilterBody struct
method Fault (line 3792) | func (b *DestroyPropertyFilterBody) Fault() *soap.Fault { return b.Fau...
function DestroyPropertyFilter (line 3794) | func DestroyPropertyFilter(ctx context.Context, r soap.RoundTripper, req...
type DestroyVffsBody (line 3806) | type DestroyVffsBody struct
method Fault (line 3812) | func (b *DestroyVffsBody) Fault() *soap.Fault { return b.Fault_ }
function DestroyVffs (line 3814) | func DestroyVffs(ctx context.Context, r soap.RoundTripper, req *types.De...
type DestroyViewBody (line 3826) | type DestroyViewBody struct
method Fault (line 3832) | func (b *DestroyViewBody) Fault() *soap.Fault { return b.Fault_ }
function DestroyView (line 3834) | func DestroyView(ctx context.Context, r soap.RoundTripper, req *types.De...
type Destroy_TaskBody (line 3846) | type Destroy_TaskBody struct
method Fault (line 3852) | func (b *Destroy_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function Destroy_Task (line 3854) | func Destroy_Task(ctx context.Context, r soap.RoundTripper, req *types.D...
type DetachDisk_TaskBody (line 3866) | type DetachDisk_TaskBody struct
method Fault (line 3872) | func (b *DetachDisk_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function DetachDisk_Task (line 3874) | func DetachDisk_Task(ctx context.Context, r soap.RoundTripper, req *type...
type DetachScsiLunBody (line 3886) | type DetachScsiLunBody struct
method Fault (line 3892) | func (b *DetachScsiLunBody) Fault() *soap.Fault { return b.Fault_ }
function DetachScsiLun (line 3894) | func DetachScsiLun(ctx context.Context, r soap.RoundTripper, req *types....
type DetachScsiLunEx_TaskBody (line 3906) | type DetachScsiLunEx_TaskBody struct
method Fault (line 3912) | func (b *DetachScsiLunEx_TaskBody) Fault() *soap.Fault { return b.Faul...
function DetachScsiLunEx_Task (line 3914) | func DetachScsiLunEx_Task(ctx context.Context, r soap.RoundTripper, req ...
type DetachTagFromVStorageObjectBody (line 3926) | type DetachTagFromVStorageObjectBody struct
method Fault (line 3932) | func (b *DetachTagFromVStorageObjectBody) Fault() *soap.Fault { return...
function DetachTagFromVStorageObject (line 3934) | func DetachTagFromVStorageObject(ctx context.Context, r soap.RoundTrippe...
type DisableEvcMode_TaskBody (line 3946) | type DisableEvcMode_TaskBody struct
method Fault (line 3952) | func (b *DisableEvcMode_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function DisableEvcMode_Task (line 3954) | func DisableEvcMode_Task(ctx context.Context, r soap.RoundTripper, req *...
type DisableFeatureBody (line 3966) | type DisableFeatureBody struct
method Fault (line 3972) | func (b *DisableFeatureBody) Fault() *soap.Fault { return b.Fault_ }
function DisableFeature (line 3974) | func DisableFeature(ctx context.Context, r soap.RoundTripper, req *types...
type DisableHyperThreadingBody (line 3986) | type DisableHyperThreadingBody struct
method Fault (line 3992) | func (b *DisableHyperThreadingBody) Fault() *soap.Fault { return b.Fau...
function DisableHyperThreading (line 3994) | func DisableHyperThreading(ctx context.Context, r soap.RoundTripper, req...
type DisableMultipathPathBody (line 4006) | type DisableMultipathPathBody struct
method Fault (line 4012) | func (b *DisableMultipathPathBody) Fault() *soap.Fault { return b.Faul...
function DisableMultipathPath (line 4014) | func DisableMultipathPath(ctx context.Context, r soap.RoundTripper, req ...
type DisableRulesetBody (line 4026) | type DisableRulesetBody struct
method Fault (line 4032) | func (b *DisableRulesetBody) Fault() *soap.Fault { return b.Fault_ }
function DisableRuleset (line 4034) | func DisableRuleset(ctx context.Context, r soap.RoundTripper, req *types...
type DisableSecondaryVM_TaskBody (line 4046) | type DisableSecondaryVM_TaskBody struct
method Fault (line 4052) | func (b *DisableSecondaryVM_TaskBody) Fault() *soap.Fault { return b.F...
function DisableSecondaryVM_Task (line 4054) | func DisableSecondaryVM_Task(ctx context.Context, r soap.RoundTripper, r...
type DisableSmartCardAuthenticationBody (line 4066) | type DisableSmartCardAuthenticationBody struct
method Fault (line 4072) | func (b *DisableSmartCardAuthenticationBody) Fault() *soap.Fault { ret...
function DisableSmartCardAuthentication (line 4074) | func DisableSmartCardAuthentication(ctx context.Context, r soap.RoundTri...
type DisconnectHost_TaskBody (line 4086) | type DisconnectHost_TaskBody struct
method Fault (line 4092) | func (b *DisconnectHost_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function DisconnectHost_Task (line 4094) | func DisconnectHost_Task(ctx context.Context, r soap.RoundTripper, req *...
type DiscoverFcoeHbasBody (line 4106) | type DiscoverFcoeHbasBody struct
method Fault (line 4112) | func (b *DiscoverFcoeHbasBody) Fault() *soap.Fault { return b.Fault_ }
function DiscoverFcoeHbas (line 4114) | func DiscoverFcoeHbas(ctx context.Context, r soap.RoundTripper, req *typ...
type DissociateProfileBody (line 4126) | type DissociateProfileBody struct
method Fault (line 4132) | func (b *DissociateProfileBody) Fault() *soap.Fault { return b.Fault_ }
function DissociateProfile (line 4134) | func DissociateProfile(ctx context.Context, r soap.RoundTripper, req *ty...
type DoesCustomizationSpecExistBody (line 4146) | type DoesCustomizationSpecExistBody struct
method Fault (line 4152) | func (b *DoesCustomizationSpecExistBody) Fault() *soap.Fault { return ...
function DoesCustomizationSpecExist (line 4154) | func DoesCustomizationSpecExist(ctx context.Context, r soap.RoundTripper...
type DuplicateCustomizationSpecBody (line 4166) | type DuplicateCustomizationSpecBody struct
method Fault (line 4172) | func (b *DuplicateCustomizationSpecBody) Fault() *soap.Fault { return ...
function DuplicateCustomizationSpec (line 4174) | func DuplicateCustomizationSpec(ctx context.Context, r soap.RoundTripper...
type DvsReconfigureVmVnicNetworkResourcePool_TaskBody (line 4186) | type DvsReconfigureVmVnicNetworkResourcePool_TaskBody struct
method Fault (line 4192) | func (b *DvsReconfigureVmVnicNetworkResourcePool_TaskBody) Fault() *so...
function DvsReconfigureVmVnicNetworkResourcePool_Task (line 4194) | func DvsReconfigureVmVnicNetworkResourcePool_Task(ctx context.Context, r...
type EagerZeroVirtualDisk_TaskBody (line 4206) | type EagerZeroVirtualDisk_TaskBody struct
method Fault (line 4212) | func (b *EagerZeroVirtualDisk_TaskBody) Fault() *soap.Fault { return b...
function EagerZeroVirtualDisk_Task (line 4214) | func EagerZeroVirtualDisk_Task(ctx context.Context, r soap.RoundTripper,...
type EnableAlarmActionsBody (line 4226) | type EnableAlarmActionsBody struct
method Fault (line 4232) | func (b *EnableAlarmActionsBody) Fault() *soap.Fault { return b.Fault_ }
function EnableAlarmActions (line 4234) | func EnableAlarmActions(ctx context.Context, r soap.RoundTripper, req *t...
type EnableCryptoBody (line 4246) | type EnableCryptoBody struct
method Fault (line 4252) | func (b *EnableCryptoBody) Fault() *soap.Fault { return b.Fault_ }
function EnableCrypto (line 4254) | func EnableCrypto(ctx context.Context, r soap.RoundTripper, req *types.E...
type EnableFeatureBody (line 4266) | type EnableFeatureBody struct
method Fault (line 4272) | func (b *EnableFeatureBody) Fault() *soap.Fault { return b.Fault_ }
function EnableFeature (line 4274) | func EnableFeature(ctx context.Context, r soap.RoundTripper, req *types....
type EnableHyperThreadingBody (line 4286) | type EnableHyperThreadingBody struct
method Fault (line 4292) | func (b *EnableHyperThreadingBody) Fault() *soap.Fault { return b.Faul...
function EnableHyperThreading (line 4294) | func EnableHyperThreading(ctx context.Context, r soap.RoundTripper, req ...
type EnableMultipathPathBody (line 4306) | type EnableMultipathPathBody struct
method Fault (line 4312) | func (b *EnableMultipathPathBody) Fault() *soap.Fault { return b.Fault_ }
function EnableMultipathPath (line 4314) | func EnableMultipathPath(ctx context.Context, r soap.RoundTripper, req *...
type EnableNetworkResourceManagementBody (line 4326) | type EnableNetworkResourceManagementBody struct
method Fault (line 4332) | func (b *EnableNetworkResourceManagementBody) Fault() *soap.Fault { re...
function EnableNetworkResourceManagement (line 4334) | func EnableNetworkResourceManagement(ctx context.Context, r soap.RoundTr...
type EnableRulesetBody (line 4346) | type EnableRulesetBody struct
method Fault (line 4352) | func (b *EnableRulesetBody) Fault() *soap.Fault { return b.Fault_ }
function EnableRuleset (line 4354) | func EnableRuleset(ctx context.Context, r soap.RoundTripper, req *types....
type EnableSecondaryVM_TaskBody (line 4366) | type EnableSecondaryVM_TaskBody struct
method Fault (line 4372) | func (b *EnableSecondaryVM_TaskBody) Fault() *soap.Fault { return b.Fa...
function EnableSecondaryVM_Task (line 4374) | func EnableSecondaryVM_Task(ctx context.Context, r soap.RoundTripper, re...
type EnableSmartCardAuthenticationBody (line 4386) | type EnableSmartCardAuthenticationBody struct
method Fault (line 4392) | func (b *EnableSmartCardAuthenticationBody) Fault() *soap.Fault { retu...
function EnableSmartCardAuthentication (line 4394) | func EnableSmartCardAuthentication(ctx context.Context, r soap.RoundTrip...
type EnterLockdownModeBody (line 4406) | type EnterLockdownModeBody struct
method Fault (line 4412) | func (b *EnterLockdownModeBody) Fault() *soap.Fault { return b.Fault_ }
function EnterLockdownMode (line 4414) | func EnterLockdownMode(ctx context.Context, r soap.RoundTripper, req *ty...
type EnterMaintenanceMode_TaskBody (line 4426) | type EnterMaintenanceMode_TaskBody struct
method Fault (line 4432) | func (b *EnterMaintenanceMode_TaskBody) Fault() *soap.Fault { return b...
function EnterMaintenanceMode_Task (line 4434) | func EnterMaintenanceMode_Task(ctx context.Context, r soap.RoundTripper,...
type EstimateDatabaseSizeBody (line 4446) | type EstimateDatabaseSizeBody struct
method Fault (line 4452) | func (b *EstimateDatabaseSizeBody) Fault() *soap.Fault { return b.Faul...
function EstimateDatabaseSize (line 4454) | func EstimateDatabaseSize(ctx context.Context, r soap.RoundTripper, req ...
type EstimateStorageForConsolidateSnapshots_TaskBody (line 4466) | type EstimateStorageForConsolidateSnapshots_TaskBody struct
method Fault (line 4472) | func (b *EstimateStorageForConsolidateSnapshots_TaskBody) Fault() *soa...
function EstimateStorageForConsolidateSnapshots_Task (line 4474) | func EstimateStorageForConsolidateSnapshots_Task(ctx context.Context, r ...
type EsxAgentHostManagerUpdateConfigBody (line 4486) | type EsxAgentHostManagerUpdateConfigBody struct
method Fault (line 4492) | func (b *EsxAgentHostManagerUpdateConfigBody) Fault() *soap.Fault { re...
function EsxAgentHostManagerUpdateConfig (line 4494) | func EsxAgentHostManagerUpdateConfig(ctx context.Context, r soap.RoundTr...
type EvacuateVsanNode_TaskBody (line 4506) | type EvacuateVsanNode_TaskBody struct
method Fault (line 4512) | func (b *EvacuateVsanNode_TaskBody) Fault() *soap.Fault { return b.Fau...
function EvacuateVsanNode_Task (line 4514) | func EvacuateVsanNode_Task(ctx context.Context, r soap.RoundTripper, req...
type EvcManagerBody (line 4526) | type EvcManagerBody struct
method Fault (line 4532) | func (b *EvcManagerBody) Fault() *soap.Fault { return b.Fault_ }
function EvcManager (line 4534) | func EvcManager(ctx context.Context, r soap.RoundTripper, req *types.Evc...
type ExecuteHostProfileBody (line 4546) | type ExecuteHostProfileBody struct
method Fault (line 4552) | func (b *ExecuteHostProfileBody) Fault() *soap.Fault { return b.Fault_ }
function ExecuteHostProfile (line 4554) | func ExecuteHostProfile(ctx context.Context, r soap.RoundTripper, req *t...
type ExecuteSimpleCommandBody (line 4566) | type ExecuteSimpleCommandBody struct
method Fault (line 4572) | func (b *ExecuteSimpleCommandBody) Fault() *soap.Fault { return b.Faul...
function ExecuteSimpleCommand (line 4574) | func ExecuteSimpleCommand(ctx context.Context, r soap.RoundTripper, req ...
type ExitLockdownModeBody (line 4586) | type ExitLockdownModeBody struct
method Fault (line 4592) | func (b *ExitLockdownModeBody) Fault() *soap.Fault { return b.Fault_ }
function ExitLockdownMode (line 4594) | func ExitLockdownMode(ctx context.Context, r soap.RoundTripper, req *typ...
type ExitMaintenanceMode_TaskBody (line 4606) | type ExitMaintenanceMode_TaskBody struct
method Fault (line 4612) | func (b *ExitMaintenanceMode_TaskBody) Fault() *soap.Fault { return b....
function ExitMaintenanceMode_Task (line 4614) | func ExitMaintenanceMode_Task(ctx context.Context, r soap.RoundTripper, ...
type ExpandVmfsDatastoreBody (line 4626) | type ExpandVmfsDatastoreBody struct
method Fault (line 4632) | func (b *ExpandVmfsDatastoreBody) Fault() *soap.Fault { return b.Fault_ }
function ExpandVmfsDatastore (line 4634) | func ExpandVmfsDatastore(ctx context.Context, r soap.RoundTripper, req *...
type ExpandVmfsExtentBody (line 4646) | type ExpandVmfsExtentBody struct
method Fault (line 4652) | func (b *ExpandVmfsExtentBody) Fault() *soap.Fault { return b.Fault_ }
function ExpandVmfsExtent (line 4654) | func ExpandVmfsExtent(ctx context.Context, r soap.RoundTripper, req *typ...
type ExportAnswerFile_TaskBody (line 4666) | type ExportAnswerFile_TaskBody struct
method Fault (line 4672) | func (b *ExportAnswerFile_TaskBody) Fault() *soap.Fault { return b.Fau...
function ExportAnswerFile_Task (line 4674) | func ExportAnswerFile_Task(ctx context.Context, r soap.RoundTripper, req...
type ExportProfileBody (line 4686) | type ExportProfileBody struct
method Fault (line 4692) | func (b *ExportProfileBody) Fault() *soap.Fault { return b.Fault_ }
function ExportProfile (line 4694) | func ExportProfile(ctx context.Context, r soap.RoundTripper, req *types....
type ExportSnapshotBody (line 4706) | type ExportSnapshotBody struct
method Fault (line 4712) | func (b *ExportSnapshotBody) Fault() *soap.Fault { return b.Fault_ }
function ExportSnapshot (line 4714) | func ExportSnapshot(ctx context.Context, r soap.RoundTripper, req *types...
type ExportVAppBody (line 4726) | type ExportVAppBody struct
method Fault (line 4732) | func (b *ExportVAppBody) Fault() *soap.Fault { return b.Fault_ }
function ExportVApp (line 4734) | func ExportVApp(ctx context.Context, r soap.RoundTripper, req *types.Exp...
type ExportVmBody (line 4746) | type ExportVmBody struct
method Fault (line 4752) | func (b *ExportVmBody) Fault() *soap.Fault { return b.Fault_ }
function ExportVm (line 4754) | func ExportVm(ctx context.Context, r soap.RoundTripper, req *types.Expor...
type ExtendDisk_TaskBody (line 4766) | type ExtendDisk_TaskBody struct
method Fault (line 4772) | func (b *ExtendDisk_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function ExtendDisk_Task (line 4774) | func ExtendDisk_Task(ctx context.Context, r soap.RoundTripper, req *type...
type ExtendVffsBody (line 4786) | type ExtendVffsBody struct
method Fault (line 4792) | func (b *ExtendVffsBody) Fault() *soap.Fault { return b.Fault_ }
function ExtendVffs (line 4794) | func ExtendVffs(ctx context.Context, r soap.RoundTripper, req *types.Ext...
type ExtendVirtualDisk_TaskBody (line 4806) | type ExtendVirtualDisk_TaskBody struct
method Fault (line 4812) | func (b *ExtendVirtualDisk_TaskBody) Fault() *soap.Fault { return b.Fa...
function ExtendVirtualDisk_Task (line 4814) | func ExtendVirtualDisk_Task(ctx context.Context, r soap.RoundTripper, re...
type ExtendVmfsDatastoreBody (line 4826) | type ExtendVmfsDatastoreBody struct
method Fault (line 4832) | func (b *ExtendVmfsDatastoreBody) Fault() *soap.Fault { return b.Fault_ }
function ExtendVmfsDatastore (line 4834) | func ExtendVmfsDatastore(ctx context.Context, r soap.RoundTripper, req *...
type ExtractOvfEnvironmentBody (line 4846) | type ExtractOvfEnvironmentBody struct
method Fault (line 4852) | func (b *ExtractOvfEnvironmentBody) Fault() *soap.Fault { return b.Fau...
function ExtractOvfEnvironment (line 4854) | func ExtractOvfEnvironment(ctx context.Context, r soap.RoundTripper, req...
type FetchDVPortKeysBody (line 4866) | type FetchDVPortKeysBody struct
method Fault (line 4872) | func (b *FetchDVPortKeysBody) Fault() *soap.Fault { return b.Fault_ }
function FetchDVPortKeys (line 4874) | func FetchDVPortKeys(ctx context.Context, r soap.RoundTripper, req *type...
type FetchDVPortsBody (line 4886) | type FetchDVPortsBody struct
method Fault (line 4892) | func (b *FetchDVPortsBody) Fault() *soap.Fault { return b.Fault_ }
function FetchDVPorts (line 4894) | func FetchDVPorts(ctx context.Context, r soap.RoundTripper, req *types.F...
type FetchSystemEventLogBody (line 4906) | type FetchSystemEventLogBody struct
method Fault (line 4912) | func (b *FetchSystemEventLogBody) Fault() *soap.Fault { return b.Fault_ }
function FetchSystemEventLog (line 4914) | func FetchSystemEventLog(ctx context.Context, r soap.RoundTripper, req *...
type FetchUserPrivilegeOnEntitiesBody (line 4926) | type FetchUserPrivilegeOnEntitiesBody struct
method Fault (line 4932) | func (b *FetchUserPrivilegeOnEntitiesBody) Fault() *soap.Fault { retur...
function FetchUserPrivilegeOnEntities (line 4934) | func FetchUserPrivilegeOnEntities(ctx context.Context, r soap.RoundTripp...
type FindAllByDnsNameBody (line 4946) | type FindAllByDnsNameBody struct
method Fault (line 4952) | func (b *FindAllByDnsNameBody) Fault() *soap.Fault { return b.Fault_ }
function FindAllByDnsName (line 4954) | func FindAllByDnsName(ctx context.Context, r soap.RoundTripper, req *typ...
type FindAllByIpBody (line 4966) | type FindAllByIpBody struct
method Fault (line 4972) | func (b *FindAllByIpBody) Fault() *soap.Fault { return b.Fault_ }
function FindAllByIp (line 4974) | func FindAllByIp(ctx context.Context, r soap.RoundTripper, req *types.Fi...
type FindAllByUuidBody (line 4986) | type FindAllByUuidBody struct
method Fault (line 4992) | func (b *FindAllByUuidBody) Fault() *soap.Fault { return b.Fault_ }
function FindAllByUuid (line 4994) | func FindAllByUuid(ctx context.Context, r soap.RoundTripper, req *types....
type FindAssociatedProfileBody (line 5006) | type FindAssociatedProfileBody struct
method Fault (line 5012) | func (b *FindAssociatedProfileBody) Fault() *soap.Fault { return b.Fau...
function FindAssociatedProfile (line 5014) | func FindAssociatedProfile(ctx context.Context, r soap.RoundTripper, req...
type FindByDatastorePathBody (line 5026) | type FindByDatastorePathBody struct
method Fault (line 5032) | func (b *FindByDatastorePathBody) Fault() *soap.Fault { return b.Fault_ }
function FindByDatastorePath (line 5034) | func FindByDatastorePath(ctx context.Context, r soap.RoundTripper, req *...
type FindByDnsNameBody (line 5046) | type FindByDnsNameBody struct
method Fault (line 5052) | func (b *FindByDnsNameBody) Fault() *soap.Fault { return b.Fault_ }
function FindByDnsName (line 5054) | func FindByDnsName(ctx context.Context, r soap.RoundTripper, req *types....
type FindByInventoryPathBody (line 5066) | type FindByInventoryPathBody struct
method Fault (line 5072) | func (b *FindByInventoryPathBody) Fault() *soap.Fault { return b.Fault_ }
function FindByInventoryPath (line 5074) | func FindByInventoryPath(ctx context.Context, r soap.RoundTripper, req *...
type FindByIpBody (line 5086) | type FindByIpBody struct
method Fault (line 5092) | func (b *FindByIpBody) Fault() *soap.Fault { return b.Fault_ }
function FindByIp (line 5094) | func FindByIp(ctx context.Context, r soap.RoundTripper, req *types.FindB...
type FindByUuidBody (line 5106) | type FindByUuidBody struct
method Fault (line 5112) | func (b *FindByUuidBody) Fault() *soap.Fault { return b.Fault_ }
function FindByUuid (line 5114) | func FindByUuid(ctx context.Context, r soap.RoundTripper, req *types.Fin...
type FindChildBody (line 5126) | type FindChildBody struct
method Fault (line 5132) | func (b *FindChildBody) Fault() *soap.Fault { return b.Fault_ }
function FindChild (line 5134) | func FindChild(ctx context.Context, r soap.RoundTripper, req *types.Find...
type FindExtensionBody (line 5146) | type FindExtensionBody struct
method Fault (line 5152) | func (b *FindExtensionBody) Fault() *soap.Fault { return b.Fault_ }
function FindExtension (line 5154) | func FindExtension(ctx context.Context, r soap.RoundTripper, req *types....
type FindRulesForVmBody (line 5166) | type FindRulesForVmBody struct
method Fault (line 5172) | func (b *FindRulesForVmBody) Fault() *soap.Fault { return b.Fault_ }
function FindRulesForVm (line 5174) | func FindRulesForVm(ctx context.Context, r soap.RoundTripper, req *types...
type FormatVffsBody (line 5186) | type FormatVffsBody struct
method Fault (line 5192) | func (b *FormatVffsBody) Fault() *soap.Fault { return b.Fault_ }
function FormatVffs (line 5194) | func FormatVffs(ctx context.Context, r soap.RoundTripper, req *types.For...
type FormatVmfsBody (line 5206) | type FormatVmfsBody struct
method Fault (line 5212) | func (b *FormatVmfsBody) Fault() *soap.Fault { return b.Fault_ }
function FormatVmfs (line 5214) | func FormatVmfs(ctx context.Context, r soap.RoundTripper, req *types.For...
type GenerateCertificateSigningRequestBody (line 5226) | type GenerateCertificateSigningRequestBody struct
method Fault (line 5232) | func (b *GenerateCertificateSigningRequestBody) Fault() *soap.Fault { ...
function GenerateCertificateSigningRequest (line 5234) | func GenerateCertificateSigningRequest(ctx context.Context, r soap.Round...
type GenerateCertificateSigningRequestByDnBody (line 5246) | type GenerateCertificateSigningRequestByDnBody struct
method Fault (line 5252) | func (b *GenerateCertificateSigningRequestByDnBody) Fault() *soap.Faul...
function GenerateCertificateSigningRequestByDn (line 5254) | func GenerateCertificateSigningRequestByDn(ctx context.Context, r soap.R...
type GenerateClientCsrBody (line 5266) | type GenerateClientCsrBody struct
method Fault (line 5272) | func (b *GenerateClientCsrBody) Fault() *soap.Fault { return b.Fault_ }
function GenerateClientCsr (line 5274) | func GenerateClientCsr(ctx context.Context, r soap.RoundTripper, req *ty...
type GenerateConfigTaskListBody (line 5286) | type GenerateConfigTaskListBody struct
method Fault (line 5292) | func (b *GenerateConfigTaskListBody) Fault() *soap.Fault { return b.Fa...
function GenerateConfigTaskList (line 5294) | func GenerateConfigTaskList(ctx context.Context, r soap.RoundTripper, re...
type GenerateHostConfigTaskSpec_TaskBody (line 5306) | type GenerateHostConfigTaskSpec_TaskBody struct
method Fault (line 5312) | func (b *GenerateHostConfigTaskSpec_TaskBody) Fault() *soap.Fault { re...
function GenerateHostConfigTaskSpec_Task (line 5314) | func GenerateHostConfigTaskSpec_Task(ctx context.Context, r soap.RoundTr...
type GenerateHostProfileTaskList_TaskBody (line 5326) | type GenerateHostProfileTaskList_TaskBody struct
method Fault (line 5332) | func (b *GenerateHostProfileTaskList_TaskBody) Fault() *soap.Fault { r...
function GenerateHostProfileTaskList_Task (line 5334) | func GenerateHostProfileTaskList_Task(ctx context.Context, r soap.RoundT...
type GenerateKeyBody (line 5346) | type GenerateKeyBody struct
method Fault (line 5352) | func (b *GenerateKeyBody) Fault() *soap.Fault { return b.Fault_ }
function GenerateKey (line 5354) | func GenerateKey(ctx context.Context, r soap.RoundTripper, req *types.Ge...
type GenerateLogBundles_TaskBody (line 5366) | type GenerateLogBundles_TaskBody struct
method Fault (line 5372) | func (b *GenerateLogBundles_TaskBody) Fault() *soap.Fault { return b.F...
function GenerateLogBundles_Task (line 5374) | func GenerateLogBundles_Task(ctx context.Context, r soap.RoundTripper, r...
type GenerateSelfSignedClientCertBody (line 5386) | type GenerateSelfSignedClientCertBody struct
method Fault (line 5392) | func (b *GenerateSelfSignedClientCertBody) Fault() *soap.Fault { retur...
function GenerateSelfSignedClientCert (line 5394) | func GenerateSelfSignedClientCert(ctx context.Context, r soap.RoundTripp...
type GetAlarmBody (line 5406) | type GetAlarmBody struct
method Fault (line 5412) | func (b *GetAlarmBody) Fault() *soap.Fault { return b.Fault_ }
function GetAlarm (line 5414) | func GetAlarm(ctx context.Context, r soap.RoundTripper, req *types.GetAl...
type GetAlarmStateBody (line 5426) | type GetAlarmStateBody struct
method Fault (line 5432) | func (b *GetAlarmStateBody) Fault() *soap.Fault { return b.Fault_ }
function GetAlarmState (line 5434) | func GetAlarmState(ctx context.Context, r soap.RoundTripper, req *types....
type GetCustomizationSpecBody (line 5446) | type GetCustomizationSpecBody struct
method Fault (line 5452) | func (b *GetCustomizationSpecBody) Fault() *soap.Fault { return b.Faul...
function GetCustomizationSpec (line 5454) | func GetCustomizationSpec(ctx context.Context, r soap.RoundTripper, req ...
type GetPublicKeyBody (line 5466) | type GetPublicKeyBody struct
method Fault (line 5472) | func (b *GetPublicKeyBody) Fault() *soap.Fault { return b.Fault_ }
function GetPublicKey (line 5474) | func GetPublicKey(ctx context.Context, r soap.RoundTripper, req *types.G...
type GetResourceUsageBody (line 5486) | type GetResourceUsageBody struct
method Fault (line 5492) | func (b *GetResourceUsageBody) Fault() *soap.Fault { return b.Fault_ }
function GetResourceUsage (line 5494) | func GetResourceUsage(ctx context.Context, r soap.RoundTripper, req *typ...
type GetVchaClusterHealthBody (line 5506) | type GetVchaClusterHealthBody struct
method Fault (line 5512) | func (b *GetVchaClusterHealthBody) Fault() *soap.Fault { return b.Faul...
function GetVchaClusterHealth (line 5514) | func GetVchaClusterHealth(ctx context.Context, r soap.RoundTripper, req ...
type GetVsanObjExtAttrsBody (line 5526) | type GetVsanObjExtAttrsBody struct
method Fault (line 5532) | func (b *GetVsanObjExtAttrsBody) Fault() *soap.Fault { return b.Fault_ }
function GetVsanObjExtAttrs (line 5534) | func GetVsanObjExtAttrs(ctx context.Context, r soap.RoundTripper, req *t...
type HasMonitoredEntityBody (line 5546) | type HasMonitoredEntityBody struct
method Fault (line 5552) | func (b *HasMonitoredEntityBody) Fault() *soap.Fault { return b.Fault_ }
function HasMonitoredEntity (line 5554) | func HasMonitoredEntity(ctx context.Context, r soap.RoundTripper, req *t...
type HasPrivilegeOnEntitiesBody (line 5566) | type HasPrivilegeOnEntitiesBody struct
method Fault (line 5572) | func (b *HasPrivilegeOnEntitiesBody) Fault() *soap.Fault { return b.Fa...
function HasPrivilegeOnEntities (line 5574) | func HasPrivilegeOnEntities(ctx context.Context, r soap.RoundTripper, re...
type HasPrivilegeOnEntityBody (line 5586) | type HasPrivilegeOnEntityBody struct
method Fault (line 5592) | func (b *HasPrivilegeOnEntityBody) Fault() *soap.Fault { return b.Faul...
function HasPrivilegeOnEntity (line 5594) | func HasPrivilegeOnEntity(ctx context.Context, r soap.RoundTripper, req ...
type HasProviderBody (line 5606) | type HasProviderBody struct
method Fault (line 5612) | func (b *HasProviderBody) Fault() *soap.Fault { return b.Fault_ }
function HasProvider (line 5614) | func HasProvider(ctx context.Context, r soap.RoundTripper, req *types.Ha...
type HasUserPrivilegeOnEntitiesBody (line 5626) | type HasUserPrivilegeOnEntitiesBody struct
method Fault (line 5632) | func (b *HasUserPrivilegeOnEntitiesBody) Fault() *soap.Fault { return ...
function HasUserPrivilegeOnEntities (line 5634) | func HasUserPrivilegeOnEntities(ctx context.Context, r soap.RoundTripper...
type HostCloneVStorageObject_TaskBody (line 5646) | type HostCloneVStorageObject_TaskBody struct
method Fault (line 5652) | func (b *HostCloneVStorageObject_TaskBody) Fault() *soap.Fault { retur...
function HostCloneVStorageObject_Task (line 5654) | func HostCloneVStorageObject_Task(ctx context.Context, r soap.RoundTripp...
type HostConfigVFlashCacheBody (line 5666) | type HostConfigVFlashCacheBody struct
method Fault (line 5672) | func (b *HostConfigVFlashCacheBody) Fault() *soap.Fault { return b.Fau...
function HostConfigVFlashCache (line 5674) | func HostConfigVFlashCache(ctx context.Context, r soap.RoundTripper, req...
type HostConfigureVFlashResourceBody (line 5686) | type HostConfigureVFlashResourceBody struct
method Fault (line 5692) | func (b *HostConfigureVFlashResourceBody) Fault() *soap.Fault { return...
function HostConfigureVFlashResource (line 5694) | func HostConfigureVFlashResource(ctx context.Context, r soap.RoundTrippe...
type HostCreateDisk_TaskBody (line 5706) | type HostCreateDisk_TaskBody struct
method Fault (line 5712) | func (b *HostCreateDisk_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function HostCreateDisk_Task (line 5714) | func HostCreateDisk_Task(ctx context.Context, r soap.RoundTripper, req *...
type HostDeleteVStorageObject_TaskBody (line 5726) | type HostDeleteVStorageObject_TaskBody struct
method Fault (line 5732) | func (b *HostDeleteVStorageObject_TaskBody) Fault() *soap.Fault { retu...
function HostDeleteVStorageObject_Task (line 5734) | func HostDeleteVStorageObject_Task(ctx context.Context, r soap.RoundTrip...
type HostExtendDisk_TaskBody (line 5746) | type HostExtendDisk_TaskBody struct
method Fault (line 5752) | func (b *HostExtendDisk_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function HostExtendDisk_Task (line 5754) | func HostExtendDisk_Task(ctx context.Context, r soap.RoundTripper, req *...
type HostGetVFlashModuleDefaultConfigBody (line 5766) | type HostGetVFlashModuleDefaultConfigBody struct
method Fault (line 5772) | func (b *HostGetVFlashModuleDefaultConfigBody) Fault() *soap.Fault { r...
function HostGetVFlashModuleDefaultConfig (line 5774) | func HostGetVFlashModuleDefaultConfig(ctx context.Context, r soap.RoundT...
type HostImageConfigGetAcceptanceBody (line 5786) | type HostImageConfigGetAcceptanceBody struct
method Fault (line 5792) | func (b *HostImageConfigGetAcceptanceBody) Fault() *soap.Fault { retur...
function HostImageConfigGetAcceptance (line 5794) | func HostImageConfigGetAcceptance(ctx context.Context, r soap.RoundTripp...
type HostImageConfigGetProfileBody (line 5806) | type HostImageConfigGetProfileBody struct
method Fault (line 5812) | func (b *HostImageConfigGetProfileBody) Fault() *soap.Fault { return b...
function HostImageConfigGetProfile (line 5814) | func HostImageConfigGetProfile(ctx context.Context, r soap.RoundTripper,...
type HostInflateDisk_TaskBody (line 5826) | type HostInflateDisk_TaskBody struct
method Fault (line 5832) | func (b *HostInflateDisk_TaskBody) Fault() *soap.Fault { return b.Faul...
function HostInflateDisk_Task (line 5834) | func HostInflateDisk_Task(ctx context.Context, r soap.RoundTripper, req ...
type HostListVStorageObjectBody (line 5846) | type HostListVStorageObjectBody struct
method Fault (line 5852) | func (b *HostListVStorageObjectBody) Fault() *soap.Fault { return b.Fa...
function HostListVStorageObject (line 5854) | func HostListVStorageObject(ctx context.Context, r soap.RoundTripper, re...
type HostReconcileDatastoreInventory_TaskBody (line 5866) | type HostReconcileDatastoreInventory_TaskBody struct
method Fault (line 5872) | func (b *HostReconcileDatastoreInventory_TaskBody) Fault() *soap.Fault...
function HostReconcileDatastoreInventory_Task (line 5874) | func HostReconcileDatastoreInventory_Task(ctx context.Context, r soap.Ro...
type HostRegisterDiskBody (line 5886) | type HostRegisterDiskBody struct
method Fault (line 5892) | func (b *HostRegisterDiskBody) Fault() *soap.Fault { return b.Fault_ }
function HostRegisterDisk (line 5894) | func HostRegisterDisk(ctx context.Context, r soap.RoundTripper, req *typ...
type HostRelocateVStorageObject_TaskBody (line 5906) | type HostRelocateVStorageObject_TaskBody struct
method Fault (line 5912) | func (b *HostRelocateVStorageObject_TaskBody) Fault() *soap.Fault { re...
function HostRelocateVStorageObject_Task (line 5914) | func HostRelocateVStorageObject_Task(ctx context.Context, r soap.RoundTr...
type HostRemoveVFlashResourceBody (line 5926) | type HostRemoveVFlashResourceBody struct
method Fault (line 5932) | func (b *HostRemoveVFlashResourceBody) Fault() *soap.Fault { return b....
function HostRemoveVFlashResource (line 5934) | func HostRemoveVFlashResource(ctx context.Context, r soap.RoundTripper, ...
type HostRenameVStorageObjectBody (line 5946) | type HostRenameVStorageObjectBody struct
method Fault (line 5952) | func (b *HostRenameVStorageObjectBody) Fault() *soap.Fault { return b....
function HostRenameVStorageObject (line 5954) | func HostRenameVStorageObject(ctx context.Context, r soap.RoundTripper, ...
type HostRetrieveVStorageObjectBody (line 5966) | type HostRetrieveVStorageObjectBody struct
method Fault (line 5972) | func (b *HostRetrieveVStorageObjectBody) Fault() *soap.Fault { return ...
function HostRetrieveVStorageObject (line 5974) | func HostRetrieveVStorageObject(ctx context.Context, r soap.RoundTripper...
type HostRetrieveVStorageObjectStateBody (line 5986) | type HostRetrieveVStorageObjectStateBody struct
method Fault (line 5992) | func (b *HostRetrieveVStorageObjectStateBody) Fault() *soap.Fault { re...
function HostRetrieveVStorageObjectState (line 5994) | func HostRetrieveVStorageObjectState(ctx context.Context, r soap.RoundTr...
type HostScheduleReconcileDatastoreInventoryBody (line 6006) | type HostScheduleReconcileDatastoreInventoryBody struct
method Fault (line 6012) | func (b *HostScheduleReconcileDatastoreInventoryBody) Fault() *soap.Fa...
function HostScheduleReconcileDatastoreInventory (line 6014) | func HostScheduleReconcileDatastoreInventory(ctx context.Context, r soap...
type HostSpecGetUpdatedHostsBody (line 6026) | type HostSpecGetUpdatedHostsBody struct
method Fault (line 6032) | func (b *HostSpecGetUpdatedHostsBody) Fault() *soap.Fault { return b.F...
function HostSpecGetUpdatedHosts (line 6034) | func HostSpecGetUpdatedHosts(ctx context.Context, r soap.RoundTripper, r...
type HttpNfcLeaseAbortBody (line 6046) | type HttpNfcLeaseAbortBody struct
method Fault (line 6052) | func (b *HttpNfcLeaseAbortBody) Fault() *soap.Fault { return b.Fault_ }
function HttpNfcLeaseAbort (line 6054) | func HttpNfcLeaseAbort(ctx context.Context, r soap.RoundTripper, req *ty...
type HttpNfcLeaseCompleteBody (line 6066) | type HttpNfcLeaseCompleteBody struct
method Fault (line 6072) | func (b *HttpNfcLeaseCompleteBody) Fault() *soap.Fault { return b.Faul...
function HttpNfcLeaseComplete (line 6074) | func HttpNfcLeaseComplete(ctx context.Context, r soap.RoundTripper, req ...
type HttpNfcLeaseGetManifestBody (line 6086) | type HttpNfcLeaseGetManifestBody struct
method Fault (line 6092) | func (b *HttpNfcLeaseGetManifestBody) Fault() *soap.Fault { return b.F...
function HttpNfcLeaseGetManifest (line 6094) | func HttpNfcLeaseGetManifest(ctx context.Context, r soap.RoundTripper, r...
type HttpNfcLeaseProgressBody (line 6106) | type HttpNfcLeaseProgressBody struct
method Fault (line 6112) | func (b *HttpNfcLeaseProgressBody) Fault() *soap.Fault { return b.Faul...
function HttpNfcLeaseProgress (line 6114) | func HttpNfcLeaseProgress(ctx context.Context, r soap.RoundTripper, req ...
type ImpersonateUserBody (line 6126) | type ImpersonateUserBody struct
method Fault (line 6132) | func (b *ImpersonateUserBody) Fault() *soap.Fault { return b.Fault_ }
function ImpersonateUser (line 6134) | func ImpersonateUser(ctx context.Context, r soap.RoundTripper, req *type...
type ImportCertificateForCAM_TaskBody (line 6146) | type ImportCertificateForCAM_TaskBody struct
method Fault (line 6152) | func (b *ImportCertificateForCAM_TaskBody) Fault() *soap.Fault { retur...
function ImportCertificateForCAM_Task (line 6154) | func ImportCertificateForCAM_Task(ctx context.Context, r soap.RoundTripp...
type ImportUnmanagedSnapshotBody (line 6166) | type ImportUnmanagedSnapshotBody struct
method Fault (line 6172) | func (b *ImportUnmanagedSnapshotBody) Fault() *soap.Fault { return b.F...
function ImportUnmanagedSnapshot (line 6174) | func ImportUnmanagedSnapshot(ctx context.Context, r soap.RoundTripper, r...
type ImportVAppBody (line 6186) | type ImportVAppBody struct
method Fault (line 6192) | func (b *ImportVAppBody) Fault() *soap.Fault { return b.Fault_ }
function ImportVApp (line 6194) | func ImportVApp(ctx context.Context, r soap.RoundTripper, req *types.Imp...
type InflateDisk_TaskBody (line 6206) | type InflateDisk_TaskBody struct
method Fault (line 6212) | func (b *InflateDisk_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function InflateDisk_Task (line 6214) | func InflateDisk_Task(ctx context.Context, r soap.RoundTripper, req *typ...
type InflateVirtualDisk_TaskBody (line 6226) | type InflateVirtualDisk_TaskBody struct
method Fault (line 6232) | func (b *InflateVirtualDisk_TaskBody) Fault() *soap.Fault { return b.F...
function InflateVirtualDisk_Task (line 6234) | func InflateVirtualDisk_Task(ctx context.Context, r soap.RoundTripper, r...
type InitializeDisks_TaskBody (line 6246) | type InitializeDisks_TaskBody struct
method Fault (line 6252) | func (b *InitializeDisks_TaskBody) Fault() *soap.Fault { return b.Faul...
function InitializeDisks_Task (line 6254) | func InitializeDisks_Task(ctx context.Context, r soap.RoundTripper, req ...
type InitiateFileTransferFromGuestBody (line 6266) | type InitiateFileTransferFromGuestBody struct
method Fault (line 6272) | func (b *InitiateFileTransferFromGuestBody) Fault() *soap.Fault { retu...
function InitiateFileTransferFromGuest (line 6274) | func InitiateFileTransferFromGuest(ctx context.Context, r soap.RoundTrip...
type InitiateFileTransferToGuestBody (line 6286) | type InitiateFileTransferToGuestBody struct
method Fault (line 6292) | func (b *InitiateFileTransferToGuestBody) Fault() *soap.Fault { return...
function InitiateFileTransferToGuest (line 6294) | func InitiateFileTransferToGuest(ctx context.Context, r soap.RoundTrippe...
type InstallHostPatchV2_TaskBody (line 6306) | type InstallHostPatchV2_TaskBody struct
method Fault (line 6312) | func (b *InstallHostPatchV2_TaskBody) Fault() *soap.Fault { return b.F...
function InstallHostPatchV2_Task (line 6314) | func InstallHostPatchV2_Task(ctx context.Context, r soap.RoundTripper, r...
type InstallHostPatch_TaskBody (line 6326) | type InstallHostPatch_TaskBody struct
method Fault (line 6332) | func (b *InstallHostPatch_TaskBody) Fault() *soap.Fault { return b.Fau...
function InstallHostPatch_Task (line 6334) | func InstallHostPatch_Task(ctx context.Context, r soap.RoundTripper, req...
type InstallIoFilter_TaskBody (line 6346) | type InstallIoFilter_TaskBody struct
method Fault (line 6352) | func (b *InstallIoFilter_TaskBody) Fault() *soap.Fault { return b.Faul...
function InstallIoFilter_Task (line 6354) | func InstallIoFilter_Task(ctx context.Context, r soap.RoundTripper, req ...
type InstallServerCertificateBody (line 6366) | type InstallServerCertificateBody struct
method Fault (line 6372) | func (b *InstallServerCertificateBody) Fault() *soap.Fault { return b....
function InstallServerCertificate (line 6374) | func InstallServerCertificate(ctx context.Context, r soap.RoundTripper, ...
type InstallSmartCardTrustAnchorBody (line 6386) | type InstallSmartCardTrustAnchorBody struct
method Fault (line 6392) | func (b *InstallSmartCardTrustAnchorBody) Fault() *soap.Fault { return...
function InstallSmartCardTrustAnchor (line 6394) | func InstallSmartCardTrustAnchor(ctx context.Context, r soap.RoundTrippe...
type IsSharedGraphicsActiveBody (line 6406) | type IsSharedGraphicsActiveBody struct
method Fault (line 6412) | func (b *IsSharedGraphicsActiveBody) Fault() *soap.Fault { return b.Fa...
function IsSharedGraphicsActive (line 6414) | func IsSharedGraphicsActive(ctx context.Context, r soap.RoundTripper, re...
type JoinDomainWithCAM_TaskBody (line 6426) | type JoinDomainWithCAM_TaskBody struct
method Fault (line 6432) | func (b *JoinDomainWithCAM_TaskBody) Fault() *soap.Fault { return b.Fa...
function JoinDomainWithCAM_Task (line 6434) | func JoinDomainWithCAM_Task(ctx context.Context, r soap.RoundTripper, re...
type JoinDomain_TaskBody (line 6446) | type JoinDomain_TaskBody struct
method Fault (line 6452) | func (b *JoinDomain_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function JoinDomain_Task (line 6454) | func JoinDomain_Task(ctx context.Context, r soap.RoundTripper, req *type...
type LeaveCurrentDomain_TaskBody (line 6466) | type LeaveCurrentDomain_TaskBody struct
method Fault (line 6472) | func (b *LeaveCurrentDomain_TaskBody) Fault() *soap.Fault { return b.F...
function LeaveCurrentDomain_Task (line 6474) | func LeaveCurrentDomain_Task(ctx context.Context, r soap.RoundTripper, r...
type ListCACertificateRevocationListsBody (line 6486) | type ListCACertificateRevocationListsBody struct
method Fault (line 6492) | func (b *ListCACertificateRevocationListsBody) Fault() *soap.Fault { r...
function ListCACertificateRevocationLists (line 6494) | func ListCACertificateRevocationLists(ctx context.Context, r soap.RoundT...
type ListCACertificatesBody (line 6506) | type ListCACertificatesBody struct
method Fault (line 6512) | func (b *ListCACertificatesBody) Fault() *soap.Fault { return b.Fault_ }
function ListCACertificates (line 6514) | func ListCACertificates(ctx context.Context, r soap.RoundTripper, req *t...
type ListFilesInGuestBody (line 6526) | type ListFilesInGuestBody struct
method Fault (line 6532) | func (b *ListFilesInGuestBody) Fault() *soap.Fault { return b.Fault_ }
function ListFilesInGuest (line 6534) | func ListFilesInGuest(ctx context.Context, r soap.RoundTripper, req *typ...
type ListGuestAliasesBody (line 6546) | type ListGuestAliasesBody struct
method Fault (line 6552) | func (b *ListGuestAliasesBody) Fault() *soap.Fault { return b.Fault_ }
function ListGuestAliases (line 6554) | func ListGuestAliases(ctx context.Context, r soap.RoundTripper, req *typ...
type ListGuestMappedAliasesBody (line 6566) | type ListGuestMappedAliasesBody struct
method Fault (line 6572) | func (b *ListGuestMappedAliasesBody) Fault() *soap.Fault { return b.Fa...
function ListGuestMappedAliases (line 6574) | func ListGuestMappedAliases(ctx context.Context, r soap.RoundTripper, re...
type ListKeysBody (line 6586) | type ListKeysBody struct
method Fault (line 6592) | func (b *ListKeysBody) Fault() *soap.Fault { return b.Fault_ }
function ListKeys (line 6594) | func ListKeys(ctx context.Context, r soap.RoundTripper, req *types.ListK...
type ListKmipServersBody (line 6606) | type ListKmipServersBody struct
method Fault (line 6612) | func (b *ListKmipServersBody) Fault() *soap.Fault { return b.Fault_ }
function ListKmipServers (line 6614) | func ListKmipServers(ctx context.Context, r soap.RoundTripper, req *type...
type ListProcessesInGuestBody (line 6626) | type ListProcessesInGuestBody struct
method Fault (line 6632) | func (b *ListProcessesInGuestBody) Fault() *soap.Fault { return b.Faul...
function ListProcessesInGuest (line 6634) | func ListProcessesInGuest(ctx context.Context, r soap.RoundTripper, req ...
type ListRegistryKeysInGuestBody (line 6646) | type ListRegistryKeysInGuestBody struct
method Fault (line 6652) | func (b *ListRegistryKeysInGuestBody) Fault() *soap.Fault { return b.F...
function ListRegistryKeysInGuest (line 6654) | func ListRegistryKeysInGuest(ctx context.Context, r soap.RoundTripper, r...
type ListRegistryValuesInGuestBody (line 6666) | type ListRegistryValuesInGuestBody struct
method Fault (line 6672) | func (b *ListRegistryValuesInGuestBody) Fault() *soap.Fault { return b...
function ListRegistryValuesInGuest (line 6674) | func ListRegistryValuesInGuest(ctx context.Context, r soap.RoundTripper,...
type ListSmartCardTrustAnchorsBody (line 6686) | type ListSmartCardTrustAnchorsBody struct
method Fault (line 6692) | func (b *ListSmartCardTrustAnchorsBody) Fault() *soap.Fault { return b...
function ListSmartCardTrustAnchors (line 6694) | func ListSmartCardTrustAnchors(ctx context.Context, r soap.RoundTripper,...
type ListTagsAttachedToVStorageObjectBody (line 6706) | type ListTagsAttachedToVStorageObjectBody struct
method Fault (line 6712) | func (b *ListTagsAttachedToVStorageObjectBody) Fault() *soap.Fault { r...
function ListTagsAttachedToVStorageObject (line 6714) | func ListTagsAttachedToVStorageObject(ctx context.Context, r soap.RoundT...
type ListVStorageObjectBody (line 6726) | type ListVStorageObjectBody struct
method Fault (line 6732) | func (b *ListVStorageObjectBody) Fault() *soap.Fault { return b.Fault_ }
function ListVStorageObject (line 6734) | func ListVStorageObject(ctx context.Context, r soap.RoundTripper, req *t...
type ListVStorageObjectsAttachedToTagBody (line 6746) | type ListVStorageObjectsAttachedToTagBody struct
method Fault (line 6752) | func (b *ListVStorageObjectsAttachedToTagBody) Fault() *soap.Fault { r...
function ListVStorageObjectsAttachedToTag (line 6754) | func ListVStorageObjectsAttachedToTag(ctx context.Context, r soap.RoundT...
type LogUserEventBody (line 6766) | type LogUserEventBody struct
method Fault (line 6772) | func (b *LogUserEventBody) Fault() *soap.Fault { return b.Fault_ }
function LogUserEvent (line 6774) | func LogUserEvent(ctx context.Context, r soap.RoundTripper, req *types.L...
type LoginBody (line 6786) | type LoginBody struct
method Fault (line 6792) | func (b *LoginBody) Fault() *soap.Fault { return b.Fault_ }
function Login (line 6794) | func Login(ctx context.Context, r soap.RoundTripper, req *types.Login) (...
type LoginBySSPIBody (line 6806) | type LoginBySSPIBody struct
method Fault (line 6812) | func (b *LoginBySSPIBody) Fault() *soap.Fault { return b.Fault_ }
function LoginBySSPI (line 6814) | func LoginBySSPI(ctx context.Context, r soap.RoundTripper, req *types.Lo...
type LoginByTokenBody (line 6826) | type LoginByTokenBody struct
method Fault (line 6832) | func (b *LoginByTokenBody) Fault() *soap.Fault { return b.Fault_ }
function LoginByToken (line 6834) | func LoginByToken(ctx context.Context, r soap.RoundTripper, req *types.L...
type LoginExtensionByCertificateBody (line 6846) | type LoginExtensionByCertificateBody struct
method Fault (line 6852) | func (b *LoginExtensionByCertificateBody) Fault() *soap.Fault { return...
function LoginExtensionByCertificate (line 6854) | func LoginExtensionByCertificate(ctx context.Context, r soap.RoundTrippe...
type LoginExtensionBySubjectNameBody (line 6866) | type LoginExtensionBySubjectNameBody struct
method Fault (line 6872) | func (b *LoginExtensionBySubjectNameBody) Fault() *soap.Fault { return...
function LoginExtensionBySubjectName (line 6874) | func LoginExtensionBySubjectName(ctx context.Context, r soap.RoundTrippe...
type LogoutBody (line 6886) | type LogoutBody struct
method Fault (line 6892) | func (b *LogoutBody) Fault() *soap.Fault { return b.Fault_ }
function Logout (line 6894) | func Logout(ctx context.Context, r soap.RoundTripper, req *types.Logout)...
type LookupDvPortGroupBody (line 6906) | type LookupDvPortGroupBody struct
method Fault (line 6912) | func (b *LookupDvPortGroupBody) Fault() *soap.Fault { return b.Fault_ }
function LookupDvPortGroup (line 6914) | func LookupDvPortGroup(ctx context.Context, r soap.RoundTripper, req *ty...
type LookupVmOverheadMemoryBody (line 6926) | type LookupVmOverheadMemoryBody struct
method Fault (line 6932) | func (b *LookupVmOverheadMemoryBody) Fault() *soap.Fault { return b.Fa...
function LookupVmOverheadMemory (line 6934) | func LookupVmOverheadMemory(ctx context.Context, r soap.RoundTripper, re...
type MakeDirectoryBody (line 6946) | type MakeDirectoryBody struct
method Fault (line 6952) | func (b *MakeDirectoryBody) Fault() *soap.Fault { return b.Fault_ }
function MakeDirectory (line 6954) | func MakeDirectory(ctx context.Context, r soap.RoundTripper, req *types....
type MakeDirectoryInGuestBody (line 6966) | type MakeDirectoryInGuestBody struct
method Fault (line 6972) | func (b *MakeDirectoryInGuestBody) Fault() *soap.Fault { return b.Faul...
function MakeDirectoryInGuest (line 6974) | func MakeDirectoryInGuest(ctx context.Context, r soap.RoundTripper, req ...
type MakePrimaryVM_TaskBody (line 6986) | type MakePrimaryVM_TaskBody struct
method Fault (line 6992) | func (b *MakePrimaryVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function MakePrimaryVM_Task (line 6994) | func MakePrimaryVM_Task(ctx context.Context, r soap.RoundTripper, req *t...
type MarkAsLocal_TaskBody (line 7006) | type MarkAsLocal_TaskBody struct
method Fault (line 7012) | func (b *MarkAsLocal_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function MarkAsLocal_Task (line 7014) | func MarkAsLocal_Task(ctx context.Context, r soap.RoundTripper, req *typ...
type MarkAsNonLocal_TaskBody (line 7026) | type MarkAsNonLocal_TaskBody struct
method Fault (line 7032) | func (b *MarkAsNonLocal_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function MarkAsNonLocal_Task (line 7034) | func MarkAsNonLocal_Task(ctx context.Context, r soap.RoundTripper, req *...
type MarkAsNonSsd_TaskBody (line 7046) | type MarkAsNonSsd_TaskBody struct
method Fault (line 7052) | func (b *MarkAsNonSsd_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function MarkAsNonSsd_Task (line 7054) | func MarkAsNonSsd_Task(ctx context.Context, r soap.RoundTripper, req *ty...
type MarkAsSsd_TaskBody (line 7066) | type MarkAsSsd_TaskBody struct
method Fault (line 7072) | func (b *MarkAsSsd_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function MarkAsSsd_Task (line 7074) | func MarkAsSsd_Task(ctx context.Context, r soap.RoundTripper, req *types...
type MarkAsTemplateBody (line 7086) | type MarkAsTemplateBody struct
method Fault (line 7092) | func (b *MarkAsTemplateBody) Fault() *soap.Fault { return b.Fault_ }
function MarkAsTemplate (line 7094) | func MarkAsTemplate(ctx context.Context, r soap.RoundTripper, req *types...
type MarkAsVirtualMachineBody (line 7106) | type MarkAsVirtualMachineBody struct
method Fault (line 7112) | func (b *MarkAsVirtualMachineBody) Fault() *soap.Fault { return b.Faul...
function MarkAsVirtualMachine (line 7114) | func MarkAsVirtualMachine(ctx context.Context, r soap.RoundTripper, req ...
type MarkDefaultBody (line 7126) | type MarkDefaultBody struct
method Fault (line 7132) | func (b *MarkDefaultBody) Fault() *soap.Fault { return b.Fault_ }
function MarkDefault (line 7134) | func MarkDefault(ctx context.Context, r soap.RoundTripper, req *types.Ma...
type MarkForRemovalBody (line 7146) | type MarkForRemovalBody struct
method Fault (line 7152) | func (b *MarkForRemovalBody) Fault() *soap.Fault { return b.Fault_ }
function MarkForRemoval (line 7154) | func MarkForRemoval(ctx context.Context, r soap.RoundTripper, req *types...
type MergeDvs_TaskBody (line 7166) | type MergeDvs_TaskBody struct
method Fault (line 7172) | func (b *MergeDvs_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function MergeDvs_Task (line 7174) | func MergeDvs_Task(ctx context.Context, r soap.RoundTripper, req *types....
type MergePermissionsBody (line 7186) | type MergePermissionsBody struct
method Fault (line 7192) | func (b *MergePermissionsBody) Fault() *soap.Fault { return b.Fault_ }
function MergePermissions (line 7194) | func MergePermissions(ctx context.Context, r soap.RoundTripper, req *typ...
type MigrateVM_TaskBody (line 7206) | type MigrateVM_TaskBody struct
method Fault (line 7212) | func (b *MigrateVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function MigrateVM_Task (line 7214) | func MigrateVM_Task(ctx context.Context, r soap.RoundTripper, req *types...
type ModifyListViewBody (line 7226) | type ModifyListViewBody struct
method Fault (line 7232) | func (b *ModifyListViewBody) Fault() *soap.Fault { return b.Fault_ }
function ModifyListView (line 7234) | func ModifyListView(ctx context.Context, r soap.RoundTripper, req *types...
type MountToolsInstallerBody (line 7246) | type MountToolsInstallerBody struct
method Fault (line 7252) | func (b *MountToolsInstallerBody) Fault() *soap.Fault { return b.Fault_ }
function MountToolsInstaller (line 7254) | func MountToolsInstaller(ctx context.Context, r soap.RoundTripper, req *...
type MountVffsVolumeBody (line 7266) | type MountVffsVolumeBody struct
method Fault (line 7272) | func (b *MountVffsVolumeBody) Fault() *soap.Fault { return b.Fault_ }
function MountVffsVolume (line 7274) | func MountVffsVolume(ctx context.Context, r soap.RoundTripper, req *type...
type MountVmfsVolumeBody (line 7286) | type MountVmfsVolumeBody struct
method Fault (line 7292) | func (b *MountVmfsVolumeBody) Fault() *soap.Fault { return b.Fault_ }
function MountVmfsVolume (line 7294) | func MountVmfsVolume(ctx context.Context, r soap.RoundTripper, req *type...
type MountVmfsVolumeEx_TaskBody (line 7306) | type MountVmfsVolumeEx_TaskBody struct
method Fault (line 7312) | func (b *MountVmfsVolumeEx_TaskBody) Fault() *soap.Fault { return b.Fa...
function MountVmfsVolumeEx_Task (line 7314) | func MountVmfsVolumeEx_Task(ctx context.Context, r soap.RoundTripper, re...
type MoveDVPort_TaskBody (line 7326) | type MoveDVPort_TaskBody struct
method Fault (line 7332) | func (b *MoveDVPort_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function MoveDVPort_Task (line 7334) | func MoveDVPort_Task(ctx context.Context, r soap.RoundTripper, req *type...
type MoveDatastoreFile_TaskBody (line 7346) | type MoveDatastoreFile_TaskBody struct
method Fault (line 7352) | func (b *MoveDatastoreFile_TaskBody) Fault() *soap.Fault { return b.Fa...
function MoveDatastoreFile_Task (line 7354) | func MoveDatastoreFile_Task(ctx context.Context, r soap.RoundTripper, re...
type MoveDirectoryInGuestBody (line 7366) | type MoveDirectoryInGuestBody struct
method Fault (line 7372) | func (b *MoveDirectoryInGuestBody) Fault() *soap.Fault { return b.Faul...
function MoveDirectoryInGuest (line 7374) | func MoveDirectoryInGuest(ctx context.Context, r soap.RoundTripper, req ...
type MoveFileInGuestBody (line 7386) | type MoveFileInGuestBody struct
method Fault (line 7392) | func (b *MoveFileInGuestBody) Fault() *soap.Fault { return b.Fault_ }
function MoveFileInGuest (line 7394) | func MoveFileInGuest(ctx context.Context, r soap.RoundTripper, req *type...
type MoveHostInto_TaskBody (line 7406) | type MoveHostInto_TaskBody struct
method Fault (line 7412) | func (b *MoveHostInto_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function MoveHostInto_Task (line 7414) | func MoveHostInto_Task(ctx context.Context, r soap.RoundTripper, req *ty...
type MoveIntoFolder_TaskBody (line 7426) | type MoveIntoFolder_TaskBody struct
method Fault (line 7432) | func (b *MoveIntoFolder_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function MoveIntoFolder_Task (line 7434) | func MoveIntoFolder_Task(ctx context.Context, r soap.RoundTripper, req *...
type MoveIntoResourcePoolBody (line 7446) | type MoveIntoResourcePoolBody struct
method Fault (line 7452) | func (b *MoveIntoResourcePoolBody) Fault() *soap.Fault { return b.Faul...
function MoveIntoResourcePool (line 7454) | func MoveIntoResourcePool(ctx context.Context, r soap.RoundTripper, req ...
type MoveInto_TaskBody (line 7466) | type MoveInto_TaskBody struct
method Fault (line 7472) | func (b *MoveInto_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function MoveInto_Task (line 7474) | func MoveInto_Task(ctx context.Context, r soap.RoundTripper, req *types....
type MoveVirtualDisk_TaskBody (line 7486) | type MoveVirtualDisk_TaskBody struct
method Fault (line 7492) | func (b *MoveVirtualDisk_TaskBody) Fault() *soap.Fault { return b.Faul...
function MoveVirtualDisk_Task (line 7494) | func MoveVirtualDisk_Task(ctx context.Context, r soap.RoundTripper, req ...
type OpenInventoryViewFolderBody (line 7506) | type OpenInventoryViewFolderBody struct
method Fault (line 7512) | func (b *OpenInventoryViewFolderBody) Fault() *soap.Fault { return b.F...
function OpenInventoryViewFolder (line 7514) | func OpenInventoryViewFolder(ctx context.Context, r soap.RoundTripper, r...
type OverwriteCustomizationSpecBody (line 7526) | type OverwriteCustomizationSpecBody struct
method Fault (line 7532) | func (b *OverwriteCustomizationSpecBody) Fault() *soap.Fault { return ...
function OverwriteCustomizationSpec (line 7534) | func OverwriteCustomizationSpec(ctx context.Context, r soap.RoundTripper...
type ParseDescriptorBody (line 7546) | type ParseDescriptorBody struct
method Fault (line 7552) | func (b *ParseDescriptorBody) Fault() *soap.Fault { return b.Fault_ }
function ParseDescriptor (line 7554) | func ParseDescriptor(ctx context.Context, r soap.RoundTripper, req *type...
type PerformDvsProductSpecOperation_TaskBody (line 7566) | type PerformDvsProductSpecOperation_TaskBody struct
method Fault (line 7572) | func (b *PerformDvsProductSpecOperation_TaskBody) Fault() *soap.Fault ...
function PerformDvsProductSpecOperation_Task (line 7574) | func PerformDvsProductSpecOperation_Task(ctx context.Context, r soap.Rou...
type PerformVsanUpgradePreflightCheckBody (line 7586) | type PerformVsanUpgradePreflightCheckBody struct
method Fault (line 7592) | func (b *PerformVsanUpgradePreflightCheckBody) Fault() *soap.Fault { r...
function PerformVsanUpgradePreflightCheck (line 7594) | func PerformVsanUpgradePreflightCheck(ctx context.Context, r soap.RoundT...
type PerformVsanUpgrade_TaskBody (line 7606) | type PerformVsanUpgrade_TaskBody struct
method Fault (line 7612) | func (b *PerformVsanUpgrade_TaskBody) Fault() *soap.Fault { return b.F...
function PerformVsanUpgrade_Task (line 7614) | func PerformVsanUpgrade_Task(ctx context.Context, r soap.RoundTripper, r...
type PlaceVmBody (line 7626) | type PlaceVmBody struct
method Fault (line 7632) | func (b *PlaceVmBody) Fault() *soap.Fault { return b.Fault_ }
function PlaceVm (line 7634) | func PlaceVm(ctx context.Context, r soap.RoundTripper, req *types.PlaceV...
type PostEventBody (line 7646) | type PostEventBody struct
method Fault (line 7652) | func (b *PostEventBody) Fault() *soap.Fault { return b.Fault_ }
function PostEvent (line 7654) | func PostEvent(ctx context.Context, r soap.RoundTripper, req *types.Post...
type PostHealthUpdatesBody (line 7666) | type PostHealthUpdatesBody struct
method Fault (line 7672) | func (b *PostHealthUpdatesBody) Fault() *soap.Fault { return b.Fault_ }
function PostHealthUpdates (line 7674) | func PostHealthUpdates(ctx context.Context, r soap.RoundTripper, req *ty...
type PowerDownHostToStandBy_TaskBody (line 7686) | type PowerDownHostToStandBy_TaskBody struct
method Fault (line 7692) | func (b *PowerDownHostToStandBy_TaskBody) Fault() *soap.Fault { return...
function PowerDownHostToStandBy_Task (line 7694) | func PowerDownHostToStandBy_Task(ctx context.Context, r soap.RoundTrippe...
type PowerOffVApp_TaskBody (line 7706) | type PowerOffVApp_TaskBody struct
method Fault (line 7712) | func (b *PowerOffVApp_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function PowerOffVApp_Task (line 7714) | func PowerOffVApp_Task(ctx context.Context, r soap.RoundTripper, req *ty...
type PowerOffVM_TaskBody (line 7726) | type PowerOffVM_TaskBody struct
method Fault (line 7732) | func (b *PowerOffVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function PowerOffVM_Task (line 7734) | func PowerOffVM_Task(ctx context.Context, r soap.RoundTripper, req *type...
type PowerOnMultiVM_TaskBody (line 7746) | type PowerOnMultiVM_TaskBody struct
method Fault (line 7752) | func (b *PowerOnMultiVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function PowerOnMultiVM_Task (line 7754) | func PowerOnMultiVM_Task(ctx context.Context, r soap.RoundTripper, req *...
type PowerOnVApp_TaskBody (line 7766) | type PowerOnVApp_TaskBody struct
method Fault (line 7772) | func (b *PowerOnVApp_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function PowerOnVApp_Task (line 7774) | func PowerOnVApp_Task(ctx context.Context, r soap.RoundTripper, req *typ...
type PowerOnVM_TaskBody (line 7786) | type PowerOnVM_TaskBody struct
method Fault (line 7792) | func (b *PowerOnVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function PowerOnVM_Task (line 7794) | func PowerOnVM_Task(ctx context.Context, r soap.RoundTripper, req *types...
type PowerUpHostFromStandBy_TaskBody (line 7806) | type PowerUpHostFromStandBy_TaskBody struct
method Fault (line 7812) | func (b *PowerUpHostFromStandBy_TaskBody) Fault() *soap.Fault { return...
function PowerUpHostFromStandBy_Task (line 7814) | func PowerUpHostFromStandBy_Task(ctx context.Context, r soap.RoundTrippe...
type PrepareCryptoBody (line 7826) | type PrepareCryptoBody struct
method Fault (line 7832) | func (b *PrepareCryptoBody) Fault() *soap.Fault { return b.Fault_ }
function PrepareCrypto (line 7834) | func PrepareCrypto(ctx context.Context, r soap.RoundTripper, req *types....
type PromoteDisks_TaskBody (line 7846) | type PromoteDisks_TaskBody struct
method Fault (line 7852) | func (b *PromoteDisks_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function PromoteDisks_Task (line 7854) | func PromoteDisks_Task(ctx context.Context, r soap.RoundTripper, req *ty...
type PutUsbScanCodesBody (line 7866) | type PutUsbScanCodesBody struct
method Fault (line 7872) | func (b *PutUsbScanCodesBody) Fault() *soap.Fault { return b.Fault_ }
function PutUsbScanCodes (line 7874) | func PutUsbScanCodes(ctx context.Context, r soap.RoundTripper, req *type...
type QueryAnswerFileStatusBody (line 7886) | type QueryAnswerFileStatusBody struct
method Fault (line 7892) | func (b *QueryAnswerFileStatusBody) Fault() *soap.Fault { return b.Fau...
function QueryAnswerFileStatus (line 7894) | func QueryAnswerFileStatus(ctx context.Context, r soap.RoundTripper, req...
type QueryAssignedLicensesBody (line 7906) | type QueryAssignedLicensesBody struct
method Fault (line 7912) | func (b *QueryAssignedLicensesBody) Fault() *soap.Fault { return b.Fau...
function QueryAssignedLicenses (line 7914) | func QueryAssignedLicenses(ctx context.Context, r soap.RoundTripper, req...
type QueryAvailableDisksForVmfsBody (line 7926) | type QueryAvailableDisksForVmfsBody struct
method Fault (line 7932) | func (b *QueryAvailableDisksForVmfsBody) Fault() *soap.Fault { return ...
function QueryAvailableDisksForVmfs (line 7934) | func QueryAvailableDisksForVmfs(ctx context.Context, r soap.RoundTripper...
type QueryAvailableDvsSpecBody (line 7946) | type QueryAvailableDvsSpecBody struct
method Fault (line 7952) | func (b *QueryAvailableDvsSpecBody) Fault() *soap.Fault { return b.Fau...
function QueryAvailableDvsSpec (line 7954) | func QueryAvailableDvsSpec(ctx context.Context, r soap.RoundTripper, req...
type QueryAvailablePartitionBody (line 7966) | type QueryAvailablePartitionBody struct
method Fault (line 7972) | func (b *QueryAvailablePartitionBody) Fault() *soap.Fault { return b.F...
function QueryAvailablePartition (line 7974) | func QueryAvailablePartition(ctx context.Context, r soap.RoundTripper, r...
type QueryAvailablePerfMetricBody (line 7986) | type QueryAvailablePerfMetricBody struct
method Fault (line 7992) | func (b *QueryAvailablePerfMetricBody) Fault() *soap.Fault { return b....
function QueryAvailablePerfMetric (line 7994) | func QueryAvailablePerfMetric(ctx context.Context, r soap.RoundTripper, ...
type QueryAvailableSsdsBody (line 8006) | type QueryAvailableSsdsBody struct
method Fault (line 8012) | func (b *QueryAvailableSsdsBody) Fault() *soap.Fault { return b.Fault_ }
function QueryAvailableSsds (line 8014) | func QueryAvailableSsds(ctx context.Context, r soap.RoundTripper, req *t...
type QueryAvailableTimeZonesBody (line 8026) | type QueryAvailableTimeZonesBody struct
method Fault (line 8032) | func (b *QueryAvailableTimeZonesBody) Fault() *soap.Fault { return b.F...
function QueryAvailableTimeZones (line 8034) | func QueryAvailableTimeZones(ctx context.Context, r soap.RoundTripper, r...
type QueryBootDevicesBody (line 8046) | type QueryBootDevicesBody struct
method Fault (line 8052) | func (b *QueryBootDevicesBody) Fault() *soap.Fault { return b.Fault_ }
function QueryBootDevices (line 8054) | func QueryBootDevices(ctx context.Context, r soap.RoundTripper, req *typ...
type QueryBoundVnicsBody (line 8066) | type QueryBoundVnicsBody struct
method Fault (line 8072) | func (b *QueryBoundVnicsBody) Fault() *soap.Fault { return b.Fault_ }
function QueryBoundVnics (line 8074) | func QueryBoundVnics(ctx context.Context, r soap.RoundTripper, req *type...
type QueryCandidateNicsBody (line 8086) | type QueryCandidateNicsBody struct
method Fault (line 8092) | func (b *QueryCandidateNicsBody) Fault() *soap.Fault { return b.Fault_ }
function QueryCandidateNics (line 8094) | func QueryCandidateNics(ctx context.Context, r soap.RoundTripper, req *t...
type QueryChangedDiskAreasBody (line 8106) | type QueryChangedDiskAreasBody struct
method Fault (line 8112) | func (b *QueryChangedDiskAreasBody) Fault() *soap.Fault { return b.Fau...
function QueryChangedDiskAreas (line 8114) | func QueryChangedDiskAreas(ctx context.Context, r soap.RoundTripper, req...
type QueryCmmdsBody (line 8126) | type QueryCmmdsBody struct
method Fault (line 8132) | func (b *QueryCmmdsBody) Fault() *soap.Fault { return b.Fault_ }
function QueryCmmds (line 8134) | func QueryCmmds(ctx context.Context, r soap.RoundTripper, req *types.Que...
type QueryCompatibleHostForExistingDvsBody (line 8146) | type QueryCompatibleHostForExistingDvsBody struct
method Fault (line 8152) | func (b *QueryCompatibleHostForExistingDvsBody) Fault() *soap.Fault { ...
function QueryCompatibleHostForExistingDvs (line 8154) | func QueryCompatibleHostForExistingDvs(ctx context.Context, r soap.Round...
type QueryCompatibleHostForNewDvsBody (line 8166) | type QueryCompatibleHostForNewDvsBody struct
method Fault (line 8172) | func (b *QueryCompatibleHostForNewDvsBody) Fault() *soap.Fault { retur...
function QueryCompatibleHostForNewDvs (line 8174) | func QueryCompatibleHostForNewDvs(ctx context.Context, r soap.RoundTripp...
type QueryComplianceStatusBody (line 8186) | type QueryComplianceStatusBody struct
method Fault (line 8192) | func (b *QueryComplianceStatusBody) Fault() *soap.Fault { return b.Fau...
function QueryComplianceStatus (line 8194) | func QueryComplianceStatus(ctx context.Context, r soap.RoundTripper, req...
type QueryConfigOptionBody (line 8206) | type QueryConfigOptionBody struct
method Fault (line 8212) | func (b *QueryConfigOptionBody) Fault() *soap.Fault { return b.Fault_ }
function QueryConfigOption (line 8214) | func QueryConfigOption(ctx context.Context, r soap.RoundTripper, req *ty...
type QueryConfigOptionDescriptorBody (line 8226) | type QueryConfigOptionDescriptorBody struct
method Fault (line 8232) | func (b *QueryConfigOptionDescriptorBody) Fault() *soap.Fault { return...
function QueryConfigOptionDescriptor (line 8234) | func QueryConfigOptionDescriptor(ctx context.Context, r soap.RoundTrippe...
type QueryConfigOptionExBody (line 8246) | type QueryConfigOptionExBody struct
method Fault (line 8252) | func (b *QueryConfigOptionExBody) Fault() *soap.Fault { return b.Fault_ }
function QueryConfigOptionEx (line 8254) | func QueryConfigOptionEx(ctx context.Context, r soap.RoundTripper, req *...
type QueryConfigTargetBody (line 8266) | type QueryConfigTargetBody struct
method Fault (line 8272) | func (b *QueryConfigTargetBody) Fault() *soap.Fault { return b.Fault_ }
function QueryConfigTarget (line 8274) | func QueryConfigTarget(ctx context.Context, r soap.RoundTripper, req *ty...
type QueryConfiguredModuleOptionStringBody (line 8286) | type QueryConfiguredModuleOptionStringBody struct
method Fault (line 8292) | func (b *QueryConfiguredModuleOptionStringBody) Fault() *soap.Fault { ...
function QueryConfiguredModuleOptionString (line 8294) | func QueryConfiguredModuleOptionString(ctx context.Context, r soap.Round...
type QueryConnectionInfoBody (line 8306) | type QueryConnectionInfoBody struct
method Fault (line 8312) | func (b *QueryConnectionInfoBody) Fault() *soap.Fault { return b.Fault_ }
function QueryConnectionInfo (line 8314) | func QueryConnectionInfo(ctx context.Context, r soap.RoundTripper, req *...
type QueryConnectionInfoViaSpecBody (line 8326) | type QueryConnectionInfoViaSpecBody struct
method Fault (line 8332) | func (b *QueryConnectionInfoViaSpecBody) Fault() *soap.Fault { return ...
function QueryConnectionInfoViaSpec (line 8334) | func QueryConnectionInfoViaSpec(ctx context.Context, r soap.RoundTripper...
type QueryDatastorePerformanceSummaryBody (line 8346) | type QueryDatastorePerformanceSummaryBody struct
method Fault (line 8352) | func (b *QueryDatastorePerformanceSummaryBody) Fault() *soap.Fault { r...
function QueryDatastorePerformanceSummary (line 8354) | func QueryDatastorePerformanceSummary(ctx context.Context, r soap.RoundT...
type QueryDateTimeBody (line 8366) | type QueryDateTimeBody struct
method Fault (line 8372) | func (b *QueryDateTimeBody) Fault() *soap.Fault { return b.Fault_ }
function QueryDateTime (line 8374) | func QueryDateTime(ctx context.Context, r soap.RoundTripper, req *types....
type QueryDescriptionsBody (line 8386) | type QueryDescriptionsBody struct
method Fault (line 8392) | func (b *QueryDescriptionsBody) Fault() *soap.Fault { return b.Fault_ }
function QueryDescriptions (line 8394) | func QueryDescriptions(ctx context.Context, r soap.RoundTripper, req *ty...
type QueryDisksForVsanBody (line 8406) | type QueryDisksForVsanBody struct
method Fault (line 8412) | func (b *QueryDisksForVsanBody) Fault() *soap.Fault { return b.Fault_ }
function QueryDisksForVsan (line 8414) | func QueryDisksForVsan(ctx context.Context, r soap.RoundTripper, req *ty...
type QueryDisksUsingFilterBody (line 8426) | type QueryDisksUsingFilterBody struct
method Fault (line 8432) | func (b *QueryDisksUsingFilterBody) Fault() *soap.Fault { return b.Fau...
function QueryDisksUsingFilter (line 8434) | func QueryDisksUsingFilter(ctx context.Context, r soap.RoundTripper, req...
type QueryDvsByUuidBody (line 8446) | type QueryDvsByUuidBody struct
method Fault (line 8452) | func (b *QueryDvsByUuidBody) Fault() *soap.Fault { return b.Fault_ }
function QueryDvsByUuid (line 8454) | func QueryDvsByUuid(ctx context.Context, r soap.RoundTripper, req *types...
type QueryDvsCheckCompatibilityBody (line 8466) | type QueryDvsCheckCompatibilityBody struct
method Fault (line 8472) | func (b *QueryDvsCheckCompatibilityBody) Fault() *soap.Fault { return ...
function QueryDvsCheckCompatibility (line 8474) | func QueryDvsCheckCompatibility(ctx context.Context, r soap.RoundTripper...
type QueryDvsCompatibleHostSpecBody (line 8486) | type QueryDvsCompatibleHostSpecBody struct
method Fault (line 8492) | func (b *QueryDvsCompatibleHostSpecBody) Fault() *soap.Fault { return ...
function QueryDvsCompatibleHostSpec (line 8494) | func QueryDvsCompatibleHostSpec(ctx context.Context, r soap.RoundTripper...
type QueryDvsConfigTargetBody (line 8506) | type QueryDvsConfigTargetBody struct
method Fault (line 8512) | func (b *QueryDvsConfigTargetBody) Fault() *soap.Fault { return b.Faul...
function QueryDvsConfigTarget (line 8514) | func QueryDvsConfigTarget(ctx context.Context, r soap.RoundTripper, req ...
type QueryDvsFeatureCapabilityBody (line 8526) | type QueryDvsFeatureCapabilityBody struct
method Fault (line 8532) | func (b *QueryDvsFeatureCapabilityBody) Fault() *soap.Fault { return b...
function QueryDvsFeatureCapability (line 8534) | func QueryDvsFeatureCapability(ctx context.Context, r soap.RoundTripper,...
type QueryEventsBody (line 8546) | type QueryEventsBody struct
method Fault (line 8552) | func (b *QueryEventsBody) Fault() *soap.Fault { return b.Fault_ }
function QueryEvents (line 8554) | func QueryEvents(ctx context.Context, r soap.RoundTripper, req *types.Qu...
type QueryExpressionMetadataBody (line 8566) | type QueryExpressionMetadataBody struct
method Fault (line 8572) | func (b *QueryExpressionMetadataBody) Fault() *soap.Fault { return b.F...
function QueryExpressionMetadata (line 8574) | func QueryExpressionMetadata(ctx context.Context, r soap.RoundTripper, r...
type QueryExtensionIpAllocationUsageBody (line 8586) | type QueryExtensionIpAllocationUsageBody struct
method Fault (line 8592) | func (b *QueryExtensionIpAllocationUsageBody) Fault() *soap.Fault { re...
function QueryExtensionIpAllocationUsage (line 8594) | func QueryExtensionIpAllocationUsage(ctx context.Context, r soap.RoundTr...
type QueryFaultToleranceCompatibilityBody (line 8606) | type QueryFaultToleranceCompatibilityBody struct
method Fault (line 8612) | func (b *QueryFaultToleranceCompatibilityBody) Fault() *soap.Fault { r...
function QueryFaultToleranceCompatibility (line 8614) | func QueryFaultToleranceCompatibility(ctx context.Context, r soap.RoundT...
type QueryFaultToleranceCompatibilityExBody (line 8626) | type QueryFaultToleranceCompatibilityExBody struct
method Fault (line 8632) | func (b *QueryFaultToleranceCompatibilityExBody) Fault() *soap.Fault {...
function QueryFaultToleranceCompatibilityEx (line 8634) | func QueryFaultToleranceCompatibilityEx(ctx context.Context, r soap.Roun...
type QueryFilterEntitiesBody (line 8646) | type QueryFilterEntitiesBody struct
method Fault (line 8652) | func (b *QueryFilterEntitiesBody) Fault() *soap.Fault { return b.Fault_ }
function QueryFilterEntities (line 8654) | func QueryFilterEntities(ctx context.Context, r soap.RoundTripper, req *...
type QueryFilterInfoIdsBody (line 8666) | type QueryFilterInfoIdsBody struct
method Fault (line 8672) | func (b *QueryFilterInfoIdsBody) Fault() *soap.Fault { return b.Fault_ }
function QueryFilterInfoIds (line 8674) | func QueryFilterInfoIds(ctx context.Context, r soap.RoundTripper, req *t...
type QueryFilterListBody (line 8686) | type QueryFilterListBody struct
method Fault (line 8692) | func (b *QueryFilterListBody) Fault() *soap.Fault { return b.Fault_ }
function QueryFilterList (line 8694) | func QueryFilterList(ctx context.Context, r soap.RoundTripper, req *type...
type QueryFilterNameBody (line 8706) | type QueryFilterNameBody struct
method Fault (line 8712) | func (b *QueryFilterNameBody) Fault() *soap.Fault { return b.Fault_ }
function QueryFilterName (line 8714) | func QueryFilterName(ctx context.Context, r soap.RoundTripper, req *type...
type QueryFirmwareConfigUploadURLBody (line 8726) | type QueryFirmwareConfigUploadURLBody struct
method Fault (line 8732) | func (b *QueryFirmwareConfigUploadURLBody) Fault() *soap.Fault { retur...
function QueryFirmwareConfigUploadURL (line 8734) | func QueryFirmwareConfigUploadURL(ctx context.Context, r soap.RoundTripp...
type QueryHealthUpdateInfosBody (line 8746) | type QueryHealthUpdateInfosBody struct
method Fault (line 8752) | func (b *QueryHealthUpdateInfosBody) Fault() *soap.Fault { return b.Fa...
function QueryHealthUpdateInfos (line 8754) | func QueryHealthUpdateInfos(ctx context.Context, r soap.RoundTripper, re...
type QueryHealthUpdatesBody (line 8766) | type QueryHealthUpdatesBody struct
method Fault (line 8772) | func (b *QueryHealthUpdatesBody) Fault() *soap.Fault { return b.Fault_ }
function QueryHealthUpdates (line 8774) | func QueryHealthUpdates(ctx context.Context, r soap.RoundTripper, req *t...
type QueryHostConnectionInfoBody (line 8786) | type QueryHostConnectionInfoBody struct
method Fault (line 8792) | func (b *QueryHostConnectionInfoBody) Fault() *soap.Fault { return b.F...
function QueryHostConnectionInfo (line 8794) | func QueryHostConnectionInfo(ctx context.Context, r soap.RoundTripper, r...
type QueryHostPatch_TaskBody (line 8806) | type QueryHostPatch_TaskBody struct
method Fault (line 8812) | func (b *QueryHostPatch_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function QueryHostPatch_Task (line 8814) | func QueryHostPatch_Task(ctx context.Context, r soap.RoundTripper, req *...
type QueryHostProfileMetadataBody (line 8826) | type QueryHostProfileMetadataBody struct
method Fault (line 8832) | func (b *QueryHostProfileMetadataBody) Fault() *soap.Fault { return b....
function QueryHostProfileMetadata (line 8834) | func QueryHostProfileMetadata(ctx context.Context, r soap.RoundTripper, ...
type QueryHostStatusBody (line 8846) | type QueryHostStatusBody struct
method Fault (line 8852) | func (b *QueryHostStatusBody) Fault() *soap.Fault { return b.Fault_ }
function QueryHostStatus (line 8854) | func QueryHostStatus(ctx context.Context, r soap.RoundTripper, req *type...
type QueryIORMConfigOptionBody (line 8866) | type QueryIORMConfigOptionBody struct
method Fault (line 8872) | func (b *QueryIORMConfigOptionBody) Fault() *soap.Fault { return b.Fau...
function QueryIORMConfigOption (line 8874) | func QueryIORMConfigOption(ctx context.Context, r soap.RoundTripper, req...
type QueryIPAllocationsBody (line 8886) | type QueryIPAllocationsBody struct
method Fault (line 8892) | func (b *QueryIPAllocationsBody) Fault() *soap.Fault { return b.Fault_ }
function QueryIPAllocations (line 8894) | func QueryIPAllocations(ctx context.Context, r soap.RoundTripper, req *t...
type QueryIoFilterInfoBody (line 8906) | type QueryIoFilterInfoBody struct
method Fault (line 8912) | func (b *QueryIoFilterInfoBody) Fault() *soap.Fault { return b.Fault_ }
function QueryIoFilterInfo (line 8914) | func QueryIoFilterInfo(ctx context.Context, r soap.RoundTripper, req *ty...
type QueryIoFilterIssuesBody (line 8926) | type QueryIoFilterIssuesBody struct
method Fault (line 8932) | func (b *QueryIoFilterIssuesBody) Fault() *soap.Fault { return b.Fault_ }
function QueryIoFilterIssues (line 8934) | func QueryIoFilterIssues(ctx context.Context, r soap.RoundTripper, req *...
type QueryIpPoolsBody (line 8946) | type QueryIpPoolsBody struct
method Fault (line 8952) | func (b *QueryIpPoolsBody) Fault() *soap.Fault { return b.Fault_ }
function QueryIpPools (line 8954) | func QueryIpPools(ctx context.Context, r soap.RoundTripper, req *types.Q...
type QueryLicenseSourceAvailabilityBody (line 8966) | type QueryLicenseSourceAvailabilityBody struct
method Fault (line 8972) | func (b *QueryLicenseSourceAvailabilityBody) Fault() *soap.Fault { ret...
function QueryLicenseSourceAvailability (line 8974) | func QueryLicenseSourceAvailability(ctx context.Context, r soap.RoundTri...
type QueryLicenseUsageBody (line 8986) | type QueryLicenseUsageBody struct
method Fault (line 8992) | func (b *QueryLicenseUsageBody) Fault() *soap.Fault { return b.Fault_ }
function QueryLicenseUsage (line 8994) | func QueryLicenseUsage(ctx context.Context, r soap.RoundTripper, req *ty...
type QueryLockdownExceptionsBody (line 9006) | type QueryLockdownExceptionsBody struct
method Fault (line 9012) | func (b *QueryLockdownExceptionsBody) Fault() *soap.Fault { return b.F...
function QueryLockdownExceptions (line 9014) | func QueryLockdownExceptions(ctx context.Context, r soap.RoundTripper, r...
type QueryManagedByBody (line 9026) | type QueryManagedByBody struct
method Fault (line 9032) | func (b *QueryManagedByBody) Fault() *soap.Fault { return b.Fault_ }
function QueryManagedBy (line 9034) | func QueryManagedBy(ctx context.Context, r soap.RoundTripper, req *types...
type QueryMemoryOverheadBody (line 9046) | type QueryMemoryOverheadBody struct
method Fault (line 9052) | func (b *QueryMemoryOverheadBody) Fault() *soap.Fault { return b.Fault_ }
function QueryMemoryOverhead (line 9054) | func QueryMemoryOverhead(ctx context.Context, r soap.RoundTripper, req *...
type QueryMemoryOverheadExBody (line 9066) | type QueryMemoryOverheadExBody struct
method Fault (line 9072) | func (b *QueryMemoryOverheadExBody) Fault() *soap.Fault { return b.Fau...
function QueryMemoryOverheadEx (line 9074) | func QueryMemoryOverheadEx(ctx context.Context, r soap.RoundTripper, req...
type QueryMigrationDependenciesBody (line 9086) | type QueryMigrationDependenciesBody struct
method Fault (line 9092) | func (b *QueryMigrationDependenciesBody) Fault() *soap.Fault { return ...
function QueryMigrationDependencies (line 9094) | func QueryMigrationDependencies(ctx context.Context, r soap.RoundTripper...
type QueryModulesBody (line 9106) | type QueryModulesBody struct
method Fault (line 9112) | func (b *QueryModulesBody) Fault() *soap.Fault { return b.Fault_ }
function QueryModules (line 9114) | func QueryModules(ctx context.Context, r soap.RoundTripper, req *types.Q...
type QueryMonitoredEntitiesBody (line 9126) | type QueryMonitoredEntitiesBody struct
method Fault (line 9132) | func (b *QueryMonitoredEntitiesBody) Fault() *soap.Fault { return b.Fa...
function QueryMonitoredEntities (line 9134) | func QueryMonitoredEntities(ctx context.Context, r soap.RoundTripper, re...
type QueryNFSUserBody (line 9146) | type QueryNFSUserBody struct
method Fault (line 9152) | func (b *QueryNFSUserBody) Fault() *soap.Fault { return b.Fault_ }
function QueryNFSUser (line 9154) | func QueryNFSUser(ctx context.Context, r soap.RoundTripper, req *types.Q...
type QueryNetConfigBody (line 9166) | type QueryNetConfigBody struct
method Fault (line 9172) | func (b *QueryNetConfigBody) Fault() *soap.Fault { return b.Fault_ }
function QueryNetConfig (line 9174) | func QueryNetConfig(ctx context.Context, r soap.RoundTripper, req *types...
type QueryNetworkHintBody (line 9186) | type QueryNetworkHintBody struct
method Fault (line 9192) | func (b *QueryNetworkHintBody) Fault() *soap.Fault { return b.Fault_ }
function QueryNetworkHint (line 9194) | func QueryNetworkHint(ctx context.Context, r soap.RoundTripper, req *typ...
type QueryObjectsOnPhysicalVsanDiskBody (line 9206) | type QueryObjectsOnPhysicalVsanDiskBody struct
method Fault (line 9212) | func (b *QueryObjectsOnPhysicalVsanDiskBody) Fault() *soap.Fault { ret...
function QueryObjectsOnPhysicalVsanDisk (line 9214) | func QueryObjectsOnPhysicalVsanDisk(ctx context.Context, r soap.RoundTri...
type QueryOptionsBody (line 9226) | type QueryOptionsBody struct
method Fault (line 9232) | func (b *QueryOptionsBody) Fault() *soap.Fault { return b.Fault_ }
function QueryOptions (line 9234) | func QueryOptions(ctx context.Context, r soap.RoundTripper, req *types.Q...
type QueryPartitionCreateDescBody (line 9246) | type QueryPartitionCreateDescBody struct
method Fault (line 9252) | func (b *QueryPartitionCreateDescBody) Fault() *soap.Fault { return b....
function QueryPartitionCreateDesc (line 9254) | func QueryPartitionCreateDesc(ctx context.Context, r soap.RoundTripper, ...
type QueryPartitionCreateOptionsBody (line 9266) | type QueryPartitionCreateOptionsBody struct
method Fault (line 9272) | func (b *QueryPartitionCreateOptionsBody) Fault() *soap.Fault { return...
function QueryPartitionCreateOptions (line 9274) | func QueryPartitionCreateOptions(ctx context.Context, r soap.RoundTrippe...
type QueryPathSelectionPolicyOptionsBody (line 9286) | type QueryPathSelectionPolicyOptionsBody struct
method Fault (line 9292) | func (b *QueryPathSelectionPolicyOptionsBody) Fault() *soap.Fault { re...
function QueryPathSelectionPolicyOptions (line 9294) | func QueryPathSelectionPolicyOptions(ctx context.Context, r soap.RoundTr...
type QueryPerfBody (line 9306) | type QueryPerfBody struct
method Fault (line 9312) | func (b *QueryPerfBody) Fault() *soap.Fault { return b.Fault_ }
function QueryPerf (line 9314) | func QueryPerf(ctx context.Context, r soap.RoundTripper, req *types.Quer...
type QueryPerfCompositeBody (line 9326) | type QueryPerfCompositeBody struct
method Fault (line 9332) | func (b *QueryPerfCompositeBody) Fault() *soap.Fault { return b.Fault_ }
function QueryPerfComposite (line 9334) | func QueryPerfComposite(ctx context.Context, r soap.RoundTripper, req *t...
type QueryPerfCounterBody (line 9346) | type QueryPerfCounterBody struct
method Fault (line 9352) | func (b *QueryPerfCounterBody) Fault() *soap.Fault { return b.Fault_ }
function QueryPerfCounter (line 9354) | func QueryPerfCounter(ctx context.Context, r soap.RoundTripper, req *typ...
type QueryPerfCounterByLevelBody (line 9366) | type QueryPerfCounterByLevelBody struct
method Fault (line 9372) | func (b *QueryPerfCounterByLevelBody) Fault() *soap.Fault { return b.F...
function QueryPerfCounterByLevel (line 9374) | func QueryPerfCounterByLevel(ctx context.Context, r soap.RoundTripper, r...
type QueryPerfProviderSummaryBody (line 9386) | type QueryPerfProviderSummaryBody struct
method Fault (line 9392) | func (b *QueryPerfProviderSummaryBody) Fault() *soap.Fault { return b....
function QueryPerfProviderSummary (line 9394) | func QueryPerfProviderSummary(ctx context.Context, r soap.RoundTripper, ...
type QueryPhysicalVsanDisksBody (line 9406) | type QueryPhysicalVsanDisksBody struct
method Fault (line 9412) | func (b *QueryPhysicalVsanDisksBody) Fault() *soap.Fault { return b.Fa...
function QueryPhysicalVsanDisks (line 9414) | func QueryPhysicalVsanDisks(ctx context.Context, r soap.RoundTripper, re...
type QueryPnicStatusBody (line 9426) | type QueryPnicStatusBody struct
method Fault (line 9432) | func (b *QueryPnicStatusBody) Fault() *soap.Fault { return b.Fault_ }
function QueryPnicStatus (line 9434) | func QueryPnicStatus(ctx context.Context, r soap.RoundTripper, req *type...
type QueryPolicyMetadataBody (line 9446) | type QueryPolicyMetadataBody struct
method Fault (line 9452) | func (b *QueryPolicyMetadataBody) Fault() *soap.Fault { return b.Fault_ }
function QueryPolicyMetadata (line 9454) | func QueryPolicyMetadata(ctx context.Context, r soap.RoundTripper, req *...
type QueryProfileStructureBody (line 9466) | type QueryProfileStructureBody struct
method Fault (line 9472) | func (b *QueryProfileStructureBody) Fault() *soap.Fault { return b.Fau...
function QueryProfileStructure (line 9474) | func QueryProfileStructure(ctx context.Context, r soap.RoundTripper, req...
type QueryProviderListBody (line 9486) | type QueryProviderListBody struct
method Fault (line 9492) | func (b *QueryProviderListBody) Fault() *soap.Fault { return b.Fault_ }
function QueryProviderList (line 9494) | func QueryProviderList(ctx context.Context, r soap.RoundTripper, req *ty...
type QueryProviderNameBody (line 9506) | type QueryProviderNameBody struct
method Fault (line 9512) | func (b *QueryProviderNameBody) Fault() *soap.Fault { return b.Fault_ }
function QueryProviderName (line 9514) | func QueryProviderName(ctx context.Context, r soap.RoundTripper, req *ty...
type QueryResourceConfigOptionBody (line 9526) | type QueryResourceConfigOptionBody struct
method Fault (line 9532) | func (b *QueryResourceConfigOptionBody) Fault() *soap.Fault { return b...
function QueryResourceConfigOption (line 9534) | func QueryResourceConfigOption(ctx context.Context, r soap.RoundTripper,...
type QueryServiceListBody (line 9546) | type QueryServiceListBody struct
method Fault (line 9552) | func (b *QueryServiceListBody) Fault() *soap.Fault { return b.Fault_ }
function QueryServiceList (line 9554) | func QueryServiceList(ctx context.Context, r soap.RoundTripper, req *typ...
type QueryStorageArrayTypePolicyOptionsBody (line 9566) | type QueryStorageArrayTypePolicyOptionsBody struct
method Fault (line 9572) | func (b *QueryStorageArrayTypePolicyOptionsBody) Fault() *soap.Fault {...
function QueryStorageArrayTypePolicyOptions (line 9574) | func QueryStorageArrayTypePolicyOptions(ctx context.Context, r soap.Roun...
type QuerySupportedFeaturesBody (line 9586) | type QuerySupportedFeaturesBody struct
method Fault (line 9592) | func (b *QuerySupportedFeaturesBody) Fault() *soap.Fault { return b.Fa...
function QuerySupportedFeatures (line 9594) | func QuerySupportedFeatures(ctx context.Context, r soap.RoundTripper, re...
type QuerySyncingVsanObjectsBody (line 9606) | type QuerySyncingVsanObjectsBody struct
method Fault (line 9612) | func (b *QuerySyncingVsanObjectsBody) Fault() *soap.Fault { return b.F...
function QuerySyncingVsanObjects (line 9614) | func QuerySyncingVsanObjects(ctx context.Context, r soap.RoundTripper, r...
type QuerySystemUsersBody (line 9626) | type QuerySystemUsersBody struct
method Fault (line 9632) | func (b *QuerySystemUsersBody) Fault() *soap.Fault { return b.Fault_ }
function QuerySystemUsers (line 9634) | func QuerySystemUsers(ctx context.Context, r soap.RoundTripper, req *typ...
type QueryTargetCapabilitiesBody (line 9646) | type QueryTargetCapabilitiesBody struct
method Fault (line 9652) | func (b *QueryTargetCapabilitiesBody) Fault() *soap.Fault { return b.F...
function QueryTargetCapabilities (line 9654) | func QueryTargetCapabilities(ctx context.Context, r soap.RoundTripper, r...
type QueryTpmAttestationReportBody (line 9666) | type QueryTpmAttestationReportBody struct
method Fault (line 9672) | func (b *QueryTpmAttestationReportBody) Fault() *soap.Fault { return b...
function QueryTpmAttestationReport (line 9674) | func QueryTpmAttestationReport(ctx context.Context, r soap.RoundTripper,...
type QueryUnmonitoredHostsBody (line 9686) | type QueryUnmonitoredHostsBody struct
method Fault (line 9692) | func (b *QueryUnmonitoredHostsBody) Fault() *soap.Fault { return b.Fau...
function QueryUnmonitoredHosts (line 9694) | func QueryUnmonitoredHosts(ctx context.Context, r soap.RoundTripper, req...
type QueryUnownedFilesBody (line 9706) | type QueryUnownedFilesBody struct
method Fault (line 9712) | func (b *QueryUnownedFilesBody) Fault() *soap.Fault { return b.Fault_ }
function QueryUnownedFiles (line 9714) | func QueryUnownedFiles(ctx context.Context, r soap.RoundTripper, req *ty...
type QueryUnresolvedVmfsVolumeBody (line 9726) | type QueryUnresolvedVmfsVolumeBody struct
method Fault (line 9732) | func (b *QueryUnresolvedVmfsVolumeBody) Fault() *soap.Fault { return b...
function QueryUnresolvedVmfsVolume (line 9734) | func QueryUnresolvedVmfsVolume(ctx context.Context, r soap.RoundTripper,...
type QueryUnresolvedVmfsVolumesBody (line 9746) | type QueryUnresolvedVmfsVolumesBody struct
method Fault (line 9752) | func (b *QueryUnresolvedVmfsVolumesBody) Fault() *soap.Fault { return ...
function QueryUnresolvedVmfsVolumes (line 9754) | func QueryUnresolvedVmfsVolumes(ctx context.Context, r soap.RoundTripper...
type QueryUsedVlanIdInDvsBody (line 9766) | type QueryUsedVlanIdInDvsBody struct
method Fault (line 9772) | func (b *QueryUsedVlanIdInDvsBody) Fault() *soap.Fault { return b.Faul...
function QueryUsedVlanIdInDvs (line 9774) | func QueryUsedVlanIdInDvs(ctx context.Context, r soap.RoundTripper, req ...
type QueryVMotionCompatibilityBody (line 9786) | type QueryVMotionCompatibilityBody struct
method Fault (line 9792) | func (b *QueryVMotionCompatibilityBody) Fault() *soap.Fault { return b...
function QueryVMotionCompatibility (line 9794) | func QueryVMotionCompatibility(ctx context.Context, r soap.RoundTripper,...
type QueryVMotionCompatibilityEx_TaskBody (line 9806) | type QueryVMotionCompatibilityEx_TaskBody struct
method Fault (line 9812) | func (b *QueryVMotionCompatibilityEx_TaskBody) Fault() *soap.Fault { r...
function QueryVMotionCompatibilityEx_Task (line 9814) | func QueryVMotionCompatibilityEx_Task(ctx context.Context, r soap.RoundT...
type QueryVirtualDiskFragmentationBody (line 9826) | type QueryVirtualDiskFragmentationBody struct
method Fault (line 9832) | func (b *QueryVirtualDiskFragmentationBody) Fault() *soap.Fault { retu...
function QueryVirtualDiskFragmentation (line 9834) | func QueryVirtualDiskFragmentation(ctx context.Context, r soap.RoundTrip...
type QueryVirtualDiskGeometryBody (line 9846) | type QueryVirtualDiskGeometryBody struct
method Fault (line 9852) | func (b *QueryVirtualDiskGeometryBody) Fault() *soap.Fault { return b....
function QueryVirtualDiskGeometry (line 9854) | func QueryVirtualDiskGeometry(ctx context.Context, r soap.RoundTripper, ...
type QueryVirtualDiskUuidBody (line 9866) | type QueryVirtualDiskUuidBody struct
method Fault (line 9872) | func (b *QueryVirtualDiskUuidBody) Fault() *soap.Fault { return b.Faul...
function QueryVirtualDiskUuid (line 9874) | func QueryVirtualDiskUuid(ctx context.Context, r soap.RoundTripper, req ...
type QueryVmfsConfigOptionBody (line 9886) | type QueryVmfsConfigOptionBody struct
method Fault (line 9892) | func (b *QueryVmfsConfigOptionBody) Fault() *soap.Fault { return b.Fau...
function QueryVmfsConfigOption (line 9894) | func QueryVmfsConfigOption(ctx context.Context, r soap.RoundTripper, req...
type QueryVmfsDatastoreCreateOptionsBody (line 9906) | type QueryVmfsDatastoreCreateOptionsBody struct
method Fault (line 9912) | func (b *QueryVmfsDatastoreCreateOptionsBody) Fault() *soap.Fault { re...
function QueryVmfsDatastoreCreateOptions (line 9914) | func QueryVmfsDatastoreCreateOptions(ctx context.Context, r soap.RoundTr...
type QueryVmfsDatastoreExpandOptionsBody (line 9926) | type QueryVmfsDatastoreExpandOptionsBody struct
method Fault (line 9932) | func (b *QueryVmfsDatastoreExpandOptionsBody) Fault() *soap.Fault { re...
function QueryVmfsDatastoreExpandOptions (line 9934) | func QueryVmfsDatastoreExpandOptions(ctx context.Context, r soap.RoundTr...
type QueryVmfsDatastoreExtendOptionsBody (line 9946) | type QueryVmfsDatastoreExtendOptionsBody struct
method Fault (line 9952) | func (b *QueryVmfsDatastoreExtendOptionsBody) Fault() *soap.Fault { re...
function QueryVmfsDatastoreExtendOptions (line 9954) | func QueryVmfsDatastoreExtendOptions(ctx context.Context, r soap.RoundTr...
type QueryVnicStatusBody (line 9966) | type QueryVnicStatusBody struct
method Fault (line 9972) | func (b *QueryVnicStatusBody) Fault() *soap.Fault { return b.Fault_ }
function QueryVnicStatus (line 9974) | func QueryVnicStatus(ctx context.Context, r soap.RoundTripper, req *type...
type QueryVsanObjectUuidsByFilterBody (line 9986) | type QueryVsanObjectUuidsByFilterBody struct
method Fault (line 9992) | func (b *QueryVsanObjectUuidsByFilterBody) Fault() *soap.Fault { retur...
function QueryVsanObjectUuidsByFilter (line 9994) | func QueryVsanObjectUuidsByFilter(ctx context.Context, r soap.RoundTripp...
type QueryVsanObjectsBody (line 10006) | type QueryVsanObjectsBody struct
method Fault (line 10012) | func (b *QueryVsanObjectsBody) Fault() *soap.Fault { return b.Fault_ }
function QueryVsanObjects (line 10014) | func QueryVsanObjects(ctx context.Context, r soap.RoundTripper, req *typ...
type QueryVsanStatisticsBody (line 10026) | type QueryVsanStatisticsBody struct
method Fault (line 10032) | func (b *QueryVsanStatisticsBody) Fault() *soap.Fault { return b.Fault_ }
function QueryVsanStatistics (line 10034) | func QueryVsanStatistics(ctx context.Context, r soap.RoundTripper, req *...
type QueryVsanUpgradeStatusBody (line 10046) | type QueryVsanUpgradeStatusBody struct
method Fault (line 10052) | func (b *QueryVsanUpgradeStatusBody) Fault() *soap.Fault { return b.Fa...
function QueryVsanUpgradeStatus (line 10054) | func QueryVsanUpgradeStatus(ctx context.Context, r soap.RoundTripper, re...
type ReadEnvironmentVariableInGuestBody (line 10066) | type ReadEnvironmentVariableInGuestBody struct
method Fault (line 10072) | func (b *ReadEnvironmentVariableInGuestBody) Fault() *soap.Fault { ret...
function ReadEnvironmentVariableInGuest (line 10074) | func ReadEnvironmentVariableInGuest(ctx context.Context, r soap.RoundTri...
type ReadNextEventsBody (line 10086) | type ReadNextEventsBody struct
method Fault (line 10092) | func (b *ReadNextEventsBody) Fault() *soap.Fault { return b.Fault_ }
function ReadNextEvents (line 10094) | func ReadNextEvents(ctx context.Context, r soap.RoundTripper, req *types...
type ReadNextTasksBody (line 10106) | type ReadNextTasksBody struct
method Fault (line 10112) | func (b *ReadNextTasksBody) Fault() *soap.Fault { return b.Fault_ }
function ReadNextTasks (line 10114) | func ReadNextTasks(ctx context.Context, r soap.RoundTripper, req *types....
type ReadPreviousEventsBody (line 10126) | type ReadPreviousEventsBody struct
method Fault (line 10132) | func (b *ReadPreviousEventsBody) Fault() *soap.Fault { return b.Fault_ }
function ReadPreviousEvents (line 10134) | func ReadPreviousEvents(ctx context.Context, r soap.RoundTripper, req *t...
type ReadPreviousTasksBody (line 10146) | type ReadPreviousTasksBody struct
method Fault (line 10152) | func (b *ReadPreviousTasksBody) Fault() *soap.Fault { return b.Fault_ }
function ReadPreviousTasks (line 10154) | func ReadPreviousTasks(ctx context.Context, r soap.RoundTripper, req *ty...
type RebootGuestBody (line 10166) | type RebootGuestBody struct
method Fault (line 10172) | func (b *RebootGuestBody) Fault() *soap.Fault { return b.Fault_ }
function RebootGuest (line 10174) | func RebootGuest(ctx context.Context, r soap.RoundTripper, req *types.Re...
type RebootHost_TaskBody (line 10186) | type RebootHost_TaskBody struct
method Fault (line 10192) | func (b *RebootHost_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function RebootHost_Task (line 10194) | func RebootHost_Task(ctx context.Context, r soap.RoundTripper, req *type...
type RecommendDatastoresBody (line 10206) | type RecommendDatastoresBody struct
method Fault (line 10212) | func (b *RecommendDatastoresBody) Fault() *soap.Fault { return b.Fault_ }
function RecommendDatastores (line 10214) | func RecommendDatastores(ctx context.Context, r soap.RoundTripper, req *...
type RecommendHostsForVmBody (line 10226) | type RecommendHostsForVmBody struct
method Fault (line 10232) | func (b *RecommendHostsForVmBody) Fault() *soap.Fault { return b.Fault_ }
function RecommendHostsForVm (line 10234) | func RecommendHostsForVm(ctx context.Context, r soap.RoundTripper, req *...
type RecommissionVsanNode_TaskBody (line 10246) | type RecommissionVsanNode_TaskBody struct
method Fault (line 10252) | func (b *RecommissionVsanNode_TaskBody) Fault() *soap.Fault { return b...
function RecommissionVsanNode_Task (line 10254) | func RecommissionVsanNode_Task(ctx context.Context, r soap.RoundTripper,...
type ReconcileDatastoreInventory_TaskBody (line 10266) | type ReconcileDatastoreInventory_TaskBody struct
method Fault (line 10272) | func (b *ReconcileDatastoreInventory_TaskBody) Fault() *soap.Fault { r...
function ReconcileDatastoreInventory_Task (line 10274) | func ReconcileDatastoreInventory_Task(ctx context.Context, r soap.RoundT...
type ReconfigVM_TaskBody (line 10286) | type ReconfigVM_TaskBody struct
method Fault (line 10292) | func (b *ReconfigVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function ReconfigVM_Task (line 10294) | func ReconfigVM_Task(ctx context.Context, r soap.RoundTripper, req *type...
type ReconfigurationSatisfiableBody (line 10306) | type ReconfigurationSatisfiableBody struct
method Fault (line 10312) | func (b *ReconfigurationSatisfiableBody) Fault() *soap.Fault { return ...
function ReconfigurationSatisfiable (line 10314) | func ReconfigurationSatisfiable(ctx context.Context, r soap.RoundTripper...
type ReconfigureAlarmBody (line 10326) | type ReconfigureAlarmBody struct
method Fault (line 10332) | func (b *ReconfigureAlarmBody) Fault() *soap.Fault { return b.Fault_ }
function ReconfigureAlarm (line 10334) | func ReconfigureAlarm(ctx context.Context, r soap.RoundTripper, req *typ...
type ReconfigureAutostartBody (line 10346) | type ReconfigureAutostartBody struct
method Fault (line 10352) | func (b *ReconfigureAutostartBody) Fault() *soap.Fault { return b.Faul...
function ReconfigureAutostart (line 10354) | func ReconfigureAutostart(ctx context.Context, r soap.RoundTripper, req ...
type ReconfigureCluster_TaskBody (line 10366) | type ReconfigureCluster_TaskBody struct
method Fault (line 10372) | func (b *ReconfigureCluster_TaskBody) Fault() *soap.Fault { return b.F...
function ReconfigureCluster_Task (line 10374) | func ReconfigureCluster_Task(ctx context.Context, r soap.RoundTripper, r...
type ReconfigureComputeResource_TaskBody (line 10386) | type ReconfigureComputeResource_TaskBody struct
method Fault (line 10392) | func (b *ReconfigureComputeResource_TaskBody) Fault() *soap.Fault { re...
function ReconfigureComputeResource_Task (line 10394) | func ReconfigureComputeResource_Task(ctx context.Context, r soap.RoundTr...
type ReconfigureDVPort_TaskBody (line 10406) | type ReconfigureDVPort_TaskBody struct
method Fault (line 10412) | func (b *ReconfigureDVPort_TaskBody) Fault() *soap.Fault { return b.Fa...
function ReconfigureDVPort_Task (line 10414) | func ReconfigureDVPort_Task(ctx context.Context, r soap.RoundTripper, re...
type ReconfigureDVPortgroup_TaskBody (line 10426) | type ReconfigureDVPortgroup_TaskBody struct
method Fault (line 10432) | func (b *ReconfigureDVPortgroup_TaskBody) Fault() *soap.Fault { return...
function ReconfigureDVPortgroup_Task (line 10434) | func ReconfigureDVPortgroup_Task(ctx context.Context, r soap.RoundTrippe...
type ReconfigureDatacenter_TaskBody (line 10446) | type ReconfigureDatacenter_TaskBody struct
method Fault (line 10452) | func (b *ReconfigureDatacenter_TaskBody) Fault() *soap.Fault { return ...
function ReconfigureDatacenter_Task (line 10454) | func ReconfigureDatacenter_Task(ctx context.Context, r soap.RoundTripper...
type ReconfigureDomObjectBody (line 10466) | type ReconfigureDomObjectBody struct
method Fault (line 10472) | func (b *ReconfigureDomObjectBody) Fault() *soap.Fault { return b.Faul...
function ReconfigureDomObject (line 10474) | func ReconfigureDomObject(ctx context.Context, r soap.RoundTripper, req ...
type ReconfigureDvs_TaskBody (line 10486) | type ReconfigureDvs_TaskBody struct
method Fault (line 10492) | func (b *ReconfigureDvs_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function ReconfigureDvs_Task (line 10494) | func ReconfigureDvs_Task(ctx context.Context, r soap.RoundTripper, req *...
type ReconfigureHostForDAS_TaskBody (line 10506) | type ReconfigureHostForDAS_TaskBody struct
method Fault (line 10512) | func (b *ReconfigureHostForDAS_TaskBody) Fault() *soap.Fault { return ...
function ReconfigureHostForDAS_Task (line 10514) | func ReconfigureHostForDAS_Task(ctx context.Context, r soap.RoundTripper...
type ReconfigureScheduledTaskBody (line 10526) | type ReconfigureScheduledTaskBody struct
method Fault (line 10532) | func (b *ReconfigureScheduledTaskBody) Fault() *soap.Fault { return b....
function ReconfigureScheduledTask (line 10534) | func ReconfigureScheduledTask(ctx context.Context, r soap.RoundTripper, ...
type ReconfigureServiceConsoleReservationBody (line 10546) | type ReconfigureServiceConsoleReservationBody struct
method Fault (line 10552) | func (b *ReconfigureServiceConsoleReservationBody) Fault() *soap.Fault...
function ReconfigureServiceConsoleReservation (line 10554) | func ReconfigureServiceConsoleReservation(ctx context.Context, r soap.Ro...
type ReconfigureSnmpAgentBody (line 10566) | type ReconfigureSnmpAgentBody struct
method Fault (line 10572) | func (b *ReconfigureSnmpAgentBody) Fault() *soap.Fault { return b.Faul...
function ReconfigureSnmpAgent (line 10574) | func ReconfigureSnmpAgent(ctx context.Context, r soap.RoundTripper, req ...
type ReconfigureVirtualMachineReservationBody (line 10586) | type ReconfigureVirtualMachineReservationBody struct
method Fault (line 10592) | func (b *ReconfigureVirtualMachineReservationBody) Fault() *soap.Fault...
function ReconfigureVirtualMachineReservation (line 10594) | func ReconfigureVirtualMachineReservation(ctx context.Context, r soap.Ro...
type ReconnectHost_TaskBody (line 10606) | type ReconnectHost_TaskBody struct
method Fault (line 10612) | func (b *ReconnectHost_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function ReconnectHost_Task (line 10614) | func ReconnectHost_Task(ctx context.Context, r soap.RoundTripper, req *t...
type RectifyDvsHost_TaskBody (line 10626) | type RectifyDvsHost_TaskBody struct
method Fault (line 10632) | func (b *RectifyDvsHost_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function RectifyDvsHost_Task (line 10634) | func RectifyDvsHost_Task(ctx context.Context, r soap.RoundTripper, req *...
type RectifyDvsOnHost_TaskBody (line 10646) | type RectifyDvsOnHost_TaskBody struct
method Fault (line 10652) | func (b *RectifyDvsOnHost_TaskBody) Fault() *soap.Fault { return b.Fau...
function RectifyDvsOnHost_Task (line 10654) | func RectifyDvsOnHost_Task(ctx context.Context, r soap.RoundTripper, req...
type RefreshBody (line 10666) | type RefreshBody struct
method Fault (line 10672) | func (b *RefreshBody) Fault() *soap.Fault { return b.Fault_ }
function Refresh (line 10674) | func Refresh(ctx context.Context, r soap.RoundTripper, req *types.Refres...
type RefreshDVPortStateBody (line 10686) | type RefreshDVPortStateBody struct
method Fault (line 10692) | func (b *RefreshDVPortStateBody) Fault() *soap.Fault { return b.Fault_ }
function RefreshDVPortState (line 10694) | func RefreshDVPortState(ctx context.Context, r soap.RoundTripper, req *t...
type RefreshDatastoreBody (line 10706) | type RefreshDatastoreBody struct
method Fault (line 10712) | func (b *RefreshDatastoreBody) Fault() *soap.Fault { return b.Fault_ }
function RefreshDatastore (line 10714) | func RefreshDatastore(ctx context.Context, r soap.RoundTripper, req *typ...
type RefreshDatastoreStorageInfoBody (line 10726) | type RefreshDatastoreStorageInfoBody struct
method Fault (line 10732) | func (b *RefreshDatastoreStorageInfoBody) Fault() *soap.Fault { return...
function RefreshDatastoreStorageInfo (line 10734) | func RefreshDatastoreStorageInfo(ctx context.Context, r soap.RoundTrippe...
type RefreshDateTimeSystemBody (line 10746) | type RefreshDateTimeSystemBody struct
method Fault (line 10752) | func (b *RefreshDateTimeSystemBody) Fault() *soap.Fault { return b.Fau...
function RefreshDateTimeSystem (line 10754) | func RefreshDateTimeSystem(ctx context.Context, r soap.RoundTripper, req...
type RefreshFirewallBody (line 10766) | type RefreshFirewallBody struct
method Fault (line 10772) | func (b *RefreshFirewallBody) Fault() *soap.Fault { return b.Fault_ }
function RefreshFirewall (line 10774) | func RefreshFirewall(ctx context.Context, r soap.RoundTripper, req *type...
type RefreshGraphicsManagerBody (line 10786) | type RefreshGraphicsManagerBody struct
method Fault (line 10792) | func (b *RefreshGraphicsManagerBody) Fault() *soap.Fault { return b.Fa...
function RefreshGraphicsManager (line 10794) | func RefreshGraphicsManager(ctx context.Context, r soap.RoundTripper, re...
type RefreshHealthStatusSystemBody (line 10806) | type RefreshHealthStatusSystemBody struct
method Fault (line 10812) | func (b *RefreshHealthStatusSystemBody) Fault() *soap.Fault { return b...
function RefreshHealthStatusSystem (line 10814) | func RefreshHealthStatusSystem(ctx context.Context, r soap.RoundTripper,...
type RefreshNetworkSystemBody (line 10826) | type RefreshNetworkSystemBody struct
method Fault (line 10832) | func (b *RefreshNetworkSystemBody) Fault() *soap.Fault { return b.Faul...
function RefreshNetworkSystem (line 10834) | func RefreshNetworkSystem(ctx context.Context, r soap.RoundTripper, req ...
type RefreshRecommendationBody (line 10846) | type RefreshRecommendationBody struct
method Fault (line 10852) | func (b *RefreshRecommendationBody) Fault() *soap.Fault { return b.Fau...
function RefreshRecommendation (line 10854) | func RefreshRecommendation(ctx context.Context, r soap.RoundTripper, req...
type RefreshRuntimeBody (line 10866) | type RefreshRuntimeBody struct
method Fault (line 10872) | func (b *RefreshRuntimeBody) Fault() *soap.Fault { return b.Fault_ }
function RefreshRuntime (line 10874) | func RefreshRuntime(ctx context.Context, r soap.RoundTripper, req *types...
type RefreshServicesBody (line 10886) | type RefreshServicesBody struct
method Fault (line 10892) | func (b *RefreshServicesBody) Fault() *soap.Fault { return b.Fault_ }
function RefreshServices (line 10894) | func RefreshServices(ctx context.Context, r soap.RoundTripper, req *type...
type RefreshStorageDrsRecommendationBody (line 10906) | type RefreshStorageDrsRecommendationBody struct
method Fault (line 10912) | func (b *RefreshStorageDrsRecommendationBody) Fault() *soap.Fault { re...
function RefreshStorageDrsRecommendation (line 10914) | func RefreshStorageDrsRecommendation(ctx context.Context, r soap.RoundTr...
type RefreshStorageInfoBody (line 10926) | type RefreshStorageInfoBody struct
method Fault (line 10932) | func (b *RefreshStorageInfoBody) Fault() *soap.Fault { return b.Fault_ }
function RefreshStorageInfo (line 10934) | func RefreshStorageInfo(ctx context.Context, r soap.RoundTripper, req *t...
type RefreshStorageSystemBody (line 10946) | type RefreshStorageSystemBody struct
method Fault (line 10952) | func (b *RefreshStorageSystemBody) Fault() *soap.Fault { return b.Faul...
function RefreshStorageSystem (line 10954) | func RefreshStorageSystem(ctx context.Context, r soap.RoundTripper, req ...
type RegisterChildVM_TaskBody (line 10966) | type RegisterChildVM_TaskBody struct
method Fault (line 10972) | func (b *RegisterChildVM_TaskBody) Fault() *soap.Fault { return b.Faul...
function RegisterChildVM_Task (line 10974) | func RegisterChildVM_Task(ctx context.Context, r soap.RoundTripper, req ...
type RegisterDiskBody (line 10986) | type RegisterDiskBody struct
method Fault (line 10992) | func (b *RegisterDiskBody) Fault() *soap.Fault { return b.Fault_ }
function RegisterDisk (line 10994) | func RegisterDisk(ctx context.Context, r soap.RoundTripper, req *types.R...
type RegisterExtensionBody (line 11006) | type RegisterExtensionBody struct
method Fault (line 11012) | func (b *RegisterExtensionBody) Fault() *soap.Fault { return b.Fault_ }
function RegisterExtension (line 11014) | func RegisterExtension(ctx context.Context, r soap.RoundTripper, req *ty...
type RegisterHealthUpdateProviderBody (line 11026) | type RegisterHealthUpdateProviderBody struct
method Fault (line 11032) | func (b *RegisterHealthUpdateProviderBody) Fault() *soap.Fault { retur...
function RegisterHealthUpdateProvider (line 11034) | func RegisterHealthUpdateProvider(ctx context.Context, r soap.RoundTripp...
type RegisterKmipServerBody (line 11046) | type RegisterKmipServerBody struct
method Fault (line 11052) | func (b *RegisterKmipServerBody) Fault() *soap.Fault { return b.Fault_ }
function RegisterKmipServer (line 11054) | func RegisterKmipServer(ctx context.Context, r soap.RoundTripper, req *t...
type RegisterVM_TaskBody (line 11066) | type RegisterVM_TaskBody struct
method Fault (line 11072) | func (b *RegisterVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function RegisterVM_Task (line 11074) | func RegisterVM_Task(ctx context.Context, r soap.RoundTripper, req *type...
type ReleaseCredentialsInGuestBody (line 11086) | type ReleaseCredentialsInGuestBody struct
method Fault (line 11092) | func (b *ReleaseCredentialsInGuestBody) Fault() *soap.Fault { return b...
function ReleaseCredentialsInGuest (line 11094) | func ReleaseCredentialsInGuest(ctx context.Context, r soap.RoundTripper,...
type ReleaseIpAllocationBody (line 11106) | type ReleaseIpAllocationBody struct
method Fault (line 11112) | func (b *ReleaseIpAllocationBody) Fault() *soap.Fault { return b.Fault_ }
function ReleaseIpAllocation (line 11114) | func ReleaseIpAllocation(ctx context.Context, r soap.RoundTripper, req *...
type ReleaseManagedSnapshotBody (line 11126) | type ReleaseManagedSnapshotBody struct
method Fault (line 11132) | func (b *ReleaseManagedSnapshotBody) Fault() *soap.Fault { return b.Fa...
function ReleaseManagedSnapshot (line 11134) | func ReleaseManagedSnapshot(ctx context.Context, r soap.RoundTripper, re...
type ReloadBody (line 11146) | type ReloadBody struct
method Fault (line 11152) | func (b *ReloadBody) Fault() *soap.Fault { return b.Fault_ }
function Reload (line 11154) | func Reload(ctx context.Context, r soap.RoundTripper, req *types.Reload)...
type RelocateVM_TaskBody (line 11166) | type RelocateVM_TaskBody struct
method Fault (line 11172) | func (b *RelocateVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function RelocateVM_Task (line 11174) | func RelocateVM_Task(ctx context.Context, r soap.RoundTripper, req *type...
type RelocateVStorageObject_TaskBody (line 11186) | type RelocateVStorageObject_TaskBody struct
method Fault (line 11192) | func (b *RelocateVStorageObject_TaskBody) Fault() *soap.Fault { return...
function RelocateVStorageObject_Task (line 11194) | func RelocateVStorageObject_Task(ctx context.Context, r soap.RoundTrippe...
type RemoveAlarmBody (line 11206) | type RemoveAlarmBody struct
method Fault (line 11212) | func (b *RemoveAlarmBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveAlarm (line 11214) | func RemoveAlarm(ctx context.Context, r soap.RoundTripper, req *types.Re...
type RemoveAllSnapshots_TaskBody (line 11226) | type RemoveAllSnapshots_TaskBody struct
method Fault (line 11232) | func (b *RemoveAllSnapshots_TaskBody) Fault() *soap.Fault { return b.F...
function RemoveAllSnapshots_Task (line 11234) | func RemoveAllSnapshots_Task(ctx context.Context, r soap.RoundTripper, r...
type RemoveAssignedLicenseBody (line 11246) | type RemoveAssignedLicenseBody struct
method Fault (line 11252) | func (b *RemoveAssignedLicenseBody) Fault() *soap.Fault { return b.Fau...
function RemoveAssignedLicense (line 11254) | func RemoveAssignedLicense(ctx context.Context, r soap.RoundTripper, req...
type RemoveAuthorizationRoleBody (line 11266) | type RemoveAuthorizationRoleBody struct
method Fault (line 11272) | func (b *RemoveAuthorizationRoleBody) Fault() *soap.Fault { return b.F...
function RemoveAuthorizationRole (line 11274) | func RemoveAuthorizationRole(ctx context.Context, r soap.RoundTripper, r...
type RemoveCustomFieldDefBody (line 11286) | type RemoveCustomFieldDefBody struct
method Fault (line 11292) | func (b *RemoveCustomFieldDefBody) Fault() *soap.Fault { return b.Faul...
function RemoveCustomFieldDef (line 11294) | func RemoveCustomFieldDef(ctx context.Context, r soap.RoundTripper, req ...
type RemoveDatastoreBody (line 11306) | type RemoveDatastoreBody struct
method Fault (line 11312) | func (b *RemoveDatastoreBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveDatastore (line 11314) | func RemoveDatastore(ctx context.Context, r soap.RoundTripper, req *type...
type RemoveDatastoreEx_TaskBody (line 11326) | type RemoveDatastoreEx_TaskBody struct
method Fault (line 11332) | func (b *RemoveDatastoreEx_TaskBody) Fault() *soap.Fault { return b.Fa...
function RemoveDatastoreEx_Task (line 11334) | func RemoveDatastoreEx_Task(ctx context.Context, r soap.RoundTripper, re...
type RemoveDiskMapping_TaskBody (line 11346) | type RemoveDiskMapping_TaskBody struct
method Fault (line 11352) | func (b *RemoveDiskMapping_TaskBody) Fault() *soap.Fault { return b.Fa...
function RemoveDiskMapping_Task (line 11354) | func RemoveDiskMapping_Task(ctx context.Context, r soap.RoundTripper, re...
type RemoveDisk_TaskBody (line 11366) | type RemoveDisk_TaskBody struct
method Fault (line 11372) | func (b *RemoveDisk_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveDisk_Task (line 11374) | func RemoveDisk_Task(ctx context.Context, r soap.RoundTripper, req *type...
type RemoveEntityPermissionBody (line 11386) | type RemoveEntityPermissionBody struct
method Fault (line 11392) | func (b *RemoveEntityPermissionBody) Fault() *soap.Fault { return b.Fa...
function RemoveEntityPermission (line 11394) | func RemoveEntityPermission(ctx context.Context, r soap.RoundTripper, re...
type RemoveFilterBody (line 11406) | type RemoveFilterBody struct
method Fault (line 11412) | func (b *RemoveFilterBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveFilter (line 11414) | func RemoveFilter(ctx context.Context, r soap.RoundTripper, req *types.R...
type RemoveFilterEntitiesBody (line 11426) | type RemoveFilterEntitiesBody struct
method Fault (line 11432) | func (b *RemoveFilterEntitiesBody) Fault() *soap.Fault { return b.Faul...
function RemoveFilterEntities (line 11434) | func RemoveFilterEntities(ctx context.Context, r soap.RoundTripper, req ...
type RemoveGroupBody (line 11446) | type RemoveGroupBody struct
method Fault (line 11452) | func (b *RemoveGroupBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveGroup (line 11454) | func RemoveGroup(ctx context.Context, r soap.RoundTripper, req *types.Re...
type RemoveGuestAliasBody (line 11466) | type RemoveGuestAliasBody struct
method Fault (line 11472) | func (b *RemoveGuestAliasBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveGuestAlias (line 11474) | func RemoveGuestAlias(ctx context.Context, r soap.RoundTripper, req *typ...
type RemoveGuestAliasByCertBody (line 11486) | type RemoveGuestAliasByCertBody struct
method Fault (line 11492) | func (b *RemoveGuestAliasByCertBody) Fault() *soap.Fault { return b.Fa...
function RemoveGuestAliasByCert (line 11494) | func RemoveGuestAliasByCert(ctx context.Context, r soap.RoundTripper, re...
type RemoveInternetScsiSendTargetsBody (line 11506) | type RemoveInternetScsiSendTargetsBody struct
method Fault (line 11512) | func (b *RemoveInternetScsiSendTargetsBody) Fault() *soap.Fault { retu...
function RemoveInternetScsiSendTargets (line 11514) | func RemoveInternetScsiSendTargets(ctx context.Context, r soap.RoundTrip...
type RemoveInternetScsiStaticTargetsBody (line 11526) | type RemoveInternetScsiStaticTargetsBody struct
method Fault (line 11532) | func (b *RemoveInternetScsiStaticTargetsBody) Fault() *soap.Fault { re...
function RemoveInternetScsiStaticTargets (line 11534) | func RemoveInternetScsiStaticTargets(ctx context.Context, r soap.RoundTr...
type RemoveKeyBody (line 11546) | type RemoveKeyBody struct
method Fault (line 11552) | func (b *RemoveKeyBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveKey (line 11554) | func RemoveKey(ctx context.Context, r soap.RoundTripper, req *types.Remo...
type RemoveKeysBody (line 11566) | type RemoveKeysBody struct
method Fault (line 11572) | func (b *RemoveKeysBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveKeys (line 11574) | func RemoveKeys(ctx context.Context, r soap.RoundTripper, req *types.Rem...
type RemoveKmipServerBody (line 11586) | type RemoveKmipServerBody struct
method Fault (line 11592) | func (b *RemoveKmipServerBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveKmipServer (line 11594) | func RemoveKmipServer(ctx context.Context, r soap.RoundTripper, req *typ...
type RemoveLicenseBody (line 11606) | type RemoveLicenseBody struct
method Fault (line 11612) | func (b *RemoveLicenseBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveLicense (line 11614) | func RemoveLicense(ctx context.Context, r soap.RoundTripper, req *types....
type RemoveLicenseLabelBody (line 11626) | type RemoveLicenseLabelBody struct
method Fault (line 11632) | func (b *RemoveLicenseLabelBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveLicenseLabel (line 11634) | func RemoveLicenseLabel(ctx context.Context, r soap.RoundTripper, req *t...
type RemoveMonitoredEntitiesBody (line 11646) | type RemoveMonitoredEntitiesBody struct
method Fault (line 11652) | func (b *RemoveMonitoredEntitiesBody) Fault() *soap.Fault { return b.F...
function RemoveMonitoredEntities (line 11654) | func RemoveMonitoredEntities(ctx context.Context, r soap.RoundTripper, r...
type RemoveNetworkResourcePoolBody (line 11666) | type RemoveNetworkResourcePoolBody struct
method Fault (line 11672) | func (b *RemoveNetworkResourcePoolBody) Fault() *soap.Fault { return b...
function RemoveNetworkResourcePool (line 11674) | func RemoveNetworkResourcePool(ctx context.Context, r soap.RoundTripper,...
type RemovePerfIntervalBody (line 11686) | type RemovePerfIntervalBody struct
method Fault (line 11692) | func (b *RemovePerfIntervalBody) Fault() *soap.Fault { return b.Fault_ }
function RemovePerfInterval (line 11694) | func RemovePerfInterval(ctx context.Context, r soap.RoundTripper, req *t...
type RemovePortGroupBody (line 11706) | type RemovePortGroupBody struct
method Fault (line 11712) | func (b *RemovePortGroupBody) Fault() *soap.Fault { return b.Fault_ }
function RemovePortGroup (line 11714) | func RemovePortGroup(ctx context.Context, r soap.RoundTripper, req *type...
type RemoveScheduledTaskBody (line 11726) | type RemoveScheduledTaskBody struct
method Fault (line 11732) | func (b *RemoveScheduledTaskBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveScheduledTask (line 11734) | func RemoveScheduledTask(ctx context.Context, r soap.RoundTripper, req *...
type RemoveServiceConsoleVirtualNicBody (line 11746) | type RemoveServiceConsoleVirtualNicBody struct
method Fault (line 11752) | func (b *RemoveServiceConsoleVirtualNicBody) Fault() *soap.Fault { ret...
function RemoveServiceConsoleVirtualNic (line 11754) | func RemoveServiceConsoleVirtualNic(ctx context.Context, r soap.RoundTri...
type RemoveSmartCardTrustAnchorBody (line 11766) | type RemoveSmartCardTrustAnchorBody struct
method Fault (line 11772) | func (b *RemoveSmartCardTrustAnchorBody) Fault() *soap.Fault { return ...
function RemoveSmartCardTrustAnchor (line 11774) | func RemoveSmartCardTrustAnchor(ctx context.Context, r soap.RoundTripper...
type RemoveSmartCardTrustAnchorByFingerprintBody (line 11786) | type RemoveSmartCardTrustAnchorByFingerprintBody struct
method Fault (line 11792) | func (b *RemoveSmartCardTrustAnchorByFingerprintBody) Fault() *soap.Fa...
function RemoveSmartCardTrustAnchorByFingerprint (line 11794) | func RemoveSmartCardTrustAnchorByFingerprint(ctx context.Context, r soap...
type RemoveSnapshot_TaskBody (line 11806) | type RemoveSnapshot_TaskBody struct
method Fault (line 11812) | func (b *RemoveSnapshot_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveSnapshot_Task (line 11814) | func RemoveSnapshot_Task(ctx context.Context, r soap.RoundTripper, req *...
type RemoveUserBody (line 11826) | type RemoveUserBody struct
method Fault (line 11832) | func (b *RemoveUserBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveUser (line 11834) | func RemoveUser(ctx context.Context, r soap.RoundTripper, req *types.Rem...
type RemoveVirtualNicBody (line 11846) | type RemoveVirtualNicBody struct
method Fault (line 11852) | func (b *RemoveVirtualNicBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveVirtualNic (line 11854) | func RemoveVirtualNic(ctx context.Context, r soap.RoundTripper, req *typ...
type RemoveVirtualSwitchBody (line 11866) | type RemoveVirtualSwitchBody struct
method Fault (line 11872) | func (b *RemoveVirtualSwitchBody) Fault() *soap.Fault { return b.Fault_ }
function RemoveVirtualSwitch (line 11874) | func RemoveVirtualSwitch(ctx context.Context, r soap.RoundTripper, req *...
type RenameCustomFieldDefBody (line 11886) | type RenameCustomFieldDefBody struct
method Fault (line 11892) | func (b *RenameCustomFieldDefBody) Fault() *soap.Fault { return b.Faul...
function RenameCustomFieldDef (line 11894) | func RenameCustomFieldDef(ctx context.Context, r soap.RoundTripper, req ...
type RenameCustomizationSpecBody (line 11906) | type RenameCustomizationSpecBody struct
method Fault (line 11912) | func (b *RenameCustomizationSpecBody) Fault() *soap.Fault { return b.F...
function RenameCustomizationSpec (line 11914) | func RenameCustomizationSpec(ctx context.Context, r soap.RoundTripper, r...
type RenameDatastoreBody (line 11926) | type RenameDatastoreBody struct
method Fault (line 11932) | func (b *RenameDatastoreBody) Fault() *soap.Fault { return b.Fault_ }
function RenameDatastore (line 11934) | func RenameDatastore(ctx context.Context, r soap.RoundTripper, req *type...
type RenameSnapshotBody (line 11946) | type RenameSnapshotBody struct
method Fault (line 11952) | func (b *RenameSnapshotBody) Fault() *soap.Fault { return b.Fault_ }
function RenameSnapshot (line 11954) | func RenameSnapshot(ctx context.Context, r soap.RoundTripper, req *types...
type RenameVStorageObjectBody (line 11966) | type RenameVStorageObjectBody struct
method Fault (line 11972) | func (b *RenameVStorageObjectBody) Fault() *soap.Fault { return b.Faul...
function RenameVStorageObject (line 11974) | func RenameVStorageObject(ctx context.Context, r soap.RoundTripper, req ...
type Rename_TaskBody (line 11986) | type Rename_TaskBody struct
method Fault (line 11992) | func (b *Rename_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function Rename_Task (line 11994) | func Rename_Task(ctx context.Context, r soap.RoundTripper, req *types.Re...
type ReplaceCACertificatesAndCRLsBody (line 12006) | type ReplaceCACertificatesAndCRLsBody struct
method Fault (line 12012) | func (b *ReplaceCACertificatesAndCRLsBody) Fault() *soap.Fault { retur...
function ReplaceCACertificatesAndCRLs (line 12014) | func ReplaceCACertificatesAndCRLs(ctx context.Context, r soap.RoundTripp...
type ReplaceSmartCardTrustAnchorsBody (line 12026) | type ReplaceSmartCardTrustAnchorsBody struct
method Fault (line 12032) | func (b *ReplaceSmartCardTrustAnchorsBody) Fault() *soap.Fault { retur...
function ReplaceSmartCardTrustAnchors (line 12034) | func ReplaceSmartCardTrustAnchors(ctx context.Context, r soap.RoundTripp...
type RescanAllHbaBody (line 12046) | type RescanAllHbaBody struct
method Fault (line 12052) | func (b *RescanAllHbaBody) Fault() *soap.Fault { return b.Fault_ }
function RescanAllHba (line 12054) | func RescanAllHba(ctx context.Context, r soap.RoundTripper, req *types.R...
type RescanHbaBody (line 12066) | type RescanHbaBody struct
method Fault (line 12072) | func (b *RescanHbaBody) Fault() *soap.Fault { return b.Fault_ }
function RescanHba (line 12074) | func RescanHba(ctx context.Context, r soap.RoundTripper, req *types.Resc...
type RescanVffsBody (line 12086) | type RescanVffsBody struct
method Fault (line 12092) | func (b *RescanVffsBody) Fault() *soap.Fault { return b.Fault_ }
function RescanVffs (line 12094) | func RescanVffs(ctx context.Context, r soap.RoundTripper, req *types.Res...
type RescanVmfsBody (line 12106) | type RescanVmfsBody struct
method Fault (line 12112) | func (b *RescanVmfsBody) Fault() *soap.Fault { return b.Fault_ }
function RescanVmfs (line 12114) | func RescanVmfs(ctx context.Context, r soap.RoundTripper, req *types.Res...
type ResetCollectorBody (line 12126) | type ResetCollectorBody struct
method Fault (line 12132) | func (b *ResetCollectorBody) Fault() *soap.Fault { return b.Fault_ }
function ResetCollector (line 12134) | func ResetCollector(ctx context.Context, r soap.RoundTripper, req *types...
type ResetCounterLevelMappingBody (line 12146) | type ResetCounterLevelMappingBody struct
method Fault (line 12152) | func (b *ResetCounterLevelMappingBody) Fault() *soap.Fault { return b....
function ResetCounterLevelMapping (line 12154) | func ResetCounterLevelMapping(ctx context.Context, r soap.RoundTripper, ...
type ResetEntityPermissionsBody (line 12166) | type ResetEntityPermissionsBody struct
method Fault (line 12172) | func (b *ResetEntityPermissionsBody) Fault() *soap.Fault { return b.Fa...
function ResetEntityPermissions (line 12174) | func ResetEntityPermissions(ctx context.Context, r soap.RoundTripper, re...
type ResetFirmwareToFactoryDefaultsBody (line 12186) | type ResetFirmwareToFactoryDefaultsBody struct
method Fault (line 12192) | func (b *ResetFirmwareToFactoryDefaultsBody) Fault() *soap.Fault { ret...
function ResetFirmwareToFactoryDefaults (line 12194) | func ResetFirmwareToFactoryDefaults(ctx context.Context, r soap.RoundTri...
type ResetGuestInformationBody (line 12206) | type ResetGuestInformationBody struct
method Fault (line 12212) | func (b *ResetGuestInformationBody) Fault() *soap.Fault { return b.Fau...
function ResetGuestInformation (line 12214) | func ResetGuestInformation(ctx context.Context, r soap.RoundTripper, req...
type ResetListViewBody (line 12226) | type ResetListViewBody struct
method Fault (line 12232) | func (b *ResetListViewBody) Fault() *soap.Fault { return b.Fault_ }
function ResetListView (line 12234) | func ResetListView(ctx context.Context, r soap.RoundTripper, req *types....
type ResetListViewFromViewBody (line 12246) | type ResetListViewFromViewBody struct
method Fault (line 12252) | func (b *ResetListViewFromViewBody) Fault() *soap.Fault { return b.Fau...
function ResetListViewFromView (line 12254) | func ResetListViewFromView(ctx context.Context, r soap.RoundTripper, req...
type ResetSystemHealthInfoBody (line 12266) | type ResetSystemHealthInfoBody struct
method Fault (line 12272) | func (b *ResetSystemHealthInfoBody) Fault() *soap.Fault { return b.Fau...
function ResetSystemHealthInfo (line 12274) | func ResetSystemHealthInfo(ctx context.Context, r soap.RoundTripper, req...
type ResetVM_TaskBody (line 12286) | type ResetVM_TaskBody struct
method Fault (line 12292) | func (b *ResetVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function ResetVM_Task (line 12294) | func ResetVM_Task(ctx context.Context, r soap.RoundTripper, req *types.R...
type ResignatureUnresolvedVmfsVolume_TaskBody (line 12306) | type ResignatureUnresolvedVmfsVolume_TaskBody struct
method Fault (line 12312) | func (b *ResignatureUnresolvedVmfsVolume_TaskBody) Fault() *soap.Fault...
function ResignatureUnresolvedVmfsVolume_Task (line 12314) | func ResignatureUnresolvedVmfsVolume_Task(ctx context.Context, r soap.Ro...
type ResolveInstallationErrorsOnCluster_TaskBody (line 12326) | type ResolveInstallationErrorsOnCluster_TaskBody struct
method Fault (line 12332) | func (b *ResolveInstallationErrorsOnCluster_TaskBody) Fault() *soap.Fa...
function ResolveInstallationErrorsOnCluster_Task (line 12334) | func ResolveInstallationErrorsOnCluster_Task(ctx context.Context, r soap...
type ResolveInstallationErrorsOnHost_TaskBody (line 12346) | type ResolveInstallationErrorsOnHost_TaskBody struct
method Fault (line 12352) | func (b *ResolveInstallationErrorsOnHost_TaskBody) Fault() *soap.Fault...
function ResolveInstallationErrorsOnHost_Task (line 12354) | func ResolveInstallationErrorsOnHost_Task(ctx context.Context, r soap.Ro...
type ResolveMultipleUnresolvedVmfsVolumesBody (line 12366) | type ResolveMultipleUnresolvedVmfsVolumesBody struct
method Fault (line 12372) | func (b *ResolveMultipleUnresolvedVmfsVolumesBody) Fault() *soap.Fault...
function ResolveMultipleUnresolvedVmfsVolumes (line 12374) | func ResolveMultipleUnresolvedVmfsVolumes(ctx context.Context, r soap.Ro...
type ResolveMultipleUnresolvedVmfsVolumesEx_TaskBody (line 12386) | type ResolveMultipleUnresolvedVmfsVolumesEx_TaskBody struct
method Fault (line 12392) | func (b *ResolveMultipleUnresolvedVmfsVolumesEx_TaskBody) Fault() *soa...
function ResolveMultipleUnresolvedVmfsVolumesEx_Task (line 12394) | func ResolveMultipleUnresolvedVmfsVolumesEx_Task(ctx context.Context, r ...
type RestartServiceBody (line 12406) | type RestartServiceBody struct
method Fault (line 12412) | func (b *RestartServiceBody) Fault() *soap.Fault { return b.Fault_ }
function RestartService (line 12414) | func RestartService(ctx context.Context, r soap.RoundTripper, req *types...
type RestartServiceConsoleVirtualNicBody (line 12426) | type RestartServiceConsoleVirtualNicBody struct
method Fault (line 12432) | func (b *RestartServiceConsoleVirtualNicBody) Fault() *soap.Fault { re...
function RestartServiceConsoleVirtualNic (line 12434) | func RestartServiceConsoleVirtualNic(ctx context.Context, r soap.RoundTr...
type RestoreFirmwareConfigurationBody (line 12446) | type RestoreFirmwareConfigurationBody struct
method Fault (line 12452) | func (b *RestoreFirmwareConfigurationBody) Fault() *soap.Fault { retur...
function RestoreFirmwareConfiguration (line 12454) | func RestoreFirmwareConfiguration(ctx context.Context, r soap.RoundTripp...
type RetrieveAllPermissionsBody (line 12466) | type RetrieveAllPermissionsBody struct
method Fault (line 12472) | func (b *RetrieveAllPermissionsBody) Fault() *soap.Fault { return b.Fa...
function RetrieveAllPermissions (line 12474) | func RetrieveAllPermissions(ctx context.Context, r soap.RoundTripper, re...
type RetrieveAnswerFileBody (line 12486) | type RetrieveAnswerFileBody struct
method Fault (line 12492) | func (b *RetrieveAnswerFileBody) Fault() *soap.Fault { return b.Fault_ }
function RetrieveAnswerFile (line 12494) | func RetrieveAnswerFile(ctx context.Context, r soap.RoundTripper, req *t...
type RetrieveAnswerFileForProfileBody (line 12506) | type RetrieveAnswerFileForProfileBody struct
method Fault (line 12512) | func (b *RetrieveAnswerFileForProfileBody) Fault() *soap.Fault { retur...
function RetrieveAnswerFileForProfile (line 12514) | func RetrieveAnswerFileForProfile(ctx context.Context, r soap.RoundTripp...
type RetrieveArgumentDescriptionBody (line 12526) | type RetrieveArgumentDescriptionBody struct
method Fault (line 12532) | func (b *RetrieveArgumentDescriptionBody) Fault() *soap.Fault { return...
function RetrieveArgumentDescription (line 12534) | func RetrieveArgumentDescription(ctx context.Context, r soap.RoundTrippe...
type RetrieveClientCertBody (line 12546) | type RetrieveClientCertBody struct
method Fault (line 12552) | func (b *RetrieveClientCertBody) Fault() *soap.Fault { return b.Fault_ }
function RetrieveClientCert (line 12554) | func RetrieveClientCert(ctx context.Context, r soap.RoundTripper, req *t...
type RetrieveClientCsrBody (line 12566) | type RetrieveClientCsrBody struct
method Fault (line 12572) | func (b *RetrieveClientCsrBody) Fault() *soap.Fault { return b.Fault_ }
function RetrieveClientCsr (line 12574) | func RetrieveClientCsr(ctx context.Context, r soap.RoundTripper, req *ty...
type RetrieveDasAdvancedRuntimeInfoBody (line 12586) | type RetrieveDasAdvancedRuntimeInfoBody struct
method Fault (line 12592) | func (b *RetrieveDasAdvancedRuntimeInfoBody) Fault() *soap.Fault { ret...
function RetrieveDasAdvancedRuntimeInfo (line 12594) | func RetrieveDasAdvancedRuntimeInfo(ctx context.Context, r soap.RoundTri...
type RetrieveDescriptionBody (line 12606) | type RetrieveDescriptionBody struct
method Fault (line 12612) | func (b *RetrieveDescriptionBody) Fault() *soap.Fault { return b.Fault_ }
function RetrieveDescription (line 12614) | func RetrieveDescription(ctx context.Context, r soap.RoundTripper, req *...
type RetrieveDiskPartitionInfoBody (line 12626) | type RetrieveDiskPartitionInfoBody struct
method Fault (line 12632) | func (b *RetrieveDiskPartitionInfoBody) Fault() *soap.Fault { return b...
function RetrieveDiskPartitionInfo (line 12634) | func RetrieveDiskPartitionInfo(ctx context.Context, r soap.RoundTripper,...
type RetrieveEntityPermissionsBody (line 12646) | type RetrieveEntityPermissionsBody struct
method Fault (line 12652) | func (b *RetrieveEntityPermissionsBody) Fault() *soap.Fault { return b...
function RetrieveEntityPermissions (line 12654) | func RetrieveEntityPermissions(ctx context.Context, r soap.RoundTripper,...
type RetrieveEntityScheduledTaskBody (line 12666) | type RetrieveEntityScheduledTaskBody struct
method Fault (line 12672) | func (b *RetrieveEntityScheduledTaskBody) Fault() *soap.Fault { return...
function RetrieveEntityScheduledTask (line 12674) | func RetrieveEntityScheduledTask(ctx context.Context, r soap.RoundTrippe...
type RetrieveHardwareUptimeBody (line 12686) | type RetrieveHardwareUptimeBody struct
method Fault (line 12692) | func (b *RetrieveHardwareUptimeBody) Fault() *soap.Fault { return b.Fa...
function RetrieveHardwareUptime (line 12694) | func RetrieveHardwareUptime(ctx context.Context, r soap.RoundTripper, re...
type RetrieveHostAccessControlEntriesBody (line 12706) | type RetrieveHostAccessControlEntriesBody struct
method Fault (line 12712) | func (b *RetrieveHostAccessControlEntriesBody) Fault() *soap.Fault { r...
function RetrieveHostAccessControlEntries (line 12714) | func RetrieveHostAccessControlEntries(ctx context.Context, r soap.RoundT...
type RetrieveHostCustomizationsBody (line 12726) | type RetrieveHostCustomizationsBody struct
method Fault (line 12732) | func (b *RetrieveHostCustomizationsBody) Fault() *soap.Fault { return ...
function RetrieveHostCustomizations (line 12734) | func RetrieveHostCustomizations(ctx context.Context, r soap.RoundTripper...
type RetrieveHostCustomizationsForProfileBody (line 12746) | type RetrieveHostCustomizationsForProfileBody struct
method Fault (line 12752) | func (b *RetrieveHostCustomizationsForProfileBody) Fault() *soap.Fault...
function RetrieveHostCustomizationsForProfile (line 12754) | func RetrieveHostCustomizationsForProfile(ctx context.Context, r soap.Ro...
type RetrieveHostSpecificationBody (line 12766) | type RetrieveHostSpecificationBody struct
method Fault (line 12772) | func (b *RetrieveHostSpecificationBody) Fault() *soap.Fault { return b...
function RetrieveHostSpecification (line 12774) | func RetrieveHostSpecification(ctx context.Context, r soap.RoundTripper,...
type RetrieveKmipServerCertBody (line 12786) | type RetrieveKmipServerCertBody struct
method Fault (line 12792) | func (b *RetrieveKmipServerCertBody) Fault() *soap.Fault { return b.Fa...
function RetrieveKmipServerCert (line 12794) | func RetrieveKmipServerCert(ctx context.Context, r soap.RoundTripper, re...
type RetrieveKmipServersStatus_TaskBody (line 12806) | type RetrieveKmipServersStatus_TaskBody struct
method Fault (line 12812) | func (b *RetrieveKmipServersStatus_TaskBody) Fault() *soap.Fault { ret...
function RetrieveKmipServersStatus_Task (line 12814) | func RetrieveKmipServersStatus_Task(ctx context.Context, r soap.RoundTri...
type RetrieveObjectScheduledTaskBody (line 12826) | type RetrieveObjectScheduledTaskBody struct
method Fault (line 12832) | func (b *RetrieveObjectScheduledTaskBody) Fault() *soap.Fault { return...
function RetrieveObjectScheduledTask (line 12834) | func RetrieveObjectScheduledTask(ctx context.Context, r soap.RoundTrippe...
type RetrieveProductComponentsBody (line 12846) | type RetrieveProductComponentsBody struct
method Fault (line 12852) | func (b *RetrieveProductComponentsBody) Fault() *soap.Fault { return b...
function RetrieveProductComponents (line 12854) | func RetrieveProductComponents(ctx context.Context, r soap.RoundTripper,...
type RetrievePropertiesBody (line 12866) | type RetrievePropertiesBody struct
method Fault (line 12872) | func (b *RetrievePropertiesBody) Fault() *soap.Fault { return b.Fault_ }
function RetrieveProperties (line 12874) | func RetrieveProperties(ctx context.Context, r soap.RoundTripper, req *t...
type RetrievePropertiesExBody (line 12886) | type RetrievePropertiesExBody struct
method Fault (line 12892) | func (b *RetrievePropertiesExBody) Fault() *soap.Fault { return b.Faul...
function RetrievePropertiesEx (line 12894) | func RetrievePropertiesEx(ctx context.Context, r soap.RoundTripper, req ...
type RetrieveRolePermissionsBody (line 12906) | type RetrieveRolePermissionsBody struct
method Fault (line 12912) | func (b *RetrieveRolePermissionsBody) Fault() *soap.Fault { return b.F...
function RetrieveRolePermissions (line 12914) | func RetrieveRolePermissions(ctx context.Context, r soap.RoundTripper, r...
type RetrieveSelfSignedClientCertBody (line 12926) | type RetrieveSelfSignedClientCertBody struct
method Fault (line 12932) | func (b *RetrieveSelfSignedClientCertBody) Fault() *soap.Fault { retur...
function RetrieveSelfSignedClientCert (line 12934) | func RetrieveSelfSignedClientCert(ctx context.Context, r soap.RoundTripp...
type RetrieveServiceContentBody (line 12946) | type RetrieveServiceContentBody struct
method Fault (line 12952) | func (b *RetrieveServiceContentBody) Fault() *soap.Fault { return b.Fa...
function RetrieveServiceContent (line 12954) | func RetrieveServiceContent(ctx context.Context, r soap.RoundTripper, re...
type RetrieveUserGroupsBody (line 12966) | type RetrieveUserGroupsBody struct
method Fault (line 12972) | func (b *RetrieveUserGroupsBody) Fault() *soap.Fault { return b.Fault_ }
function RetrieveUserGroups (line 12974) | func RetrieveUserGroups(ctx context.Context, r soap.RoundTripper, req *t...
type RetrieveVStorageObjectBody (line 12986) | type RetrieveVStorageObjectBody struct
method Fault (line 12992) | func (b *RetrieveVStorageObjectBody) Fault() *soap.Fault { return b.Fa...
function RetrieveVStorageObject (line 12994) | func RetrieveVStorageObject(ctx context.Context, r soap.RoundTripper, re...
type RetrieveVStorageObjectStateBody (line 13006) | type RetrieveVStorageObjectStateBody struct
method Fault (line 13012) | func (b *RetrieveVStorageObjectStateBody) Fault() *soap.Fault { return...
function RetrieveVStorageObjectState (line 13014) | func RetrieveVStorageObjectState(ctx context.Context, r soap.RoundTrippe...
type RevertToCurrentSnapshot_TaskBody (line 13026) | type RevertToCurrentSnapshot_TaskBody struct
method Fault (line 13032) | func (b *RevertToCurrentSnapshot_TaskBody) Fault() *soap.Fault { retur...
function RevertToCurrentSnapshot_Task (line 13034) | func RevertToCurrentSnapshot_Task(ctx context.Context, r soap.RoundTripp...
type RevertToSnapshot_TaskBody (line 13046) | type RevertToSnapshot_TaskBody struct
method Fault (line 13052) | func (b *RevertToSnapshot_TaskBody) Fault() *soap.Fault { return b.Fau...
function RevertToSnapshot_Task (line 13054) | func RevertToSnapshot_Task(ctx context.Context, r soap.RoundTripper, req...
type RewindCollectorBody (line 13066) | type RewindCollectorBody struct
method Fault (line 13072) | func (b *RewindCollectorBody) Fault() *soap.Fault { return b.Fault_ }
function RewindCollector (line 13074) | func RewindCollector(ctx context.Context, r soap.RoundTripper, req *type...
type RunScheduledTaskBody (line 13086) | type RunScheduledTaskBody struct
method Fault (line 13092) | func (b *RunScheduledTaskBody) Fault() *soap.Fault { return b.Fault_ }
function RunScheduledTask (line 13094) | func RunScheduledTask(ctx context.Context, r soap.RoundTripper, req *typ...
type RunVsanPhysicalDiskDiagnosticsBody (line 13106) | type RunVsanPhysicalDiskDiagnosticsBody struct
method Fault (line 13112) | func (b *RunVsanPhysicalDiskDiagnosticsBody) Fault() *soap.Fault { ret...
function RunVsanPhysicalDiskDiagnostics (line 13114) | func RunVsanPhysicalDiskDiagnostics(ctx context.Context, r soap.RoundTri...
type ScanHostPatchV2_TaskBody (line 13126) | type ScanHostPatchV2_TaskBody struct
method Fault (line 13132) | func (b *ScanHostPatchV2_TaskBody) Fault() *soap.Fault { return b.Faul...
function ScanHostPatchV2_Task (line 13134) | func ScanHostPatchV2_Task(ctx context.Context, r soap.RoundTripper, req ...
type ScanHostPatch_TaskBody (line 13146) | type ScanHostPatch_TaskBody struct
method Fault (line 13152) | func (b *ScanHostPatch_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function ScanHostPatch_Task (line 13154) | func ScanHostPatch_Task(ctx context.Context, r soap.RoundTripper, req *t...
type ScheduleReconcileDatastoreInventoryBody (line 13166) | type ScheduleReconcileDatastoreInventoryBody struct
method Fault (line 13172) | func (b *ScheduleReconcileDatastoreInventoryBody) Fault() *soap.Fault ...
function ScheduleReconcileDatastoreInventory (line 13174) | func ScheduleReconcileDatastoreInventory(ctx context.Context, r soap.Rou...
type SearchDatastoreSubFolders_TaskBody (line 13186) | type SearchDatastoreSubFolders_TaskBody struct
method Fault (line 13192) | func (b *SearchDatastoreSubFolders_TaskBody) Fault() *soap.Fault { ret...
function SearchDatastoreSubFolders_Task (line 13194) | func SearchDatastoreSubFolders_Task(ctx context.Context, r soap.RoundTri...
type SearchDatastore_TaskBody (line 13206) | type SearchDatastore_TaskBody struct
method Fault (line 13212) | func (b *SearchDatastore_TaskBody) Fault() *soap.Fault { return b.Faul...
function SearchDatastore_Task (line 13214) | func SearchDatastore_Task(ctx context.Context, r soap.RoundTripper, req ...
type SelectActivePartitionBody (line 13226) | type SelectActivePartitionBody struct
method Fault (line 13232) | func (b *SelectActivePartitionBody) Fault() *soap.Fault { return b.Fau...
function SelectActivePartition (line 13234) | func SelectActivePartition(ctx context.Context, r soap.RoundTripper, req...
type SelectVnicBody (line 13246) | type SelectVnicBody struct
method Fault (line 13252) | func (b *SelectVnicBody) Fault() *soap.Fault { return b.Fault_ }
function SelectVnic (line 13254) | func SelectVnic(ctx context.Context, r soap.RoundTripper, req *types.Sel...
type SelectVnicForNicTypeBody (line 13266) | type SelectVnicForNicTypeBody struct
method Fault (line 13272) | func (b *SelectVnicForNicTypeBody) Fault() *soap.Fault { return b.Faul...
function SelectVnicForNicType (line 13274) | func SelectVnicForNicType(ctx context.Context, r soap.RoundTripper, req ...
type SendNMIBody (line 13286) | type SendNMIBody struct
method Fault (line 13292) | func (b *SendNMIBody) Fault() *soap.Fault { return b.Fault_ }
function SendNMI (line 13294) | func SendNMI(ctx context.Context, r soap.RoundTripper, req *types.SendNM...
type SendTestNotificationBody (line 13306) | type SendTestNotificationBody struct
method Fault (line 13312) | func (b *SendTestNotificationBody) Fault() *soap.Fault { return b.Faul...
function SendTestNotification (line 13314) | func SendTestNotification(ctx context.Context, r soap.RoundTripper, req ...
type SessionIsActiveBody (line 13326) | type SessionIsActiveBody struct
method Fault (line 13332) | func (b *SessionIsActiveBody) Fault() *soap.Fault { return b.Fault_ }
function SessionIsActive (line 13334) | func SessionIsActive(ctx context.Context, r soap.RoundTripper, req *type...
type SetCollectorPageSizeBody (line 13346) | type SetCollectorPageSizeBody struct
method Fault (line 13352) | func (b *SetCollectorPageSizeBody) Fault() *soap.Fault { return b.Faul...
function SetCollectorPageSize (line 13354) | func SetCollectorPageSize(ctx context.Context, r soap.RoundTripper, req ...
type SetDisplayTopologyBody (line 13366) | type SetDisplayTopologyBody struct
method Fault (line 13372) | func (b *SetDisplayTopologyBody) Fault() *soap.Fault { return b.Fault_ }
function SetDisplayTopology (line 13374) | func SetDisplayTopology(ctx context.Context, r soap.RoundTripper, req *t...
type SetEntityPermissionsBody (line 13386) | type SetEntityPermissionsBody struct
method Fault (line 13392) | func (b *SetEntityPermissionsBody) Fault() *soap.Fault { return b.Faul...
function SetEntityPermissions (line 13394) | func SetEntityPermissions(ctx context.Context, r soap.RoundTripper, req ...
type SetExtensionCertificateBody (line 13406) | type SetExtensionCertificateBody struct
method Fault (line 13412) | func (b *SetExtensionCertificateBody) Fault() *soap.Fault { return b.F...
function SetExtensionCertificate (line 13414) | func SetExtensionCertificate(ctx context.Context, r soap.RoundTripper, r...
type SetFieldBody (line 13426) | type SetFieldBody struct
method Fault (line 13432) | func (b *SetFieldBody) Fault() *soap.Fault { return b.Fault_ }
function SetField (line 13434) | func SetField(ctx context.Context, r soap.RoundTripper, req *types.SetFi...
type SetLicenseEditionBody (line 13446) | type SetLicenseEditionBody struct
method Fault (line 13452) | func (b *SetLicenseEditionBody) Fault() *soap.Fault { return b.Fault_ }
function SetLicenseEdition (line 13454) | func SetLicenseEdition(ctx context.Context, r soap.RoundTripper, req *ty...
type SetLocaleBody (line 13466) | type SetLocaleBody struct
method Fault (line 13472) | func (b *SetLocaleBody) Fault() *soap.Fault { return b.Fault_ }
function SetLocale (line 13474) | func SetLocale(ctx context.Context, r soap.RoundTripper, req *types.SetL...
type SetMultipathLunPolicyBody (line 13486) | type SetMultipathLunPolicyBody struct
method Fault (line 13492) | func (b *SetMultipathLunPolicyBody) Fault() *soap.Fault { return b.Fau...
function SetMultipathLunPolicy (line 13494) | func SetMultipathLunPolicy(ctx context.Context, r soap.RoundTripper, req...
type SetNFSUserBody (line 13506) | type SetNFSUserBody struct
method Fault (line 13512) | func (b *SetNFSUserBody) Fault() *soap.Fault { return b.Fault_ }
function SetNFSUser (line 13514) | func SetNFSUser(ctx context.Context, r soap.RoundTripper, req *types.Set...
type SetPublicKeyBody (line 13526) | type SetPublicKeyBody struct
method Fault (line 13532) | func (b *SetPublicKeyBody) Fault() *soap.Fault { return b.Fault_ }
function SetPublicKey (line 13534) | func SetPublicKey(ctx context.Context, r soap.RoundTripper, req *types.S...
type SetRegistryValueInGuestBody (line 13546) | type SetRegistryValueInGuestBody struct
method Fault (line 13552) | func (b *SetRegistryValueInGuestBody) Fault() *soap.Fault { return b.F...
function SetRegistryValueInGuest (line 13554) | func SetRegistryValueInGuest(ctx context.Context, r soap.RoundTripper, r...
type SetScreenResolutionBody (line 13566) | type SetScreenResolutionBody struct
method Fault (line 13572) | func (b *SetScreenResolutionBody) Fault() *soap.Fault { return b.Fault_ }
function SetScreenResolution (line 13574) | func SetScreenResolution(ctx context.Context, r soap.RoundTripper, req *...
type SetTaskDescriptionBody (line 13586) | type SetTaskDescriptionBody struct
method Fault (line 13592) | func (b *SetTaskDescriptionBody) Fault() *soap.Fault { return b.Fault_ }
function SetTaskDescription (line 13594) | func SetTaskDescription(ctx context.Context, r soap.RoundTripper, req *t...
type SetTaskStateBody (line 13606) | type SetTaskStateBody struct
method Fault (line 13612) | func (b *SetTaskStateBody) Fault() *soap.Fault { return b.Fault_ }
function SetTaskState (line 13614) | func SetTaskState(ctx context.Context, r soap.RoundTripper, req *types.S...
type SetVirtualDiskUuidBody (line 13626) | type SetVirtualDiskUuidBody struct
method Fault (line 13632) | func (b *SetVirtualDiskUuidBody) Fault() *soap.Fault { return b.Fault_ }
function SetVirtualDiskUuid (line 13634) | func SetVirtualDiskUuid(ctx context.Context, r soap.RoundTripper, req *t...
type ShrinkVirtualDisk_TaskBody (line 13646) | type ShrinkVirtualDisk_TaskBody struct
method Fault (line 13652) | func (b *ShrinkVirtualDisk_TaskBody) Fault() *soap.Fault { return b.Fa...
function ShrinkVirtualDisk_Task (line 13654) | func ShrinkVirtualDisk_Task(ctx context.Context, r soap.RoundTripper, re...
type ShutdownGuestBody (line 13666) | type ShutdownGuestBody struct
method Fault (line 13672) | func (b *ShutdownGuestBody) Fault() *soap.Fault { return b.Fault_ }
function ShutdownGuest (line 13674) | func ShutdownGuest(ctx context.Context, r soap.RoundTripper, req *types....
type ShutdownHost_TaskBody (line 13686) | type ShutdownHost_TaskBody struct
method Fault (line 13692) | func (b *ShutdownHost_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function ShutdownHost_Task (line 13694) | func ShutdownHost_Task(ctx context.Context, r soap.RoundTripper, req *ty...
type StageHostPatch_TaskBody (line 13706) | type StageHostPatch_TaskBody struct
method Fault (line 13712) | func (b *StageHostPatch_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function StageHostPatch_Task (line 13714) | func StageHostPatch_Task(ctx context.Context, r soap.RoundTripper, req *...
type StampAllRulesWithUuid_TaskBody (line 13726) | type StampAllRulesWithUuid_TaskBody struct
method Fault (line 13732) | func (b *StampAllRulesWithUuid_TaskBody) Fault() *soap.Fault { return ...
function StampAllRulesWithUuid_Task (line 13734) | func StampAllRulesWithUuid_Task(ctx context.Context, r soap.RoundTripper...
type StandbyGuestBody (line 13746) | type StandbyGuestBody struct
method Fault (line 13752) | func (b *StandbyGuestBody) Fault() *soap.Fault { return b.Fault_ }
function StandbyGuest (line 13754) | func StandbyGuest(ctx context.Context, r soap.RoundTripper, req *types.S...
type StartProgramInGuestBody (line 13766) | type StartProgramInGuestBody struct
method Fault (line 13772) | func (b *StartProgramInGuestBody) Fault() *soap.Fault { return b.Fault_ }
function StartProgramInGuest (line 13774) | func StartProgramInGuest(ctx context.Context, r soap.RoundTripper, req *...
type StartRecording_TaskBody (line 13786) | type StartRecording_TaskBody struct
method Fault (line 13792) | func (b *StartRecording_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function StartRecording_Task (line 13794) | func StartRecording_Task(ctx context.Context, r soap.RoundTripper, req *...
type StartReplaying_TaskBody (line 13806) | type StartReplaying_TaskBody struct
method Fault (line 13812) | func (b *StartReplaying_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function StartReplaying_Task (line 13814) | func StartReplaying_Task(ctx context.Context, r soap.RoundTripper, req *...
type StartServiceBody (line 13826) | type StartServiceBody struct
method Fault (line 13832) | func (b *StartServiceBody) Fault() *soap.Fault { return b.Fault_ }
function StartService (line 13834) | func StartService(ctx context.Context, r soap.RoundTripper, req *types.S...
type StopRecording_TaskBody (line 13846) | type StopRecording_TaskBody struct
method Fault (line 13852) | func (b *StopRecording_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function StopRecording_Task (line 13854) | func StopRecording_Task(ctx context.Context, r soap.RoundTripper, req *t...
type StopReplaying_TaskBody (line 13866) | type StopReplaying_TaskBody struct
method Fault (line 13872) | func (b *StopReplaying_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function StopReplaying_Task (line 13874) | func StopReplaying_Task(ctx context.Context, r soap.RoundTripper, req *t...
type StopServiceBody (line 13886) | type StopServiceBody struct
method Fault (line 13892) | func (b *StopServiceBody) Fault() *soap.Fault { return b.Fault_ }
function StopService (line 13894) | func StopService(ctx context.Context, r soap.RoundTripper, req *types.St...
type SuspendVApp_TaskBody (line 13906) | type SuspendVApp_TaskBody struct
method Fault (line 13912) | func (b *SuspendVApp_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function SuspendVApp_Task (line 13914) | func SuspendVApp_Task(ctx context.Context, r soap.RoundTripper, req *typ...
type SuspendVM_TaskBody (line 13926) | type SuspendVM_TaskBody struct
method Fault (line 13932) | func (b *SuspendVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function SuspendVM_Task (line 13934) | func SuspendVM_Task(ctx context.Context, r soap.RoundTripper, req *types...
type TerminateFaultTolerantVM_TaskBody (line 13946) | type TerminateFaultTolerantVM_TaskBody struct
method Fault (line 13952) | func (b *TerminateFaultTolerantVM_TaskBody) Fault() *soap.Fault { retu...
function TerminateFaultTolerantVM_Task (line 13954) | func TerminateFaultTolerantVM_Task(ctx context.Context, r soap.RoundTrip...
type TerminateProcessInGuestBody (line 13966) | type TerminateProcessInGuestBody struct
method Fault (line 13972) | func (b *TerminateProcessInGuestBody) Fault() *soap.Fault { return b.F...
function TerminateProcessInGuest (line 13974) | func TerminateProcessInGuest(ctx context.Context, r soap.RoundTripper, r...
type TerminateSessionBody (line 13986) | type TerminateSessionBody struct
method Fault (line 13992) | func (b *TerminateSessionBody) Fault() *soap.Fault { return b.Fault_ }
function TerminateSession (line 13994) | func TerminateSession(ctx context.Context, r soap.RoundTripper, req *typ...
type TerminateVMBody (line 14006) | type TerminateVMBody struct
method Fault (line 14012) | func (b *TerminateVMBody) Fault() *soap.Fault { return b.Fault_ }
function TerminateVM (line 14014) | func TerminateVM(ctx context.Context, r soap.RoundTripper, req *types.Te...
type TurnDiskLocatorLedOff_TaskBody (line 14026) | type TurnDiskLocatorLedOff_TaskBody struct
method Fault (line 14032) | func (b *TurnDiskLocatorLedOff_TaskBody) Fault() *soap.Fault { return ...
function TurnDiskLocatorLedOff_Task (line 14034) | func TurnDiskLocatorLedOff_Task(ctx context.Context, r soap.RoundTripper...
type TurnDiskLocatorLedOn_TaskBody (line 14046) | type TurnDiskLocatorLedOn_TaskBody struct
method Fault (line 14052) | func (b *TurnDiskLocatorLedOn_TaskBody) Fault() *soap.Fault { return b...
function TurnDiskLocatorLedOn_Task (line 14054) | func TurnDiskLocatorLedOn_Task(ctx context.Context, r soap.RoundTripper,...
type TurnOffFaultToleranceForVM_TaskBody (line 14066) | type TurnOffFaultToleranceForVM_TaskBody struct
method Fault (line 14072) | func (b *TurnOffFaultToleranceForVM_TaskBody) Fault() *soap.Fault { re...
function TurnOffFaultToleranceForVM_Task (line 14074) | func TurnOffFaultToleranceForVM_Task(ctx context.Context, r soap.RoundTr...
type UnassignUserFromGroupBody (line 14086) | type UnassignUserFromGroupBody struct
method Fault (line 14092) | func (b *UnassignUserFromGroupBody) Fault() *soap.Fault { return b.Fau...
function UnassignUserFromGroup (line 14094) | func UnassignUserFromGroup(ctx context.Context, r soap.RoundTripper, req...
type UnbindVnicBody (line 14106) | type UnbindVnicBody struct
method Fault (line 14112) | func (b *UnbindVnicBody) Fault() *soap.Fault { return b.Fault_ }
function UnbindVnic (line 14114) | func UnbindVnic(ctx context.Context, r soap.RoundTripper, req *types.Unb...
type UninstallHostPatch_TaskBody (line 14126) | type UninstallHostPatch_TaskBody struct
method Fault (line 14132) | func (b *UninstallHostPatch_TaskBody) Fault() *soap.Fault { return b.F...
function UninstallHostPatch_Task (line 14134) | func UninstallHostPatch_Task(ctx context.Context, r soap.RoundTripper, r...
type UninstallIoFilter_TaskBody (line 14146) | type UninstallIoFilter_TaskBody struct
method Fault (line 14152) | func (b *UninstallIoFilter_TaskBody) Fault() *soap.Fault { return b.Fa...
function UninstallIoFilter_Task (line 14154) | func UninstallIoFilter_Task(ctx context.Context, r soap.RoundTripper, re...
type UninstallServiceBody (line 14166) | type UninstallServiceBody struct
method Fault (line 14172) | func (b *UninstallServiceBody) Fault() *soap.Fault { return b.Fault_ }
function UninstallService (line 14174) | func UninstallService(ctx context.Context, r soap.RoundTripper, req *typ...
type UnmapVmfsVolumeEx_TaskBody (line 14186) | type UnmapVmfsVolumeEx_TaskBody struct
method Fault (line 14192) | func (b *UnmapVmfsVolumeEx_TaskBody) Fault() *soap.Fault { return b.Fa...
function UnmapVmfsVolumeEx_Task (line 14194) | func UnmapVmfsVolumeEx_Task(ctx context.Context, r soap.RoundTripper, re...
type UnmountDiskMapping_TaskBody (line 14206) | type UnmountDiskMapping_TaskBody struct
method Fault (line 14212) | func (b *UnmountDiskMapping_TaskBody) Fault() *soap.Fault { return b.F...
function UnmountDiskMapping_Task (line 14214) | func UnmountDiskMapping_Task(ctx context.Context, r soap.RoundTripper, r...
type UnmountForceMountedVmfsVolumeBody (line 14226) | type UnmountForceMountedVmfsVolumeBody struct
method Fault (line 14232) | func (b *UnmountForceMountedVmfsVolumeBody) Fault() *soap.Fault { retu...
function UnmountForceMountedVmfsVolume (line 14234) | func UnmountForceMountedVmfsVolume(ctx context.Context, r soap.RoundTrip...
type UnmountToolsInstallerBody (line 14246) | type UnmountToolsInstallerBody struct
method Fault (line 14252) | func (b *UnmountToolsInstallerBody) Fault() *soap.Fault { return b.Fau...
function UnmountToolsInstaller (line 14254) | func UnmountToolsInstaller(ctx context.Context, r soap.RoundTripper, req...
type UnmountVffsVolumeBody (line 14266) | type UnmountVffsVolumeBody struct
method Fault (line 14272) | func (b *UnmountVffsVolumeBody) Fault() *soap.Fault { return b.Fault_ }
function UnmountVffsVolume (line 14274) | func UnmountVffsVolume(ctx context.Context, r soap.RoundTripper, req *ty...
type UnmountVmfsVolumeBody (line 14286) | type UnmountVmfsVolumeBody struct
method Fault (line 14292) | func (b *UnmountVmfsVolumeBody) Fault() *soap.Fault { return b.Fault_ }
function UnmountVmfsVolume (line 14294) | func UnmountVmfsVolume(ctx context.Context, r soap.RoundTripper, req *ty...
type UnmountVmfsVolumeEx_TaskBody (line 14306) | type UnmountVmfsVolumeEx_TaskBody struct
method Fault (line 14312) | func (b *UnmountVmfsVolumeEx_TaskBody) Fault() *soap.Fault { return b....
function UnmountVmfsVolumeEx_Task (line 14314) | func UnmountVmfsVolumeEx_Task(ctx context.Context, r soap.RoundTripper, ...
type UnregisterAndDestroy_TaskBody (line 14326) | type UnregisterAndDestroy_TaskBody struct
method Fault (line 14332) | func (b *UnregisterAndDestroy_TaskBody) Fault() *soap.Fault { return b...
function UnregisterAndDestroy_Task (line 14334) | func UnregisterAndDestroy_Task(ctx context.Context, r soap.RoundTripper,...
type UnregisterExtensionBody (line 14346) | type UnregisterExtensionBody struct
method Fault (line 14352) | func (b *UnregisterExtensionBody) Fault() *soap.Fault { return b.Fault_ }
function UnregisterExtension (line 14354) | func UnregisterExtension(ctx context.Context, r soap.RoundTripper, req *...
type UnregisterHealthUpdateProviderBody (line 14366) | type UnregisterHealthUpdateProviderBody struct
method Fault (line 14372) | func (b *UnregisterHealthUpdateProviderBody) Fault() *soap.Fault { ret...
function UnregisterHealthUpdateProvider (line 14374) | func UnregisterHealthUpdateProvider(ctx context.Context, r soap.RoundTri...
type UnregisterVMBody (line 14386) | type UnregisterVMBody struct
method Fault (line 14392) | func (b *UnregisterVMBody) Fault() *soap.Fault { return b.Fault_ }
function UnregisterVM (line 14394) | func UnregisterVM(ctx context.Context, r soap.RoundTripper, req *types.U...
type UpdateAnswerFile_TaskBody (line 14406) | type UpdateAnswerFile_TaskBody struct
method Fault (line 14412) | func (b *UpdateAnswerFile_TaskBody) Fault() *soap.Fault { return b.Fau...
function UpdateAnswerFile_Task (line 14414) | func UpdateAnswerFile_Task(ctx context.Context, r soap.RoundTripper, req...
type UpdateAssignedLicenseBody (line 14426) | type UpdateAssignedLicenseBody struct
method Fault (line 14432) | func (b *UpdateAssignedLicenseBody) Fault() *soap.Fault { return b.Fau...
function UpdateAssignedLicense (line 14434) | func UpdateAssignedLicense(ctx context.Context, r soap.RoundTripper, req...
type UpdateAuthorizationRoleBody (line 14446) | type UpdateAuthorizationRoleBody struct
method Fault (line 14452) | func (b *UpdateAuthorizationRoleBody) Fault() *soap.Fault { return b.F...
function UpdateAuthorizationRole (line 14454) | func UpdateAuthorizationRole(ctx context.Context, r soap.RoundTripper, r...
type UpdateBootDeviceBody (line 14466) | type UpdateBootDeviceBody struct
method Fault (line 14472) | func (b *UpdateBootDeviceBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateBootDevice (line 14474) | func UpdateBootDevice(ctx context.Context, r soap.RoundTripper, req *typ...
type UpdateChildResourceConfigurationBody (line 14486) | type UpdateChildResourceConfigurationBody struct
method Fault (line 14492) | func (b *UpdateChildResourceConfigurationBody) Fault() *soap.Fault { r...
function UpdateChildResourceConfiguration (line 14494) | func UpdateChildResourceConfiguration(ctx context.Context, r soap.RoundT...
type UpdateClusterProfileBody (line 14506) | type UpdateClusterProfileBody struct
method Fault (line 14512) | func (b *UpdateClusterProfileBody) Fault() *soap.Fault { return b.Faul...
function UpdateClusterProfile (line 14514) | func UpdateClusterProfile(ctx context.Context, r soap.RoundTripper, req ...
type UpdateConfigBody (line 14526) | type UpdateConfigBody struct
method Fault (line 14532) | func (b *UpdateConfigBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateConfig (line 14534) | func UpdateConfig(ctx context.Context, r soap.RoundTripper, req *types.U...
type UpdateConsoleIpRouteConfigBody (line 14546) | type UpdateConsoleIpRouteConfigBody struct
method Fault (line 14552) | func (b *UpdateConsoleIpRouteConfigBody) Fault() *soap.Fault { return ...
function UpdateConsoleIpRouteConfig (line 14554) | func UpdateConsoleIpRouteConfig(ctx context.Context, r soap.RoundTripper...
type UpdateCounterLevelMappingBody (line 14566) | type UpdateCounterLevelMappingBody struct
method Fault (line 14572) | func (b *UpdateCounterLevelMappingBody) Fault() *soap.Fault { return b...
function UpdateCounterLevelMapping (line 14574) | func UpdateCounterLevelMapping(ctx context.Context, r soap.RoundTripper,...
type UpdateDVSHealthCheckConfig_TaskBody (line 14586) | type UpdateDVSHealthCheckConfig_TaskBody struct
method Fault (line 14592) | func (b *UpdateDVSHealthCheckConfig_TaskBody) Fault() *soap.Fault { re...
function UpdateDVSHealthCheckConfig_Task (line 14594) | func UpdateDVSHealthCheckConfig_Task(ctx context.Context, r soap.RoundTr...
type UpdateDVSLacpGroupConfig_TaskBody (line 14606) | type UpdateDVSLacpGroupConfig_TaskBody struct
method Fault (line 14612) | func (b *UpdateDVSLacpGroupConfig_TaskBody) Fault() *soap.Fault { retu...
function UpdateDVSLacpGroupConfig_Task (line 14614) | func UpdateDVSLacpGroupConfig_Task(ctx context.Context, r soap.RoundTrip...
type UpdateDateTimeBody (line 14626) | type UpdateDateTimeBody struct
method Fault (line 14632) | func (b *UpdateDateTimeBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateDateTime (line 14634) | func UpdateDateTime(ctx context.Context, r soap.RoundTripper, req *types...
type UpdateDateTimeConfigBody (line 14646) | type UpdateDateTimeConfigBody struct
method Fault (line 14652) | func (b *UpdateDateTimeConfigBody) Fault() *soap.Fault { return b.Faul...
function UpdateDateTimeConfig (line 14654) | func UpdateDateTimeConfig(ctx context.Context, r soap.RoundTripper, req ...
type UpdateDefaultPolicyBody (line 14666) | type UpdateDefaultPolicyBody struct
method Fault (line 14672) | func (b *UpdateDefaultPolicyBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateDefaultPolicy (line 14674) | func UpdateDefaultPolicy(ctx context.Context, r soap.RoundTripper, req *...
type UpdateDiskPartitionsBody (line 14686) | type UpdateDiskPartitionsBody struct
method Fault (line 14692) | func (b *UpdateDiskPartitionsBody) Fault() *soap.Fault { return b.Faul...
function UpdateDiskPartitions (line 14694) | func UpdateDiskPartitions(ctx context.Context, r soap.RoundTripper, req ...
type UpdateDnsConfigBody (line 14706) | type UpdateDnsConfigBody struct
method Fault (line 14712) | func (b *UpdateDnsConfigBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateDnsConfig (line 14714) | func UpdateDnsConfig(ctx context.Context, r soap.RoundTripper, req *type...
type UpdateDvsCapabilityBody (line 14726) | type UpdateDvsCapabilityBody struct
method Fault (line 14732) | func (b *UpdateDvsCapabilityBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateDvsCapability (line 14734) | func UpdateDvsCapability(ctx context.Context, r soap.RoundTripper, req *...
type UpdateExtensionBody (line 14746) | type UpdateExtensionBody struct
method Fault (line 14752) | func (b *UpdateExtensionBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateExtension (line 14754) | func UpdateExtension(ctx context.Context, r soap.RoundTripper, req *type...
type UpdateFlagsBody (line 14766) | type UpdateFlagsBody struct
method Fault (line 14772) | func (b *UpdateFlagsBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateFlags (line 14774) | func UpdateFlags(ctx context.Context, r soap.RoundTripper, req *types.Up...
type UpdateGraphicsConfigBody (line 14786) | type UpdateGraphicsConfigBody struct
method Fault (line 14792) | func (b *UpdateGraphicsConfigBody) Fault() *soap.Fault { return b.Faul...
function UpdateGraphicsConfig (line 14794) | func UpdateGraphicsConfig(ctx context.Context, r soap.RoundTripper, req ...
type UpdateHostCustomizations_TaskBody (line 14806) | type UpdateHostCustomizations_TaskBody struct
method Fault (line 14812) | func (b *UpdateHostCustomizations_TaskBody) Fault() *soap.Fault { retu...
function UpdateHostCustomizations_Task (line 14814) | func UpdateHostCustomizations_Task(ctx context.Context, r soap.RoundTrip...
type UpdateHostImageAcceptanceLevelBody (line 14826) | type UpdateHostImageAcceptanceLevelBody struct
method Fault (line 14832) | func (b *UpdateHostImageAcceptanceLevelBody) Fault() *soap.Fault { ret...
function UpdateHostImageAcceptanceLevel (line 14834) | func UpdateHostImageAcceptanceLevel(ctx context.Context, r soap.RoundTri...
type UpdateHostProfileBody (line 14846) | type UpdateHostProfileBody struct
method Fault (line 14852) | func (b *UpdateHostProfileBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateHostProfile (line 14854) | func UpdateHostProfile(ctx context.Context, r soap.RoundTripper, req *ty...
type UpdateHostSpecificationBody (line 14866) | type UpdateHostSpecificationBody struct
method Fault (line 14872) | func (b *UpdateHostSpecificationBody) Fault() *soap.Fault { return b.F...
function UpdateHostSpecification (line 14874) | func UpdateHostSpecification(ctx context.Context, r soap.RoundTripper, r...
type UpdateHostSubSpecificationBody (line 14886) | type UpdateHostSubSpecificationBody struct
method Fault (line 14892) | func (b *UpdateHostSubSpecificationBody) Fault() *soap.Fault { return ...
function UpdateHostSubSpecification (line 14894) | func UpdateHostSubSpecification(ctx context.Context, r soap.RoundTripper...
type UpdateInternetScsiAdvancedOptionsBody (line 14906) | type UpdateInternetScsiAdvancedOptionsBody struct
method Fault (line 14912) | func (b *UpdateInternetScsiAdvancedOptionsBody) Fault() *soap.Fault { ...
function UpdateInternetScsiAdvancedOptions (line 14914) | func UpdateInternetScsiAdvancedOptions(ctx context.Context, r soap.Round...
type UpdateInternetScsiAliasBody (line 14926) | type UpdateInternetScsiAliasBody struct
method Fault (line 14932) | func (b *UpdateInternetScsiAliasBody) Fault() *soap.Fault { return b.F...
function UpdateInternetScsiAlias (line 14934) | func UpdateInternetScsiAlias(ctx context.Context, r soap.RoundTripper, r...
type UpdateInternetScsiAuthenticationPropertiesBody (line 14946) | type UpdateInternetScsiAuthenticationPropertiesBody struct
method Fault (line 14952) | func (b *UpdateInternetScsiAuthenticationPropertiesBody) Fault() *soap...
function UpdateInternetScsiAuthenticationProperties (line 14954) | func UpdateInternetScsiAuthenticationProperties(ctx context.Context, r s...
type UpdateInternetScsiDigestPropertiesBody (line 14966) | type UpdateInternetScsiDigestPropertiesBody struct
method Fault (line 14972) | func (b *UpdateInternetScsiDigestPropertiesBody) Fault() *soap.Fault {...
function UpdateInternetScsiDigestProperties (line 14974) | func UpdateInternetScsiDigestProperties(ctx context.Context, r soap.Roun...
type UpdateInternetScsiDiscoveryPropertiesBody (line 14986) | type UpdateInternetScsiDiscoveryPropertiesBody struct
method Fault (line 14992) | func (b *UpdateInternetScsiDiscoveryPropertiesBody) Fault() *soap.Faul...
function UpdateInternetScsiDiscoveryProperties (line 14994) | func UpdateInternetScsiDiscoveryProperties(ctx context.Context, r soap.R...
type UpdateInternetScsiIPPropertiesBody (line 15006) | type UpdateInternetScsiIPPropertiesBody struct
method Fault (line 15012) | func (b *UpdateInternetScsiIPPropertiesBody) Fault() *soap.Fault { ret...
function UpdateInternetScsiIPProperties (line 15014) | func UpdateInternetScsiIPProperties(ctx context.Context, r soap.RoundTri...
type UpdateInternetScsiNameBody (line 15026) | type UpdateInternetScsiNameBody struct
method Fault (line 15032) | func (b *UpdateInternetScsiNameBody) Fault() *soap.Fault { return b.Fa...
function UpdateInternetScsiName (line 15034) | func UpdateInternetScsiName(ctx context.Context, r soap.RoundTripper, re...
type UpdateIpConfigBody (line 15046) | type UpdateIpConfigBody struct
method Fault (line 15052) | func (b *UpdateIpConfigBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateIpConfig (line 15054) | func UpdateIpConfig(ctx context.Context, r soap.RoundTripper, req *types...
type UpdateIpPoolBody (line 15066) | type UpdateIpPoolBody struct
method Fault (line 15072) | func (b *UpdateIpPoolBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateIpPool (line 15074) | func UpdateIpPool(ctx context.Context, r soap.RoundTripper, req *types.U...
type UpdateIpRouteConfigBody (line 15086) | type UpdateIpRouteConfigBody struct
method Fault (line 15092) | func (b *UpdateIpRouteConfigBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateIpRouteConfig (line 15094) | func UpdateIpRouteConfig(ctx context.Context, r soap.RoundTripper, req *...
type UpdateIpRouteTableConfigBody (line 15106) | type UpdateIpRouteTableConfigBody struct
method Fault (line 15112) | func (b *UpdateIpRouteTableConfigBody) Fault() *soap.Fault { return b....
function UpdateIpRouteTableConfig (line 15114) | func UpdateIpRouteTableConfig(ctx context.Context, r soap.RoundTripper, ...
type UpdateIpmiBody (line 15126) | type UpdateIpmiBody struct
method Fault (line 15132) | func (b *UpdateIpmiBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateIpmi (line 15134) | func UpdateIpmi(ctx context.Context, r soap.RoundTripper, req *types.Upd...
type UpdateKmipServerBody (line 15146) | type UpdateKmipServerBody struct
method Fault (line 15152) | func (b *UpdateKmipServerBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateKmipServer (line 15154) | func UpdateKmipServer(ctx context.Context, r soap.RoundTripper, req *typ...
type UpdateKmsSignedCsrClientCertBody (line 15166) | type UpdateKmsSignedCsrClientCertBody struct
method Fault (line 15172) | func (b *UpdateKmsSignedCsrClientCertBody) Fault() *soap.Fault { retur...
function UpdateKmsSignedCsrClientCert (line 15174) | func UpdateKmsSignedCsrClientCert(ctx context.Context, r soap.RoundTripp...
type UpdateLicenseBody (line 15186) | type UpdateLicenseBody struct
method Fault (line 15192) | func (b *UpdateLicenseBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateLicense (line 15194) | func UpdateLicense(ctx context.Context, r soap.RoundTripper, req *types....
type UpdateLicenseLabelBody (line 15206) | type UpdateLicenseLabelBody struct
method Fault (line 15212) | func (b *UpdateLicenseLabelBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateLicenseLabel (line 15214) | func UpdateLicenseLabel(ctx context.Context, r soap.RoundTripper, req *t...
type UpdateLinkedChildrenBody (line 15226) | type UpdateLinkedChildrenBody struct
method Fault (line 15232) | func (b *UpdateLinkedChildrenBody) Fault() *soap.Fault { return b.Faul...
function UpdateLinkedChildren (line 15234) | func UpdateLinkedChildren(ctx context.Context, r soap.RoundTripper, req ...
type UpdateLocalSwapDatastoreBody (line 15246) | type UpdateLocalSwapDatastoreBody struct
method Fault (line 15252) | func (b *UpdateLocalSwapDatastoreBody) Fault() *soap.Fault { return b....
function UpdateLocalSwapDatastore (line 15254) | func UpdateLocalSwapDatastore(ctx context.Context, r soap.RoundTripper, ...
type UpdateLockdownExceptionsBody (line 15266) | type UpdateLockdownExceptionsBody struct
method Fault (line 15272) | func (b *UpdateLockdownExceptionsBody) Fault() *soap.Fault { return b....
function UpdateLockdownExceptions (line 15274) | func UpdateLockdownExceptions(ctx context.Context, r soap.RoundTripper, ...
type UpdateModuleOptionStringBody (line 15286) | type UpdateModuleOptionStringBody struct
method Fault (line 15292) | func (b *UpdateModuleOptionStringBody) Fault() *soap.Fault { return b....
function UpdateModuleOptionString (line 15294) | func UpdateModuleOptionString(ctx context.Context, r soap.RoundTripper, ...
type UpdateNetworkConfigBody (line 15306) | type UpdateNetworkConfigBody struct
method Fault (line 15312) | func (b *UpdateNetworkConfigBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateNetworkConfig (line 15314) | func UpdateNetworkConfig(ctx context.Context, r soap.RoundTripper, req *...
type UpdateNetworkResourcePoolBody (line 15326) | type UpdateNetworkResourcePoolBody struct
method Fault (line 15332) | func (b *UpdateNetworkResourcePoolBody) Fault() *soap.Fault { return b...
function UpdateNetworkResourcePool (line 15334) | func UpdateNetworkResourcePool(ctx context.Context, r soap.RoundTripper,...
type UpdateOptionsBody (line 15346) | type UpdateOptionsBody struct
method Fault (line 15352) | func (b *UpdateOptionsBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateOptions (line 15354) | func UpdateOptions(ctx context.Context, r soap.RoundTripper, req *types....
type UpdatePassthruConfigBody (line 15366) | type UpdatePassthruConfigBody struct
method Fault (line 15372) | func (b *UpdatePassthruConfigBody) Fault() *soap.Fault { return b.Faul...
function UpdatePassthruConfig (line 15374) | func UpdatePassthruConfig(ctx context.Context, r soap.RoundTripper, req ...
type UpdatePerfIntervalBody (line 15386) | type UpdatePerfIntervalBody struct
method Fault (line 15392) | func (b *UpdatePerfIntervalBody) Fault() *soap.Fault { return b.Fault_ }
function UpdatePerfInterval (line 15394) | func UpdatePerfInterval(ctx context.Context, r soap.RoundTripper, req *t...
type UpdatePhysicalNicLinkSpeedBody (line 15406) | type UpdatePhysicalNicLinkSpeedBody struct
method Fault (line 15412) | func (b *UpdatePhysicalNicLinkSpeedBody) Fault() *soap.Fault { return ...
function UpdatePhysicalNicLinkSpeed (line 15414) | func UpdatePhysicalNicLinkSpeed(ctx context.Context, r soap.RoundTripper...
type UpdatePortGroupBody (line 15426) | type UpdatePortGroupBody struct
method Fault (line 15432) | func (b *UpdatePortGroupBody) Fault() *soap.Fault { return b.Fault_ }
function UpdatePortGroup (line 15434) | func UpdatePortGroup(ctx context.Context, r soap.RoundTripper, req *type...
type UpdateProgressBody (line 15446) | type UpdateProgressBody struct
method Fault (line 15452) | func (b *UpdateProgressBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateProgress (line 15454) | func UpdateProgress(ctx context.Context, r soap.RoundTripper, req *types...
type UpdateReferenceHostBody (line 15466) | type UpdateReferenceHostBody struct
method Fault (line 15472) | func (b *UpdateReferenceHostBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateReferenceHost (line 15474) | func UpdateReferenceHost(ctx context.Context, r soap.RoundTripper, req *...
type UpdateRulesetBody (line 15486) | type UpdateRulesetBody struct
method Fault (line 15492) | func (b *UpdateRulesetBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateRuleset (line 15494) | func UpdateRuleset(ctx context.Context, r soap.RoundTripper, req *types....
type UpdateScsiLunDisplayNameBody (line 15506) | type UpdateScsiLunDisplayNameBody struct
method Fault (line 15512) | func (b *UpdateScsiLunDisplayNameBody) Fault() *soap.Fault { return b....
function UpdateScsiLunDisplayName (line 15514) | func UpdateScsiLunDisplayName(ctx context.Context, r soap.RoundTripper, ...
type UpdateSelfSignedClientCertBody (line 15526) | type UpdateSelfSignedClientCertBody struct
method Fault (line 15532) | func (b *UpdateSelfSignedClientCertBody) Fault() *soap.Fault { return ...
function UpdateSelfSignedClientCert (line 15534) | func UpdateSelfSignedClientCert(ctx context.Context, r soap.RoundTripper...
type UpdateServiceConsoleVirtualNicBody (line 15546) | type UpdateServiceConsoleVirtualNicBody struct
method Fault (line 15552) | func (b *UpdateServiceConsoleVirtualNicBody) Fault() *soap.Fault { ret...
function UpdateServiceConsoleVirtualNic (line 15554) | func UpdateServiceConsoleVirtualNic(ctx context.Context, r soap.RoundTri...
type UpdateServiceMessageBody (line 15566) | type UpdateServiceMessageBody struct
method Fault (line 15572) | func (b *UpdateServiceMessageBody) Fault() *soap.Fault { return b.Faul...
function UpdateServiceMessage (line 15574) | func UpdateServiceMessage(ctx context.Context, r soap.RoundTripper, req ...
type UpdateServicePolicyBody (line 15586) | type UpdateServicePolicyBody struct
method Fault (line 15592) | func (b *UpdateServicePolicyBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateServicePolicy (line 15594) | func UpdateServicePolicy(ctx context.Context, r soap.RoundTripper, req *...
type UpdateSoftwareInternetScsiEnabledBody (line 15606) | type UpdateSoftwareInternetScsiEnabledBody struct
method Fault (line 15612) | func (b *UpdateSoftwareInternetScsiEnabledBody) Fault() *soap.Fault { ...
function UpdateSoftwareInternetScsiEnabled (line 15614) | func UpdateSoftwareInternetScsiEnabled(ctx context.Context, r soap.Round...
type UpdateSystemResourcesBody (line 15626) | type UpdateSystemResourcesBody struct
method Fault (line 15632) | func (b *UpdateSystemResourcesBody) Fault() *soap.Fault { return b.Fau...
function UpdateSystemResources (line 15634) | func UpdateSystemResources(ctx context.Context, r soap.RoundTripper, req...
type UpdateSystemSwapConfigurationBody (line 15646) | type UpdateSystemSwapConfigurationBody struct
method Fault (line 15652) | func (b *UpdateSystemSwapConfigurationBody) Fault() *soap.Fault { retu...
function UpdateSystemSwapConfiguration (line 15654) | func UpdateSystemSwapConfiguration(ctx context.Context, r soap.RoundTrip...
type UpdateSystemUsersBody (line 15666) | type UpdateSystemUsersBody struct
method Fault (line 15672) | func (b *UpdateSystemUsersBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateSystemUsers (line 15674) | func UpdateSystemUsers(ctx context.Context, r soap.RoundTripper, req *ty...
type UpdateUserBody (line 15686) | type UpdateUserBody struct
method Fault (line 15692) | func (b *UpdateUserBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateUser (line 15694) | func UpdateUser(ctx context.Context, r soap.RoundTripper, req *types.Upd...
type UpdateVAppConfigBody (line 15706) | type UpdateVAppConfigBody struct
method Fault (line 15712) | func (b *UpdateVAppConfigBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateVAppConfig (line 15714) | func UpdateVAppConfig(ctx context.Context, r soap.RoundTripper, req *typ...
type UpdateVVolVirtualMachineFiles_TaskBody (line 15726) | type UpdateVVolVirtualMachineFiles_TaskBody struct
method Fault (line 15732) | func (b *UpdateVVolVirtualMachineFiles_TaskBody) Fault() *soap.Fault {...
function UpdateVVolVirtualMachineFiles_Task (line 15734) | func UpdateVVolVirtualMachineFiles_Task(ctx context.Context, r soap.Roun...
type UpdateVirtualMachineFiles_TaskBody (line 15746) | type UpdateVirtualMachineFiles_TaskBody struct
method Fault (line 15752) | func (b *UpdateVirtualMachineFiles_TaskBody) Fault() *soap.Fault { ret...
function UpdateVirtualMachineFiles_Task (line 15754) | func UpdateVirtualMachineFiles_Task(ctx context.Context, r soap.RoundTri...
type UpdateVirtualNicBody (line 15766) | type UpdateVirtualNicBody struct
method Fault (line 15772) | func (b *UpdateVirtualNicBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateVirtualNic (line 15774) | func UpdateVirtualNic(ctx context.Context, r soap.RoundTripper, req *typ...
type UpdateVirtualSwitchBody (line 15786) | type UpdateVirtualSwitchBody struct
method Fault (line 15792) | func (b *UpdateVirtualSwitchBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateVirtualSwitch (line 15794) | func UpdateVirtualSwitch(ctx context.Context, r soap.RoundTripper, req *...
type UpdateVmfsUnmapPriorityBody (line 15806) | type UpdateVmfsUnmapPriorityBody struct
method Fault (line 15812) | func (b *UpdateVmfsUnmapPriorityBody) Fault() *soap.Fault { return b.F...
function UpdateVmfsUnmapPriority (line 15814) | func UpdateVmfsUnmapPriority(ctx context.Context, r soap.RoundTripper, r...
type UpdateVsan_TaskBody (line 15826) | type UpdateVsan_TaskBody struct
method Fault (line 15832) | func (b *UpdateVsan_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function UpdateVsan_Task (line 15834) | func UpdateVsan_Task(ctx context.Context, r soap.RoundTripper, req *type...
type UpgradeIoFilter_TaskBody (line 15846) | type UpgradeIoFilter_TaskBody struct
method Fault (line 15852) | func (b *UpgradeIoFilter_TaskBody) Fault() *soap.Fault { return b.Faul...
function UpgradeIoFilter_Task (line 15854) | func UpgradeIoFilter_Task(ctx context.Context, r soap.RoundTripper, req ...
type UpgradeTools_TaskBody (line 15866) | type UpgradeTools_TaskBody struct
method Fault (line 15872) | func (b *UpgradeTools_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function UpgradeTools_Task (line 15874) | func UpgradeTools_Task(ctx context.Context, r soap.RoundTripper, req *ty...
type UpgradeVM_TaskBody (line 15886) | type UpgradeVM_TaskBody struct
method Fault (line 15892) | func (b *UpgradeVM_TaskBody) Fault() *soap.Fault { return b.Fault_ }
function UpgradeVM_Task (line 15894) | func UpgradeVM_Task(ctx context.Context, r soap.RoundTripper, req *types...
type UpgradeVmLayoutBody (line 15906) | type UpgradeVmLayoutBody struct
method Fault (line 15912) | func (b *UpgradeVmLayoutBody) Fault() *soap.Fault { return b.Fault_ }
function UpgradeVmLayout (line 15914) | func UpgradeVmLayout(ctx context.Context, r soap.RoundTripper, req *type...
type UpgradeVmfsBody (line 15926) | type UpgradeVmfsBody struct
method Fault (line 15932) | func (b *UpgradeVmfsBody) Fault() *soap.Fault { return b.Fault_ }
function UpgradeVmfs (line 15934) | func UpgradeVmfs(ctx context.Context, r soap.RoundTripper, req *types.Up...
type UpgradeVsanObjectsBody (line 15946) | type UpgradeVsanObjectsBody struct
method Fault (line 15952) | func (b *UpgradeVsanObjectsBody) Fault() *soap.Fault { return b.Fault_ }
function UpgradeVsanObjects (line 15954) | func UpgradeVsanObjects(ctx context.Context, r soap.RoundTripper, req *t...
type UploadClientCertBody (line 15966) | type UploadClientCertBody struct
method Fault (line 15972) | func (b *UploadClientCertBody) Fault() *soap.Fault { return b.Fault_ }
function UploadClientCert (line 15974) | func UploadClientCert(ctx context.Context, r soap.RoundTripper, req *typ...
type UploadKmipServerCertBody (line 15986) | type UploadKmipServerCertBody struct
method Fault (line 15992) | func (b *UploadKmipServerCertBody) Fault() *soap.Fault { return b.Faul...
function UploadKmipServerCert (line 15994) | func UploadKmipServerCert(ctx context.Context, r soap.RoundTripper, req ...
type ValidateCredentialsInGuestBody (line 16006) | type ValidateCredentialsInGuestBody struct
method Fault (line 16012) | func (b *ValidateCredentialsInGuestBody) Fault() *soap.Fault { return ...
function ValidateCredentialsInGuest (line 16014) | func ValidateCredentialsInGuest(ctx context.Context, r soap.RoundTripper...
type ValidateHostBody (line 16026) | type ValidateHostBody struct
method Fault (line 16032) | func (b *ValidateHostBody) Fault() *soap.Fault { return b.Fault_ }
function ValidateHost (line 16034) | func ValidateHost(ctx context.Context, r soap.RoundTripper, req *types.V...
type ValidateMigrationBody (line 16046) | type ValidateMigrationBody struct
method Fault (line 16052) | func (b *ValidateMigrationBody) Fault() *soap.Fault { return b.Fault_ }
function ValidateMigration (line 16054) | func ValidateMigration(ctx context.Context, r soap.RoundTripper, req *ty...
type WaitForUpdatesBody (line 16066) | type WaitForUpdatesBody struct
method Fault (line 16072) | func (b *WaitForUpdatesBody) Fault() *soap.Fault { return b.Fault_ }
function WaitForUpdates (line 16074) | func WaitForUpdates(ctx context.Context, r soap.RoundTripper, req *types...
type WaitForUpdatesExBody (line 16086) | type WaitForUpdatesExBody struct
method Fault (line 16092) | func (b *WaitForUpdatesExBody) Fault() *soap.Fault { return b.Fault_ }
function WaitForUpdatesEx (line 16094) | func WaitForUpdatesEx(ctx context.Context, r soap.RoundTripper, req *typ...
type XmlToCustomizationSpecItemBody (line 16106) | type XmlToCustomizationSpecItemBody struct
method Fault (line 16112) | func (b *XmlToCustomizationSpecItemBody) Fault() *soap.Fault { return ...
function XmlToCustomizationSpecItem (line 16114) | func XmlToCustomizationSpecItem(ctx context.Context, r soap.RoundTripper...
type ZeroFillVirtualDisk_TaskBody (line 16126) | type ZeroFillVirtualDisk_TaskBody struct
method Fault (line 16132) | func (b *ZeroFillVirtualDisk_TaskBody) Fault() *soap.Fault { return b....
function ZeroFillVirtualDisk_Task (line 16134) | func ZeroFillVirtualDisk_Task(ctx context.Context, r soap.RoundTripper, ...
FILE: vendor/github.com/vmware/govmomi/vim25/methods/service_content.go
function GetServiceContent (line 32) | func GetServiceContent(ctx context.Context, r soap.RoundTripper) (types....
function GetCurrentTime (line 45) | func GetCurrentTime(ctx context.Context, r soap.RoundTripper) (*time.Tim...
FILE: vendor/github.com/vmware/govmomi/vim25/mo/ancestors.go
function Ancestors (line 29) | func Ancestors(ctx context.Context, rt soap.RoundTripper, pc, obj types....
FILE: vendor/github.com/vmware/govmomi/vim25/mo/entity.go
type Entity (line 21) | type Entity interface
FILE: vendor/github.com/vmware/govmomi/vim25/mo/extra.go
type IsManagedEntity (line 19) | type IsManagedEntity interface
method GetManagedEntity (line 23) | func (m ComputeResource) GetManagedEntity() ManagedEntity {
method GetManagedEntity (line 27) | func (m Datacenter) GetManagedEntity() ManagedEntity {
method GetManagedEntity (line 31) | func (m Datastore) GetManagedEntity() ManagedEntity {
method GetManagedEntity (line 35) | func (m DistributedVirtualSwitch) GetManagedEntity() ManagedEntity {
method GetManagedEntity (line 39) | func (m DistributedVirtualPortgroup) GetManagedEntity() ManagedEntity {
method GetManagedEntity (line 43) | func (m Folder) GetManagedEntity() ManagedEntity {
method GetManagedEntity (line 47) | func (m HostSystem) GetManagedEntity() ManagedEntity {
method GetManagedEntity (line 51) | func (m Network) GetManagedEntity() ManagedEntity {
method GetManagedEntity (line 55) | func (m ResourcePool) GetManagedEntity() ManagedEntity {
method GetManagedEntity (line 59) | func (m VirtualMachine) GetManagedEntity() ManagedEntity {
FILE: vendor/github.com/vmware/govmomi/vim25/mo/mo.go
type Alarm (line 26) | type Alarm struct
function init (line 32) | func init() {
type AlarmManager (line 36) | type AlarmManager struct
method Reference (line 43) | func (m AlarmManager) Reference() types.ManagedObjectReference {
function init (line 47) | func init() {
type AuthorizationManager (line 51) | type AuthorizationManager struct
method Reference (line 59) | func (m AuthorizationManager) Reference() types.ManagedObjectReference {
function init (line 63) | func init() {
type CertificateManager (line 67) | type CertificateManager struct
method Reference (line 71) | func (m CertificateManager) Reference() types.ManagedObjectReference {
function init (line 75) | func init() {
type ClusterComputeResource (line 79) | type ClusterComputeResource struct
function init (line 90) | func init() {
type ClusterEVCManager (line 94) | type ClusterEVCManager struct
function init (line 101) | func init() {
type ClusterProfile (line 105) | type ClusterProfile struct
function init (line 109) | func init() {
type ClusterProfileManager (line 113) | type ClusterProfileManager struct
function init (line 117) | func init() {
type ComputeResource (line 121) | type ComputeResource struct
method Entity (line 133) | func (m *ComputeResource) Entity() *ManagedEntity {
function init (line 137) | func init() {
type ContainerView (line 141) | type ContainerView struct
function init (line 149) | func init() {
type CryptoManager (line 153) | type CryptoManager struct
method Reference (line 159) | func (m CryptoManager) Reference() types.ManagedObjectReference {
function init (line 163) | func init() {
type CryptoManagerKmip (line 167) | type CryptoManagerKmip struct
function init (line 173) | func init() {
type CustomFieldsManager (line 177) | type CustomFieldsManager struct
method Reference (line 183) | func (m CustomFieldsManager) Reference() types.ManagedObjectReference {
function init (line 187) | func init() {
type CustomizationSpecManager (line 191) | type CustomizationSpecManager struct
method Reference (line 198) | func (m CustomizationSpecManager) Reference() types.ManagedObjectRefer...
function init (line 202) | func init() {
type Datacenter (line 206) | type Datacenter struct
method Entity (line 218) | func (m *Datacenter) Entity() *ManagedEntity {
function init (line 222) | func init() {
type Datastore (line 226) | type Datastore struct
method Entity (line 238) | func (m *Datastore) Entity() *ManagedEntity {
function init (line 242) | func init() {
type DatastoreNamespaceManager (line 246) | type DatastoreNamespaceManager struct
method Reference (line 250) | func (m DatastoreNamespaceManager) Reference() types.ManagedObjectRefe...
function init (line 254) | func init() {
type DiagnosticManager (line 258) | type DiagnosticManager struct
method Reference (line 262) | func (m DiagnosticManager) Reference() types.ManagedObjectReference {
function init (line 266) | func init() {
type DistributedVirtualPortgroup (line 270) | type DistributedVirtualPortgroup struct
function init (line 278) | func init() {
type DistributedVirtualSwitch (line 282) | type DistributedVirtualSwitch struct
method Entity (line 294) | func (m *DistributedVirtualSwitch) Entity() *ManagedEntity {
function init (line 298) | func init() {
type DistributedVirtualSwitchManager (line 302) | type DistributedVirtualSwitchManager struct
method Reference (line 306) | func (m DistributedVirtualSwitchManager) Reference() types.ManagedObje...
function init (line 310) | func init() {
type EnvironmentBrowser (line 314) | type EnvironmentBrowser struct
method Reference (line 320) | func (m EnvironmentBrowser) Reference() types.ManagedObjectReference {
function init (line 324) | func init() {
type EventHistoryCollector (line 328) | type EventHistoryCollector struct
function init (line 334) | func init() {
type EventManager (line 338) | type EventManager struct
method Reference (line 346) | func (m EventManager) Reference() types.ManagedObjectReference {
function init (line 350) | func init() {
type ExtensibleManagedObject (line 354) | type ExtensibleManagedObject struct
method Reference (line 361) | func (m ExtensibleManagedObject) Reference() types.ManagedObjectRefere...
function init (line 365) | func init() {
type ExtensionManager (line 369) | type ExtensionManager struct
method Reference (line 375) | func (m ExtensionManager) Reference() types.ManagedObjectReference {
function init (line 379) | func init() {
type FailoverClusterConfigurator (line 383) | type FailoverClusterConfigurator struct
method Reference (line 389) | func (m FailoverClusterConfigurator) Reference() types.ManagedObjectRe...
function init (line 393) | func init() {
type FailoverClusterManager (line 397) | type FailoverClusterManager struct
method Reference (line 403) | func (m FailoverClusterManager) Reference() types.ManagedObjectReferen...
function init (line 407) | func init() {
type FileManager (line 411) | type FileManager struct
method Reference (line 415) | func (m FileManager) Reference() types.ManagedObjectReference {
function init (line 419) | func init() {
type Folder (line 423) | type Folder struct
method Entity (line 430) | func (m *Folder) Entity() *ManagedEntity {
function init (line 434) | func init() {
type GuestAliasManager (line 438) | type GuestAliasManager struct
method Reference (line 442) | func (m GuestAliasManager) Reference() types.ManagedObjectReference {
function init (line 446) | func init() {
type GuestAuthManager (line 450) | type GuestAuthManager struct
method Reference (line 454) | func (m GuestAuthManager) Reference() types.ManagedObjectReference {
function init (line 458) | func init() {
type GuestFileManager (line 462) | type GuestFileManager struct
method Reference (line 466) | func (m GuestFileManager) Reference() types.ManagedObjectReference {
function init (line 470) | func init() {
type GuestOperationsManager (line 474) | type GuestOperationsManager struct
method Reference (line 484) | func (m GuestOperationsManager) Reference() types.ManagedObjectReferen...
function init (line 488) | func init() {
type GuestProcessManager (line 492) | type GuestProcessManager struct
method Reference (line 496) | func (m GuestProcessManager) Reference() types.ManagedObjectReference {
function init (line 500) | func init() {
type GuestWindowsRegistryManager (line 504) | type GuestWindowsRegistryManager struct
method Reference (line 508) | func (m GuestWindowsRegistryManager) Reference() types.ManagedObjectRe...
function init (line 512) | func init() {
type HealthUpdateManager (line 516) | type HealthUpdateManager struct
method Reference (line 520) | func (m HealthUpdateManager) Reference() types.ManagedObjectReference {
function init (line 524) | func init() {
type HistoryCollector (line 528) | type HistoryCollector struct
method Reference (line 534) | func (m HistoryCollector) Reference() types.ManagedObjectReference {
function init (line 538) | func init() {
type HostAccessManager (line 542) | type HostAccessManager struct
method Reference (line 548) | func (m HostAccessManager) Reference() types.ManagedObjectReference {
function init (line 552) | func init() {
type HostActiveDirectoryAuthentication (line 556) | type HostActiveDirectoryAuthentication struct
function init (line 560) | func init() {
type HostAuthenticationManager (line 564) | type HostAuthenticationManager struct
method Reference (line 571) | func (m HostAuthenticationManager) Reference() types.ManagedObjectRefe...
function init (line 575) | func init() {
type HostAuthenticationStore (line 579) | type HostAuthenticationStore struct
method Reference (line 585) | func (m HostAuthenticationStore) Reference() types.ManagedObjectRefere...
function init (line 589) | func init() {
type HostAutoStartManager (line 593) | type HostAutoStartManager struct
method Reference (line 599) | func (m HostAutoStartManager) Reference() types.ManagedObjectReference {
function init (line 603) | func init() {
type HostBootDeviceSystem (line 607) | type HostBootDeviceSystem struct
method Reference (line 611) | func (m HostBootDeviceSystem) Reference() types.ManagedObjectReference {
function init (line 615) | func init() {
type HostCacheConfigurationManager (line 619) | type HostCacheConfigurationManager struct
method Reference (line 625) | func (m HostCacheConfigurationManager) Reference() types.ManagedObject...
function init (line 629) | func init() {
type HostCertificateManager (line 633) | type HostCertificateManager struct
method Reference (line 639) | func (m HostCertificateManager) Reference() types.ManagedObjectReferen...
function init (line 643) | func init() {
type HostCpuSchedulerSystem (line 647) | type HostCpuSchedulerSystem struct
function init (line 653) | func init() {
type HostDatastoreBrowser (line 657) | type HostDatastoreBrowser struct
method Reference (line 664) | func (m HostDatastoreBrowser) Reference() types.ManagedObjectReference {
function init (line 668) | func init() {
type HostDatastoreSystem (line 672) | type HostDatastoreSystem struct
method Reference (line 679) | func (m HostDatastoreSystem) Reference() types.ManagedObjectReference {
function init (line 683) | func init() {
type HostDateTimeSystem (line 687) | type HostDateTimeSystem struct
method Reference (line 693) | func (m HostDateTimeSystem) Reference() types.ManagedObjectReference {
function init (line 697) | func init() {
type HostDiagnosticSystem (line 701) | type HostDiagnosticSystem struct
method Reference (line 707) | func (m HostDiagnosticSystem) Reference() types.ManagedObjectReference {
function init (line 711) | func init() {
type HostDirectoryStore (line 715) | type HostDirectoryStore struct
function init (line 719) | func init() {
type HostEsxAgentHostManager (line 723) | type HostEsxAgentHostManager struct
method Reference (line 729) | func (m HostEsxAgentHostManager) Reference() types.ManagedObjectRefere...
function init (line 733) | func init() {
type HostFirewallSystem (line 737) | type HostFirewallSystem struct
function init (line 743) | func init() {
type HostFirmwareSystem (line 747) | type HostFirmwareSystem struct
method Reference (line 751) | func (m HostFirmwareSystem) Reference() types.ManagedObjectReference {
function init (line 755) | func init() {
type HostGraphicsManager (line 759) | type HostGraphicsManager struct
function init (line 767) | func init() {
type HostHealthStatusSystem (line 771) | type HostHealthStatusSystem struct
method Reference (line 777) | func (m HostHealthStatusSystem) Reference() types.ManagedObjectReferen...
function init (line 781) | func init() {
type HostImageConfigManager (line 785) | type HostImageConfigManager struct
method Reference (line 789) | func (m HostImageConfigManager) Reference() types.ManagedObjectReferen...
function init (line 793) | func init() {
type HostKernelModuleSystem (line 797) | type HostKernelModuleSystem struct
method Reference (line 801) | func (m HostKernelModuleSystem) Reference() types.ManagedObjectReferen...
function init (line 805) | func init() {
type HostLocalAccountManager (line 809) | type HostLocalAccountManager struct
method Reference (line 813) | func (m HostLocalAccountManager) Reference() types.ManagedObjectRefere...
function init (line 817) | func init() {
type HostLocalAuthentication (line 821) | type HostLocalAuthentication struct
function init (line 825) | func init() {
type HostMemorySystem (line 829) | type HostMemorySystem struct
function init (line 836) | func init() {
type HostNetworkSystem (line 840) | type HostNetworkSystem struct
function init (line 852) | func init() {
type HostPatchManager (line 856) | type HostPatchManager struct
method Reference (line 860) | func (m HostPatchManager) Reference() types.ManagedObjectReference {
function init (line 864) | func init() {
type HostPciPassthruSystem (line 868) | type HostPciPassthruSystem struct
function init (line 875) | func init() {
type HostPowerSystem (line 879) | type HostPowerSystem struct
method Reference (line 886) | func (m HostPowerSystem) Reference() types.ManagedObjectReference {
function init (line 890) | func init() {
type HostProfile (line 894) | type HostProfile struct
function init (line 900) | func init() {
type HostProfileManager (line 904) | type HostProfileManager struct
function init (line 908) | func init() {
type HostServiceSystem (line 912) | type HostServiceSystem struct
function init (line 918) | func init() {
type HostSnmpSystem (line 922) | type HostSnmpSystem struct
method Reference (line 929) | func (m HostSnmpSystem) Reference() types.ManagedObjectReference {
function init (line 933) | func init() {
type HostSpecificationManager (line 937) | type HostSpecificationManager struct
method Reference (line 941) | func (m HostSpecificationManager) Reference() types.ManagedObjectRefer...
function init (line 945) | func init() {
type HostStorageSystem (line 949) | type HostStorageSystem struct
function init (line 958) | func init() {
type HostSystem (line 962) | type HostSystem struct
method Entity (line 979) | func (m *HostSystem) Entity() *ManagedEntity {
function init (line 983) | func init() {
type HostVFlashManager (line 987) | type HostVFlashManager struct
method Reference (line 993) | func (m HostVFlashManager) Reference() types.ManagedObjectReference {
function init (line 997) | func init() {
type HostVMotionSystem (line 1001) | type HostVMotionSystem struct
function init (line 1008) | func init() {
type HostVStorageObjectManager (line 1012) | type HostVStorageObjectManager struct
function init (line 1016) | func init() {
type HostVirtualNicManager (line 1020) | type HostVirtualNicManager struct
function init (line 1026) | func init() {
type HostVsanInternalSystem (line 1030) | type HostVsanInternalSystem struct
method Reference (line 1034) | func (m HostVsanInternalSystem) Reference() types.ManagedObjectReferen...
function init (line 1038) | func init() {
type HostVsanSystem (line 1042) | type HostVsanSystem struct
method Reference (line 1048) | func (m HostVsanSystem) Reference() types.ManagedObjectReference {
function init (line 1052) | func init() {
type HttpNfcLease (line 1056) | type HttpNfcLease struct
method Reference (line 1065) | func (m HttpNfcLease) Reference() types.ManagedObjectReference {
function init (line 1069) | func init() {
type InventoryView (line 1073) | type InventoryView struct
function init (line 1077) | func init() {
type IoFilterManager (line 1081) | type IoFilterManager struct
method Reference (line 1085) | func (m IoFilterManager) Reference() types.ManagedObjectReference {
function init (line 1089) | func init() {
type IpPoolManager (line 1093) | type IpPoolManager struct
method Reference (line 1097) | func (m IpPoolManager) Reference() types.ManagedObjectReference {
function init (line 1101) | func init() {
type IscsiManager (line 1105) | type IscsiManager struct
method Reference (line 1109) | func (m IscsiManager) Reference() types.ManagedObjectReference {
function init (line 1113) | func init() {
type LicenseAssignmentManager (line 1117) | type LicenseAssignmentManager struct
method Reference (line 1121) | func (m LicenseAssignmentManager) Reference() types.ManagedObjectRefer...
function init (line 1125) | func init() {
type LicenseManager (line 1129) | type LicenseManager struct
method Reference (line 1142) | func (m LicenseManager) Reference() types.ManagedObjectReference {
function init (line 1146) | func init() {
type ListView (line 1150) | type ListView struct
function init (line 1154) | func init() {
type LocalizationManager (line 1158) | type LocalizationManager struct
method Reference (line 1164) | func (m LocalizationManager) Reference() types.ManagedObjectReference {
function init (line 1168) | func init() {
type ManagedEntity (line 1172) | type ManagedEntity struct
function init (line 1191) | func init() {
type ManagedObjectView (line 1195) | type ManagedObjectView struct
method Reference (line 1201) | func (m ManagedObjectView) Reference() types.ManagedObjectReference {
function init (line 1205) | func init() {
type MessageBusProxy (line 1209) | type MessageBusProxy struct
method Reference (line 1213) | func (m MessageBusProxy) Reference() types.ManagedObjectReference {
function init (line 1217) | func init() {
type Network (line 1221) | type Network struct
method Entity (line 1230) | func (m *Network) Entity() *ManagedEntity {
function init (line 1234) | func init() {
type OpaqueNetwork (line 1238) | type OpaqueNetwork struct
function init (line 1245) | func init() {
type OptionManager (line 1249) | type OptionManager struct
method Reference (line 1256) | func (m OptionManager) Reference() types.ManagedObjectReference {
function init (line 1260) | func init() {
type OverheadMemoryManager (line 1264) | type OverheadMemoryManager struct
method Reference (line 1268) | func (m OverheadMemoryManager) Reference() types.ManagedObjectReference {
function init (line 1272) | func init() {
type OvfManager (line 1276) | type OvfManager struct
method Reference (line 1283) | func (m OvfManager) Reference() types.ManagedObjectReference {
function init (line 1287) | func init() {
type PerformanceManager (line 1291) | type PerformanceManager struct
method Reference (line 1299) | func (m PerformanceManager) Reference() types.ManagedObjectReference {
function init (line 1303) | func init() {
type Profile (line 1307) | type Profile struct
method Reference (line 1319) | func (m Profile) Reference() types.ManagedObjectReference {
function init (line 1323) | func init() {
type ProfileComplianceManager (line 1327) | type ProfileComplianceManager struct
method Reference (line 1331) | func (m ProfileComplianceManager) Reference() types.ManagedObjectRefer...
function init (line 1335) | func init() {
type ProfileManager (line 1339) | type ProfileManager struct
method Reference (line 1345) | func (m ProfileManager) Reference() types.ManagedObjectReference {
function init (line 1349) | func init() {
type PropertyCollector (line 1353) | type PropertyCollector struct
method Reference (line 1359) | func (m PropertyCollector) Reference() types.ManagedObjectReference {
function init (line 1363) | func init() {
type PropertyFilter (line 1367) | type PropertyFilter struct
method Reference (line 1374) | func (m PropertyFilter) Reference() types.ManagedObjectReference {
function init (line 1378) | func init() {
type ResourcePlanningManager (line 1382) | type ResourcePlanningManager struct
method Reference (line 1386) | func (m ResourcePlanningManager) Reference() types.ManagedObjectRefere...
function init (line 1390) | func init() {
type ResourcePool (line 1394) | type ResourcePool struct
method Entity (line 1406) | func (m *ResourcePool) Entity() *ManagedEntity {
function init (line 1410) | func init() {
type ScheduledTask (line 1414) | type ScheduledTask struct
function init (line 1420) | func init() {
type ScheduledTaskManager (line 1424) | type ScheduledTaskManager struct
method Reference (line 1431) | func (m ScheduledTaskManager) Reference() types.ManagedObjectReference {
function init (line 1435) | func init() {
type SearchIndex (line 1439) | type SearchIndex struct
method Reference (line 1443) | func (m SearchIndex) Reference() types.ManagedObjectReference {
function init (line 1447) | func init() {
type ServiceInstance (line 1451) | type ServiceInstance struct
method Reference (line 1459) | func (m ServiceInstance) Reference() types.ManagedObjectReference {
function init (line 1463) | func init() {
type ServiceManager (line 1467) | type ServiceManager struct
method Reference (line 1473) | func (m ServiceManager) Reference() types.ManagedObjectReference {
function init (line 1477) | func init() {
type SessionManager (line 1481) | type SessionManager struct
method Reference (line 1492) | func (m SessionManager) Reference() types.ManagedObjectReference {
function init (line 1496) | func init() {
type SimpleCommand (line 1500) | type SimpleCommand struct
method Reference (line 1507) | func (m SimpleCommand) Reference() types.ManagedObjectReference {
function init (line 1511) | func init() {
type StoragePod (line 1515) | type StoragePod struct
function init (line 1522) | func init() {
type StorageResourceManager (line 1526) | type StorageResourceManager struct
method Reference (line 1530) | func (m StorageResourceManager) Reference() types.ManagedObjectReferen...
function init (line 1534) | func init() {
type Task (line 1538) | type Task struct
function init (line 1544) | func init() {
type TaskHistoryCollector (line 1548) | type TaskHistoryCollector struct
function init (line 1554) | func init() {
type TaskManager (line 1558) | type TaskManager struct
method Reference (line 1566) | func (m TaskManager) Reference() types.ManagedObjectReference {
function init (line 1570) | func init() {
type UserDirectory (line 1574) | type UserDirectory struct
method Reference (line 1580) | func (m UserDirectory) Reference() types.ManagedObjectReference {
function init (line 1584) | func init() {
type VStorageObjectManagerBase (line 1588) | type VStorageObjectManagerBase struct
method Reference (line 1592) | func (m VStorageObjectManagerBase) Reference() types.ManagedObjectRefe...
function init (line 1596) | func init() {
type VcenterVStorageObjectManager (line 1600) | type VcenterVStorageObjectManager struct
function init (line 1604) | func init() {
type View (line 1608) | type View struct
method Reference (line 1612) | func (m View) Reference() types.ManagedObjectReference {
function init (line 1616) | func init() {
type ViewManager (line 1620) | type ViewManager struct
method Reference (line 1626) | func (m ViewManager) Reference() types.ManagedObjectReference {
function init (line 1630) | func init() {
type VirtualApp (line 1634) | type VirtualApp struct
function init (line 1645) | func init() {
type VirtualDiskManager (line 1649) | type VirtualDiskManager struct
method Reference (line 1653) | func (m VirtualDiskManager) Reference() types.ManagedObjectReference {
function init (line 1657) | func init() {
type VirtualMachine (line 1661) | type VirtualMachine struct
method Entity (line 1683) | func (m *VirtualMachine) Entity() *ManagedEntity {
function init (line 1687) | func init() {
type VirtualMachineCompatibilityChecker (line 1691) | type VirtualMachineCompatibilityChecker struct
method Reference (line 1695) | func (m VirtualMachineCompatibilityChecker) Reference() types.ManagedO...
function init (line 1699) | func init() {
type VirtualMachineProvisioningChecker (line 1703) | type VirtualMachineProvisioningChecker struct
method Reference (line 1707) | func (m VirtualMachineProvisioningChecker) Reference() types.ManagedOb...
function init (line 1711) | func init() {
type VirtualMachineSnapshot (line 1715) | type VirtualMachineSnapshot struct
function init (line 1723) | func init() {
type VirtualizationManager (line 1727) | type VirtualizationManager struct
method Reference (line 1731) | func (m VirtualizationManager) Reference() types.ManagedObjectReference {
function init (line 1735) | func init() {
type VmwareDistributedVirtualSwitch (line 1739) | type VmwareDistributedVirtualSwitch struct
function init (line 1743) | func init() {
type VsanUpgradeSystem (line 1747) | type VsanUpgradeSystem struct
method Reference (line 1751) | func (m VsanUpgradeSystem) Reference() types.ManagedObjectReference {
function init (line 1755) | func init() {
FILE: vendor/github.com/vmware/govmomi/vim25/mo/reference.go
type Reference (line 24) | type Reference interface
FILE: vendor/github.com/vmware/govmomi/vim25/mo/retrieve.go
function ignoreMissingProperty (line 28) | func ignoreMissingProperty(ref types.ManagedObjectReference, p types.Mis...
function ObjectContentToType (line 49) | func ObjectContentToType(o types.ObjectContent) (interface{}, error) {
function LoadRetrievePropertiesResponse (line 70) | func LoadRetrievePropertiesResponse(res *types.RetrievePropertiesRespons...
function RetrievePropertiesForRequest (line 141) | func RetrievePropertiesForRequest(ctx context.Context, r soap.RoundTripp...
function RetrieveProperties (line 152) | func RetrieveProperties(ctx context.Context, r soap.RoundTripper, pc, ob...
FILE: vendor/github.com/vmware/govmomi/vim25/mo/retrieve_test.go
function load (line 28) | func load(name string) *types.RetrievePropertiesResponse {
function TestNotAuthenticatedFault (line 47) | func TestNotAuthenticatedFault(t *testing.T) {
function TestNestedProperty (line 61) | func TestNestedProperty(t *testing.T) {
function TestPointerProperty (line 91) | func TestPointerProperty(t *testing.T) {
function TestEmbeddedTypeProperty (line 108) | func TestEmbeddedTypeProperty(t *testing.T) {
function TestEmbeddedTypePropertySlice (line 123) | func TestEmbeddedTypePropertySlice(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/mo/type_info.go
type typeInfo (line 29) | type typeInfo struct
method build (line 99) | func (t *typeInfo) build(typ reflect.Type, fn string, fi []int) {
method LoadFromObjectContent (line 234) | func (t *typeInfo) LoadFromObjectContent(o types.ObjectContent) (refle...
function typeInfoForType (line 42) | func typeInfoForType(tname string) *typeInfo {
function newTypeInfo (line 65) | func newTypeInfo(typ reflect.Type) *typeInfo {
function buildName (line 78) | func buildName(fn string, f reflect.StructField) string {
function assignValue (line 162) | func assignValue(val reflect.Value, fi []int, pv reflect.Value) {
function anyTypeToValue (line 214) | func anyTypeToValue(t interface{}) reflect.Value {
FILE: vendor/github.com/vmware/govmomi/vim25/mo/type_info_test.go
function TestLoadAll (line 24) | func TestLoadAll(*testing.T) {
function BenchmarkLoadVirtualMachine (line 32) | func BenchmarkLoadVirtualMachine(b *testing.B) {
FILE: vendor/github.com/vmware/govmomi/vim25/progress/aggregator.go
type Aggregator (line 21) | type Aggregator struct
method loop (line 43) | func (a *Aggregator) loop() {
method Sink (line 62) | func (a *Aggregator) Sink() chan<- Report {
method Done (line 70) | func (a *Aggregator) Done() {
function NewAggregator (line 29) | func NewAggregator(s Sinker) *Aggregator {
FILE: vendor/github.com/vmware/govmomi/vim25/progress/aggregator_test.go
function TestAggregatorNoSinks (line 24) | func TestAggregatorNoSinks(t *testing.T) {
function TestAggregatorMultipleSinks (line 35) | func TestAggregatorMultipleSinks(t *testing.T) {
function TestAggregatorSinkInFlightOnDone (line 58) | func TestAggregatorSinkInFlightOnDone(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/progress/common_test.go
type dummySinker (line 19) | type dummySinker struct
method Sink (line 23) | func (d dummySinker) Sink() chan<- Report {
type dummyReport (line 27) | type dummyReport struct
method Percentage (line 33) | func (p dummyReport) Percentage() float32 {
method Detail (line 37) | func (p dummyReport) Detail() string {
method Error (line 41) | func (p dummyReport) Error() error {
FILE: vendor/github.com/vmware/govmomi/vim25/progress/prefix.go
type prefixedReport (line 21) | type prefixedReport struct
method Detail (line 26) | func (r prefixedReport) Detail() string {
function prefixLoop (line 34) | func prefixLoop(upstream <-chan Report, downstream chan<- Report, prefix...
function Prefix (line 45) | func Prefix(s Sinker, prefix string) Sinker {
FILE: vendor/github.com/vmware/govmomi/vim25/progress/prefix_test.go
function TestPrefix (line 21) | func TestPrefix(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/progress/reader.go
type readerReport (line 27) | type readerReport struct
method Percentage (line 37) | func (r readerReport) Percentage() float32 {
method Detail (line 41) | func (r readerReport) Detail() string {
method Error (line 67) | func (p readerReport) Error() error {
type reader (line 73) | type reader struct
method Read (line 100) | func (r *reader) Read(b []byte) (int, error) {
method Done (line 121) | func (r *reader) Done(err error) {
function NewReader (line 84) | func NewReader(s Sinker, r io.Reader, size int64) *reader {
function newBpsLoop (line 135) | func newBpsLoop(dst *uint64) SinkFunc {
function bpsLoop (line 145) | func bpsLoop(ch <-chan Report, dst *uint64) {
FILE: vendor/github.com/vmware/govmomi/vim25/progress/reader_test.go
function TestReader (line 25) | func TestReader(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/progress/report.go
type Report (line 22) | type Report interface
FILE: vendor/github.com/vmware/govmomi/vim25/progress/scale.go
type scaledReport (line 19) | type scaledReport struct
method Percentage (line 25) | func (r scaledReport) Percentage() float32 {
type scaleOne (line 30) | type scaleOne struct
method Sink (line 36) | func (s scaleOne) Sink() chan<- Report {
method loop (line 43) | func (s scaleOne) loop(upstream <-chan Report, downstream chan<- Repor...
type scaleMany (line 55) | type scaleMany struct
method Sink (line 68) | func (s *scaleMany) Sink() chan<- Report {
function Scale (line 61) | func Scale(s Sinker, n int) Sinker {
FILE: vendor/github.com/vmware/govmomi/vim25/progress/scale_test.go
function TestScaleMany (line 21) | func TestScaleMany(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/progress/sinker.go
type Sinker (line 23) | type Sinker interface
type SinkFunc (line 28) | type SinkFunc
method Sink (line 31) | func (fn SinkFunc) Sink() chan<- Report {
FILE: vendor/github.com/vmware/govmomi/vim25/progress/tee.go
function Tee (line 21) | func Tee(s1, s2 Sinker) Sinker {
function tee (line 33) | func tee(u <-chan Report, d1, d2 chan<- Report) {
FILE: vendor/github.com/vmware/govmomi/vim25/progress/tee_test.go
function TestTee (line 21) | func TestTee(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/retry.go
type RetryFunc (line 28) | type RetryFunc
function TemporaryNetworkError (line 33) | func TemporaryNetworkError(n int) RetryFunc {
type retry (line 63) | type retry struct
method RoundTrip (line 86) | func (r *retry) RoundTrip(ctx context.Context, req, res soap.HasFault)...
function Retry (line 77) | func Retry(roundTripper soap.RoundTripper, fn RetryFunc) soap.RoundTripp...
FILE: vendor/github.com/vmware/govmomi/vim25/retry_test.go
type tempError (line 26) | type tempError struct
method Error (line 28) | func (tempError) Error() string { return "tempError" }
method Timeout (line 29) | func (tempError) Timeout() bool { return true }
method Temporary (line 30) | func (tempError) Temporary() bool { return true }
type nonTempError (line 32) | type nonTempError struct
method Error (line 34) | func (nonTempError) Error() string { return "nonTempError" }
method Timeout (line 35) | func (nonTempError) Timeout() bool { return false }
method Temporary (line 36) | func (nonTempError) Temporary() bool { return false }
type fakeRoundTripper (line 38) | type fakeRoundTripper struct
method RoundTrip (line 42) | func (f *fakeRoundTripper) RoundTrip(ctx context.Context, req, res soa...
function TestRetry (line 48) | func TestRetry(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/soap/client.go
type HasFault (line 47) | type HasFault interface
type RoundTripper (line 51) | type RoundTripper interface
constant DefaultVimNamespace (line 56) | DefaultVimNamespace = "urn:vim25"
constant DefaultVimVersion (line 57) | DefaultVimVersion = "6.5"
constant DefaultMinVimVersion (line 58) | DefaultMinVimVersion = "5.5"
type header (line 61) | type header struct
type Client (line 65) | type Client struct
method NewServiceClient (line 157) | func (c *Client) NewServiceClient(path string, namespace string) *Clie...
method SetRootCAs (line 187) | func (c *Client) SetRootCAs(file string) error {
method SetThumbprint (line 219) | func (c *Client) SetThumbprint(host string, thumbprint string) {
method Thumbprint (line 232) | func (c *Client) Thumbprint(host string) string {
method LoadThumbprints (line 241) | func (c *Client) LoadThumbprints(file string) error {
method loadThumbprints (line 256) | func (c *Client) loadThumbprints(name string) error {
method dialTLS (line 293) | func (c *Client) dialTLS(network string, addr string) (net.Conn, error) {
method SetCertificate (line 350) | func (c *Client) SetCertificate(cert tls.Certificate) {
method URL (line 387) | func (c *Client) URL() *url.URL {
method MarshalJSON (line 398) | func (c *Client) MarshalJSON() ([]byte, error) {
method UnmarshalJSON (line 408) | func (c *Client) UnmarshalJSON(b []byte) error {
method do (line 422) | func (c *Client) do(ctx context.Context, req *http.Request) (*http.Res...
method RoundTrip (line 430) | func (c *Client) RoundTrip(ctx context.Context, reqBody, resBody HasFa...
method CloseIdleConnections (line 508) | func (c *Client) CloseIdleConnections() {
method ParseURL (line 515) | func (c *Client) ParseURL(urlStr string) (*url.URL, error) {
method Upload (line 545) | func (c *Client) Upload(f io.Reader, u *url.URL, param *Upload) error {
method UploadFile (line 590) | func (c *Client) UploadFile(file string, u *url.URL, param *Upload) er...
method DownloadRequest (line 624) | func (c *Client) DownloadRequest(u *url.URL, param *Download) (*http.R...
method Download (line 672) | func (c *Client) Download(u *url.URL, param *Download) (io.ReadCloser,...
method DownloadFile (line 698) | func (c *Client) DownloadFile(file string, u *url.URL, param *Download...
function ParseURL (line 87) | func ParseURL(s string) (*url.URL, error) {
function NewClient (line 115) | func NewClient(u *url.URL, insecure bool) *Client {
function hostAddr (line 205) | func hostAddr(addr string) string {
function ThumbprintSHA1 (line 284) | func ThumbprintSHA1(cert *x509.Certificate) string {
function splitHostPort (line 335) | func splitHostPort(host string) (string, string) {
constant sdkTunnel (line 348) | sdkTunnel = "sdkTunnel:8089"
type marshaledClient (line 392) | type marshaledClient struct
type Upload (line 530) | type Upload struct
type Download (line 612) | type Download struct
type directoryReader (line 648) | type directoryReader struct
method Read (line 657) | func (r *directoryReader) Read(buf []byte) (int, error) {
FILE: vendor/github.com/vmware/govmomi/vim25/soap/client_test.go
function TestSplitHostPort (line 21) | func TestSplitHostPort(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/soap/debug.go
type teeReader (line 31) | type teeReader struct
function newTeeReader (line 36) | func newTeeReader(rc io.ReadCloser, w io.Writer) io.ReadCloser {
type debugRoundTrip (line 44) | type debugRoundTrip struct
method logf (line 51) | func (d *debugRoundTrip) logf(format string, a ...interface{}) {
method enabled (line 58) | func (d *debugRoundTrip) enabled() bool {
method done (line 62) | func (d *debugRoundTrip) done() {
method newFile (line 68) | func (d *debugRoundTrip) newFile(suffix string) io.WriteCloser {
method debugRequest (line 72) | func (d *debugRoundTrip) debugRequest(req *http.Request) {
method debugResponse (line 93) | func (d *debugRoundTrip) debugResponse(res *http.Response) {
type debugContainer (line 117) | type debugContainer struct
method newRoundTrip (line 137) | func (d *debugContainer) newRoundTrip() *debugRoundTrip {
function newDebug (line 123) | func newDebug() *debugContainer {
FILE: vendor/github.com/vmware/govmomi/vim25/soap/error.go
type regularError (line 26) | type regularError struct
method Error (line 30) | func (r regularError) Error() string {
type soapFaultError (line 34) | type soapFaultError struct
method Error (line 38) | func (s soapFaultError) Error() string {
type vimFaultError (line 48) | type vimFaultError struct
method Error (line 52) | func (v vimFaultError) Error() string {
method Fault (line 61) | func (v vimFaultError) Fault() types.BaseMethodFault {
function Wrap (line 65) | func Wrap(err error) error {
function WrapRegularError (line 78) | func WrapRegularError(err error) error {
function IsRegularError (line 82) | func IsRegularError(err error) bool {
function ToRegularError (line 87) | func ToRegularError(err error) error {
function WrapSoapFault (line 91) | func WrapSoapFault(f *Fault) error {
function IsSoapFault (line 95) | func IsSoapFault(err error) bool {
function ToSoapFault (line 100) | func ToSoapFault(err error) *Fault {
function WrapVimFault (line 104) | func WrapVimFault(v types.BaseMethodFault) error {
function IsVimFault (line 108) | func IsVimFault(err error) bool {
function ToVimFault (line 113) | func ToVimFault(err error) types.BaseMethodFault {
FILE: vendor/github.com/vmware/govmomi/vim25/soap/soap.go
type Envelope (line 24) | type Envelope struct
type Fault (line 30) | type Fault struct
method VimFault (line 39) | func (f *Fault) VimFault() types.AnyType {
FILE: vendor/github.com/vmware/govmomi/vim25/soap/soap_test.go
function TestEmptyEnvelope (line 25) | func TestEmptyEnvelope(t *testing.T) {
function TestNonEmptyHeader (line 41) | func TestNonEmptyHeader(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/types/base.go
type AnyType (line 19) | type AnyType interface
FILE: vendor/github.com/vmware/govmomi/vim25/types/base_test.go
function TestAnyType (line 27) | func TestAnyType(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/types/enum.go
type ActionParameter (line 21) | type ActionParameter
constant ActionParameterTargetName (line 24) | ActionParameterTargetName = ActionParameter("targetName")
constant ActionParameterAlarmName (line 25) | ActionParameterAlarmName = ActionParameter("alarmName")
constant ActionParameterOldStatus (line 26) | ActionParameterOldStatus = ActionParameter("oldStatus")
constant ActionParameterNewStatus (line 27) | ActionParameterNewStatus = ActionParameter("newStatus")
constant ActionParameterTriggeringSummary (line 28) | ActionParameterTriggeringSummary = ActionParameter("triggeringSummary")
constant ActionParameterDeclaringSummary (line 29) | ActionParameterDeclaringSummary = ActionParameter("declaringSummary")
constant ActionParameterEventDescription (line 30) | ActionParameterEventDescription = ActionParameter("eventDescription")
constant ActionParameterTarget (line 31) | ActionParameterTarget = ActionParameter("target")
constant ActionParameterAlarm (line 32) | ActionParameterAlarm = ActionParameter("alarm")
function init (line 35) | func init() {
type ActionType (line 39) | type ActionType
constant ActionTypeMigrationV1 (line 42) | ActionTypeMigrationV1 = ActionType("MigrationV1")
constant ActionTypeVmPowerV1 (line 43) | ActionTypeVmPowerV1 = ActionType("VmPowerV1")
constant ActionTypeHostPowerV1 (line 44) | ActionTypeHostPowerV1 = ActionType("HostPowerV1")
constant ActionTypeHostMaintenanceV1 (line 45) | ActionTypeHostMaintenanceV1 = ActionType("HostMaintenanceV1")
constant ActionTypeStorageMigrationV1 (line 46) | ActionTypeStorageMigrationV1 = ActionType("StorageMigrationV1")
constant ActionTypeStoragePlacementV1 (line 47) | ActionTypeStoragePlacementV1 = ActionType("StoragePlacementV1")
constant ActionTypePlacementV1 (line 48) | ActionTypePlacementV1 = ActionType("PlacementV1")
constant ActionTypeHostInfraUpdateHaV1 (line 49) | ActionTypeHostInfraUpdateHaV1 = ActionType("HostInfraUpdateHaV1")
function init (line 52) | func init() {
type AffinityType (line 56) | type AffinityType
constant AffinityTypeMemory (line 59) | AffinityTypeMemory = AffinityType("memory")
constant AffinityTypeCpu (line 60) | AffinityTypeCpu = AffinityType("cpu")
function init (line 63) | func init() {
type AgentInstallFailedReason (line 67) | type AgentInstallFailedReason
constant AgentInstallFailedReasonNotEnoughSpaceOnDevice (line 70) | AgentInstallFailedReasonNotEnoughSpaceOnDevice = AgentInstallFailed...
constant AgentInstallFailedReasonPrepareToUpgradeFailed (line 71) | AgentInstallFailedReasonPrepareToUpgradeFailed = AgentInstallFailed...
constant AgentInstallFailedReasonAgentNotRunning (line 72) | AgentInstallFailedReasonAgentNotRunning = AgentInstallFailed...
constant AgentInstallFailedReasonAgentNotReachable (line 73) | AgentInstallFailedReasonAgentNotReachable = AgentInstallFailed...
constant AgentInstallFailedReasonInstallTimedout (line 74) | AgentInstallFailedReasonInstallTimedout = AgentInstallFailed...
constant AgentInstallFailedReasonSignatureVerificationFailed (line 75) | AgentInstallFailedReasonSignatureVerificationFailed = AgentInstallFailed...
constant AgentInstallFailedReasonAgentUploadFailed (line 76) | AgentInstallFailedReasonAgentUploadFailed = AgentInstallFailed...
constant AgentInstallFailedReasonAgentUploadTimedout (line 77) | AgentInstallFailedReasonAgentUploadTimedout = AgentInstallFailed...
constant AgentInstallFailedReasonUnknownInstallerError (line 78) | AgentInstallFailedReasonUnknownInstallerError = AgentInstallFailed...
function init (line 81) | func init() {
type ArrayUpdateOperation (line 85) | type ArrayUpdateOperation
constant ArrayUpdateOperationAdd (line 88) | ArrayUpdateOperationAdd = ArrayUpdateOperation("add")
constant ArrayUpdateOperationRemove (line 89) | ArrayUpdateOperationRemove = ArrayUpdateOperation("remove")
constant ArrayUpdateOperationEdit (line 90) | ArrayUpdateOperationEdit = ArrayUpdateOperation("edit")
function init (line 93) | func init() {
type AutoStartAction (line 97) | type AutoStartAction
constant AutoStartActionNone (line 100) | AutoStartActionNone = AutoStartAction("none")
constant AutoStartActionSystemDefault (line 101) | AutoStartActionSystemDefault = AutoStartAction("systemDefault")
constant AutoStartActionPowerOn (line 102) | AutoStartActionPowerOn = AutoStartAction("powerOn")
constant AutoStartActionPowerOff (line 103) | AutoStartActionPowerOff = AutoStartAction("powerOff")
constant AutoStartActionGuestShutdown (line 104) | AutoStartActionGuestShutdown = AutoStartAction("guestShutdown")
constant AutoStartActionSuspend (line 105) | AutoStartActionSuspend = AutoStartAction("suspend")
function init (line 108) | func init() {
type AutoStartWaitHeartbeatSetting (line 112) | type AutoStartWaitHeartbeatSetting
constant AutoStartWaitHeartbeatSettingYes (line 115) | AutoStartWaitHeartbeatSettingYes = AutoStartWaitHeartbeatSetti...
constant AutoStartWaitHeartbeatSettingNo (line 116) | AutoStartWaitHeartbeatSettingNo = AutoStartWaitHeartbeatSetti...
constant AutoStartWaitHeartbeatSettingSystemDefault (line 117) | AutoStartWaitHeartbeatSettingSystemDefault = AutoStartWaitHeartbeatSetti...
function init (line 120) | func init() {
type BaseConfigInfoDiskFileBackingInfoProvisioningType (line 124) | type BaseConfigInfoDiskFileBackingInfoProvisioningType
constant BaseConfigInfoDiskFileBackingInfoProvisioningTypeThin (line 127) | BaseConfigInfoDiskFileBackingInfoProvisioningTypeThin = Base...
constant BaseConfigInfoDiskFileBackingInfoProvisioningTypeEagerZeroedThick (line 128) | BaseConfigInfoDiskFileBackingInfoProvisioningTypeEagerZeroedThick = Base...
constant BaseConfigInfoDiskFileBackingInfoProvisioningTypeLazyZeroedThick (line 129) | BaseConfigInfoDiskFileBackingInfoProvisioningTypeLazyZeroedThick = Base...
function init (line 132) | func init() {
type BatchResultResult (line 136) | type BatchResultResult
constant BatchResultResultSuccess (line 139) | BatchResultResultSuccess = BatchResultResult("success")
constant BatchResultResultFail (line 140) | BatchResultResultFail = BatchResultResult("fail")
function init (line 143) | func init() {
type CannotEnableVmcpForClusterReason (line 147) | type CannotEnableVmcpForClusterReason
constant CannotEnableVmcpForClusterReasonAPDTimeoutDisabled (line 150) | CannotEnableVmcpForClusterReasonAPDTimeoutDisabled = CannotEnableVm...
constant CannotEnableVmcpForClusterReasonIncompatibleHostVersion (line 151) | CannotEnableVmcpForClusterReasonIncompatibleHostVersion = CannotEnableVm...
function init (line 154) | func init() {
type CannotMoveFaultToleranceVmMoveType (line 158) | type CannotMoveFaultToleranceVmMoveType
constant CannotMoveFaultToleranceVmMoveTypeResourcePool (line 161) | CannotMoveFaultToleranceVmMoveTypeResourcePool = CannotMoveFaultToleranc...
constant CannotMoveFaultToleranceVmMoveTypeCluster (line 162) | CannotMoveFaultToleranceVmMoveTypeCluster = CannotMoveFaultToleranc...
function init (line 165) | func init() {
type CannotPowerOffVmInClusterOperation (line 169) | type CannotPowerOffVmInClusterOperation
constant CannotPowerOffVmInClusterOperationSuspend (line 172) | CannotPowerOffVmInClusterOperationSuspend = CannotPowerOffVmInClus...
constant CannotPowerOffVmInClusterOperationPowerOff (line 173) | CannotPowerOffVmInClusterOperationPowerOff = CannotPowerOffVmInClus...
constant CannotPowerOffVmInClusterOperationGuestShutdown (line 174) | CannotPowerOffVmInClusterOperationGuestShutdown = CannotPowerOffVmInClus...
constant CannotPowerOffVmInClusterOperationGuestSuspend (line 175) | CannotPowerOffVmInClusterOperationGuestSuspend = CannotPowerOffVmInClus...
function init (line 178) | func init() {
type CannotUseNetworkReason (line 182) | type CannotUseNetworkReason
constant CannotUseNetworkReasonNetworkReservationNotSupported (line 185) | CannotUseNetworkReasonNetworkReservationNotSupported = CannotUseNetwork...
constant CannotUseNetworkReasonMismatchedNetworkPolicies (line 186) | CannotUseNetworkReasonMismatchedNetworkPolicies = CannotUseNetwork...
constant CannotUseNetworkReasonMismatchedDvsVersionOrVendor (line 187) | CannotUseNetworkReasonMismatchedDvsVersionOrVendor = CannotUseNetwork...
constant CannotUseNetworkReasonVMotionToUnsupportedNetworkType (line 188) | CannotUseNetworkReasonVMotionToUnsupportedNetworkType = CannotUseNetwork...
function init (line 191) | func init() {
type CheckTestType (line 195) | type CheckTestType
constant CheckTestTypeSourceTests (line 198) | CheckTestTypeSourceTests = CheckTestType("sourceTests")
constant CheckTestTypeHostTests (line 199) | CheckTestTypeHostTests = CheckTestType("hostTests")
constant CheckTestTypeResourcePoolTests (line 200) | CheckTestTypeResourcePoolTests = CheckTestType("resourcePoolTests")
constant CheckTestTypeDatastoreTests (line 201) | CheckTestTypeDatastoreTests = CheckTestType("datastoreTests")
constant CheckTestTypeNetworkTests (line 202) | CheckTestTypeNetworkTests = CheckTestType("networkTests")
function init (line 205) | func init() {
type ClusterDasAamNodeStateDasState (line 209) | type ClusterDasAamNodeStateDasState
constant ClusterDasAamNodeStateDasStateUninitialized (line 212) | ClusterDasAamNodeStateDasStateUninitialized = ClusterDasAamNodeStateDasS...
constant ClusterDasAamNodeStateDasStateInitialized (line 213) | ClusterDasAamNodeStateDasStateInitialized = ClusterDasAamNodeStateDasS...
constant ClusterDasAamNodeStateDasStateConfiguring (line 214) | ClusterDasAamNodeStateDasStateConfiguring = ClusterDasAamNodeStateDasS...
constant ClusterDasAamNodeStateDasStateUnconfiguring (line 215) | ClusterDasAamNodeStateDasStateUnconfiguring = ClusterDasAamNodeStateDasS...
constant ClusterDasAamNodeStateDasStateRunning (line 216) | ClusterDasAamNodeStateDasStateRunning = ClusterDasAamNodeStateDasS...
constant ClusterDasAamNodeStateDasStateError (line 217) | ClusterDasAamNodeStateDasStateError = ClusterDasAamNodeStateDasS...
constant ClusterDasAamNodeStateDasStateAgentShutdown (line 218) | ClusterDasAamNodeStateDasStateAgentShutdown = ClusterDasAamNodeStateDasS...
constant ClusterDasAamNodeStateDasStateNodeFailed (line 219) | ClusterDasAamNodeStateDasStateNodeFailed = ClusterDasAamNodeStateDasS...
function init (line 222) | func init() {
type ClusterDasConfigInfoHBDatastoreCandidate (line 226) | type ClusterDasConfigInfoHBDatastoreCandidate
constant ClusterDasConfigInfoHBDatastoreCandidateUserSelectedDs (line 229) | ClusterDasConfigInfoHBDatastoreCandidateUserSelectedDs ...
constant ClusterDasConfigInfoHBDatastoreCandidateAllFeasibleDs (line 230) | ClusterDasConfigInfoHBDatastoreCandidateAllFeasibleDs ...
constant ClusterDasConfigInfoHBDatastoreCandidateAllFeasibleDsWithUserPreference (line 231) | ClusterDasConfigInfoHBDatastoreCandidateAllFeasibleDsWithUserPreference ...
function init (line 234) | func init() {
type ClusterDasConfigInfoServiceState (line 238) | type ClusterDasConfigInfoServiceState
constant ClusterDasConfigInfoServiceStateDisabled (line 241) | ClusterDasConfigInfoServiceStateDisabled = ClusterDasConfigInfoServiceSt...
constant ClusterDasConfigInfoServiceStateEnabled (line 242) | ClusterDasConfigInfoServiceStateEnabled = ClusterDasConfigInfoServiceSt...
function init (line 245) | func init() {
type ClusterDasConfigInfoVmMonitoringState (line 249) | type ClusterDasConfigInfoVmMonitoringState
constant ClusterDasConfigInfoVmMonitoringStateVmMonitoringDisabled (line 252) | ClusterDasConfigInfoVmMonitoringStateVmMonitoringDisabled = ClusterDasCo...
constant ClusterDasConfigInfoVmMonitoringStateVmMonitoringOnly (line 253) | ClusterDasConfigInfoVmMonitoringStateVmMonitoringOnly = ClusterDasCo...
constant ClusterDasConfigInfoVmMonitoringStateVmAndAppMonitoring (line 254) | ClusterDasConfigInfoVmMonitoringStateVmAndAppMonitoring = ClusterDasCo...
function init (line 257) | func init() {
type ClusterDasFdmAvailabilityState (line 261) | type ClusterDasFdmAvailabilityState
constant ClusterDasFdmAvailabilityStateUninitialized (line 264) | ClusterDasFdmAvailabilityStateUninitialized = ClusterDasF...
constant ClusterDasFdmAvailabilityStateElection (line 265) | ClusterDasFdmAvailabilityStateElection = ClusterDasF...
constant ClusterDasFdmAvailabilityStateMaster (line 266) | ClusterDasFdmAvailabilityStateMaster = ClusterDasF...
constant ClusterDasFdmAvailabilityStateConnectedToMaster (line 267) | ClusterDasFdmAvailabilityStateConnectedToMaster = ClusterDasF...
constant ClusterDasFdmAvailabilityStateNetworkPartitionedFromMaster (line 268) | ClusterDasFdmAvailabilityStateNetworkPartitionedFromMaster = ClusterDasF...
constant ClusterDasFdmAvailabilityStateNetworkIsolated (line 269) | ClusterDasFdmAvailabilityStateNetworkIsolated = ClusterDasF...
constant ClusterDasFdmAvailabilityStateHostDown (line 270) | ClusterDasFdmAvailabilityStateHostDown = ClusterDasF...
constant ClusterDasFdmAvailabilityStateInitializationError (line 271) | ClusterDasFdmAvailabilityStateInitializationError = ClusterDasF...
constant ClusterDasFdmAvailabilityStateUninitializationError (line 272) | ClusterDasFdmAvailabilityStateUninitializationError = ClusterDasF...
constant ClusterDasFdmAvailabilityStateFdmUnreachable (line 273) | ClusterDasFdmAvailabilityStateFdmUnreachable = ClusterDasF...
function init (line 276) | func init() {
type ClusterDasVmSettingsIsolationResponse (line 280) | type ClusterDasVmSettingsIsolationResponse
constant ClusterDasVmSettingsIsolationResponseNone (line 283) | ClusterDasVmSettingsIsolationResponseNone = ClusterD...
constant ClusterDasVmSettingsIsolationResponsePowerOff (line 284) | ClusterDasVmSettingsIsolationResponsePowerOff = ClusterD...
constant ClusterDasVmSettingsIsolationResponseShutdown (line 285) | ClusterDasVmSettingsIsolationResponseShutdown = ClusterD...
constant ClusterDasVmSettingsIsolationResponseClusterIsolationResponse (line 286) | ClusterDasVmSettingsIsolationResponseClusterIsolationResponse = ClusterD...
function init (line 289) | func init() {
type ClusterDasVmSettingsRestartPriority (line 293) | type ClusterDasVmSettingsRestartPriority
constant ClusterDasVmSettingsRestartPriorityDisabled (line 296) | ClusterDasVmSettingsRestartPriorityDisabled = ClusterDasVm...
constant ClusterDasVmSettingsRestartPriorityLowest (line 297) | ClusterDasVmSettingsRestartPriorityLowest = ClusterDasVm...
constant ClusterDasVmSettingsRestartPriorityLow (line 298) | ClusterDasVmSettingsRestartPriorityLow = ClusterDasVm...
constant ClusterDasVmSettingsRestartPriorityMedium (line 299) | ClusterDasVmSettingsRestartPriorityMedium = ClusterDasVm...
constant ClusterDasVmSettingsRestartPriorityHigh (line 300) | ClusterDasVmSettingsRestartPriorityHigh = ClusterDasVm...
constant ClusterDasVmSettingsRestartPriorityHighest (line 301) | ClusterDasVmSettingsRestartPriorityHighest = ClusterDasVm...
constant ClusterDasVmSettingsRestartPriorityClusterRestartPriority (line 302) | ClusterDasVmSettingsRestartPriorityClusterRestartPriority = ClusterDasVm...
function init (line 305) | func init() {
type ClusterHostInfraUpdateHaModeActionOperationType (line 309) | type ClusterHostInfraUpdateHaModeActionOperationType
constant ClusterHostInfraUpdateHaModeActionOperationTypeEnterQuarantine (line 312) | ClusterHostInfraUpdateHaModeActionOperationTypeEnterQuarantine = Cluste...
constant ClusterHostInfraUpdateHaModeActionOperationTypeExitQuarantine (line 313) | ClusterHostInfraUpdateHaModeActionOperationTypeExitQuarantine = Cluste...
constant ClusterHostInfraUpdateHaModeActionOperationTypeEnterMaintenance (line 314) | ClusterHostInfraUpdateHaModeActionOperationTypeEnterMaintenance = Cluste...
function init (line 317) | func init() {
type ClusterInfraUpdateHaConfigInfoBehaviorType (line 321) | type ClusterInfraUpdateHaConfigInfoBehaviorType
constant ClusterInfraUpdateHaConfigInfoBehaviorTypeManual (line 324) | ClusterInfraUpdateHaConfigInfoBehaviorTypeManual = ClusterInfraUpdate...
constant ClusterInfraUpdateHaConfigInfoBehaviorTypeAutomated (line 325) | ClusterInfraUpdateHaConfigInfoBehaviorTypeAutomated = ClusterInfraUpdate...
function init (line 328) | func init() {
type ClusterInfraUpdateHaConfigInfoRemediationType (line 332) | type ClusterInfraUpdateHaConfigInfoRemediationType
constant ClusterInfraUpdateHaConfigInfoRemediationTypeQuarantineMode (line 335) | ClusterInfraUpdateHaConfigInfoRemediationTypeQuarantineMode = ClusterIn...
constant ClusterInfraUpdateHaConfigInfoRemediationTypeMaintenanceMode (line 336) | ClusterInfraUpdateHaConfigInfoRemediationTypeMaintenanceMode = ClusterIn...
function init (line 339) | func init() {
type ClusterPowerOnVmOption (line 343) | type ClusterPowerOnVmOption
constant ClusterPowerOnVmOptionOverrideAutomationLevel (line 346) | ClusterPowerOnVmOptionOverrideAutomationLevel = ClusterPowerOnVmOption("...
constant ClusterPowerOnVmOptionReserveResources (line 347) | ClusterPowerOnVmOptionReserveResources = ClusterPowerOnVmOption("...
function init (line 350) | func init() {
type ClusterProfileServiceType (line 354) | type ClusterProfileServiceType
constant ClusterProfileServiceTypeDRS (line 357) | ClusterProfileServiceTypeDRS = ClusterProfileServiceType("DRS")
constant ClusterProfileServiceTypeHA (line 358) | ClusterProfileServiceTypeHA = ClusterProfileServiceType("HA")
constant ClusterProfileServiceTypeDPM (line 359) | ClusterProfileServiceTypeDPM = ClusterProfileServiceType("DPM")
constant ClusterProfileServiceTypeFT (line 360) | ClusterProfileServiceTypeFT = ClusterProfileServiceType("FT")
function init (line 363) | func init() {
type ClusterVmComponentProtectionSettingsStorageVmReaction (line 367) | type ClusterVmComponentProtectionSettingsStorageVmReaction
constant ClusterVmComponentProtectionSettingsStorageVmReactionDisabled (line 370) | ClusterVmComponentProtectionSettingsStorageVmReactionDisabled ...
constant ClusterVmComponentProtectionSettingsStorageVmReactionWarning (line 371) | ClusterVmComponentProtectionSettingsStorageVmReactionWarning ...
constant ClusterVmComponentProtectionSettingsStorageVmReactionRestartConservative (line 372) | ClusterVmComponentProtectionSettingsStorageVmReactionRestartConservative...
constant ClusterVmComponentProtectionSettingsStorageVmReactionRestartAggressive (line 373) | ClusterVmComponentProtectionSettingsStorageVmReactionRestartAggressive ...
constant ClusterVmComponentProtectionSettingsStorageVmReactionClusterDefault (line 374) | ClusterVmComponentProtectionSettingsStorageVmReactionClusterDefault ...
function init (line 377) | func init() {
type ClusterVmComponentProtectionSettingsVmReactionOnAPDCleared (line 381) | type ClusterVmComponentProtectionSettingsVmReactionOnAPDCleared
constant ClusterVmComponentProtectionSettingsVmReactionOnAPDClearedNone (line 384) | ClusterVmComponentProtectionSettingsVmReactionOnAPDClearedNone ...
constant ClusterVmComponentProtectionSettingsVmReactionOnAPDClearedReset (line 385) | ClusterVmComponentProtectionSettingsVmReactionOnAPDClearedReset ...
constant ClusterVmComponentProtectionSettingsVmReactionOnAPDClearedUseClusterDefault (line 386) | ClusterVmComponentProtectionSettingsVmReactionOnAPDClearedUseClusterDefa...
function init (line 389) | func init() {
type ClusterVmReadinessReadyCondition (line 393) | type ClusterVmReadinessReadyCondition
constant ClusterVmReadinessReadyConditionNone (line 396) | ClusterVmReadinessReadyConditionNone = ClusterVmReadinessR...
constant ClusterVmReadinessReadyConditionPoweredOn (line 397) | ClusterVmReadinessReadyConditionPoweredOn = ClusterVmReadinessR...
constant ClusterVmReadinessReadyConditionGuestHbStatusGreen (line 398) | ClusterVmReadinessReadyConditionGuestHbStatusGreen = ClusterVmReadinessR...
constant ClusterVmReadinessReadyConditionAppHbStatusGreen (line 399) | ClusterVmReadinessReadyConditionAppHbStatusGreen = ClusterVmReadinessR...
constant ClusterVmReadinessReadyConditionUseClusterDefault (line 400) | ClusterVmReadinessReadyConditionUseClusterDefault = ClusterVmReadinessR...
function init (line 403) | func init() {
type ComplianceResultStatus (line 407) | type ComplianceResultStatus
constant ComplianceResultStatusCompliant (line 410) | ComplianceResultStatusCompliant = ComplianceResultStatus("compliant")
constant ComplianceResultStatusNonCompliant (line 411) | ComplianceResultStatusNonCompliant = ComplianceResultStatus("nonCompliant")
constant ComplianceResultStatusUnknown (line 412) | ComplianceResultStatusUnknown = ComplianceResultStatus("unknown")
function init (line 415) | func init() {
type ComputeResourceHostSPBMLicenseInfoHostSPBMLicenseState (line 419) | type ComputeResourceHostSPBMLicenseInfoHostSPBMLicenseState
constant ComputeResourceHostSPBMLicenseInfoHostSPBMLicenseStateLicensed (line 422) | ComputeResourceHostSPBMLicenseInfoHostSPBMLicenseStateLicensed = Compu...
constant ComputeResourceHostSPBMLicenseInfoHostSPBMLicenseStateUnlicensed (line 423) | ComputeResourceHostSPBMLicenseInfoHostSPBMLicenseStateUnlicensed = Compu...
constant ComputeResourceHostSPBMLicenseInfoHostSPBMLicenseStateUnknown (line 424) | ComputeResourceHostSPBMLicenseInfoHostSPBMLicenseStateUnknown = Compu...
function init (line 427) | func init() {
type ConfigSpecOperation (line 431) | type ConfigSpecOperation
constant ConfigSpecOperationAdd (line 434) | ConfigSpecOperationAdd = ConfigSpecOperation("add")
constant ConfigSpecOperationEdit (line 435) | ConfigSpecOperationEdit = ConfigSpecOperation("edit")
constant ConfigSpecOperationRemove (line 436) | ConfigSpecOperationRemove = ConfigSpecOperation("remove")
function init (line 439) | func init() {
type CustomizationLicenseDataMode (line 443) | type CustomizationLicenseDataMode
constant CustomizationLicenseDataModePerServer (line 446) | CustomizationLicenseDataModePerServer = CustomizationLicenseDataMode("pe...
constant CustomizationLicenseDataModePerSeat (line 447) | CustomizationLicenseDataModePerSeat = CustomizationLicenseDataMode("pe...
function init (line 450) | func init() {
type CustomizationNetBIOSMode (line 454) | type CustomizationNetBIOSMode
constant CustomizationNetBIOSModeEnableNetBIOSViaDhcp (line 457) | CustomizationNetBIOSModeEnableNetBIOSViaDhcp = CustomizationNetBIOSMode(...
constant CustomizationNetBIOSModeEnableNetBIOS (line 458) | CustomizationNetBIOSModeEnableNetBIOS = CustomizationNetBIOSMode(...
constant CustomizationNetBIOSModeDisableNetBIOS (line 459) | CustomizationNetBIOSModeDisableNetBIOS = CustomizationNetBIOSMode(...
function init (line 462) | func init() {
type CustomizationSysprepRebootOption (line 466) | type CustomizationSysprepRebootOption
constant CustomizationSysprepRebootOptionReboot (line 469) | CustomizationSysprepRebootOptionReboot = CustomizationSysprepRebootOpt...
constant CustomizationSysprepRebootOptionNoreboot (line 470) | CustomizationSysprepRebootOptionNoreboot = CustomizationSysprepRebootOpt...
constant CustomizationSysprepRebootOptionShutdown (line 471) | CustomizationSysprepRebootOptionShutdown = CustomizationSysprepRebootOpt...
function init (line 474) | func init() {
type DVPortStatusVmDirectPathGen2InactiveReasonNetwork (line 478) | type DVPortStatusVmDirectPathGen2InactiveReasonNetwork
constant DVPortStatusVmDirectPathGen2InactiveReasonNetworkPortNptIncompatibleDvs (line 481) | DVPortStatusVmDirectPathGen2InactiveReasonNetworkPortNptIncompatibleDvs ...
constant DVPortStatusVmDirectPathGen2InactiveReasonNetworkPortNptNoCompatibleNics (line 482) | DVPortStatusVmDirectPathGen2InactiveReasonNetworkPortNptNoCompatibleNics...
constant DVPortStatusVmDirectPathGen2InactiveReasonNetworkPortNptNoVirtualFunctionsAvailable (line 483) | DVPortStatusVmDirectPathGen2InactiveReasonNetworkPortNptNoVirtualFunctio...
constant DVPortStatusVmDirectPathGen2InactiveReasonNetworkPortNptDisabledForPort (line 484) | DVPortStatusVmDirectPathGen2InactiveReasonNetworkPortNptDisabledForPort ...
function init (line 487) | func init() {
type DVPortStatusVmDirectPathGen2InactiveReasonOther (line 491) | type DVPortStatusVmDirectPathGen2InactiveReasonOther
constant DVPortStatusVmDirectPathGen2InactiveReasonOtherPortNptIncompatibleHost (line 494) | DVPortStatusVmDirectPathGen2InactiveReasonOtherPortNptIncompatibleHost ...
constant DVPortStatusVmDirectPathGen2InactiveReasonOtherPortNptIncompatibleConnectee (line 495) | DVPortStatusVmDirectPathGen2InactiveReasonOtherPortNptIncompatibleConnec...
function init (line 498) | func init() {
type DasConfigFaultDasConfigFaultReason (line 502) | type DasConfigFaultDasConfigFaultReason
constant DasConfigFaultDasConfigFaultReasonHostNetworkMisconfiguration (line 505) | DasConfigFaultDasConfigFaultReasonHostNetworkMisconfiguration = DasConfi...
constant DasConfigFaultDasConfigFaultReasonHostMisconfiguration (line 506) | DasConfigFaultDasConfigFaultReasonHostMisconfiguration = DasConfi...
constant DasConfigFaultDasConfigFaultReasonInsufficientPrivileges (line 507) | DasConfigFaultDasConfigFaultReasonInsufficientPrivileges = DasConfi...
constant DasConfigFaultDasConfigFaultReasonNoPrimaryAgentAvailable (line 508) | DasConfigFaultDasConfigFaultReasonNoPrimaryAgentAvailable = DasConfi...
constant DasConfigFaultDasConfigFaultReasonOther (line 509) | DasConfigFaultDasConfigFaultReasonOther = DasConfi...
constant DasConfigFaultDasConfigFaultReasonNoDatastoresConfigured (line 510) | DasConfigFaultDasConfigFaultReasonNoDatastoresConfigured = DasConfi...
constant DasConfigFaultDasConfigFaultReasonCreateConfigVvolFailed (line 511) | DasConfigFaultDasConfigFaultReasonCreateConfigVvolFailed = DasConfi...
constant DasConfigFaultDasConfigFaultReasonVSanNotSupportedOnHost (line 512) | DasConfigFaultDasConfigFaultReasonVSanNotSupportedOnHost = DasConfi...
constant DasConfigFaultDasConfigFaultReasonDasNetworkMisconfiguration (line 513) | DasConfigFaultDasConfigFaultReasonDasNetworkMisconfiguration = DasConfi...
function init (line 516) | func init() {
type DasVmPriority (line 520) | type DasVmPriority
constant DasVmPriorityDisabled (line 523) | DasVmPriorityDisabled = DasVmPriority("disabled")
constant DasVmPriorityLow (line 524) | DasVmPriorityLow = DasVmPriority("low")
constant DasVmPriorityMedium (line 525) | DasVmPriorityMedium = DasVmPriority("medium")
constant DasVmPriorityHigh (line 526) | DasVmPriorityHigh = DasVmPriority("high")
function init (line 529) | func init() {
type DatastoreAccessible (line 533) | type DatastoreAccessible
constant DatastoreAccessibleTrue (line 536) | DatastoreAccessibleTrue = DatastoreAccessible("True")
constant DatastoreAccessibleFalse (line 537) | DatastoreAccessibleFalse = DatastoreAccessible("False")
function init (line 540) | func init() {
type DatastoreSummaryMaintenanceModeState (line 544) | type DatastoreSummaryMaintenanceModeState
constant DatastoreSummaryMaintenanceModeStateNormal (line 547) | DatastoreSummaryMaintenanceModeStateNormal = DatastoreSumma...
constant DatastoreSummaryMaintenanceModeStateEnteringMaintenance (line 548) | DatastoreSummaryMaintenanceModeStateEnteringMaintenance = DatastoreSumma...
constant DatastoreSummaryMaintenanceModeStateInMaintenance (line 549) | DatastoreSummaryMaintenanceModeStateInMaintenance = DatastoreSumma...
function init (line 552) | func init() {
type DayOfWeek (line 556) | type DayOfWeek
constant DayOfWeekSunday (line 559) | DayOfWeekSunday = DayOfWeek("sunday")
constant DayOfWeekMonday (line 560) | DayOfWeekMonday = DayOfWeek("monday")
constant DayOfWeekTuesday (line 561) | DayOfWeekTuesday = DayOfWeek("tuesday")
constant DayOfWeekWednesday (line 562) | DayOfWeekWednesday = DayOfWeek("wednesday")
constant DayOfWeekThursday (line 563) | DayOfWeekThursday = DayOfWeek("thursday")
constant DayOfWeekFriday (line 564) | DayOfWeekFriday = DayOfWeek("friday")
constant DayOfWeekSaturday (line 565) | DayOfWeekSaturday = DayOfWeek("saturday")
function init (line 568) | func init() {
type DeviceNotSupportedReason (line 572) | type DeviceNotSupportedReason
constant DeviceNotSupportedReasonHost (line 575) | DeviceNotSupportedReasonHost = DeviceNotSupportedReason("host")
constant DeviceNotSupportedReasonGuest (line 576) | DeviceNotSupportedReasonGuest = DeviceNotSupportedReason("guest")
function init (line 579) | func init() {
type DiagnosticManagerLogCreator (line 583) | type DiagnosticManagerLogCreator
constant DiagnosticManagerLogCreatorVpxd (line 586) | DiagnosticManagerLogCreatorVpxd = DiagnosticManagerLogCreator("vpxd")
constant DiagnosticManagerLogCreatorVpxa (line 587) | DiagnosticManagerLogCreatorVpxa = DiagnosticManagerLogCreator("vpxa")
constant DiagnosticManagerLogCreatorHostd (line 588) | DiagnosticManagerLogCreatorHostd = DiagnosticManagerLogCreator("hostd")
constant DiagnosticManagerLogCreatorServerd (line 589) | DiagnosticManagerLogCreatorServerd = DiagnosticManagerLogCreator("serv...
constant DiagnosticManagerLogCreatorInstall (line 590) | DiagnosticManagerLogCreatorInstall = DiagnosticManagerLogCreator("inst...
constant DiagnosticManagerLogCreatorVpxClient (line 591) | DiagnosticManagerLogCreatorVpxClient = DiagnosticManagerLogCreator("vpxC...
constant DiagnosticManagerLogCreatorRecordLog (line 592) | DiagnosticManagerLogCreatorRecordLog = DiagnosticManagerLogCreator("reco...
function init (line 595) | func init() {
type DiagnosticManagerLogFormat (line 599) | type DiagnosticManagerLogFormat
constant DiagnosticManagerLogFormatPlain (line 602) | DiagnosticManagerLogFormatPlain = DiagnosticManagerLogFormat("plain")
function init (line 605) | func init() {
type DiagnosticPartitionStorageType (line 609) | type DiagnosticPartitionStorageType
constant DiagnosticPartitionStorageTypeDirectAttached (line 612) | DiagnosticPartitionStorageTypeDirectAttached = DiagnosticPartitionStora...
constant DiagnosticPartitionStorageTypeNetworkAttached (line 613) | DiagnosticPartitionStorageTypeNetworkAttached = DiagnosticPartitionStora...
function init (line 616) | func init() {
type DiagnosticPartitionType (line 620) | type DiagnosticPartitionType
constant DiagnosticPartitionTypeSingleHost (line 623) | DiagnosticPartitionTypeSingleHost = DiagnosticPartitionType("singleHost")
constant DiagnosticPartitionTypeMultiHost (line 624) | DiagnosticPartitionTypeMultiHost = DiagnosticPartitionType("multiHost")
function init (line 627) | func init() {
type DisallowedChangeByServiceDisallowedChange (line 631) | type DisallowedChangeByServiceDisallowedChange
constant DisallowedChangeByServiceDisallowedChangeHotExtendDisk (line 634) | DisallowedChangeByServiceDisallowedChangeHotExtendDisk = DisallowedChang...
function init (line 637) | func init() {
type DistributedVirtualPortgroupMetaTagName (line 641) | type DistributedVirtualPortgroupMetaTagName
constant DistributedVirtualPortgroupMetaTagNameDvsName (line 644) | DistributedVirtualPortgroupMetaTagNameDvsName = DistributedVirtual...
constant DistributedVirtualPortgroupMetaTagNamePortgroupName (line 645) | DistributedVirtualPortgroupMetaTagNamePortgroupName = DistributedVirtual...
constant DistributedVirtualPortgroupMetaTagNamePortIndex (line 646) | DistributedVirtualPortgroupMetaTagNamePortIndex = DistributedVirtual...
function init (line 649) | func init() {
type DistributedVirtualPortgroupPortgroupType (line 653) | type DistributedVirtualPortgroupPortgroupType
constant DistributedVirtualPortgroupPortgroupTypeEarlyBinding (line 656) | DistributedVirtualPortgroupPortgroupTypeEarlyBinding = DistributedVirtua...
constant DistributedVirtualPortgroupPortgroupTypeLateBinding (line 657) | DistributedVirtualPortgroupPortgroupTypeLateBinding = DistributedVirtua...
constant DistributedVirtualPortgroupPortgroupTypeEphemeral (line 658) | DistributedVirtualPortgroupPortgroupTypeEphemeral = DistributedVirtua...
function init (line 661) | func init() {
type DistributedVirtualSwitchHostInfrastructureTrafficClass (line 665) | type DistributedVirtualSwitchHostInfrastructureTrafficClass
constant DistributedVirtualSwitchHostInfrastructureTrafficClassManagement (line 668) | DistributedVirtualSwitchHostInfrastructureTrafficClassManagement = D...
constant DistributedVirtualSwitchHostInfrastructureTrafficClassFaultTolerance (line 669) | DistributedVirtualSwitchHostInfrastructureTrafficClassFaultTolerance = D...
constant DistributedVirtualSwitchHostInfrastructureTrafficClassVmotion (line 670) | DistributedVirtualSwitchHostInfrastructureTrafficClassVmotion = D...
constant DistributedVirtualSwitchHostInfrastructureTrafficClassVirtualMachine (line 671) | DistributedVirtualSwitchHostInfrastructureTrafficClassVirtualMachine = D...
constant DistributedVirtualSwitchHostInfrastructureTrafficClassISCSI (line 672) | DistributedVirtualSwitchHostInfrastructureTrafficClassISCSI = D...
constant DistributedVirtualSwitchHostInfrastructureTrafficClassNfs (line 673) | DistributedVirtualSwitchHostInfrastructureTrafficClassNfs = D...
constant DistributedVirtualSwitchHostInfrastructureTrafficClassHbr (line 674) | DistributedVirtualSwitchHostInfrastructureTrafficClassHbr = D...
constant DistributedVirtualSwitchHostInfrastructureTrafficClassVsan (line 675) | DistributedVirtualSwitchHostInfrastructureTrafficClassVsan = D...
constant DistributedVirtualSwitchHostInfrastructureTrafficClassVdp (line 676) | DistributedVirtualSwitchHostInfrastructureTrafficClassVdp = D...
function init (line 679) | func init() {
type DistributedVirtualSwitchHostMemberHostComponentState (line 683) | type DistributedVirtualSwitchHostMemberHostComponentState
constant DistributedVirtualSwitchHostMemberHostComponentStateUp (line 686) | DistributedVirtualSwitchHostMemberHostComponentStateUp = Distr...
constant DistributedVirtualSwitchHostMemberHostComponentStatePending (line 687) | DistributedVirtualSwitchHostMemberHostComponentStatePending = Distr...
constant DistributedVirtualSwitchHostMemberHostComponentStateOutOfSync (line 688) | DistributedVirtualSwitchHostMemberHostComponentStateOutOfSync = Distr...
constant DistributedVirtualSwitchHostMemberHostComponentStateWarning (line 689) | DistributedVirtualSwitchHostMemberHostComponentStateWarning = Distr...
constant DistributedVirtualSwitchHostMemberHostComponentStateDisconnected (line 690) | DistributedVirtualSwitchHostMemberHostComponentStateDisconnected = Distr...
constant DistributedVirtualSwitchHostMemberHostComponentStateDown (line 691) | DistributedVirtualSwitchHostMemberHostComponentStateDown = Distr...
function init (line 694) | func init() {
type DistributedVirtualSwitchNetworkResourceControlVersion (line 698) | type DistributedVirtualSwitchNetworkResourceControlVersion
constant DistributedVirtualSwitchNetworkResourceControlVersionVersion2 (line 701) | DistributedVirtualSwitchNetworkResourceControlVersionVersion2 = Distribu...
constant DistributedVirtualSwitchNetworkResourceControlVersionVersion3 (line 702) | DistributedVirtualSwitchNetworkResourceControlVersionVersion3 = Distribu...
function init (line 705) | func init() {
type DistributedVirtualSwitchNicTeamingPolicyMode (line 709) | type DistributedVirtualSwitchNicTeamingPolicyMode
constant DistributedVirtualSwitchNicTeamingPolicyModeLoadbalance_ip (line 712) | DistributedVirtualSwitchNicTeamingPolicyModeLoadbalance_ip = Dist...
constant DistributedVirtualSwitchNicTeamingPolicyModeLoadbalance_srcmac (line 713) | DistributedVirtualSwitchNicTeamingPolicyModeLoadbalance_srcmac = Dist...
constant DistributedVirtualSwitchNicTeamingPolicyModeLoadbalance_srcid (line 714) | DistributedVirtualSwitchNicTeamingPolicyModeLoadbalance_srcid = Dist...
constant DistributedVirtualSwitchNicTeamingPolicyModeFailover_explicit (line 715) | DistributedVirtualSwitchNicTeamingPolicyModeFailover_explicit = Dist...
constant DistributedVirtualSwitchNicTeamingPolicyModeLoadbalance_loadbased (line 716) | DistributedVirtualSwitchNicTeamingPolicyModeLoadbalance_loadbased = Dist...
function init (line 719) | func init() {
type DistributedVirtualSwitchPortConnecteeConnecteeType (line 723) | type DistributedVirtualSwitchPortConnecteeConnecteeType
constant DistributedVirtualSwitchPortConnecteeConnecteeTypePnic (line 726) | DistributedVirtualSwitchPortConnecteeConnecteeTypePnic = Dist...
constant DistributedVirtualSwitchPortConnecteeConnecteeTypeVmVnic (line 727) | DistributedVirtualSwitchPortConnecteeConnecteeTypeVmVnic = Dist...
constant DistributedVirtualSwitchPortConnecteeConnecteeTypeHostConsoleVnic (line 728) | DistributedVirtualSwitchPortConnecteeConnecteeTypeHostConsoleVnic = Dist...
constant DistributedVirtualSwitchPortConnecteeConnecteeTypeHostVmkVnic (line 729) | DistributedVirtualSwitchPortConnecteeConnecteeTypeHostVmkVnic = Dist...
function init (line 732) | func init() {
type DistributedVirtualSwitchProductSpecOperationType (line 736) | type DistributedVirtualSwitchProductSpecOperationType
constant DistributedVirtualSwitchProductSpecOperationTypePreInstall (line 739) | DistributedVirtualSwitchProductSpecOperationTypePreInstall =...
constant DistributedVirtualSwitchProductSpecOperationTypeUpgrade (line 740) | DistributedVirtualSwitchProductSpecOperationTypeUpgrade =...
constant DistributedVirtualSwitchProductSpecOperationTypeNotifyAvailableUpgrade (line 741) | DistributedVirtualSwitchProductSpecOperationTypeNotifyAvailableUpgrade =...
constant DistributedVirtualSwitchProductSpecOperationTypeProceedWithUpgrade (line 742) | DistributedVirtualSwitchProductSpecOperationTypeProceedWithUpgrade =...
constant DistributedVirtualSwitchProductSpecOperationTypeUpdateBundleInfo (line 743) | DistributedVirtualSwitchProductSpecOperationTypeUpdateBundleInfo =...
function init (line 746) | func init() {
type DpmBehavior (line 750) | type DpmBehavior
constant DpmBehaviorManual (line 753) | DpmBehaviorManual = DpmBehavior("manual")
constant DpmBehaviorAutomated (line 754) | DpmBehaviorAutomated = DpmBehavior("automated")
function init (line 757) | func init() {
type DrsBehavior (line 761) | type DrsBehavior
constant DrsBehaviorManual (line 764) | DrsBehaviorManual = DrsBehavior("manual")
constant DrsBehaviorPartiallyAutomated (line 765) | DrsBehaviorPartiallyAutomated = DrsBehavior("partiallyAutomated")
constant DrsBehaviorFullyAutomated (line 766) | DrsBehaviorFullyAutomated = DrsBehavior("fullyAutomated")
function init (line 769) | func init() {
type DrsInjectorWorkloadCorrelationState (line 773) | type DrsInjectorWorkloadCorrelationState
constant DrsInjectorWorkloadCorrelationStateCorrelated (line 776) | DrsInjectorWorkloadCorrelationStateCorrelated = DrsInjectorWorkloadCor...
constant DrsInjectorWorkloadCorrelationStateUncorrelated (line 777) | DrsInjectorWorkloadCorrelationStateUncorrelated = DrsInjectorWorkloadCor...
function init (line 780) | func init() {
type DrsRecommendationReasonCode (line 784) | type DrsRecommendationReasonCode
constant DrsRecommendationReasonCodeFairnessCpuAvg (line 787) | DrsRecommendationReasonCodeFairnessCpuAvg = DrsRecommendationReasonCode(...
constant DrsRecommendationReasonCodeFairnessMemAvg (line 788) | DrsRecommendationReasonCodeFairnessMemAvg = DrsRecommendationReasonCode(...
constant DrsRecommendationReasonCodeJointAffin (line 789) | DrsRecommendationReasonCodeJointAffin = DrsRecommendationReasonCode(...
constant DrsRecommendationReasonCodeAntiAffin (line 790) | DrsRecommendationReasonCodeAntiAffin = DrsRecommendationReasonCode(...
constant DrsRecommendationReasonCodeHostMaint (line 791) | DrsRecommendationReasonCodeHostMaint = DrsRecommendationReasonCode(...
function init (line 794) | func init() {
type DvsEventPortBlockState (line 798) | type DvsEventPortBlockState
constant DvsEventPortBlockStateUnset (line 801) | DvsEventPortBlockStateUnset = DvsEventPortBlockState("unset")
constant DvsEventPortBlockStateBlocked (line 802) | DvsEventPortBlockStateBlocked = DvsEventPortBlockState("blocked")
constant DvsEventPortBlockStateUnblocked (line 803) | DvsEventPortBlockStateUnblocked = DvsEventPortBlockState("unblocked")
constant DvsEventPortBlockStateUnknown (line 804) | DvsEventPortBlockStateUnknown = DvsEventPortBlockState("unknown")
function init (line 807) | func init() {
type DvsFilterOnFailure (line 811) | type DvsFilterOnFailure
constant DvsFilterOnFailureFailOpen (line 814) | DvsFilterOnFailureFailOpen = DvsFilterOnFailure("failOpen")
constant DvsFilterOnFailureFailClosed (line 815) | DvsFilterOnFailureFailClosed = DvsFilterOnFailure("failClosed")
function init (line 818) | func init() {
type DvsNetworkRuleDirectionType (line 822) | type DvsNetworkRuleDirectionType
constant DvsNetworkRuleDirectionTypeIncomingPackets (line 825) | DvsNetworkRuleDirectionTypeIncomingPackets = DvsNetworkRuleDirectionType...
constant DvsNetworkRuleDirectionTypeOutgoingPackets (line 826) | DvsNetworkRuleDirectionTypeOutgoingPackets = DvsNetworkRuleDirectionType...
constant DvsNetworkRuleDirectionTypeBoth (line 827) | DvsNetworkRuleDirectionTypeBoth = DvsNetworkRuleDirectionType...
function init (line 830) | func init() {
type EntityImportType (line 834) | type EntityImportType
constant EntityImportTypeCreateEntityWithNewIdentifier (line 837) | EntityImportTypeCreateEntityWithNewIdentifier = EntityImportType("c...
constant EntityImportTypeCreateEntityWithOriginalIdentifier (line 838) | EntityImportTypeCreateEntityWithOriginalIdentifier = EntityImportType("c...
constant EntityImportTypeApplyToEntitySpecified (line 839) | EntityImportTypeApplyToEntitySpecified = EntityImportType("a...
function init (line 842) | func init() {
type EntityType (line 846) | type EntityType
constant EntityTypeDistributedVirtualSwitch (line 849) | EntityTypeDistributedVirtualSwitch = EntityType("distributedVirtualSw...
constant EntityTypeDistributedVirtualPortgroup (line 850) | EntityTypeDistributedVirtualPortgroup = EntityType("distributedVirtualPo...
function init (line 853) | func init() {
type EventAlarmExpressionComparisonOperator (line 857) | type EventAlarmExpressionComparisonOperator
constant EventAlarmExpressionComparisonOperatorEquals (line 860) | EventAlarmExpressionComparisonOperatorEquals = EventAlarmExpre...
constant EventAlarmExpressionComparisonOperatorNotEqualTo (line 861) | EventAlarmExpressionComparisonOperatorNotEqualTo = EventAlarmExpre...
constant EventAlarmExpressionComparisonOperatorStartsWith (line 862) | EventAlarmExpressionComparisonOperatorStartsWith = EventAlarmExpre...
constant EventAlarmExpressionComparisonOperatorDoesNotStartWith (line 863) | EventAlarmExpressionComparisonOperatorDoesNotStartWith = EventAlarmExpre...
constant EventAlarmExpressionComparisonOperatorEndsWith (line 864) | EventAlarmExpressionComparisonOperatorEndsWith = EventAlarmExpre...
constant EventAlarmExpressionComparisonOperatorDoesNotEndWith (line 865) | EventAlarmExpressionComparisonOperatorDoesNotEndWith = EventAlarmExpre...
function init (line 868) | func init() {
type EventCategory (line 872) | type EventCategory
constant EventCategoryInfo (line 875) | EventCategoryInfo = EventCategory("info")
constant EventCategoryWarning (line 876) | EventCategoryWarning = EventCategory("warning")
constant EventCategoryError (line 877) | EventCategoryError = EventCategory("error")
constant EventCategoryUser (line 878) | EventCategoryUser = EventCategory("user")
function init (line 881) | func init() {
type EventEventSeverity (line 885) | type EventEventSeverity
constant EventEventSeverityError (line 888) | EventEventSeverityError = EventEventSeverity("error")
constant EventEventSeverityWarning (line 889) | EventEventSeverityWarning = EventEventSeverity("warning")
constant EventEventSeverityInfo (line 890) | EventEventSeverityInfo = EventEventSeverity("info")
constant EventEventSeverityUser (line 891) | EventEventSeverityUser = EventEventSeverity("user")
function init (line 894) | func init() {
type EventFilterSpecRecursionOption (line 898) | type EventFilterSpecRecursionOption
constant EventFilterSpecRecursionOptionSelf (line 901) | EventFilterSpecRecursionOptionSelf = EventFilterSpecRecursionOption(...
constant EventFilterSpecRecursionOptionChildren (line 902) | EventFilterSpecRecursionOptionChildren = EventFilterSpecRecursionOption(...
constant EventFilterSpecRecursionOptionAll (line 903) | EventFilterSpecRecursionOptionAll = EventFilterSpecRecursionOption(...
function init (line 906) | func init() {
type FibreChannelPortType (line 910) | type FibreChannelPortType
constant FibreChannelPortTypeFabric (line 913) | FibreChannelPortTypeFabric = FibreChannelPortType("fabric")
constant FibreChannelPortTypeLoop (line 914) | FibreChannelPortTypeLoop = FibreChannelPortType("loop")
constant FibreChannelPortTypePointToPoint (line 915) | FibreChannelPortTypePointToPoint = FibreChannelPortType("pointToPoint")
constant FibreChannelPortTypeUnknown (line 916) | FibreChannelPortTypeUnknown = FibreChannelPortType("unknown")
function init (line 919) | func init() {
type FileSystemMountInfoVStorageSupportStatus (line 923) | type FileSystemMountInfoVStorageSupportStatus
constant FileSystemMountInfoVStorageSupportStatusVStorageSupported (line 926) | FileSystemMountInfoVStorageSupportStatusVStorageSupported = FileSystem...
constant FileSystemMountInfoVStorageSupportStatusVStorageUnsupported (line 927) | FileSystemMountInfoVStorageSupportStatusVStorageUnsupported = FileSystem...
constant FileSystemMountInfoVStorageSupportStatusVStorageUnknown (line 928) | FileSystemMountInfoVStorageSupportStatusVStorageUnknown = FileSystem...
function init (line 931) | func init() {
type FtIssuesOnHostHostSelectionType (line 935) | type FtIssuesOnHostHostSelectionType
constant FtIssuesOnHostHostSelectionTypeUser (line 938) | FtIssuesOnHostHostSelectionTypeUser = FtIssuesOnHostHostSelectionType("u...
constant FtIssuesOnHostHostSelectionTypeVc (line 939) | FtIssuesOnHostHostSelectionTypeVc = FtIssuesOnHostHostSelectionType("vc")
constant FtIssuesOnHostHostSelectionTypeDrs (line 940) | FtIssuesOnHostHostSelectionTypeDrs = FtIssuesOnHostHostSelectionType("d...
function init (line 943) | func init() {
type GuestFileType (line 947) | type GuestFileType
constant GuestFileTypeFile (line 950) | GuestFileTypeFile = GuestFileType("file")
constant GuestFileTypeDirectory (line 951) | GuestFileTypeDirectory = GuestFileType("directory")
constant GuestFileTypeSymlink (line 952) | GuestFileTypeSymlink = GuestFileType("symlink")
function init (line 955) | func init() {
type GuestInfoAppStateType (line 959) | type GuestInfoAppStateType
constant GuestInfoAppStateTypeNone (line 962) | GuestInfoAppStateTypeNone = GuestInfoAppStateType("none")
constant GuestInfoAppStateTypeAppStateOk (line 963) | GuestInfoAppStateTypeAppStateOk = GuestInfoAppStateType("appState...
constant GuestInfoAppStateTypeAppStateNeedReset (line 964) | GuestInfoAppStateTypeAppStateNeedReset = GuestInfoAppStateType("appState...
function init (line 967) | func init() {
type GuestOsDescriptorFirmwareType (line 971) | type GuestOsDescriptorFirmwareType
constant GuestOsDescriptorFirmwareTypeBios (line 974) | GuestOsDescriptorFirmwareTypeBios = GuestOsDescriptorFirmwareType("bios")
constant GuestOsDescriptorFirmwareTypeEfi (line 975) | GuestOsDescriptorFirmwareTypeEfi = GuestOsDescriptorFirmwareType("efi")
function init (line 978) | func init() {
type GuestOsDescriptorSupportLevel (line 982) | type GuestOsDescriptorSupportLevel
constant GuestOsDescriptorSupportLevelExperimental (line 985) | GuestOsDescriptorSupportLevelExperimental = GuestOsDescriptorSupportLeve...
constant GuestOsDescriptorSupportLevelLegacy (line 986) | GuestOsDescriptorSupportLevelLegacy = GuestOsDescriptorSupportLeve...
constant GuestOsDescriptorSupportLevelTerminated (line 987) | GuestOsDescriptorSupportLevelTerminated = GuestOsDescriptorSupportLeve...
constant GuestOsDescriptorSupportLevelSupported (line 988) | GuestOsDescriptorSupportLevelSupported = GuestOsDescriptorSupportLeve...
constant GuestOsDescriptorSupportLevelUnsupported (line 989) | GuestOsDescriptorSupportLevelUnsupported = GuestOsDescriptorSupportLeve...
constant GuestOsDescriptorSupportLevelDeprecated (line 990) | GuestOsDescriptorSupportLevelDeprecated = GuestOsDescriptorSupportLeve...
constant GuestOsDescriptorSupportLevelTechPreview (line 991) | GuestOsDescriptorSupportLevelTechPreview = GuestOsDescriptorSupportLeve...
function init (line 994) | func init() {
type GuestRegKeyWowSpec (line 998) | type GuestRegKeyWowSpec
constant GuestRegKeyWowSpecWOWNative (line 1001) | GuestRegKeyWowSpecWOWNative = GuestRegKeyWowSpec("WOWNative")
constant GuestRegKeyWowSpecWOW32 (line 1002) | GuestRegKeyWowSpecWOW32 = GuestRegKeyWowSpec("WOW32")
constant GuestRegKeyWowSpecWOW64 (line 1003) | GuestRegKeyWowSpecWOW64 = GuestRegKeyWowSpec("WOW64")
function init (line 1006) | func init() {
type HealthUpdateInfoComponentType (line 1010) | type HealthUpdateInfoComponentType
constant HealthUpdateInfoComponentTypeMemory (line 1013) | HealthUpdateInfoComponentTypeMemory = HealthUpdateInfoComponentType("Me...
constant HealthUpdateInfoComponentTypePower (line 1014) | HealthUpdateInfoComponentTypePower = HealthUpdateInfoComponentType("Po...
constant HealthUpdateInfoComponentTypeFan (line 1015) | HealthUpdateInfoComponentTypeFan = HealthUpdateInfoComponentType("Fan")
constant HealthUpdateInfoComponentTypeNetwork (line 1016) | HealthUpdateInfoComponentTypeNetwork = HealthUpdateInfoComponentType("Ne...
constant HealthUpdateInfoComponentTypeStorage (line 1017) | HealthUpdateInfoComponentTypeStorage = HealthUpdateInfoComponentType("St...
function init (line 1020) | func init() {
type HostAccessMode (line 1024) | type HostAccessMode
constant HostAccessModeAccessNone (line 1027) | HostAccessModeAccessNone = HostAccessMode("accessNone")
constant HostAccessModeAccessAdmin (line 1028) | HostAccessModeAccessAdmin = HostAccessMode("accessAdmin")
constant HostAccessModeAccessNoAccess (line 1029) | HostAccessModeAccessNoAccess = HostAccessMode("accessNoAccess")
constant HostAccessModeAccessReadOnly (line 1030) | HostAccessModeAccessReadOnly = HostAccessMode("accessReadOnly")
constant HostAccessModeAccessOther (line 1031) | HostAccessModeAccessOther = HostAccessMode("accessOther")
function init (line 1034) | func init() {
type HostActiveDirectoryAuthenticationCertificateDigest (line 1038) | type HostActiveDirectoryAuthenticationCertificateDigest
constant HostActiveDirectoryAuthenticationCertificateDigestSHA1 (line 1041) | HostActiveDirectoryAuthenticationCertificateDigestSHA1 = HostActiveDirec...
function init (line 1044) | func init() {
type HostActiveDirectoryInfoDomainMembershipStatus (line 1048) | type HostActiveDirectoryInfoDomainMembershipStatus
constant HostActiveDirectoryInfoDomainMembershipStatusUnknown (line 1051) | HostActiveDirectoryInfoDomainMembershipStatusUnknown = HostAct...
constant HostActiveDirectoryInfoDomainMembershipStatusOk (line 1052) | HostActiveDirectoryInfoDomainMembershipStatusOk = HostAct...
constant HostActiveDirectoryInfoDomainMembershipStatusNoServers (line 1053) | HostActiveDirectoryInfoDomainMembershipStatusNoServers = HostAct...
constant HostActiveDirectoryInfoDomainMembershipStatusClientTrustBroken (line 1054) | HostActiveDirectoryInfoDomainMembershipStatusClientTrustBroken = HostAct...
constant HostActiveDirectoryInfoDomainMembershipStatusServerTrustBroken (line 1055) | HostActiveDirectoryInfoDomainMembershipStatusServerTrustBroken = HostAct...
constant HostActiveDirectoryInfoDomainMembershipStatusInconsistentTrust (line 1056) | HostActiveDirectoryInfoDomainMembershipStatusInconsistentTrust = HostAct...
constant HostActiveDirectoryInfoDomainMembershipStatusOtherProblem (line 1057) | HostActiveDirectoryInfoDomainMembershipStatusOtherProblem = HostAct...
function init (line 1060) | func init() {
type HostCapabilityFtUnsupportedReason (line 1064) | type HostCapabilityFtUnsupportedReason
constant HostCapabilityFtUnsupportedReasonVMotionNotLicensed (line 1067) | HostCapabilityFtUnsupportedReasonVMotionNotLicensed = HostCapabilityFtU...
constant HostCapabilityFtUnsupportedReasonMissingVMotionNic (line 1068) | HostCapabilityFtUnsupportedReasonMissingVMotionNic = HostCapabilityFtU...
constant HostCapabilityFtUnsupportedReasonMissingFTLoggingNic (line 1069) | HostCapabilityFtUnsupportedReasonMissingFTLoggingNic = HostCapabilityFtU...
constant HostCapabilityFtUnsupportedReasonFtNotLicensed (line 1070) | HostCapabilityFtUnsupportedReasonFtNotLicensed = HostCapabilityFtU...
constant HostCapabilityFtUnsupportedReasonHaAgentIssue (line 1071) | HostCapabilityFtUnsupportedReasonHaAgentIssue = HostCapabilityFtU...
constant HostCapabilityFtUnsupportedReasonUnsupportedProduct (line 1072) | HostCapabilityFtUnsupportedReasonUnsupportedProduct = HostCapabilityFtU...
constant HostCapabilityFtUnsupportedReasonCpuHvUnsupported (line 1073) | HostCapabilityFtUnsupportedReasonCpuHvUnsupported = HostCapabilityFtU...
constant HostCapabilityFtUnsupportedReasonCpuHwmmuUnsupported (line 1074) | HostCapabilityFtUnsupportedReasonCpuHwmmuUnsupported = HostCapabilityFtU...
constant HostCapabilityFtUnsupportedReasonCpuHvDisabled (line 1075) | HostCapabilityFtUnsupportedReasonCpuHvDisabled = HostCapabilityFtU...
function init (line 1078) | func init() {
type HostCapabilityVmDirectPathGen2UnsupportedReason (line 1082) | type HostCapabilityVmDirectPathGen2UnsupportedReason
constant HostCapabilityVmDirectPathGen2UnsupportedReasonHostNptIncompatibleProduct (line 1085) | HostCapabilityVmDirectPathGen2UnsupportedReasonHostNptIncompatibleProduc...
constant HostCapabilityVmDirectPathGen2UnsupportedReasonHostNptIncompatibleHardware (line 1086) | HostCapabilityVmDirectPathGen2UnsupportedReasonHostNptIncompatibleHardwa...
constant HostCapabilityVmDirectPathGen2UnsupportedReasonHostNptDisabled (line 1087) | HostCapabilityVmDirectPathGen2UnsupportedReasonHostNptDisabled ...
function init (line 1090) | func init() {
type HostCertificateManagerCertificateInfoCertificateStatus (line 1094) | type HostCertificateManagerCertificateInfoCertificateStatus
constant HostCertificateManagerCertificateInfoCertificateStatusUnknown (line 1097) | HostCertificateManagerCertificateInfoCertificateStatusUnknown ...
constant HostCertificateManagerCertificateInfoCertificateStatusExpired (line 1098) | HostCertificateManagerCertificateInfoCertificateStatusExpired ...
constant HostCertificateManagerCertificateInfoCertificateStatusExpiring (line 1099) | HostCertificateManagerCertificateInfoCertificateStatusExpiring ...
constant HostCertificateManagerCertificateInfoCertificateStatusExpiringShortly (line 1100) | HostCertificateManagerCertificateInfoCertificateStatusExpiringShortly ...
constant HostCertificateManagerCertificateInfoCertificateStatusExpirationImminent (line 1101) | HostCertificateManagerCertificateInfoCertificateStatusExpirationImminent...
constant HostCertificateManagerCertificateInfoCertificateStatusGood (line 1102) | HostCertificateManagerCertificateInfoCertificateStatusGood ...
function init (line 1105) | func init() {
type HostConfigChangeMode (line 1109) | type HostConfigChangeMode
constant HostConfigChangeModeModify (line 1112) | HostConfigChangeModeModify = HostConfigChangeMode("modify")
constant HostConfigChangeModeReplace (line 1113) | HostConfigChangeModeReplace = HostConfigChangeMode("replace")
function init (line 1116) | func init() {
type HostConfigChangeOperation (line 1120) | type HostConfigChangeOperation
constant HostConfigChangeOperationAdd (line 1123) | HostConfigChangeOperationAdd = HostConfigChangeOperation("add")
constant HostConfigChangeOperationRemove (line 1124) | HostConfigChangeOperationRemove = HostConfigChangeOperation("remove")
constant HostConfigChangeOperationEdit (line 1125) | HostConfigChangeOperationEdit = HostConfigChangeOperation("edit")
constant HostConfigChangeOperationIgnore (line 1126) | HostConfigChangeOperationIgnore = HostConfigChangeOperation("ignore")
function init (line 1129) | func init() {
type HostCpuPackageVendor (line 1133) | type HostCpuPackageVendor
constant HostCpuPackageVendorUnknown (line 1136) | HostCpuPackageVendorUnknown = HostCpuPackageVendor("unknown")
constant HostCpuPackageVendorIntel (line 1137) | HostCpuPackageVendorIntel = HostCpuPackageVendor("intel")
constant HostCpuPackageVendorAmd (line 1138) | HostCpuPackageVendorAmd = HostCpuPackageVendor("amd")
function init (line 1141) | func init() {
type HostCpuPowerManagementInfoPolicyType (line 1145) | type HostCpuPowerManagementInfoPolicyType
constant HostCpuPowerManagementInfoPolicyTypeOff (line 1148) | HostCpuPowerManagementInfoPolicyTypeOff = HostCpuPowerManageme...
constant HostCpuPowerManagementInfoPolicyTypeStaticPolicy (line 1149) | HostCpuPowerManagementInfoPolicyTypeStaticPolicy = HostCpuPowerManageme...
constant HostCpuPowerManagementInfoPolicyTypeDynamicPolicy (line 1150) | HostCpuPowerManagementInfoPolicyTypeDynamicPolicy = HostCpuPowerManageme...
function init (line 1153) | func init() {
type HostCryptoState (line 1157) | type HostCryptoState
constant HostCryptoStateIncapable (line 1160) | HostCryptoStateIncapable = HostCryptoState("incapable")
constant HostCryptoStatePrepared (line 1161) | HostCryptoStatePrepared = HostCryptoState("prepared")
constant HostCryptoStateSafe (line 1162) | HostCryptoStateSafe = HostCryptoState("safe")
function init (line 1165) | func init() {
type HostDasErrorEventHostDasErrorReason (line 1169) | type HostDasErrorEventHostDasErrorReason
constant HostDasErrorEventHostDasErrorReasonConfigFailed (line 1172) | HostDasErrorEventHostDasErrorReasonConfigFailed = HostDasE...
constant HostDasErrorEventHostDasErrorReasonTimeout (line 1173) | HostDasErrorEventHostDasErrorReasonTimeout = HostDasE...
constant HostDasErrorEventHostDasErrorReasonCommunicationInitFailed (line 1174) | HostDasErrorEventHostDasErrorReasonCommunicationInitFailed = HostDasE...
constant HostDasErrorEventHostDasErrorReasonHealthCheckScriptFailed (line 1175) | HostDasErrorEventHostDasErrorReasonHealthCheckScriptFailed = HostDasE...
constant HostDasErrorEventHostDasErrorReasonAgentFailed (line 1176) | HostDasErrorEventHostDasErrorReasonAgentFailed = HostDasE...
constant HostDasErrorEventHostDasErrorReasonAgentShutdown (line 1177) | HostDasErrorEventHostDasErrorReasonAgentShutdown = HostDasE...
constant HostDasErrorEventHostDasErrorReasonIsolationAddressUnpingable (line 1178) | HostDasErrorEventHostDasErrorReasonIsolationAddressUnpingable = HostDasE...
constant HostDasErrorEventHostDasErrorReasonOther (line 1179) | HostDasErrorEventHostDasErrorReasonOther = HostDasE...
function init (line 1182) | func init() {
type HostDigestInfoDigestMethodType (line 1186) | type HostDigestInfoDigestMethodType
constant HostDigestInfoDigestMethodTypeSHA1 (line 1189) | HostDigestInfoDigestMethodTypeSHA1 = HostDigestInfoDigestMethodType("SHA1")
constant HostDigestInfoDigestMethodTypeMD5 (line 1190) | HostDigestInfoDigestMethodTypeMD5 = HostDigestInfoDigestMethodType("MD5")
function init (line 1193) | func init() {
type HostDisconnectedEventReasonCode (line 1197) | type HostDisconnectedEventReasonCode
constant HostDisconnectedEventReasonCodeSslThumbprintVerifyFailed (line 1200) | HostDisconnectedEventReasonCodeSslThumbprintVerifyFailed = HostDisconnec...
constant HostDisconnectedEventReasonCodeLicenseExpired (line 1201) | HostDisconnectedEventReasonCodeLicenseExpired = HostDisconnec...
constant HostDisconnectedEventReasonCodeAgentUpgrade (line 1202) | HostDisconnectedEventReasonCodeAgentUpgrade = HostDisconnec...
constant HostDisconnectedEventReasonCodeUserRequest (line 1203) | HostDisconnectedEventReasonCodeUserRequest = HostDisconnec...
constant HostDisconnectedEventReasonCodeInsufficientLicenses (line 1204) | HostDisconnectedEventReasonCodeInsufficientLicenses = HostDisconnec...
constant HostDisconnectedEventReasonCodeAgentOutOfDate (line 1205) | HostDisconnectedEventReasonCodeAgentOutOfDate = HostDisconnec...
constant HostDisconnectedEventReasonCodePasswordDecryptFailure (line 1206) | HostDisconnectedEventReasonCodePasswordDecryptFailure = HostDisconnec...
constant HostDisconnectedEventReasonCodeUnknown (line 1207) | HostDisconnectedEventReasonCodeUnknown = HostDisconnec...
constant HostDisconnectedEventReasonCodeVcVRAMCapacityExceeded (line 1208) | HostDisconnectedEventReasonCodeVcVRAMCapacityExceeded = HostDisconnec...
function init (line 1211) | func init() {
type HostDiskPartitionInfoPartitionFormat (line 1215) | type HostDiskPartitionInfoPartitionFormat
constant HostDiskPartitionInfoPartitionFormatGpt (line 1218) | HostDiskPartitionInfoPartitionFormatGpt = HostDiskPartitionInfoParti...
constant HostDiskPartitionInfoPartitionFormatMbr (line 1219) | HostDiskPartitionInfoPartitionFormatMbr = HostDiskPartitionInfoParti...
constant HostDiskPartitionInfoPartitionFormatUnknown (line 1220) | HostDiskPartitionInfoPartitionFormatUnknown = HostDiskPartitionInfoParti...
function init (line 1223) | func init() {
type HostDiskPartitionInfoType (line 1227) | type HostDiskPartitionInfoType
constant HostDiskPartitionInfoTypeNone (line 1230) | HostDiskPartitionInfoTypeNone = HostDiskPartitionInfoType("none")
constant HostDiskPartitionInfoTypeVmfs (line 1231) | HostDiskPartitionInfoTypeVmfs = HostDiskPartitionInfoType("vmfs")
constant HostDiskPartitionInfoTypeLinuxNative (line 1232) | HostDiskPartitionInfoTypeLinuxNative = HostDiskPartitionInfoType("linu...
constant HostDiskPartitionInfoTypeLinuxSwap (line 1233) | HostDiskPartitionInfoTypeLinuxSwap = HostDiskPartitionInfoType("linu...
constant HostDiskPartitionInfoTypeExtended (line 1234) | HostDiskPartitionInfoTypeExtended = HostDiskPartitionInfoType("exte...
constant HostDiskPartitionInfoTypeNtfs (line 1235) | HostDiskPartitionInfoTypeNtfs = HostDiskPartitionInfoType("ntfs")
constant HostDiskPartitionInfoTypeVmkDiagnostic (line 1236) | HostDiskPartitionInfoTypeVmkDiagnostic = HostDiskPartitionInfoType("vmkD...
constant HostDiskPartitionInfoTypeVffs (line 1237) | HostDiskPartitionInfoTypeVffs = HostDiskPartitionInfoType("vffs")
function init (line 1240) | func init() {
type HostFeatureVersionKey (line 1244) | type HostFeatureVersionKey
constant HostFeatureVersionKeyFaultTolerance (line 1247) | HostFeatureVersionKeyFaultTolerance = HostFeatureVersionKey("faultTolera...
function init (line 1250) | func init() {
type HostFileSystemVolumeFileSystemType (line 1254) | type HostFileSystemVolumeFileSystemType
constant HostFileSystemVolumeFileSystemTypeVMFS (line 1257) | HostFileSystemVolumeFileSystemTypeVMFS = HostFileSystemVolumeFileSystem...
constant HostFileSystemVolumeFileSystemTypeNFS (line 1258) | HostFileSystemVolumeFileSystemTypeNFS = HostFileSystemVolumeFileSystem...
constant HostFileSystemVolumeFileSystemTypeNFS41 (line 1259) | HostFileSystemVolumeFileSystemTypeNFS41 = HostFileSystemVolumeFileSystem...
constant HostFileSystemVolumeFileSystemTypeCIFS (line 1260) | HostFileSystemVolumeFileSystemTypeCIFS = HostFileSystemVolumeFileSystem...
constant HostFileSystemVolumeFileSystemTypeVsan (line 1261) | HostFileSystemVolumeFileSystemTypeVsan = HostFileSystemVolumeFileSystem...
constant HostFileSystemVolumeFileSystemTypeVFFS (line 1262) | HostFileSystemVolumeFileSystemTypeVFFS = HostFileSystemVolumeFileSystem...
constant HostFileSystemVolumeFileSystemTypeVVOL (line 1263) | HostFileSystemVolumeFileSystemTypeVVOL = HostFileSystemVolumeFileSystem...
constant HostFileSystemVolumeFileSystemTypeOTHER (line 1264) | HostFileSystemVolumeFileSystemTypeOTHER = HostFileSystemVolumeFileSystem...
function init (line 1267) | func init() {
type HostFirewallRuleDirection (line 1271) | type HostFirewallRuleDirection
constant HostFirewallRuleDirectionInbound (line 1274) | HostFirewallRuleDirectionInbound = HostFirewallRuleDirection("inbound")
constant HostFirewallRuleDirectionOutbound (line 1275) | HostFirewallRuleDirectionOutbound = HostFirewallRuleDirection("outbound")
function init (line 1278) | func init() {
type HostFirewallRulePortType (line 1282) | type HostFirewallRulePortType
constant HostFirewallRulePortTypeSrc (line 1285) | HostFirewallRulePortTypeSrc = HostFirewallRulePortType("src")
constant HostFirewallRulePortTypeDst (line 1286) | HostFirewallRulePortTypeDst = HostFirewallRulePortType("dst")
function init (line 1289) | func init() {
type HostFirewallRuleProtocol (line 1293) | type HostFirewallRuleProtocol
constant HostFirewallRuleProtocolTcp (line 1296) | HostFirewallRuleProtocolTcp = HostFirewallRuleProtocol("tcp")
constant HostFirewallRuleProtocolUdp (line 1297) | HostFirewallRuleProtocolUdp = HostFirewallRuleProtocol("udp")
function init (line 1300) | func init() {
type HostGraphicsConfigGraphicsType (line 1304) | type HostGraphicsConfigGraphicsType
constant HostGraphicsConfigGraphicsTypeShared (line 1307) | HostGraphicsConfigGraphicsTypeShared = HostGraphicsConfigGraphicsT...
constant HostGraphicsConfigGraphicsTypeSharedDirect (line 1308) | HostGraphicsConfigGraphicsTypeSharedDirect = HostGraphicsConfigGraphicsT...
function init (line 1311) | func init() {
type HostGraphicsConfigSharedPassthruAssignmentPolicy (line 1315) | type HostGraphicsConfigSharedPassthruAssignmentPolicy
constant HostGraphicsConfigSharedPassthruAssignmentPolicyPerformance (line 1318) | HostGraphicsConfigSharedPassthruAssignmentPolicyPerformance = HostGrap...
constant HostGraphicsConfigSharedPassthruAssignmentPolicyConsolidation (line 1319) | HostGraphicsConfigSharedPassthruAssignmentPolicyConsolidation = HostGrap...
function init (line 1322) | func init() {
type HostGraphicsInfoGraphicsType (line 1326) | type HostGraphicsInfoGraphicsType
constant HostGraphicsInfoGraphicsTypeBasic (line 1329) | HostGraphicsInfoGraphicsTypeBasic = HostGraphicsInfoGraphicsType(...
constant HostGraphicsInfoGraphicsTypeShared (line 1330) | HostGraphicsInfoGraphicsTypeShared = HostGraphicsInfoGraphicsType(...
constant HostGraphicsInfoGraphicsTypeDirect (line 1331) | HostGraphicsInfoGraphicsTypeDirect = HostGraphicsInfoGraphicsType(...
constant HostGraphicsInfoGraphicsTypeSharedDirect (line 1332) | HostGraphicsInfoGraphicsTypeSharedDirect = HostGraphicsInfoGraphicsType(...
function init (line 1335) | func init() {
type HostHardwareElementStatus (line 1339) | type HostHardwareElementStatus
constant HostHardwareElementStatusUnknown (line 1342) | HostHardwareElementStatusUnknown = HostHardwareElementStatus("Unknown")
constant HostHardwareElementStatusGreen (line 1343) | HostHardwareElementStatusGreen = HostHardwareElementStatus("Green")
constant HostHardwareElementStatusYellow (line 1344) | HostHardwareElementStatusYellow = HostHardwareElementStatus("Yellow")
constant HostHardwareElementStatusRed (line 1345) | HostHardwareElementStatusRed = HostHardwareElementStatus("Red")
function init (line 1348) | func init() {
type HostHasComponentFailureHostComponentType (line 1352) | type HostHasComponentFailureHostComponentType
constant HostHasComponentFailureHostComponentTypeDatastore (line 1355) | HostHasComponentFailureHostComponentTypeDatastore = HostHasComponentFail...
function init (line 1358) | func init() {
type HostImageAcceptanceLevel (line 1362) | type HostImageAcceptanceLevel
constant HostImageAcceptanceLevelVmware_certified (line 1365) | HostImageAcceptanceLevelVmware_certified = HostImageAcceptanceLevel("vmw...
constant HostImageAcceptanceLevelVmware_accepted (line 1366) | HostImageAcceptanceLevelVmware_accepted = HostImageAcceptanceLevel("vmw...
constant HostImageAcceptanceLevelPartner (line 1367) | HostImageAcceptanceLevelPartner = HostImageAcceptanceLevel("par...
constant HostImageAcceptanceLevelCommunity (line 1368) | HostImageAcceptanceLevelCommunity = HostImageAcceptanceLevel("com...
function init (line 1371) | func init() {
type HostIncompatibleForFaultToleranceReason (line 1375) | type HostIncompatibleForFaultToleranceReason
constant HostIncompatibleForFaultToleranceReasonProduct (line 1378) | HostIncompatibleForFaultToleranceReasonProduct = HostIncompatibleForFa...
constant HostIncompatibleForFaultToleranceReasonProcessor (line 1379) | HostIncompatibleForFaultToleranceReasonProcessor = HostIncompatibleForFa...
function init (line 1382) | func init() {
type HostIncompatibleForRecordReplayReason (line 1386) | type HostIncompatibleForRecordReplayReason
constant HostIncompatibleForRecordReplayReasonProduct (line 1389) | HostIncompatibleForRecordReplayReasonProduct = HostIncompatibleForReco...
constant HostIncompatibleForRecordReplayReasonProcessor (line 1390) | HostIncompatibleForRecordReplayReasonProcessor = HostIncompatibleForReco...
function init (line 1393) | func init() {
type HostInternetScsiHbaChapAuthenticationType (line 1397) | type HostInternetScsiHbaChapAuthenticationType
constant HostInternetScsiHbaChapAuthenticationTypeChapProhibited (line 1400) | HostInternetScsiHbaChapAuthenticationTypeChapProhibited = HostInternetS...
constant HostInternetScsiHbaChapAuthenticationTypeChapDiscouraged (line 1401) | HostInternetScsiHbaChapAuthenticationTypeChapDiscouraged = HostInternetS...
constant HostInternetScsiHbaChapAuthenticationTypeChapPreferred (line 1402) | HostInternetScsiHbaChapAuthenticationTypeChapPreferred = HostInternetS...
constant HostInternetScsiHbaChapAuthenticationTypeChapRequired (line 1403) | HostInternetScsiHbaChapAuthenticationTypeChapRequired = HostInternetS...
function init (line 1406) | func init() {
type HostInternetScsiHbaDigestType (line 1410) | type HostInternetScsiHbaDigestType
constant HostInternetScsiHbaDigestTypeDigestProhibited (line 1413) | HostInternetScsiHbaDigestTypeDigestProhibited = HostInternetScsiHbaDige...
constant HostInternetScsiHbaDigestTypeDigestDiscouraged (line 1414) | HostInternetScsiHbaDigestTypeDigestDiscouraged = HostInternetScsiHbaDige...
constant HostInternetScsiHbaDigestTypeDigestPreferred (line 1415) | HostInternetScsiHbaDigestTypeDigestPreferred = HostInternetScsiHbaDige...
constant HostInternetScsiHbaDigestTypeDigestRequired (line 1416) | HostInternetScsiHbaDigestTypeDigestRequired = HostInternetScsiHbaDige...
function init (line 1419) | func init() {
type HostInternetScsiHbaIscsiIpv6AddressAddressConfigurationType (line 1423) | type HostInternetScsiHbaIscsiIpv6AddressAddressConfigurationType
constant HostInternetScsiHbaIscsiIpv6AddressAddressConfigurationTypeDHCP (line 1426) | HostInternetScsiHbaIscsiIpv6AddressAddressConfigurationTypeDHCP ...
constant HostInternetScsiHbaIscsiIpv6AddressAddressConfigurationTypeAutoConfigured (line 1427) | HostInternetScsiHbaIscsiIpv6AddressAddressConfigurationTypeAutoConfigure...
constant HostInternetScsiHbaIscsiIpv6AddressAddressConfigurationTypeStatic (line 1428) | HostInternetScsiHbaIscsiIpv6AddressAddressConfigurationTypeStatic ...
constant HostInternetScsiHbaIscsiIpv6AddressAddressConfigurationTypeOther (line 1429) | HostInternetScsiHbaIscsiIpv6AddressAddressConfigurationTypeOther ...
function init (line 1432) | func init() {
type HostInternetScsiHbaIscsiIpv6AddressIPv6AddressOperation (line 1436) | type HostInternetScsiHbaIscsiIpv6AddressIPv6AddressOperation
constant HostInternetScsiHbaIscsiIpv6AddressIPv6AddressOperationAdd (line 1439) | HostInternetScsiHbaIscsiIpv6AddressIPv6AddressOperationAdd = HostInte...
constant HostInternetScsiHbaIscsiIpv6AddressIPv6AddressOperationRemove (line 1440) | HostInternetScsiHbaIscsiIpv6AddressIPv6AddressOperationRemove = HostInte...
function init (line 1443) | func init() {
type HostInternetScsiHbaNetworkBindingSupportType (line 1447) | type HostInternetScsiHbaNetworkBindingSupportType
constant HostInternetScsiHbaNetworkBindingSupportTypeNotsupported (line 1450) | HostInternetScsiHbaNetworkBindingSupportTypeNotsupported = HostInternetS...
constant HostInternetScsiHbaNetworkBindingSupportTypeOptional (line 1451) | HostInternetScsiHbaNetworkBindingSupportTypeOptional = HostInternetS...
constant HostInternetScsiHbaNetworkBindingSupportTypeRequired (line 1452) | HostInternetScsiHbaNetworkBindingSupportTypeRequired = HostInternetS...
function init (line 1455) | func init() {
type HostInternetScsiHbaStaticTargetTargetDiscoveryMethod (line 1459) | type HostInternetScsiHbaStaticTargetTargetDiscoveryMethod
constant HostInternetScsiHbaStaticTargetTargetDiscoveryMethodStaticMethod (line 1462) | HostInternetScsiHbaStaticTargetTargetDiscoveryMethodStaticMethod = H...
constant HostInternetScsiHbaStaticTargetTargetDiscoveryMethodSendTargetMethod (line 1463) | HostInternetScsiHbaStaticTargetTargetDiscoveryMethodSendTargetMethod = H...
constant HostInternetScsiHbaStaticTargetTargetDiscoveryMethodSlpMethod (line 1464) | HostInternetScsiHbaStaticTargetTargetDiscoveryMethodSlpMethod = H...
constant HostInternetScsiHbaStaticTargetTargetDiscoveryMethodIsnsMethod (line 1465) | HostInternetScsiHbaStaticTargetTargetDiscoveryMethodIsnsMethod = H...
constant HostInternetScsiHbaStaticTargetTargetDiscoveryMethodUnknownMethod (line 1466) | HostInternetScsiHbaStaticTargetTargetDiscoveryMethodUnknownMethod = H...
function init (line 1469) | func init() {
type HostIpConfigIpV6AddressConfigType (line 1473) | type HostIpConfigIpV6AddressConfigType
constant HostIpConfigIpV6AddressConfigTypeOther (line 1476) | HostIpConfigIpV6AddressConfigTypeOther = HostIpConfigIpV6AddressConf...
constant HostIpConfigIpV6AddressConfigTypeManual (line 1477) | HostIpConfigIpV6AddressConfigTypeManual = HostIpConfigIpV6AddressConf...
constant HostIpConfigIpV6AddressConfigTypeDhcp (line 1478) | HostIpConfigIpV6AddressConfigTypeDhcp = HostIpConfigIpV6AddressConf...
constant HostIpConfigIpV6AddressConfigTypeLinklayer (line 1479) | HostIpConfigIpV6AddressConfigTypeLinklayer = HostIpConfigIpV6AddressConf...
constant HostIpConfigIpV6AddressConfigTypeRandom (line 1480) | HostIpConfigIpV6AddressConfigTypeRandom = HostIpConfigIpV6AddressConf...
function init (line 1483) | func init() {
type HostIpConfigIpV6AddressStatus (line 1487) | type HostIpConfigIpV6AddressStatus
constant HostIpConfigIpV6AddressStatusPreferred (line 1490) | HostIpConfigIpV6AddressStatusPreferred = HostIpConfigIpV6AddressStatu...
constant HostIpConfigIpV6AddressStatusDeprecated (line 1491) | HostIpConfigIpV6AddressStatusDeprecated = HostIpConfigIpV6AddressStatu...
constant HostIpConfigIpV6AddressStatusInvalid (line 1492) | HostIpConfigIpV6AddressStatusInvalid = HostIpConfigIpV6AddressStatu...
constant HostIpConfigIpV6AddressStatusInaccessible (line 1493) | HostIpConfigIpV6AddressStatusInaccessible = HostIpConfigIpV6AddressStatu...
constant HostIpConfigIpV6AddressStatusUnknown (line 1494) | HostIpConfigIpV6AddressStatusUnknown = HostIpConfigIpV6AddressStatu...
constant HostIpConfigIpV6AddressStatusTentative (line 1495) | HostIpConfigIpV6AddressStatusTentative = HostIpConfigIpV6AddressStatu...
constant HostIpConfigIpV6AddressStatusDuplicate (line 1496) | HostIpConfigIpV6AddressStatusDuplicate = HostIpConfigIpV6AddressStatu...
function init (line 1499) | func init() {
type HostLicensableResourceKey (line 1503) | type HostLicensableResourceKey
constant HostLicensableResourceKeyNumCpuPackages (line 1506) | HostLicensableResourceKeyNumCpuPackages = HostLicensableResourceKey("num...
constant HostLicensableResourceKeyNumCpuCores (line 1507) | HostLicensableResourceKeyNumCpuCores = HostLicensableResourceKey("num...
constant HostLicensableResourceKeyMemorySize (line 1508) | HostLicensableResourceKeyMemorySize = HostLicensableResourceKey("mem...
constant HostLicensableResourceKeyMemoryForVms (line 1509) | HostLicensableResourceKeyMemoryForVms = HostLicensableResourceKey("mem...
constant HostLicensableResourceKeyNumVmsStarted (line 1510) | HostLicensableResourceKeyNumVmsStarted = HostLicensableResourceKey("num...
constant HostLicensableResourceKeyNumVmsStarting (line 1511) | HostLicensableResourceKeyNumVmsStarting = HostLicensableResourceKey("num...
function init (line 1514) | func init() {
type HostLockdownMode (line 1518) | type HostLockdownMode
constant HostLockdownModeLockdownDisabled (line 1521) | HostLockdownModeLockdownDisabled = HostLockdownMode("lockdownDisabled")
constant HostLockdownModeLockdownNormal (line 1522) | HostLockdownModeLockdownNormal = HostLockdownMode("lockdownNormal")
constant HostLockdownModeLockdownStrict (line 1523) | HostLockdownModeLockdownStrict = HostLockdownMode("lockdownStrict")
function init (line 1526) | func init() {
type HostLowLevelProvisioningManagerFileType (line 1530) | type HostLowLevelProvisioningManagerFileType
constant HostLowLevelProvisioningManagerFileTypeFile (line 1533) | HostLowLevelProvisioningManagerFileTypeFile = HostLowLevelProvisi...
constant HostLowLevelProvisioningManagerFileTypeVirtualDisk (line 1534) | HostLowLevelProvisioningManagerFileTypeVirtualDisk = HostLowLevelProvisi...
constant HostLowLevelProvisioningManagerFileTypeDirectory (line 1535) | HostLowLevelProvisioningManagerFileTypeDirectory = HostLowLevelProvisi...
function init (line 1538) | func init() {
type HostLowLevelProvisioningManagerReloadTarget (line 1542) | type HostLowLevelProvisioningManagerReloadTarget
constant HostLowLevelProvisioningManagerReloadTargetCurrentConfig (line 1545) | HostLowLevelProvisioningManagerReloadTargetCurrentConfig = HostLowLevel...
constant HostLowLevelProvisioningManagerReloadTargetSnapshotConfig (line 1546) | HostLowLevelProvisioningManagerReloadTargetSnapshotConfig = HostLowLevel...
function init (line 1549) | func init() {
type HostMountInfoInaccessibleReason (line 1553) | type HostMountInfoInaccessibleReason
constant HostMountInfoInaccessibleReasonAllPathsDown_Start (line 1556) | HostMountInfoInaccessibleReasonAllPathsDown_Start = HostMountInfoInacc...
constant HostMountInfoInaccessibleReasonAllPathsDown_Timeout (line 1557) | HostMountInfoInaccessibleReasonAllPathsDown_Timeout = HostMountInfoInacc...
constant HostMountInfoInaccessibleReasonPermanentDeviceLoss (line 1558) | HostMountInfoInaccessibleReasonPermanentDeviceLoss = HostMountInfoInacc...
function init (line 1561) | func init() {
type HostMountMode (line 1565) | type HostMountMode
constant HostMountModeReadWrite (line 1568) | HostMountModeReadWrite = HostMountMode("readWrite")
constant HostMountModeReadOnly (line 1569) | HostMountModeReadOnly = HostMountMode("readOnly")
function init (line 1572) | func init() {
type HostNasVolumeSecurityType (line 1576) | type HostNasVolumeSecurityType
constant HostNasVolumeSecurityTypeAUTH_SYS (line 1579) | HostNasVolumeSecurityTypeAUTH_SYS = HostNasVolumeSecurityType("AUTH_SYS")
constant HostNasVolumeSecurityTypeSEC_KRB5 (line 1580) | HostNasVolumeSecurityTypeSEC_KRB5 = HostNasVolumeSecurityType("SEC_KRB5")
constant HostNasVolumeSecurityTypeSEC_KRB5I (line 1581) | HostNasVolumeSecurityTypeSEC_KRB5I = HostNasVolumeSecurityType("SEC_KRB5I")
function init (line 1584) | func init() {
type HostNetStackInstanceCongestionControlAlgorithmType (line 1588) | type HostNetStackInstanceCongestionControlAlgorithmType
constant HostNetStackInstanceCongestionControlAlgorithmTypeNewreno (line 1591) | HostNetStackInstanceCongestionControlAlgorithmTypeNewreno = HostNetStack...
constant HostNetStackInstanceCongestionControlAlgorithmTypeCubic (line 1592) | HostNetStackInstanceCongestionControlAlgorithmTypeCubic = HostNetStack...
function init (line 1595) | func init() {
type HostNetStackInstanceSystemStackKey (line 1599) | type HostNetStackInstanceSystemStackKey
constant HostNetStackInstanceSystemStackKeyDefaultTcpipStack (line 1602) | HostNetStackInstanceSystemStackKeyDefaultTcpipStack = HostNetStackInst...
constant HostNetStackInstanceSystemStackKeyVmotion (line 1603) | HostNetStackInstanceSystemStackKeyVmotion = HostNetStackInst...
constant HostNetStackInstanceSystemStackKeyVSphereProvisioning (line 1604) | HostNetStackInstanceSystemStackKeyVSphereProvisioning = HostNetStackInst...
function init (line 1607) | func init() {
type HostNumericSensorHealthState (line 1611) | type HostNumericSensorHealthState
constant HostNumericSensorHealthStateUnknown (line 1614) | HostNumericSensorHealthStateUnknown = HostNumericSensorHealthState("unkn...
constant HostNumericSensorHealthStateGreen (line 1615) | HostNumericSensorHealthStateGreen = HostNumericSensorHealthState("green")
constant HostNumericSensorHealthStateYellow (line 1616) | HostNumericSensorHealthStateYellow = HostNumericSensorHealthState("yell...
constant HostNumericSensorHealthStateRed (line 1617) | HostNumericSensorHealthStateRed = HostNumericSensorHealthState("red")
function init (line 1620) | func init() {
type HostNumericSensorType (line 1624) | type HostNumericSensorType
constant HostNumericSensorTypeFan (line 1627) | HostNumericSensorTypeFan = HostNumericSensorType("fan")
constant HostNumericSensorTypePower (line 1628) | HostNumericSensorTypePower = HostNumericSensorType("power")
constant HostNumericSensorTypeTemperature (line 1629) | HostNumericSensorTypeTemperature = HostNumericSensorType("temperature")
constant HostNumericSensorTypeVoltage (line 1630) | HostNumericSensorTypeVoltage = HostNumericSensorType("voltage")
constant HostNumericSensorTypeOther (line 1631) | HostNumericSensorTypeOther = HostNumericSensorType("other")
constant HostNumericSensorTypeProcessor (line 1632) | HostNumericSensorTypeProcessor = HostNumericSensorType("processor")
constant HostNumericSensorTypeMemory (line 1633) | HostNumericSensorTypeMemory = HostNumericSensorType("memory")
constant HostNumericSensorTypeStorage (line 1634) | HostNumericSensorTypeStorage = HostNumericSensorType("storage")
constant HostNumericSensorTypeSystemBoard (line 1635) | HostNumericSensorTypeSystemBoard = HostNumericSensorType("systemBoard")
constant HostNumericSensorTypeBattery (line 1636) | HostNumericSensorTypeBattery = HostNumericSensorType("battery")
constant HostNumericSensorTypeBios (line 1637) | HostNumericSensorTypeBios = HostNumericSensorType("bios")
constant HostNumericSensorTypeCable (line 1638) | HostNumericSensorTypeCable = HostNumericSensorType("cable")
constant HostNumericSensorTypeWatchdog (line 1639) | HostNumericSensorTypeWatchdog = HostNumericSensorType("watchdog")
function init (line 1642) | func init() {
type HostOpaqueSwitchOpaqueSwitchState (line 1646) | type HostOpaqueSwitchOpaqueSwitchState
constant HostOpaqueSwitchOpaqueSwitchStateUp (line 1649) | HostOpaqueSwitchOpaqueSwitchStateUp = HostOpaqueSwitchOpaqueSwitchS...
constant HostOpaqueSwitchOpaqueSwitchStateWarning (line 1650) | HostOpaqueSwitchOpaqueSwitchStateWarning = HostOpaqueSwitchOpaqueSwitchS...
constant HostOpaqueSwitchOpaqueSwitchStateDown (line 1651) | HostOpaqueSwitchOpaqueSwitchStateDown = HostOpaqueSwitchOpaqueSwitchS...
function init (line 1654) | func init() {
type HostPatchManagerInstallState (line 1658) | type HostPatchManagerInstallState
constant HostPatchManagerInstallStateHostRestarted (line 1661) | HostPatchManagerInstallStateHostRestarted = HostPatchManagerInstallState...
constant HostPatchManagerInstallStateImageActive (line 1662) | HostPatchManagerInstallStateImageActive = HostPatchManagerInstallState...
function init (line 1665) | func init() {
type HostPatchManagerIntegrityStatus (line 1669) | type HostPatchManagerIntegrityStatus
constant HostPatchManagerIntegrityStatusValidated (line 1672) | HostPatchManagerIntegrityStatusValidated = HostPatchManagerInt...
constant HostPatchManagerIntegrityStatusKeyNotFound (line 1673) | HostPatchManagerIntegrityStatusKeyNotFound = HostPatchManagerInt...
constant HostPatchManagerIntegrityStatusKeyRevoked (line 1674) | HostPatchManagerIntegrityStatusKeyRevoked = HostPatchManagerInt...
constant HostPatchManagerIntegrityStatusKeyExpired (line 1675) | HostPatchManagerIntegrityStatusKeyExpired = HostPatchManagerInt...
constant HostPatchManagerIntegrityStatusDigestMismatch (line 1676) | HostPatchManagerIntegrityStatusDigestMismatch = HostPatchManagerInt...
constant HostPatchManagerIntegrityStatusNotEnoughSignatures (line 1677) | HostPatchManagerIntegrityStatusNotEnoughSignatures = HostPatchManagerInt...
constant HostPatchManagerIntegrityStatusValidationError (line 1678) | HostPatchManagerIntegrityStatusValidationError = HostPatchManagerInt...
function init (line 1681) | func init() {
type HostPatchManagerReason (line 1685) | type HostPatchManagerReason
constant HostPatchManagerReasonObsoleted (line 1688) | HostPatchManagerReasonObsoleted = HostPatchManagerReason("obsole...
constant HostPatchManagerReasonMissingPatch (line 1689) | HostPatchManagerReasonMissingPatch = HostPatchManagerReason("missin...
constant HostPatchManagerReasonMissingLib (line 1690) | HostPatchManagerReasonMissingLib = HostPatchManagerReason("missin...
constant HostPatchManagerReasonHasDependentPatch (line 1691) | HostPatchManagerReasonHasDependentPatch = HostPatchManagerReason("hasDep...
constant HostPatchManagerReasonConflictPatch (line 1692) | HostPatchManagerReasonConflictPatch = HostPatchManagerReason("confli...
constant HostPatchManagerReasonConflictLib (line 1693) | HostPatchManagerReasonConflictLib = HostPatchManagerReason("confli...
function init (line 1696) | func init() {
type HostPowerOperationType (line 1700) | type HostPowerOperationType
constant HostPowerOperationTypePowerOn (line 1703) | HostPowerOperationTypePowerOn = HostPowerOperationType("powerOn")
constant HostPowerOperationTypePowerOff (line 1704) | HostPowerOperationTypePowerOff = HostPowerOperationType("powerOff")
function init (line 1707) | func init() {
type HostProfileManagerAnswerFileStatus (line 1711) | type HostProfileManagerAnswerFileStatus
constant HostProfileManagerAnswerFileStatusValid (line 1714) | HostProfileManagerAnswerFileStatusValid = HostProfileManagerAnswerFile...
constant HostProfileManagerAnswerFileStatusInvalid (line 1715) | HostProfileManagerAnswerFileStatusInvalid = HostProfileManagerAnswerFile...
constant HostProfileManagerAnswerFileStatusUnknown (line 1716) | HostProfileManagerAnswerFileStatusUnknown = HostProfileManagerAnswerFile...
function init (line 1719) | func init() {
type HostProfileManagerTaskListRequirement (line 1723) | type HostProfileManagerTaskListRequirement
constant HostProfileManagerTaskListRequirementMaintenanceModeRequired (line 1726) | HostProfileManagerTaskListRequirementMaintenanceModeRequired = HostProfi...
constant HostProfileManagerTaskListRequirementRebootRequired (line 1727) | HostProfileManagerTaskListRequirementRebootRequired = HostProfi...
function init (line 1730) | func init() {
type HostProtocolEndpointPEType (line 1734) | type HostProtocolEndpointPEType
constant HostProtocolEndpointPETypeBlock (line 1737) | HostProtocolEndpointPETypeBlock = HostProtocolEndpointPEType("block")
constant HostProtocolEndpointPETypeNas (line 1738) | HostProtocolEndpointPETypeNas = HostProtocolEndpointPEType("nas")
function init (line 1741) | func init() {
type HostProtocolEndpointProtocolEndpointType (line 1745) | type HostProtocolEndpointProtocolEndpointType
constant HostProtocolEndpointProtocolEndpointTypeScsi (line 1748) | HostProtocolEndpointProtocolEndpointTypeScsi = HostProtocolEndpointProt...
constant HostProtocolEndpointProtocolEndpointTypeNfs (line 1749) | HostProtocolEndpointProtocolEndpointTypeNfs = HostProtocolEndpointProt...
constant HostProtocolEndpointProtocolEndpointTypeNfs4x (line 1750) | HostProtocolEndpointProtocolEndpointTypeNfs4x = HostProtocolEndpointProt...
function init (line 1753) | func init() {
type HostReplayUnsupportedReason (line 1757) | type HostReplayUnsupportedReason
constant HostReplayUnsupportedReasonIncompatibleProduct (line 1760) | HostReplayUnsupportedReasonIncompatibleProduct = HostReplayUnsupportedRe...
constant HostReplayUnsupportedReasonIncompatibleCpu (line 1761) | HostReplayUnsupportedReasonIncompatibleCpu = HostReplayUnsupportedRe...
constant HostReplayUnsupportedReasonHvDisabled (line 1762) | HostReplayUnsupportedReasonHvDisabled = HostReplayUnsupportedRe...
constant HostReplayUnsupportedReasonCpuidLimitSet (line 1763) | HostReplayUnsupportedReasonCpuidLimitSet = HostReplayUnsupportedRe...
constant HostReplayUnsupportedReasonOldBIOS (line 1764) | HostReplayUnsupportedReasonOldBIOS = HostReplayUnsupportedRe...
constant HostReplayUnsupportedReasonUnknown (line 1765) | HostReplayUnsupportedReasonUnknown = HostReplayUnsupportedRe...
function init (line 1768) | func init() {
type HostRuntimeInfoNetStackInstanceRuntimeInfoState (line 1772) | type HostRuntimeInfoNetStackInstanceRuntimeInfoState
constant HostRuntimeInfoNetStackInstanceRuntimeInfoStateInactive (line 1775) | HostRuntimeInfoNetStackInstanceRuntimeInfoStateInactive = HostRuntim...
constant HostRuntimeInfoNetStackInstanceRuntimeInfoStateActive (line 1776) | HostRuntimeInfoNetStackInstanceRuntimeInfoStateActive = HostRuntim...
constant HostRuntimeInfoNetStackInstanceRuntimeInfoStateDeactivating (line 1777) | HostRuntimeInfoNetStackInstanceRuntimeInfoStateDeactivating = HostRuntim...
constant HostRuntimeInfoNetStackInstanceRuntimeInfoStateActivating (line 1778) | HostRuntimeInfoNetStackInstanceRuntimeInfoStateActivating = HostRuntim...
function init (line 1781) | func init() {
type HostServicePolicy (line 1785) | type HostServicePolicy
constant HostServicePolicyOn (line 1788) | HostServicePolicyOn = HostServicePolicy("on")
constant HostServicePolicyAutomatic (line 1789) | HostServicePolicyAutomatic = HostServicePolicy("automatic")
constant HostServicePolicyOff (line 1790) | HostServicePolicyOff = HostServicePolicy("off")
function init (line 1793) | func init() {
type HostSnmpAgentCapability (line 1797) | type HostSnmpAgentCapability
constant HostSnmpAgentCapabilityCOMPLETE (line 1800) | HostSnmpAgentCapabilityCOMPLETE = HostSnmpAgentCapability("COMPLETE")
constant HostSnmpAgentCapabilityDIAGNOSTICS (line 1801) | HostSnmpAgentCapabilityDIAGNOSTICS = HostSnmpAgentCapability("DIAGNOST...
constant HostSnmpAgentCapabilityCONFIGURATION (line 1802) | HostSnmpAgentCapabilityCONFIGURATION = HostSnmpAgentCapability("CONFIGUR...
function init (line 1805) | func init() {
type HostStandbyMode (line 1809) | type HostStandbyMode
constant HostStandbyModeEntering (line 1812) | HostStandbyModeEntering = HostStandbyMode("entering")
constant HostStandbyModeExiting (line 1813) | HostStandbyModeExiting = HostStandbyMode("exiting")
constant HostStandbyModeIn (line 1814) | HostStandbyModeIn = HostStandbyMode("in")
constant HostStandbyModeNone (line 1815) | HostStandbyModeNone = HostStandbyMode("none")
function init (line 1818) | func init() {
type HostSystemConnectionState (line 1822) | type HostSystemConnectionState
constant HostSystemConnectionStateConnected (line 1825) | HostSystemConnectionStateConnected = HostSystemConnectionState("conn...
constant HostSystemConnectionStateNotResponding (line 1826) | HostSystemConnectionStateNotResponding = HostSystemConnectionState("notR...
constant HostSystemConnectionStateDisconnected (line 1827) | HostSystemConnectionStateDisconnected = HostSystemConnectionState("disc...
function init (line 1830) | func init() {
type HostSystemIdentificationInfoIdentifier (line 1834) | type HostSystemIdentificationInfoIdentifier
constant HostSystemIdentificationInfoIdentifierAssetTag (line 1837) | HostSystemIdentificationInfoIdentifierAssetTag = HostSystemIden...
constant HostSystemIdentificationInfoIdentifierServiceTag (line 1838) | HostSystemIdentificationInfoIdentifierServiceTag = HostSystemIden...
constant HostSystemIdentificationInfoIdentifierOemSpecificString (line 1839) | HostSystemIdentificationInfoIdentifierOemSpecificString = HostSystemIden...
function init (line 1842) | func init() {
type HostSystemPowerState (line 1846) | type HostSystemPowerState
constant HostSystemPowerStatePoweredOn (line 1849) | HostSystemPowerStatePoweredOn = HostSystemPowerState("poweredOn")
constant HostSystemPowerStatePoweredOff (line 1850) | HostSystemPowerStatePoweredOff = HostSystemPowerState("poweredOff")
constant HostSystemPowerStateStandBy (line 1851) | HostSystemPowerStateStandBy = HostSystemPowerState("standBy")
constant HostSystemPowerStateUnknown (line 1852) | HostSystemPowerStateUnknown = HostSystemPowerState("unknown")
function init (line 1855) | func init() {
type HostUnresolvedVmfsExtentUnresolvedReason (line 1859) | type HostUnresolvedVmfsExtentUnresolvedReason
constant HostUnresolvedVmfsExtentUnresolvedReasonDiskIdMismatch (line 1862) | HostUnresolvedVmfsExtentUnresolvedReasonDiskIdMismatch = HostUnresolvedV...
constant HostUnresolvedVmfsExtentUnresolvedReasonUuidConflict (line 1863) | HostUnresolvedVmfsExtentUnresolvedReasonUuidConflict = HostUnresolvedV...
function init (line 1866) | func init() {
type HostUnresolvedVmfsResolutionSpecVmfsUuidResolution (line 1870) | type HostUnresolvedVmfsResolutionSpecVmfsUuidResolution
constant HostUnresolvedVmfsResolutionSpecVmfsUuidResolutionResignature (line 1873) | HostUnresolvedVmfsResolutionSpecVmfsUuidResolutionResignature = HostUnre...
constant HostUnresolvedVmfsResolutionSpecVmfsUuidResolutionForceMount (line 1874) | HostUnresolvedVmfsResolutionSpecVmfsUuidResolutionForceMount = HostUnre...
function init (line 1877) | func init() {
type HostVirtualNicManagerNicType (line 1881) | type HostVirtualNicManagerNicType
constant HostVirtualNicManagerNicTypeVmotion (line 1884) | HostVirtualNicManagerNicTypeVmotion = HostVirtualNicManage...
constant HostVirtualNicManagerNicTypeFaultToleranceLogging (line 1885) | HostVirtualNicManagerNicTypeFaultToleranceLogging = HostVirtualNicManage...
constant HostVirtualNicManagerNicTypeVSphereReplication (line 1886) | HostVirtualNicManagerNicTypeVSphereReplication = HostVirtualNicManage...
constant HostVirtualNicManagerNicTypeVSphereReplicationNFC (line 1887) | HostVirtualNicManagerNicTypeVSphereReplicationNFC = HostVirtualNicManage...
constant HostVirtualNicManagerNicTypeManagement (line 1888) | HostVirtualNicManagerNicTypeManagement = HostVirtualNicManage...
constant HostVirtualNicManagerNicTypeVsan (line 1889) | HostVirtualNicManagerNicTypeVsan = HostVirtualNicManage...
constant HostVirtualNicManagerNicTypeVSphereProvisioning (line 1890) | HostVirtualNicManagerNicTypeVSphereProvisioning = HostVirtualNicManage...
constant HostVirtualNicManagerNicTypeVsanWitness (line 1891) | HostVirtualNicManagerNicTypeVsanWitness = HostVirtualNicManage...
function init (line 1894) | func init() {
type HostVmciAccessManagerMode (line 1898) | type HostVmciAccessManagerMode
constant HostVmciAccessManagerModeGrant (line 1901) | HostVmciAccessManagerModeGrant = HostVmciAccessManagerMode("grant")
constant HostVmciAccessManagerModeReplace (line 1902) | HostVmciAccessManagerModeReplace = HostVmciAccessManagerMode("replace")
constant HostVmciAccessManagerModeRevoke (line 1903) | HostVmciAccessManagerModeRevoke = HostVmciAccessManagerMode("revoke")
function init (line 1906) | func init() {
type HostVmfsVolumeUnmapPriority (line 1910) | type HostVmfsVolumeUnmapPriority
constant HostVmfsVolumeUnmapPriorityNone (line 1913) | HostVmfsVolumeUnmapPriorityNone = HostVmfsVolumeUnmapPriority("none")
constant HostVmfsVolumeUnmapPriorityLow (line 1914) | HostVmfsVolumeUnmapPriorityLow = HostVmfsVolumeUnmapPriority("low")
function init (line 1917) | func init() {
type HttpNfcLeaseState (line 1921) | type HttpNfcLeaseState
constant HttpNfcLeaseStateInitializing (line 1924) | HttpNfcLeaseStateInitializing = HttpNfcLeaseState("initializing")
constant HttpNfcLeaseStateReady (line 1925) | HttpNfcLeaseStateReady = HttpNfcLeaseState("ready")
constant HttpNfcLeaseStateDone (line 1926) | HttpNfcLeaseStateDone = HttpNfcLeaseState("done")
constant HttpNfcLeaseStateError (line 1927) | HttpNfcLeaseStateError = HttpNfcLeaseState("error")
function init (line 1930) | func init() {
type IncompatibleHostForVmReplicationIncompatibleReason (line 1934) | type IncompatibleHostForVmReplicationIncompatibleReason
constant IncompatibleHostForVmReplicationIncompatibleReasonRpo (line 1937) | IncompatibleHostForVmReplicationIncompatibleReasonRpo = Incom...
constant IncompatibleHostForVmReplicationIncompatibleReasonNetCompression (line 1938) | IncompatibleHostForVmReplicationIncompatibleReasonNetCompression = Incom...
function init (line 1941) | func init() {
type InternetScsiSnsDiscoveryMethod (line 1945) | type InternetScsiSnsDiscoveryMethod
constant InternetScsiSnsDiscoveryMethodIsnsStatic (line 1948) | InternetScsiSnsDiscoveryMethodIsnsStatic = InternetScsiSnsDiscoveryMetho...
constant InternetScsiSnsDiscoveryMethodIsnsDhcp (line 1949) | InternetScsiSnsDiscoveryMethodIsnsDhcp = InternetScsiSnsDiscoveryMetho...
constant InternetScsiSnsDiscoveryMethodIsnsSlp (line 1950) | InternetScsiSnsDiscoveryMethodIsnsSlp = InternetScsiSnsDiscoveryMetho...
function init (line 1953) | func init() {
type InvalidDasConfigArgumentEntryForInvalidArgument (line 1957) | type InvalidDasConfigArgumentEntryForInvalidArgument
constant InvalidDasConfigArgumentEntryForInvalidArgumentAdmissionControl (line 1960) | InvalidDasConfigArgumentEntryForInvalidArgumentAdmissionControl = Invali...
constant InvalidDasConfigArgumentEntryForInvalidArgumentUserHeartbeatDs (line 1961) | InvalidDasConfigArgumentEntryForInvalidArgumentUserHeartbeatDs = Invali...
constant InvalidDasConfigArgumentEntryForInvalidArgumentVmConfig (line 1962) | InvalidDasConfigArgumentEntryForInvalidArgumentVmConfig = Invali...
function init (line 1965) | func init() {
type InvalidProfileReferenceHostReason (line 1969) | type InvalidProfileReferenceHostReason
constant InvalidProfileReferenceHostReasonIncompatibleVersion (line 1972) | InvalidProfileReferenceHostReasonIncompatibleVersion = InvalidProfileRe...
constant InvalidProfileReferenceHostReasonMissingReferenceHost (line 1973) | InvalidProfileReferenceHostReasonMissingReferenceHost = InvalidProfileRe...
function init (line 1976) | func init() {
type IoFilterOperation (line 1980) | type IoFilterOperation
constant IoFilterOperationInstall (line 1983) | IoFilterOperationInstall = IoFilterOperation("install")
constant IoFilterOperationUninstall (line 1984) | IoFilterOperationUninstall = IoFilterOperation("uninstall")
constant IoFilterOperationUpgrade (line 1985) | IoFilterOperationUpgrade = IoFilterOperation("upgrade")
function init (line 1988) | func init() {
type IoFilterType (line 1992) | type IoFilterType
constant IoFilterTypeCache (line 1995) | IoFilterTypeCache = IoFilterType("cache")
constant IoFilterTypeReplication (line 1996) | IoFilterTypeReplication = IoFilterType("replication")
constant IoFilterTypeEncryption (line 1997) | IoFilterTypeEncryption = IoFilterType("encryption")
constant IoFilterTypeCompression (line 1998) | IoFilterTypeCompression = IoFilterType("compression")
constant IoFilterTypeInspection (line 1999) | IoFilterTypeInspection = IoFilterType("inspection")
constant IoFilterTypeDatastoreIoControl (line 2000) | IoFilterTypeDatastoreIoControl = IoFilterType("datastoreIoControl")
constant IoFilterTypeDataProvider (line 2001) | IoFilterTypeDataProvider = IoFilterType("dataProvider")
function init (line 2004) | func init() {
type IscsiPortInfoPathStatus (line 2008) | type IscsiPortInfoPathStatus
constant IscsiPortInfoPathStatusNotUsed (line 2011) | IscsiPortInfoPathStatusNotUsed = IscsiPortInfoPathStatus("notUsed")
constant IscsiPortInfoPathStatusActive (line 2012) | IscsiPortInfoPathStatusActive = IscsiPortInfoPathStatus("active")
constant IscsiPortInfoPathStatusStandBy (line 2013) | IscsiPortInfoPathStatusStandBy = IscsiPortInfoPathStatus("standBy")
constant IscsiPortInfoPathStatusLastActive (line 2014) | IscsiPortInfoPathStatusLastActive = IscsiPortInfoPathStatus("lastActive")
function init (line 2017) | func init() {
type LatencySensitivitySensitivityLevel (line 2021) | type LatencySensitivitySensitivityLevel
constant LatencySensitivitySensitivityLevelLow (line 2024) | LatencySensitivitySensitivityLevelLow = LatencySensitivitySensitivity...
constant LatencySensitivitySensitivityLevelNormal (line 2025) | LatencySensitivitySensitivityLevelNormal = LatencySensitivitySensitivity...
constant LatencySensitivitySensitivityLevelMedium (line 2026) | LatencySensitivitySensitivityLevelMedium = LatencySensitivitySensitivity...
constant LatencySensitivitySensitivityLevelHigh (line 2027) | LatencySensitivitySensitivityLevelHigh = LatencySensitivitySensitivity...
constant LatencySensitivitySensitivityLevelCustom (line 2028) | LatencySensitivitySensitivityLevelCustom = LatencySensitivitySensitivity...
function init (line 2031) | func init() {
type LicenseAssignmentFailedReason (line 2035) | type LicenseAssignmentFailedReason
constant LicenseAssignmentFailedReasonKeyEntityMismatch (line 2038) | LicenseAssignmentFailedReasonKeyEntityMismatch ...
constant LicenseAssignmentFailedReasonDowngradeDisallowed (line 2039) | LicenseAssignmentFailedReasonDowngradeDisallowed ...
constant LicenseAssignmentFailedReasonInventoryNotManageableByVirtualCenter (line 2040) | LicenseAssignmentFailedReasonInventoryNotManageableByVirtualCenter ...
constant LicenseAssignmentFailedReasonHostsUnmanageableByVirtualCenterWithoutLicenseServer (line 2041) | LicenseAssignmentFailedReasonHostsUnmanageableByVirtualCenterWithoutLice...
function init (line 2044) | func init() {
type LicenseFeatureInfoSourceRestriction (line 2048) | type LicenseFeatureInfoSourceRestriction
constant LicenseFeatureInfoSourceRestrictionUnrestricted (line 2051) | LicenseFeatureInfoSourceRestrictionUnrestricted = LicenseFeatureInfoSour...
constant LicenseFeatureInfoSourceRestrictionServed (line 2052) | LicenseFeatureInfoSourceRestrictionServed = LicenseFeatureInfoSour...
constant LicenseFeatureInfoSourceRestrictionFile (line 2053) | LicenseFeatureInfoSourceRestrictionFile = LicenseFeatureInfoSour...
function init (line 2056) | func init() {
type LicenseFeatureInfoState (line 2060) | type LicenseFeatureInfoState
constant LicenseFeatureInfoStateEnabled (line 2063) | LicenseFeatureInfoStateEnabled = LicenseFeatureInfoState("enabled")
constant LicenseFeatureInfoStateDisabled (line 2064) | LicenseFeatureInfoStateDisabled = LicenseFeatureInfoState("disabled")
constant LicenseFeatureInfoStateOptional (line 2065) | LicenseFeatureInfoStateOptional = LicenseFeatureInfoState("optional")
function init (line 2068) | func init() {
type LicenseFeatureInfoUnit (line 2072) | type LicenseFeatureInfoUnit
constant LicenseFeatureInfoUnitHost (line 2075) | LicenseFeatureInfoUnitHost = LicenseFeatureInfoUnit("host")
constant LicenseFeatureInfoUnitCpuCore (line 2076) | LicenseFeatureInfoUnitCpuCore = LicenseFeatureInfoUnit("cpuCore")
constant LicenseFeatureInfoUnitCpuPackage (line 2077) | LicenseFeatureInfoUnitCpuPackage = LicenseFeatureInfoUnit("cpuPackage")
constant LicenseFeatureInfoUnitServer (line 2078) | LicenseFeatureInfoUnitServer = LicenseFeatureInfoUnit("server")
constant LicenseFeatureInfoUnitVm (line 2079) | LicenseFeatureInfoUnitVm = LicenseFeatureInfoUnit("vm")
function init (line 2082) | func init() {
type LicenseManagerLicenseKey (line 2086) | type LicenseManagerLicenseKey
constant LicenseManagerLicenseKeyEsxFull (line 2089) | LicenseManagerLicenseKeyEsxFull = LicenseManagerLicenseKey("esxFull")
constant LicenseManagerLicenseKeyEsxVmtn (line 2090) | LicenseManagerLicenseKeyEsxVmtn = LicenseManagerLicenseKey("esxVmtn")
constant LicenseManagerLicenseKeyEsxExpress (line 2091) | LicenseManagerLicenseKeyEsxExpress = LicenseManagerLicenseKey("esxExpress")
constant LicenseManagerLicenseKeySan (line 2092) | LicenseManagerLicenseKeySan = LicenseManagerLicenseKey("san")
constant LicenseManagerLicenseKeyIscsi (line 2093) | LicenseManagerLicenseKeyIscsi = LicenseManagerLicenseKey("iscsi")
constant LicenseManagerLicenseKeyNas (line 2094) | LicenseManagerLicenseKeyNas = LicenseManagerLicenseKey("nas")
constant LicenseManagerLicenseKeyVsmp (line 2095) | LicenseManagerLicenseKeyVsmp = LicenseManagerLicenseKey("vsmp")
constant LicenseManagerLicenseKeyBackup (line 2096) | LicenseManagerLicenseKeyBackup = LicenseManagerLicenseKey("backup")
constant LicenseManagerLicenseKeyVc (line 2097) | LicenseManagerLicenseKeyVc = LicenseManagerLicenseKey("vc")
constant LicenseManagerLicenseKeyVcExpress (line 2098) | LicenseManagerLicenseKeyVcExpress = LicenseManagerLicenseKey("vcExpress")
constant LicenseManagerLicenseKeyEsxHost (line 2099) | LicenseManagerLicenseKeyEsxHost = LicenseManagerLicenseKey("esxHost")
constant LicenseManagerLicenseKeyGsxHost (line 2100) | LicenseManagerLicenseKeyGsxHost = LicenseManagerLicenseKey("gsxHost")
constant LicenseManagerLicenseKeyServerHost (line 2101) | LicenseManagerLicenseKeyServerHost = LicenseManagerLicenseKey("serverHost")
constant LicenseManagerLicenseKeyDrsPower (line 2102) | LicenseManagerLicenseKeyDrsPower = LicenseManagerLicenseKey("drsPower")
constant LicenseManagerLicenseKeyVmotion (line 2103) | LicenseManagerLicenseKeyVmotion = LicenseManagerLicenseKey("vmotion")
constant LicenseManagerLicenseKeyDrs (line 2104) | LicenseManagerLicenseKeyDrs = LicenseManagerLicenseKey("drs")
constant LicenseManagerLicenseKeyDas (line 2105) | LicenseManagerLicenseKeyDas = LicenseManagerLicenseKey("das")
function init (line 2108) | func init() {
type LicenseManagerState (line 2112) | type LicenseManagerState
constant LicenseManagerStateInitializing (line 2115) | LicenseManagerStateInitializing = LicenseManagerState("initializing")
constant LicenseManagerStateNormal (line 2116) | LicenseManagerStateNormal = LicenseManagerState("normal")
constant LicenseManagerStateMarginal (line 2117) | LicenseManagerStateMarginal = LicenseManagerState("marginal")
constant LicenseManagerStateFault (line 2118) | LicenseManagerStateFault = LicenseManagerState("fault")
function init (line 2121) | func init() {
type LicenseReservationInfoState (line 2125) | type LicenseReservationInfoState
constant LicenseReservationInfoStateNotUsed (line 2128) | LicenseReservationInfoStateNotUsed = LicenseReservationInfoState("...
constant LicenseReservationInfoStateNoLicense (line 2129) | LicenseReservationInfoStateNoLicense = LicenseReservationInfoState("...
constant LicenseReservationInfoStateUnlicensedUse (line 2130) | LicenseReservationInfoStateUnlicensedUse = LicenseReservationInfoState("...
constant LicenseReservationInfoStateLicensed (line 2131) | LicenseReservationInfoStateLicensed = LicenseReservationInfoState("...
function init (line 2134) | func init() {
type LinkDiscoveryProtocolConfigOperationType (line 2138) | type LinkDiscoveryProtocolConfigOperationType
constant LinkDiscoveryProtocolConfigOperationTypeNone (line 2141) | LinkDiscoveryProtocolConfigOperationTypeNone = LinkDiscoveryProtoco...
constant LinkDiscoveryProtocolConfigOperationTypeListen (line 2142) | LinkDiscoveryProtocolConfigOperationTypeListen = LinkDiscoveryProtoco...
constant LinkDiscoveryProtocolConfigOperationTypeAdvertise (line 2143) | LinkDiscoveryProtocolConfigOperationTypeAdvertise = LinkDiscoveryProtoco...
constant LinkDiscoveryProtocolConfigOperationTypeBoth (line 2144) | LinkDiscoveryProtocolConfigOperationTypeBoth = LinkDiscoveryProtoco...
function init (line 2147) | func init() {
type LinkDiscoveryProtocolConfigProtocolType (line 2151) | type LinkDiscoveryProtocolConfigProtocolType
constant LinkDiscoveryProtocolConfigProtocolTypeCdp (line 2154) | LinkDiscoveryProtocolConfigProtocolTypeCdp = LinkDiscoveryProtocolConfi...
constant LinkDiscoveryProtocolConfigProtocolTypeLldp (line 2155) | LinkDiscoveryProtocolConfigProtocolTypeLldp = LinkDiscoveryProtocolConfi...
function init (line 2158) | func init() {
type ManagedEntityStatus (line 2162) | type ManagedEntityStatus
constant ManagedEntityStatusGray (line 2165) | ManagedEntityStatusGray = ManagedEntityStatus("gray")
constant ManagedEntityStatusGreen (line 2166) | ManagedEntityStatusGreen = ManagedEntityStatus("green")
constant ManagedEntityStatusYellow (line 2167) | ManagedEntityStatusYellow = ManagedEntityStatus("yellow")
constant ManagedEntityStatusRed (line 2168) | ManagedEntityStatusRed = ManagedEntityStatus("red")
function init (line 2171) | func init() {
type MetricAlarmOperator (line 2175) | type MetricAlarmOperator
constant MetricAlarmOperatorIsAbove (line 2178) | MetricAlarmOperatorIsAbove = MetricAlarmOperator("isAbove")
constant MetricAlarmOperatorIsBelow (line 2179) | MetricAlarmOperatorIsBelow = MetricAlarmOperator("isBelow")
function init (line 2182) | func init() {
type MultipathState (line 2186) | type MultipathState
constant MultipathStateStandby (line 2189) | MultipathStateStandby = MultipathState("standby")
constant MultipathStateActive (line 2190) | MultipathStateActive = MultipathState("active")
constant MultipathStateDisabled (line 2191) | MultipathStateDisabled = MultipathState("disabled")
constant MultipathStateDead (line 2192) | MultipathStateDead = MultipathState("dead")
constant MultipathStateUnknown (line 2193) | MultipathStateUnknown = MultipathState("unknown")
function init (line 2196) | func init() {
type NetBIOSConfigInfoMode (line 2200) | type NetBIOSConfigInfoMode
constant NetBIOSConfigInfoModeUnknown (line 2203) | NetBIOSConfigInfoModeUnknown = NetBIOSConfigInfoMode("unknown")
constant NetBIOSConfigInfoModeEnabled (line 2204) | NetBIOSConfigInfoModeEnabled = NetBIOSConfigInfoMode("enabled")
constant NetBIOSConfigInfoModeDisabled (line 2205) | NetBIOSConfigInfoModeDisabled = NetBIOSConfigInfoMode("disabled")
constant NetBIOSConfigInfoModeEnabledViaDHCP (line 2206) | NetBIOSConfigInfoModeEnabledViaDHCP = NetBIOSConfigInfoMode("enabledViaD...
function init (line 2209) | func init() {
type NetIpConfigInfoIpAddressOrigin (line 2213) | type NetIpConfigInfoIpAddressOrigin
constant NetIpConfigInfoIpAddressOriginOther (line 2216) | NetIpConfigInfoIpAddressOriginOther = NetIpConfigInfoIpAddressOrigin...
constant NetIpConfigInfoIpAddressOriginManual (line 2217) | NetIpConfigInfoIpAddressOriginManual = NetIpConfigInfoIpAddressOrigin...
constant NetIpConfigInfoIpAddressOriginDhcp (line 2218) | NetIpConfigInfoIpAddressOriginDhcp = NetIpConfigInfoIpAddressOrigin...
constant NetIpConfigInfoIpAddressOriginLinklayer (line 2219) | NetIpConfigInfoIpAddressOriginLinklayer = NetIpConfigInfoIpAddressOrigin...
constant NetIpConfigInfoIpAddressOriginRandom (line 2220) | NetIpConfigInfoIpAddressOriginRandom = NetIpConfigInfoIpAddressOrigin...
function init (line 2223) | func init() {
type NetIpConfigInfoIpAddressStatus (line 2227) | type NetIpConfigInfoIpAddressStatus
constant NetIpConfigInfoIpAddressStatusPreferred (line 2230) | NetIpConfigInfoIpAddressStatusPreferred = NetIpConfigInfoIpAddressSta...
constant NetIpConfigInfoIpAddressStatusDeprecated (line 2231) | NetIpConfigInfoIpAddressStatusDeprecated = NetIpConfigInfoIpAddressSta...
constant NetIpConfigInfoIpAddressStatusInvalid (line 2232) | NetIpConfigInfoIpAddressStatusInvalid = NetIpConfigInfoIpAddressSta...
constant NetIpConfigInfoIpAddressStatusInaccessible (line 2233) | NetIpConfigInfoIpAddressStatusInaccessible = NetIpConfigInfoIpAddressSta...
constant NetIpConfigInfoIpAddressStatusUnknown (line 2234) | NetIpConfigInfoIpAddressStatusUnknown = NetIpConfigInfoIpAddressSta...
constant NetIpConfigInfoIpAddressStatusTentative (line 2235) | NetIpConfigInfoIpAddressStatusTentative = NetIpConfigInfoIpAddressSta...
constant NetIpConfigInfoIpAddressStatusDuplicate (line 2236) | NetIpConfigInfoIpAddressStatusDuplicate = NetIpConfigInfoIpAddressSta...
function init (line 2239) | func init() {
type NetIpStackInfoEntryType (line 2243) | type NetIpStackInfoEntryType
constant NetIpStackInfoEntryTypeOther (line 2246) | NetIpStackInfoEntryTypeOther = NetIpStackInfoEntryType("other")
constant NetIpStackInfoEntryTypeInvalid (line 2247) | NetIpStackInfoEntryTypeInvalid = NetIpStackInfoEntryType("invalid")
constant NetIpStackInfoEntryTypeDynamic (line 2248) | NetIpStackInfoEntryTypeDynamic = NetIpStackInfoEntryType("dynamic")
constant NetIpStackInfoEntryTypeManual (line 2249) | NetIpStackInfoEntryTypeManual = NetIpStackInfoEntryType("manual")
function init (line 2252) | func init() {
type NetIpStackInfoPreference (line 2256) | type NetIpStackInfoPreference
constant NetIpStackInfoPreferenceReserved (line 2259) | NetIpStackInfoPreferenceReserved = NetIpStackInfoPreference("reserved")
constant NetIpStackInfoPreferenceLow (line 2260) | NetIpStackInfoPreferenceLow = NetIpStackInfoPreference("low")
constant NetIpStackInfoPreferenceMedium (line 2261) | NetIpStackInfoPreferenceMedium = NetIpStackInfoPreference("medium")
constant NetIpStackInfoPreferenceHigh (line 2262) | NetIpStackInfoPreferenceHigh = NetIpStackInfoPreference("high")
function init (line 2265) | func init() {
type NotSupportedDeviceForFTDeviceType (line 2269) | type NotSupportedDeviceForFTDeviceType
constant NotSupportedDeviceForFTDeviceTypeVirtualVmxnet3 (line 2272) | NotSupportedDeviceForFTDeviceTypeVirtualVmxnet3 = NotSupporte...
constant NotSupportedDeviceForFTDeviceTypeParaVirtualSCSIController (line 2273) | NotSupportedDeviceForFTDeviceTypeParaVirtualSCSIController = NotSupporte...
function init (line 2276) | func init() {
type NumVirtualCpusIncompatibleReason (line 2280) | type NumVirtualCpusIncompatibleReason
constant NumVirtualCpusIncompatibleReasonRecordReplay (line 2283) | NumVirtualCpusIncompatibleReasonRecordReplay = NumVirtualCpusIncompati...
constant NumVirtualCpusIncompatibleReasonFaultTolerance (line 2284) | NumVirtualCpusIncompatibleReasonFaultTolerance = NumVirtualCpusIncompati...
function init (line 2287) | func init() {
type ObjectUpdateKind (line 2291) | type ObjectUpdateKind
constant ObjectUpdateKindModify (line 2294) | ObjectUpdateKindModify = ObjectUpdateKind("modify")
constant ObjectUpdateKindEnter (line 2295) | ObjectUpdateKindEnter = ObjectUpdateKind("enter")
constant ObjectUpdateKindLeave (line 2296) | ObjectUpdateKindLeave = ObjectUpdateKind("leave")
function init (line 2299) | func init() {
type OvfConsumerOstNodeType (line 2303) | type OvfConsumerOstNodeType
constant OvfConsumerOstNodeTypeEnvelope (line 2306) | OvfConsumerOstNodeTypeEnvelope = OvfConsumerOstNodeType("...
constant OvfConsumerOstNodeTypeVirtualSystem (line 2307) | OvfConsumerOstNodeTypeVirtualSystem = OvfConsumerOstNodeType("...
constant OvfConsumerOstNodeTypeVirtualSystemCollection (line 2308) | OvfConsumerOstNodeTypeVirtualSystemCollection = OvfConsumerOstNodeType("...
function init (line 2311) | func init() {
type OvfCreateImportSpecParamsDiskProvisioningType (line 2315) | type OvfCreateImportSpecParamsDiskProvisioningType
constant OvfCreateImportSpecParamsDiskProvisioningTypeMonolithicSparse (line 2318) | OvfCreateImportSpecParamsDiskProvisioningTypeMonolithicSparse = OvfC...
constant OvfCreateImportSpecParamsDiskProvisioningTypeMonolithicFlat (line 2319) | OvfCreateImportSpecParamsDiskProvisioningTypeMonolithicFlat = OvfC...
constant OvfCreateImportSpecParamsDiskProvisioningTypeTwoGbMaxExtentSparse (line 2320) | OvfCreateImportSpecParamsDiskProvisioningTypeTwoGbMaxExtentSparse = OvfC...
constant OvfCreateImportSpecParamsDiskProvisioningTypeTwoGbMaxExtentFlat (line 2321) | OvfCreateImportSpecParamsDiskProvisioningTypeTwoGbMaxExtentFlat = OvfC...
constant OvfCreateImportSpecParamsDiskProvisioningTypeThin (line 2322) | OvfCreateImportSpecParamsDiskProvisioningTypeThin = OvfC...
constant OvfCreateImportSpecParamsDiskProvisioningTypeThick (line 2323) | OvfCreateImportSpecParamsDiskProvisioningTypeThick = OvfC...
constant OvfCreateImportSpecParamsDiskProvisioningTypeSeSparse (line 2324) | OvfCreateImportSpecParamsDiskProvisioningTypeSeSparse = OvfC...
constant OvfCreateImportSpecParamsDiskProvisioningTypeEagerZeroedThick (line 2325) | OvfCreateImportSpecParamsDiskProvisioningTypeEagerZeroedThick = OvfC...
constant OvfCreateImportSpecParamsDiskProvisioningTypeSparse (line 2326) | OvfCreateImportSpecParamsDiskProvisioningTypeSparse = OvfC...
constant OvfCreateImportSpecParamsDiskProvisioningTypeFlat (line 2327) | OvfCreateImportSpecParamsDiskProvisioningTypeFlat = OvfC...
function init (line 2330) | func init() {
type PerfFormat (line 2334) | type PerfFormat
constant PerfFormatNormal (line 2337) | PerfFormatNormal = PerfFormat("normal")
constant PerfFormatCsv (line 2338) | PerfFormatCsv = PerfFormat("csv")
function init (line 2341) | func init() {
type PerfStatsType (line 2345) | type PerfStatsType
constant PerfStatsTypeAbsolute (line 2348) | PerfStatsTypeAbsolute = PerfStatsType("absolute")
constant PerfStatsTypeDelta (line 2349) | PerfStatsTypeDelta = PerfStatsType("delta")
constant PerfStatsTypeRate (line 2350) | PerfStatsTypeRate = PerfStatsType("rate")
function init (line 2353) | func init() {
type PerfSummaryType (line 2357) | type PerfSummaryType
constant PerfSummaryTypeAverage (line 2360) | PerfSummaryTypeAverage = PerfSummaryType("average")
constant PerfSummaryTypeMaximum (line 2361) | PerfSummaryTypeMaximum = PerfSummaryType("maximum")
constant PerfSummaryTypeMinimum (line 2362) | PerfSummaryTypeMinimum = PerfSummaryType("minimum")
constant PerfSummaryTypeLatest (line 2363) | PerfSummaryTypeLatest = PerfSummaryType("latest")
constant PerfSummaryTypeSummation (line 2364) | PerfSummaryTypeSummation = PerfSummaryType("summation")
constant PerfSummaryTypeNone (line 2365) | PerfSummaryTypeNone = PerfSummaryType("none")
function init (line 2368) | func init() {
type PerformanceManagerUnit (line 2372) | type PerformanceManagerUnit
constant PerformanceManagerUnitPercent (line 2375) | PerformanceManagerUnitPercent = PerformanceManagerUnit("perce...
constant PerformanceManagerUnitKiloBytes (line 2376) | PerformanceManagerUnitKiloBytes = PerformanceManagerUnit("kiloB...
constant PerformanceManagerUnitMegaBytes (line 2377) | PerformanceManagerUnitMegaBytes = PerformanceManagerUnit("megaB...
constant PerformanceManagerUnitMegaHertz (line 2378) | PerformanceManagerUnitMegaHertz = PerformanceManagerUnit("megaH...
constant PerformanceManagerUnitNumber (line 2379) | PerformanceManagerUnitNumber = PerformanceManagerUnit("number")
constant PerformanceManagerUnitMicrosecond (line 2380) | PerformanceManagerUnitMicrosecond = PerformanceManagerUnit("micro...
constant PerformanceManagerUnitMillisecond (line 2381) | PerformanceManagerUnitMillisecond = PerformanceManagerUnit("milli...
constant PerformanceManagerUnitSecond (line 2382) | PerformanceManagerUnitSecond = PerformanceManagerUnit("second")
constant PerformanceManagerUnitKiloBytesPerSecond (line 2383) | PerformanceManagerUnitKiloBytesPerSecond = PerformanceManagerUnit("kiloB...
constant PerformanceManagerUnitMegaBytesPerSecond (line 2384) | PerformanceManagerUnitMegaBytesPerSecond = PerformanceManagerUnit("megaB...
constant PerformanceManagerUnitWatt (line 2385) | PerformanceManagerUnitWatt = PerformanceManagerUnit("watt")
constant PerformanceManagerUnitJoule (line 2386) | PerformanceManagerUnitJoule = PerformanceManagerUnit("joule")
constant PerformanceManagerUnitTeraBytes (line 2387) | PerformanceManagerUnitTeraBytes = PerformanceManagerUnit("teraB...
function init (line 2390) | func init() {
type PhysicalNicResourcePoolSchedulerDisallowedReason (line 2394) | type PhysicalNicResourcePoolSchedulerDisallowedReason
constant PhysicalNicResourcePoolSchedulerDisallowedReasonUserOptOut (line 2397) | PhysicalNicResourcePoolSchedulerDisallowedReasonUserOptOut = Ph...
constant PhysicalNicResourcePoolSchedulerDisallowedReasonHardwareUnsupported (line 2398) | PhysicalNicResourcePoolSchedulerDisallowedReasonHardwareUnsupported = Ph...
function init (line 2401) | func init() {
type PhysicalNicVmDirectPathGen2SupportedMode (line 2405) | type PhysicalNicVmDirectPathGen2SupportedMode
constant PhysicalNicVmDirectPathGen2SupportedModeUpt (line 2408) | PhysicalNicVmDirectPathGen2SupportedModeUpt = PhysicalNicVmDirectPathGen...
function init (line 2411) | func init() {
type PlacementAffinityRuleRuleScope (line 2415) | type PlacementAffinityRuleRuleScope
constant PlacementAffinityRuleRuleScopeCluster (line 2418) | PlacementAffinityRuleRuleScopeCluster = PlacementAffinityRuleRuleScop...
constant PlacementAffinityRuleRuleScopeHost (line 2419) | PlacementAffinityRuleRuleScopeHost = PlacementAffinityRuleRuleScop...
constant PlacementAffinityRuleRuleScopeStoragePod (line 2420) | PlacementAffinityRuleRuleScopeStoragePod = PlacementAffinityRuleRuleScop...
constant PlacementAffinityRuleRuleScopeDatastore (line 2421) | PlacementAffinityRuleRuleScopeDatastore = PlacementAffinityRuleRuleScop...
function init (line 2424) | func init() {
type PlacementAffinityRuleRuleType (line 2428) | type PlacementAffinityRuleRuleType
constant PlacementAffinityRuleRuleTypeAffinity (line 2431) | PlacementAffinityRuleRuleTypeAffinity = PlacementAffinityRuleRul...
constant PlacementAffinityRuleRuleTypeAntiAffinity (line 2432) | PlacementAffinityRuleRuleTypeAntiAffinity = PlacementAffinityRuleRul...
constant PlacementAffinityRuleRuleTypeSoftAffinity (line 2433) | PlacementAffinityRuleRuleTypeSoftAffinity = PlacementAffinityRuleRul...
constant PlacementAffinityRuleRuleTypeSoftAntiAffinity (line 2434) | PlacementAffinityRuleRuleTypeSoftAntiAffinity = PlacementAffinityRuleRul...
function init (line 2437) | func init() {
type PlacementSpecPlacementType (line 2441) | type PlacementSpecPlacementType
constant PlacementSpecPlacementTypeCreate (line 2444) | PlacementSpecPlacementTypeCreate = PlacementSpecPlacementType("crea...
constant PlacementSpecPlacementTypeReconfigure (line 2445) | PlacementSpecPlacementTypeReconfigure = PlacementSpecPlacementType("reco...
constant PlacementSpecPlacementTypeRelocate (line 2446) | PlacementSpecPlacementTypeRelocate = PlacementSpecPlacementType("relo...
constant PlacementSpecPlacementTypeClone (line 2447) | PlacementSpecPlacementTypeClone = PlacementSpecPlacementType("clone")
function init (line 2450) | func init() {
type PortGroupConnecteeType (line 2454) | type PortGroupConnecteeType
constant PortGroupConnecteeTypeVirtualMachine (line 2457) | PortGroupConnecteeTypeVirtualMachine = PortGroupConnecteeType("virtual...
constant PortGroupConnecteeTypeSystemManagement (line 2458) | PortGroupConnecteeTypeSystemManagement = PortGroupConnecteeType("systemM...
constant PortGroupConnecteeTypeHost (line 2459) | PortGroupConnecteeTypeHost = PortGroupConnecteeType("host")
constant PortGroupConnecteeTypeUnknown (line 2460) | PortGroupConnecteeTypeUnknown = PortGroupConnecteeType("unknown")
function init (line 2463) | func init() {
type ProfileExecuteResultStatus (line 2467) | type ProfileExecuteResultStatus
constant ProfileExecuteResultStatusSuccess (line 2470) | ProfileExecuteResultStatusSuccess = ProfileExecuteResultStatus("success")
constant ProfileExecuteResultStatusNeedInput (line 2471) | ProfileExecuteResultStatusNeedInput = ProfileExecuteResultStatus("needIn...
constant ProfileExecuteResultStatusError (line 2472) | ProfileExecuteResultStatusError = ProfileExecuteResultStatus("error")
function init (line 2475) | func init() {
type ProfileNumericComparator (line 2479) | type ProfileNumericComparator
constant ProfileNumericComparatorLessThan (line 2482) | ProfileNumericComparatorLessThan = ProfileNumericComparator("les...
constant ProfileNumericComparatorLessThanEqual (line 2483) | ProfileNumericComparatorLessThanEqual = ProfileNumericComparator("les...
constant ProfileNumericComparatorEqual (line 2484) | ProfileNumericComparatorEqual = ProfileNumericComparator("equ...
constant ProfileNumericComparatorNotEqual (line 2485) | ProfileNumericComparatorNotEqual = ProfileNumericComparator("not...
constant ProfileNumericComparatorGreaterThanEqual (line 2486) | ProfileNumericComparatorGreaterThanEqual = ProfileNumericComparator("gre...
constant ProfileNumericComparatorGreaterThan (line 2487) | ProfileNumericComparatorGreaterThan = ProfileNumericComparator("gre...
function init (line 2490) | func init() {
type PropertyChangeOp (line 2494) | type PropertyChangeOp
constant PropertyChangeOpAdd (line 2497) | PropertyChangeOpAdd = PropertyChangeOp("add")
constant PropertyChangeOpRemove (line 2498) | PropertyChangeOpRemove = PropertyChangeOp("remove")
constant PropertyChangeOpAssign (line 2499) | PropertyChangeOpAssign = PropertyChangeOp("assign")
constant PropertyChangeOpIndirectRemove (line 2500) | PropertyChangeOpIndirectRemove = PropertyChangeOp("indirectRemove")
function init (line 2503) | func init() {
type QuarantineModeFaultFaultType (line 2507) | type QuarantineModeFaultFaultType
constant QuarantineModeFaultFaultTypeNoCompatibleNonQuarantinedHost (line 2510) | QuarantineModeFaultFaultTypeNoCompatibleNonQuarantinedHost = QuarantineM...
constant QuarantineModeFaultFaultTypeCorrectionDisallowed (line 2511) | QuarantineModeFaultFaultTypeCorrectionDisallowed = QuarantineM...
constant QuarantineModeFaultFaultTypeCorrectionImpact (line 2512) | QuarantineModeFaultFaultTypeCorrectionImpact = QuarantineM...
function init (line 2515) | func init() {
type QuiesceMode (line 2519) | type QuiesceMode
constant QuiesceModeApplication (line 2522) | QuiesceModeApplication = QuiesceMode("application")
constant QuiesceModeFilesystem (line 2523) | QuiesceModeFilesystem = QuiesceMode("filesystem")
constant QuiesceModeNone (line 2524) | QuiesceModeNone = QuiesceMode("none")
function init (line 2527) | func init() {
type RecommendationReasonCode (line 2531) | type RecommendationReasonCode
constant RecommendationReasonCodeFairnessCpuAvg (line 2534) | RecommendationReasonCodeFairnessCpuAvg = Recommendation...
constant RecommendationReasonCodeFairnessMemAvg (line 2535) | RecommendationReasonCodeFairnessMemAvg = Recommendation...
constant RecommendationReasonCodeJointAffin (line 2536) | RecommendationReasonCodeJointAffin = Recommendation...
constant RecommendationReasonCodeAntiAffin (line 2537) | RecommendationReasonCodeAntiAffin = Recommendation...
constant RecommendationReasonCodeHostMaint (line 2538) | RecommendationReasonCodeHostMaint = Recommendation...
constant RecommendationReasonCodeEnterStandby (line 2539) | RecommendationReasonCodeEnterStandby = Recommendation...
constant RecommendationReasonCodeReservationCpu (line 2540) | RecommendationReasonCodeReservationCpu = Recommendation...
constant RecommendationReasonCodeReservationMem (line 2541) | RecommendationReasonCodeReservationMem = Recommendation...
constant RecommendationReasonCodePowerOnVm (line 2542) | RecommendationReasonCodePowerOnVm = Recommendation...
constant RecommendationReasonCodePowerSaving (line 2543) | RecommendationReasonCodePowerSaving = Recommendation...
constant RecommendationReasonCodeIncreaseCapacity (line 2544) | RecommendationReasonCodeIncreaseCapacity = Recommendation...
constant RecommendationReasonCodeCheckResource (line 2545) | RecommendationReasonCodeCheckResource = Recommendation...
constant RecommendationReasonCodeUnreservedCapacity (line 2546) | RecommendationReasonCodeUnreservedCapacity = Recommendation...
constant RecommendationReasonCodeVmHostHardAffinity (line 2547) | RecommendationReasonCodeVmHostHardAffinity = Recommendation...
constant RecommendationReasonCodeVmHostSoftAffinity (line 2548) | RecommendationReasonCodeVmHostSoftAffinity = Recommendation...
constant RecommendationReasonCodeBalanceDatastoreSpaceUsage (line 2549) | RecommendationReasonCodeBalanceDatastoreSpaceUsage = Recommendation...
constant RecommendationReasonCodeBalanceDatastoreIOLoad (line 2550) | RecommendationReasonCodeBalanceDatastoreIOLoad = Recommendation...
constant RecommendationReasonCodeBalanceDatastoreIOPSReservation (line 2551) | RecommendationReasonCodeBalanceDatastoreIOPSReservation = Recommendation...
constant RecommendationReasonCodeDatastoreMaint (line 2552) | RecommendationReasonCodeDatastoreMaint = Recommendation...
constant RecommendationReasonCodeVirtualDiskJointAffin (line 2553) | RecommendationReasonCodeVirtualDiskJointAffin = Recommendation...
constant RecommendationReasonCodeVirtualDiskAntiAffin (line 2554) | RecommendationReasonCodeVirtualDiskAntiAffin = Recommendation...
constant RecommendationReasonCodeDatastoreSpaceOutage (line 2555) | RecommendationReasonCodeDatastoreSpaceOutage = Recommendation...
constant RecommendationReasonCodeStoragePlacement (line 2556) | RecommendationReasonCodeStoragePlacement = Recommendation...
constant RecommendationReasonCodeIolbDisabledInternal (line 2557) | RecommendationReasonCodeIolbDisabledInternal = Recommendation...
constant RecommendationReasonCodeXvmotionPlacement (line 2558) | RecommendationReasonCodeXvmotionPlacement = Recommendation...
constant RecommendationReasonCodeNetworkBandwidthReservation (line 2559) | RecommendationReasonCodeNetworkBandwidthReservation = Recommendation...
constant RecommendationReasonCodeHostInDegradation (line 2560) | RecommendationReasonCodeHostInDegradation = Recommendation...
constant RecommendationReasonCodeHostExitDegradation (line 2561) | RecommendationReasonCodeHostExitDegradation = Recommendation...
constant RecommendationReasonCodeMaxVmsConstraint (line 2562) | RecommendationReasonCodeMaxVmsConstraint = Recommendation...
constant RecommendationReasonCodeFtConstraints (line 2563) | RecommendationReasonCodeFtConstraints = Recommendation...
function init (line 2566) | func init() {
type RecommendationType (line 2570) | type RecommendationType
constant RecommendationTypeV1 (line 2573) | RecommendationTypeV1 = RecommendationType("V1")
function init (line 2576) | func init() {
type ReplicationDiskConfigFaultReasonForFault (line 2580) | type ReplicationDiskConfigFaultReasonForFault
constant ReplicationDiskConfigFaultReasonForFaultDiskNotFound (line 2583) | ReplicationDiskConfigFaultReasonForFaultDiskNotFound ...
constant ReplicationDiskConfigFaultReasonForFaultDiskTypeNotSupported (line 2584) | ReplicationDiskConfigFaultReasonForFaultDiskTypeNotSupported ...
constant ReplicationDiskConfigFaultReasonForFaultInvalidDiskKey (line 2585) | ReplicationDiskConfigFaultReasonForFaultInvalidDiskKey ...
constant ReplicationDiskConfigFaultReasonForFaultInvalidDiskReplicationId (line 2586) | ReplicationDiskConfigFaultReasonForFaultInvalidDiskReplicationId ...
constant ReplicationDiskConfigFaultReasonForFaultDuplicateDiskReplicationId (line 2587) | ReplicationDiskConfigFaultReasonForFaultDuplicateDiskReplicationId ...
constant ReplicationDiskConfigFaultReasonForFaultInvalidPersistentFilePath (line 2588) | ReplicationDiskConfigFaultReasonForFaultInvalidPersistentFilePath ...
constant ReplicationDiskConfigFaultReasonForFaultReconfigureDiskReplicationIdNotAllowed (line 2589) | ReplicationDiskConfigFaultReasonForFaultReconfigureDiskReplicationIdNotA...
function init (line 2592) | func init() {
type ReplicationVmConfigFaultReasonForFault (line 2596) | type ReplicationVmConfigFaultReasonForFault
constant ReplicationVmConfigFaultReasonForFaultIncompatibleHwVersion (line 2599) | ReplicationVmConfigFaultReasonForFaultIncompatibleHwVersion ...
constant ReplicationVmConfigFaultReasonForFaultInvalidVmReplicationId (line 2600) | ReplicationVmConfigFaultReasonForFaultInvalidVmReplicationId ...
constant ReplicationVmConfigFaultReasonForFaultInvalidGenerationNumber (line 2601) | ReplicationVmConfigFaultReasonForFaultInvalidGenerationNumber ...
constant ReplicationVmConfigFaultReasonForFaultOutOfBoundsRpoValue (line 2602) | ReplicationVmConfigFaultReasonForFaultOutOfBoundsRpoValue ...
constant ReplicationVmConfigFaultReasonForFaultInvalidDestinationIpAddress (line 2603) | ReplicationVmConfigFaultReasonForFaultInvalidDestinationIpAddress ...
constant ReplicationVmConfigFaultReasonForFaultInvalidDestinationPort (line 2604) | ReplicationVmConfigFaultReasonForFaultInvalidDestinationPort ...
constant ReplicationVmConfigFaultReasonForFaultInvalidExtraVmOptions (line 2605) | ReplicationVmConfigFaultReasonForFaultInvalidExtraVmOptions ...
constant ReplicationVmConfigFaultReasonForFaultStaleGenerationNumber (line 2606) | ReplicationVmConfigFaultReasonForFaultStaleGenerationNumber ...
constant ReplicationVmConfigFaultReasonForFaultReconfigureVmReplicationIdNotAllowed (line 2607) | ReplicationVmConfigFaultReasonForFaultReconfigureVmReplicationIdNotAllow...
constant ReplicationVmConfigFaultReasonForFaultCannotRetrieveVmReplicationConfiguration (line 2608) | ReplicationVmConfigFaultReasonForFaultCannotRetrieveVmReplicationConfigu...
constant ReplicationVmConfigFaultReasonForFaultReplicationAlreadyEnabled (line 2609) | ReplicationVmConfigFaultReasonForFaultReplicationAlreadyEnabled ...
constant ReplicationVmConfigFaultReasonForFaultInvalidPriorConfiguration (line 2610) | ReplicationVmConfigFaultReasonForFaultInvalidPriorConfiguration ...
constant ReplicationVmConfigFaultReasonForFaultReplicationNotEnabled (line 2611) | ReplicationVmConfigFaultReasonForFaultReplicationNotEnabled ...
constant ReplicationVmConfigFaultReasonForFaultReplicationConfigurationFailed (line 2612) | ReplicationVmConfigFaultReasonForFaultReplicationConfigurationFailed ...
constant ReplicationVmConfigFaultReasonForFaultEncryptedVm (line 2613) | ReplicationVmConfigFaultReasonForFaultEncryptedVm ...
function init (line 2616) | func init() {
type ReplicationVmFaultReasonForFault (line 2620) | type ReplicationVmFaultReasonForFault
constant ReplicationVmFaultReasonForFaultNotConfigured (line 2623) | ReplicationVmFaultReasonForFaultNotConfigured = ReplicationVmFaultR...
constant ReplicationVmFaultReasonForFaultPoweredOff (line 2624) | ReplicationVmFaultReasonForFaultPoweredOff = ReplicationVmFaultR...
constant ReplicationVmFaultReasonForFaultSuspended (line 2625) | ReplicationVmFaultReasonForFaultSuspended = ReplicationVmFaultR...
constant ReplicationVmFaultReasonForFaultPoweredOn (line 2626) | ReplicationVmFaultReasonForFaultPoweredOn = ReplicationVmFaultR...
constant ReplicationVmFaultReasonForFaultOfflineReplicating (line 2627) | ReplicationVmFaultReasonForFaultOfflineReplicating = ReplicationVmFaultR...
constant ReplicationVmFaultReasonForFaultInvalidState (line 2628) | ReplicationVmFaultReasonForFaultInvalidState = ReplicationVmFaultR...
constant ReplicationVmFaultReasonForFaultInvalidInstanceId (line 2629) | ReplicationVmFaultReasonForFaultInvalidInstanceId = ReplicationVmFaultR...
constant ReplicationVmFaultReasonForFaultCloseDiskError (line 2630) | ReplicationVmFaultReasonForFaultCloseDiskError = ReplicationVmFaultR...
function init (line 2633) | func init() {
type ReplicationVmInProgressFaultActivity (line 2637) | type ReplicationVmInProgressFaultActivity
constant ReplicationVmInProgressFaultActivityFullSync (line 2640) | ReplicationVmInProgressFaultActivityFullSync = ReplicationVmInProgressFa...
constant ReplicationVmInProgressFaultActivityDelta (line 2641) | ReplicationVmInProgressFaultActivityDelta = ReplicationVmInProgressFa...
function init (line 2644) | func init() {
type ReplicationVmState (line 2648) | type ReplicationVmState
constant ReplicationVmStateNone (line 2651) | ReplicationVmStateNone = ReplicationVmState("none")
constant ReplicationVmStatePaused (line 2652) | ReplicationVmStatePaused = ReplicationVmState("paused")
constant ReplicationVmStateSyncing (line 2653) | ReplicationVmStateSyncing = ReplicationVmState("syncing")
constant ReplicationVmStateIdle (line 2654) | ReplicationVmStateIdle = ReplicationVmState("idle")
constant ReplicationVmStateActive (line 2655) | ReplicationVmStateActive = ReplicationVmState("active")
constant ReplicationVmStateError (line 2656) | ReplicationVmStateError = ReplicationVmState("error")
function init (line 2659) | func init() {
type ScheduledHardwareUpgradeInfoHardwareUpgradePolicy (line 2663) | type ScheduledHardwareUpgradeInfoHardwareUpgradePolicy
constant ScheduledHardwareUpgradeInfoHardwareUpgradePolicyNever (line 2666) | ScheduledHardwareUpgradeInfoHardwareUpgradePolicyNever = Schedu...
constant ScheduledHardwareUpgradeInfoHardwareUpgradePolicyOnSoftPowerOff (line 2667) | ScheduledHardwareUpgradeInfoHardwareUpgradePolicyOnSoftPowerOff = Schedu...
constant ScheduledHardwareUpgradeInfoHardwareUpgradePolicyAlways (line 2668) | ScheduledHardwareUpgradeInfoHardwareUpgradePolicyAlways = Schedu...
function init (line 2671) | func init() {
type ScheduledHardwareUpgradeInfoHardwareUpgradeStatus (line 2675) | type ScheduledHardwareUpgradeInfoHardwareUpgradeStatus
constant ScheduledHardwareUpgradeInfoHardwareUpgradeStatusNone (line 2678) | ScheduledHardwareUpgradeInfoHardwareUpgradeStatusNone = ScheduledHard...
constant ScheduledHardwareUpgradeInfoHardwareUpgradeStatusPending (line 2679) | ScheduledHardwareUpgradeInfoHardwareUpgradeStatusPending = ScheduledHard...
constant ScheduledHardwareUpgradeInfoHardwareUpgradeStatusSuccess (line 2680) | ScheduledHardwareUpgradeInfoHardwareUpgradeStatusSuccess = ScheduledHard...
constant ScheduledHardwareUpgradeInfoHardwareUpgradeStatusFailed (line 2681) | ScheduledHardwareUpgradeInfoHardwareUpgradeStatusFailed = ScheduledHard...
function init (line 2684) | func init() {
type ScsiDiskType (line 2688) | type ScsiDiskType
constant ScsiDiskTypeNative512 (line 2691) | ScsiDiskTypeNative512 = ScsiDiskType("native512")
constant ScsiDiskTypeEmulated512 (line 2692) | ScsiDiskTypeEmulated512 = ScsiDiskType("emulated512")
constant ScsiDiskTypeNative4k (line 2693) | ScsiDiskTypeNative4k = ScsiDiskType("native4k")
constant ScsiDiskTypeUnknown (line 2694) | ScsiDiskTypeUnknown = ScsiDiskType("unknown")
function init (line 2697) | func init() {
type ScsiLunDescriptorQuality (line 2701) | type ScsiLunDescriptorQuality
constant ScsiLunDescriptorQualityHighQuality (line 2704) | ScsiLunDescriptorQualityHighQuality = ScsiLunDescriptorQuality("highQ...
constant ScsiLunDescriptorQualityMediumQuality (line 2705) | ScsiLunDescriptorQualityMediumQuality = ScsiLunDescriptorQuality("mediu...
constant ScsiLunDescriptorQualityLowQuality (line 2706) | ScsiLunDescriptorQualityLowQuality = ScsiLunDescriptorQuality("lowQu...
constant ScsiLunDescriptorQualityUnknownQuality (line 2707) | ScsiLunDescriptorQualityUnknownQuality = ScsiLunDescriptorQuality("unkno...
function init (line 2710) | func init() {
type ScsiLunState (line 2714) | type ScsiLunState
constant ScsiLunStateUnknownState (line 2717) | ScsiLunStateUnknownState = ScsiLunState("unknownState")
constant ScsiLunStateOk (line 2718) | ScsiLunStateOk = ScsiLunState("ok")
constant ScsiLunStateError (line 2719) | ScsiLunStateError = ScsiLunState("error")
constant ScsiLunStateOff (line 2720) | ScsiLunStateOff = ScsiLunState("off")
constant ScsiLunStateQuiesced (line 2721) | ScsiLunStateQuiesced = ScsiLunState("quiesced")
constant ScsiLunStateDegraded (line 2722) | ScsiLunStateDegraded = ScsiLunState("degraded")
constant ScsiLunStateLostCommunication (line 2723) | ScsiLunStateLostCommunication = ScsiLunState("lostCommunication")
constant ScsiLunStateTimeout (line 2724) | ScsiLunStateTimeout = ScsiLunState("timeout")
function init (line 2727) | func init() {
type ScsiLunType (line 2731) | type ScsiLunType
constant ScsiLunTypeDisk (line 2734) | ScsiLunTypeDisk = ScsiLunType("disk")
constant ScsiLunTypeTape (line 2735) | ScsiLunTypeTape = ScsiLunType("tape")
constant ScsiLunTypePrinter (line 2736) | ScsiLunTypePrinter = ScsiLunType("printer")
constant ScsiLunTypeProcessor (line 2737) | ScsiLunTypeProcessor = ScsiLunType("processor")
constant ScsiLunTypeWorm (line 2738) | ScsiLunTypeWorm = ScsiLunType("worm")
constant ScsiLunTypeCdrom (line 2739) | ScsiLunTypeCdrom = ScsiLunType("cdrom")
constant ScsiLunTypeScanner (line 2740) | ScsiLunTypeScanner = ScsiLunType("scanner")
constant ScsiLunTypeOpticalDevice (line 2741) | ScsiLunTypeOpticalDevice = ScsiLunType("opticalDevice")
constant ScsiLunTypeMediaChanger (line 2742) | ScsiLunTypeMediaChanger = ScsiLunType("mediaChanger")
constant ScsiLunTypeCommunications (line 2743) | ScsiLunTypeCommunications = ScsiLunType("communications")
constant ScsiLunTypeStorageArrayController (line 2744) | ScsiLunTypeStorageArrayController = ScsiLunType("storageArrayController")
constant ScsiLunTypeEnclosure (line 2745) | ScsiLunTypeEnclosure = ScsiLunType("enclosure")
constant ScsiLunTypeUnknown (line 2746) | ScsiLunTypeUnknown = ScsiLunType("unknown")
function init (line 2749) | func init() {
type ScsiLunVStorageSupportStatus (line 2753) | type ScsiLunVStorageSupportStatus
constant ScsiLunVStorageSupportStatusVStorageSupported (line 2756) | ScsiLunVStorageSupportStatusVStorageSupported = ScsiLunVStorageSupport...
constant ScsiLunVStorageSupportStatusVStorageUnsupported (line 2757) | ScsiLunVStorageSupportStatusVStorageUnsupported = ScsiLunVStorageSupport...
constant ScsiLunVStorageSupportStatusVStorageUnknown (line 2758) | ScsiLunVStorageSupportStatusVStorageUnknown = ScsiLunVStorageSupport...
function init (line 2761) | func init() {
type SessionManagerHttpServiceRequestSpecMethod (line 2765) | type SessionManagerHttpServiceRequestSpecMethod
constant SessionManagerHttpServiceRequestSpecMethodHttpOptions (line 2768) | SessionManagerHttpServiceRequestSpecMethodHttpOptions = SessionManagerHt...
constant SessionManagerHttpServiceRequestSpecMethodHttpGet (line 2769) | SessionManagerHttpServiceRequestSpecMethodHttpGet = SessionManagerHt...
constant SessionManagerHttpServiceRequestSpecMethodHttpHead (line 2770) | SessionManagerHttpServiceRequestSpecMethodHttpHead = SessionManagerHt...
constant SessionManagerHttpServiceRequestSpecMethodHttpPost (line 2771) | SessionManagerHttpServiceRequestSpecMethodHttpPost = SessionManagerHt...
constant SessionManagerHttpServiceRequestSpecMethodHttpPut (line 2772) | SessionManagerHttpServiceRequestSpecMethodHttpPut = SessionManagerHt...
constant SessionManagerHttpServiceRequestSpecMethodHttpDelete (line 2773) | SessionManagerHttpServiceRequestSpecMethodHttpDelete = SessionManagerHt...
constant SessionManagerHttpServiceRequestSpecMethodHttpTrace (line 2774) | SessionManagerHttpServiceRequestSpecMethodHttpTrace = SessionManagerHt...
constant SessionManagerHttpServiceRequestSpecMethodHttpConnect (line 2775) | SessionManagerHttpServiceRequestSpecMethodHttpConnect = SessionManagerHt...
function init (line 2778) | func init() {
type SharesLevel (line 2782) | type SharesLevel
constant SharesLevelLow (line 2785) | SharesLevelLow = SharesLevel("low")
constant SharesLevelNormal (line 2786) | SharesLevelNormal = SharesLevel("normal")
constant SharesLevelHigh (line 2787) | SharesLevelHigh = SharesLevel("high")
constant SharesLevelCustom (line 2788) | SharesLevelCustom = SharesLevel("custom")
function init (line 2791) | func init() {
type SimpleCommandEncoding (line 2795) | type SimpleCommandEncoding
constant SimpleCommandEncodingCSV (line 2798) | SimpleCommandEncodingCSV = SimpleCommandEncoding("CSV")
constant SimpleCommandEncodingHEX (line 2799) | SimpleCommandEncodingHEX = SimpleCommandEncoding("HEX")
constant SimpleCommandEncodingSTRING (line 2800) | SimpleCommandEncodingSTRING = SimpleCommandEncoding("STRING")
function init (line 2803) | func init() {
type SlpDiscoveryMethod (line 2807) | type SlpDiscoveryMethod
constant SlpDiscoveryMethodSlpDhcp (line 2810) | SlpDiscoveryMethodSlpDhcp = SlpDiscoveryMethod("slpDhcp")
constant SlpDiscoveryMethodSlpAutoUnicast (line 2811) | SlpDiscoveryMethodSlpAutoUnicast = SlpDiscoveryMethod("slpAutoUnicast")
constant SlpDiscoveryMethodSlpAutoMulticast (line 2812) | SlpDiscoveryMethodSlpAutoMulticast = SlpDiscoveryMethod("slpAutoMulticast")
constant SlpDiscoveryMethodSlpManual (line 2813) | SlpDiscoveryMethodSlpManual = SlpDiscoveryMethod("slpManual")
function init (line 2816) | func init() {
type SoftwarePackageConstraint (line 2820) | type SoftwarePackageConstraint
constant SoftwarePackageConstraintEquals (line 2823) | SoftwarePackageConstraintEquals = SoftwarePackageConstraint("e...
constant SoftwarePackageConstraintLessThan (line 2824) | SoftwarePackageConstraintLessThan = SoftwarePackageConstraint("l...
constant SoftwarePackageConstraintLessThanEqual (line 2825) | SoftwarePackageConstraintLessThanEqual = SoftwarePackageConstraint("l...
constant SoftwarePackageConstraintGreaterThanEqual (line 2826) | SoftwarePackageConstraintGreaterThanEqual = SoftwarePackageConstraint("g...
constant SoftwarePackageConstraintGreaterThan (line 2827) | SoftwarePackageConstraintGreaterThan = SoftwarePackageConstraint("g...
function init (line 2830) | func init() {
type SoftwarePackageVibType (line 2834) | type SoftwarePackageVibType
constant SoftwarePackageVibTypeBootbank (line 2837) | SoftwarePackageVibTypeBootbank = SoftwarePackageVibType("bootbank")
constant SoftwarePackageVibTypeTools (line 2838) | SoftwarePackageVibTypeTools = SoftwarePackageVibType("tools")
constant SoftwarePackageVibTypeMeta (line 2839) | SoftwarePackageVibTypeMeta = SoftwarePackageVibType("meta")
function init (line 2842) | func init() {
type StateAlarmOperator (line 2846) | type StateAlarmOperator
constant StateAlarmOperatorIsEqual (line 2849) | StateAlarmOperatorIsEqual = StateAlarmOperator("isEqual")
constant StateAlarmOperatorIsUnequal (line 2850) | StateAlarmOperatorIsUnequal = StateAlarmOperator("isUnequal")
function init (line 2853) | func init() {
type StorageDrsPodConfigInfoBehavior (line 2857) | type StorageDrsPodConfigInfoBehavior
constant StorageDrsPodConfigInfoBehaviorManual (line 2860) | StorageDrsPodConfigInfoBehaviorManual = StorageDrsPodConfigInfoBehavi...
constant StorageDrsPodConfigInfoBehaviorAutomated (line 2861) | StorageDrsPodConfigInfoBehaviorAutomated = StorageDrsPodConfigInfoBehavi...
function init (line 2864) | func init() {
type StorageDrsSpaceLoadBalanceConfigSpaceThresholdMode (line 2868) | type StorageDrsSpaceLoadBalanceConfigSpaceThresholdMode
constant StorageDrsSpaceLoadBalanceConfigSpaceThresholdModeUtilization (line 2871) | StorageDrsSpaceLoadBalanceConfigSpaceThresholdModeUtilization = StorageD...
constant StorageDrsSpaceLoadBalanceConfigSpaceThresholdModeFreeSpace (line 2872) | StorageDrsSpaceLoadBalanceConfigSpaceThresholdModeFreeSpace = StorageD...
function init (line 2875) | func init() {
type StorageIORMThresholdMode (line 2879) | type StorageIORMThresholdMode
constant StorageIORMThresholdModeAutomatic (line 2882) | StorageIORMThresholdModeAutomatic = StorageIORMThresholdMode("automatic")
constant StorageIORMThresholdModeManual (line 2883) | StorageIORMThresholdModeManual = StorageIORMThresholdMode("manual")
function init (line 2886) | func init() {
type StoragePlacementSpecPlacementType (line 2890) | type StoragePlacementSpecPlacementType
constant StoragePlacementSpecPlacementTypeCreate (line 2893) | StoragePlacementSpecPlacementTypeCreate = StoragePlacementSpecPlace...
constant StoragePlacementSpecPlacementTypeReconfigure (line 2894) | StoragePlacementSpecPlacementTypeReconfigure = StoragePlacementSpecPlace...
constant StoragePlacementSpecPlacementTypeRelocate (line 2895) | StoragePlacementSpecPlacementTypeRelocate = StoragePlacementSpecPlace...
constant StoragePlacementSpecPlacementTypeClone (line 2896) | StoragePlacementSpecPlacementTypeClone = StoragePlacementSpecPlace...
function init (line 2899) | func init() {
type TaskFilterSpecRecursionOption (line 2903) | type TaskFilterSpecRecursionOption
constant TaskFilterSpecRecursionOptionSelf (line 2906) | TaskFilterSpecRecursionOptionSelf = TaskFilterSpecRecursionOption("s...
constant TaskFilterSpecRecursionOptionChildren (line 2907) | TaskFilterSpecRecursionOptionChildren = TaskFilterSpecRecursionOption("c...
constant TaskFilterSpecRecursionOptionAll (line 2908) | TaskFilterSpecRecursionOptionAll = TaskFilterSpecRecursionOption("a...
function init (line 2911) | func init() {
type TaskFilterSpecTimeOption (line 2915) | type TaskFilterSpecTimeOption
constant TaskFilterSpecTimeOptionQueuedTime (line 2918) | TaskFilterSpecTimeOptionQueuedTime = TaskFilterSpecTimeOption("queued...
constant TaskFilterSpecTimeOptionStartedTime (line 2919) | TaskFilterSpecTimeOptionStartedTime = TaskFilterSpecTimeOption("starte...
constant TaskFilterSpecTimeOptionCompletedTime (line 2920) | TaskFilterSpecTimeOptionCompletedTime = TaskFilterSpecTimeOption("comple...
function init (line 2923) | func init() {
type TaskInfoState (line 2927) | type TaskInfoState
constant TaskInfoStateQueued (line 2930) | TaskInfoStateQueued = TaskInfoState("queued")
constant TaskInfoStateRunning (line 2931) | TaskInfoStateRunning = TaskInfoState("running")
constant TaskInfoStateSuccess (line 2932) | TaskInfoStateSuccess = TaskInfoState("success")
constant TaskInfoStateError (line 2933) | TaskInfoStateError = TaskInfoState("error")
function init (line 2936) | func init() {
type ThirdPartyLicenseAssignmentFailedReason (line 2940) | type ThirdPartyLicenseAssignmentFailedReason
constant ThirdPartyLicenseAssignmentFailedReasonLicenseAssignmentFailed (line 2943) | ThirdPartyLicenseAssignmentFailedReasonLicenseAssignmentFailed = ThirdPa...
constant ThirdPartyLicenseAssignmentFailedReasonModuleNotInstalled (line 2944) | ThirdPartyLicenseAssignmentFailedReasonModuleNotInstalled = ThirdPa...
function init (line 2947) | func init() {
type UpgradePolicy (line 2951) | type UpgradePolicy
constant UpgradePolicyManual (line 2954) | UpgradePolicyManual = UpgradePolicy("manual")
constant UpgradePolicyUpgradeAtPowerCycle (line 2955) | UpgradePolicyUpgradeAtPowerCycle = UpgradePolicy("upgradeAtPowerCycle")
function init (line 2958) | func init() {
type VAppAutoStartAction (line 2962) | type VAppAutoStartAction
constant VAppAutoStartActionNone (line 2965) | VAppAutoStartActionNone = VAppAutoStartAction("none")
constant VAppAutoStartActionPowerOn (line 2966) | VAppAutoStartActionPowerOn = VAppAutoStartAction("powerOn")
constant VAppAutoStartActionPowerOff (line 2967) | VAppAutoStartActionPowerOff = VAppAutoStartAction("powerOff")
constant VAppAutoStartActionGuestShutdown (line 2968) | VAppAutoStartActionGuestShutdown = VAppAutoStartAction("guestShutdown")
constant VAppAutoStartActionSuspend (line 2969) | VAppAutoStartActionSuspend = VAppAutoStartAction("suspend")
function init (line 2972) | func init() {
type VAppCloneSpecProvisioningType (line 2976) | type VAppCloneSpecProvisioningType
constant VAppCloneSpecProvisioningTypeSameAsSource (line 2979) | VAppCloneSpecProvisioningTypeSameAsSource = VAppCloneSpecProvisioningTyp...
constant VAppCloneSpecProvisioningTypeThin (line 2980) | VAppCloneSpecProvisioningTypeThin = VAppCloneSpecProvisioningTyp...
constant VAppCloneSpecProvisioningTypeThick (line 2981) | VAppCloneSpecProvisioningTypeThick = VAppCloneSpecProvisioningTyp...
function init (line 2984) | func init() {
type VAppIPAssignmentInfoAllocationSchemes (line 2988) | type VAppIPAssignmentInfoAllocationSchemes
constant VAppIPAssignmentInfoAllocationSchemesDhcp (line 2991) | VAppIPAssignmentInfoAllocationSchemesDhcp = VAppIPAssignmentInfoAlloca...
constant VAppIPAssignmentInfoAllocationSchemesOvfenv (line 2992) | VAppIPAssignmentInfoAllocationSchemesOvfenv = VAppIPAssignmentInfoAlloca...
function init (line 2995) | func init() {
type VAppIPAssignmentInfoIpAllocationPolicy (line 2999) | type VAppIPAssignmentInfoIpAllocationPolicy
constant VAppIPAssignmentInfoIpAllocationPolicyDhcpPolicy (line 3002) | VAppIPAssignmentInfoIpAllocationPolicyDhcpPolicy = VAppIPAssig...
constant VAppIPAssignmentInfoIpAllocationPolicyTransientPolicy (line 3003) | VAppIPAssignmentInfoIpAllocationPolicyTransientPolicy = VAppIPAssig...
constant VAppIPAssignmentInfoIpAllocationPolicyFixedPolicy (line 3004) | VAppIPAssignmentInfoIpAllocationPolicyFixedPolicy = VAppIPAssig...
constant VAppIPAssignmentInfoIpAllocationPolicyFixedAllocatedPolicy (line 3005) | VAppIPAssignmentInfoIpAllocationPolicyFixedAllocatedPolicy = VAppIPAssig...
function init (line 3008) | func init() {
type VAppIPAssignmentInfoProtocols (line 3012) | type VAppIPAssignmentInfoProtocols
constant VAppIPAssignmentInfoProtocolsIPv4 (line 3015) | VAppIPAssignmentInfoProtocolsIPv4 = VAppIPAssignmentInfoProtocols("IPv4")
constant VAppIPAssignmentInfoProtocolsIPv6 (line 3016) | VAppIPAssignmentInfoProtocolsIPv6 = VAppIPAssignmentInfoProtocols("IPv6")
function init (line 3019) | func init() {
type VFlashModuleNotSupportedReason (line 3023) | type VFlashModuleNotSupportedReason
constant VFlashModuleNotSupportedReasonCacheModeNotSupported (line 3026) | VFlashModuleNotSupportedReasonCacheModeNotSupported = VFlashM...
constant VFlashModuleNotSupportedReasonCacheConsistencyTypeNotSupported (line 3027) | VFlashModuleNotSupportedReasonCacheConsistencyTypeNotSupported = VFlashM...
constant VFlashModuleNotSupportedReasonCacheBlockSizeNotSupported (line 3028) | VFlashModuleNotSupportedReasonCacheBlockSizeNotSupported = VFlashM...
constant VFlashModuleNotSupportedReasonCacheReservationNotSupported (line 3029) | VFlashModuleNotSupportedReasonCacheReservationNotSupported = VFlashM...
constant VFlashModuleNotSupportedReasonDiskSizeNotSupported (line 3030) | VFlashModuleNotSupportedReasonDiskSizeNotSupported = VFlashM...
function init (line 3033) | func init() {
type VMotionCompatibilityType (line 3037) | type VMotionCompatibilityType
constant VMotionCompatibilityTypeCpu (line 3040) | VMotionCompatibilityTypeCpu = VMotionCompatibilityType("cpu")
constant VMotionCompatibilityTypeSoftware (line 3041) | VMotionCompatibilityTypeSoftware = VMotionCompatibilityType("software")
function init (line 3044) | func init() {
type VMwareDVSTeamingMatchStatus (line 3048) | type VMwareDVSTeamingMatchStatus
constant VMwareDVSTeamingMatchStatusIphashMatch (line 3051) | VMwareDVSTeamingMatchStatusIphashMatch = VMwareDVSTeamingMatchStat...
constant VMwareDVSTeamingMatchStatusNonIphashMatch (line 3052) | VMwareDVSTeamingMatchStatusNonIphashMatch = VMwareDVSTeamingMatchStat...
constant VMwareDVSTeamingMatchStatusIphashMismatch (line 3053) | VMwareDVSTeamingMatchStatusIphashMismatch = VMwareDVSTeamingMatchStat...
constant VMwareDVSTeamingMatchStatusNonIphashMismatch (line 3054) | VMwareDVSTeamingMatchStatusNonIphashMismatch = VMwareDVSTeamingMatchStat...
function init (line 3057) | func init() {
type VMwareDVSVspanSessionEncapType (line 3061) | type VMwareDVSVspanSessionEncapType
constant VMwareDVSVspanSessionEncapTypeGre (line 3064) | VMwareDVSVspanSessionEncapTypeGre = VMwareDVSVspanSessionEncapType("...
constant VMwareDVSVspanSessionEncapTypeErspan2 (line 3065) | VMwareDVSVspanSessionEncapTypeErspan2 = VMwareDVSVspanSessionEncapType("...
constant VMwareDVSVspanSessionEncapTypeErspan3 (line 3066) | VMwareDVSVspanSessionEncapTypeErspan3 = VMwareDVSVspanSessionEncapType("...
function init (line 3069) | func init() {
type VMwareDVSVspanSessionType (line 3073) | type VMwareDVSVspanSessionType
constant VMwareDVSVspanSessionTypeMixedDestMirror (line 3076) | VMwareDVSVspanSessionTypeMixedDestMirror = VMwareDVSVspan...
constant VMwareDVSVspanSessionTypeDvPortMirror (line 3077) | VMwareDVSVspanSessionTypeDvPortMirror = VMwareDVSVspan...
constant VMwareDVSVspanSessionTypeRemoteMirrorSource (line 3078) | VMwareDVSVspanSessionTypeRemoteMirrorSource = VMwareDVSVspan...
constant VMwareDVSVspanSessionTypeRemoteMirrorDest (line 3079) | VMwareDVSVspanSessionTypeRemoteMirrorDest = VMwareDVSVspan...
constant VMwareDVSVspanSessionTypeEncapsulatedRemoteMirrorSource (line 3080) | VMwareDVSVspanSessionTypeEncapsulatedRemoteMirrorSource = VMwareDVSVspan...
function init (line 3083) | func init() {
type VMwareDvsLacpApiVersion (line 3087) | type VMwareDvsLacpApiVersion
constant VMwareDvsLacpApiVersionSingleLag (line 3090) | VMwareDvsLacpApiVersionSingleLag = VMwareDvsLacpApiVersion("singleLag")
constant VMwareDvsLacpApiVersionMultipleLag (line 3091) | VMwareDvsLacpApiVersionMultipleLag = VMwareDvsLacpApiVersion("multipleLag")
function init (line 3094) | func init() {
type VMwareDvsLacpLoadBalanceAlgorithm (line 3098) | type VMwareDvsLacpLoadBalanceAlgorithm
constant VMwareDvsLacpLoadBalanceAlgorithmSrcMac (line 3101) | VMwareDvsLacpLoadBalanceAlgorithmSrcMac = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmDestMac (line 3102) | VMwareDvsLacpLoadBalanceAlgorithmDestMac = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmSrcDestMac (line 3103) | VMwareDvsLacpLoadBalanceAlgorithmSrcDestMac = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmDestIpVlan (line 3104) | VMwareDvsLacpLoadBalanceAlgorithmDestIpVlan = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmSrcIpVlan (line 3105) | VMwareDvsLacpLoadBalanceAlgorithmSrcIpVlan = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmSrcDestIpVlan (line 3106) | VMwareDvsLacpLoadBalanceAlgorithmSrcDestIpVlan = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmDestTcpUdpPort (line 3107) | VMwareDvsLacpLoadBalanceAlgorithmDestTcpUdpPort = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmSrcTcpUdpPort (line 3108) | VMwareDvsLacpLoadBalanceAlgorithmSrcTcpUdpPort = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmSrcDestTcpUdpPort (line 3109) | VMwareDvsLacpLoadBalanceAlgorithmSrcDestTcpUdpPort = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmDestIpTcpUdpPort (line 3110) | VMwareDvsLacpLoadBalanceAlgorithmDestIpTcpUdpPort = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmSrcIpTcpUdpPort (line 3111) | VMwareDvsLacpLoadBalanceAlgorithmSrcIpTcpUdpPort = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmSrcDestIpTcpUdpPort (line 3112) | VMwareDvsLacpLoadBalanceAlgorithmSrcDestIpTcpUdpPort = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmDestIpTcpUdpPortVlan (line 3113) | VMwareDvsLacpLoadBalanceAlgorithmDestIpTcpUdpPortVlan = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmSrcIpTcpUdpPortVlan (line 3114) | VMwareDvsLacpLoadBalanceAlgorithmSrcIpTcpUdpPortVlan = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmSrcDestIpTcpUdpPortVlan (line 3115) | VMwareDvsLacpLoadBalanceAlgorithmSrcDestIpTcpUdpPortVlan = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmDestIp (line 3116) | VMwareDvsLacpLoadBalanceAlgorithmDestIp = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmSrcIp (line 3117) | VMwareDvsLacpLoadBalanceAlgorithmSrcIp = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmSrcDestIp (line 3118) | VMwareDvsLacpLoadBalanceAlgorithmSrcDestIp = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmVlan (line 3119) | VMwareDvsLacpLoadBalanceAlgorithmVlan = VMwareDvsLacp...
constant VMwareDvsLacpLoadBalanceAlgorithmSrcPortId (line 3120) | VMwareDvsLacpLoadBalanceAlgorithmSrcPortId = VMwareDvsLacp...
function init (line 3123) | func init() {
type VMwareDvsMulticastFilteringMode (line 3127) | type VMwareDvsMulticastFilteringMode
constant VMwareDvsMulticastFilteringModeLegacyFiltering (line 3130) | VMwareDvsMulticastFilteringModeLegacyFiltering = VMwareDvsMulticastFilte...
constant VMwareDvsMulticastFilteringModeSnooping (line 3131) | VMwareDvsMulticastFilteringModeSnooping = VMwareDvsMulticastFilte...
function init (line 3134) | func init() {
type VMwareUplinkLacpMode (line 3138) | type VMwareUplinkLacpMode
constant VMwareUplinkLacpModeActive (line 3141) | VMwareUplinkLacpModeActive = VMwareUplinkLacpMode("active")
constant VMwareUplinkLacpModePassive (line 3142) | VMwareUplinkLacpModePassive = VMwareUplinkLacpMode("passive")
function init (line 3145) | func init() {
type VStorageObjectConsumptionType (line 3149) | type VStorageObjectConsumptionType
constant VStorageObjectConsumptionTypeDisk (line 3152) | VStorageObjectConsumptionTypeDisk = VStorageObjectConsumptionType("disk")
function init (line 3155) | func init() {
type ValidateMigrationTestType (line 3159) | type ValidateMigrationTestType
constant ValidateMigrationTestTypeSourceTests (line 3162) | ValidateMigrationTestTypeSourceTests = ValidateMigrationTestT...
constant ValidateMigrationTestTypeCompatibilityTests (line 3163) | ValidateMigrationTestTypeCompatibilityTests = ValidateMigrationTestT...
constant ValidateMigrationTestTypeDiskAccessibilityTests (line 3164) | ValidateMigrationTestTypeDiskAccessibilityTests = ValidateMigrationTestT...
constant ValidateMigrationTestTypeResourceTests (line 3165) | ValidateMigrationTestTypeResourceTests = ValidateMigrationTestT...
function init (line 3168) | func init() {
type VchaClusterMode (line 3172) | type VchaClusterMode
constant VchaClusterModeEnabled (line 3175) | VchaClusterModeEnabled = VchaClusterMode("enabled")
constant VchaClusterModeDisabled (line 3176) | VchaClusterModeDisabled = VchaClusterMode("disabled")
constant VchaClusterModeMaintenance (line 3177) | VchaClusterModeMaintenance = VchaClusterMode("maintenance")
function init (line 3180) | func init() {
type VchaClusterState (line 3184) | type VchaClusterState
constant VchaClusterStateHealthy (line 3187) | VchaClusterStateHealthy = VchaClusterState("healthy")
constant VchaClusterStateDegraded (line 3188) | VchaClusterStateDegraded = VchaClusterState("degraded")
constant VchaClusterStateIsolated (line 3189) | VchaClusterStateIsolated = VchaClusterState("isolated")
function init (line 3192) | func init() {
type VchaNodeRole (line 3196) | type VchaNodeRole
constant VchaNodeRoleActive (line 3199) | VchaNodeRoleActive = VchaNodeRole("active")
constant VchaNodeRolePassive (line 3200) | VchaNodeRolePassive = VchaNodeRole("passive")
constant VchaNodeRoleWitness (line 3201) | VchaNodeRoleWitness = VchaNodeRole("witness")
function init (line 3204) | func init() {
type VchaNodeState (line 3208) | type VchaNodeState
constant VchaNodeStateUp (line 3211) | VchaNodeStateUp = VchaNodeState("up")
constant VchaNodeStateDown (line 3212) | VchaNodeStateDown = VchaNodeState("down")
function init (line 3215) | func init() {
type VchaState (line 3219) | type VchaState
constant VchaStateConfigured (line 3222) | VchaStateConfigured = VchaState("configured")
constant VchaStateNotConfigured (line 3223) | VchaStateNotConfigured = VchaState("notConfigured")
constant VchaStateInvalid (line 3224) | VchaStateInvalid = VchaState("invalid")
constant VchaStatePrepared (line 3225) | VchaStatePrepared = VchaState("prepared")
function init (line 3228) | func init() {
type VirtualAppVAppState (line 3232) | type VirtualAppVAppState
constant VirtualAppVAppStateStarted (line 3235) | VirtualAppVAppStateStarted = VirtualAppVAppState("started")
constant VirtualAppVAppStateStopped (line 3236) | VirtualAppVAppStateStopped = VirtualAppVAppState("stopped")
constant VirtualAppVAppStateStarting (line 3237) | VirtualAppVAppStateStarting = VirtualAppVAppState("starting")
constant VirtualAppVAppStateStopping (line 3238) | VirtualAppVAppStateStopping = VirtualAppVAppState("stopping")
function init (line 3241) | func init() {
type VirtualDeviceConfigSpecFileOperation (line 3245) | type VirtualDeviceConfigSpecFileOperation
constant VirtualDeviceConfigSpecFileOperationCreate (line 3248) | VirtualDeviceConfigSpecFileOperationCreate = VirtualDeviceConfigSpecFil...
constant VirtualDeviceConfigSpecFileOperationDestroy (line 3249) | VirtualDeviceConfigSpecFileOperationDestroy = VirtualDeviceConfigSpecFil...
constant VirtualDeviceConfigSpecFileOperationReplace (line 3250) | VirtualDeviceConfigSpecFileOperationReplace = VirtualDeviceConfigSpecFil...
function init (line 3253) | func init() {
type VirtualDeviceConfigSpecOperation (line 3257) | type VirtualDeviceConfigSpecOperation
constant VirtualDeviceConfigSpecOperationAdd (line 3260) | VirtualDeviceConfigSpecOperationAdd = VirtualDeviceConfigSpecOperatio...
constant VirtualDeviceConfigSpecOperationRemove (line 3261) | VirtualDeviceConfigSpecOperationRemove = VirtualDeviceConfigSpecOperatio...
constant VirtualDeviceConfigSpecOperationEdit (line 3262) | VirtualDeviceConfigSpecOperationEdit = VirtualDeviceConfigSpecOperatio...
function init (line 3265) | func init() {
type VirtualDeviceConnectInfoStatus (line 3269) | type VirtualDeviceConnectInfoStatus
constant VirtualDeviceConnectInfoStatusOk (line 3272) | VirtualDeviceConnectInfoStatusOk = VirtualDeviceConnectI...
constant VirtualDeviceConnectInfoStatusRecoverableError (line 3273) | VirtualDeviceConnectInfoStatusRecoverableError = VirtualDeviceConnectI...
constant VirtualDeviceConnectInfoStatusUnrecoverableError (line 3274) | VirtualDeviceConnectInfoStatusUnrecoverableError = VirtualDeviceConnectI...
constant VirtualDeviceConnectInfoStatusUntried (line 3275) | VirtualDeviceConnectInfoStatusUntried = VirtualDeviceConnectI...
function init (line 3278) | func init() {
type VirtualDeviceFileExtension (line 3282) | type VirtualDeviceFileExtension
constant VirtualDeviceFileExtensionIso (line 3285) | VirtualDeviceFileExtensionIso = VirtualDeviceFileExtension("iso")
constant VirtualDeviceFileExtensionFlp (line 3286) | VirtualDeviceFileExtensionFlp = VirtualDeviceFileExtension("flp")
constant VirtualDeviceFileExtensionVmdk (line 3287) | VirtualDeviceFileExtensionVmdk = VirtualDeviceFileExtension("vmdk")
constant VirtualDeviceFileExtensionDsk (line 3288) | VirtualDeviceFileExtensionDsk = VirtualDeviceFileExtension("dsk")
constant VirtualDeviceFileExtensionRdm (line 3289) | VirtualDeviceFileExtensionRdm = VirtualDeviceFileExtension("rdm")
function init (line 3292) | func init() {
type VirtualDeviceURIBackingOptionDirection (line 3296) | type VirtualDeviceURIBackingOptionDirection
constant VirtualDeviceURIBackingOptionDirectionServer (line 3299) | VirtualDeviceURIBackingOptionDirectionServer = VirtualDeviceURIBackingOp...
constant VirtualDeviceURIBackingOptionDirectionClient (line 3300) | VirtualDeviceURIBackingOptionDirectionClient = VirtualDeviceURIBackingOp...
function init (line 3303) | func init() {
type VirtualDiskAdapterType (line 3307) | type VirtualDiskAdapterType
constant VirtualDiskAdapterTypeIde (line 3310) | VirtualDiskAdapterTypeIde = VirtualDiskAdapterType("ide")
constant VirtualDiskAdapterTypeBusLogic (line 3311) | VirtualDiskAdapterTypeBusLogic = VirtualDiskAdapterType("busLogic")
constant VirtualDiskAdapterTypeLsiLogic (line 3312) | VirtualDiskAdapterTypeLsiLogic = VirtualDiskAdapterType("lsiLogic")
function init (line 3315) | func init() {
type VirtualDiskCompatibilityMode (line 3319) | type VirtualDiskCompatibilityMode
constant VirtualDiskCompatibilityModeVirtualMode (line 3322) | VirtualDiskCompatibilityModeVirtualMode = VirtualDiskCompatibilityMode(...
constant VirtualDiskCompatibilityModePhysicalMode (line 3323) | VirtualDiskCompatibilityModePhysicalMode = VirtualDiskCompatibilityMode(...
function init (line 3326) | func init() {
type VirtualDiskDeltaDiskFormat (line 3330) | type VirtualDiskDeltaDiskFormat
constant VirtualDiskDeltaDiskFormatRedoLogFormat (line 3333) | VirtualDiskDeltaDiskFormatRedoLogFormat = VirtualDiskDeltaDiskFormat("r...
constant VirtualDiskDeltaDiskFormatNativeFormat (line 3334) | VirtualDiskDeltaDiskFormatNativeFormat = VirtualDiskDeltaDiskFormat("n...
constant VirtualDiskDeltaDiskFormatSeSparseFormat (line 3335) | VirtualDiskDeltaDiskFormatSeSparseFormat = VirtualDiskDeltaDiskFormat("s...
function init (line 3338) | func init() {
type VirtualDiskDeltaDiskFormatVariant (line 3342) | type VirtualDiskDeltaDiskFormatVariant
constant VirtualDiskDeltaDiskFormatVariantVmfsSparseVariant (line 3345) | VirtualDiskDeltaDiskFormatVariantVmfsSparseVariant = VirtualDiskDeltaDis...
constant VirtualDiskDeltaDiskFormatVariantVsanSparseVariant (line 3346) | VirtualDiskDeltaDiskFormatVariantVsanSparseVariant = VirtualDiskDeltaDis...
function init (line 3349) | func init() {
type VirtualDiskMode (line 3353) | type VirtualDiskMode
constant VirtualDiskModePersistent (line 3356) | VirtualDiskModePersistent = VirtualDiskMode("persistent")
constant VirtualDiskModeNonpersistent (line 3357) | VirtualDiskModeNonpersistent = VirtualDiskMode("nonpersistent")
constant VirtualDiskModeUndoable (line 3358) | VirtualDiskModeUndoable = VirtualDiskMode("undoable")
constant VirtualDiskModeIndependent_persistent (line 3359) | VirtualDiskModeIndependent_persistent = VirtualDiskMode("independent_...
constant VirtualDiskModeIndependent_nonpersistent (line 3360) | VirtualDiskModeIndependent_nonpersistent = VirtualDiskMode("independent_...
constant VirtualDiskModeAppend (line 3361) | VirtualDiskModeAppend = VirtualDiskMode("append")
function init (line 3364) | func init() {
type VirtualDiskSharing (line 3368) | type VirtualDiskSharing
constant VirtualDiskSharingSharingNone (line 3371) | VirtualDiskSharingSharingNone = VirtualDiskSharing("sharingNone")
constant VirtualDiskSharingSharingMultiWriter (line 3372) | VirtualDiskSharingSharingMultiWriter = VirtualDiskSharing("sharingMultiW...
function init (line 3375) | func init() {
type VirtualDiskType (line 3379) | type VirtualDiskType
constant VirtualDiskTypePreallocated (line 3382) | VirtualDiskTypePreallocated = VirtualDiskType("preallocated")
constant VirtualDiskTypeThin (line 3383) | VirtualDiskTypeThin = VirtualDiskType("thin")
constant VirtualDiskTypeSeSparse (line 3384) | VirtualDiskTypeSeSparse = VirtualDiskType("seSparse")
constant VirtualDiskTypeRdm (line 3385) | VirtualDiskTypeRdm = VirtualDiskType("rdm")
constant VirtualDiskTypeRdmp (line 3386) | VirtualDiskTypeRdmp = VirtualDiskType("rdmp")
constant VirtualDiskTypeRaw (line 3387) | VirtualDiskTypeRaw = VirtualDiskType("raw")
constant VirtualDiskTypeDelta (line 3388) | VirtualDiskTypeDelta = VirtualDiskType("delta")
constant VirtualDiskTypeSparse2Gb (line 3389) | VirtualDiskTypeSparse2Gb = VirtualDiskType("sparse2Gb")
constant VirtualDiskTypeThick2Gb (line 3390) | VirtualDiskTypeThick2Gb = VirtualDiskType("thick2Gb")
constant VirtualDiskTypeEagerZeroedThick (line 3391) | VirtualDiskTypeEagerZeroedThick = VirtualDiskType("eagerZeroedThick")
constant VirtualDiskTypeSparseMonolithic (line 3392) | VirtualDiskTypeSparseMonolithic = VirtualDiskType("sparseMonolithic")
constant VirtualDiskTypeFlatMonolithic (line 3393) | VirtualDiskTypeFlatMonolithic = VirtualDiskType("flatMonolithic")
constant VirtualDiskTypeThick (line 3394) | VirtualDiskTypeThick = VirtualDiskType("thick")
function init (line 3397) | func init() {
type VirtualDiskVFlashCacheConfigInfoCacheConsistencyType (line 3401) | type VirtualDiskVFlashCacheConfigInfoCacheConsistencyType
constant VirtualDiskVFlashCacheConfigInfoCacheConsistencyTypeStrong (line 3404) | VirtualDiskVFlashCacheConfigInfoCacheConsistencyTypeStrong = VirtualDisk...
constant VirtualDiskVFlashCacheConfigInfoCacheConsistencyTypeWeak (line 3405) | VirtualDiskVFlashCacheConfigInfoCacheConsistencyTypeWeak = VirtualDisk...
function init (line 3408) | func init() {
type VirtualDiskVFlashCacheConfigInfoCacheMode (line 3412) | type VirtualDiskVFlashCacheConfigInfoCacheMode
constant VirtualDiskVFlashCacheConfigInfoCacheModeWrite_thru (line 3415) | VirtualDiskVFlashCacheConfigInfoCacheModeWrite_thru = VirtualDiskVFlashC...
constant VirtualDiskVFlashCacheConfigInfoCacheModeWrite_back (line 3416) | VirtualDiskVFlashCacheConfigInfoCacheModeWrite_back = VirtualDiskVFlashC...
function init (line 3419) | func init() {
type VirtualEthernetCardLegacyNetworkDeviceName (line 3423) | type VirtualEthernetCardLegacyNetworkDeviceName
constant VirtualEthernetCardLegacyNetworkDeviceNameBridged (line 3426) | VirtualEthernetCardLegacyNetworkDeviceNameBridged = VirtualEthernetCard...
constant VirtualEthernetCardLegacyNetworkDeviceNameNat (line 3427) | VirtualEthernetCardLegacyNetworkDeviceNameNat = VirtualEthernetCard...
constant VirtualEthernetCardLegacyNetworkDeviceNameHostonly (line 3428) | VirtualEthernetCardLegacyNetworkDeviceNameHostonly = VirtualEthernetCard...
function init (line 3431) | func init() {
type VirtualEthernetCardMacType (line 3435) | type VirtualEthernetCardMacType
constant VirtualEthernetCardMacTypeManual (line 3438) | VirtualEthernetCardMacTypeManual = VirtualEthernetCardMacType("manual")
constant VirtualEthernetCardMacTypeGenerated (line 3439) | VirtualEthernetCardMacTypeGenerated = VirtualEthernetCardMacType("genera...
constant VirtualEthernetCardMacTypeAssigned (line 3440) | VirtualEthernetCardMacTypeAssigned = VirtualEthernetCardMacType("assign...
function init (line 3443) | func init() {
type VirtualMachineAppHeartbeatStatusType (line 3447) | type VirtualMachineAppHeartbeatStatusType
constant VirtualMachineAppHeartbeatStatusTypeAppStatusGray (line 3450) | VirtualMachineAppHeartbeatStatusTypeAppStatusGray = VirtualMachineAppHe...
constant VirtualMachineAppHeartbeatStatusTypeAppStatusGreen (line 3451) | VirtualMachineAppHeartbeatStatusTypeAppStatusGreen = VirtualMachineAppHe...
constant VirtualMachineAppHeartbeatStatusTypeAppStatusRed (line 3452) | VirtualMachineAppHeartbeatStatusTypeAppStatusRed = VirtualMachineAppHe...
function init (line 3455) | func init() {
type VirtualMachineBootOptionsNetworkBootProtocolType (line 3459) | type VirtualMachineBootOptionsNetworkBootProtocolType
constant VirtualMachineBootOptionsNetworkBootProtocolTypeIpv4 (line 3462) | VirtualMachineBootOptionsNetworkBootProtocolTypeIpv4 = VirtualMachineBoo...
constant VirtualMachineBootOptionsNetworkBootProtocolTypeIpv6 (line 3463) | VirtualMachineBootOptionsNetworkBootProtocolTypeIpv6 = VirtualMachineBoo...
function init (line 3466) | func init() {
type VirtualMachineConfigInfoNpivWwnType (line 3470) | type VirtualMachineConfigInfoNpivWwnType
constant VirtualMachineConfigInfoNpivWwnTypeVc (line 3473) | VirtualMachineConfigInfoNpivWwnTypeVc = VirtualMachineConfigInfoNp...
constant VirtualMachineConfigInfoNpivWwnTypeHost (line 3474) | VirtualMachineConfigInfoNpivWwnTypeHost = VirtualMachineConfigInfoNp...
constant VirtualMachineConfigInfoNpivWwnTypeExternal (line 3475) | VirtualMachineConfigInfoNpivWwnTypeExternal = VirtualMachineConfigInfoNp...
function init (line 3478) | func init() {
type VirtualMachineConfigInfoSwapPlacementType (line 3482) | type VirtualMachineConfigInfoSwapPlacementType
constant VirtualMachineConfigInfoSwapPlacementTypeInherit (line 3485) | VirtualMachineConfigInfoSwapPlacementTypeInherit = VirtualMachineCon...
constant VirtualMachineConfigInfoSwapPlacementTypeVmDirectory (line 3486) | VirtualMachineConfigInfoSwapPlacementTypeVmDirectory = VirtualMachineCon...
constant VirtualMachineConfigInfoSwapPlacementTypeHostLocal (line 3487) | VirtualMachineConfigInfoSwapPlacementTypeHostLocal = VirtualMachineCon...
function init (line 3490) | func init() {
type VirtualMachineConfigSpecEncryptedVMotionModes (line 3494) | type VirtualMachineConfigSpecEncryptedVMotionModes
constant VirtualMachineConfigSpecEncryptedVMotionModesDisabled (line 3497) | VirtualMachineConfigSpecEncryptedVMotionModesDisabled = VirtualMach...
constant VirtualMachineConfigSpecEncryptedVMotionModesOpportunistic (line 3498) | VirtualMachineConfigSpecEncryptedVMotionModesOpportunistic = VirtualMach...
constant VirtualMachineConfigSpecEncryptedVMotionModesRequired (line 3499) | VirtualMachineConfigSpecEncryptedVMotionModesRequired = VirtualMach...
function init (line 3502) | func init() {
type VirtualMachineConfigSpecNpivWwnOp (line 3506) | type VirtualMachineConfigSpecNpivWwnOp
constant VirtualMachineConfigSpecNpivWwnOpGenerate (line 3509) | VirtualMachineConfigSpecNpivWwnOpGenerate = VirtualMachineConfigSpecNpiv...
constant VirtualMachineConfigSpecNpivWwnOpSet (line 3510) | VirtualMachineConfigSpecNpivWwnOpSet = VirtualMachineConfigSpecNpiv...
constant VirtualMachineConfigSpecNpivWwnOpRemove (line 3511) | VirtualMachineConfigSpecNpivWwnOpRemove = VirtualMachineConfigSpecNpiv...
constant VirtualMachineConfigSpecNpivWwnOpExtend (line 3512) | VirtualMachineConfigSpecNpivWwnOpExtend = VirtualMachineConfigSpecNpiv...
function init (line 3515) | func init() {
type VirtualMachineConnectionState (line 3519) | type VirtualMachineConnectionState
constant VirtualMachineConnectionStateConnected (line 3522) | VirtualMachineConnectionStateConnected = VirtualMachineConnectionStat...
constant VirtualMachineConnectionStateDisconnected (line 3523) | VirtualMachineConnectionStateDisconnected = VirtualMachineConnectionStat...
constant VirtualMachineConnectionStateOrphaned (line 3524) | VirtualMachineConnectionStateOrphaned = VirtualMachineConnectionStat...
constant VirtualMachineConnectionStateInaccessible (line 3525) | VirtualMachineConnectionStateInaccessible = VirtualMachineConnectionStat...
constant VirtualMachineConnectionStateInvalid (line 3526) | VirtualMachineConnectionStateInvalid = VirtualMachineConnectionStat...
function init (line 3529) | func init() {
type VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonOther (line 3533) | type VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDir...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonOtherVmNptIncompatibleHost (line 3536) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonOtherVmNptIncompatibleNetwork (line 3537) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
function init (line 3540) | func init() {
type VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVm (line 3544) | type VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDir...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptIncompatibleGuest (line 3547) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptIncompatibleGuestDriver (line 3548) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptIncompatibleAdapterType (line 3549) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptDisabledOrDisconnectedAdapter (line 3550) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptIncompatibleAdapterFeatures (line 3551) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptIncompatibleBackingType (line 3552) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptInsufficientMemoryReservation (line 3553) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptFaultToleranceOrRecordReplayConfigured (line 3554) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptConflictingIOChainConfigured (line 3555) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptMonitorBlocks (line 3556) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptConflictingOperationInProgress (line 3557) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptRuntimeError (line 3558) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptOutOfIntrVector (line 3559) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
constant VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPathGen2InactiveReasonVmVmNptVMCIActive (line 3560) | VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeStateVmDirectPa...
function init (line 3563) | func init() {
type VirtualMachineFaultToleranceState (line 3567) | type VirtualMachineFaultToleranceState
constant VirtualMachineFaultToleranceStateNotConfigured (line 3570) | VirtualMachineFaultToleranceStateNotConfigured = VirtualMachineFaultTole...
constant VirtualMachineFaultToleranceStateDisabled (line 3571) | VirtualMachineFaultToleranceStateDisabled = VirtualMachineFaultTole...
constant VirtualMachineFaultToleranceStateEnabled (line 3572) | VirtualMachineFaultToleranceStateEnabled = VirtualMachineFaultTole...
constant VirtualMachineFaultToleranceStateNeedSecondary (line 3573) | VirtualMachineFaultToleranceStateNeedSecondary = VirtualMachineFaultTole...
constant VirtualMachineFaultToleranceStateStarting (line 3574) | VirtualMachineFaultToleranceStateStarting = VirtualMachineFaultTole...
constant VirtualMachineFaultToleranceStateRunning (line 3575) | VirtualMachineFaultToleranceStateRunning = VirtualMachineFaultTole...
function init (line 3578) | func init() {
type VirtualMachineFaultToleranceType (line 3582) | type VirtualMachineFaultToleranceType
constant VirtualMachineFaultToleranceTypeUnset (line 3585) | VirtualMachineFaultToleranceTypeUnset = VirtualMachineFaultToler...
constant VirtualMachineFaultToleranceTypeRecordReplay (line 3586) | VirtualMachineFaultToleranceTypeRecordReplay = VirtualMachineFaultToler...
constant VirtualMachineFaultToleranceTypeCheckpointing (line 3587) | VirtualMachineFaultToleranceTypeCheckpointing = VirtualMachineFaultToler...
function init (line 3590) | func init() {
type VirtualMachineFileLayoutExFileType (line 3594) | type VirtualMachineFileLayoutExFileType
constant VirtualMachineFileLayoutExFileTypeConfig (line 3597) | VirtualMachineFileLayoutExFileTypeConfig = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeExtendedConfig (line 3598) | VirtualMachineFileLayoutExFileTypeExtendedConfig = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeDiskDescriptor (line 3599) | VirtualMachineFileLayoutExFileTypeDiskDescriptor = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeDiskExtent (line 3600) | VirtualMachineFileLayoutExFileTypeDiskExtent = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeDigestDescriptor (line 3601) | VirtualMachineFileLayoutExFileTypeDigestDescriptor = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeDigestExtent (line 3602) | VirtualMachineFileLayoutExFileTypeDigestExtent = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeDiskReplicationState (line 3603) | VirtualMachineFileLayoutExFileTypeDiskReplicationState = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeLog (line 3604) | VirtualMachineFileLayoutExFileTypeLog = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeStat (line 3605) | VirtualMachineFileLayoutExFileTypeStat = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeNamespaceData (line 3606) | VirtualMachineFileLayoutExFileTypeNamespaceData = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeNvram (line 3607) | VirtualMachineFileLayoutExFileTypeNvram = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeSnapshotData (line 3608) | VirtualMachineFileLayoutExFileTypeSnapshotData = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeSnapshotMemory (line 3609) | VirtualMachineFileLayoutExFileTypeSnapshotMemory = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeSnapshotList (line 3610) | VirtualMachineFileLayoutExFileTypeSnapshotList = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeSnapshotManifestList (line 3611) | VirtualMachineFileLayoutExFileTypeSnapshotManifestList = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeSuspend (line 3612) | VirtualMachineFileLayoutExFileTypeSuspend = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeSuspendMemory (line 3613) | VirtualMachineFileLayoutExFileTypeSuspendMemory = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeSwap (line 3614) | VirtualMachineFileLayoutExFileTypeSwap = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeUwswap (line 3615) | VirtualMachineFileLayoutExFileTypeUwswap = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeCore (line 3616) | VirtualMachineFileLayoutExFileTypeCore = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeScreenshot (line 3617) | VirtualMachineFileLayoutExFileTypeScreenshot = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeFtMetadata (line 3618) | VirtualMachineFileLayoutExFileTypeFtMetadata = VirtualMachineF...
constant VirtualMachineFileLayoutExFileTypeGuestCustomization (line 3619) | VirtualMachineFileLayoutExFileTypeGuestCustomization = VirtualMachineF...
function init (line 3622) | func init() {
type VirtualMachineFlagInfoMonitorType (line 3626) | type VirtualMachineFlagInfoMonitorType
constant VirtualMachineFlagInfoMonitorTypeRelease (line 3629) | VirtualMachineFlagInfoMonitorTypeRelease = VirtualMachineFlagInfoMonitor...
constant VirtualMachineFlagInfoMonitorTypeDebug (line 3630) | VirtualMachineFlagInfoMonitorTypeDebug = VirtualMachineFlagInfoMonitor...
constant VirtualMachineFlagInfoMonitorTypeStats (line 3631) | VirtualMachineFlagInfoMonitorTypeStats = VirtualMachineFlagInfoMonitor...
function init (line 3634) | func init() {
type VirtualMachineFlagInfoVirtualExecUsage (line 3638) | type VirtualMachineFlagInfoVirtualExecUsage
constant VirtualMachineFlagInfoVirtualExecUsageHvAuto (line 3641) | VirtualMachineFlagInfoVirtualExecUsageHvAuto = VirtualMachineFlagInfoVir...
constant VirtualMachineFlagInfoVirtualExecUsageHvOn (line 3642) | VirtualMachineFlagInfoVirtualExecUsageHvOn = VirtualMachineFlagInfoVir...
constant VirtualMachineFlagInfoVirtualExecUsageHvOff (line 3643) | VirtualMachineFlagInfoVirtualExecUsageHvOff = VirtualMachineFlagInfoVir...
function init (line 3646) | func init() {
type VirtualMachineFlagInfoVirtualMmuUsage (line 3650) | type VirtualMachineFlagInfoVirtualMmuUsage
constant VirtualMachineFlagInfoVirtualMmuUsageAutomatic (line 3653) | VirtualMachineFlagInfoVirtualMmuUsageAutomatic = VirtualMachineFlagInfoV...
constant VirtualMachineFlagInfoVirtualMmuUsageOn (line 3654) | VirtualMachineFlagInfoVirtualMmuUsageOn = VirtualMachineFlagInfoV...
constant VirtualMachineFlagInfoVirtualMmuUsageOff (line 3655) | VirtualMachineFlagInfoVirtualMmuUsageOff = VirtualMachineFlagInfoV...
function init (line 3658) | func init() {
type VirtualMachineForkConfigInfoChildType (line 3662) | type VirtualMachineForkConfigInfoChildType
constant VirtualMachineForkConfigInfoChildTypeNone (line 3665) | VirtualMachineForkConfigInfoChildTypeNone = VirtualMachineForkC...
constant VirtualMachineForkConfigInfoChildTypePersistent (line 3666) | VirtualMachineForkConfigInfoChildTypePersistent = VirtualMachineForkC...
constant VirtualMachineForkConfigInfoChildTypeNonpersistent (line 3667) | VirtualMachineForkConfigInfoChildTypeNonpersistent = VirtualMachineForkC...
function init (line 3670) | func init() {
type VirtualMachineGuestOsFamily (line 3674) | type VirtualMachineGuestOsFamily
constant VirtualMachineGuestOsFamilyWindowsGuest (line 3677) | VirtualMachineGuestOsFamilyWindowsGuest = VirtualMachineGuestOsFami...
constant VirtualMachineGuestOsFamilyLinuxGuest (line 3678) | VirtualMachineGuestOsFamilyLinuxGuest = VirtualMachineGuestOsFami...
constant VirtualMachineGuestOsFamilyNetwareGuest (line 3679) | VirtualMachineGuestOsFamilyNetwareGuest = VirtualMachineGuestOsFami...
constant VirtualMachineGuestOsFamilySolarisGuest (line 3680) | VirtualMachineGuestOsFamilySolarisGuest = VirtualMachineGuestOsFami...
constant VirtualMachineGuestOsFamilyDarwinGuestFamily (line 3681) | VirtualMachineGuestOsFamilyDarwinGuestFamily = VirtualMachineGuestOsFami...
constant VirtualMachineGuestOsFamilyOtherGuestFamily (line 3682) | VirtualMachineGuestOsFamilyOtherGuestFamily = VirtualMachineGuestOsFami...
function init (line 3685) | func init() {
type VirtualMachineGuestOsIdentifier (line 3689) | type VirtualMachineGuestOsIdentifier
constant VirtualMachineGuestOsIdentifierDosGuest (line 3692) | VirtualMachineGuestOsIdentifierDosGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWin31Guest (line 3693) | VirtualMachineGuestOsIdentifierWin31Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWin95Guest (line 3694) | VirtualMachineGuestOsIdentifierWin95Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWin98Guest (line 3695) | VirtualMachineGuestOsIdentifierWin98Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinMeGuest (line 3696) | VirtualMachineGuestOsIdentifierWinMeGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinNTGuest (line 3697) | VirtualMachineGuestOsIdentifierWinNTGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWin2000ProGuest (line 3698) | VirtualMachineGuestOsIdentifierWin2000ProGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWin2000ServGuest (line 3699) | VirtualMachineGuestOsIdentifierWin2000ServGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWin2000AdvServGuest (line 3700) | VirtualMachineGuestOsIdentifierWin2000AdvServGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinXPHomeGuest (line 3701) | VirtualMachineGuestOsIdentifierWinXPHomeGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinXPProGuest (line 3702) | VirtualMachineGuestOsIdentifierWinXPProGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinXPPro64Guest (line 3703) | VirtualMachineGuestOsIdentifierWinXPPro64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinNetWebGuest (line 3704) | VirtualMachineGuestOsIdentifierWinNetWebGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinNetStandardGuest (line 3705) | VirtualMachineGuestOsIdentifierWinNetStandardGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinNetEnterpriseGuest (line 3706) | VirtualMachineGuestOsIdentifierWinNetEnterpriseGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinNetDatacenterGuest (line 3707) | VirtualMachineGuestOsIdentifierWinNetDatacenterGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinNetBusinessGuest (line 3708) | VirtualMachineGuestOsIdentifierWinNetBusinessGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinNetStandard64Guest (line 3709) | VirtualMachineGuestOsIdentifierWinNetStandard64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinNetEnterprise64Guest (line 3710) | VirtualMachineGuestOsIdentifierWinNetEnterprise64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinLonghornGuest (line 3711) | VirtualMachineGuestOsIdentifierWinLonghornGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinLonghorn64Guest (line 3712) | VirtualMachineGuestOsIdentifierWinLonghorn64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinNetDatacenter64Guest (line 3713) | VirtualMachineGuestOsIdentifierWinNetDatacenter64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinVistaGuest (line 3714) | VirtualMachineGuestOsIdentifierWinVistaGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWinVista64Guest (line 3715) | VirtualMachineGuestOsIdentifierWinVista64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWindows7Guest (line 3716) | VirtualMachineGuestOsIdentifierWindows7Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWindows7_64Guest (line 3717) | VirtualMachineGuestOsIdentifierWindows7_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWindows7Server64Guest (line 3718) | VirtualMachineGuestOsIdentifierWindows7Server64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWindows8Guest (line 3719) | VirtualMachineGuestOsIdentifierWindows8Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWindows8_64Guest (line 3720) | VirtualMachineGuestOsIdentifierWindows8_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWindows8Server64Guest (line 3721) | VirtualMachineGuestOsIdentifierWindows8Server64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWindows9Guest (line 3722) | VirtualMachineGuestOsIdentifierWindows9Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWindows9_64Guest (line 3723) | VirtualMachineGuestOsIdentifierWindows9_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWindows9Server64Guest (line 3724) | VirtualMachineGuestOsIdentifierWindows9Server64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierWindowsHyperVGuest (line 3725) | VirtualMachineGuestOsIdentifierWindowsHyperVGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierFreebsdGuest (line 3726) | VirtualMachineGuestOsIdentifierFreebsdGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierFreebsd64Guest (line 3727) | VirtualMachineGuestOsIdentifierFreebsd64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierRedhatGuest (line 3728) | VirtualMachineGuestOsIdentifierRedhatGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierRhel2Guest (line 3729) | VirtualMachineGuestOsIdentifierRhel2Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierRhel3Guest (line 3730) | VirtualMachineGuestOsIdentifierRhel3Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierRhel3_64Guest (line 3731) | VirtualMachineGuestOsIdentifierRhel3_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierRhel4Guest (line 3732) | VirtualMachineGuestOsIdentifierRhel4Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierRhel4_64Guest (line 3733) | VirtualMachineGuestOsIdentifierRhel4_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierRhel5Guest (line 3734) | VirtualMachineGuestOsIdentifierRhel5Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierRhel5_64Guest (line 3735) | VirtualMachineGuestOsIdentifierRhel5_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierRhel6Guest (line 3736) | VirtualMachineGuestOsIdentifierRhel6Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierRhel6_64Guest (line 3737) | VirtualMachineGuestOsIdentifierRhel6_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierRhel7Guest (line 3738) | VirtualMachineGuestOsIdentifierRhel7Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierRhel7_64Guest (line 3739) | VirtualMachineGuestOsIdentifierRhel7_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierCentosGuest (line 3740) | VirtualMachineGuestOsIdentifierCentosGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierCentos64Guest (line 3741) | VirtualMachineGuestOsIdentifierCentos64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierCentos6Guest (line 3742) | VirtualMachineGuestOsIdentifierCentos6Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierCentos6_64Guest (line 3743) | VirtualMachineGuestOsIdentifierCentos6_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierCentos7Guest (line 3744) | VirtualMachineGuestOsIdentifierCentos7Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierCentos7_64Guest (line 3745) | VirtualMachineGuestOsIdentifierCentos7_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOracleLinuxGuest (line 3746) | VirtualMachineGuestOsIdentifierOracleLinuxGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOracleLinux64Guest (line 3747) | VirtualMachineGuestOsIdentifierOracleLinux64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOracleLinux6Guest (line 3748) | VirtualMachineGuestOsIdentifierOracleLinux6Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOracleLinux6_64Guest (line 3749) | VirtualMachineGuestOsIdentifierOracleLinux6_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOracleLinux7Guest (line 3750) | VirtualMachineGuestOsIdentifierOracleLinux7Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOracleLinux7_64Guest (line 3751) | VirtualMachineGuestOsIdentifierOracleLinux7_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSuseGuest (line 3752) | VirtualMachineGuestOsIdentifierSuseGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSuse64Guest (line 3753) | VirtualMachineGuestOsIdentifierSuse64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSlesGuest (line 3754) | VirtualMachineGuestOsIdentifierSlesGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSles64Guest (line 3755) | VirtualMachineGuestOsIdentifierSles64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSles10Guest (line 3756) | VirtualMachineGuestOsIdentifierSles10Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSles10_64Guest (line 3757) | VirtualMachineGuestOsIdentifierSles10_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSles11Guest (line 3758) | VirtualMachineGuestOsIdentifierSles11Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSles11_64Guest (line 3759) | VirtualMachineGuestOsIdentifierSles11_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSles12Guest (line 3760) | VirtualMachineGuestOsIdentifierSles12Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSles12_64Guest (line 3761) | VirtualMachineGuestOsIdentifierSles12_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierNld9Guest (line 3762) | VirtualMachineGuestOsIdentifierNld9Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOesGuest (line 3763) | VirtualMachineGuestOsIdentifierOesGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSjdsGuest (line 3764) | VirtualMachineGuestOsIdentifierSjdsGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierMandrakeGuest (line 3765) | VirtualMachineGuestOsIdentifierMandrakeGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierMandrivaGuest (line 3766) | VirtualMachineGuestOsIdentifierMandrivaGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierMandriva64Guest (line 3767) | VirtualMachineGuestOsIdentifierMandriva64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierTurboLinuxGuest (line 3768) | VirtualMachineGuestOsIdentifierTurboLinuxGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierTurboLinux64Guest (line 3769) | VirtualMachineGuestOsIdentifierTurboLinux64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierUbuntuGuest (line 3770) | VirtualMachineGuestOsIdentifierUbuntuGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierUbuntu64Guest (line 3771) | VirtualMachineGuestOsIdentifierUbuntu64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian4Guest (line 3772) | VirtualMachineGuestOsIdentifierDebian4Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian4_64Guest (line 3773) | VirtualMachineGuestOsIdentifierDebian4_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian5Guest (line 3774) | VirtualMachineGuestOsIdentifierDebian5Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian5_64Guest (line 3775) | VirtualMachineGuestOsIdentifierDebian5_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian6Guest (line 3776) | VirtualMachineGuestOsIdentifierDebian6Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian6_64Guest (line 3777) | VirtualMachineGuestOsIdentifierDebian6_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian7Guest (line 3778) | VirtualMachineGuestOsIdentifierDebian7Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian7_64Guest (line 3779) | VirtualMachineGuestOsIdentifierDebian7_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian8Guest (line 3780) | VirtualMachineGuestOsIdentifierDebian8Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian8_64Guest (line 3781) | VirtualMachineGuestOsIdentifierDebian8_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian9Guest (line 3782) | VirtualMachineGuestOsIdentifierDebian9Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian9_64Guest (line 3783) | VirtualMachineGuestOsIdentifierDebian9_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian10Guest (line 3784) | VirtualMachineGuestOsIdentifierDebian10Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDebian10_64Guest (line 3785) | VirtualMachineGuestOsIdentifierDebian10_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierAsianux3Guest (line 3786) | VirtualMachineGuestOsIdentifierAsianux3Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierAsianux3_64Guest (line 3787) | VirtualMachineGuestOsIdentifierAsianux3_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierAsianux4Guest (line 3788) | VirtualMachineGuestOsIdentifierAsianux4Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierAsianux4_64Guest (line 3789) | VirtualMachineGuestOsIdentifierAsianux4_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierAsianux5_64Guest (line 3790) | VirtualMachineGuestOsIdentifierAsianux5_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierAsianux7_64Guest (line 3791) | VirtualMachineGuestOsIdentifierAsianux7_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOpensuseGuest (line 3792) | VirtualMachineGuestOsIdentifierOpensuseGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOpensuse64Guest (line 3793) | VirtualMachineGuestOsIdentifierOpensuse64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierFedoraGuest (line 3794) | VirtualMachineGuestOsIdentifierFedoraGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierFedora64Guest (line 3795) | VirtualMachineGuestOsIdentifierFedora64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierCoreos64Guest (line 3796) | VirtualMachineGuestOsIdentifierCoreos64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierVmwarePhoton64Guest (line 3797) | VirtualMachineGuestOsIdentifierVmwarePhoton64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOther24xLinuxGuest (line 3798) | VirtualMachineGuestOsIdentifierOther24xLinuxGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOther26xLinuxGuest (line 3799) | VirtualMachineGuestOsIdentifierOther26xLinuxGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOtherLinuxGuest (line 3800) | VirtualMachineGuestOsIdentifierOtherLinuxGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOther3xLinuxGuest (line 3801) | VirtualMachineGuestOsIdentifierOther3xLinuxGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierGenericLinuxGuest (line 3802) | VirtualMachineGuestOsIdentifierGenericLinuxGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOther24xLinux64Guest (line 3803) | VirtualMachineGuestOsIdentifierOther24xLinux64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOther26xLinux64Guest (line 3804) | VirtualMachineGuestOsIdentifierOther26xLinux64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOther3xLinux64Guest (line 3805) | VirtualMachineGuestOsIdentifierOther3xLinux64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOtherLinux64Guest (line 3806) | VirtualMachineGuestOsIdentifierOtherLinux64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSolaris6Guest (line 3807) | VirtualMachineGuestOsIdentifierSolaris6Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSolaris7Guest (line 3808) | VirtualMachineGuestOsIdentifierSolaris7Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSolaris8Guest (line 3809) | VirtualMachineGuestOsIdentifierSolaris8Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSolaris9Guest (line 3810) | VirtualMachineGuestOsIdentifierSolaris9Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSolaris10Guest (line 3811) | VirtualMachineGuestOsIdentifierSolaris10Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSolaris10_64Guest (line 3812) | VirtualMachineGuestOsIdentifierSolaris10_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierSolaris11_64Guest (line 3813) | VirtualMachineGuestOsIdentifierSolaris11_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOs2Guest (line 3814) | VirtualMachineGuestOsIdentifierOs2Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierEComStationGuest (line 3815) | VirtualMachineGuestOsIdentifierEComStationGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierEComStation2Guest (line 3816) | VirtualMachineGuestOsIdentifierEComStation2Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierNetware4Guest (line 3817) | VirtualMachineGuestOsIdentifierNetware4Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierNetware5Guest (line 3818) | VirtualMachineGuestOsIdentifierNetware5Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierNetware6Guest (line 3819) | VirtualMachineGuestOsIdentifierNetware6Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOpenServer5Guest (line 3820) | VirtualMachineGuestOsIdentifierOpenServer5Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOpenServer6Guest (line 3821) | VirtualMachineGuestOsIdentifierOpenServer6Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierUnixWare7Guest (line 3822) | VirtualMachineGuestOsIdentifierUnixWare7Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDarwinGuest (line 3823) | VirtualMachineGuestOsIdentifierDarwinGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDarwin64Guest (line 3824) | VirtualMachineGuestOsIdentifierDarwin64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDarwin10Guest (line 3825) | VirtualMachineGuestOsIdentifierDarwin10Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDarwin10_64Guest (line 3826) | VirtualMachineGuestOsIdentifierDarwin10_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDarwin11Guest (line 3827) | VirtualMachineGuestOsIdentifierDarwin11Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDarwin11_64Guest (line 3828) | VirtualMachineGuestOsIdentifierDarwin11_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDarwin12_64Guest (line 3829) | VirtualMachineGuestOsIdentifierDarwin12_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDarwin13_64Guest (line 3830) | VirtualMachineGuestOsIdentifierDarwin13_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDarwin14_64Guest (line 3831) | VirtualMachineGuestOsIdentifierDarwin14_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDarwin15_64Guest (line 3832) | VirtualMachineGuestOsIdentifierDarwin15_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierDarwin16_64Guest (line 3833) | VirtualMachineGuestOsIdentifierDarwin16_64Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierVmkernelGuest (line 3834) | VirtualMachineGuestOsIdentifierVmkernelGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierVmkernel5Guest (line 3835) | VirtualMachineGuestOsIdentifierVmkernel5Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierVmkernel6Guest (line 3836) | VirtualMachineGuestOsIdentifierVmkernel6Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierVmkernel65Guest (line 3837) | VirtualMachineGuestOsIdentifierVmkernel65Guest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOtherGuest (line 3838) | VirtualMachineGuestOsIdentifierOtherGuest = VirtualMachineG...
constant VirtualMachineGuestOsIdentifierOtherGuest64 (line 3839) | VirtualMachineGuestOsIdentifierOtherGuest64 = VirtualMachineG...
function init (line 3842) | func init() {
type VirtualMachineGuestState (line 3846) | type VirtualMachineGuestState
constant VirtualMachineGuestStateRunning (line 3849) | VirtualMachineGuestStateRunning = VirtualMachineGuestState("running")
constant VirtualMachineGuestStateShuttingDown (line 3850) | VirtualMachineGuestStateShuttingDown = VirtualMachineGuestState("shuttin...
constant VirtualMachineGuestStateResetting (line 3851) | VirtualMachineGuestStateResetting = VirtualMachineGuestState("resetti...
constant VirtualMachineGuestStateStandby (line 3852) | VirtualMachineGuestStateStandby = VirtualMachineGuestState("standby")
constant VirtualMachineGuestStateNotRunning (line 3853) | VirtualMachineGuestStateNotRunning = VirtualMachineGuestState("notRunn...
constant VirtualMachineGuestStateUnknown (line 3854) | VirtualMachineGuestStateUnknown = VirtualMachineGuestState("unknown")
function init (line 3857) | func init() {
type VirtualMachineHtSharing (line 3861) | type VirtualMachineHtSharing
constant VirtualMachineHtSharingAny (line 3864) | VirtualMachineHtSharingAny = VirtualMachineHtSharing("any")
constant VirtualMachineHtSharingNone (line 3865) | VirtualMachineHtSharingNone = VirtualMachineHtSharing("none")
constant VirtualMachineHtSharingInternal (line 3866) | VirtualMachineHtSharingInternal = VirtualMachineHtSharing("internal")
function init (line 3869) | func init() {
type VirtualMachineMemoryAllocationPolicy (line 3873) | type VirtualMachineMemoryAllocationPolicy
constant VirtualMachineMemoryAllocationPolicySwapNone (line 3876) | VirtualMachineMemoryAllocationPolicySwapNone = VirtualMachineMemoryAlloc...
constant VirtualMachineMemoryAllocationPolicySwapSome (line 3877) | VirtualMachineMemoryAllocationPolicySwapSome = VirtualMachineMemoryAlloc...
constant VirtualMachineMemoryAllocationPolicySwapMost (line 3878) | VirtualMachineMemoryAllocationPolicySwapMost = VirtualMachineMemoryAlloc...
function init (line 3881) | func init() {
type VirtualMachineMetadataManagerVmMetadataOp (line 3885) | type VirtualMachineMetadataManagerVmMetadataOp
constant VirtualMachineMetadataManagerVmMetadataOpUpdate (line 3888) | VirtualMachineMetadataManagerVmMetadataOpUpdate = VirtualMachineMetadata...
constant VirtualMachineMetadataManagerVmMetadataOpRemove (line 3889) | VirtualMachineMetadataManagerVmMetadataOpRemove = VirtualMachineMetadata...
function init (line 3892) | func init() {
type VirtualMachineMetadataManagerVmMetadataOwnerOwner (line 3896) | type VirtualMachineMetadataManagerVmMetadataOwnerOwner
constant VirtualMachineMetadataManagerVmMetadataOwnerOwnerComVmwareVsphereHA (line 3899) | VirtualMachineMetadataManagerVmMetadataOwnerOwnerComVmwareVsphereHA = Vi...
function init (line 3902) | func init() {
type VirtualMachineMovePriority (line 3906) | type VirtualMachineMovePriority
constant VirtualMachineMovePriorityLowPriority (line 3909) | VirtualMachineMovePriorityLowPriority = VirtualMachineMovePriority("...
constant VirtualMachineMovePriorityHighPriority (line 3910) | VirtualMachineMovePriorityHighPriority = VirtualMachineMovePriority("...
constant VirtualMachineMovePriorityDefaultPriority (line 3911) | VirtualMachineMovePriorityDefaultPriority = VirtualMachineMovePriority("...
function init (line 3914) | func init() {
type VirtualMachineNeedSecondaryReason (line 3918) | type VirtualMachineNeedSecondaryReason
constant VirtualMachineNeedSecondaryReasonInitializing (line 3921) | VirtualMachineNeedSecondaryReasonInitializing = VirtualMachine...
constant VirtualMachineNeedSecondaryReasonDivergence (line 3922) | VirtualMachineNeedSecondaryReasonDivergence = VirtualMachine...
constant VirtualMachineNeedSecondaryReasonLostConnection (line 3923) | VirtualMachineNeedSecondaryReasonLostConnection = VirtualMachine...
constant VirtualMachineNeedSecondaryReasonPartialHardwareFailure (line 3924) | VirtualMachineNeedSecondaryReasonPartialHardwareFailure = VirtualMachine...
constant VirtualMachineNeedSecondaryReasonUserAction (line 3925) | VirtualMachineNeedSecondaryReasonUserAction = VirtualMachine...
constant VirtualMachineNeedSecondaryReasonCheckpointError (line 3926) | VirtualMachineNeedSecondaryReasonCheckpointError = VirtualMachine...
constant VirtualMachineNeedSecondaryReasonOther (line 3927) | VirtualMachineNeedSecondaryReasonOther = VirtualMachine...
function init (line 3930) | func init() {
type VirtualMachinePowerOffBehavior (line 3934) | type VirtualMachinePowerOffBehavior
constant VirtualMachinePowerOffBehaviorPowerOff (line 3937) | VirtualMachinePowerOffBehaviorPowerOff = VirtualMachinePowerOffBehavior(...
constant VirtualMachinePowerOffBehaviorRevert (line 3938) | VirtualMachinePowerOffBehaviorRevert = VirtualMachinePowerOffBehavior(...
constant VirtualMachinePowerOffBehaviorPrompt (line 3939) | VirtualMachinePowerOffBehaviorPrompt = VirtualMachinePowerOffBehavior(...
constant VirtualMachinePowerOffBehaviorTake (line 3940) | VirtualMachinePowerOffBehaviorTake = VirtualMachinePowerOffBehavior(...
function init (line 3943) | func init() {
type VirtualMachinePowerOpType (line 3947) | type VirtualMachinePowerOpType
constant VirtualMachinePowerOpTypeSoft (line 3950) | VirtualMachinePowerOpTypeSoft = VirtualMachinePowerOpType("soft")
constant VirtualMachinePowerOpTypeHard (line 3951) | VirtualMachinePowerOpTypeHard = VirtualMachinePowerOpType("hard")
constant VirtualMachinePowerOpTypePreset (line 3952) | VirtualMachinePowerOpTypePreset = VirtualMachinePowerOpType("preset")
function init (line 3955) | func init() {
type VirtualMachinePowerState (line 3959) | type VirtualMachinePowerState
constant VirtualMachinePowerStatePoweredOff (line 3962) | VirtualMachinePowerStatePoweredOff = VirtualMachinePowerState("poweredOff")
constant VirtualMachinePowerStatePoweredOn (line 3963) | VirtualMachinePowerStatePoweredOn = VirtualMachinePowerState("poweredOn")
constant VirtualMachinePowerStateSuspended (line 3964) | VirtualMachinePowerStateSuspended = VirtualMachinePowerState("suspended")
function init (line 3967) | func init() {
type VirtualMachineRecordReplayState (line 3971) | type VirtualMachineRecordReplayState
constant VirtualMachineRecordReplayStateRecording (line 3974) | VirtualMachineRecordReplayStateRecording = VirtualMachineRecordReplaySta...
constant VirtualMachineRecordReplayStateReplaying (line 3975) | VirtualMachineRecordReplayStateReplaying = VirtualMachineRecordReplaySta...
constant VirtualMachineRecordReplayStateInactive (line 3976) | VirtualMachineRecordReplayStateInactive = VirtualMachineRecordReplaySta...
function init (line 3979) | func init() {
type VirtualMachineRelocateDiskMoveOptions (line 3983) | type VirtualMachineRelocateDiskMoveOptions
constant VirtualMachineRelocateDiskMoveOptionsMoveAllDiskBackingsAndAllowSharing (line 3986) | VirtualMachineRelocateDiskMoveOptionsMoveAllDiskBackingsAndAllowSharing ...
constant VirtualMachineRelocateDiskMoveOptionsMoveAllDiskBackingsAndDisallowSharing (line 3987) | VirtualMachineRelocateDiskMoveOptionsMoveAllDiskBackingsAndDisallowShari...
constant VirtualMachineRelocateDiskMoveOptionsMoveChildMostDiskBacking (line 3988) | VirtualMachineRelocateDiskMoveOptionsMoveChildMostDiskBacking ...
constant VirtualMachineRelocateDiskMoveOptionsCreateNewChildDiskBacking (line 3989) | VirtualMachineRelocateDiskMoveOptionsCreateNewChildDiskBacking ...
constant VirtualMachineRelocateDiskMoveOptionsMoveAllDiskBackingsAndConsolidate (line 3990) | VirtualMachineRelocateDiskMoveOptionsMoveAllDiskBackingsAndConsolidate ...
function init (line 3993) | func init() {
type VirtualMachineRelocateTransformation (line 3997) | type VirtualMachineRelocateTransformation
constant VirtualMachineRelocateTransformationFlat (line 4000) | VirtualMachineRelocateTransformationFlat = VirtualMachineRelocateTrans...
constant VirtualMachineRelocateTransformationSparse (line 4001) | VirtualMachineRelocateTransformationSparse = VirtualMachineRelocateTrans...
function init (line 4004) | func init() {
type VirtualMachineScsiPassthroughType (line 4008) | type VirtualMachineScsiPassthroughType
constant VirtualMachineScsiPassthroughTypeDisk (line 4011) | VirtualMachineScsiPassthroughTypeDisk = VirtualMachineScsiPassthrou...
constant VirtualMachineScsiPassthroughTypeTape (line 4012) | VirtualMachineScsiPassthroughTypeTape = VirtualMachineScsiPassthrou...
constant VirtualMachineScsiPassthroughTypePrinter (line 4013) | VirtualMachineScsiPassthroughTypePrinter = VirtualMachineScsiPassthrou...
constant VirtualMachineScsiPassthroughTypeProcessor (line 4014) | VirtualMachineScsiPassthroughTypeProcessor = VirtualMachineScsiPassthrou...
constant VirtualMachineScsiPassthroughTypeWorm (line 4015) | VirtualMachineScsiPassthroughTypeWorm = VirtualMachineScsiPassthrou...
constant VirtualMachineScsiPassthroughTypeCdrom (line 4016) | VirtualMachineScsiPassthroughTypeCdrom = VirtualMachineScsiPassthrou...
constant VirtualMachineScsiPassthroughTypeScanner (line 4017) | VirtualMachineScsiPassthroughTypeScanner = VirtualMachineScsiPassthrou...
constant VirtualMachineScsiPassthroughTypeOptical (line 4018) | VirtualMachineScsiPassthroughTypeOptical = VirtualMachineScsiPassthrou...
constant VirtualMachineScsiPassthroughTypeMedia (line 4019) | VirtualMachineScsiPassthroughTypeMedia = VirtualMachineScsiPassthrou...
constant VirtualMachineScsiPassthroughTypeCom (line 4020) | VirtualMachineScsiPassthroughTypeCom = VirtualMachineScsiPassthrou...
constant VirtualMachineScsiPassthroughTypeRaid (line 4021) | VirtualMachineScsiPassthroughTypeRaid = VirtualMachineScsiPassthrou...
constant VirtualMachineScsiPassthroughTypeUnknown (line 4022) | VirtualMachineScsiPassthroughTypeUnknown = VirtualMachineScsiPassthrou...
function init (line 4025) | func init() {
type VirtualMachineStandbyActionType (line 4029) | type VirtualMachineStandbyActionType
constant VirtualMachineStandbyActionTypeCheckpoint (line 4032) | VirtualMachineStandbyActionTypeCheckpoint = VirtualMachineStandbyAct...
constant VirtualMachineStandbyActionTypePowerOnSuspend (line 4033) | VirtualMachineStandbyActionTypePowerOnSuspend = VirtualMachineStandbyAct...
function init (line 4036) | func init() {
type VirtualMachineTargetInfoConfigurationTag (line 4040) | type VirtualMachineTargetInfoConfigurationTag
constant VirtualMachineTargetInfoConfigurationTagCompliant (line 4043) | VirtualMachineTargetInfoConfigurationTagCompliant = VirtualMachineTarg...
constant VirtualMachineTargetInfoConfigurationTagClusterWide (line 4044) | VirtualMachineTargetInfoConfigurationTagClusterWide = VirtualMachineTarg...
function init (line 4047) | func init() {
type VirtualMachineTicketType (line 4051) | type VirtualMachineTicketType
constant VirtualMachineTicketTypeMks (line 4054) | VirtualMachineTicketTypeMks = VirtualMachineTicketType("mks")
constant VirtualMachineTicketTypeDevice (line 4055) | VirtualMachineTicketTypeDevice = VirtualMachineTicketType("device")
constant VirtualMachineTicketTypeGuestControl (line 4056) | VirtualMachineTicketTypeGuestControl = VirtualMachineTicketType("guestCo...
constant VirtualMachineTicketTypeWebmks (line 4057) | VirtualMachineTicketTypeWebmks = VirtualMachineTicketType("webmks")
function init (line 4060) | func init() {
type VirtualMachineToolsInstallType (line 4064) | type VirtualMachineToolsInstallType
constant VirtualMachineToolsInstallTypeGuestToolsTypeUnknown (line 4067) | VirtualMachineToolsInstallTypeGuestToolsTypeUnknown = VirtualMachine...
constant VirtualMachineToolsInstallTypeGuestToolsTypeMSI (line 4068) | VirtualMachineToolsInstallTypeGuestToolsTypeMSI = VirtualMachine...
constant VirtualMachineToolsInstallTypeGuestToolsTypeTar (line 4069) | VirtualMachineToolsInstallTypeGuestToolsTypeTar = VirtualMachine...
constant VirtualMachineToolsInstallTypeGuestToolsTypeOSP (line 4070) | VirtualMachineToolsInstallTypeGuestToolsTypeOSP = VirtualMachine...
constant VirtualMachineToolsInstallTypeGuestToolsTypeOpenVMTools (line 4071) | VirtualMachineToolsInstallTypeGuestToolsTypeOpenVMTools = VirtualMachine...
function init (line 4074) | func init() {
type VirtualMachineToolsRunningStatus (line 4078) | type VirtualMachineToolsRunningStatus
constant VirtualMachineToolsRunningStatusGuestToolsNotRunning (line 4081) | VirtualMachineToolsRunningStatusGuestToolsNotRunning = VirtualMach...
constant VirtualMachineToolsRunningStatusGuestToolsRunning (line 4082) | VirtualMachineToolsRunningStatusGuestToolsRunning = VirtualMach...
constant VirtualMachineToolsRunningStatusGuestToolsExecutingScripts (line 4083) | VirtualMachineToolsRunningStatusGuestToolsExecutingScripts = VirtualMach...
function init (line 4086) | func init() {
type VirtualMachineToolsStatus (line 4090) | type VirtualMachineToolsStatus
constant VirtualMachineToolsStatusToolsNotInstalled (line 4093) | VirtualMachineToolsStatusToolsNotInstalled = VirtualMachineToolsStatus("...
constant VirtualMachineToolsStatusToolsNotRunning (line 4094) | VirtualMachineToolsStatusToolsNotRunning = VirtualMachineToolsStatus("...
constant VirtualMachineToolsStatusToolsOld (line 4095) | VirtualMachineToolsStatusToolsOld = VirtualMachineToolsStatus("...
constant VirtualMachineToolsStatusToolsOk (line 4096) | VirtualMachineToolsStatusToolsOk = VirtualMachineToolsStatus("...
function init (line 4099) | func init() {
type VirtualMachineToolsVersionStatus (line 4103) | type VirtualMachineToolsVersionStatus
constant VirtualMachineToolsVersionStatusGuestToolsNotInstalled (line 4106) | VirtualMachineToolsVersionStatusGuestToolsNotInstalled = VirtualMachineT...
constant VirtualMachineToolsVersionStatusGuestToolsNeedUpgrade (line 4107) | VirtualMachineToolsVersionStatusGuestToolsNeedUpgrade = VirtualMachineT...
constant VirtualMachineToolsVersionStatusGuestToolsCurrent (line 4108) | VirtualMachineToolsVersionStatusGuestToolsCurrent = VirtualMachineT...
constant VirtualMachineToolsVersionStatusGuestToolsUnmanaged (line 4109) | VirtualMachineToolsVersionStatusGuestToolsUnmanaged = VirtualMachineT...
constant VirtualMachineToolsVersionStatusGuestToolsTooOld (line 4110) | VirtualMachineToolsVersionStatusGuestToolsTooOld = VirtualMachineT...
constant VirtualMachineToolsVersionStatusGuestToolsSupportedOld (line 4111) | VirtualMachineToolsVersionStatusGuestToolsSupportedOld = VirtualMachineT...
constant VirtualMachineToolsVersionStatusGuestToolsSupportedNew (line 4112) | VirtualMachineToolsVersionStatusGuestToolsSupportedNew = VirtualMachineT...
constant VirtualMachineToolsVersionStatusGuestToolsTooNew (line 4113) | VirtualMachineToolsVersionStatusGuestToolsTooNew = VirtualMachineT...
constant VirtualMachineToolsVersionStatusGuestToolsBlacklisted (line 4114) | VirtualMachineToolsVersionStatusGuestToolsBlacklisted = VirtualMachineT...
function init (line 4117) | func init() {
type VirtualMachineUsbInfoFamily (line 4121) | type VirtualMachineUsbInfoFamily
constant VirtualMachineUsbInfoFamilyAudio (line 4124) | VirtualMachineUsbInfoFamilyAudio = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyHid (line 4125) | VirtualMachineUsbInfoFamilyHid = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyHid_bootable (line 4126) | VirtualMachineUsbInfoFamilyHid_bootable = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyPhysical (line 4127) | VirtualMachineUsbInfoFamilyPhysical = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyCommunication (line 4128) | VirtualMachineUsbInfoFamilyCommunication = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyImaging (line 4129) | VirtualMachineUsbInfoFamilyImaging = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyPrinter (line 4130) | VirtualMachineUsbInfoFamilyPrinter = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyStorage (line 4131) | VirtualMachineUsbInfoFamilyStorage = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyHub (line 4132) | VirtualMachineUsbInfoFamilyHub = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilySmart_card (line 4133) | VirtualMachineUsbInfoFamilySmart_card = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilySecurity (line 4134) | VirtualMachineUsbInfoFamilySecurity = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyVideo (line 4135) | VirtualMachineUsbInfoFamilyVideo = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyWireless (line 4136) | VirtualMachineUsbInfoFamilyWireless = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyBluetooth (line 4137) | VirtualMachineUsbInfoFamilyBluetooth = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyWusb (line 4138) | VirtualMachineUsbInfoFamilyWusb = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyPda (line 4139) | VirtualMachineUsbInfoFamilyPda = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyVendor_specific (line 4140) | VirtualMachineUsbInfoFamilyVendor_specific = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyOther (line 4141) | VirtualMachineUsbInfoFamilyOther = VirtualMachineUsbInfoFamily...
constant VirtualMachineUsbInfoFamilyUnknownFamily (line 4142) | VirtualMachineUsbInfoFamilyUnknownFamily = VirtualMachineUsbInfoFamily...
function init (line 4145) | func init() {
type VirtualMachineUsbInfoSpeed (line 4149) | type VirtualMachineUsbInfoSpeed
constant VirtualMachineUsbInfoSpeedLow (line 4152) | VirtualMachineUsbInfoSpeedLow = VirtualMachineUsbInfoSpeed("low")
constant VirtualMachineUsbInfoSpeedFull (line 4153) | VirtualMachineUsbInfoSpeedFull = VirtualMachineUsbInfoSpeed("full")
constant VirtualMachineUsbInfoSpeedHigh (line 4154) | VirtualMachineUsbInfoSpeedHigh = VirtualMachineUsbInfoSpeed("high")
constant VirtualMachineUsbInfoSpeedSuperSpeed (line 4155) | VirtualMachineUsbInfoSpeedSuperSpeed = VirtualMachineUsbInfoSpeed("sup...
constant VirtualMachineUsbInfoSpeedUnknownSpeed (line 4156) | VirtualMachineUsbInfoSpeedUnknownSpeed = VirtualMachineUsbInfoSpeed("unk...
function init (line 4159) | func init() {
type VirtualMachineVMCIDeviceAction (line 4163) | type VirtualMachineVMCIDeviceAction
constant VirtualMachineVMCIDeviceActionAllow (line 4166) | VirtualMachineVMCIDeviceActionAllow = VirtualMachineVMCIDeviceAction("al...
constant VirtualMachineVMCIDeviceActionDeny (line 4167) | VirtualMachineVMCIDeviceActionDeny = VirtualMachineVMCIDeviceAction("de...
function init (line 4170) | func init() {
type VirtualMachineVMCIDeviceDirection (line 4174) | type VirtualMachineVMCIDeviceDirection
constant VirtualMachineVMCIDeviceDirectionGuest (line 4177) | VirtualMachineVMCIDeviceDirectionGuest = VirtualMachineVMCIDevice...
constant VirtualMachineVMCIDeviceDirectionHost (line 4178) | VirtualMachineVMCIDeviceDirectionHost = VirtualMachineVMCIDevice...
constant VirtualMachineVMCIDeviceDirectionAnyDirection (line 4179) | VirtualMachineVMCIDeviceDirectionAnyDirection = VirtualMachineVMCIDevice...
function init (line 4182) | func init() {
type VirtualMachineVMCIDeviceProtocol (line 4186) | type VirtualMachineVMCIDeviceProtocol
constant VirtualMachineVMCIDeviceProtocolHypervisor (line 4189) | VirtualMachineVMCIDeviceProtocolHypervisor = VirtualMachineVMCIDevicePr...
constant VirtualMachineVMCIDeviceProtocolDoorbell (line 4190) | VirtualMachineVMCIDeviceProtocolDoorbell = VirtualMachineVMCIDevicePr...
constant VirtualMachineVMCIDeviceProtocolQueuepair (line 4191) | VirtualMachineVMCIDeviceProtocolQueuepair = VirtualMachineVMCIDevicePr...
constant VirtualMachineVMCIDeviceProtocolDatagram (line 4192) | VirtualMachineVMCIDeviceProtocolDatagram = VirtualMachineVMCIDevicePr...
constant VirtualMachineVMCIDeviceProtocolStream (line 4193) | VirtualMachineVMCIDeviceProtocolStream = VirtualMachineVMCIDevicePr...
constant VirtualMachineVMCIDeviceProtocolAnyProtocol (line 4194) | VirtualMachineVMCIDeviceProtocolAnyProtocol = VirtualMachineVMCIDevicePr...
function init (line 4197) | func init() {
type VirtualMachineVideoCardUse3dRenderer (line 4201) | type VirtualMachineVideoCardUse3dRenderer
constant VirtualMachineVideoCardUse3dRendererAutomatic (line 4204) | VirtualMachineVideoCardUse3dRendererAutomatic = VirtualMachineVideoCardU...
constant VirtualMachineVideoCardUse3dRendererSoftware (line 4205) | VirtualMachineVideoCardUse3dRendererSoftware = VirtualMachineVideoCardU...
constant VirtualMachineVideoCardUse3dRendererHardware (line 4206) | VirtualMachineVideoCardUse3dRendererHardware = VirtualMachineVideoCardU...
function init (line 4209) | func init() {
type VirtualMachineWindowsQuiesceSpecVssBackupContext (line 4213) | type VirtualMachineWindowsQuiesceSpecVssBackupContext
constant VirtualMachineWindowsQuiesceSpecVssBackupContextCtx_auto (line 4216) | VirtualMachineWindowsQuiesceSpecVssBackupContextCtx_auto = ...
constant VirtualMachineWindowsQuiesceSpecVssBackupContextCtx_backup (line 4217) | VirtualMachineWindowsQuiesceSpecVssBackupContextCtx_backup = ...
constant VirtualMachineWindowsQuiesceSpecVssBackupContextCtx_file_share_backup (line 4218) | VirtualMachineWindowsQuiesceSpecVssBackupContextCtx_file_share_backup = ...
function init (line 4221) | func init() {
type VirtualPointingDeviceHostChoice (line 4225) | type VirtualPointingDeviceHostChoice
constant VirtualPointingDeviceHostChoiceAutodetect (line 4228) | VirtualPointingDeviceHostChoiceAutodetect = VirtualPointingDev...
constant VirtualPointingDeviceHostChoiceIntellimouseExplorer (line 4229) | VirtualPointingDeviceHostChoiceIntellimouseExplorer = VirtualPointingDev...
constant VirtualPointingDeviceHostChoiceIntellimousePs2 (line 4230) | VirtualPointingDeviceHostChoiceIntellimousePs2 = VirtualPointingDev...
constant VirtualPointingDeviceHostChoiceLogitechMouseman (line 4231) | VirtualPointingDeviceHostChoiceLogitechMouseman = VirtualPointingDev...
constant VirtualPointingDeviceHostChoiceMicrosoft_serial (line 4232) | VirtualPointingDeviceHostChoiceMicrosoft_serial = VirtualPointingDev...
constant VirtualPointingDeviceHostChoiceMouseSystems (line 4233) | VirtualPointingDeviceHostChoiceMouseSystems = VirtualPointingDev...
constant VirtualPointingDeviceHostChoiceMousemanSerial (line 4234) | VirtualPointingDeviceHostChoiceMousemanSerial = VirtualPointingDev...
constant VirtualPointingDeviceHostChoicePs2 (line 4235) | VirtualPointingDeviceHostChoicePs2 = VirtualPointingDev...
function init (line 4238) | func init() {
type VirtualSCSISharing (line 4242) | type VirtualSCSISharing
constant VirtualSCSISharingNoSharing (line 4245) | VirtualSCSISharingNoSharing = VirtualSCSISharing("noSharing")
constant VirtualSCSISharingVirtualSharing (line 4246) | VirtualSCSISharingVirtualSharing = VirtualSCSISharing("virtualSharing")
constant VirtualSCSISharingPhysicalSharing (line 4247) | VirtualSCSISharingPhysicalSharing = VirtualSCSISharing("physicalSharing")
function init (line 4250) | func init() {
type VirtualSerialPortEndPoint (line 4254) | type VirtualSerialPortEndPoint
constant VirtualSerialPortEndPointClient (line 4257) | VirtualSerialPortEndPointClient = VirtualSerialPortEndPoint("client")
constant VirtualSerialPortEndPointServer (line 4258) | VirtualSerialPortEndPointServer = VirtualSerialPortEndPoint("server")
function init (line 4261) | func init() {
type VmDasBeingResetEventReasonCode (line 4265) | type VmDasBeingResetEventReasonCode
constant VmDasBeingResetEventReasonCodeVmtoolsHeartbeatFailure (line 4268) | VmDasBeingResetEventReasonCodeVmtoolsHeartbeatFailure = VmDasBeingReset...
constant VmDasBeingResetEventReasonCodeAppHeartbeatFailure (line 4269) | VmDasBeingResetEventReasonCodeAppHeartbeatFailure = VmDasBeingReset...
constant VmDasBeingResetEventReasonCodeAppImmediateResetRequest (line 4270) | VmDasBeingResetEventReasonCodeAppImmediateResetRequest = VmDasBeingReset...
constant VmDasBeingResetEventReasonCodeVmcpResetApdCleared (line 4271) | VmDasBeingResetEventReasonCodeVmcpResetApdCleared = VmDasBeingReset...
function init (line 4274) | func init() {
type VmFailedStartingSecondaryEventFailureReason (line 4278) | type VmFailedStartingSecondaryEventFailureReason
constant VmFailedStartingSecondaryEventFailureReasonIncompatibleHost (line 4281) | VmFailedStartingSecondaryEventFailureReasonIncompatibleHost = VmFailedSt...
constant VmFailedStartingSecondaryEventFailureReasonLoginFailed (line 4282) | VmFailedStartingSecondaryEventFailureReasonLoginFailed = VmFailedSt...
constant VmFailedStartingSecondaryEventFailureReasonRegisterVmFailed (line 4283) | VmFailedStartingSecondaryEventFailureReasonRegisterVmFailed = VmFailedSt...
constant VmFailedStartingSecondaryEventFailureReasonMigrateFailed (line 4284) | VmFailedStartingSecondaryEventFailureReasonMigrateFailed = VmFailedSt...
function init (line 4287) | func init() {
type VmFaultToleranceConfigIssueReasonForIssue (line 4291) | type VmFaultToleranceConfigIssueReasonForIssue
constant VmFaultToleranceConfigIssueReasonForIssueHaNotEnabled (line 4294) | VmFaultToleranceConfigIssueReasonForIssueHaNotEnabled ...
constant VmFaultToleranceConfigIssueReasonForIssueMoreThanOneSecondary (line 4295) | VmFaultToleranceConfigIssueReasonForIssueMoreThanOneSecondary ...
constant VmFaultToleranceConfigIssueReasonForIssueRecordReplayNotSupported (line 4296) | VmFaultToleranceConfigIssueReasonForIssueRecordReplayNotSupported ...
constant VmFaultToleranceConfigIssueReasonForIssueReplayNotSupported (line 4297) | VmFaultToleranceConfigIssueReasonForIssueReplayNotSupported ...
constant VmFaultToleranceConfigIssueReasonForIssueTemplateVm (line 4298) | VmFaultToleranceConfigIssueReasonForIssueTemplateVm ...
constant VmFaultToleranceConfigIssueReasonForIssueMultipleVCPU (line 4299) | VmFaultToleranceConfigIssueReasonForIssueMultipleVCPU ...
constant VmFaultToleranceConfigIssueReasonForIssueHostInactive (line 4300) | VmFaultToleranceConfigIssueReasonForIssueHostInactive ...
constant VmFaultToleranceConfigIssueReasonForIssueFtUnsupportedHardware (line 4301) | VmFaultToleranceConfigIssueReasonForIssueFtUnsupportedHardware ...
constant VmFaultToleranceConfigIssueReasonForIssueFtUnsupportedProduct (line 4302) | VmFaultToleranceConfigIssueReasonForIssueFtUnsupportedProduct ...
constant VmFaultToleranceConfigIssueReasonForIssueMissingVMotionNic (line 4303) | VmFaultToleranceConfigIssueReasonForIssueMissingVMotionNic ...
constant VmFaultToleranceConfigIssueReasonForIssueMissingFTLoggingNic (line 4304) | VmFaultToleranceConfigIssueReasonForIssueMissingFTLoggingNic ...
constant VmFaultToleranceConfigIssueReasonForIssueThinDisk (line 4305) | VmFaultToleranceConfigIssueReasonForIssueThinDisk ...
constant VmFaultToleranceConfigIssueReasonForIssueVerifySSLCertificateFlagNotSet (line 4306) | VmFaultToleranceConfigIssueReasonForIssueVerifySSLCertificateFlagNotSet ...
constant VmFaultToleranceConfigIssueReasonForIssueHasSnapshots (line 4307) | VmFaultToleranceConfigIssueReasonForIssueHasSnapshots ...
constant VmFaultToleranceConfigIssueReasonForIssueNoConfig (line 4308) | VmFaultToleranceConfigIssueReasonForIssueNoConfig ...
constant VmFaultToleranceConfigIssueReasonForIssueFtSecondaryVm (line 4309) | VmFaultToleranceConfigIssueReasonForIssueFtSecondaryVm ...
constant VmFaultToleranceConfigIssueReasonForIssueHasLocalDisk (line 4310) | VmFaultToleranceConfigIssueReasonForIssueHasLocalDisk ...
constant VmFaultToleranceConfigIssueReasonForIssueEsxAgentVm (line 4311) | VmFaultToleranceConfigIssueReasonForIssueEsxAgentVm ...
constant VmFaultToleranceConfigIssueReasonForIssueVideo3dEnabled (line 4312) | VmFaultToleranceConfigIssueReasonForIssueVideo3dEnabled ...
constant VmFaultToleranceConfigIssueReasonForIssueHasUnsupportedDisk (line 4313) | VmFaultToleranceConfigIssueReasonForIssueHasUnsupportedDisk ...
constant VmFaultToleranceConfigIssueReasonForIssueInsufficientBandwidth (line 4314) | VmFaultToleranceConfigIssueReasonForIssueInsufficientBandwidth ...
constant VmFaultToleranceConfigIssueReasonForIssueHasNestedHVConfiguration (line 4315) | VmFaultToleranceConfigIssueReasonForIssueHasNestedHVConfiguration ...
constant VmFaultToleranceConfigIssueReasonForIssueHasVFlashConfiguration (line 4316) | VmFaultToleranceConfigIssueReasonForIssueHasVFlashConfiguration ...
constant VmFaultToleranceConfigIssueReasonForIssueUnsupportedProduct (line 4317) | VmFaultToleranceConfigIssueReasonForIssueUnsupportedProduct ...
constant VmFaultToleranceConfigIssueReasonForIssueCpuHvUnsupported (line 4318) | VmFaultToleranceConfigIssueReasonForIssueCpuHvUnsupported ...
constant VmFaultToleranceConfigIssueReasonForIssueCpuHwmmuUnsupported (line 4319) | VmFaultToleranceConfigIssueReasonForIssueCpuHwmmuUnsupported ...
constant VmFaultToleranceConfigIssueReasonForIssueCpuHvDisabled (line 4320) | VmFaultToleranceConfigIssueReasonForIssueCpuHvDisabled ...
constant VmFaultToleranceConfigIssueReasonForIssueHasEFIFirmware (line 4321) | VmFaultToleranceConfigIssueReasonForIssueHasEFIFirmware ...
function init (line 4324) | func init() {
type VmFaultToleranceInvalidFileBackingDeviceType (line 4328) | type VmFaultToleranceInvalidFileBackingDeviceType
constant VmFaultToleranceInvalidFileBackingDeviceTypeVirtualFloppy (line 4331) | VmFaultToleranceInvalidFileBackingDeviceTypeVirtualFloppy = VmFaul...
constant VmFaultToleranceInvalidFileBackingDeviceTypeVirtualCdrom (line 4332) | VmFaultToleranceInvalidFileBackingDeviceTypeVirtualCdrom = VmFaul...
constant VmFaultToleranceInvalidFileBackingDeviceTypeVirtualSerialPort (line 4333) | VmFaultToleranceInvalidFileBackingDeviceTypeVirtualSerialPort = VmFaul...
constant VmFaultToleranceInvalidFileBackingDeviceTypeVirtualParallelPort (line 4334) | VmFaultToleranceInvalidFileBackingDeviceTypeVirtualParallelPort = VmFaul...
constant VmFaultToleranceInvalidFileBackingDeviceTypeVirtualDisk (line 4335) | VmFaultToleranceInvalidFileBackingDeviceTypeVirtualDisk = VmFaul...
function init (line 4338) | func init() {
type VmShutdownOnIsolationEventOperation (line 4342) | type VmShutdownOnIsolationEventOperation
constant VmShutdownOnIsolationEventOperationShutdown (line 4345) | VmShutdownOnIsolationEventOperationShutdown = VmShutdownOnIsolationEve...
constant VmShutdownOnIsolationEventOperationPoweredOff (line 4346) | VmShutdownOnIsolationEventOperationPoweredOff = VmShutdownOnIsolationEve...
function init (line 4349) | func init() {
type VmwareDistributedVirtualSwitchPvlanPortType (line 4353) | type VmwareDistributedVirtualSwitchPvlanPortType
constant VmwareDistributedVirtualSwitchPvlanPortTypePromiscuous (line 4356) | VmwareDistributedVirtualSwitchPvlanPortTypePromiscuous = VmwareDistribut...
constant VmwareDistributedVirtualSwitchPvlanPortTypeIsolated (line 4357) | VmwareDistributedVirtualSwitchPvlanPortTypeIsolated = VmwareDistribut...
constant VmwareDistributedVirtualSwitchPvlanPortTypeCommunity (line 4358) | VmwareDistributedVirtualSwitchPvlanPortTypeCommunity = VmwareDistribut...
function init (line 4361) | func init() {
type VsanDiskIssueType (line 4365) | type VsanDiskIssueType
constant VsanDiskIssueTypeNonExist (line 4368) | VsanDiskIssueTypeNonExist = VsanDiskIssueType("nonExist")
constant VsanDiskIssueTypeStampMismatch (line 4369) | VsanDiskIssueTypeStampMismatch = VsanDiskIssueType("stampMismatch")
constant VsanDiskIssueTypeUnknown (line 4370) | VsanDiskIssueTypeUnknown = VsanDiskIssueType("unknown")
function init (line 4373) | func init() {
type VsanHostDecommissionModeObjectAction (line 4377) | type VsanHostDecommissionModeObjectAction
constant VsanHostDecommissionModeObjectActionNoAction (line 4380) | VsanHostDecommissionModeObjectActionNoAction = VsanHost...
constant VsanHostDecommissionModeObjectActionEnsureObjectAccessibility (line 4381) | VsanHostDecommissionModeObjectActionEnsureObjectAccessibility = VsanHost...
constant VsanHostDecommissionModeObjectActionEvacuateAllData (line 4382) | VsanHostDecommissionModeObjectActionEvacuateAllData = VsanHost...
function init (line 4385) | func init() {
type VsanHostDiskResultState (line 4389) | type VsanHostDiskResultState
constant VsanHostDiskResultStateInUse (line 4392) | VsanHostDiskResultStateInUse = VsanHostDiskResultState("inUse")
constant VsanHostDiskResultStateEligible (line 4393) | VsanHostDiskResultStateEligible = VsanHostDiskResultState("eligible")
constant VsanHostDiskResultStateIneligible (line 4394) | VsanHostDiskResultStateIneligible = VsanHostDiskResultState("ineligible")
function init (line 4397) | func init() {
type VsanHostHealthState (line 4401) | type VsanHostHealthState
constant VsanHostHealthStateUnknown (line 4404) | VsanHostHealthStateUnknown = VsanHostHealthState("unknown")
constant VsanHostHealthStateHealthy (line 4405) | VsanHostHealthStateHealthy = VsanHostHealthState("healthy")
constant VsanHostHealthStateUnhealthy (line 4406) | VsanHostHealthStateUnhealthy = VsanHostHealthState("unhealthy")
function init (line 4409) | func init() {
type VsanHostNodeState (line 4413) | type VsanHostNodeState
constant VsanHostNodeStateError (line 4416) | VsanHostNodeStateError = VsanHostNodeState("error")
constant VsanHostNodeStateDisabled (line 4417) | VsanHostNodeStateDisabled = VsanHostNodeState("disabled")
constant VsanHostNodeStateAgent (line 4418) | VsanHostNodeStateAgent = VsanHostNodeState("agent")
constant VsanHostNodeStateMaster (line 4419) | VsanHostNodeStateMaster = VsanHostNodeState("master")
constant VsanHostNodeStateBackup (line 4420) | VsanHostNodeStateBackup = VsanHostNodeState("backup")
constant VsanHostNodeStateStarting (line 4421) | VsanHostNodeStateStarting = VsanHostNodeState("starting")
constant VsanHostNodeStateStopping (line 4422) | VsanHostNodeStateStopping = VsanHostNodeState("stopping")
constant VsanHostNodeStateEnteringMaintenanceMode (line 4423) | VsanHostNodeStateEnteringMaintenanceMode = VsanHostNodeState("enteringMa...
constant VsanHostNodeStateExitingMaintenanceMode (line 4424) | VsanHostNodeStateExitingMaintenanceMode = VsanHostNodeState("exitingMai...
constant VsanHostNodeStateDecommissioning (line 4425) | VsanHostNodeStateDecommissioning = VsanHostNodeState("decommissi...
function init (line 4428) | func init() {
type VsanUpgradeSystemUpgradeHistoryDiskGroupOpType (line 4432) | type VsanUpgradeSystemUpgradeHistoryDiskGroupOpType
constant VsanUpgradeSystemUpgradeHistoryDiskGroupOpTypeAdd (line 4435) | VsanUpgradeSystemUpgradeHistoryDiskGroupOpTypeAdd = VsanUpgradeSystem...
constant VsanUpgradeSystemUpgradeHistoryDiskGroupOpTypeRemove (line 4436) | VsanUpgradeSystemUpgradeHistoryDiskGroupOpTypeRemove = VsanUpgradeSystem...
function init (line 4439) | func init() {
type WeekOfMonth (line 4443) | type WeekOfMonth
constant WeekOfMonthFirst (line 4446) | WeekOfMonthFirst = WeekOfMonth("first")
constant WeekOfMonthSecond (line 4447) | WeekOfMonthSecond = WeekOfMonth("second")
constant WeekOfMonthThird (line 4448) | WeekOfMonthThird = WeekOfMonth("third")
constant WeekOfMonthFourth (line 4449) | WeekOfMonthFourth = WeekOfMonth("fourth")
constant WeekOfMonthLast (line 4450) | WeekOfMonthLast = WeekOfMonth("last")
function init (line 4453) | func init() {
type WillLoseHAProtectionResolution (line 4457) | type WillLoseHAProtectionResolution
constant WillLoseHAProtectionResolutionSvmotion (line 4460) | WillLoseHAProtectionResolutionSvmotion = WillLoseHAProtectionResolution(...
constant WillLoseHAProtectionResolutionRelocate (line 4461) | WillLoseHAProtectionResolutionRelocate = WillLoseHAProtectionResolution(...
function init (line 4464) | func init() {
FILE: vendor/github.com/vmware/govmomi/vim25/types/fault.go
type HasFault (line 19) | type HasFault interface
function IsFileNotFound (line 23) | func IsFileNotFound(err error) bool {
FILE: vendor/github.com/vmware/govmomi/vim25/types/helpers.go
function NewBool (line 21) | func NewBool(v bool) *bool {
function NewReference (line 25) | func NewReference(r ManagedObjectReference) *ManagedObjectReference {
method Reference (line 29) | func (r ManagedObjectReference) Reference() ManagedObjectReference {
method String (line 33) | func (r ManagedObjectReference) String() string {
method FromString (line 37) | func (r *ManagedObjectReference) FromString(o string) bool {
method Name (line 50) | func (c *PerfCounterInfo) Name() string {
FILE: vendor/github.com/vmware/govmomi/vim25/types/if.go
method GetAction (line 21) | func (b *Action) GetAction() *Action { return b }
type BaseAction (line 23) | type BaseAction interface
function init (line 27) | func init() {
method GetActiveDirectoryFault (line 31) | func (b *ActiveDirectoryFault) GetActiveDirectoryFault() *ActiveDirector...
type BaseActiveDirectoryFault (line 33) | type BaseActiveDirectoryFault interface
function init (line 37) | func init() {
method GetAlarmAction (line 41) | func (b *AlarmAction) GetAlarmAction() *AlarmAction { return b }
type BaseAlarmAction (line 43) | type BaseAlarmAction interface
function init (line 47) | func init() {
method GetAlarmEvent (line 51) | func (b *AlarmEvent) GetAlarmEvent() *AlarmEvent { return b }
type BaseAlarmEvent (line 53) | type BaseAlarmEvent interface
function init (line 57) | func init() {
method GetAlarmExpression (line 61) | func (b *AlarmExpression) GetAlarmExpression() *AlarmExpression { return...
type BaseAlarmExpression (line 63) | type BaseAlarmExpression interface
function init (line 67) | func init() {
method GetAlarmSpec (line 71) | func (b *AlarmSpec) GetAlarmSpec() *AlarmSpec { return b }
type BaseAlarmSpec (line 73) | type BaseAlarmSpec interface
function init (line 77) | func init() {
method GetAnswerFileCreateSpec (line 81) | func (b *AnswerFileCreateSpec) GetAnswerFileCreateSpec() *AnswerFileCrea...
type BaseAnswerFileCreateSpec (line 83) | type BaseAnswerFileCreateSpec interface
function init (line 87) | func init() {
method GetApplyProfile (line 91) | func (b *ApplyProfile) GetApplyProfile() *ApplyProfile { return b }
type BaseApplyProfile (line 93) | type BaseApplyProfile interface
function init (line 97) | func init() {
method GetArrayUpdateSpec (line 101) | func (b *ArrayUpdateSpec) GetArrayUpdateSpec() *ArrayUpdateSpec { return...
type BaseArrayUpdateSpec (line 103) | type BaseArrayUpdateSpec interface
function init (line 107) | func init() {
method GetAuthorizationEvent (line 111) | func (b *AuthorizationEvent) GetAuthorizationEvent() *AuthorizationEvent...
type BaseAuthorizationEvent (line 113) | type BaseAuthorizationEvent interface
function init (line 117) | func init() {
method GetBaseConfigInfo (line 121) | func (b *BaseConfigInfo) GetBaseConfigInfo() *BaseConfigInfo { return b }
type BaseBaseConfigInfo (line 123) | type BaseBaseConfigInfo interface
function init (line 127) | func init() {
method GetBaseConfigInfoBackingInfo (line 131) | func (b *BaseConfigInfoBackingInfo) GetBaseConfigInfoBackingInfo() *Base...
type BaseBaseConfigInfoBackingInfo (line 135) | type BaseBaseConfigInfoBackingInfo interface
function init (line 139) | func init() {
method GetBaseConfigInfoFileBackingInfo (line 143) | func (b *BaseConfigInfoFileBackingInfo) GetBaseConfigInfoFileBackingInfo...
type BaseBaseConfigInfoFileBackingInfo (line 147) | type BaseBaseConfigInfoFileBackingInfo interface
function init (line 151) | func init() {
method GetCannotAccessNetwork (line 155) | func (b *CannotAccessNetwork) GetCannotAccessNetwork() *CannotAccessNetw...
type BaseCannotAccessNetwork (line 157) | type BaseCannotAccessNetwork interface
function init (line 161) | func init() {
method GetCannotAccessVmComponent (line 165) | func (b *CannotAccessVmComponent) GetCannotAccessVmComponent() *CannotAc...
type BaseCannotAccessVmComponent (line 167) | type BaseCannotAccessVmComponent interface
function init (line 171) | func init() {
method GetCannotAccessVmDevice (line 175) | func (b *CannotAccessVmDevice) GetCannotAccessVmDevice() *CannotAccessVm...
type BaseCannotAccessVmDevice (line 177) | type BaseCannotAccessVmDevice interface
function init (line 181) | func init() {
method GetCannotAccessVmDisk (line 185) | func (b *CannotAccessVmDisk) GetCannotAccessVmDisk() *CannotAccessVmDisk...
type BaseCannotAccessVmDisk (line 187) | type BaseCannotAccessVmDisk interface
function init (line 191) | func init() {
method GetCannotMoveVsanEnabledHost (line 195) | func (b *CannotMoveVsanEnabledHost) GetCannotMoveVsanEnabledHost() *Cann...
type BaseCannotMoveVsanEnabledHost (line 199) | type BaseCannotMoveVsanEnabledHost interface
function init (line 203) | func init() {
method GetClusterAction (line 207) | func (b *ClusterAction) GetClusterAction() *ClusterAction { return b }
type BaseClusterAction (line 209) | type BaseClusterAction interface
function init (line 213) | func init() {
method GetClusterDasAdmissionControlInfo (line 217) | func (b *ClusterDasAdmissionControlInfo) GetClusterDasAdmissionControlIn...
type BaseClusterDasAdmissionControlInfo (line 221) | type BaseClusterDasAdmissionControlInfo interface
function init (line 225) | func init() {
method GetClusterDasAdmissionControlPolicy (line 229) | func (b *ClusterDasAdmissionControlPolicy) GetClusterDasAdmissionControl...
type BaseClusterDasAdmissionControlPolicy (line 233) | type BaseClusterDasAdmissionControlPolicy interface
function init (line 237) | func init() {
method GetClusterDasAdvancedRuntimeInfo (line 241) | func (b *ClusterDasAdvancedRuntimeInfo) GetClusterDasAdvancedRuntimeInfo...
type BaseClusterDasAdvancedRuntimeInfo (line 245) | type BaseClusterDasAdvancedRuntimeInfo interface
function init (line 249) | func init() {
method GetClusterDasData (line 253) | func (b *ClusterDasData) GetClusterDasData() *ClusterDasData { return b }
type BaseClusterDasData (line 255) | type BaseClusterDasData interface
function init (line 259) | func init() {
method GetClusterDasHostInfo (line 263) | func (b *ClusterDasHostInfo) GetClusterDasHostInfo() *ClusterDasHostInfo...
type BaseClusterDasHostInfo (line 265) | type BaseClusterDasHostInfo interface
function init (line 269) | func init() {
method GetClusterDrsFaultsFaultsByVm (line 273) | func (b *ClusterDrsFaultsFaultsByVm) GetClusterDrsFaultsFaultsByVm() *Cl...
type BaseClusterDrsFaultsFaultsByVm (line 277) | type BaseClusterDrsFaultsFaultsByVm interface
function init (line 281) | func init() {
method GetClusterEvent (line 285) | func (b *ClusterEvent) GetClusterEvent() *ClusterEvent { return b }
type BaseClusterEvent (line 287) | type BaseClusterEvent interface
function init (line 291) | func init() {
method GetClusterGroupInfo (line 295) | func (b *ClusterGroupInfo) GetClusterGroupInfo() *ClusterGroupInfo { ret...
type BaseClusterGroupInfo (line 297) | type BaseClusterGroupInfo interface
function init (line 301) | func init() {
method GetClusterOvercommittedEvent (line 305) | func (b *ClusterOvercommittedEvent) GetClusterOvercommittedEvent() *Clus...
type BaseClusterOvercommittedEvent (line 309) | type BaseClusterOvercommittedEvent interface
function init (line 313) | func init() {
method GetClusterProfileConfigSpec (line 317) | func (b *ClusterProfileConfigSpec) GetClusterProfileConfigSpec() *Cluste...
type BaseClusterProfileConfigSpec (line 319) | type BaseClusterProfileConfigSpec interface
function init (line 323) | func init() {
method GetClusterProfileCreateSpec (line 327) | func (b *ClusterProfileCreateSpec) GetClusterProfileCreateSpec() *Cluste...
type BaseClusterProfileCreateSpec (line 329) | type BaseClusterProfileCreateSpec interface
function init (line 333) | func init() {
method GetClusterRuleInfo (line 337) | func (b *ClusterRuleInfo) GetClusterRuleInfo() *ClusterRuleInfo { return...
type BaseClusterRuleInfo (line 339) | type BaseClusterRuleInfo interface
function init (line 343) | func init() {
method GetClusterSlotPolicy (line 347) | func (b *ClusterSlotPolicy) GetClusterSlotPolicy() *ClusterSlotPolicy { ...
type BaseClusterSlotPolicy (line 349) | type BaseClusterSlotPolicy interface
function init (line 353) | func init() {
method GetClusterStatusChangedEvent (line 357) | func (b *ClusterStatusChangedEvent) GetClusterStatusChangedEvent() *Clus...
type BaseClusterStatusChangedEvent (line 361) | type BaseClusterStatusChangedEvent interface
function init (line 365) | func init() {
method GetComputeResourceConfigInfo (line 369) | func (b *ComputeResourceConfigInfo) GetComputeResourceConfigInfo() *Comp...
type BaseComputeResourceConfigInfo (line 373) | type BaseComputeResourceConfigInfo interface
function init (line 377) | func init() {
method GetComputeResourceConfigSpec (line 381) | func (b *ComputeResourceConfigSpec) GetComputeResourceConfigSpec() *Comp...
type BaseComputeResourceConfigSpec (line 385) | type BaseComputeResourceConfigSpec interface
function init (line 389) | func init() {
method GetComputeResourceSummary (line 393) | func (b *ComputeResourceSummary) GetComputeResourceSummary() *ComputeRes...
type BaseComputeResourceSummary (line 395) | type BaseComputeResourceSummary interface
function init (line 399) | func init() {
method GetCpuIncompatible (line 403) | func (b *CpuIncompatible) GetCpuIncompatible() *CpuIncompatible { return...
type BaseCpuIncompatible (line 405) | type BaseCpuIncompatible interface
function init (line 409) | func init() {
method GetCryptoSpec (line 413) | func (b *CryptoSpec) GetCryptoSpec() *CryptoSpec { return b }
type BaseCryptoSpec (line 415) | type BaseCryptoSpec interface
function init (line 419) | func init() {
method GetCryptoSpecNoOp (line 423) | func (b *CryptoSpecNoOp) GetCryptoSpecNoOp() *CryptoSpecNoOp { return b }
type BaseCryptoSpecNoOp (line 425) | type BaseCryptoSpecNoOp interface
function init (line 429) | func init() {
method GetCustomFieldDefEvent (line 433) | func (b *CustomFieldDefEvent) GetCustomFieldDefEvent() *CustomFieldDefEv...
type BaseCustomFieldDefEvent (line 435) | type BaseCustomFieldDefEvent interface
function init (line 439) | func init() {
method GetCustomFieldEvent (line 443) | func (b *CustomFieldEvent) GetCustomFieldEvent() *CustomFieldEvent { ret...
type BaseCustomFieldEvent (line 445) | type BaseCustomFieldEvent interface
function init (line 449) | func init() {
method GetCustomFieldValue (line 453) | func (b *CustomFieldValue) GetCustomFieldValue() *CustomFieldValue { ret...
type BaseCustomFieldValue (line 455) | type BaseCustomFieldValue interface
function init (line 459) | func init() {
method GetCustomizationEvent (line 463) | func (b *CustomizationEvent) GetCustomizationEvent() *CustomizationEvent...
type BaseCustomizationEvent (line 465) | type BaseCustomizationEvent interface
function init (line 469) | func init() {
method GetCustomizationFailed (line 473) | func (b *CustomizationFailed) GetCustomizationFailed() *CustomizationFai...
type BaseCustomizationFailed (line 475) | type BaseCustomizationFailed interface
function init (line 479) | func init() {
method GetCustomizationFault (line 483) | func (b *CustomizationFault) GetCustomizationFault() *CustomizationFault...
type BaseCustomizationFault (line 485) | type BaseCustomizationFault interface
function init (line 489) | func init() {
method GetCustomizationIdentitySettings (line 493) | func (b *CustomizationIdentitySettings) GetCustomizationIdentitySettings...
type BaseCustomizationIdentitySettings (line 497) | type BaseCustomizationIdentitySettings interface
function init (line 501) | func init() {
method GetCustomizationIpGenerator (line 505) | func (b *CustomizationIpGenerator) GetCustomizationIpGenerator() *Custom...
type BaseCustomizationIpGenerator (line 507) | type BaseCustomizationIpGenerator interface
function init (line 511) | func init() {
method GetCustomizationIpV6Generator (line 515) | func (b *CustomizationIpV6Generator) GetCustomizationIpV6Generator() *Cu...
type BaseCustomizationIpV6Generator (line 519) | type BaseCustomizationIpV6Generator interface
function init (line 523) | func init() {
method GetCustomizationName (line 527) | func (b *CustomizationName) GetCustomizationName() *CustomizationName { ...
type BaseCustomizationName (line 529) | type BaseCustomizationName interface
function init (line 533) | func init() {
method GetCustomizationOptions (line 537) | func (b *CustomizationOptions) GetCustomizationOptions() *CustomizationO...
type BaseCustomizationOptions (line 539) | type BaseCustomizationOptions interface
function init (line 543) | func init() {
method GetDVPortSetting (line 547) | func (b *DVPortSetting) GetDVPortSetting() *DVPortSetting { return b }
type BaseDVPortSetting (line 549) | type BaseDVPortSetting interface
function init (line 553) | func init() {
method GetDVPortgroupEvent (line 557) | func (b *DVPortgroupEvent) GetDVPortgroupEvent() *DVPortgroupEvent { ret...
type BaseDVPortgroupEvent (line 559) | type BaseDVPortgroupEvent interface
function init (line 563) | func init() {
method GetDVPortgroupPolicy (line 567) | func (b *DVPortgroupPolicy) GetDVPortgroupPolicy() *DVPortgroupPolicy { ...
type BaseDVPortgroupPolicy (line 569) | type BaseDVPortgroupPolicy interface
function init (line 573) | func init() {
method GetDVSConfigInfo (line 577) | func (b *DVSConfigInfo) GetDVSConfigInfo() *DVSConfigInfo { return b }
type BaseDVSConfigInfo (line 579) | type BaseDVSConfigInfo interface
function init (line 583) | func init() {
method GetDVSConfigSpec (line 587) | func (b *DVSConfigSpec) GetDVSConfigSpec() *DVSConfigSpec { return b }
type BaseDVSConfigSpec (line 589) | type BaseDVSConfigSpec interface
function init (line 593) | func init() {
method GetDVSFeatureCapability (line 597) | func (b *DVSFeatureCapability) GetDVSFeatureCapability() *DVSFeatureCapa...
type BaseDVSFeatureCapability (line 599) | type BaseDVSFeatureCapability interface
function init (line 603) | func init() {
method GetDVSHealthCheckCapability (line 607) | func (b *DVSHealthCheckCapability) GetDVSHealthCheckCapability() *DVSHea...
type BaseDVSHealthCheckCapability (line 609) | type BaseDVSHealthCheckCapability interface
function init (line 613) | func init() {
method GetDVSHealthCheckConfig (line 617) | func (b *DVSHealthCheckConfig) GetDVSHealthCheckConfig() *DVSHealthCheck...
type BaseDVSHealthCheckConfig (line 619) | type BaseDVSHealthCheckConfig interface
function init (line 623) | func init() {
method GetDVSUplinkPortPolicy (line 627) | func (b *DVSUplinkPortPolicy) GetDVSUplinkPortPolicy() *DVSUplinkPortPol...
type BaseDVSUplinkPortPolicy (line 629) | type BaseDVSUplinkPortPolicy interface
function init (line 633) | func init() {
method GetDailyTaskScheduler (line 637) | func (b *DailyTaskScheduler) GetDailyTaskScheduler() *DailyTaskScheduler...
type BaseDailyTaskScheduler (line 639) | type BaseDailyTaskScheduler interface
function init (line 643) | func init() {
method GetDatacenterEvent (line 647) | func (b *DatacenterEvent) GetDatacenterEvent() *DatacenterEvent { return...
type BaseDatacenterEvent (line 649) | type BaseDatacenterEvent interface
function init (line 653) | func init() {
method GetDatastoreEvent (line 657) | func (b *DatastoreEvent) GetDatastoreEvent() *DatastoreEvent { return b }
type BaseDatastoreEvent (line 659) | type BaseDatastoreEvent interface
function init (line 663) | func init() {
method GetDatastoreFileEvent (line 667) | func (b *DatastoreFileEvent) GetDatastoreFileEvent() *DatastoreFileEvent...
type BaseDatastoreFileEvent (line 669) | type BaseDatastoreFileEvent interface
function init (line 673) | func init() {
method GetDatastoreInfo (line 677) | func (b *DatastoreInfo) GetDatastoreInfo() *DatastoreInfo { return b }
type BaseDatastoreInfo (line 679) | type BaseDatastoreInfo interface
function init (line 683) | func init() {
method GetDatastoreNotWritableOnHost (line 687) | func (b *DatastoreNotWritableOnHost) GetDatastoreNotWritableOnHost() *Da...
type BaseDatastoreNotWritableOnHost (line 691) | type BaseDatastoreNotWritableOnHost interface
function init (line 695) | func init() {
method GetDescription (line 699) | func (b *Description) GetDescription() *Description { return b }
type BaseDescription (line 701) | type BaseDescription interface
function init (line 705) | func init() {
method GetDeviceBackingNotSupported (line 709) | func (b *DeviceBackingNotSupported) GetDeviceBackingNotSupported() *Devi...
type BaseDeviceBackingNotSupported (line 713) | type BaseDeviceBackingNotSupported interface
function init (line 717) | func init() {
method GetDeviceNotSupported (line 721) | func (b *DeviceNotSupported) GetDeviceNotSupported() *DeviceNotSupported...
type BaseDeviceNotSupported (line 723) | type BaseDeviceNotSupported interface
function init (line 727) | func init() {
method GetDiskNotSupported (line 731) | func (b *DiskNotSupported) GetDiskNotSupported() *DiskNotSupported { ret...
type BaseDiskNotSupported (line 733) | type BaseDiskNotSupported interface
function init (line 737) | func init() {
method GetDistributedVirtualSwitchHostMemberBacking (line 741) | func (b *DistributedVirtualSwitchHostMemberBacking) GetDistributedVirtua...
type BaseDistributedVirtualSwitchHostMemberBacking (line 745) | type BaseDistributedVirtualSwitchHostMemberBacking interface
function init (line 749) | func init() {
method GetDistributedVirtualSwitchManagerHostDvsFilterSpec (line 753) | func (b *DistributedVirtualSwitchManagerHostDvsFilterSpec) GetDistribute...
type BaseDistributedVirtualSwitchManagerHostDvsFilterSpec (line 757) | type BaseDistributedVirtualSwitchManagerHostDvsFilterSpec interface
function init (line 761) | func init() {
method GetDvsEvent (line 765) | func (b *DvsEvent) GetDvsEvent() *DvsEvent { return b }
type BaseDvsEvent (line 767) | type BaseDvsEvent interface
function init (line 771) | func init() {
method GetDvsFault (line 775) | func (b *DvsFault) GetDvsFault() *DvsFault { return b }
type BaseDvsFault (line 777) | type BaseDvsFault interface
function init (line 781) | func init() {
method GetDvsFilterConfig (line 785) | func (b *DvsFilterConfig) GetDvsFilterConfig() *DvsFilterConfig { return...
type BaseDvsFilterConfig (line 787) | type BaseDvsFilterConfig interface
function init (line 791) | func init() {
method GetDvsHealthStatusChangeEvent (line 795) | func (b *DvsHealthStatusChangeEvent) GetDvsHealthStatusChangeEvent() *Dv...
type BaseDvsHealthStatusChangeEvent (line 799) | type BaseDvsHealthStatusChangeEvent interface
function init (line 803) | func init() {
method GetDvsIpPort (line 807) | func (b *DvsIpPort) GetDvsIpPort() *DvsIpPort { return b }
type BaseDvsIpPort (line 809) | type BaseDvsIpPort interface
function init (line 813) | func init() {
method GetDvsNetworkRuleAction (line 817) | func (b *DvsNetworkRuleAction) GetDvsNetworkRuleAction() *DvsNetworkRule...
type BaseDvsNetworkRuleAction (line 819) | type BaseDvsNetworkRuleAction interface
function init (line 823) | func init() {
method GetDvsNetworkRuleQualifier (line 827) | func (b *DvsNetworkRuleQualifier) GetDvsNetworkRuleQualifier() *DvsNetwo...
type BaseDvsNetworkRuleQualifier (line 829) | type BaseDvsNetworkRuleQualifier interface
function init (line 833) | func init() {
method GetDvsTrafficFilterConfig (line 837) | func (b *DvsTrafficFilterConfig) GetDvsTrafficFilterConfig() *DvsTraffic...
type BaseDvsTrafficFilterConfig (line 839) | type BaseDvsTrafficFilterConfig interface
function init (line 843) | func init() {
method GetDvsVNicProfile (line 847) | func (b *DvsVNicProfile) GetDvsVNicProfile() *DvsVNicProfile { return b }
type BaseDvsVNicProfile (line 849) | type BaseDvsVNicProfile interface
function init (line 853) | func init() {
method GetDynamicData (line 857) | func (b *DynamicData) GetDynamicData() *DynamicData { return b }
type BaseDynamicData (line 859) | type BaseDynamicData interface
function init (line 863) | func init() {
method GetEVCAdmissionFailed (line 867) | func (b *EVCAdmissionFailed) GetEVCAdmissionFailed() *EVCAdmissionFailed...
type BaseEVCAdmissionFailed (line 869) | type BaseEVCAdmissionFailed interface
function init (line 873) | func init() {
method GetEVCConfigFault (line 877) | func (b *EVCConfigFault) GetEVCConfigFault() *EVCConfigFault { return b }
type BaseEVCConfigFault (line 879) | type BaseEVCConfigFault interface
function init (line 883) | func init() {
method GetElementDescription (line 887) | func (b *ElementDescription) GetElementDescription() *ElementDescription...
type BaseElementDescription (line 889) | type BaseElementDescription interface
function init (line 893) | func init() {
method GetEnteredStandbyModeEvent (line 897) | func (b *EnteredStandbyModeEvent) GetEnteredStandbyModeEvent() *EnteredS...
type BaseEnteredStandbyModeEvent (line 899) | type BaseEnteredStandbyModeEvent interface
function init (line 903) | func init() {
method GetEnteringStandbyModeEvent (line 907) | func (b *EnteringStandbyModeEvent) GetEnteringStandbyModeEvent() *Enteri...
type BaseEnteringStandbyModeEvent (line 909) | type BaseEnteringStandbyModeEvent interface
function init (line 913) | func init() {
method GetEntityEventArgument (line 917) | func (b *EntityEventArgument) GetEntityEventArgument() *EntityEventArgum...
type BaseEntityEventArgument (line 919) | type BaseEntityEventArgument interface
function init (line 923) | func init() {
method GetEvent (line 927) | func (b *Event) GetEvent() *Event { return b }
type BaseEvent (line 929) | type BaseEvent interface
function init (line 933) | func init() {
method GetEventArgument (line 937) | func (b *EventArgument) GetEventArgument() *EventArgument { return b }
type BaseEventArgument (line 939) | type BaseEventArgument interface
function init (line 943) | func init() {
method GetExitStandbyModeFailedEvent (line 947) | func (b *ExitStandbyModeFailedEvent) GetExitStandbyModeFailedEvent() *Ex...
type BaseExitStandbyModeFailedEvent (line 951) | type BaseExitStandbyModeFailedEvent interface
function init (line 955) | func init() {
method GetExitedStandbyModeEvent (line 959) | func (b *ExitedStandbyModeEvent) GetExitedStandbyModeEvent() *ExitedStan...
type BaseExitedStandbyModeEvent (line 961) | type BaseExitedStandbyModeEvent interface
function init (line 965) | func init() {
method GetExitingStandbyModeEvent (line 969) | func (b *ExitingStandbyModeEvent) GetExitingStandbyModeEvent() *ExitingS...
type BaseExitingStandbyModeEvent (line 971) | type BaseExitingStandbyModeEvent interface
function init (line 975) | func init() {
method GetExpiredFeatureLicense (line 979) | func (b *ExpiredFeatureLicense) GetExpiredFeatureLicense() *ExpiredFeatu...
type BaseExpiredFeatureLicense (line 981) | type BaseExpiredFeatureLicense interface
function init (line 985) | func init() {
method GetFaultToleranceConfigInfo (line 989) | func (b *FaultToleranceConfigInfo) GetFaultToleranceConfigInfo() *FaultT...
type BaseFaultToleranceConfigInfo (line 991) | type BaseFaultToleranceConfigInfo interface
function init (line 995) | func init() {
method GetFcoeFault (line 999) | func (b *FcoeFault) GetFcoeFault() *FcoeFault { return b }
type BaseFcoeFault (line 1001) | type BaseFcoeFault interface
function init (line 1005) | func init() {
method GetFileBackedVirtualDiskSpec (line 1009) | func (b *FileBackedVirtualDiskSpec) GetFileBackedVirtualDiskSpec() *File...
type BaseFileBackedVirtualDiskSpec (line 1013) | type BaseFileBackedVirtualDiskSpec interface
function init (line 1017) | func init() {
method GetFileFault (line 1021) | func (b *FileFault) GetFileFault() *FileFault { return b }
type BaseFileFault (line 1023) | type BaseFileFault interface
function init (line 1027) | func init() {
method GetFileInfo (line 1031) | func (b *FileInfo) GetFileInfo() *FileInfo { return b }
type BaseFileInfo (line 1033) | type BaseFileInfo interface
function init (line 1037) | func init() {
method GetFileQuery (line 1041) | func (b *FileQuery) GetFileQuery() *FileQuery { return b }
type BaseFileQuery (line 1043) | type BaseFileQuery interface
function init (line 1047) | func init() {
method GetGatewayConnectFault (line 1051) | func (b *GatewayConnectFault) GetGatewayConnectFault() *GatewayConnectFa...
type BaseGatewayConnectFault (line 1053) | type BaseGatewayConnectFault interface
function init (line 1057) | func init() {
method GetGatewayToHostConnectFault (line 1061) | func (b *GatewayToHostConnectFault) GetGatewayToHostConnectFault() *Gate...
type BaseGatewayToHostConnectFault (line 1065) | type BaseGatewayToHostConnectFault interface
function init (line 1069) | func init() {
method GetGeneralEvent (line 1073) | func (b *GeneralEvent) GetGeneralEvent() *GeneralEvent { return b }
type BaseGeneralEvent (line 1075) | type BaseGeneralEvent interface
function init (line 1079) | func init() {
method GetGuestAuthSubject (line 1083) | func (b *GuestAuthSubject) GetGuestAuthSubject() *GuestAuthSubject { ret...
type BaseGuestAuthSubject (line 1085) | type BaseGuestAuthSubject interface
function init (line 1089) | func init() {
method GetGuestAuthentication (line 1093) | func (b *GuestAuthentication) GetGuestAuthentication() *GuestAuthenticat...
type BaseGuestAuthentication (line 1095) | type BaseGuestAuthentication interface
function init (line 1099) | func init() {
method GetGuestFileAttributes (line 1103) | func (b *GuestFileAttributes) GetGuestFileAttributes() *GuestFileAttribu...
type BaseGuestFileAttributes (line 1105) | type BaseGuestFileAttributes interface
function init (line 1109) | func init() {
method GetGuestOperationsFault (line 1113) | func (b *GuestOperationsFault) GetGuestOperationsFault() *GuestOperation...
type BaseGuestOperationsFault (line 1115) | type BaseGuestOperationsFault interface
function init (line 1119) | func init() {
method GetGuestProgramSpec (line 1123) | func (b *GuestProgramSpec) GetGuestProgramSpec() *GuestProgramSpec { ret...
type BaseGuestProgramSpec (line 1125) | type BaseGuestProgramSpec interface
function init (line 1129) | func init() {
method GetGuestRegValueDataSpec (line 1133) | func (b *GuestRegValueDataSpec) GetGuestRegValueDataSpec() *GuestRegValu...
type BaseGuestRegValueDataSpec (line 1135) | type BaseGuestRegValueDataSpec interface
function init (line 1139) | func init() {
method GetGuestRegistryFault (line 1143) | func (b *GuestRegistryFault) GetGuestRegistryFault() *GuestRegistryFault...
type BaseGuestRegistryFault (line 1145) | type BaseGuestRegistryFault interface
function init (line 1149) | func init() {
method GetGuestRegistryKeyFault (line 1153) | func (b *GuestRegistryKeyFault) GetGuestRegistryKeyFault() *GuestRegistr...
type BaseGuestRegistryKeyFault (line 1155) | type BaseGuestRegistryKeyFault interface
function init (line 1159) | func init() {
method GetGuestRegistryValueFault (line 1163) | func (b *GuestRegistryValueFault) GetGuestRegistryValueFault() *GuestReg...
type BaseGuestRegistryValueFault (line 1165) | type BaseGuestRegistryValueFault interface
function init (line 1169) | func init() {
method GetHostAccountSpec (line 1173) | func (b *HostAccountSpec) GetHostAccountSpec() *HostAccountSpec { return...
type BaseHostAccountSpec (line 1175) | type BaseHostAccountSpec interface
function init (line 1179) | func init() {
method GetHostAuthenticationStoreInfo (line 1183) | func (b *HostAuthenticationStoreInfo) GetHostAuthenticationStoreInfo() *...
type BaseHostAuthenticationStoreInfo (line 1187) | type BaseHostAuthenticationStoreInfo interface
function init (line 1191) | func init() {
method GetHostCommunication (line 1195) | func (b *HostCommunication) GetHostCommunication() *HostCommunication { ...
type BaseHostCommunication (line 1197) | type BaseHostCommunication interface
function init (line 1201) | func init() {
method GetHostConfigFault (line 1205) | func (b *HostConfigFault) GetHostConfigFault() *HostConfigFault { return...
type BaseHostConfigFault (line 1207) | type BaseHostConfigFault interface
function init (line 1211) | func init() {
method GetHostConnectFault (line 1215) | func (b *HostConnectFault) GetHostConnectFault() *HostConnectFault { ret...
type BaseHostConnectFault (line 1217) | type BaseHostConnectFault interface
function init (line 1221) | func init() {
method GetHostConnectInfoNetworkInfo (line 1225) | func (b *HostConnectInfoNetworkInfo) GetHostConnectInfoNetworkInfo() *Ho...
type BaseHostConnectInfoNetworkInfo (line 1229) | type BaseHostConnectInfoNetworkInfo interface
function init (line 1233) | func init() {
method GetHostDasEvent (line 1237) | func (b *HostDasEvent) GetHostDasEvent() *HostDasEvent { return b }
type BaseHostDasEvent (line 1239) | type BaseHostDasEvent interface
function init (line 1243) | func init() {
method GetHostDatastoreConnectInfo (line 1247) | func (b *HostDatastoreConnectInfo) GetHostDatastoreConnectInfo() *HostDa...
type BaseHostDatastoreConnectInfo (line 1249) | type BaseHostDatastoreConnectInfo interface
function init (line 1253) | func init() {
method GetHostDevice (line 1257) | func (b *HostDevice) GetHostDevice() *HostDevice { return b }
type BaseHostDevice (line 1259) | type BaseHostDevice interface
function init (line 1263) | func init() {
method GetHostDigestInfo (line 1267) | func (b *HostDigestInfo) GetHostDigestInfo() *HostDigestInfo { return b }
type BaseHostDigestInfo (line 1269) | type BaseHostDigestInfo interface
function init (line 1273) | func init() {
method GetHostDirectoryStoreInfo (line 1277) | func (b *HostDirectoryStoreInfo) GetHostDirectoryStoreInfo() *HostDirect...
type BaseHostDirectoryStoreInfo (line 1279) | type BaseHostDirectoryStoreInfo interface
function init (line 1283) | func init() {
method GetHostDnsConfig (line 1287) | func (b *HostDnsConfig) GetHostDnsConfig() *HostDnsConfig { return b }
type BaseHostDnsConfig (line 1289) | type BaseHostDnsConfig interface
function init (line 1293) | func init() {
method GetHostEvent (line 1297) | func (b *HostEvent) GetHostEvent() *HostEvent { return b }
type BaseHostEvent (line 1299) | type BaseHostEvent interface
function init (line 1303) | func init() {
method GetHostFibreChannelHba (line 1307) | func (b *HostFibreChannelHba) GetHostFibreChannelHba() *HostFibreChannel...
type BaseHostFibreChannelHba (line 1309) | type BaseHostFibreChannelHba interface
function init (line 1313) | func init() {
method GetHostFibreChannelTargetTransport (line 1317) | func (b *HostFibreChannelTargetTransport) GetHostFibreChannelTargetTrans...
type BaseHostFibreChannelTargetTransport (line 1321) | type BaseHostFibreChannelTargetTransport interface
function init (line 1325) | func init() {
method GetHostFileSystemVolume (line 1329) | func (b *HostFileSystemVolume) GetHostFileSystemVolume() *HostFileSystem...
type BaseHostFileSystemVolume (line 1331) | type BaseHostFileSystemVolume interface
function init (line 1335) | func init() {
method GetHostHardwareElementInfo (line 1339) | func (b *HostHardwareElementInfo) GetHostHardwareElementInfo() *HostHard...
type BaseHostHardwareElementInfo (line 1341) | type BaseHostHardwareElementInfo interface
function init (line 1345) | func init() {
method GetHostHostBusAdapter (line 1349) | func (b *HostHostBusAdapter) GetHostHostBusAdapter() *HostHostBusAdapter...
type BaseHostHostBusAdapter (line 1351) | type BaseHostHostBusAdapter interface
function init (line 1355) | func init() {
method GetHostIpRouteConfig (line 1359) | func (b *HostIpRouteConfig) GetHostIpRouteConfig() *HostIpRouteConfig { ...
type BaseHostIpRouteConfig (line 1361) | type BaseHostIpRouteConfig interface
function init (line 1365) | func init() {
method GetHostMemberHealthCheckResult (line 1369) | func (b *HostMemberHealthCheckResult) GetHostMemberHealthCheckResult() *...
type BaseHostMemberHealthCheckResult (line 1373) | type BaseHostMemberHealthCheckResult interface
function init (line 1377) | func init() {
method GetHostMemberUplinkHealthCheckResult (line 1381) | func (b *HostMemberUplinkHealthCheckResult) GetHostMemberUplinkHealthChe...
type BaseHostMemberUplinkHealthCheckResult (line 1385) | type BaseHostMemberUplinkHealthCheckResult interface
function init (line 1389) | func init() {
method GetHostMultipathInfoLogicalUnitPolicy (line 1393) | func (b *HostMultipathInfoLogicalUnitPolicy) GetHostMultipathInfoLogical...
type BaseHostMultipathInfoLogicalUnitPolicy (line 1397) | type BaseHostMultipathInfoLogicalUnitPolicy interface
function init (line 1401) | func init() {
method GetHostPciPassthruConfig (line 1405) | func (b *HostPciPassthruConfig) GetHostPciPassthruConfig() *HostPciPasst...
type BaseHostPciPassthruConfig (line 1407) | type BaseHostPciPassthruConfig interface
function init (line 1411) | func init() {
method GetHostPciPassthruInfo (line 1415) | func (b *HostPciPassthruInfo) GetHostPciPassthruInfo() *HostPciPassthruI...
type BaseHostPciPassthruInfo (line 1417) | type BaseHostPciPassthruInfo interface
function init (line 1421) | func init() {
method GetHostPowerOpFailed (line 1425) | func (b *HostPowerOpFailed) GetHostPowerOpFailed() *HostPowerOpFailed { ...
type BaseHostPowerOpFailed (line 1427) | type BaseHostPowerOpFailed interface
function init (line 1431) | func init() {
method GetHostProfileConfigSpec (line 1435) | func (b *HostProfileConfigSpec) GetHostProfileConfigSpec() *HostProfileC...
type BaseHostProfileConfigSpec (line 1437) | type BaseHostProfileConfigSpec interface
function init (line 1441) | func init() {
method GetHostProfilesEntityCustomizations (line 1445) | func (b *HostProfilesEntityCustomizations) GetHostProfilesEntityCustomiz...
type BaseHostProfilesEntityCustomizations (line 1449) | type BaseHostProfilesEntityCustomizations interface
function init (line 1453) | func init() {
method GetHostSriovDevicePoolInfo (line 1457) | func (b *HostSriovDevicePoolInfo) GetHostSriovDevicePoolInfo() *HostSrio...
type BaseHostSriovDevicePoolInfo (line 1459) | type BaseHostSriovDevicePoolInfo interface
function init (line 1463) | func init() {
method GetHostSystemSwapConfigurationSystemSwapOption (line 1467) | func (b *HostSystemSwapConfigurationSystemSwapOption) GetHostSystemSwapC...
type BaseHostSystemSwapConfigurationSystemSwapOption (line 1471) | type BaseHostSystemSwapConfigurationSystemSwapOption interface
function init (line 1475) | func init() {
method GetHostTargetTransport (line 1479) | func (b *HostTargetTransport) GetHostTargetTransport() *HostTargetTransp...
type BaseHostTargetTransport (line 1481) | type BaseHostTargetTransport interface
function init (line 1485) | func init() {
method GetHostTpmEventDetails (line 1489) | func (b *HostTpmEventDetails) GetHostTpmEventDetails() *HostTpmEventDeta...
type BaseHostTpmEventDetails (line 1491) | type BaseHostTpmEventDetails interface
function init (line 1495) | func init() {
method GetHostVirtualSwitchBridge (line 1499) | func (b *HostVirtualSwitchBridge) GetHostVirtualSwitchBridge() *HostVirt...
type BaseHostVirtualSwitchBridge (line 1501) | type BaseHostVirtualSwitchBridge interface
function init (line 1505) | func init() {
method GetHourlyTaskScheduler (line 1509) | func (b *HourlyTaskScheduler) GetHourlyTaskScheduler() *HourlyTaskSchedu...
type BaseHourlyTaskScheduler (line 1511) | type BaseHourlyTaskScheduler interface
function init (line 1515) | func init() {
method GetImportSpec (line 1519) | func (b *ImportSpec) GetImportSpec() *ImportSpec { return b }
type BaseImportSpec (line 1521) | type BaseImportSpec interface
function init (line 1525) | func init() {
method GetInaccessibleDatastore (line 1529) | func (b *InaccessibleDatastore) GetInaccessibleDatastore() *Inaccessible...
type BaseInaccessibleDatastore (line 1531) | type BaseInaccessibleDatastore interface
function init (line 1535) | func init() {
method GetInheritablePolicy (line 1539) | func (b *InheritablePolicy) GetInheritablePolicy() *InheritablePolicy { ...
type BaseInheritablePolicy (line 1541) | type BaseInheritablePolicy interface
function init (line 1545) | func init() {
method GetInsufficientHostCapacityFault (line 1549) | func (b *InsufficientHostCapacityFault) GetInsufficientHostCapacityFault...
type BaseInsufficientHostCapacityFault (line 1553) | type BaseInsufficientHostCapacityFault interface
function init (line 1557) | func init() {
method GetInsufficientResourcesFault (line 1561) | func (b *InsufficientResourcesFault) GetInsufficientResourcesFault() *In...
type BaseInsufficientResourcesFault (line 1565) | type BaseInsufficientResourcesFault interface
function init (line 1569) | func init() {
method GetInsufficientStandbyResource (line 1573) | func (b *InsufficientStandbyResource) GetInsufficientStandbyResource() *...
type BaseInsufficientStandbyResource (line 1577) | type BaseInsufficientStandbyResource interface
function init (line 1581) | func init() {
method GetInvalidArgument (line 1585) | func (b *InvalidArgument) GetInvalidArgument() *InvalidArgument { return...
type BaseInvalidArgument (line 1587) | type BaseInvalidArgument interface
function init (line 1591) | func init() {
method GetInvalidCAMServer (line 1595) | func (b *InvalidCAMServer) GetInvalidCAMServer() *InvalidCAMServer { ret...
type BaseInvalidCAMServer (line 1597) | type BaseInvalidCAMServer interface
function init (line 1601) | func init() {
method GetInvalidDatastore (line 1605) | func (b *InvalidDatastore) GetInvalidDatastore() *InvalidDatastore { ret...
type BaseInvalidDatastore (line 1607) | type BaseInvalidDatastore interface
function init (line 1611) | func init() {
method GetInvalidDeviceSpec (line 1615) | func (b *InvalidDeviceSpec) GetInvalidDeviceSpec() *InvalidDeviceSpec { ...
type BaseInvalidDeviceSpec (line 1617) | type BaseInvalidDeviceSpec interface
function init (line 1621) | func init() {
method GetInvalidFolder (line 1625) | func (b *InvalidFolder) GetInvalidFolder() *InvalidFolder { return b }
type BaseInvalidFolder (line 1627) | type BaseInvalidFolder interface
function init (line 1631) | func init() {
method GetInvalidFormat (line 1635) | func (b *InvalidFormat) GetInvalidFormat() *InvalidFormat { return b }
type BaseInvalidFormat (line 1637) | type BaseInvalidFormat interface
function init (line 1641) | func init() {
method GetInvalidHostState (line 1645) | func (b *InvalidHostState) GetInvalidHostState() *InvalidHostState { ret...
type BaseInvalidHostState (line 1647) | type BaseInvalidHostState interface
function init (line 1651) | func init() {
method GetInvalidLogin (line 1655) | func (b *InvalidLogin) GetInvalidLogin() *InvalidLogin { return b }
type BaseInvalidLogin (line 1657) | type BaseInvalidLogin interface
function init (line 1661) | func init() {
method GetInvalidPropertyValue (line 1665) | func (b *InvalidPropertyValue) GetInvalidPropertyValue() *InvalidPropert...
type BaseInvalidPropertyValue (line 1667) | type BaseInvalidPropertyValue interface
function init (line 1671) | func init() {
method GetInvalidRequest (line 1675) | func (b *InvalidRequest) GetInvalidRequest() *InvalidRequest { return b }
type BaseInvalidRequest (line 1677) | type BaseInvalidRequest interface
function init (line 1681) | func init() {
method GetInvalidState (line 1685) | func (b *InvalidState) GetInvalidState() *InvalidState { return b }
type BaseInvalidState (line 1687) | type BaseInvalidState interface
function init (line 1691) | func init() {
method GetInvalidVmConfig (line 1695) | func (b *InvalidVmConfig) GetInvalidVmConfig() *InvalidVmConfig { return...
type BaseInvalidVmConfig (line 1697) | type BaseInvalidVmConfig interface
function init (line 1701) | func init() {
method GetIoFilterInfo (line 1705) | func (b *IoFilterInfo) GetIoFilterInfo() *IoFilterInfo { return b }
type BaseIoFilterInfo (line 1707) | type BaseIoFilterInfo interface
function init (line 1711) | func init() {
method GetIpAddress (line 1715) | func (b *IpAddress) GetIpAddress() *IpAddress { return b }
type BaseIpAddress (line 1717) | type BaseIpAddress interface
function init (line 1721) | func init() {
method GetIscsiFault (line 1725) | func (b *IscsiFault) GetIscsiFault() *IscsiFault { return b }
type BaseIscsiFault (line 1727) | type BaseIscsiFault interface
function init (line 1731) | func init() {
method GetLicenseEvent (line 1735) | func (b *LicenseEvent) GetLicenseEvent() *LicenseEvent { return b }
type BaseLicenseEvent (line 1737) | type BaseLicenseEvent interface
function init (line 1741) | func init() {
method GetLicenseSource (line 1745) | func (b *LicenseSource) GetLicenseSource() *LicenseSource { return b }
type BaseLicenseSource (line 1747) | type BaseLicenseSource interface
function init (line 1751) | func init() {
method GetMacAddress (line 1755) | func (b *MacAddress) GetMacAddress() *MacAddress { return b }
type BaseMacAddress (line 1757) | type BaseMacAddress interface
function init (line 1761) | func init() {
method GetMethodFault (line 1765) | func (b *MethodFault) GetMethodFault() *MethodFault { return b }
type BaseMethodFault (line 1767) | type BaseMethodFault interface
function init (line 1771) | func init() {
method GetMigrationEvent (line 1775) | func (b *MigrationEvent) GetMigrationEvent() *MigrationEvent { return b }
type BaseMigrationEvent (line 1777) | type BaseMigrationEvent interface
function init (line 1781) | func init() {
method GetMigrationFault (line 1785) | func (b *MigrationFault) GetMigrationFault() *MigrationFault { return b }
type BaseMigrationFault (line 1787) | type BaseMigrationFault interface
function init (line 1791) | func init() {
method GetMigrationFeatureNotSupported (line 1795) | func (b *MigrationFeatureNotSupported) GetMigrationFeatureNotSupported()...
type BaseMigrationFeatureNotSupported (line 1799) | type BaseMigrationFeatureNotSupported interface
function init (line 1803) | func init() {
method GetMonthlyTaskScheduler (line 1807) | func (b *MonthlyTaskScheduler) GetMonthlyTaskScheduler() *MonthlyTaskSch...
type BaseMonthlyTaskScheduler (line 1809) | type BaseMonthlyTaskScheduler interface
function init (line 1813) | func init() {
method GetNasConfigFault (line 1817) | func (b *NasConfigFault) GetNasConfigFault() *NasConfigFault { return b }
type BaseNasConfigFault (line 1819) | type BaseNasConfigFault interface
function init (line 1823) | func init() {
method GetNegatableExpression (line 1827) | func (b *NegatableExpression) GetNegatableExpression() *NegatableExpress...
type BaseNegatableExpression (line 1829) | type BaseNegatableExpression interface
function init (line 1833) | func init() {
method GetNetBIOSConfigInfo (line 1837) | func (b *NetBIOSConfigInfo) GetNetBIOSConfigInfo() *NetBIOSConfigInfo { ...
type BaseNetBIOSConfigInfo (line 1839) | type BaseNetBIOSConfigInfo interface
function init (line 1843) | func init() {
method GetNetworkSummary (line 1847) | func (b *NetworkSummary) GetNetworkSummary() *NetworkSummary { return b }
type BaseNetworkSummary (line 1849) | type BaseNetworkSummary interface
function init (line 1853) | func init() {
method GetNoCompatibleHost (line 1857) | func (b *NoCompatibleHost) GetNoCompatibleHost() *NoCompatibleHost { ret...
type BaseNoCompatibleHost (line 1859) | type BaseNoCompatibleHost interface
function init (line 1863) | func init() {
method GetNoPermission (line 1867) | func (b *NoPermission) GetNoPermission() *NoPermission { return b }
type BaseNoPermission (line 1869) | type BaseNoPermission interface
function init (line 1873) | func init() {
method GetNodeDeploymentSpec (line 1877) | func (b *NodeDeploymentSpec) GetNodeDeploymentSpec() *NodeDeploymentSpec...
type BaseNodeDeploymentSpec (line 1879) | type BaseNodeDeploymentSpec interface
function init (line 1883) | func init() {
method GetNodeNetworkSpec (line 1887) | func (b *NodeNetworkSpec) GetNodeNetworkSpec() *NodeNetworkSpec { return...
type BaseNodeNetworkSpec (line 1889) | type BaseNodeNetworkSpec interface
function init (line 1893) | func init() {
method GetNotEnoughCpus (line 1897) | func (b *NotEnoughCpus) GetNotEnoughCpus() *NotEnoughCpus { return b }
type BaseNotEnoughCpus (line 1899) | type BaseNotEnoughCpus interface
function init (line 1903) | func init() {
method GetNotEnoughLicenses (line 1907) | func (b *NotEnoughLicenses) GetNotEnoughLicenses() *NotEnoughLicenses { ...
type BaseNotEnoughLicenses (line 1909) | type BaseNotEnoughLicenses interface
function init (line 1913) | func init() {
method GetNotSupported (line 1917) | func (b *NotSupported) GetNotSupported() *NotSupported { return b }
type BaseNotSupported (line 1919) | type BaseNotSupported interface
function init (line 1923) | func init() {
method GetNotSupportedHost (line 1927) | func (b *NotSupportedHost) GetNotSupportedHost() *NotSupportedHost { ret...
type BaseNotSupportedHost (line 1929) | type BaseNotSupportedHost interface
function init (line 1933) | func init() {
method GetNotSupportedHostInCluster (line 1937) | func (b *NotSupportedHostInCluster) GetNotSupportedHostInCluster() *NotS...
type BaseNotSupportedHostInCluster (line 1941) | type BaseNotSupportedHostInCluster interface
function init (line 1945) | func init() {
method GetOptionType (line 1949) | func (b *OptionType) GetOptionType() *OptionType { return b }
type BaseOptionType (line 1951) | type BaseOptionType interface
function init (line 1955) | func init() {
method GetOptionValue (line 1959) | func (b *OptionValue) GetOptionValue() *OptionValue { return b }
type BaseOptionValue (line 1961) | type BaseOptionValue interface
function init (line 1965) | func init() {
method GetOvfAttribute (line 1969) | func (b *OvfAttribute) GetOvfAttribute() *OvfAttribute { return b }
type BaseOvfAttribute (line 1971) | type BaseOvfAttribute interface
function init (line 1975) | func init() {
method GetOvfConnectedDevice (line 1979) | func (b *OvfConnectedDevice) GetOvfConnectedDevice() *OvfConnectedDevice...
type BaseOvfConnectedDevice (line 1981) | type BaseOvfConnectedDevice interface
function init (line 1985) | func init() {
method GetOvfConstraint (line 1989) | func (b *OvfConstraint) GetOvfConstraint() *OvfConstraint { return b }
type BaseOvfConstraint (line 1991) | type BaseOvfConstraint interface
function init (line 1995) | func init() {
method GetOvfConsumerCallbackFault (line 1999) | func (b *OvfConsumerCallbackFault) GetOvfConsumerCallbackFault() *OvfCon...
type BaseOvfConsumerCallbackFault (line 2001) | type BaseOvfConsumerCallbackFault interface
function init (line 2005) | func init() {
method GetOvfElement (line 2009) | func (b *OvfElement) GetOvfElement() *OvfElement { return b }
type BaseOvfElement (line 2011) | type BaseOvfElement interface
function init (line 2015) | func init() {
method GetOvfExport (line 2019) | func (b *OvfExport) GetOvfExport() *OvfExport { return b }
type BaseOvfExport (line 2021) | type BaseOvfExport interface
function init (line 2025) | func init() {
method GetOvfFault (line 2029) | func (b *OvfFault) GetOvfFault() *OvfFault { return b }
type BaseOvfFault (line 2031) | type BaseOvfFault interface
function init (line 2035) | func init() {
method GetOvfHardwareExport (line 2039) | func (b *OvfHardwareExport) GetOvfHardwareExport() *OvfHardwareExport { ...
type BaseOvfHardwareExport (line 2041) | type BaseOvfHardwareExport interface
function init (line 2045) | func init() {
method GetOvfImport (line 2049) | func (b *OvfImport) GetOvfImport() *OvfImport { return b }
type BaseOvfImport (line 2051) | type BaseOvfImport interface
function init (line 2055) | func init() {
method GetOvfInvalidPackage (line 2059) | func (b *OvfInvalidPackage) GetOvfInvalidPackage() *OvfInvalidPackage { ...
type BaseOvfInvalidPackage (line 2061) | type BaseOvfInvalidPackage interface
function init (line 2065) | func init() {
method GetOvfInvalidValue (line 2069) | func (b *OvfInvalidValue) GetOvfInvalidValue() *OvfInvalidValue { return...
type BaseOvfInvalidValue (line 2071) | type BaseOvfInvalidValue interface
function init (line 2075) | func init() {
method GetOvfManagerCommonParams (line 2079) | func (b *OvfManagerCommonParams) GetOvfManagerCommonParams() *OvfManager...
type BaseOvfManagerCommonParams (line 2081) | type BaseOvfManagerCommonParams interface
function init (line 2085) | func init() {
method GetOvfMissingElement (line 2089) | func (b *OvfMissingElement) GetOvfMissingElement() *OvfMissingElement { ...
type BaseOvfMissingElement (line 2091) | type BaseOvfMissingElement interface
function init (line 2095) | func init() {
method GetOvfProperty (line 2099) | func (b *OvfProperty) GetOvfProperty() *OvfProperty { return b }
type BaseOvfProperty (line 2101) | type BaseOvfProperty interface
function init (line 2105) | func init() {
method GetOvfSystemFault (line 2109) | func (b *OvfSystemFault) GetOvfSystemFault() *OvfSystemFault { return b }
type BaseOvfSystemFault (line 2111) | type BaseOvfSystemFault interface
function init (line 2115) | func init() {
method GetOvfUnsupportedAttribute (line 2119) | func (b *OvfUnsupportedAttribute) GetOvfUnsupportedAttribute() *OvfUnsup...
type BaseOvfUnsupportedAttribute (line 2121) | type BaseOvfUnsupportedAttribute interface
function init (line 2125) | func init() {
method GetOvfUnsupportedElement (line 2129) | func (b *OvfUnsupportedElement) GetOvfUnsupportedElement() *OvfUnsupport...
type BaseOvfUnsupportedElement (line 2131) | type BaseOvfUnsupportedElement interface
function init (line 2135) | func init() {
method GetOvfUnsupportedPackage (line 2139) | func (b *OvfUnsupportedPackage) GetOvfUnsupportedPackage() *OvfUnsupport...
type BaseOvfUnsupportedPackage (line 2141) | type BaseOvfUnsupportedPackage interface
function init (line 2145) | func init() {
method GetPatchMetadataInvalid (line 2149) | func (b *PatchMetadataInvalid) GetPatchMetadataInvalid() *PatchMetadataI...
type BasePatchMetadataInvalid (line 2151) | type BasePatchMetadataInvalid interface
function init (line 2155) | func init() {
method GetPatchNotApplicable (line 2159) | func (b *PatchNotApplicable) GetPatchNotApplicable() *PatchNotApplicable...
type BasePatchNotApplicable (line 2161) | type BasePatchNotApplicable interface
function init (line 2165) | func init() {
method GetPerfEntityMetricBase (line 2169) | func (b *PerfEntityMetricBase) GetPerfEntityMetricBase() *PerfEntityMetr...
type BasePerfEntityMetricBase (line 2171) | type BasePerfEntityMetricBase interface
function init (line 2175) | func init() {
method GetPerfMetricSeries (line 2179) | func (b *PerfMetricSeries) GetPerfMetricSeries() *PerfMetricSeries { ret...
type BasePerfMetricSeries (line 2181) | type BasePerfMetricSeries interface
function init (line 2185) | func init() {
method GetPermissionEvent (line 2189) | func (b *PermissionEvent) GetPermissionEvent() *PermissionEvent { return...
type BasePermissionEvent (line 2191) | type BasePermissionEvent interface
function init (line 2195) | func init() {
method GetPhysicalNicHint (line 2199) | func (b *PhysicalNicHint) GetPhysicalNicHint() *PhysicalNicHint { return...
type BasePhysicalNicHint (line 2201) | type BasePhysicalNicHint interface
function init (line 2205) | func init() {
method GetPlatformConfigFault (line 2209) | func (b *PlatformConfigFault) GetPlatformConfigFault() *PlatformConfigFa...
type BasePlatformConfigFault (line 2211) | type BasePlatformConfigFault interface
function init (line 2215) | func init() {
method GetPolicyOption (line 2219) | func (b *PolicyOption) GetPolicyOption() *PolicyOption { return b }
type BasePolicyOption (line 2221) | type BasePolicyOption interface
function init (line 2225) | func init() {
method GetPortGroupProfile (line 2229) | func (b *PortGroupProfile) GetPortGroupProfile() *PortGroupProfile { ret...
type BasePortGroupProfile (line 2231) | type BasePortGroupProfile interface
function init (line 2235) | func init() {
method GetProfileConfigInfo (line 2239) | func (b *ProfileConfigInfo) GetProfileConfigInfo() *ProfileConfigInfo { ...
type BaseProfileConfigInfo (line 2241) | type BaseProfileConfigInfo interface
function init (line 2245) | func init() {
method GetProfileCreateSpec (line 2249) | func (b *ProfileCreateSpec) GetProfileCreateSpec() *ProfileCreateSpec { ...
type BaseProfileCreateSpec (line 2251) | type BaseProfileCreateSpec interface
function init (line 2255) | func init() {
method GetProfileEvent (line 2259) | func (b *ProfileEvent) GetProfileEvent() *ProfileEvent { return b }
type BaseProfileEvent (line 2261) | type BaseProfileEvent interface
function init (line 2265) | func init() {
method GetProfileExecuteResult (line 2269) | func (b *ProfileExecuteResult) GetProfileExecuteResult() *ProfileExecute...
type BaseProfileExecuteResult (line 2271) | type BaseProfileExecuteResult interface
function init (line 2275) | func init() {
method GetProfileExpression (line 2279) | func (b *ProfileExpression) GetProfileExpression() *ProfileExpression { ...
type BaseProfileExpression (line 2281) | type BaseProfileExpression interface
function init (line 2285) | func init() {
method GetProfilePolicyOptionMetadata (line 2289) | func (b *ProfilePolicyOptionMetadata) GetProfilePolicyOptionMetadata() *...
type BaseProfilePolicyOptionMetadata (line 2293) | type BaseProfilePolicyOptionMetadata interface
function init (line 2297) | func init() {
method GetProfileSerializedCreateSpec (line 2301) | func (b *ProfileSerializedCreateSpec) GetProfileSerializedCreateSpec() *...
type BaseProfileSerializedCreateSpec (line 2305) | type BaseProfileSerializedCreateSpec interface
function init (line 2309) | func init() {
method GetRDMNotSupported (line 2313) | func (b *RDMNotSupported) GetRDMNotSupported() *RDMNotSupported { return...
type BaseRDMNotSupported (line 2315) | type BaseRDMNotSupported interface
function init (line 2319) | func init() {
method GetRecurrentTaskScheduler (line 2323) | func (b *RecurrentTaskScheduler) GetRecurrentTaskScheduler() *RecurrentT...
type BaseRecurrentTaskScheduler (line 2325) | type BaseRecurrentTaskScheduler interface
function init (line 2329) | func init() {
method GetReplicationConfigFault (line 2333) | func (b *ReplicationConfigFault) GetReplicationConfigFault() *Replicatio...
type BaseReplicationConfigFault (line 2335) | type BaseReplicationConfigFault interface
function init (line 2339) | func init() {
method GetReplicationFault (line 2343) | func (b *ReplicationFault) GetReplicationFault() *ReplicationFault { ret...
type BaseReplicationFault (line 2345) | type BaseReplicationFault interface
function init (line 2349) | func init() {
method GetReplicationVmFault (line 2353) | func (b *ReplicationVmFault) GetReplicationVmFault() *ReplicationVmFault...
type BaseReplicationVmFault (line 2355) | type BaseReplicationVmFault interface
function init (line 2359) | func init() {
method GetResourceAllocationInfo (line 2363) | func (b *ResourceAllocationInfo) GetResourceAllocationInfo() *ResourceAl...
type BaseResourceAllocationInfo (line 2365) | type BaseResourceAllocationInfo interface
function init (line 2369) | func init() {
method GetResourceInUse (line 2373) | func (b *ResourceInUse) GetResourceInUse() *ResourceInUse { return b }
type BaseResourceInUse (line 2375) | type BaseResourceInUse interface
function init (line 2379) | func init() {
method GetResourcePoolEvent (line 2383) | func (b *ResourcePoolEvent) GetResourcePoolEvent() *ResourcePoolEvent { ...
type BaseResourcePoolEvent (line 2385) | type BaseResourcePoolEvent interface
function init (line 2389) | func init() {
method GetResourcePoolSummary (line 2393) | func (b *ResourcePoolSummary) GetResourcePoolSummary() *ResourcePoolSumm...
type BaseResourcePoolSummary (line 2395) | type BaseResourcePoolSummary interface
function init (line 2399) | func init() {
method GetRoleEvent (line 2403) | func (b *RoleEvent) GetRoleEvent() *RoleEvent { return b }
type BaseRoleEvent (line 2405) | type BaseRoleEvent interface
function init (line 2409) | func init() {
method GetRuntimeFault (line 2413) | func (b *RuntimeFault) GetRuntimeFault() *RuntimeFault { return b }
type BaseRuntimeFault (line 2415) | type BaseRuntimeFault interface
function init (line 2419) | func init() {
method GetScheduledTaskEvent (line 2423) | func (b *ScheduledTaskEvent) GetScheduledTaskEvent() *ScheduledTaskEvent...
type BaseScheduledTaskEvent (line 2425) | type BaseScheduledTaskEvent interface
function init (line 2429) | func init() {
method GetScheduledTaskSpec (line 2433) | func (b *ScheduledTaskSpec) GetScheduledTaskSpec() *ScheduledTaskSpec { ...
type BaseScheduledTaskSpec (line 2435) | type BaseScheduledTaskSpec interface
function init (line 2439) | func init() {
method GetScsiLun (line 2443) | func (b *ScsiLun) GetScsiLun() *ScsiLun { return b }
type BaseScsiLun (line 2445) | type BaseScsiLun interface
function init (line 2449) | func init() {
method GetSecurityError (line 2453) | func (b *SecurityError) GetSecurityError() *SecurityError { return b }
type BaseSecurityError (line 2455) | type BaseSecurityError interface
function init (line 2459) | func init() {
method GetSelectionSet (line 2463) | func (b *SelectionSet) GetSelectionSet() *SelectionSet { return b }
type BaseSelectionSet (line 2465) | type BaseSelectionSet interface
function init (line 2469) | func init() {
method GetSelectionSpec (line 2473) | func (b *SelectionSpec) GetSelectionSpec() *SelectionSpec { return b }
type BaseSelectionSpec (line 2475) | type BaseSelectionSpec interface
function init (line 2479) | func init() {
method GetServiceLocatorCredential (line 2483) | func (b *ServiceLocatorCredential) GetServiceLocatorCredential() *Servic...
type BaseServiceLocatorCredential (line 2485) | type BaseServiceLocatorCredential interface
function init (line 2489) | func init() {
method GetSessionEvent (line 2493) | func (b *SessionEvent) GetSessionEvent() *SessionEvent { return b }
type BaseSessionEvent (line 2495) | type BaseSessionEvent interface
function init (line 2499) | func init() {
method GetSessionManagerServiceRequestSpec (line 2503) | func (b *SessionManagerServiceRequestSpec) GetSessionManagerServiceReque...
type BaseSessionManagerServiceRequestSpec (line 2507) | type BaseSessionManagerServiceRequestSpec interface
function init (line 2511) | func init() {
method GetSnapshotCopyNotSupported (line 2515) | func (b *SnapshotCopyNotSupported) GetSnapshotCopyNotSupported() *Snapsh...
type BaseSnapshotCopyNotSupported (line 2517) | type BaseSnapshotCopyNotSupported interface
function init (line 2521) | func init() {
method GetSnapshotFault (line 2525) | func (b *SnapshotFault) GetSnapshotFault() *SnapshotFault { return b }
type BaseSnapshotFault (line 2527) | type BaseSnapshotFault interface
function init (line 2531) | func init() {
method GetTaskEvent (line 2535) | func (b *TaskEvent) GetTaskEvent() *TaskEvent { return b }
type BaseTaskEvent (line 2537) | type BaseTaskEvent interface
function init (line 2541) | func init() {
method GetTaskInProgress (line 2545) | func (b *TaskInProgress) GetTaskInProgress() *TaskInProgress { return b }
type BaseTaskInProgress (line 2547) | type BaseTaskInProgress interface
function init (line 2551) | func init() {
method GetTaskReason (line 2555) | func (b *TaskReason) GetTaskReason() *TaskReason { return b }
type BaseTaskReason (line 2557) | type BaseTaskReason interface
function init (line 2561) | func init() {
method GetTaskScheduler (line 2565) | func (b *TaskScheduler) GetTaskScheduler() *TaskScheduler { return b }
type BaseTaskScheduler (line 2567) | type BaseTaskScheduler interface
function init (line 2571) | func init() {
method GetTemplateUpgradeEvent (line 2575) | func (b *TemplateUpgradeEvent) GetTemplateUpgradeEvent() *TemplateUpgrad...
type BaseTemplateUpgradeEvent (line 2577) | type BaseTemplateUpgradeEvent interface
function init (line 2581) | func init() {
method GetTimedout (line 2585) | func (b *Timedout) GetTimedout() *Timedout { return b }
type BaseTimedout (line 2587) | type BaseTimedout interface
function init (line 2591) | func init() {
method GetTypeDescription (line 2595) | func (b *TypeDescription) GetTypeDescription() *TypeDescription { return...
type BaseTypeDescription (line 2597) | type BaseTypeDescription interface
function init (line 2601) | func init() {
method GetUnsupportedDatastore (line 2605) | func (b *UnsupportedDatastore) GetUnsupportedDatastore() *UnsupportedDat...
type BaseUnsupportedDatastore (line 2607) | type BaseUnsupportedDatastore interface
function init (line 2611) | func init() {
method GetUpgradeEvent (line 2615) | func (b *UpgradeEvent) GetUpgradeEvent() *UpgradeEvent { return b }
type BaseUpgradeEvent (line 2617) | type BaseUpgradeEvent interface
function init (line 2621) | func init() {
method GetUserSearchResult (line 2625) | func (b *UserSearchResult) GetUserSearchResult() *UserSearchResult { ret...
type BaseUserSearchResult (line 2627) | type BaseUserSearchResult interface
function init (line 2631) | func init() {
method GetVAppConfigFault (line 2635) | func (b *VAppConfigFault) GetVAppConfigFault() *VAppConfigFault { return...
type BaseVAppConfigFault (line 2637) | type BaseVAppConfigFault interface
function init (line 2641) | func init() {
method GetVAppPropertyFault (line 2645) | func (b *VAppPropertyFault) GetVAppPropertyFault() *VAppPropertyFault { ...
type BaseVAppPropertyFault (line 2647) | type BaseVAppPropertyFault interface
function init (line 2651) | func init() {
method GetVMotionInterfaceIssue (line 2655) | func (b *VMotionInterfaceIssue) GetVMotionInterfaceIssue() *VMotionInter...
type BaseVMotionInterfaceIssue (line 2657) | type BaseVMotionInterfaceIssue interface
function init (line 2661) | func init() {
method GetVMwareDVSHealthCheckConfig (line 2665) | func (b *VMwareDVSHealthCheckConfig) GetVMwareDVSHealthCheckConfig() *VM...
type BaseVMwareDVSHealthCheckConfig (line 2669) | type BaseVMwareDVSHealthCheckConfig interface
function init (line 2673) | func init() {
method GetVimFault (line 2677) | func (b *VimFault) GetVimFault() *VimFault { return b }
type BaseVimFault (line 2679) | type BaseVimFault interface
function init (line 2683) | func init() {
method GetVirtualController (line 2687) | func (b *VirtualController) GetVirtualController() *VirtualController { ...
type BaseVirtualController (line 2689) | type BaseVirtualController interface
function init (line 2693) | func init() {
method GetVirtualControllerOption (line 2697) | func (b *VirtualControllerOption) GetVirtualControllerOption() *VirtualC...
type BaseVirtualControllerOption (line 2699) | type BaseVirtualControllerOption interface
function init (line 2703) | func init() {
method GetVirtualDevice (line 2707) | func (b *VirtualDevice) GetVirtualDevice() *VirtualDevice { return b }
type BaseVirtualDevice (line 2709) | type BaseVirtualDevice interface
function init (line 2713) | func init() {
method GetVirtualDeviceBackingInfo (line 2717) | func (b *VirtualDeviceBackingInfo) GetVirtualDeviceBackingInfo() *Virtua...
type BaseVirtualDeviceBackingInfo (line 2719) | type BaseVirtualDeviceBackingInfo interface
function init (line 2723) | func init() {
method GetVirtualDeviceBackingOption (line 2727) | func (b *VirtualDeviceBackingOption) GetVirtualDeviceBackingOption() *Vi...
type BaseVirtualDeviceBackingOption (line 2731) | type BaseVirtualDeviceBackingOption interface
function init (line 2735) | func init() {
method GetVirtualDeviceBusSlotInfo (line 2739) | func (b *VirtualDeviceBusSlotInfo) GetVirtualDeviceBusSlotInfo() *Virtua...
type BaseVirtualDeviceBusSlotInfo (line 2741) | type BaseVirtualDeviceBusSlotInfo interface
function init (line 2745) | func init() {
method GetVirtualDeviceConfigSpec (line 2749) | func (b *VirtualDeviceConfigSpec) GetVirtualDeviceConfigSpec() *VirtualD...
type BaseVirtualDeviceConfigSpec (line 2751) | type BaseVirtualDeviceConfigSpec interface
function init (line 2755) | func init() {
method GetVirtualDeviceDeviceBackingInfo (line 2759) | func (b *VirtualDeviceDeviceBackingInfo) GetVirtualDeviceDeviceBackingIn...
type BaseVirtualDeviceDeviceBackingInfo (line 2763) | type BaseVirtualDeviceDeviceBackingInfo interface
function init (line 2767) | func init() {
method GetVirtualDeviceDeviceBackingOption (line 2771) | func (b *VirtualDeviceDeviceBackingOption) GetVirtualDeviceDeviceBacking...
type BaseVirtualDeviceDeviceBackingOption (line 2775) | type BaseVirtualDeviceDeviceBackingOption interface
function init (line 2779) | func init() {
method GetVirtualDeviceFileBackingInfo (line 2783) | func (b *VirtualDeviceFileBackingInfo) GetVirtualDeviceFileBackingInfo()...
type BaseVirtualDeviceFileBackingInfo (line 2787) | type BaseVirtualDeviceFileBackingInfo interface
function init (line 2791) | func init() {
method GetVirtualDeviceFileBackingOption (line 2795) | func (b *VirtualDeviceFileBackingOption) GetVirtualDeviceFileBackingOpti...
type BaseVirtualDeviceFileBackingOption (line 2799) | type BaseVirtualDeviceFileBackingOption interface
function init (line 2803) | func init() {
method GetVirtualDeviceOption (line 2807) | func (b *VirtualDeviceOption) GetVirtualDeviceOption() *VirtualDeviceOpt...
type BaseVirtualDeviceOption (line 2809) | type BaseVirtualDeviceOption interface
function init (line 2813) | func init() {
method GetVirtualDevicePciBusSlotInfo (line 2817) | func (b *VirtualDevicePciBusSlotInfo) GetVirtualDevicePciBusSlotInfo() *...
type BaseVirtualDevicePciBusSlotInfo (line 2821) | type BaseVirtualDevicePciBusSlotInfo interface
function init (line 2825) | func init() {
method GetVirtualDevicePipeBackingInfo (line 2829) | func (b *VirtualDevicePipeBackingInfo) GetVirtualDevicePipeBackingInfo()...
type BaseVirtualDevicePipeBackingInfo (line 2833) | type BaseVirtualDevicePipeBackingInfo interface
function init (line 2837) | func init() {
method GetVirtualDevicePipeBackingOption (line 2841) | func (b *VirtualDevicePipeBackingOption) GetVirtualDevicePipeBackingOpti...
type BaseVirtualDevicePipeBackingOption (line 2845) | type BaseVirtualDevicePipeBackingOption interface
function init (line 2849) | func init() {
method GetVirtualDeviceRemoteDeviceBackingInfo (line 2853) | func (b *VirtualDeviceRemoteDeviceBackingInfo) GetVirtualDeviceRemoteDev...
type BaseVirtualDeviceRemoteDeviceBackingInfo (line 2857) | type BaseVirtualDeviceRemoteDeviceBackingInfo interface
function init (line 2861) | func init() {
method GetVirtualDeviceRemoteDeviceBackingOption (line 2865) | func (b *VirtualDeviceRemoteDeviceBackingOption) GetVirtualDeviceRemoteD...
type BaseVirtualDeviceRemoteDeviceBackingOption (line 2869) | type BaseVirtualDeviceRemoteDeviceBackingOption interface
function init (line 2873) | func init() {
method GetVirtualDeviceURIBackingInfo (line 2877) | func (b *VirtualDeviceURIBackingInfo) GetVirtualDeviceURIBackingInfo() *...
type BaseVirtualDeviceURIBackingInfo (line 2881) | type BaseVirtualDeviceURIBackingInfo interface
function init (line 2885) | func init() {
method GetVirtualDeviceURIBackingOption (line 2889) | func (b *VirtualDeviceURIBackingOption) GetVirtualDeviceURIBackingOption...
type BaseVirtualDeviceURIBackingOption (line 2893) | type BaseVirtualDeviceURIBackingOption interface
function init (line 2897) | func init() {
method GetVirtualDiskRawDiskVer2BackingInfo (line 2901) | func (b *VirtualDiskRawDiskVer2BackingInfo) GetVirtualDiskRawDiskVer2Bac...
type BaseVirtualDiskRawDiskVer2BackingInfo (line 2905) | type BaseVirtualDiskRawDiskVer2BackingInfo interface
function init (line 2909) | func init() {
method GetVirtualDiskRawDiskVer2BackingOption (line 2913) | func (b *VirtualDiskRawDiskVer2BackingOption) GetVirtualDiskRawDiskVer2B...
type BaseVirtualDiskRawDiskVer2BackingOption (line 2917) | type BaseVirtualDiskRawDiskVer2BackingOption interface
function init (line 2921) | func init() {
method GetVirtualDiskSpec (line 2925) | func (b *VirtualDiskSpec) GetVirtualDiskSpec() *VirtualDiskSpec { return...
type BaseVirtualDiskSpec (line 2927) | type BaseVirtualDiskSpec interface
function init (line 2931) | func init() {
method GetVirtualEthernetCard (line 2935) | func (b *VirtualEthernetCard) GetVirtualEthernetCard() *VirtualEthernetC...
type BaseVirtualEthernetCard (line 2937) | type BaseVirtualEthernetCard interface
function init (line 2941) | func init() {
method GetVirtualEthernetCardOption (line 2945) | func (b *VirtualEthernetCardOption) GetVirtualEthernetCardOption() *Virt...
type BaseVirtualEthernetCardOption (line 2949) | type BaseVirtualEthernetCardOption interface
function init (line 2953) | func init() {
method GetVirtualHardwareCompatibilityIssue (line 2957) | func (b *VirtualHardwareCompatibilityIssue) GetVirtualHardwareCompatibil...
type BaseVirtualHardwareCompatibilityIssue (line 2961) | type BaseVirtualHardwareCompatibilityIssue interface
function init (line 2965) | func init() {
method GetVirtualMachineBootOptionsBootableDevice (line 2969) | func (b *VirtualMachineBootOptionsBootableDevice) GetVirtualMachineBootO...
type BaseVirtualMachineBootOptionsBootableDevice (line 2973) | type BaseVirtualMachineBootOptionsBootableDevice interface
function init (line 2977) | func init() {
method GetVirtualMachineDeviceRuntimeInfoDeviceRuntimeState (line 2981) | func (b *VirtualMachineDeviceRuntimeInfoDeviceRuntimeState) GetVirtualMa...
type BaseVirtualMachineDeviceRuntimeInfoDeviceRuntimeState (line 2985) | type BaseVirtualMachineDeviceRuntimeInfoDeviceRuntimeState interface
function init (line 2989) | func init() {
method GetVirtualMachineDiskDeviceInfo (line 2993) | func (b *VirtualMachineDiskDeviceInfo) GetVirtualMachineDiskDeviceInfo()...
type BaseVirtualMachineDiskDeviceInfo (line 2997) | type BaseVirtualMachineDiskDeviceInfo interface
function init (line 3001) | func init() {
method GetVirtualMachineGuestQuiesceSpec (line 3005) | func (b *VirtualMachineGuestQuiesceSpec) GetVirtualMachineGuestQuiesceSp...
type BaseVirtualMachineGuestQuiesceSpec (line 3009) | type BaseVirtualMachineGuestQuiesceSpec interface
function init (line 3013) | func init() {
method GetVirtualMachinePciPassthroughInfo (line 3017) | func (b *VirtualMachinePciPassthroughInfo) GetVirtualMachinePciPassthrou...
type BaseVirtualMachinePciPassthroughInfo (line 3021) | type BaseVirtualMachinePciPassthroughInfo interface
function init (line 3025) | func init() {
method GetVirtualMachineProfileSpec (line 3029) | func (b *VirtualMachineProfileSpec) GetVirtualMachineProfileSpec() *Virt...
type BaseVirtualMachineProfileSpec (line 3033) | type BaseVirtualMachineProfileSpec interface
function init (line 3037) | func init() {
method GetVirtualMachineSriovDevicePoolInfo (line 3041) | func (b *VirtualMachineSriovDevicePoolInfo) GetVirtualMachineSriovDevice...
type BaseVirtualMachineSriovDevicePoolInfo (line 3045) | type BaseVirtualMachineSriovDevicePoolInfo interface
function init (line 3049) | func init() {
method GetVirtualMachineTargetInfo (line 3053) | func (b *VirtualMachineTargetInfo) GetVirtualMachineTargetInfo() *Virtua...
type BaseVirtualMachineTargetInfo (line 3055) | type BaseVirtualMachineTargetInfo interface
function init (line 3059) | func init() {
method GetVirtualPCIPassthroughPluginBackingInfo (line 3063) | func (b *VirtualPCIPassthroughPluginBackingInfo) GetVirtualPCIPassthroug...
type BaseVirtualPCIPassthroughPluginBackingInfo (line 3067) | type BaseVirtualPCIPassthroughPluginBackingInfo interface
function init (line 3071) | func init() {
method GetVirtualPCIPassthroughPluginBackingOption (line 3075) | func (b *VirtualPCIPassthroughPluginBackingOption) GetVirtualPCIPassthro...
type BaseVirtualPCIPassthroughPluginBackingOption (line 3079) | type BaseVirtualPCIPassthroughPluginBackingOption interface
function init (line 3083) | func init() {
method GetVirtualSATAController (line 3087) | func (b *VirtualSATAController) GetVirtualSATAController() *VirtualSATAC...
type BaseVirtualSATAController (line 3089) | type BaseVirtualSATAController interface
function init (line 3093) | func init() {
method GetVirtualSATAControllerOption (line 3097) | func (b *VirtualSATAControllerOption) GetVirtualSATAControllerOption() *...
type BaseVirtualSATAControllerOption (line 3101) | type BaseVirtualSATAControllerOption interface
function init (line 3105) | func init() {
method GetVirtualSCSIController (line 3109) | func (b *VirtualSCSIController) GetVirtualSCSIController() *VirtualSCSIC...
type BaseVirtualSCSIController (line 3111) | type BaseVirtualSCSIController interface
function init (line 3115) | func init() {
method GetVirtualSCSIControllerOption (line 3119) | func (b *VirtualSCSIControllerOption) GetVirtualSCSIControllerOption() *...
type BaseVirtualSCSIControllerOption (line 3123) | type BaseVirtualSCSIControllerOption interface
function init (line 3127) | func init() {
method GetVirtualSoundCard (line 3131) | func (b *VirtualSoundCard) GetVirtualSoundCard() *VirtualSoundCard { ret...
type BaseVirtualSoundCard (line 3133) | type BaseVirtualSoundCard interface
function init (line 3137) | func init() {
method GetVirtualSoundCardOption (line 3141) | func (b *VirtualSoundCardOption) GetVirtualSoundCardOption() *VirtualSou...
type BaseVirtualSoundCardOption (line 3143) | type BaseVirtualSoundCardOption interface
function init (line 3147) | func init() {
method GetVirtualVmxnet (line 3151) | func (b *VirtualVmxnet) GetVirtualVmxnet() *VirtualVmxnet { return b }
type BaseVirtualVmxnet (line 3153) | type BaseVirtualVmxnet interface
function init (line 3157) | func init() {
method GetVirtualVmxnet3 (line 3161) | func (b *VirtualVmxnet3) GetVirtualVmxnet3() *VirtualVmxnet3 { return b }
type BaseVirtualVmxnet3 (line 3163) | type BaseVirtualVmxnet3 interface
function init (line 3167) | func init() {
method GetVirtualVmxnet3Option (line 3171) | func (b *VirtualVmxnet3Option) GetVirtualVmxnet3Option() *VirtualVmxnet3...
type BaseVirtualVmxnet3Option (line 3173) | type BaseVirtualVmxnet3Option interface
function init (line 3177) | func init() {
method GetVirtualVmxnetOption (line 3181) | func (b *VirtualVmxnetOption) GetVirtualVmxnetOption() *VirtualVmxnetOpt...
type BaseVirtualVmxnetOption (line 3183) | type BaseVirtualVmxnetOption interface
function init (line 3187) | func init() {
method GetVmCloneEvent (line 3191) | func (b *VmCloneEvent) GetVmCloneEvent() *VmCloneEvent { return b }
type BaseVmCloneEvent (line 3193) | type BaseVmCloneEvent interface
function init (line 3197) | func init() {
method GetVmConfigFault (line 3201) | func (b *VmConfigFault) GetVmConfigFault() *VmConfigFault { return b }
type BaseVmConfigFault (line 3203) | type BaseVmConfigFault interface
function init (line 3207) | func init() {
method GetVmConfigFileInfo (line 3211) | func (b *VmConfigFileInfo) GetVmConfigFileInfo() *VmConfigFileInfo { ret...
type BaseVmConfigFileInfo (line 3213) | type BaseVmConfigFileInfo interface
function init (line 3217) | func init() {
method GetVmConfigFileQuery (line 3221) | func (b *VmConfigFileQuery) GetVmConfigFileQuery() *VmConfigFileQuery { ...
type BaseVmConfigFileQuery (line 3223) | type BaseVmConfigFileQuery interface
function init (line 3227) | func init() {
method GetVmConfigInfo (line 3231) | func (b *VmConfigInfo) GetVmConfigInfo() *VmConfigInfo { return b }
type BaseVmConfigInfo (line 3233) | type BaseVmConfigInfo interface
function init (line 3237) | func init() {
method GetVmConfigSpec (line 3241) | func (b *VmConfigSpec) GetVmConfigSpec() *VmConfigSpec { return b }
type BaseVmConfigSpec (line 3243) | type BaseVmConfigSpec interface
function init (line 3247) | func init() {
method GetVmDasBeingResetEvent (line 3251) | func (b *VmDasBeingResetEvent) GetVmDasBeingResetEvent() *VmDasBeingRese...
type BaseVmDasBeingResetEvent (line 3253) | type BaseVmDasBeingResetEvent interface
function init (line 3257) | func init() {
method GetVmEvent (line 3261) | func (b *VmEvent) GetVmEvent() *VmEvent { return b }
type BaseVmEvent (line 3263) | type BaseVmEvent interface
function init (line 3267) | func init() {
method GetVmFaultToleranceIssue (line 3271) | func (b *VmFaultToleranceIssue) GetVmFaultToleranceIssue() *VmFaultToler...
type BaseVmFaultToleranceIssue (line 3273) | type BaseVmFaultToleranceIssue interface
function init (line 3277) | func init() {
method GetVmMigratedEvent (line 3281) | func (b *VmMigratedEvent) GetVmMigratedEvent() *VmMigratedEvent { return...
type BaseVmMigratedEvent (line 3283) | type BaseVmMigratedEvent interface
function init (line 3287) | func init() {
method GetVmPoweredOffEvent (line 3291) | func (b *VmPoweredOffEvent) GetVmPoweredOffEvent() *VmPoweredOffEvent { ...
type BaseVmPoweredOffEvent (line 3293) | type BaseVmPoweredOffEvent interface
function init (line 3297) | func init() {
method GetVmPoweredOnEvent (line 3301) | func (b *VmPoweredOnEvent) GetVmPoweredOnEvent() *VmPoweredOnEvent { ret...
type BaseVmPoweredOnEvent (line 3303) | type BaseVmPoweredOnEvent interface
function init (line 3307) | func init() {
method GetVmRelocateSpecEvent (line 3311) | func (b *VmRelocateSpecEvent) GetVmRelocateSpecEvent() *VmRelocateSpecEv...
type BaseVmRelocateSpecEvent (line 3313) | type BaseVmRelocateSpecEvent interface
function init (line 3317) | func init() {
method GetVmStartingEvent (line 3321) | func (b *VmStartingEvent) GetVmStartingEvent() *VmStartingEvent { return...
type BaseVmStartingEvent (line 3323) | type BaseVmStartingEvent interface
function init (line 3327) | func init() {
method GetVmToolsUpgradeFault (line 3331) | func (b *VmToolsUpgradeFault) GetVmToolsUpgradeFault() *VmToolsUpgradeFa...
type BaseVmToolsUpgradeFault (line 3333) | type BaseVmToolsUpgradeFault interface
function init (line 3337) | func init() {
method GetVmfsDatastoreBaseOption (line 3341) | func (b *VmfsDatastoreBaseOption) GetVmfsDatastoreBaseOption() *VmfsData...
type BaseVmfsDatastoreBaseOption (line 3343) | type BaseVmfsDatastoreBaseOption interface
function init (line 3347) | func init() {
method GetVmfsDatastoreSingleExtentOption (line 3351) | func (b *VmfsDatastoreSingleExtentOption) GetVmfsDatastoreSingleExtentOp...
type BaseVmfsDatastoreSingleExtentOption (line 3355) | type BaseVmfsDatastoreSingleExtentOption interface
function init (line 3359) | func init() {
method GetVmfsDatastoreSpec (line 3363) | func (b *VmfsDatastoreSpec) GetVmfsDatastoreSpec() *VmfsDatastoreSpec { ...
type BaseVmfsDatastoreSpec (line 3365) | type BaseVmfsDatastoreSpec interface
function init (line 3369) | func init() {
method GetVmfsMountFault (line 3373) | func (b *VmfsMountFault) GetVmfsMountFault() *VmfsMountFault { return b }
type BaseVmfsMountFault (line 3375) | type BaseVmfsMountFault interface
function init (line 3379) | func init() {
method GetVmwareDistributedVirtualSwitchVlanSpec (line 3383) | func (b *VmwareDistributedVirtualSwitchVlanSpec) GetVmwareDistributedVir...
type BaseVmwareDistributedVirtualSwitchVlanSpec (line 3387) | type BaseVmwareDistributedVirtualSwitchVlanSpec interface
function init (line 3391) | func init() {
method GetVsanDiskFault (line 3395) | func (b *VsanDiskFault) GetVsanDiskFault() *VsanDiskFault { return b }
type BaseVsanDiskFault (line 3397) | type BaseVsanDiskFault interface
function init (line 3401) | func init() {
method GetVsanFault (line 3405) | func (b *VsanFault) GetVsanFault() *VsanFault { return b }
type BaseVsanFault (line 3407) | type BaseVsanFault interface
function init (line 3411) | func init() {
method GetVsanUpgradeSystemPreflightCheckIssue (line 3415) | func (b *VsanUpgradeSystemPreflightCheckIssue) GetVsanUpgradeSystemPrefl...
type BaseVsanUpgradeSystemPreflightCheckIssue (line 3419) | type BaseVsanUpgradeSystemPreflightCheckIssue interface
function init (line 3423) | func init() {
method GetVsanUpgradeSystemUpgradeHistoryItem (line 3427) | func (b *VsanUpgradeSystemUpgradeHistoryItem) GetVsanUpgradeSystemUpgrad...
type BaseVsanUpgradeSystemUpgradeHistoryItem (line 3431) | type BaseVsanUpgradeSystemUpgradeHistoryItem interface
function init (line 3435) | func init() {
method GetVslmCreateSpecBackingSpec (line 3439) | func (b *VslmCreateSpecBackingSpec) GetVslmCreateSpecBackingSpec() *Vslm...
type BaseVslmCreateSpecBackingSpec (line 3443) | type BaseVslmCreateSpecBackingSpec interface
function init (line 3447) | func init() {
method GetVslmMigrateSpec (line 3451) | func (b *VslmMigrateSpec) GetVslmMigrateSpec() *VslmMigrateSpec { return...
type BaseVslmMigrateSpec (line 3453) | type BaseVslmMigrateSpec interface
function init (line 3457) | func init() {
FILE: vendor/github.com/vmware/govmomi/vim25/types/internal.go
type DynamicTypeMgrQueryMoInstances (line 21) | type DynamicTypeMgrQueryMoInstances struct
type DynamicTypeMgrQueryMoInstancesResponse (line 26) | type DynamicTypeMgrQueryMoInstancesResponse struct
type DynamicTypeEnumTypeInfo (line 30) | type DynamicTypeEnumTypeInfo struct
function init (line 40) | func init() {
type DynamicTypeMgrAllTypeInfo (line 44) | type DynamicTypeMgrAllTypeInfo struct
function init (line 52) | func init() {
type DynamicTypeMgrAnnotation (line 56) | type DynamicTypeMgrAnnotation struct
function init (line 63) | func init() {
type DynamicTypeMgrDataTypeInfo (line 67) | type DynamicTypeMgrDataTypeInfo struct
function init (line 78) | func init() {
type BaseDynamicTypeMgrFilterSpec (line 84) | type BaseDynamicTypeMgrFilterSpec interface
type DynamicTypeMgrFilterSpec (line 88) | type DynamicTypeMgrFilterSpec struct
method GetDynamicTypeMgrFilterSpec (line 82) | func (b *DynamicTypeMgrFilterSpec) GetDynamicTypeMgrFilterSpec() *Dyna...
function init (line 92) | func init() {
type DynamicTypeMgrManagedTypeInfo (line 96) | type DynamicTypeMgrManagedTypeInfo struct
function init (line 108) | func init() {
type DynamicTypeMgrMethodTypeInfo (line 112) | type DynamicTypeMgrMethodTypeInfo struct
function init (line 125) | func init() {
type DynamicTypeMgrMoFilterSpec (line 129) | type DynamicTypeMgrMoFilterSpec struct
function init (line 136) | func init() {
type DynamicTypeMgrMoInstance (line 140) | type DynamicTypeMgrMoInstance struct
function init (line 147) | func init() {
type DynamicTypeMgrParamTypeInfo (line 151) | type DynamicTypeMgrParamTypeInfo struct
function init (line 161) | func init() {
type DynamicTypeMgrPropertyTypeInfo (line 165) | type DynamicTypeMgrPropertyTypeInfo struct
type DynamicTypeMgrQueryTypeInfo (line 176) | type DynamicTypeMgrQueryTypeInfo struct
type DynamicTypeMgrQueryTypeInfoResponse (line 181) | type DynamicTypeMgrQueryTypeInfoResponse struct
function init (line 185) | func init() {
type DynamicTypeMgrTypeFilterSpec (line 189) | type DynamicTypeMgrTypeFilterSpec struct
function init (line 195) | func init() {
type ReflectManagedMethodExecuterSoapArgument (line 199) | type ReflectManagedMethodExecuterSoapArgument struct
function init (line 206) | func init() {
type ReflectManagedMethodExecuterSoapFault (line 210) | type ReflectManagedMethodExecuterSoapFault struct
function init (line 217) | func init() {
type ReflectManagedMethodExecuterSoapResult (line 221) | type ReflectManagedMethodExecuterSoapResult struct
type RetrieveDynamicTypeManager (line 228) | type RetrieveDynamicTypeManager struct
type RetrieveDynamicTypeManagerResponse (line 232) | type RetrieveDynamicTypeManagerResponse struct
type RetrieveManagedMethodExecuter (line 236) | type RetrieveManagedMethodExecuter struct
function init (line 240) | func init() {
type RetrieveManagedMethodExecuterResponse (line 244) | type RetrieveManagedMethodExecuterResponse struct
type InternalDynamicTypeManager (line 248) | type InternalDynamicTypeManager struct
type ReflectManagedMethodExecuter (line 252) | type ReflectManagedMethodExecuter struct
type ExecuteSoap (line 256) | type ExecuteSoap struct
type ExecuteSoapResponse (line 264) | type ExecuteSoapResponse struct
FILE: vendor/github.com/vmware/govmomi/vim25/types/registry.go
function Add (line 26) | func Add(name string, kind reflect.Type) {
type Func (line 30) | type Func
function TypeFunc (line 32) | func TypeFunc() Func {
FILE: vendor/github.com/vmware/govmomi/vim25/types/registry_test.go
function TestTypeFunc (line 24) | func TestTypeFunc(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/types/types.go
type AbdicateDomOwnership (line 25) | type AbdicateDomOwnership
function init (line 27) | func init() {
type AbdicateDomOwnershipRequestType (line 31) | type AbdicateDomOwnershipRequestType struct
function init (line 36) | func init() {
type AbdicateDomOwnershipResponse (line 40) | type AbdicateDomOwnershipResponse struct
type AboutInfo (line 44) | type AboutInfo struct
function init (line 63) | func init() {
type AccountCreatedEvent (line 67) | type AccountCreatedEvent struct
function init (line 74) | func init() {
type AccountRemovedEvent (line 78) | type AccountRemovedEvent struct
function init (line 85) | func init() {
type AccountUpdatedEvent (line 89) | type AccountUpdatedEvent struct
function init (line 97) | func init() {
type AcknowledgeAlarm (line 101) | type AcknowledgeAlarm
function init (line 103) | func init() {
type AcknowledgeAlarmRequestType (line 107) | type AcknowledgeAlarmRequestType struct
function init (line 113) | func init() {
type AcknowledgeAlarmResponse (line 117) | type AcknowledgeAlarmResponse struct
type AcquireCimServicesTicket (line 120) | type AcquireCimServicesTicket
function init (line 122) | func init() {
type AcquireCimServicesTicketRequestType (line 126) | type AcquireCimServicesTicketRequestType struct
function init (line 130) | func init() {
type AcquireCimServicesTicketResponse (line 134) | type AcquireCimServicesTicketResponse struct
type AcquireCloneTicket (line 138) | type AcquireCloneTicket
function init (line 140) | func init() {
type AcquireCloneTicketRequestType (line 144) | type AcquireCloneTicketRequestType struct
function init (line 148) | func init() {
type AcquireCloneTicketResponse (line 152) | type AcquireCloneTicketResponse struct
type AcquireCredentialsInGuest (line 156) | type AcquireCredentialsInGuest
function init (line 158) | func init() {
type AcquireCredentialsInGuestRequestType (line 162) | type AcquireCredentialsInGuestRequestType struct
function init (line 169) | func init() {
type AcquireCredentialsInGuestResponse (line 173) | type AcquireCredentialsInGuestResponse struct
type AcquireGenericServiceTicket (line 177) | type AcquireGenericServiceTicket
function init (line 179) | func init() {
type AcquireGenericServiceTicketRequestType (line 183) | type AcquireGenericServiceTicketRequestType struct
function init (line 188) | func init() {
type AcquireGenericServiceTicketResponse (line 192) | type AcquireGenericServiceTicketResponse struct
type AcquireLocalTicket (line 196) | type AcquireLocalTicket
function init (line 198) | func init() {
type AcquireLocalTicketRequestType (line 202) | type AcquireLocalTicketRequestType struct
function init (line 207) | func init() {
type AcquireLocalTicketResponse (line 211) | type AcquireLocalTicketResponse struct
type AcquireMksTicket (line 215) | type AcquireMksTicket
function init (line 217) | func init() {
type AcquireMksTicketRequestType (line 221) | type AcquireMksTicketRequestType struct
function init (line 225) | func init() {
type AcquireMksTicketResponse (line 229) | type AcquireMksTicketResponse struct
type AcquireTicket (line 233) | type AcquireTicket
function init (line 235) | func init() {
type AcquireTicketRequestType (line 239) | type AcquireTicketRequestType struct
function init (line 244) | func init() {
type AcquireTicketResponse (line 248) | type AcquireTicketResponse struct
type Action (line 252) | type Action struct
function init (line 256) | func init() {
type ActiveDirectoryFault (line 260) | type ActiveDirectoryFault struct
function init (line 266) | func init() {
type ActiveDirectoryFaultFault (line 270) | type ActiveDirectoryFaultFault
function init (line 272) | func init() {
type ActiveDirectoryProfile (line 276) | type ActiveDirectoryProfile struct
function init (line 280) | func init() {
type ActiveVMsBlockingEVC (line 284) | type ActiveVMsBlockingEVC struct
function init (line 292) | func init() {
type ActiveVMsBlockingEVCFault (line 296) | type ActiveVMsBlockingEVCFault
function init (line 298) | func init() {
type AddAuthorizationRole (line 302) | type AddAuthorizationRole
function init (line 304) | func init() {
type AddAuthorizationRoleRequestType (line 308) | type AddAuthorizationRoleRequestType struct
function init (line 314) | func init() {
type AddAuthorizationRoleResponse (line 318) | type AddAuthorizationRoleResponse struct
type AddCustomFieldDef (line 322) | type AddCustomFieldDef
function init (line 324) | func init() {
type AddCustomFieldDefRequestType (line 328) | type AddCustomFieldDefRequestType struct
function init (line 336) | func init() {
type AddCustomFieldDefResponse (line 340) | type AddCustomFieldDefResponse struct
type AddDVPortgroupRequestType (line 344) | type AddDVPortgroupRequestType struct
function init (line 349) | func init() {
type AddDVPortgroup_Task (line 353) | type AddDVPortgroup_Task
function init (line 355) | func init() {
type AddDVPortgroup_TaskResponse (line 359) | type AddDVPortgroup_TaskResponse struct
type AddDisksRequestType (line 363) | type AddDisksRequestType struct
function init (line 368) | func init() {
type AddDisks_Task (line 372) | type AddDisks_Task
function init (line 374) | func init() {
type AddDisks_TaskResponse (line 378) | type AddDisks_TaskResponse struct
type AddFilter (line 382) | type AddFilter
function init (line 384) | func init() {
type AddFilterEntities (line 388) | type AddFilterEntities
function init (line 390) | func init() {
type AddFilterEntitiesRequestType (line 394) | type AddFilterEntitiesRequestType struct
function init (line 400) | func init() {
type AddFilterEntitiesResponse (line 404) | type AddFilterEntitiesResponse struct
type AddFilterRequestType (line 407) | type AddFilterRequestType struct
function init (line 414) | func init() {
type AddFilterResponse (line 418) | type AddFilterResponse struct
type AddGuestAlias (line 422) | type AddGuestAlias
function init (line 424) | func init() {
type AddGuestAliasRequestType (line 428) | type AddGuestAliasRequestType struct
function init (line 438) | func init() {
type AddGuestAliasResponse (line 442) | type AddGuestAliasResponse struct
type AddHostRequestType (line 445) | type AddHostRequestType struct
function init (line 453) | func init() {
type AddHost_Task (line 457) | type AddHost_Task
function init (line 459) | func init() {
type AddHost_TaskResponse (line 463) | type AddHost_TaskResponse struct
type AddInternetScsiSendTargets (line 467) | type AddInternetScsiSendTargets
function init (line 469) | func init() {
type AddInternetScsiSendTargetsRequestType (line 473) | type AddInternetScsiSendTargetsRequestType struct
function init (line 479) | func init() {
type AddInternetScsiSendTargetsResponse (line 483) | type AddInternetScsiSendTargetsResponse struct
type AddInternetScsiStaticTargets (line 486) | type AddInternetScsiStaticTargets
function init (line 488) | func init() {
type AddInternetScsiStaticTargetsRequestType (line 492) | type AddInternetScsiStaticTargetsRequestType struct
function init (line 498) | func init() {
type AddInternetScsiStaticTargetsResponse (line 502) | type AddInternetScsiStaticTargetsResponse struct
type AddKey (line 505) | type AddKey
function init (line 507) | func init() {
type AddKeyRequestType (line 511) | type AddKeyRequestType struct
function init (line 516) | func init() {
type AddKeyResponse (line 520) | type AddKeyResponse struct
type AddKeys (line 523) | type AddKeys
function init (line 525) | func init() {
type AddKeysRequestType (line 529) | type AddKeysRequestType struct
function init (line 534) | func init() {
type AddKeysResponse (line 538) | type AddKeysResponse struct
type AddLicense (line 542) | type AddLicense
function init (line 544) | func init() {
type AddLicenseRequestType (line 548) | type AddLicenseRequestType struct
function init (line 554) | func init() {
type AddLicenseResponse (line 558) | type AddLicenseResponse struct
type AddMonitoredEntities (line 562) | type AddMonitoredEntities
function init (line 564) | func init() {
type AddMonitoredEntitiesRequestType (line 568) | type AddMonitoredEntitiesRequestType struct
function init (line 574) | func init() {
type AddMonitoredEntitiesResponse (line 578) | type AddMonitoredEntitiesResponse struct
type AddNetworkResourcePool (line 581) | type AddNetworkResourcePool
function init (line 583) | func init() {
type AddNetworkResourcePoolRequestType (line 587) | type AddNetworkResourcePoolRequestType struct
function init (line 592) | func init() {
type AddNetworkResourcePoolResponse (line 596) | type AddNetworkResourcePoolResponse struct
type AddPortGroup (line 599) | type AddPortGroup
function init (line 601) | func init() {
type AddPortGroupRequestType (line 605) | type AddPortGroupRequestType struct
function init (line 610) | func init() {
type AddPortGroupResponse (line 614) | type AddPortGroupResponse struct
type AddServiceConsoleVirtualNic (line 617) | type AddServiceConsoleVirtualNic
function init (line 619) | func init() {
type AddServiceConsoleVirtualNicRequestType (line 623) | type AddServiceConsoleVirtualNicRequestType struct
function init (line 629) | func init() {
type AddServiceConsoleVirtualNicResponse (line 633) | type AddServiceConsoleVirtualNicResponse struct
type AddStandaloneHostRequestType (line 637) | type AddStandaloneHostRequestType struct
function init (line 645) | func init() {
type AddStandaloneHost_Task (line 649) | type AddStandaloneHost_Task
function init (line 651) | func init() {
type AddStandaloneHost_TaskResponse (line 655) | type AddStandaloneHost_TaskResponse struct
type AddVirtualNic (line 659) | type AddVirtualNic
function init (line 661) | func init() {
type AddVirtualNicRequestType (line 665) | type AddVirtualNicRequestType struct
function init (line 671) | func init() {
type AddVirtualNicResponse (line 675) | type AddVirtualNicResponse struct
type AddVirtualSwitch (line 679) | type AddVirtualSwitch
function init (line 681) | func init() {
type AddVirtualSwitchRequestType (line 685) | type AddVirtualSwitchRequestType struct
function init (line 691) | func init() {
type AddVirtualSwitchResponse (line 695) | type AddVirtualSwitchResponse struct
type AdminDisabled (line 698) | type AdminDisabled struct
function init (line 702) | func init() {
type AdminDisabledFault (line 706) | type AdminDisabledFault
function init (line 708) | func init() {
type AdminNotDisabled (line 712) | type AdminNotDisabled struct
function init (line 716) | func init() {
type AdminNotDisabledFault (line 720) | type AdminNotDisabledFault
function init (line 722) | func init() {
type AdminPasswordNotChangedEvent (line 726) | type AdminPasswordNotChangedEvent struct
function init (line 730) | func init() {
type AffinityConfigured (line 734) | type AffinityConfigured struct
function init (line 740) | func init() {
type AffinityConfiguredFault (line 744) | type AffinityConfiguredFault
function init (line 746) | func init() {
type AfterStartupTaskScheduler (line 750) | type AfterStartupTaskScheduler struct
function init (line 756) | func init() {
type AgentInstallFailed (line 760) | type AgentInstallFailed struct
function init (line 768) | func init() {
type AgentInstallFailedFault (line 772) | type AgentInstallFailedFault
function init (line 774) | func init() {
type AlarmAcknowledgedEvent (line 778) | type AlarmAcknowledgedEvent struct
function init (line 785) | func init() {
type AlarmAction (line 789) | type AlarmAction struct
function init (line 793) | func init() {
type AlarmActionTriggeredEvent (line 797) | type AlarmActionTriggeredEvent struct
function init (line 804) | func init() {
type AlarmClearedEvent (line 808) | type AlarmClearedEvent struct
function init (line 816) | func init() {
type AlarmCreatedEvent (line 820) | type AlarmCreatedEvent struct
function init (line 826) | func init() {
type AlarmDescription (line 830) | type AlarmDescription struct
function init (line 845) | func init() {
type AlarmEmailCompletedEvent (line 849) | type AlarmEmailCompletedEvent struct
function init (line 856) | func init() {
type AlarmEmailFailedEvent (line 860) | type AlarmEmailFailedEvent struct
function init (line 868) | func init() {
type AlarmEvent (line 872) | type AlarmEvent struct
function init (line 878) | func init() {
type AlarmEventArgument (line 882) | type AlarmEventArgument struct
function init (line 888) | func init() {
type AlarmExpression (line 892) | type AlarmExpression struct
function init (line 896) | func init() {
type AlarmInfo (line 900) | type AlarmInfo struct
function init (line 911) | func init() {
type AlarmReconfiguredEvent (line 915) | type AlarmReconfiguredEvent struct
function init (line 922) | func init() {
type AlarmRemovedEvent (line 926) | type AlarmRemovedEvent struct
function init (line 932) | func init() {
type AlarmScriptCompleteEvent (line 936) | type AlarmScriptCompleteEvent struct
function init (line 943) | func init() {
type AlarmScriptFailedEvent (line 947) | type AlarmScriptFailedEvent struct
function init (line 955) | func init() {
type AlarmSetting (line 959) | type AlarmSetting struct
function init (line 966) | func init() {
type AlarmSnmpCompletedEvent (line 970) | type AlarmSnmpCompletedEvent struct
function init (line 976) | func init() {
type AlarmSnmpFailedEvent (line 980) | type AlarmSnmpFailedEvent struct
function init (line 987) | func init() {
type AlarmSpec (line 991) | type AlarmSpec struct
function init (line 1004) | func init() {
type AlarmState (line 1008) | type AlarmState struct
function init (line 1022) | func init() {
type AlarmStatusChangedEvent (line 1026) | type AlarmStatusChangedEvent struct
function init (line 1035) | func init() {
type AlarmTriggeringAction (line 1039) | type AlarmTriggeringAction struct
function init (line 1050) | func init() {
type AlarmTriggeringActionTransitionSpec (line 1054) | type AlarmTriggeringActionTransitionSpec struct
function init (line 1062) | func init() {
type AllVirtualMachinesLicensedEvent (line 1066) | type AllVirtualMachinesLicensedEvent struct
function init (line 1070) | func init() {
type AllocateIpv4Address (line 1074) | type AllocateIpv4Address
function init (line 1076) | func init() {
type AllocateIpv4AddressRequestType (line 1080) | type AllocateIpv4AddressRequestType struct
function init (line 1087) | func init() {
type AllocateIpv4AddressResponse (line 1091) | type AllocateIpv4AddressResponse struct
type AllocateIpv6Address (line 1095) | type AllocateIpv6Address
function init (line 1097) | func init() {
type AllocateIpv6AddressRequestType (line 1101) | type AllocateIpv6AddressRequestType struct
function init (line 1108) | func init() {
type AllocateIpv6AddressResponse (line 1112) | type AllocateIpv6AddressResponse struct
type AlreadyAuthenticatedSessionEvent (line 1116) | type AlreadyAuthenticatedSessionEvent struct
function init (line 1120) | func init() {
type AlreadyBeingManaged (line 1124) | type AlreadyBeingManaged struct
function init (line 1130) | func init() {
type AlreadyBeingManagedFault (line 1134) | type AlreadyBeingManagedFault
function init (line 1136) | func init() {
type AlreadyConnected (line 1140) | type AlreadyConnected struct
function init (line 1146) | func init() {
type AlreadyConnectedFault (line 1150) | type AlreadyConnectedFault
function init (line 1152) | func init() {
type AlreadyExists (line 1156) | type AlreadyExists struct
function init (line 1162) | func init() {
type AlreadyExistsFault (line 1166) | type AlreadyExistsFault
function init (line 1168) | func init() {
type AlreadyUpgraded (line 1172) | type AlreadyUpgraded struct
function init (line 1176) | func init() {
type AlreadyUpgradedFault (line 1180) | type AlreadyUpgradedFault
function init (line 1182) | func init() {
type AndAlarmExpression (line 1186) | type AndAlarmExpression struct
function init (line 1192) | func init() {
type AnswerFile (line 1196) | type AnswerFile struct
function init (line 1204) | func init() {
type AnswerFileCreateSpec (line 1208) | type AnswerFileCreateSpec struct
function init (line 1214) | func init() {
type AnswerFileOptionsCreateSpec (line 1218) | type AnswerFileOptionsCreateSpec struct
function init (line 1224) | func init() {
type AnswerFileSerializedCreateSpec (line 1228) | type AnswerFileSerializedCreateSpec struct
function init (line 1234) | func init() {
type AnswerFileStatusError (line 1238) | type AnswerFileStatusError struct
function init (line 1245) | func init() {
type AnswerFileStatusResult (line 1249) | type AnswerFileStatusResult struct
function init (line 1258) | func init() {
type AnswerFileUpdateFailed (line 1262) | type AnswerFileUpdateFailed struct
function init (line 1268) | func init() {
type AnswerFileUpdateFailedFault (line 1272) | type AnswerFileUpdateFailedFault
function init (line 1274) | func init() {
type AnswerFileUpdateFailure (line 1278) | type AnswerFileUpdateFailure struct
function init (line 1285) | func init() {
type AnswerVM (line 1289) | type AnswerVM
function init (line 1291) | func init() {
type AnswerVMRequestType (line 1295) | type AnswerVMRequestType struct
function init (line 1301) | func init() {
type AnswerVMResponse (line 1305) | type AnswerVMResponse struct
type ApplicationQuiesceFault (line 1308) | type ApplicationQuiesceFault struct
function init (line 1312) | func init() {
type ApplicationQuiesceFaultFault (line 1316) | type ApplicationQuiesceFaultFault
function init (line 1318) | func init() {
type ApplyEntitiesConfigRequestType (line 1322) | type ApplyEntitiesConfigRequestType struct
function init (line 1327) | func init() {
type ApplyEntitiesConfig_Task (line 1331) | type ApplyEntitiesConfig_Task
function init (line 1333) | func init() {
type ApplyEntitiesConfig_TaskResponse (line 1337) | type ApplyEntitiesConfig_TaskResponse struct
type ApplyHostConfigRequestType (line 1341) | type ApplyHostConfigRequestType struct
function init (line 1348) | func init() {
type ApplyHostConfig_Task (line 1352) | type ApplyHostConfig_Task
function init (line 1354) | func init() {
type ApplyHostConfig_TaskResponse (line 1358) | type ApplyHostConfig_TaskResponse struct
type ApplyHostProfileConfigurationSpec (line 1362) | type ApplyHostProfileConfigurationSpec struct
function init (line 1373) | func init() {
type ApplyProfile (line 1377) | type ApplyProfile struct
function init (line 1392) | func init() {
type ApplyRecommendation (line 1396) | type ApplyRecommendation
function init (line 1398) | func init() {
type ApplyRecommendationRequestType (line 1402) | type ApplyRecommendationRequestType struct
function init (line 1407) | func init() {
type ApplyRecommendationResponse (line 1411) | type ApplyRecommendationResponse struct
type ApplyStorageDrsRecommendationRequestType (line 1414) | type ApplyStorageDrsRecommendationRequestType struct
function init (line 1419) | func init() {
type ApplyStorageDrsRecommendationToPodRequestType (line 1423) | type ApplyStorageDrsRecommendationToPodRequestType struct
function init (line 1429) | func init() {
type ApplyStorageDrsRecommendationToPod_Task (line 1433) | type ApplyStorageDrsRecommendationToPod_Task
function init (line 1435) | func init() {
type ApplyStorageDrsRecommendationToPod_TaskResponse (line 1439) | type ApplyStorageDrsRecommendationToPod_TaskResponse struct
type ApplyStorageDrsRecommendation_Task (line 1443) | type ApplyStorageDrsRecommendation_Task
function init (line 1445) | func init() {
type ApplyStorageDrsRecommendation_TaskResponse (line 1449) | type ApplyStorageDrsRecommendation_TaskResponse struct
type ApplyStorageRecommendationResult (line 1453) | type ApplyStorageRecommendationResult struct
function init (line 1459) | func init() {
type AreAlarmActionsEnabled (line 1463) | type AreAlarmActionsEnabled
function init (line 1465) | func init() {
type AreAlarmActionsEnabledRequestType (line 1469) | type AreAlarmActionsEnabledRequestType struct
function init (line 1474) | func init() {
type AreAlarmActionsEnabledResponse (line 1478) | type AreAlarmActionsEnabledResponse struct
type ArrayOfAlarmAction (line 1482) | type ArrayOfAlarmAction struct
function init (line 1486) | func init() {
type ArrayOfAlarmExpression (line 1490) | type ArrayOfAlarmExpression struct
function init (line 1494) | func init() {
type ArrayOfAlarmState (line 1498) | type ArrayOfAlarmState struct
function init (line 1502) | func init() {
type ArrayOfAlarmTriggeringActionTransitionSpec (line 1506) | type ArrayOfAlarmTriggeringActionTransitionSpec struct
function init (line 1510) | func init() {
type ArrayOfAnswerFileStatusError (line 1514) | type ArrayOfAnswerFileStatusError struct
function init (line 1518) | func init() {
type ArrayOfAnswerFileStatusResult (line 1522) | type ArrayOfAnswerFileStatusResult struct
function init (line 1526) | func init() {
type ArrayOfAnswerFileUpdateFailure (line 1530) | type ArrayOfAnswerFileUpdateFailure struct
function init (line 1534) | func init() {
type ArrayOfAnyType (line 1538) | type ArrayOfAnyType struct
function init (line 1542) | func init() {
type ArrayOfAnyURI (line 1546) | type ArrayOfAnyURI struct
function init (line 1550) | func init() {
type ArrayOfApplyHostProfileConfigurationSpec (line 1554) | type ArrayOfApplyHostProfileConfigurationSpec struct
function init (line 1558) | func init() {
type ArrayOfApplyProfile (line 1562) | type ArrayOfApplyProfile struct
function init (line 1566) | func init() {
type ArrayOfAuthorizationPrivilege (line 1570) | type ArrayOfAuthorizationPrivilege struct
function init (line 1574) | func init() {
type ArrayOfAuthorizationRole (line 1578) | type ArrayOfAuthorizationRole struct
function init (line 1582) | func init() {
type ArrayOfAutoStartPowerInfo (line 1586) | type ArrayOfAutoStartPowerInfo struct
function init (line 1590) | func init() {
type ArrayOfBoolean (line 1594) | type ArrayOfBoolean struct
function init (line 1598) | func init() {
type ArrayOfByte (line 1602) | type ArrayOfByte struct
function init (line 1606) | func init() {
type ArrayOfChangesInfoEventArgument (line 1610) | type ArrayOfChangesInfoEventArgument struct
function init (line 1614) | func init() {
type ArrayOfCheckResult (line 1618) | type ArrayOfCheckResult struct
function init (line 1622) | func init() {
type ArrayOfClusterAction (line 1626) | type ArrayOfClusterAction struct
function init (line 1630) | func init() {
type ArrayOfClusterActionHistory (line 1634) | type ArrayOfClusterActionHistory struct
function init (line 1638) | func init() {
type ArrayOfClusterAttemptedVmInfo (line 1642) | type ArrayOfClusterAttemptedVmInfo struct
function init (line 1646) | func init() {
type ArrayOfClusterDasAamNodeState (line 1650) | type ArrayOfClusterDasAamNodeState struct
function init (line 1654) | func init() {
type ArrayOfClusterDasFailoverLevelAdvancedRuntimeInfoHostSlots (line 1658) | type ArrayOfClusterDasFailoverLevelAdvancedRuntimeInfoHostSlots struct
function init (line 1662) | func init() {
type ArrayOfClusterDasFailoverLevelAdvancedRuntimeInfoVmSlots (line 1666) | type ArrayOfClusterDasFailoverLevelAdvancedRuntimeInfoVmSlots struct
function init (line 1670) | func init() {
type ArrayOfClusterDasVmConfigInfo (line 1674) | type ArrayOfClusterDasVmConfigInfo struct
function init (line 1678) | func init() {
type ArrayOfClusterDasVmConfigSpec (line 1682) | type ArrayOfClusterDasVmConfigSpec struct
function init (line 1686) | func init() {
type ArrayOfClusterDpmHostConfigInfo (line 1690) | type ArrayOfClusterDpmHostConfigInfo struct
function init (line 1694) | func init() {
type ArrayOfClusterDpmHostConfigSpec (line 1698) | type ArrayOfClusterDpmHostConfigSpec struct
function init (line 1702) | func init() {
type ArrayOfClusterDrsFaults (line 1706) | type ArrayOfClusterDrsFaults struct
function init (line 1710) | func init() {
type ArrayOfClusterDrsFaultsFaultsByVm (line 1714) | type ArrayOfClusterDrsFaultsFaultsByVm struct
function init (line 1718) | func init() {
type ArrayOfClusterDrsMigration (line 1722) | type ArrayOfClusterDrsMigration struct
function init (line 1726) | func init() {
type ArrayOfClusterDrsRecommendation (line 1730) | type ArrayOfClusterDrsRecommendation struct
function init (line 1734) | func init() {
type ArrayOfClusterDrsVmConfigInfo (line 1738) | type ArrayOfClusterDrsVmConfigInfo struct
function init (line 1742) | func init() {
type ArrayOfClusterDrsVmConfigSpec (line 1746) | type ArrayOfClusterDrsVmConfigSpec struct
function init (line 1750) | func init() {
type ArrayOfClusterEVCManagerCheckResult (line 1754) | type ArrayOfClusterEVCManagerCheckResult struct
function init (line 1758) | func init() {
type ArrayOfClusterFailoverHostAdmissionControlInfoHostStatus (line 1762) | type ArrayOfClusterFailoverHostAdmissionControlInfoHostStatus struct
function init (line 1766) | func init() {
type ArrayOfClusterGroupInfo (line 1770) | type ArrayOfClusterGroupInfo struct
function init (line 1774) | func init() {
type ArrayOfClusterGroupSpec (line 1778) | type ArrayOfClusterGroupSpec struct
function init (line 1782) | func init() {
type ArrayOfClusterHostRecommendation (line 1786) | type ArrayOfClusterHostRecommendation struct
function init (line 1790) | func init() {
type ArrayOfClusterIoFilterInfo (line 1794) | type ArrayOfClusterIoFilterInfo struct
function init (line 1798) | func init() {
type ArrayOfClusterNotAttemptedVmInfo (line 1802) | type ArrayOfClusterNotAttemptedVmInfo struct
function init (line 1806) | func init() {
type ArrayOfClusterRecommendation (line 1810) | type ArrayOfClusterRecommendation struct
function init (line 1814) | func init() {
type ArrayOfClusterRuleInfo (line 1818) | type ArrayOfClusterRuleInfo struct
function init (line 1822) | func init() {
type ArrayOfClusterRuleSpec (line 1826) | type ArrayOfClusterRuleSpec struct
function init (line 1830) | func init() {
type ArrayOfClusterVmOrchestrationInfo (line 1834) | type ArrayOfClusterVmOrchestrationInfo struct
function init (line 1838) | func init() {
type ArrayOfClusterVmOrchestrationSpec (line 1842) | type ArrayOfClusterVmOrchestrationSpec struct
function init (line 1846) | func init() {
type ArrayOfComplianceFailure (line 1850) | type ArrayOfComplianceFailure struct
function init (line 1854) | func init() {
type ArrayOfComplianceFailureComplianceFailureValues (line 1858) | type ArrayOfComplianceFailureComplianceFailureValues struct
function init (line 1862) | func init() {
type ArrayOfComplianceLocator (line 1866) | type ArrayOfComplianceLocator struct
function init (line 1870) | func init() {
type ArrayOfComplianceResult (line 1874) | type ArrayOfComplianceResult struct
function init (line 1878) | func init() {
type ArrayOfComputeResourceHostSPBMLicenseInfo (line 1882) | type ArrayOfComputeResourceHostSPBMLicenseInfo struct
function init (line 1886) | func init() {
type ArrayOfConflictingConfigurationConfig (line 1890) | type ArrayOfConflictingConfigurationConfig struct
function init (line 1894) | func init() {
type ArrayOfCryptoKeyId (line 1898) | type ArrayOfCryptoKeyId struct
function init (line 1902) | func init() {
type ArrayOfCryptoKeyPlain (line 1906) | type ArrayOfCryptoKeyPlain struct
function init (line 1910) | func init() {
type ArrayOfCryptoKeyResult (line 1914) | type ArrayOfCryptoKeyResult struct
function init (line 1918) | func init() {
type ArrayOfCryptoManagerKmipClusterStatus (line 1922) | type ArrayOfCryptoManagerKmipClusterStatus struct
function init (line 1926) | func init() {
type ArrayOfCryptoManagerKmipServerStatus (line 1930) | type ArrayOfCryptoManagerKmipServerStatus struct
function init (line 1934) | func init() {
type ArrayOfCustomFieldDef (line 1938) | type ArrayOfCustomFieldDef struct
function init (line 1942) | func init() {
type ArrayOfCustomFieldValue (line 1946) | type ArrayOfCustomFieldValue struct
function init (line 1950) | func init() {
type ArrayOfCustomizationAdapterMapping (line 1954) | type ArrayOfCustomizationAdapterMapping struct
function init (line 1958) | func init() {
type ArrayOfCustomizationIpV6Generator (line 1962) | type ArrayOfCustomizationIpV6Generator struct
function init (line 1966) | func init() {
type ArrayOfCustomizationSpecInfo (line 1970) | type ArrayOfCustomizationSpecInfo struct
function init (line 1974) | func init() {
type ArrayOfDVPortConfigSpec (line 1978) | type ArrayOfDVPortConfigSpec struct
function init (line 1982) | func init() {
type ArrayOfDVPortgroupConfigSpec (line 1986) | type ArrayOfDVPortgroupConfigSpec struct
function init (line 1990) | func init() {
type ArrayOfDVSHealthCheckConfig (line 1994) | type ArrayOfDVSHealthCheckConfig struct
function init (line 1998) | func init() {
type ArrayOfDVSNetworkResourcePool (line 2002) | type ArrayOfDVSNetworkResourcePool struct
function init (line 2006) | func init() {
type ArrayOfDVSNetworkResourcePoolConfigSpec (line 2010) | type ArrayOfDVSNetworkResourcePoolConfigSpec struct
function init (line 2014) | func init() {
type ArrayOfDVSVmVnicNetworkResourcePool (line 2018) | type ArrayOfDVSVmVnicNetworkResourcePool struct
function init (line 2022) | func init() {
type ArrayOfDasHeartbeatDatastoreInfo (line 2026) | type ArrayOfDasHeartbeatDatastoreInfo struct
function init (line 2030) | func init() {
type ArrayOfDatacenterMismatchArgument (line 2034) | type ArrayOfDatacenterMismatchArgument struct
function init (line 2038) | func init() {
type ArrayOfDatastoreHostMount (line 2042) | type ArrayOfDatastoreHostMount struct
function init (line 2046) | func init() {
type ArrayOfDatastoreMountPathDatastorePair (line 2050) | type ArrayOfDatastoreMountPathDatastorePair struct
function init (line 2054) | func init() {
type ArrayOfDatastoreVVolContainerFailoverPair (line 2058) | type ArrayOfDatastoreVVolContainerFailoverPair struct
function init (line 2062) | func init() {
type ArrayOfDiagnosticManagerBundleInfo (line 2066) | type ArrayOfDiagnosticManagerBundleInfo struct
function init (line 2070) | func init() {
type ArrayOfDiagnosticManagerLogDescriptor (line 2074) | type ArrayOfDiagnosticManagerLogDescriptor struct
function init (line 2078) | func init() {
type ArrayOfDiskChangeExtent (line 2082) | type ArrayOfDiskChangeExtent struct
function init (line 2086) | func init() {
type ArrayOfDistributedVirtualPort (line 2090) | type ArrayOfDistributedVirtualPort struct
function init (line 2094) | func init() {
type ArrayOfDistributedVirtualPortgroupInfo (line 2098) | type ArrayOfDistributedVirtualPortgroupInfo struct
function init (line 2102) | func init() {
type ArrayOfDistributedVirtualSwitchHostMember (line 2106) | type ArrayOfDistributedVirtualSwitchHostMember struct
function init (line 2110) | func init() {
type ArrayOfDistributedVirtualSwitchHostMemberConfigSpec (line 2114) | type ArrayOfDistributedVirtualSwitchHostMemberConfigSpec struct
function init (line 2118) | func init() {
type ArrayOfDistributedVirtualSwitchHostMemberPnicSpec (line 2122) | type ArrayOfDistributedVirtualSwitchHostMemberPnicSpec struct
function init (line 2126) | func init() {
type ArrayOfDistributedVirtualSwitchHostProductSpec (line 2130) | type ArrayOfDistributedVirtualSwitchHostProductSpec struct
function init (line 2134) | func init() {
type ArrayOfDistributedVirtualSwitchInfo (line 2138) | type ArrayOfDistributedVirtualSwitchInfo struct
function init (line 2142) | func init() {
type ArrayOfDistributedVirtualSwitchKeyedOpaqueBlob (line 2146) | type ArrayOfDistributedVirtualSwitchKeyedOpaqueBlob struct
function init (line 2150) | func init() {
type ArrayOfDistributedVirtualSwitchManagerCompatibilityResult (line 2154) | type ArrayOfDistributedVirtualSwitchManagerCompatibilityResult struct
function init (line 2158) | func init() {
type ArrayOfDistributedVirtualSwitchManagerHostDvsFilterSpec (line 2162) | type ArrayOfDistributedVirtualSwitchManagerHostDvsFilterSpec struct
function init (line 2166) | func init() {
type ArrayOfDistributedVirtualSwitchProductSpec (line 2170) | type ArrayOfDistributedVirtualSwitchProductSpec struct
function init (line 2174) | func init() {
type ArrayOfDouble (line 2178) | type ArrayOfDouble struct
function init (line 2182) | func init() {
type ArrayOfDvsApplyOperationFaultFaultOnObject (line 2186) | type ArrayOfDvsApplyOperationFaultFaultOnObject struct
function init (line 2190) | func init() {
type ArrayOfDvsFilterConfig (line 2194) | type ArrayOfDvsFilterConfig struct
function init (line 2198) | func init() {
type ArrayOfDvsHostInfrastructureTrafficResource (line 2202) | type ArrayOfDvsHostInfrastructureTrafficResource struct
function init (line 2206) | func init() {
type ArrayOfDvsHostVNicProfile (line 2210) | type ArrayOfDvsHostVNicProfile struct
function init (line 2214) | func init() {
type ArrayOfDvsNetworkRuleQualifier (line 2218) | type ArrayOfDvsNetworkRuleQualifier struct
function init (line 2222) | func init() {
type ArrayOfDvsOperationBulkFaultFaultOnHost (line 2226) | type ArrayOfDvsOperationBulkFaultFaultOnHost struct
function init (line 2230) | func init() {
type ArrayOfDvsOutOfSyncHostArgument (line 2234) | type ArrayOfDvsOutOfSyncHostArgument struct
function init (line 2238) | func init() {
type ArrayOfDvsProfile (line 2242) | type ArrayOfDvsProfile struct
function init (line 2246) | func init() {
type ArrayOfDvsServiceConsoleVNicProfile (line 2250) | type ArrayOfDvsServiceConsoleVNicProfile struct
function init (line 2254) | func init() {
type ArrayOfDvsTrafficRule (line 2258) | type ArrayOfDvsTrafficRule struct
function init (line 2262) | func init() {
type ArrayOfDvsVmVnicNetworkResourcePoolRuntimeInfo (line 2266) | type ArrayOfDvsVmVnicNetworkResourcePoolRuntimeInfo struct
function init (line 2270) | func init() {
type ArrayOfDvsVmVnicResourcePoolConfigSpec (line 2274) | type ArrayOfDvsVmVnicResourcePoolConfigSpec struct
function init (line 2278) | func init() {
type ArrayOfDvsVnicAllocatedResource (line 2282) | type ArrayOfDvsVnicAllocatedResource struct
function init (line 2286) | func init() {
type ArrayOfDynamicProperty (line 2290) | type ArrayOfDynamicProperty struct
function init (line 2294) | func init() {
type ArrayOfEVCMode (line 2298) | type ArrayOfEVCMode struct
function init (line 2302) | func init() {
type ArrayOfElementDescription (line 2306) | type ArrayOfElementDescription struct
function init (line 2310) | func init() {
type ArrayOfEntityBackupConfig (line 2314) | type ArrayOfEntityBackupConfig struct
function init (line 2318) | func init() {
type ArrayOfEntityPrivilege (line 2322) | type ArrayOfEntityPrivilege struct
function init (line 2326) | func init() {
type ArrayOfEnumDescription (line 2330) | type ArrayOfEnumDescription struct
function init (line 2334) | func init() {
type ArrayOfEvent (line 2338) | type ArrayOfEvent struct
function init (line 2342) | func init() {
type ArrayOfEventAlarmExpressionComparison (line 2346) | type ArrayOfEventAlarmExpressionComparison struct
function init (line 2350) | func init() {
type ArrayOfEventArgDesc (line 2354) | type ArrayOfEventArgDesc struct
function init (line 2358) | func init() {
type ArrayOfEventDescriptionEventDetail (line 2362) | type ArrayOfEventDescriptionEventDetail struct
function init (line 2366) | func init() {
type ArrayOfExtManagedEntityInfo (line 2370) | type ArrayOfExtManagedEntityInfo struct
function init (line 2374) | func init() {
type ArrayOfExtSolutionManagerInfoTabInfo (line 2378) | type ArrayOfExtSolutionManagerInfoTabInfo struct
function init (line 2382) | func init() {
type ArrayOfExtendedEventPair (line 2386) | type ArrayOfExtendedEventPair struct
function init (line 2390) | func init() {
type ArrayOfExtension (line 2394) | type ArrayOfExtension struct
function init (line 2398) | func init() {
type ArrayOfExtensionClientInfo (line 2402) | type ArrayOfExtensionClientInfo struct
function init (line 2406) | func init() {
type ArrayOfExtensionEventTypeInfo (line 2410) | type ArrayOfExtensionEventTypeInfo struct
function init (line 2414) | func init() {
type ArrayOfExtensionFaultTypeInfo (line 2418) | type ArrayOfExtensionFaultTypeInfo struct
function init (line 2422) | func init() {
type ArrayOfExtensionManagerIpAllocationUsage (line 2426) | type ArrayOfExtensionManagerIpAllocationUsage struct
function init (line 2430) | func init() {
type ArrayOfExtensionPrivilegeInfo (line 2434) | type ArrayOfExtensionPrivilegeInfo struct
function init (line 2438) | func init() {
type ArrayOfExtensionResourceInfo (line 2442) | type ArrayOfExtensionResourceInfo struct
function init (line 2446) | func init() {
type ArrayOfExtensionServerInfo (line 2450) | type ArrayOfExtensionServerInfo struct
function init (line 2454) | func init() {
type ArrayOfExtensionTaskTypeInfo (line 2458) | type ArrayOfExtensionTaskTypeInfo struct
function init (line 2462) | func init() {
type ArrayOfFaultToleranceDiskSpec (line 2466) | type ArrayOfFaultToleranceDiskSpec struct
function init (line 2470) | func init() {
type ArrayOfFcoeConfigVlanRange (line 2474) | type ArrayOfFcoeConfigVlanRange struct
function init (line 2478) | func init() {
type ArrayOfFileInfo (line 2482) | type ArrayOfFileInfo struct
function init (line 2486) | func init() {
type ArrayOfFileQuery (line 2490) | type ArrayOfFileQuery struct
function init (line 2494) | func init() {
type ArrayOfFirewallProfileRulesetProfile (line 2498) | type ArrayOfFirewallProfileRulesetProfile struct
function init (line 2502) | func init() {
type ArrayOfGuestAliases (line 2506) | type ArrayOfGuestAliases struct
function init (line 2510) | func init() {
type ArrayOfGuestAuthAliasInfo (line 2514) | type ArrayOfGuestAuthAliasInfo struct
function init (line 2518) | func init() {
type ArrayOfGuestAuthSubject (line 2522) | type ArrayOfGuestAuthSubject struct
function init (line 2526) | func init() {
type ArrayOfGuestDiskInfo (line 2530) | type ArrayOfGuestDiskInfo struct
function init (line 2534) | func init() {
type ArrayOfGuestFileInfo (line 2538) | type ArrayOfGuestFileInfo struct
function init (line 2542) | func init() {
type ArrayOfGuestInfoNamespaceGenerationInfo (line 2546) | type ArrayOfGuestInfoNamespaceGenerationInfo struct
function init (line 2550) | func init() {
type ArrayOfGuestMappedAliases (line 2554) | type ArrayOfGuestMappedAliases struct
function init (line 2558) | func init() {
type ArrayOfGuestNicInfo (line 2562) | type ArrayOfGuestNicInfo struct
function init (line 2566) | func init() {
type ArrayOfGuestOsDescriptor (line 2570) | type ArrayOfGuestOsDescriptor struct
function init (line 2574) | func init() {
type ArrayOfGuestProcessInfo (line 2578) | type ArrayOfGuestProcessInfo struct
function init (line 2582) | func init() {
type ArrayOfGuestRegKeyRecordSpec (line 2586) | type ArrayOfGuestRegKeyRecordSpec struct
function init (line 2590) | func init() {
type ArrayOfGuestRegValueSpec (line 2594) | type ArrayOfGuestRegValueSpec struct
function init (line 2598) | func init() {
type ArrayOfGuestStackInfo (line 2602) | type ArrayOfGuestStackInfo struct
function init (line 2606) | func init() {
type ArrayOfHbrManagerVmReplicationCapability (line 2610) | type ArrayOfHbrManagerVmReplicationCapability struct
function init (line 2614) | func init() {
type ArrayOfHealthUpdate (line 2618) | type ArrayOfHealthUpdate struct
function init (line 2622) | func init() {
type ArrayOfHealthUpdateInfo (line 2626) | type ArrayOfHealthUpdateInfo struct
function init (line 2630) | func init() {
type ArrayOfHostAccessControlEntry (line 2634) | type ArrayOfHostAccessControlEntry struct
function init (line 2638) | func init() {
type ArrayOfHostAccountSpec (line 2642) | type ArrayOfHostAccountSpec struct
function init (line 2646) | func init() {
type ArrayOfHostActiveDirectory (line 2650) | type ArrayOfHostActiveDirectory struct
function init (line 2654) | func init() {
type ArrayOfHostAuthenticationStoreInfo (line 2658) | type ArrayOfHostAuthenticationStoreInfo struct
function init (line 2662) | func init() {
type ArrayOfHostBootDevice (line 2666) | type ArrayOfHostBootDevice struct
function init (line 2670) | func init() {
type ArrayOfHostCacheConfigurationInfo (line 2674) | type ArrayOfHostCacheConfigurationInfo struct
function init (line 2678) | func init() {
type ArrayOfHostConnectInfoNetworkInfo (line 2682) | type ArrayOfHostConnectInfoNetworkInfo struct
function init (line 2686) | func init() {
type ArrayOfHostCpuIdInfo (line 2690) | type ArrayOfHostCpuIdInfo struct
function init (line 2694) | func init() {
type ArrayOfHostCpuPackage (line 2698) | type ArrayOfHostCpuPackage struct
function init (line 2702) | func init() {
type ArrayOfHostDatastoreBrowserSearchResults (line 2706) | type ArrayOfHostDatastoreBrowserSearchResults struct
function init (line 2710) | func init() {
type ArrayOfHostDatastoreConnectInfo (line 2714) | type ArrayOfHostDatastoreConnectInfo struct
function init (line 2718) | func init() {
type ArrayOfHostDatastoreSystemDatastoreResult (line 2722) | type ArrayOfHostDatastoreSystemDatastoreResult struct
function init (line 2726) | func init() {
type ArrayOfHostDateTimeSystemTimeZone (line 2730) | type ArrayOfHostDateTimeSystemTimeZone struct
function init (line 2734) | func init() {
type ArrayOfHostDhcpService (line 2738) | type ArrayOfHostDhcpService struct
function init (line 2742) | func init() {
type ArrayOfHostDhcpServiceConfig (line 2746) | type ArrayOfHostDhcpServiceConfig struct
function init (line 2750) | func init() {
type ArrayOfHostDiagnosticPartition (line 2754) | type ArrayOfHostDiagnosticPartition struct
function init (line 2758) | func init() {
type ArrayOfHostDiagnosticPartitionCreateOption (line 2762) | type ArrayOfHostDiagnosticPartitionCreateOption struct
function init (line 2766) | func init() {
type ArrayOfHostDiskConfigurationResult (line 2770) | type ArrayOfHostDiskConfigurationResult struct
function init (line 2774) | func init() {
type ArrayOfHostDiskMappingPartitionOption (line 2778) | type ArrayOfHostDiskMappingPartitionOption struct
function init (line 2782) | func init() {
type ArrayOfHostDiskPartitionAttributes (line 2786) | type ArrayOfHostDiskPartitionAttributes struct
function init (line 2790) | func init() {
type ArrayOfHostDiskPartitionBlockRange (line 2794) | type ArrayOfHostDiskPartitionBlockRange struct
function init (line 2798) | func init() {
type ArrayOfHostDiskPartitionInfo (line 2802) | type ArrayOfHostDiskPartitionInfo struct
function init (line 2806) | func init() {
type ArrayOfHostEventArgument (line 2810) | type ArrayOfHostEventArgument struct
function init (line 2814) | func init() {
type ArrayOfHostFeatureCapability (line 2818) | type ArrayOfHostFeatureCapability struct
function init (line 2822) | func init() {
type ArrayOfHostFeatureMask (line 2826) | type ArrayOfHostFeatureMask struct
function init (line 2830) | func init() {
type ArrayOfHostFeatureVersionInfo (line 2834) | type ArrayOfHostFeatureVersionInfo struct
function init (line 2838) | func init() {
type ArrayOfHostFileSystemMountInfo (line 2842) | type ArrayOfHostFileSystemMountInfo struct
function init (line 2846) | func init() {
type ArrayOfHostFirewallConfigRuleSetConfig (line 2850) | type ArrayOfHostFirewallConfigRuleSetConfig struct
function init (line 2854) | func init() {
type ArrayOfHostFirewallRule (line 2858) | type ArrayOfHostFirewallRule struct
function init (line 2862) | func init() {
type ArrayOfHostFirewallRuleset (line 2866) | type ArrayOfHostFirewallRuleset struct
function init (line 2870) | func init() {
type ArrayOfHostFirewallRulesetIpNetwork (line 2874) | type ArrayOfHostFirewallRulesetIpNetwork struct
function init (line 2878) | func init() {
type ArrayOfHostGraphicsConfigDeviceType (line 2882) | type ArrayOfHostGraphicsConfigDeviceType struct
function init (line 2886) | func init() {
type ArrayOfHostGraphicsInfo (line 2890) | type ArrayOfHostGraphicsInfo struct
function init (line 2894) | func init() {
type ArrayOfHostHardwareElementInfo (line 2898) | type ArrayOfHostHardwareElementInfo struct
function init (line 2902) | func init() {
type ArrayOfHostHostBusAdapter (line 2906) | type ArrayOfHostHostBusAdapter struct
function init (line 2910) | func init() {
type ArrayOfHostInternetScsiHbaIscsiIpv6Address (line 2914) | type ArrayOfHostInternetScsiHbaIscsiIpv6Address struct
function init (line 2918) | func init() {
type ArrayOfHostInternetScsiHbaParamValue (line 2922) | type ArrayOfHostInternetScsiHbaParamValue struct
function init (line 2926) | func init() {
type ArrayOfHostInternetScsiHbaSendTarget (line 2930) | type ArrayOfHostInternetScsiHbaSendTarget struct
function init (line 2934) | func init() {
type ArrayOfHostInternetScsiHbaStaticTarget (line 2938) | type ArrayOfHostInternetScsiHbaStaticTarget struct
function init (line 2942) | func init() {
type ArrayOfHostIoFilterInfo (line 2946) | type ArrayOfHostIoFilterInfo struct
function init (line 2950) | func init() {
type ArrayOfHostIpConfigIpV6Address (line 2954) | type ArrayOfHostIpConfigIpV6Address struct
function init (line 2958) | func init() {
type ArrayOfHostIpRouteEntry (line 2962) | type ArrayOfHostIpRouteEntry struct
function init (line 2966) | func init() {
type ArrayOfHostIpRouteOp (line 2970) | type ArrayOfHostIpRouteOp struct
function init (line 2974) | func init() {
type ArrayOfHostLowLevelProvisioningManagerDiskLayoutSpec (line 2978) | type ArrayOfHostLowLevelProvisioningManagerDiskLayoutSpec struct
function init (line 2982) | func init() {
type ArrayOfHostLowLevelProvisioningManagerFileDeleteResult (line 2986) | type ArrayOfHostLowLevelProvisioningManagerFileDeleteResult struct
function init (line 2990) | func init() {
type ArrayOfHostLowLevelProvisioningManagerFileDeleteSpec (line 2994) | type ArrayOfHostLowLevelProvisioningManagerFileDeleteSpec struct
function init (line 2998) | func init() {
type ArrayOfHostLowLevelProvisioningManagerFileReserveResult (line 3002) | type ArrayOfHostLowLevelProvisioningManagerFileReserveResult struct
function init (line 3006) | func init() {
type ArrayOfHostLowLevelProvisioningManagerFileReserveSpec (line 3010) | type ArrayOfHostLowLevelProvisioningManagerFileReserveSpec struct
function init (line 3014) | func init() {
type ArrayOfHostLowLevelProvisioningManagerSnapshotLayoutSpec (line 3018) | type ArrayOfHostLowLevelProvisioningManagerSnapshotLayoutSpec struct
function init (line 3022) | func init() {
type ArrayOfHostMemberHealthCheckResult (line 3026) | type ArrayOfHostMemberHealthCheckResult struct
function init (line 3030) | func init() {
type ArrayOfHostMemberRuntimeInfo (line 3034) | type ArrayOfHostMemberRuntimeInfo struct
function init (line 3038) | func init() {
type ArrayOfHostMultipathInfoLogicalUnit (line 3042) | type ArrayOfHostMultipathInfoLogicalUnit struct
function init (line 3046) | func init() {
type ArrayOfHostMultipathInfoPath (line 3050) | type ArrayOfHostMultipathInfoPath struct
function init (line 3054) | func init() {
type ArrayOfHostMultipathStateInfoPath (line 3058) | type ArrayOfHostMultipathStateInfoPath struct
function init (line 3062) | func init() {
type ArrayOfHostNasVolumeConfig (line 3066) | type ArrayOfHostNasVolumeConfig struct
function init (line 3070) | func init() {
type ArrayOfHostNatService (line 3074) | type ArrayOfHostNatService struct
function init (line 3078) | func init() {
type ArrayOfHostNatServiceConfig (line 3082) | type ArrayOfHostNatServiceConfig struct
function init (line 3086) | func init() {
type ArrayOfHostNatServicePortForwardSpec (line 3090) | type ArrayOfHostNatServicePortForwardSpec struct
function init (line 3094) | func init() {
type ArrayOfHostNetStackInstance (line 3098) | type ArrayOfHostNetStackInstance struct
function init (line 3102) | func init() {
type ArrayOfHostNetworkConfigNetStackSpec (line 3106) | type ArrayOfHostNetworkConfigNetStackSpec struct
function init (line 3110) | func init() {
type ArrayOfHostNumaNode (line 3114) | type ArrayOfHostNumaNode struct
function init (line 3118) | func init() {
type ArrayOfHostNumericSensorInfo (line 3122) | type ArrayOfHostNumericSensorInfo struct
function init (line 3126) | func init() {
type ArrayOfHostOpaqueNetworkInfo (line 3130) | type ArrayOfHostOpaqueNetworkInfo struct
function init (line 3134) | func init() {
type ArrayOfHostOpaqueSwitch (line 3138) | type ArrayOfHostOpaqueSwitch struct
function init (line 3142) | func init() {
type ArrayOfHostOpaqueSwitchPhysicalNicZone (line 3146) | type ArrayOfHostOpaqueSwitchPhysicalNicZone struct
function init (line 3150) | func init() {
type ArrayOfHostPatchManagerStatus (line 3154) | type ArrayOfHostPatchManagerStatus struct
function init (line 3158) | func init() {
type ArrayOfHostPatchManagerStatusPrerequisitePatch (line 3162) | type ArrayOfHostPatchManagerStatusPrerequisitePatch struct
function init (line 3166) | func init() {
type ArrayOfHostPathSelectionPolicyOption (line 3170) | type ArrayOfHostPathSelectionPolicyOption struct
function init (line 3174) | func init() {
type ArrayOfHostPciDevice (line 3178) | type ArrayOfHostPciDevice struct
function init (line 3182) | func init() {
type ArrayOfHostPciPassthruConfig (line 3186) | type ArrayOfHostPciPassthruConfig struct
function init (line 3190) | func init() {
type ArrayOfHostPciPassthruInfo (line 3194) | type ArrayOfHostPciPassthruInfo struct
function init (line 3198) | func init() {
type ArrayOfHostPlacedVirtualNicIdentifier (line 3202) | type ArrayOfHostPlacedVirtualNicIdentifier struct
function init (line 3206) | func init() {
type ArrayOfHostPlugStoreTopologyAdapter (line 3210) | type ArrayOfHostPlugStoreTopologyAdapter struct
function init (line 3214) | func init() {
type ArrayOfHostPlugStoreTopologyDevice (line 3218) | type ArrayOfHostPlugStoreTopologyDevice struct
function init (line 3222) | func init() {
type ArrayOfHostPlugStoreTopologyPath (line 3226) | type ArrayOfHostPlugStoreTopologyPath struct
function init (line 3230) | func init() {
type ArrayOfHostPlugStoreTopologyPlugin (line 3234) | type ArrayOfHostPlugStoreTopologyPlugin struct
function init (line 3238) | func init() {
type ArrayOfHostPlugStoreTopologyTarget (line 3242) | type ArrayOfHostPlugStoreTopologyTarget struct
function init (line 3246) | func init() {
type ArrayOfHostPnicNetworkResourceInfo (line 3250) | type ArrayOfHostPnicNetworkResourceInfo struct
function init (line 3254) | func init() {
type ArrayOfHostPortGroup (line 3258) | type ArrayOfHostPortGroup struct
function init (line 3262) | func init() {
type ArrayOfHostPortGroupConfig (line 3266) | type ArrayOfHostPortGroupConfig struct
function init (line 3270) | func init() {
type ArrayOfHostPortGroupPort (line 3274) | type ArrayOfHostPortGroupPort struct
function init (line 3278) | func init() {
type ArrayOfHostPortGroupProfile (line 3282) | type ArrayOfHostPortGroupProfile struct
function init (line 3286) | func init() {
type ArrayOfHostPowerPolicy (line 3290) | type ArrayOfHostPowerPolicy struct
function init (line 3294) | func init() {
type ArrayOfHostProfileManagerCompositionValidationResultResultElement (line 3298) | type ArrayOfHostProfileManagerCompositionValidationResultResultElement s...
function init (line 3302) | func init() {
type ArrayOfHostProfileManagerHostToConfigSpecMap (line 3306) | type ArrayOfHostProfileManagerHostToConfigSpecMap struct
function init (line 3310) | func init() {
type ArrayOfHostProfilesEntityCustomizations (line 3314) | type ArrayOfHostProfilesEntityCustomizations struct
function init (line 3318) | func init() {
type ArrayOfHostProtocolEndpoint (line 3322) | type ArrayOfHostProtocolEndpoint struct
function init (line 3326) | func init() {
type ArrayOfHostProxySwitch (line 3330) | type ArrayOfHostProxySwitch struct
function init (line 3334) | func init() {
type ArrayOfHostProxySwitchConfig (line 3338) | type ArrayOfHostProxySwitchConfig struct
function init (line 3342) | func init() {
type ArrayOfHostProxySwitchHostLagConfig (line 3346) | type ArrayOfHostProxySwitchHostLagConfig struct
function init (line 3350) | func init() {
type ArrayOfHostRuntimeInfoNetStackInstanceRuntimeInfo (line 3354) | type ArrayOfHostRuntimeInfoNetStackInstanceRuntimeInfo struct
function init (line 3358) | func init() {
type ArrayOfHostScsiDisk (line 3362) | type ArrayOfHostScsiDisk struct
function init (line 3366) | func init() {
type ArrayOfHostScsiDiskPartition (line 3370) | type ArrayOfHostScsiDiskPartition struct
function init (line 3374) | func init() {
type ArrayOfHostScsiTopologyInterface (line 3378) | type ArrayOfHostScsiTopologyInterface struct
function init (line 3382) | func init() {
type ArrayOfHostScsiTopologyLun (line 3386) | type ArrayOfHostScsiTopologyLun struct
function init (line 3390) | func init() {
type ArrayOfHostScsiTopologyTarget (line 3394) | type ArrayOfHostScsiTopologyTarget struct
function init (line 3398) | func init() {
type ArrayOfHostService (line 3402) | type ArrayOfHostService struct
function init (line 3406) | func init() {
type ArrayOfHostServiceConfig (line 3410) | type ArrayOfHostServiceConfig struct
function init (line 3414) | func init() {
type ArrayOfHostSnmpDestination (line 3418) | type ArrayOfHostSnmpDestination struct
function init (line 3422) | func init() {
type ArrayOfHostSriovDevicePoolInfo (line 3426) | type ArrayOfHostSriovDevicePoolInfo struct
function init (line 3430) | func init() {
type ArrayOfHostSslThumbprintInfo (line 3434) | type ArrayOfHostSslThumbprintInfo struct
function init (line 3438) | func init() {
type ArrayOfHostStorageArrayTypePolicyOption (line 3442) | type ArrayOfHostStorageArrayTypePolicyOption struct
function init (line 3446) | func init() {
type ArrayOfHostStorageElementInfo (line 3450) | type ArrayOfHostStorageElementInfo struct
function init (line 3454) | func init() {
type ArrayOfHostStorageOperationalInfo (line 3458) | type ArrayOfHostStorageOperationalInfo struct
function init (line 3462) | func init() {
type ArrayOfHostStorageSystemDiskLocatorLedResult (line 3466) | type ArrayOfHostStorageSystemDiskLocatorLedResult struct
function init (line 3470) | func init() {
type ArrayOfHostStorageSystemScsiLunResult (line 3474) | type ArrayOfHostStorageSystemScsiLunResult struct
function init (line 3478) | func init() {
type ArrayOfHostStorageSystemVmfsVolumeResult (line 3482) | type ArrayOfHostStorageSystemVmfsVolumeResult struct
function init (line 3486) | func init() {
type ArrayOfHostSubSpecification (line 3490) | type ArrayOfHostSubSpecification struct
function init (line 3494) | func init() {
type ArrayOfHostSystemIdentificationInfo (line 3498) | type ArrayOfHostSystemIdentificationInfo struct
function init (line 3502) | func init() {
type ArrayOfHostSystemResourceInfo (line 3506) | type ArrayOfHostSystemResourceInfo struct
function init (line 3510) | func init() {
type ArrayOfHostSystemSwapConfigurationSystemSwapOption (line 3514) | type ArrayOfHostSystemSwapConfigurationSystemSwapOption struct
function init (line 3518) | func init() {
type ArrayOfHostTpmDigestInfo (line 3522) | type ArrayOfHostTpmDigestInfo struct
function init (line 3526) | func init() {
type ArrayOfHostTpmEventLogEntry (line 3530) | type ArrayOfHostTpmEventLogEntry struct
function init (line 3534) | func init() {
type ArrayOfHostUnresolvedVmfsExtent (line 3538) | type ArrayOfHostUnresolvedVmfsExtent struct
function init (line 3542) | func init() {
type ArrayOfHostUnresolvedVmfsResolutionResult (line 3546) | type ArrayOfHostUnresolvedVmfsResolutionResult struct
function init (line 3550) | func init() {
type ArrayOfHostUnresolvedVmfsResolutionSpec (line 3554) | type ArrayOfHostUnresolvedVmfsResolutionSpec struct
function init (line 3558) | func init() {
type ArrayOfHostUnresolvedVmfsVolume (line 3562) | type ArrayOfHostUnresolvedVmfsVolume struct
function init (line 3566) | func init() {
type ArrayOfHostVFlashManagerVFlashCacheConfigInfoVFlashModuleConfigOption (line 3570) | type ArrayOfHostVFlashManagerVFlashCacheConfigInfoVFlashModuleConfigOpti...
function init (line 3574) | func init() {
type ArrayOfHostVMotionCompatibility (line 3578) | type ArrayOfHostVMotionCompatibility struct
function init (line 3582) | func init() {
type ArrayOfHostVirtualNic (line 3586) | type ArrayOfHostVirtualNic struct
function init (line 3590) | func init() {
type ArrayOfHostVirtualNicConfig (line 3594) | type ArrayOfHostVirtualNicConfig struct
function init (line 3598) | func init() {
type ArrayOfHostVirtualNicManagerNicTypeSelection (line 3602) | type ArrayOfHostVirtualNicManagerNicTypeSelection struct
function init (line 3606) | func init() {
type ArrayOfHostVirtualSwitch (line 3610) | type ArrayOfHostVirtualSwitch struct
function init (line 3614) | func init() {
type ArrayOfHostVirtualSwitchConfig (line 3618) | type ArrayOfHostVirtualSwitchConfig struct
function init (line 3622) | func init() {
type ArrayOfHostVmciAccessManagerAccessSpec (line 3626) | type ArrayOfHostVmciAccessManagerAccessSpec struct
function init (line 3630) | func init() {
type ArrayOfHostVmfsRescanResult (line 3634) | type ArrayOfHostVmfsRescanResult struct
function init (line 3638) | func init() {
type ArrayOfHostVsanInternalSystemCmmdsQuery (line 3642) | type ArrayOfHostVsanInternalSystemCmmdsQuery struct
function init (line 3646) | func init() {
type ArrayOfHostVsanInternalSystemDeleteVsanObjectsResult (line 3650) | type ArrayOfHostVsanInternalSystemDeleteVsanObjectsResult struct
function init (line 3654) | func init() {
type ArrayOfHostVsanInternalSystemVsanObjectOperationResult (line 3658) | type ArrayOfHostVsanInternalSystemVsanObjectOperationResult struct
function init (line 3662) | func init() {
type ArrayOfHostVsanInternalSystemVsanPhysicalDiskDiagnosticsResult (line 3666) | type ArrayOfHostVsanInternalSystemVsanPhysicalDiskDiagnosticsResult struct
function init (line 3670) | func init() {
type ArrayOfHttpNfcLeaseDatastoreLeaseInfo (line 3674) | type ArrayOfHttpNfcLeaseDatastoreLeaseInfo struct
function init (line 3678) | func init() {
type ArrayOfHttpNfcLeaseDeviceUrl (line 3682) | type ArrayOfHttpNfcLeaseDeviceUrl struct
function init (line 3686) | func init() {
type ArrayOfHttpNfcLeaseHostInfo (line 3690) | type ArrayOfHttpNfcLeaseHostInfo struct
function init (line 3694) | func init() {
type ArrayOfHttpNfcLeaseManifestEntry (line 3698) | type ArrayOfHttpNfcLeaseManifestEntry struct
function init (line 3702) | func init() {
type ArrayOfID (line 3706) | type ArrayOfID struct
function init (line 3710) | func init() {
type ArrayOfImportOperationBulkFaultFaultOnImport (line 3714) | type ArrayOfImportOperationBulkFaultFaultOnImport struct
function init (line 3718) | func init() {
type ArrayOfImportSpec (line 3722) | type ArrayOfImportSpec struct
function init (line 3726) | func init() {
type ArrayOfInt (line 3730) | type ArrayOfInt struct
function init (line 3734) | func init() {
type ArrayOfIoFilterHostIssue (line 3738) | type ArrayOfIoFilterHostIssue struct
function init (line 3742) | func init() {
type ArrayOfIpPool (line 3746) | type ArrayOfIpPool struct
function init (line 3750) | func init() {
type ArrayOfIpPoolAssociation (line 3754) | type ArrayOfIpPoolAssociation struct
function init (line 3758) | func init() {
type ArrayOfIpPoolManagerIpAllocation (line 3762) | type ArrayOfIpPoolManagerIpAllocation struct
function init (line 3766) | func init() {
type ArrayOfIscsiDependencyEntity (line 3770) | type ArrayOfIscsiDependencyEntity struct
function init (line 3774) | func init() {
type ArrayOfIscsiPortInfo (line 3778) | type ArrayOfIscsiPortInfo struct
function init (line 3782) | func init() {
type ArrayOfKernelModuleInfo (line 3786) | type ArrayOfKernelModuleInfo struct
function init (line 3790) | func init() {
type ArrayOfKeyAnyValue (line 3794) | type ArrayOfKeyAnyValue struct
function init (line 3798) | func init() {
type ArrayOfKeyValue (line 3802) | type ArrayOfKeyValue struct
function init (line 3806) | func init() {
type ArrayOfKmipClusterInfo (line 3810) | type ArrayOfKmipClusterInfo struct
function init (line 3814) | func init() {
type ArrayOfKmipServerInfo (line 3818) | type ArrayOfKmipServerInfo struct
function init (line 3822) | func init() {
type ArrayOfLicenseAssignmentManagerLicenseAssignment (line 3826) | type ArrayOfLicenseAssignmentManagerLicenseAssignment struct
function init (line 3830) | func init() {
type ArrayOfLicenseAvailabilityInfo (line 3834) | type ArrayOfLicenseAvailabilityInfo struct
function init (line 3838) | func init() {
type ArrayOfLicenseFeatureInfo (line 3842) | type ArrayOfLicenseFeatureInfo struct
function init (line 3846) | func init() {
type ArrayOfLicenseManagerLicenseInfo (line 3850) | type ArrayOfLicenseManagerLicenseInfo struct
function init (line 3854) | func init() {
type ArrayOfLicenseReservationInfo (line 3858) | type ArrayOfLicenseReservationInfo struct
function init (line 3862) | func init() {
type ArrayOfLocalizableMessage (line 3866) | type ArrayOfLocalizableMessage struct
function init (line 3870) | func init() {
type ArrayOfLocalizationManagerMessageCatalog (line 3874) | type ArrayOfLocalizationManagerMessageCatalog struct
function init (line 3878) | func init() {
type ArrayOfLong (line 3882) | type ArrayOfLong struct
function init (line 3886) | func init() {
type ArrayOfManagedObjectReference (line 3890) | type ArrayOfManagedObjectReference struct
function init (line 3894) | func init() {
type ArrayOfMethodActionArgument (line 3898) | type ArrayOfMethodActionArgument struct
function init (line 3902) | func init() {
type ArrayOfMethodFault (line 3906) | type ArrayOfMethodFault struct
function init (line 3910) | func init() {
type ArrayOfMissingObject (line 3914) | type ArrayOfMissingObject struct
function init (line 3918) | func init() {
type ArrayOfMissingProperty (line 3922) | type ArrayOfMissingProperty struct
function init (line 3926) | func init() {
type ArrayOfMultipleCertificatesVerifyFaultThumbprintData (line 3930) | type ArrayOfMultipleCertificatesVerifyFaultThumbprintData struct
function init (line 3934) | func init() {
type ArrayOfNasStorageProfile (line 3938) | type ArrayOfNasStorageProfile struct
function init (line 3942) | func init() {
type ArrayOfNetIpConfigInfoIpAddress (line 3946) | type ArrayOfNetIpConfigInfoIpAddress struct
function init (line 3950) | func init() {
type ArrayOfNetIpConfigSpecIpAddressSpec (line 3954) | type ArrayOfNetIpConfigSpecIpAddressSpec struct
function init (line 3958) | func init() {
type ArrayOfNetIpRouteConfigInfoIpRoute (line 3962) | type ArrayOfNetIpRouteConfigInfoIpRoute struct
function init (line 3966) | func init() {
type ArrayOfNetIpRouteConfigSpecIpRouteSpec (line 3970) | type ArrayOfNetIpRouteConfigSpecIpRouteSpec struct
function init (line 3974) | func init() {
type ArrayOfNetIpStackInfoDefaultRouter (line 3978) | type ArrayOfNetIpStackInfoDefaultRouter struct
function init (line 3982) | func init() {
type ArrayOfNetIpStackInfoNetToMedia (line 3986) | type ArrayOfNetIpStackInfoNetToMedia struct
function init (line 3990) | func init() {
type ArrayOfNetStackInstanceProfile (line 3994) | type ArrayOfNetStackInstanceProfile struct
function init (line 3998) | func init() {
type ArrayOfNumericRange (line 4002) | type ArrayOfNumericRange struct
function init (line 4006) | func init() {
type ArrayOfObjectContent (line 4010) | type ArrayOfObjectContent struct
function init (line 4014) | func init() {
type ArrayOfObjectSpec (line 4018) | type ArrayOfObjectSpec struct
function init (line 4022) | func init() {
type ArrayOfObjectUpdate (line 4026) | type ArrayOfObjectUpdate struct
function init (line 4030) | func init() {
type ArrayOfOpaqueNetworkTargetInfo (line 4034) | type ArrayOfOpaqueNetworkTargetInfo struct
function init (line 4038) | func init() {
type ArrayOfOptionDef (line 4042) | type ArrayOfOptionDef struct
function init (line 4046) | func init() {
type ArrayOfOptionProfile (line 4050) | type ArrayOfOptionProfile struct
function init (line 4054) | func init() {
type ArrayOfOptionValue (line 4058) | type ArrayOfOptionValue struct
function init (line 4062) | func init() {
type ArrayOfOvfConsumerOstNode (line 4066) | type ArrayOfOvfConsumerOstNode struct
function init (line 4070) | func init() {
type ArrayOfOvfConsumerOvfSection (line 4074) | type ArrayOfOvfConsumerOvfSection struct
function init (line 4078) | func init() {
type ArrayOfOvfDeploymentOption (line 4082) | type ArrayOfOvfDeploymentOption struct
function init (line 4086) | func init() {
type ArrayOfOvfFile (line 4090) | type ArrayOfOvfFile struct
function init (line 4094) | func init() {
type ArrayOfOvfFileItem (line 4098) | type ArrayOfOvfFileItem struct
function init (line 4102) | func init() {
type ArrayOfOvfNetworkInfo (line 4106) | type ArrayOfOvfNetworkInfo struct
function init (line 4110) | func init() {
type ArrayOfOvfNetworkMapping (line 4114) | type ArrayOfOvfNetworkMapping struct
function init (line 4118) | func init() {
type ArrayOfOvfOptionInfo (line 4122) | type ArrayOfOvfOptionInfo struct
function init (line 4126) | func init() {
type ArrayOfOvfResourceMap (line 4130) | type ArrayOfOvfResourceMap struct
function init (line 4134) | func init() {
type ArrayOfPerfCounterInfo (line 4138) | type ArrayOfPerfCounterInfo struct
function init (line 4142) | func init() {
type ArrayOfPerfEntityMetricBase (line 4146) | type ArrayOfPerfEntityMetricBase struct
function init (line 4150) | func init() {
type ArrayOfPerfInterval (line 4154) | type ArrayOfPerfInterval struct
function init (line 4158) | func init() {
type ArrayOfPerfMetricId (line 4162) | type ArrayOfPerfMetricId struct
function init (line 4166) | func init() {
type ArrayOfPerfMetricSeries (line 4170) | type ArrayOfPerfMetricSeries struct
function init (line 4174) | func init() {
type ArrayOfPerfMetricSeriesCSV (line 4178) | type ArrayOfPerfMetricSeriesCSV struct
function init (line 4182) | func init() {
type ArrayOfPerfQuerySpec (line 4186) | type ArrayOfPerfQuerySpec struct
function init (line 4190) | func init() {
type ArrayOfPerfSampleInfo (line 4194) | type ArrayOfPerfSampleInfo struct
function init (line 4198) | func init() {
type ArrayOfPerformanceManagerCounterLevelMapping (line 4202) | type ArrayOfPerformanceManagerCounterLevelMapping struct
function init (line 4206) | func init() {
type ArrayOfPermission (line 4210) | type ArrayOfPermission struct
function init (line 4214) | func init() {
type ArrayOfPermissionProfile (line 4218) | type ArrayOfPermissionProfile struct
function init (line 4222) | func init() {
type ArrayOfPhysicalNic (line 4226) | type ArrayOfPhysicalNic struct
function init (line 4230) | func init() {
type ArrayOfPhysicalNicConfig (line 4234) | type ArrayOfPhysicalNicConfig struct
function init (line 4238) | func init() {
type ArrayOfPhysicalNicHintInfo (line 4242) | type ArrayOfPhysicalNicHintInfo struct
function init (line 4246) | func init() {
type ArrayOfPhysicalNicIpHint (line 4250) | type ArrayOfPhysicalNicIpHint struct
function init (line 4254) | func init() {
type ArrayOfPhysicalNicLinkInfo (line 4258) | type ArrayOfPhysicalNicLinkInfo struct
function init (line 4262) | func init() {
type ArrayOfPhysicalNicNameHint (line 4266) | type ArrayOfPhysicalNicNameHint struct
function init (line 4270) | func init() {
type ArrayOfPhysicalNicProfile (line 4274) | type ArrayOfPhysicalNicProfile struct
function init (line 4278) | func init() {
type ArrayOfPlacementAffinityRule (line 4282) | type ArrayOfPlacementAffinityRule struct
function init (line 4286) | func init() {
type ArrayOfPlacementSpec (line 4290) | type ArrayOfPlacementSpec struct
function init (line 4294) | func init() {
type ArrayOfPnicUplinkProfile (line 4298) | type ArrayOfPnicUplinkProfile struct
function init (line 4302) | func init() {
type ArrayOfPodDiskLocator (line 4306) | type ArrayOfPodDiskLocator struct
function init (line 4310) | func init() {
type ArrayOfPolicyOption (line 4314) | type ArrayOfPolicyOption struct
function init (line 4318) | func init() {
type ArrayOfPrivilegeAvailability (line 4322) | type ArrayOfPrivilegeAvailability struct
function init (line 4326) | func init() {
type ArrayOfProductComponentInfo (line 4330) | type ArrayOfProductComponentInfo struct
function init (line 4334) | func init() {
type ArrayOfProfileApplyProfileProperty (line 4338) | type ArrayOfProfileApplyProfileProperty struct
function init (line 4342) | func init() {
type ArrayOfProfileDeferredPolicyOptionParameter (line 4346) | type ArrayOfProfileDeferredPolicyOptionParameter struct
function init (line 4350) | func init() {
type ArrayOfProfileDescriptionSection (line 4354) | type ArrayOfProfileDescriptionSection struct
function init (line 4358) | func init() {
type ArrayOfProfileExecuteError (line 4362) | type ArrayOfProfileExecuteError struct
function init (line 4366) | func init() {
type ArrayOfProfileExpression (line 4370) | type ArrayOfProfileExpression struct
function init (line 4374) | func init() {
type ArrayOfProfileExpressionMetadata (line 4378) | type ArrayOfProfileExpressionMetadata struct
function init (line 4382) | func init() {
type ArrayOfProfileMetadata (line 4386) | type ArrayOfProfileMetadata struct
function init (line 4390) | func init() {
type ArrayOfProfileMetadataProfileSortSpec (line 4394) | type ArrayOfProfileMetadataProfileSortSpec struct
function init (line 4398) | func init() {
type ArrayOfProfileParameterMetadata (line 4402) | type ArrayOfProfileParameterMetadata struct
function init (line 4406) | func init() {
type ArrayOfProfilePolicy (line 4410) | type ArrayOfProfilePolicy struct
function init (line 4414) | func init() {
type ArrayOfProfilePolicyMetadata (line 4418) | type ArrayOfProfilePolicyMetadata struct
function init (line 4422) | func init() {
type ArrayOfProfilePolicyOptionMetadata (line 4426) | type ArrayOfProfilePolicyOptionMetadata struct
function init (line 4430) | func init() {
type ArrayOfProfileProfileStructureProperty (line 4434) | type ArrayOfProfileProfileStructureProperty struct
function init (line 4438) | func init() {
type ArrayOfProfilePropertyPath (line 4442) | type ArrayOfProfilePropertyPath struct
function init (line 4446) | func init() {
type ArrayOfProfileUpdateFailedUpdateFailure (line 4450) | type ArrayOfProfileUpdateFailedUpdateFailure struct
function init (line 4454) | func init() {
type ArrayOfPropertyChange (line 4458) | type ArrayOfPropertyChange struct
function init (line 4462) | func init() {
type ArrayOfPropertyFilterSpec (line 4466) | type ArrayOfPropertyFilterSpec struct
function init (line 4470) | func init() {
type ArrayOfPropertyFilterUpdate (line 4474) | type ArrayOfPropertyFilterUpdate struct
function init (line 4478) | func init() {
type ArrayOfPropertySpec (line 4482) | type ArrayOfPropertySpec struct
function init (line 4486) | func init() {
type ArrayOfRelation (line 4490) | type ArrayOfRelation struct
function init (line 4494) | func init() {
type ArrayOfReplicationInfoDiskSettings (line 4498) | type ArrayOfReplicationInfoDiskSettings struct
function init (line 4502) | func init() {
type ArrayOfResourceConfigSpec (line 4506) | type ArrayOfResourceConfigSpec struct
function init (line 4510) | func init() {
type ArrayOfScheduledTaskDetail (line 4514) | type ArrayOfScheduledTaskDetail struct
function init (line 4518) | func init() {
type ArrayOfScsiLun (line 4522) | type ArrayOfScsiLun struct
function init (line 4526) | func init() {
type ArrayOfScsiLunDescriptor (line 4530) | type ArrayOfScsiLunDescriptor struct
function init (line 4534) | func init() {
type ArrayOfScsiLunDurableName (line 4538) | type ArrayOfScsiLunDurableName struct
function init (line 4542) | func init() {
type ArrayOfSelectionSet (line 4546) | type ArrayOfSelectionSet struct
function init (line 4550) | func init() {
type ArrayOfSelectionSpec (line 4554) | type ArrayOfSelectionSpec struct
function init (line 4558) | func init() {
type ArrayOfServiceConsolePortGroupProfile (line 4562) | type ArrayOfServiceConsolePortGroupProfile struct
function init (line 4566) | func init() {
type ArrayOfServiceLocator (line 4570) | type ArrayOfServiceLocator struct
function init (line 4574) | func init() {
type ArrayOfServiceManagerServiceInfo (line 4578) | type ArrayOfServiceManagerServiceInfo struct
function init (line 4582) | func init() {
type ArrayOfServiceProfile (line 4586) | type ArrayOfServiceProfile struct
function init (line 4590) | func init() {
type ArrayOfShort (line 4594) | type ArrayOfShort struct
function init (line 4598) | func init() {
type ArrayOfSoftwarePackage (line 4602) | type ArrayOfSoftwarePackage struct
function init (line 4606) | func init() {
type ArrayOfStaticRouteProfile (line 4610) | type ArrayOfStaticRouteProfile struct
function init (line 4614) | func init() {
type ArrayOfStorageDrsOptionSpec (line 4618) | type ArrayOfStorageDrsOptionSpec struct
function init (line 4622) | func init() {
type ArrayOfStorageDrsPlacementRankVmSpec (line 4626) | type ArrayOfStorageDrsPlacementRankVmSpec struct
function init (line 4630) | func init() {
type ArrayOfStorageDrsVmConfigInfo (line 4634) | type ArrayOfStorageDrsVmConfigInfo struct
function init (line 4638) | func init() {
type ArrayOfStorageDrsVmConfigSpec (line 4642) | type ArrayOfStorageDrsVmConfigSpec struct
function init (line 4646) | func init() {
type ArrayOfStoragePerformanceSummary (line 4650) | type ArrayOfStoragePerformanceSummary struct
function init (line 4654) | func init() {
type ArrayOfStorageRequirement (line 4658) | type ArrayOfStorageRequirement struct
function init (line 4662) | func init() {
type ArrayOfString (line 4666) | type ArrayOfString struct
function init (line 4670) | func init() {
type ArrayOfStructuredCustomizations (line 4674) | type ArrayOfStructuredCustomizations struct
function init (line 4678) | func init() {
type ArrayOfSystemEventInfo (line 4682) | type ArrayOfSystemEventInfo struct
function init (line 4686) | func init() {
type ArrayOfTag (line 4690) | type ArrayOfTag struct
function init (line 4694) | func init() {
type ArrayOfTaskInfo (line 4698) | type ArrayOfTaskInfo struct
function init (line 4702) | func init() {
type ArrayOfTaskInfoState (line 4706) | type ArrayOfTaskInfoState struct
function init (line 4710) | func init() {
type ArrayOfTypeDescription (line 4714) | type ArrayOfTypeDescription struct
function init (line 4718) | func init() {
type ArrayOfUpdateVirtualMachineFilesResultFailedVmFileInfo (line 4722) | type ArrayOfUpdateVirtualMachineFilesResultFailedVmFileInfo struct
function init (line 4726) | func init() {
type ArrayOfUsbScanCodeSpecKeyEvent (line 4730) | type ArrayOfUsbScanCodeSpecKeyEvent struct
function init (line 4734) | func init() {
type ArrayOfUserGroupProfile (line 4738) | type ArrayOfUserGroupProfile struct
function init (line 4742) | func init() {
type ArrayOfUserPrivilegeResult (line 4746) | type ArrayOfUserPrivilegeResult struct
function init (line 4750) | func init() {
type ArrayOfUserProfile (line 4754) | type ArrayOfUserProfile struct
function init (line 4758) | func init() {
type ArrayOfUserSearchResult (line 4762) | type ArrayOfUserSearchResult struct
function init (line 4766) | func init() {
type ArrayOfUserSession (line 4770) | type ArrayOfUserSession struct
function init (line 4774) | func init() {
type ArrayOfVASAStorageArray (line 4778) | type ArrayOfVASAStorageArray struct
function init (line 4782) | func init() {
type ArrayOfVAppCloneSpecNetworkMappingPair (line 4786) | type ArrayOfVAppCloneSpecNetworkMappingPair struct
function init (line 4790) | func init() {
type ArrayOfVAppCloneSpecResourceMap (line 4794) | type ArrayOfVAppCloneSpecResourceMap struct
function init (line 4798) | func init() {
type ArrayOfVAppEntityConfigInfo (line 4802) | type ArrayOfVAppEntityConfigInfo struct
function init (line 4806) | func init() {
type ArrayOfVAppOvfSectionInfo (line 4810) | type ArrayOfVAppOvfSectionInfo struct
function init (line 4814) | func init() {
type ArrayOfVAppOvfSectionSpec (line 4818) | type ArrayOfVAppOvfSectionSpec struct
function init (line 4822) | func init() {
type ArrayOfVAppProductInfo (line 4826) | type ArrayOfVAppProductInfo struct
function init (line 4830) | func init() {
type ArrayOfVAppProductSpec (line 4834) | type ArrayOfVAppProductSpec struct
function init (line 4838) | func init() {
type ArrayOfVAppPropertyInfo (line 4842) | type ArrayOfVAppPropertyInfo struct
function init (line 4846) | func init() {
type ArrayOfVAppPropertySpec (line 4850) | type ArrayOfVAppPropertySpec struct
function init (line 4854) | func init() {
type ArrayOfVMwareDVSPvlanConfigSpec (line 4858) | type ArrayOfVMwareDVSPvlanConfigSpec struct
function init (line 4862) | func init() {
type ArrayOfVMwareDVSPvlanMapEntry (line 4866) | type ArrayOfVMwareDVSPvlanMapEntry struct
function init (line 4870) | func init() {
type ArrayOfVMwareDVSVspanConfigSpec (line 4874) | type ArrayOfVMwareDVSVspanConfigSpec struct
function init (line 4878) | func init() {
type ArrayOfVMwareDvsLacpGroupConfig (line 4882) | type ArrayOfVMwareDvsLacpGroupConfig struct
function init (line 4886) | func init() {
type ArrayOfVMwareDvsLacpGroupSpec (line 4890) | type ArrayOfVMwareDvsLacpGroupSpec struct
function init (line 4894) | func init() {
type ArrayOfVMwareVspanSession (line 4898) | type ArrayOfVMwareVspanSession struct
function init (line 4902) | func init() {
type ArrayOfVVolHostPE (line 4906) | type ArrayOfVVolHostPE struct
function init (line 4910) | func init() {
type ArrayOfVVolVmConfigFileUpdateResultFailedVmConfigFileInfo (line 4914) | type ArrayOfVVolVmConfigFileUpdateResultFailedVmConfigFileInfo struct
function init (line 4918) | func init() {
type ArrayOfVchaNodeRuntimeInfo (line 4922) | type ArrayOfVchaNodeRuntimeInfo struct
function init (line 4926) | func init() {
type ArrayOfVimVasaProviderInfo (line 4930) | type ArrayOfVimVasaProviderInfo struct
function init (line 4934) | func init() {
type ArrayOfVimVasaProviderStatePerArray (line 4938) | type ArrayOfVimVasaProviderStatePerArray struct
function init (line 4942) | func init() {
type ArrayOfVirtualAppLinkInfo (line 4946) | type ArrayOfVirtualAppLinkInfo struct
function init (line 4950) | func init() {
type ArrayOfVirtualDevice (line 4954) | type ArrayOfVirtualDevice struct
function init (line 4958) | func init() {
type ArrayOfVirtualDeviceBackingOption (line 4962) | type ArrayOfVirtualDeviceBackingOption struct
function init (line 4966) | func init() {
type ArrayOfVirtualDeviceConfigSpec (line 4970) | type ArrayOfVirtualDeviceConfigSpec struct
function init (line 4974) | func init() {
type ArrayOfVirtualDeviceOption (line 4978) | type ArrayOfVirtualDeviceOption struct
function init (line 4982) | func init() {
type ArrayOfVirtualDisk (line 4986) | type ArrayOfVirtualDisk struct
function init (line 4990) | func init() {
type ArrayOfVirtualDiskDeltaDiskFormatsSupported (line 4994) | type ArrayOfVirtualDiskDeltaDiskFormatsSupported struct
function init (line 4998) | func init() {
type ArrayOfVirtualDiskId (line 5002) | type ArrayOfVirtualDiskId struct
function init (line 5006) | func init() {
type ArrayOfVirtualMachineBootOptionsBootableDevice (line 5010) | type ArrayOfVirtualMachineBootOptionsBootableDevice struct
function init (line 5014) | func init() {
type ArrayOfVirtualMachineCdromInfo (line 5018) | type ArrayOfVirtualMachineCdromInfo struct
function init (line 5022) | func init() {
type ArrayOfVirtualMachineConfigInfoDatastoreUrlPair (line 5026) | type ArrayOfVirtualMachineConfigInfoDatastoreUrlPair struct
function init (line 5030) | func init() {
type ArrayOfVirtualMachineConfigOptionDescriptor (line 5034) | type ArrayOfVirtualMachineConfigOptionDescriptor struct
function init (line 5038) | func init() {
type ArrayOfVirtualMachineCpuIdInfoSpec (line 5042) | type ArrayOfVirtualMachineCpuIdInfoSpec struct
function init (line 5046) | func init() {
type ArrayOfVirtualMachineDatastoreInfo (line 5050) | type ArrayOfVirtualMachineDatastoreInfo struct
function init (line 5054) | func init() {
type ArrayOfVirtualMachineDatastoreVolumeOption (line 5058) | type ArrayOfVirtualMachineDatastoreVolumeOption struct
function init (line 5062) | func init() {
type ArrayOfVirtualMachineDeviceRuntimeInfo (line 5066) | type ArrayOfVirtualMachineDeviceRuntimeInfo struct
function init (line 5070) | func init() {
type ArrayOfVirtualMachineDisplayTopology (line 5074) | type ArrayOfVirtualMachineDisplayTopology struct
function init (line 5078) | func init() {
type ArrayOfVirtualMachineFeatureRequirement (line 5082) | type ArrayOfVirtualMachineFeatureRequirement struct
function init (line 5086) | func init() {
type ArrayOfVirtualMachineFileLayoutDiskLayout (line 5090) | type ArrayOfVirtualMachineFileLayoutDiskLayout struct
function init (line 5094) | func init() {
type ArrayOfVirtualMachineFileLayoutExDiskLayout (line 5098) | type ArrayOfVirtualMachineFileLayoutExDiskLayout struct
function init (line 5102) | func init() {
type ArrayOfVirtualMachineFileLayoutExDiskUnit (line 5106) | type ArrayOfVirtualMachineFileLayoutExDiskUnit struct
function init (line 5110) | func init() {
type ArrayOfVirtualMachineFileLayoutExFileInfo (line 5114) | type ArrayOfVirtualMachineFileLayoutExFileInfo struct
function init (line 5118) | func init() {
type ArrayOfVirtualMachineFileLayoutExSnapshotLayout (line 5122) | type ArrayOfVirtualMachineFileLayoutExSnapshotLayout struct
function init (line 5126) | func init() {
type ArrayOfVirtualMachineFileLayoutSnapshotLayout (line 5130) | type ArrayOfVirtualMachineFileLayoutSnapshotLayout struct
function init (line 5134) | func init() {
type ArrayOfVirtualMachineFloppyInfo (line 5138) | type ArrayOfVirtualMachineFloppyInfo struct
function init (line 5142) | func init() {
type ArrayOfVirtualMachineIdeDiskDeviceInfo (line 5146) | type ArrayOfVirtualMachineIdeDiskDeviceInfo struct
function init (line 5150) | func init() {
type ArrayOfVirtualMachineIdeDiskDevicePartitionInfo (line 5154) | type ArrayOfVirtualMachineIdeDiskDevicePartitionInfo struct
function init (line 5158) | func init() {
type ArrayOfVirtualMachineLegacyNetworkSwitchInfo (line 5162) | type ArrayOfVirtualMachineLegacyNetworkSwitchInfo struct
function init (line 5166) | func init() {
type ArrayOfVirtualMachineMessage (line 5170) | type ArrayOfVirtualMachineMessage struct
function init (line 5174) | func init() {
type ArrayOfVirtualMachineMetadataManagerVmMetadataInput (line 5178) | type ArrayOfVirtualMachineMetadataManagerVmMetadataInput struct
function init (line 5182) | func init() {
type ArrayOfVirtualMachineMetadataManagerVmMetadataResult (line 5186) | type ArrayOfVirtualMachineMetadataManagerVmMetadataResult struct
function init (line 5190) | func init() {
type ArrayOfVirtualMachineNetworkInfo (line 5194) | type ArrayOfVirtualMachineNetworkInfo struct
function init (line 5198) | func init() {
type ArrayOfVirtualMachineParallelInfo (line 5202) | type ArrayOfVirtualMachineParallelInfo struct
function init (line 5206) | func init() {
type ArrayOfVirtualMachinePciPassthroughInfo (line 5210) | type ArrayOfVirtualMachinePciPassthroughInfo struct
function init (line 5214) | func init() {
type ArrayOfVirtualMachinePciSharedGpuPassthroughInfo (line 5218) | type ArrayOfVirtualMachinePciSharedGpuPassthroughInfo struct
function init (line 5222) | func init() {
type ArrayOfVirtualMachineProfileSpec (line 5226) | type ArrayOfVirtualMachineProfileSpec struct
function init (line 5230) | func init() {
type ArrayOfVirtualMachineRelocateSpecDiskLocator (line 5234) | type ArrayOfVirtualMachineRelocateSpecDiskLocator struct
function init (line 5238) | func init() {
type ArrayOfVirtualMachineScsiDiskDeviceInfo (line 5242) | type ArrayOfVirtualMachineScsiDiskDeviceInfo struct
function init (line 5246) | func init() {
type ArrayOfVirtualMachineScsiPassthroughInfo (line 5250) | type ArrayOfVirtualMachineScsiPassthroughInfo struct
function init (line 5254) | func init() {
type ArrayOfVirtualMachineSerialInfo (line 5258) | type ArrayOfVirtualMachineSerialInfo struct
function init (line 5262) | func init() {
type ArrayOfVirtualMachineSnapshotTree (line 5266) | type ArrayOfVirtualMachineSnapshotTree struct
function init (line 5270) | func init() {
type ArrayOfVirtualMachineSoundInfo (line 5274) | type ArrayOfVirtualMachineSoundInfo struct
function init (line 5278) | func init() {
type ArrayOfVirtualMachineSriovInfo (line 5282) | type ArrayOfVirtualMachineSriovInfo struct
function init (line 5286) | func init() {
type ArrayOfVirtualMachineSummary (line 5290) | type ArrayOfVirtualMachineSummary struct
function init (line 5294) | func init() {
type ArrayOfVirtualMachineUsageOnDatastore (line 5298) | type ArrayOfVirtualMachineUsageOnDatastore struct
function init (line 5302) | func init() {
type ArrayOfVirtualMachineUsbInfo (line 5306) | type ArrayOfVirtualMachineUsbInfo struct
function init (line 5310) | func init() {
type ArrayOfVirtualMachineVFlashModuleInfo (line 5314) | type ArrayOfVirtualMachineVFlashModuleInfo struct
function init (line 5318) | func init() {
type ArrayOfVirtualMachineVMCIDeviceFilterSpec (line 5322) | type ArrayOfVirtualMachineVMCIDeviceFilterSpec struct
function init (line 5326) | func init() {
type ArrayOfVirtualNicManagerNetConfig (line 5330) | type ArrayOfVirtualNicManagerNetConfig struct
function init (line 5334) | func init() {
type ArrayOfVirtualSCSISharing (line 5338) | type ArrayOfVirtualSCSISharing struct
function init (line 5342) | func init() {
type ArrayOfVirtualSwitchProfile (line 5346) | type ArrayOfVirtualSwitchProfile struct
function init (line 5350) | func init() {
type ArrayOfVmEventArgument (line 5354) | type ArrayOfVmEventArgument struct
function init (line 5358) | func init() {
type ArrayOfVmPodConfigForPlacement (line 5362) | type ArrayOfVmPodConfigForPlacement struct
function init (line 5366) | func init() {
type ArrayOfVmPortGroupProfile (line 5370) | type ArrayOfVmPortGroupProfile struct
function init (line 5374) | func init() {
type ArrayOfVmfsConfigOption (line 5378) | type ArrayOfVmfsConfigOption struct
function init (line 5382) | func init() {
type ArrayOfVmfsDatastoreOption (line 5386) | type ArrayOfVmfsDatastoreOption struct
function init (line 5390) | func init() {
type ArrayOfVnicPortArgument (line 5394) | type ArrayOfVnicPortArgument struct
function init (line 5398) | func init() {
type ArrayOfVsanHostConfigInfo (line 5402) | type ArrayOfVsanHostConfigInfo struct
function init (line 5406) | func init() {
type ArrayOfVsanHostConfigInfoNetworkInfoPortConfig (line 5410) | type ArrayOfVsanHostConfigInfoNetworkInfoPortConfig struct
function init (line 5414) | func init() {
type ArrayOfVsanHostDiskMapInfo (line 5418) | type ArrayOfVsanHostDiskMapInfo struct
function init (line 5422) | func init() {
type ArrayOfVsanHostDiskMapResult (line 5426) | type ArrayOfVsanHostDiskMapResult struct
function init (line 5430) | func init() {
type ArrayOfVsanHostDiskMapping (line 5434) | type ArrayOfVsanHostDiskMapping struct
function init (line 5438) | func init() {
type ArrayOfVsanHostDiskResult (line 5442) | type ArrayOfVsanHostDiskResult struct
function init (line 5446) | func init() {
type ArrayOfVsanHostMembershipInfo (line 5450) | type ArrayOfVsanHostMembershipInfo struct
function init (line 5454) | func init() {
type ArrayOfVsanHostRuntimeInfoDiskIssue (line 5458) | type ArrayOfVsanHostRuntimeInfoDiskIssue struct
function init (line 5462) | func init() {
type ArrayOfVsanNewPolicyBatch (line 5466) | type ArrayOfVsanNewPolicyBatch struct
function init (line 5470) | func init() {
type ArrayOfVsanPolicyChangeBatch (line 5474) | type ArrayOfVsanPolicyChangeBatch struct
function init (line 5478) | func init() {
type ArrayOfVsanPolicySatisfiability (line 5482) | type ArrayOfVsanPolicySatisfiability struct
function init (line 5486) | func init() {
type ArrayOfVsanUpgradeSystemNetworkPartitionInfo (line 5490) | type ArrayOfVsanUpgradeSystemNetworkPartitionInfo struct
function init (line 5494) | func init() {
type ArrayOfVsanUpgradeSystemPreflightCheckIssue (line 5498) | type ArrayOfVsanUpgradeSystemPreflightCheckIssue struct
function init (line 5502) | func init() {
type ArrayOfVsanUpgradeSystemUpgradeHistoryItem (line 5506) | type ArrayOfVsanUpgradeSystemUpgradeHistoryItem struct
function init (line 5510) | func init() {
type ArrayOfVslmTagEntry (line 5514) | type ArrayOfVslmTagEntry struct
function init (line 5518) | func init() {
type ArrayUpdateSpec (line 5522) | type ArrayUpdateSpec struct
function init (line 5529) | func init() {
type AssignUserToGroup (line 5533) | type AssignUserToGroup
function init (line 5535) | func init() {
type AssignUserToGroupRequestType (line 5539) | type AssignUserToGroupRequestType struct
function init (line 5545) | func init() {
type AssignUserToGroupResponse (line 5549) | type AssignUserToGroupResponse struct
type AssociateProfile (line 5552) | type AssociateProfile
function init (line 5554) | func init() {
type AssociateProfileRequestType (line 5558) | type AssociateProfileRequestType struct
function init (line 5563) | func init() {
type AssociateProfileResponse (line 5567) | type AssociateProfileResponse struct
type AttachDiskRequestType (line 5570) | type AttachDiskRequestType struct
function init (line 5578) | func init() {
type AttachDisk_Task (line 5582) | type AttachDisk_Task
function init (line 5584) | func init() {
type AttachDisk_TaskResponse (line 5588) | type AttachDisk_TaskResponse struct
type AttachScsiLun (line 5592) | type AttachScsiLun
function init (line 5594) | func init() {
type AttachScsiLunExRequestType (line 5598) | type AttachScsiLunExRequestType struct
function init (line 5603) | func init() {
type AttachScsiLunEx_Task (line 5607) | type AttachScsiLunEx_Task
function init (line 5609) | func init() {
type AttachScsiLunEx_TaskResponse (line 5613) | type AttachScsiLunEx_TaskResponse struct
type AttachScsiLunRequestType (line 5617) | type AttachScsiLunRequestType struct
function init (line 5622) | func init() {
type AttachScsiLunResponse (line 5626) | type AttachScsiLunResponse struct
type AttachTagToVStorageObject (line 5629) | type AttachTagToVStorageObject
function init (line 5631) | func init() {
type AttachTagToVStorageObjectRequestType (line 5635) | type AttachTagToVStorageObjectRequestType struct
function init (line 5642) | func init() {
type AttachTagToVStorageObjectResponse (line 5646) | type AttachTagToVStorageObjectResponse struct
type AttachVmfsExtent (line 5649) | type AttachVmfsExtent
function init (line 5651) | func init() {
type AttachVmfsExtentRequestType (line 5655) | type AttachVmfsExtentRequestType struct
function init (line 5661) | func init() {
type AttachVmfsExtentResponse (line 5665) | type AttachVmfsExtentResponse struct
type AuthMinimumAdminPermission (line 5668) | type AuthMinimumAdminPermission struct
function init (line 5672) | func init() {
type AuthMinimumAdminPermissionFault (line 5676) | type AuthMinimumAdminPermissionFault
function init (line 5678) | func init() {
type AuthenticationProfile (line 5682) | type AuthenticationProfile struct
function init (line 5688) | func init() {
type AuthorizationDescription (line 5692) | type AuthorizationDescription struct
function init (line 5699) | func init() {
type AuthorizationEvent (line 5703) | type AuthorizationEvent struct
function init (line 5707) | func init() {
type AuthorizationPrivilege (line 5711) | type AuthorizationPrivilege struct
function init (line 5720) | func init() {
type AuthorizationRole (line 5724) | type AuthorizationRole struct
function init (line 5734) | func init() {
type AutoStartDefaults (line 5738) | type AutoStartDefaults struct
function init (line 5748) | func init() {
type AutoStartPowerInfo (line 5752) | type AutoStartPowerInfo struct
function init (line 5764) | func init() {
type AutoStartPowerOff (line 5768) | type AutoStartPowerOff
function init (line 5770) | func init() {
type AutoStartPowerOffRequestType (line 5774) | type AutoStartPowerOffRequestType struct
function init (line 5778) | func init() {
type AutoStartPowerOffResponse (line 5782) | type AutoStartPowerOffResponse struct
type AutoStartPowerOn (line 5785) | type AutoStartPowerOn
function init (line 5787) | func init() {
type AutoStartPowerOnRequestType (line 5791) | type AutoStartPowerOnRequestType struct
function init (line 5795) | func init() {
type AutoStartPowerOnResponse (line 5799) | type AutoStartPowerOnResponse struct
type BackupBlobReadFailure (line 5802) | type BackupBlobReadFailure struct
function init (line 5810) | func init() {
type BackupBlobReadFailureFault (line 5814) | type BackupBlobReadFailureFault
function init (line 5816) | func init() {
type BackupBlobWriteFailure (line 5820) | type BackupBlobWriteFailure struct
function init (line 5828) | func init() {
type BackupBlobWriteFailureFault (line 5832) | type BackupBlobWriteFailureFault
function init (line 5834) | func init() {
type BackupFirmwareConfiguration (line 5838) | type BackupFirmwareConfiguration
function init (line 5840) | func init() {
type BackupFirmwareConfigurationRequestType (line 5844) | type BackupFirmwareConfigurationRequestType struct
function init (line 5848) | func init() {
type BackupFirmwareConfigurationResponse (line 5852) | type BackupFirmwareConfigurationResponse struct
type BadUsernameSessionEvent (line 5856) | type BadUsernameSessionEvent struct
function init (line 5862) | func init() {
type BaseConfigInfo (line 5866) | type BaseConfigInfo struct
function init (line 5875) | func init() {
type BaseConfigInfoBackingInfo (line 5879) | type BaseConfigInfoBackingInfo struct
function init (line 5885) | func init() {
type BaseConfigInfoDiskFileBackingInfo (line 5889) | type BaseConfigInfoDiskFileBackingInfo struct
function init (line 5895) | func init() {
type BaseConfigInfoFileBackingInfo (line 5899) | type BaseConfigInfoFileBackingInfo struct
function init (line 5908) | func init() {
type BaseConfigInfoRawDiskMappingBackingInfo (line 5912) | type BaseConfigInfoRawDiskMappingBackingInfo struct
function init (line 5919) | func init() {
type BatchResult (line 5923) | type BatchResult struct
function init (line 5932) | func init() {
type BindVnic (line 5936) | type BindVnic
function init (line 5938) | func init() {
type BindVnicRequestType (line 5942) | type BindVnicRequestType struct
function init (line 5948) | func init() {
type BindVnicResponse (line 5952) | type BindVnicResponse struct
type BlockedByFirewall (line 5955) | type BlockedByFirewall struct
function init (line 5959) | func init() {
type BlockedByFirewallFault (line 5963) | type BlockedByFirewallFault
function init (line 5965) | func init() {
type BoolOption (line 5969) | type BoolOption struct
function init (line 5976) | func init() {
type BoolPolicy (line 5980) | type BoolPolicy struct
function init (line 5986) | func init() {
type BrowseDiagnosticLog (line 5990) | type BrowseDiagnosticLog
function init (line 5992) | func init() {
type BrowseDiagnosticLogRequestType (line 5996) | type BrowseDiagnosticLogRequestType struct
function init (line 6004) | func init() {
type BrowseDiagnosticLogResponse (line 6008) | type BrowseDiagnosticLogResponse struct
type CAMServerRefusedConnection (line 6012) | type CAMServerRefusedConnection struct
function init (line 6016) | func init() {
type CAMServerRefusedConnectionFault (line 6020) | type CAMServerRefusedConnectionFault
function init (line 6022) | func init() {
type CanProvisionObjects (line 6026) | type CanProvisionObjects
function init (line 6028) | func init() {
type CanProvisionObjectsRequestType (line 6032) | type CanProvisionObjectsRequestType struct
function init (line 6038) | func init() {
type CanProvisionObjectsResponse (line 6042) | type CanProvisionObjectsResponse struct
type CancelRecommendation (line 6046) | type CancelRecommendation
function init (line 6048) | func init() {
type CancelRecommendationRequestType (line 6052) | type CancelRecommendationRequestType struct
function init (line 6057) | func init() {
type CancelRecommendationResponse (line 6061) | type CancelRecommendationResponse struct
type CancelRetrievePropertiesEx (line 6064) | type CancelRetrievePropertiesEx
function init (line 6066) | func init() {
type CancelRetrievePropertiesExRequestType (line 6070) | type CancelRetrievePropertiesExRequestType struct
function init (line 6075) | func init() {
type CancelRetrievePropertiesExResponse (line 6079) | type CancelRetrievePropertiesExResponse struct
type CancelStorageDrsRecommendation (line 6082) | type CancelStorageDrsRecommendation
function init (line 6084) | func init() {
type CancelStorageDrsRecommendationRequestType (line 6088) | type CancelStorageDrsRecommendationRequestType struct
function init (line 6093) | func init() {
type CancelStorageDrsRecommendationResponse (line 6097) | type CancelStorageDrsRecommendationResponse struct
type CancelTask (line 6100) | type CancelTask
function init (line 6102) | func init() {
type CancelTaskRequestType (line 6106) | type CancelTaskRequestType struct
function init (line 6110) | func init() {
type CancelTaskResponse (line 6114) | type CancelTaskResponse struct
type CancelWaitForUpdates (line 6117) | type CancelWaitForUpdates
function init (line 6119) | func init() {
type CancelWaitForUpdatesRequestType (line 6123) | type CancelWaitForUpdatesRequestType struct
function init (line 6127) | func init() {
type CancelWaitForUpdatesResponse (line 6131) | type CancelWaitForUpdatesResponse struct
type CanceledHostOperationEvent (line 6134) | type CanceledHostOperationEvent struct
function init (line 6138) | func init() {
type CannotAccessFile (line 6142) | type CannotAccessFile struct
function init (line 6146) | func init() {
type CannotAccessFileFault (line 6150) | type CannotAccessFileFault
function init (line 6152) | func init() {
type CannotAccessLocalSource (line 6156) | type CannotAccessLocalSource struct
function init (line 6160) | func init() {
type CannotAccessLocalSourceFault (line 6164) | type CannotAccessLocalSourceFault
function init (line 6166) | func init() {
type CannotAccessNetwork (line 6170) | type CannotAccessNetwork struct
function init (line 6176) | func init() {
type CannotAccessNetworkFault (line 6180) | type CannotAccessNetworkFault
function init (line 6182) | func init() {
type CannotAccessVmComponent (line 6186) | type CannotAccessVmComponent struct
function init (line 6190) | func init() {
type CannotAccessVmComponentFault (line 6194) | type CannotAccessVmComponentFault
function init (line 6196) | func init() {
type CannotAccessVmConfig (line 6200) | type CannotAccessVmConfig struct
function init (line 6206) | func init() {
type CannotAccessVmConfigFault (line 6210) | type CannotAccessVmConfigFault
function init (line 6212) | func init() {
type CannotAccessVmDevice (line 6216) | type CannotAccessVmDevice struct
function init (line 6224) | func init() {
type CannotAccessVmDeviceFault (line 6228) | type CannotAccessVmDeviceFault
function init (line 6230) | func init() {
type CannotAccessVmDisk (line 6234) | type CannotAccessVmDisk struct
function init (line 6240) | func init() {
type CannotAccessVmDiskFault (line 6244) | type CannotAccessVmDiskFault
function init (line 6246) | func init() {
type CannotAddHostWithFTVmAsStandalone (line 6250) | type CannotAddHostWithFTVmAsStandalone struct
function init (line 6254) | func init() {
type CannotAddHostWithFTVmAsStandaloneFault (line 6258) | type CannotAddHostWithFTVmAsStandaloneFault
function init (line 6260) | func init() {
type CannotAddHostWithFTVmToDifferentCluster (line 6264) | type CannotAddHostWithFTVmToDifferentCluster struct
function init (line 6268) | func init() {
type CannotAddHostWithFTVmToDifferentClusterFault (line 6272) | type CannotAddHostWithFTVmToDifferentClusterFault
function init (line 6274) | func init() {
type CannotAddHostWithFTVmToNonHACluster (line 6278) | type CannotAddHostWithFTVmToNonHACluster struct
function init (line 6282) | func init() {
type CannotAddHostWithFTVmToNonHAClusterFault (line 6286) | type CannotAddHostWithFTVmToNonHAClusterFault
function init (line 6288) | func init() {
type CannotChangeDrsBehaviorForFtSecondary (line 6292) | type CannotChangeDrsBehaviorForFtSecondary struct
function init (line 6299) | func init() {
type CannotChangeDrsBehaviorForFtSecondaryFault (line 6303) | type CannotChangeDrsBehaviorForFtSecondaryFault
function init (line 6305) | func init() {
type CannotChangeHaSettingsForFtSecondary (line 6309) | type CannotChangeHaSettingsForFtSecondary struct
function init (line 6316) | func init() {
type CannotChangeHaSettingsForFtSecondaryFault (line 6320) | type CannotChangeHaSettingsForFtSecondaryFault
function init (line 6322) | func init() {
type CannotChangeVsanClusterUuid (line 6326) | type CannotChangeVsanClusterUuid struct
function init (line 6330) | func init() {
type CannotChangeVsanClusterUuidFault (line 6334) | type CannotChangeVsanClusterUuidFault
function init (line 6336) | func init() {
type CannotChangeVsanNodeUuid (line 6340) | type CannotChangeVsanNodeUuid struct
function init (line 6344) | func init() {
type CannotChangeVsanNodeUuidFault (line 6348) | type CannotChangeVsanNodeUuidFault
function init (line 6350) | func init() {
type CannotComputeFTCompatibleHosts (line 6354) | type CannotComputeFTCompatibleHosts struct
function init (line 6361) | func init() {
type CannotComputeFTCompatibleHostsFault (line 6365) | type CannotComputeFTCompatibleHostsFault
function init (line 6367) | func init() {
type CannotCreateFile (line 6371) | type CannotCreateFile struct
function init (line 6375) | func init() {
type CannotCreateFileFault (line 6379) | type CannotCreateFileFault
function init (line 6381) | func init() {
type CannotDecryptPasswords (line 6385) | type CannotDecryptPasswords struct
function init (line 6389) | func init() {
type CannotDecryptPasswordsFault (line 6393) | type CannotDecryptPasswordsFault
function init (line 6395) | func init() {
type CannotDeleteFile (line 6399) | type CannotDeleteFile struct
function init (line 6403) | func init() {
type CannotDeleteFileFault (line 6407) | type CannotDeleteFileFault
function init (line 6409) | func init() {
type CannotDisableDrsOnClustersWithVApps (line 6413) | type CannotDisableDrsOnClustersWithVApps struct
function init (line 6417) | func init() {
type CannotDisableDrsOnClustersWithVAppsFault (line 6421) | type CannotDisableDrsOnClustersWithVAppsFault
function init (line 6423) | func init() {
type CannotDisableSnapshot (line 6427) | type CannotDisableSnapshot struct
function init (line 6431) | func init() {
type CannotDisableSnapshotFault (line 6435) | type CannotDisableSnapshotFault
function init (line 6437) | func init() {
type CannotDisconnectHostWithFaultToleranceVm (line 6441) | type CannotDisconnectHostWithFaultToleranceVm struct
function init (line 6447) | func init() {
type CannotDisconnectHostWithFaultToleranceVmFault (line 6451) | type CannotDisconnectHostWithFaultToleranceVmFault
function init (line 6453) | func init() {
type CannotEnableVmcpForCluster (line 6457) | type CannotEnableVmcpForCluster struct
function init (line 6465) | func init() {
type CannotEnableVmcpForClusterFault (line 6469) | type CannotEnableVmcpForClusterFault
function init (line 6471) | func init() {
type CannotModifyConfigCpuRequirements (line 6475) | type CannotModifyConfigCpuRequirements struct
function init (line 6479) | func init() {
type CannotModifyConfigCpuRequirementsFault (line 6483) | type CannotModifyConfigCpuRequirementsFault
function init (line 6485) | func init() {
type CannotMoveFaultToleranceVm (line 6489) | type CannotMoveFaultToleranceVm struct
function init (line 6496) | func init() {
type CannotMoveFaultToleranceVmFault (line 6500) | type CannotMoveFaultToleranceVmFault
function init (line 6502) | func init() {
type CannotMoveHostWithFaultToleranceVm (line 6506) | type CannotMoveHostWithFaultToleranceVm struct
function init (line 6510) | func init() {
type CannotMoveHostWithFaultToleranceVmFault (line 6514) | type CannotMoveHostWithFaultToleranceVmFault
function init (line 6516) | func init() {
type CannotMoveVmWithDeltaDisk (line 6520) | type CannotMoveVmWithDeltaDisk struct
function init (line 6526) | func init() {
type CannotMoveVmWithDeltaDiskFault (line 6530) | type CannotMoveVmWithDeltaDiskFault
function init (line 6532) | func init() {
type CannotMoveVmWithNativeDeltaDisk (line 6536) | type CannotMoveVmWithNativeDeltaDisk struct
function init (line 6540) | func init() {
type CannotMoveVmWithNativeDeltaDiskFault (line 6544) | type CannotMoveVmWithNativeDeltaDiskFault
function init (line 6546) | func init() {
type CannotMoveVsanEnabledHost (line 6550) | type CannotMoveVsanEnabledHost struct
function init (line 6554) | func init() {
type CannotMoveVsanEnabledHostFault (line 6558) | type CannotMoveVsanEnabledHostFault
function init (line 6560) | func init() {
type CannotPlaceWithoutPrerequisiteMoves (line 6564) | type CannotPlaceWithoutPrerequisiteMoves struct
function init (line 6568) | func init() {
type CannotPlaceWithoutPrerequisiteMovesFault (line 6572) | type CannotPlaceWithoutPrerequisiteMovesFault
function init (line 6574) | func init() {
type CannotPowerOffVmInCluster (line 6578) | type CannotPowerOffVmInCluster struct
function init (line 6586) | func init() {
type CannotPowerOffVmInClusterFault (line 6590) | type CannotPowerOffVmInClusterFault
function init (line 6592) | func init() {
type CannotReconfigureVsanWhenHaEnabled (line 6596) | type CannotReconfigureVsanWhenHaEnabled struct
function init (line 6600) | func init() {
type CannotReconfigureVsanWhenHaEnabledFault (line 6604) | type CannotReconfigureVsanWhenHaEnabledFault
function init (line 6606) | func init() {
type CannotUseNetwork (line 6610) | type CannotUseNetwork struct
function init (line 6620) | func init() {
type CannotUseNetworkFault (line 6624) | type CannotUseNetworkFault
function init (line 6626) | func init() {
type Capability (line 6630) | type Capability struct
function init (line 6640) | func init() {
type CertMgrRefreshCACertificatesAndCRLsRequestType (line 6644) | type CertMgrRefreshCACertificatesAndCRLsRequestType struct
function init (line 6649) | func init() {
type CertMgrRefreshCACertificatesAndCRLs_Task (line 6653) | type CertMgrRefreshCACertificatesAndCRLs_Task
function init (line 6655) | func init() {
type CertMgrRefreshCACertificatesAndCRLs_TaskResponse (line 6659) | type CertMgrRefreshCACertificatesAndCRLs_TaskResponse struct
type CertMgrRefreshCertificatesRequestType (line 6663) | type CertMgrRefreshCertificatesRequestType struct
function init (line 6668) | func init() {
type CertMgrRefreshCertificates_Task (line 6672) | type CertMgrRefreshCertificates_Task
function init (line 6674) | func init() {
type CertMgrRefreshCertificates_TaskResponse (line 6678) | type CertMgrRefreshCertificates_TaskResponse struct
type CertMgrRevokeCertificatesRequestType (line 6682) | type CertMgrRevokeCertificatesRequestType struct
function init (line 6687) | func init() {
type CertMgrRevokeCertificates_Task (line 6691) | type CertMgrRevokeCertificates_Task
function init (line 6693) | func init() {
type CertMgrRevokeCertificates_TaskResponse (line 6697) | type CertMgrRevokeCertificates_TaskResponse struct
type ChangeAccessMode (line 6701) | type ChangeAccessMode
function init (line 6703) | func init() {
type ChangeAccessModeRequestType (line 6707) | type ChangeAccessModeRequestType struct
function init (line 6714) | func init() {
type ChangeAccessModeResponse (line 6718) | type ChangeAccessModeResponse struct
type ChangeFileAttributesInGuest (line 6721) | type ChangeFileAttributesInGuest
function init (line 6723) | func init() {
type ChangeFileAttributesInGuestRequestType (line 6727) | type ChangeFileAttributesInGuestRequestType struct
function init (line 6735) | func init() {
type ChangeFileAttributesInGuestResponse (line 6739) | type ChangeFileAttributesInGuestResponse struct
type ChangeLockdownMode (line 6742) | type ChangeLockdownMode
function init (line 6744) | func init() {
type ChangeLockdownModeRequestType (line 6748) | type ChangeLockdownModeRequestType struct
function init (line 6753) | func init() {
type ChangeLockdownModeResponse (line 6757) | type ChangeLockdownModeResponse struct
type ChangeNFSUserPassword (line 6760) | type ChangeNFSUserPassword
function init (line 6762) | func init() {
type ChangeNFSUserPasswordRequestType (line 6766) | type ChangeNFSUserPasswordRequestType struct
function init (line 6771) | func init() {
type ChangeNFSUserPasswordResponse (line 6775) | type ChangeNFSUserPasswordResponse struct
type ChangeOwner (line 6778) | type ChangeOwner
function init (line 6780) | func init() {
type ChangeOwnerRequestType (line 6784) | type ChangeOwnerRequestType struct
function init (line 6791) | func init() {
type ChangeOwnerResponse (line 6795) | type ChangeOwnerResponse struct
type ChangesInfoEventArgument (line 6798) | type ChangesInfoEventArgument struct
function init (line 6806) | func init() {
type CheckAddHostEvcRequestType (line 6810) | type CheckAddHostEvcRequestType struct
function init (line 6815) | func init() {
type CheckAddHostEvc_Task (line 6819) | type CheckAddHostEvc_Task
function init (line 6821) | func init() {
type CheckAddHostEvc_TaskResponse (line 6825) | type CheckAddHostEvc_TaskResponse struct
type CheckAnswerFileStatusRequestType (line 6829) | type CheckAnswerFileStatusRequestType struct
function init (line 6834) | func init() {
type CheckAnswerFileStatus_Task (line 6838) | type CheckAnswerFileStatus_Task
function init (line 6840) | func init() {
type CheckAnswerFileStatus_TaskResponse (line 6844) | type CheckAnswerFileStatus_TaskResponse struct
type CheckCompatibilityRequestType (line 6848) | type CheckCompatibilityRequestType struct
function init (line 6856) | func init() {
type CheckCompatibility_Task (line 6860) | type CheckCompatibility_Task
function init (line 6862) | func init() {
type CheckCompatibility_TaskResponse (line 6866) | type CheckCompatibility_TaskResponse struct
type CheckComplianceRequestType (line 6870) | type CheckComplianceRequestType struct
function init (line 6876) | func init() {
type CheckCompliance_Task (line 6880) | type CheckCompliance_Task
function init (line 6882) | func init() {
type CheckCompliance_TaskResponse (line 6886) | type CheckCompliance_TaskResponse struct
type CheckConfigureEvcModeRequestType (line 6890) | type CheckConfigureEvcModeRequestType struct
function init (line 6895) | func init() {
type CheckConfigureEvcMode_Task (line 6899) | type CheckConfigureEvcMode_Task
function init (line 6901) | func init() {
type CheckConfigureEvcMode_TaskResponse (line 6905) | type CheckConfigureEvcMode_TaskResponse struct
type CheckCustomizationResources (line 6909) | type CheckCustomizationResources
function init (line 6911) | func init() {
type CheckCustomizationResourcesRequestType (line 6915) | type CheckCustomizationResourcesRequestType struct
function init (line 6920) | func init() {
type CheckCustomizationResourcesResponse (line 6924) | type CheckCustomizationResourcesResponse struct
type CheckCustomizationSpec (line 6927) | type CheckCustomizationSpec
function init (line 6929) | func init() {
type CheckCustomizationSpecRequestType (line 6933) | type CheckCustomizationSpecRequestType struct
function init (line 6938) | func init() {
type CheckCustomizationSpecResponse (line 6942) | type CheckCustomizationSpecResponse struct
type CheckForUpdates (line 6945) | type CheckForUpdates
function init (line 6947) | func init() {
type CheckForUpdatesRequestType (line 6951) | type CheckForUpdatesRequestType struct
function init (line 6956) | func init() {
type CheckForUpdatesResponse (line 6960) | type CheckForUpdatesResponse struct
type CheckHostPatchRequestType (line 6964) | type CheckHostPatchRequestType struct
function init (line 6971) | func init() {
type CheckHostPatch_Task (line 6975) | type CheckHostPatch_Task
function init (line 6977) | func init() {
type CheckHostPatch_TaskResponse (line 6981) | type CheckHostPatch_TaskResponse struct
type CheckLicenseFeature (line 6985) | type CheckLicenseFeature
function init (line 6987) | func init() {
type CheckLicenseFeatureRequestType (line 6991) | type CheckLicenseFeatureRequestType struct
function init (line 6997) | func init() {
type CheckLicenseFeatureResponse (line 7001) | type CheckLicenseFeatureResponse struct
type CheckMigrateRequestType (line 7005) | type CheckMigrateRequestType struct
function init (line 7014) | func init() {
type CheckMigrate_Task (line 7018) | type CheckMigrate_Task
function init (line 7020) | func init() {
type CheckMigrate_TaskResponse (line 7024) | type CheckMigrate_TaskResponse struct
type CheckProfileComplianceRequestType (line 7028) | type CheckProfileComplianceRequestType struct
function init (line 7033) | func init() {
type CheckProfileCompliance_Task (line 7037) | type CheckProfileCompliance_Task
function init (line 7039) | func init() {
type CheckProfileCompliance_TaskResponse (line 7043) | type CheckProfileCompliance_TaskResponse struct
type CheckRelocateRequestType (line 7047) | type CheckRelocateRequestType struct
function init (line 7054) | func init() {
type CheckRelocate_Task (line 7058) | type CheckRelocate_Task
function init (line 7060) | func init() {
type CheckRelocate_TaskResponse (line 7064) | type CheckRelocate_TaskResponse struct
type CheckResult (line 7068) | type CheckResult struct
function init (line 7077) | func init() {
type ChoiceOption (line 7081) | type ChoiceOption struct
function init (line 7088) | func init() {
type ClearComplianceStatus (line 7092) | type ClearComplianceStatus
function init (line 7094) | func init() {
type ClearComplianceStatusRequestType (line 7098) | type ClearComplianceStatusRequestType struct
function init (line 7104) | func init() {
type ClearComplianceStatusResponse (line 7108) | type ClearComplianceStatusResponse struct
type ClearNFSUser (line 7111) | type ClearNFSUser
function init (line 7113) | func init() {
type ClearNFSUserRequestType (line 7117) | type ClearNFSUserRequestType struct
function init (line 7121) | func init() {
type ClearNFSUserResponse (line 7125) | type ClearNFSUserResponse struct
type ClearSystemEventLog (line 7128) | type ClearSystemEventLog
function init (line 7130) | func init() {
type ClearSystemEventLogRequestType (line 7134) | type ClearSystemEventLogRequestType struct
function init (line 7138) | func init() {
type ClearSystemEventLogResponse (line 7142) | type ClearSystemEventLogResponse struct
type ClockSkew (line 7145) | type ClockSkew struct
function init (line 7149) | func init() {
type ClockSkewFault (line 7153) | type ClockSkewFault
function init (line 7155) | func init() {
type CloneFromSnapshotNotSupported (line 7159) | type CloneFromSnapshotNotSupported struct
function init (line 7163) | func init() {
type CloneFromSnapshotNotSupportedFault (line 7167) | type CloneFromSnapshotNotSupportedFault
function init (line 7169) | func init() {
type CloneSession (line 7173) | type CloneSession
function init (line 7175) | func init() {
type CloneSessionRequestType (line 7179) | type CloneSessionRequestType struct
function init (line 7184) | func init() {
type CloneSessionResponse (line 7188) | type CloneSessionResponse struct
type CloneVAppRequestType (line 7192) | type CloneVAppRequestType struct
function init (line 7199) | func init() {
type CloneVApp_Task (line 7203) | type CloneVApp_Task
function init (line 7205) | func init() {
type CloneVApp_TaskResponse (line 7209) | type CloneVApp_TaskResponse struct
type CloneVMRequestType (line 7213) | type CloneVMRequestType struct
function init (line 7220) | func init() {
type CloneVM_Task (line 7224) | type CloneVM_Task
function init (line 7226) | func init() {
type CloneVM_TaskResponse (line 7230) | type CloneVM_TaskResponse struct
type CloneVStorageObjectRequestType (line 7234) | type CloneVStorageObjectRequestType struct
function init (line 7241) | func init() {
type CloneVStorageObject_Task (line 7245) | type CloneVStorageObject_Task
function init (line 7247) | func init() {
type CloneVStorageObject_TaskResponse (line 7251) | type CloneVStorageObject_TaskResponse struct
type CloseInventoryViewFolder (line 7255) | type CloseInventoryViewFolder
function init (line 7257) | func init() {
type CloseInventoryViewFolderRequestType (line 7261) | type CloseInventoryViewFolderRequestType struct
function init (line 7266) | func init() {
type CloseInventoryViewFolderResponse (line 7270) | type CloseInventoryViewFolderResponse struct
type ClusterAction (line 7274) | type ClusterAction struct
function init (line 7281) | func init() {
type ClusterActionHistory (line 7285) | type ClusterActionHistory struct
function init (line 7292) | func init() {
type ClusterAffinityRuleSpec (line 7296) | type ClusterAffinityRuleSpec struct
function init (line 7302) | func init() {
type ClusterAntiAffinityRuleSpec (line 7306) | type ClusterAntiAffinityRuleSpec struct
function init (line 7312) | func init() {
type ClusterAttemptedVmInfo (line 7316) | type ClusterAttemptedVmInfo struct
function init (line 7323) | func init() {
type ClusterComplianceCheckedEvent (line 7327) | type ClusterComplianceCheckedEvent struct
function init (line 7333) | func init() {
type ClusterComputeResourceSummary (line 7337) | type ClusterComputeResourceSummary struct
function init (line 7350) | func init() {
type ClusterConfigInfo (line 7354) | type ClusterConfigInfo struct
function init (line 7364) | func init() {
type ClusterConfigInfoEx (line 7368) | type ClusterConfigInfoEx struct
function init (line 7387) | func init() {
type ClusterConfigSpec (line 7391) | type ClusterConfigSpec struct
function init (line 7401) | func init() {
type ClusterConfigSpecEx (line 7405) | type ClusterConfigSpecEx struct
function init (line 7424) | func init() {
type ClusterCreatedEvent (line 7428) | type ClusterCreatedEvent struct
function init (line 7434) | func init() {
type ClusterDasAamHostInfo (line 7438) | type ClusterDasAamHostInfo struct
function init (line 7445) | func init() {
type ClusterDasAamNodeState (line 7449) | type ClusterDasAamNodeState struct
function init (line 7458) | func init() {
type ClusterDasAdmissionControlInfo (line 7462) | type ClusterDasAdmissionControlInfo struct
function init (line 7466) | func init() {
type ClusterDasAdmissionControlPolicy (line 7470) | type ClusterDasAdmissionControlPolicy struct
function init (line 7476) | func init() {
type ClusterDasAdvancedRuntimeInfo (line 7480) | type ClusterDasAdvancedRuntimeInfo struct
function init (line 7488) | func init() {
type ClusterDasAdvancedRuntimeInfoVmcpCapabilityInfo (line 7492) | type ClusterDasAdvancedRuntimeInfoVmcpCapabilityInfo struct
function init (line 7499) | func init() {
type ClusterDasConfigInfo (line 7503) | type ClusterDasConfigInfo struct
function init (line 7519) | func init() {
type ClusterDasData (line 7523) | type ClusterDasData struct
function init (line 7527) | func init() {
type ClusterDasDataSummary (line 7531) | type ClusterDasDataSummary struct
function init (line 7539) | func init() {
type ClusterDasFailoverLevelAdvancedRuntimeInfo (line 7543) | type ClusterDasFailoverLevelAdvancedRuntimeInfo struct
function init (line 7557) | func init() {
type ClusterDasFailoverLevelAdvancedRuntimeInfoHostSlots (line 7561) | type ClusterDasFailoverLevelAdvancedRuntimeInfoHostSlots struct
function init (line 7568) | func init() {
type ClusterDasFailoverLevelAdvancedRuntimeInfoSlotInfo (line 7572) | type ClusterDasFailoverLevelAdvancedRuntimeInfoSlotInfo struct
function init (line 7580) | func init() {
type ClusterDasFailoverLevelAdvancedRuntimeInfoVmSlots (line 7584) | type ClusterDasFailoverLevelAdvancedRuntimeInfoVmSlots struct
function init (line 7591) | func init() {
type ClusterDasFdmHostState (line 7595) | type ClusterDasFdmHostState struct
function init (line 7602) | func init() {
type ClusterDasHostInfo (line 7606) | type ClusterDasHostInfo struct
function init (line 7610) | func init() {
type ClusterDasHostRecommendation (line 7614) | type ClusterDasHostRecommendation struct
function init (line 7621) | func init() {
type ClusterDasVmConfigInfo (line 7625) | type ClusterDasVmConfigInfo struct
function init (line 7634) | func init() {
type ClusterDasVmConfigSpec (line 7638) | type ClusterDasVmConfigSpec struct
function init (line 7644) | func init() {
type ClusterDasVmSettings (line 7648) | type ClusterDasVmSettings struct
function init (line 7658) | func init() {
type ClusterDependencyRuleInfo (line 7662) | type ClusterDependencyRuleInfo struct
function init (line 7669) | func init() {
type ClusterDestroyedEvent (line 7673) | type ClusterDestroyedEvent struct
function init (line 7677) | func init() {
type ClusterDpmConfigInfo (line 7681) | type ClusterDpmConfigInfo struct
function init (line 7690) | func init() {
type ClusterDpmHostConfigInfo (line 7694) | type ClusterDpmHostConfigInfo struct
function init (line 7702) | func init() {
type ClusterDpmHostConfigSpec (line 7706) | type ClusterDpmHostConfigSpec struct
function init (line 7712) | func init() {
type ClusterDrsConfigInfo (line 7716) | type ClusterDrsConfigInfo struct
function init (line 7726) | func init() {
type ClusterDrsFaults (line 7730) | type ClusterDrsFaults struct
function init (line 7737) | func init() {
type ClusterDrsFaultsFaultsByVirtualDisk (line 7741) | type ClusterDrsFaultsFaultsByVirtualDisk struct
function init (line 7747) | func init() {
type ClusterDrsFaultsFaultsByVm (line 7751) | type ClusterDrsFaultsFaultsByVm struct
function init (line 7758) | func init() {
type ClusterDrsMigration (line 7762) | type ClusterDrsMigration struct
function init (line 7778) | func init() {
type ClusterDrsRecommendation (line 7782) | type ClusterDrsRecommendation struct
function init (line 7792) | func init() {
type ClusterDrsVmConfigInfo (line 7796) | type ClusterDrsVmConfigInfo struct
function init (line 7804) | func init() {
type ClusterDrsVmConfigSpec (line 7808) | type ClusterDrsVmConfigSpec struct
function init (line 7814) | func init() {
type ClusterEVCManagerCheckResult (line 7818) | type ClusterEVCManagerCheckResult struct
function init (line 7826) | func init() {
type ClusterEVCManagerEVCState (line 7830) | type ClusterEVCManagerEVCState struct
function init (line 7841) | func init() {
type ClusterEnterMaintenanceMode (line 7845) | type ClusterEnterMaintenanceMode
function init (line 7847) | func init() {
type ClusterEnterMaintenanceModeRequestType (line 7851) | type ClusterEnterMaintenanceModeRequestType struct
function init (line 7857) | func init() {
type ClusterEnterMaintenanceModeResponse (line 7861) | type ClusterEnterMaintenanceModeResponse struct
type ClusterEnterMaintenanceResult (line 7865) | type ClusterEnterMaintenanceResult struct
function init (line 7872) | func init() {
type ClusterEvent (line 7876) | type ClusterEvent struct
function init (line 7880) | func init() {
type ClusterFailoverHostAdmissionControlInfo (line 7884) | type ClusterFailoverHostAdmissionControlInfo struct
function init (line 7890) | func init() {
type ClusterFailoverHostAdmissionControlInfoHostStatus (line 7894) | type ClusterFailoverHostAdmissionControlInfoHostStatus struct
function init (line 7901) | func init() {
type ClusterFailoverHostAdmissionControlPolicy (line 7905) | type ClusterFailoverHostAdmissionControlPolicy struct
function init (line 7912) | func init() {
type ClusterFailoverLevelAdmissionControlInfo (line 7916) | type ClusterFailoverLevelAdmissionControlInfo struct
function init (line 7922) | func init() {
type ClusterFailoverLevelAdmissionControlPolicy (line 7926) | type ClusterFailoverLevelAdmissionControlPolicy struct
function init (line 7933) | func init() {
type ClusterFailoverResourcesAdmissionControlInfo (line 7937) | type ClusterFailoverResourcesAdmissionControlInfo struct
function init (line 7944) | func init() {
type ClusterFailoverResourcesAdmissionControlPolicy (line 7948) | type ClusterFailoverResourcesAdmissionControlPolicy struct
function init (line 7957) | func init() {
type ClusterFixedSizeSlotPolicy (line 7961) | type ClusterFixedSizeSlotPolicy struct
function init (line 7968) | func init() {
type ClusterGroupInfo (line 7972) | type ClusterGroupInfo struct
function init (line 7980) | func init() {
type ClusterGroupSpec (line 7984) | type ClusterGroupSpec struct
function init (line 7990) | func init() {
type ClusterHostGroup (line 7994) | type ClusterHostGroup struct
function init (line 8000) | func init() {
type ClusterHostInfraUpdateHaModeAction (line 8004) | type ClusterHostInfraUpdateHaModeAction struct
function init (line 8010) | func init() {
type ClusterHostPowerAction (line 8014) | type ClusterHostPowerAction struct
function init (line 8023) | func init() {
type ClusterHostRecommendation (line 8027) | type ClusterHostRecommendation struct
function init (line 8034) | func init() {
type ClusterInfraUpdateHaConfigInfo (line 8038) | type ClusterInfraUpdateHaConfigInfo struct
function init (line 8048) | func init() {
type ClusterInitialPlacementAction (line 8052) | type ClusterInitialPlacementAction struct
function init (line 8059) | func init() {
type ClusterIoFilterInfo (line 8063) | type ClusterIoFilterInfo struct
function init (line 8070) | func init() {
type ClusterMigrationAction (line 8074) | type ClusterMigrationAction struct
function init (line 8080) | func init() {
type ClusterNetworkConfigSpec (line 8084) | type ClusterNetworkConfigSpec struct
function init (line 8091) | func init() {
type ClusterNotAttemptedVmInfo (line 8095) | type ClusterNotAttemptedVmInfo struct
function init (line 8102) | func init() {
type ClusterOrchestrationInfo (line 8106) | type ClusterOrchestrationInfo struct
function init (line 8112) | func init() {
type ClusterOvercommittedEvent (line 8116) | type ClusterOvercommittedEvent struct
function init (line 8120) | func init() {
type ClusterPowerOnVmResult (line 8124) | type ClusterPowerOnVmResult struct
function init (line 8132) | func init() {
type ClusterProactiveDrsConfigInfo (line 8136) | type ClusterProactiveDrsConfigInfo struct
function init (line 8142) | func init() {
type ClusterProfileCompleteConfigSpec (line 8146) | type ClusterProfileCompleteConfigSpec struct
function init (line 8152) | func init() {
type ClusterProfileConfigInfo (line 8156) | type ClusterProfileConfigInfo struct
function init (line 8162) | func init() {
type ClusterProfileConfigServiceCreateSpec (line 8166) | type ClusterProfileConfigServiceCreateSpec struct
function init (line 8172) | func init() {
type ClusterProfileConfigSpec (line 8176) | type ClusterProfileConfigSpec struct
function init (line 8180) | func init() {
type ClusterProfileCreateSpec (line 8184) | type ClusterProfileCreateSpec struct
function init (line 8188) | func init() {
type ClusterRecommendation (line 8192) | type ClusterRecommendation struct
function init (line 8208) | func init() {
type ClusterReconfiguredEvent (line 8212) | type ClusterReconfiguredEvent struct
function init (line 8218) | func init() {
type ClusterResourceUsageSummary (line 8222) | type ClusterResourceUsageSummary struct
function init (line 8233) | func init() {
type ClusterRuleInfo (line 8237) | type ClusterRuleInfo struct
function init (line 8250) | func init() {
type ClusterRuleSpec (line 8254) | type ClusterRuleSpec struct
function init (line 8260) | func init() {
type ClusterSlotPolicy (line 8264) | type ClusterSlotPolicy struct
function init (line 8268) | func init() {
type ClusterStatusChangedEvent (line 8272) | type ClusterStatusChangedEvent struct
function init (line 8279) | func init() {
type ClusterUsageSummary (line 8283) | type ClusterUsageSummary struct
function init (line 8301) | func init() {
type ClusterVmComponentProtectionSettings (line 8305) | type ClusterVmComponentProtectionSettings struct
function init (line 8315) | func init() {
type ClusterVmGroup (line 8319) | type ClusterVmGroup struct
function init (line 8325) | func init() {
type ClusterVmHostRuleInfo (line 8329) | type ClusterVmHostRuleInfo struct
function init (line 8337) | func init() {
type ClusterVmOrchestrationInfo (line 8341) | type ClusterVmOrchestrationInfo struct
function init (line 8348) | func init() {
type ClusterVmOrchestrationSpec (line 8352) | type ClusterVmOrchestrationSpec struct
function init (line 8358) | func init() {
type ClusterVmReadiness (line 8362) | type ClusterVmReadiness struct
function init (line 8369) | func init() {
type ClusterVmToolsMonitoringSettings (line 8373) | type ClusterVmToolsMonitoringSettings struct
function init (line 8385) | func init() {
type CollectorAddressUnset (line 8389) | type CollectorAddressUnset struct
function init (line 8393) | func init() {
type CollectorAddressUnsetFault (line 8397) | type CollectorAddressUnsetFault
function init (line 8399) | func init() {
type ComplianceFailure (line 8403) | type ComplianceFailure struct
function init (line 8412) | func init() {
type ComplianceFailureComplianceFailureValues (line 8416) | type ComplianceFailureComplianceFailureValues struct
function init (line 8425) | func init() {
type ComplianceLocator (line 8429) | type ComplianceLocator struct
function init (line 8436) | func init() {
type ComplianceProfile (line 8440) | type ComplianceProfile struct
function init (line 8447) | func init() {
type ComplianceResult (line 8451) | type ComplianceResult struct
function init (line 8461) | func init() {
type CompositePolicyOption (line 8465) | type CompositePolicyOption struct
function init (line 8471) | func init() {
type ComputeDiskPartitionInfo (line 8475) | type ComputeDiskPartitionInfo
function init (line 8477) | func init() {
type ComputeDiskPartitionInfoForResize (line 8481) | type ComputeDiskPartitionInfoForResize
function init (line 8483) | func init() {
type ComputeDiskPartitionInfoForResizeRequestType (line 8487) | type ComputeDiskPartitionInfoForResizeRequestType struct
function init (line 8494) | func init() {
type ComputeDiskPartitionInfoForResizeResponse (line 8498) | type ComputeDiskPartitionInfoForResizeResponse struct
type ComputeDiskPartitionInfoRequestType (line 8502) | type ComputeDiskPartitionInfoRequestType struct
function init (line 8509) | func init() {
type ComputeDiskPartitionInfoResponse (line 8513) | type ComputeDiskPartitionInfoResponse struct
type ComputeResourceConfigInfo (line 8517) | type ComputeResourceConfigInfo struct
function init (line 8525) | func init() {
type ComputeResourceConfigSpec (line 8529) | type ComputeResourceConfigSpec struct
function init (line 8537) | func init() {
type ComputeResourceEventArgument (line 8541) | type ComputeResourceEventArgument struct
function init (line 8547) | func init() {
type ComputeResourceHostSPBMLicenseInfo (line 8551) | type ComputeResourceHostSPBMLicenseInfo struct
function init (line 8558) | func init() {
type ComputeResourceSummary (line 8562) | type ComputeResourceSummary struct
function init (line 8576) | func init() {
type ConcurrentAccess (line 8580) | type ConcurrentAccess struct
function init (line 8584) | func init() {
type ConcurrentAccessFault (line 8588) | type ConcurrentAccessFault
function init (line 8590) | func init() {
type ConfigTarget (line 8594) | type ConfigTarget struct
function init (line 8625) | func init() {
type ConfigureCryptoKey (line 8629) | type ConfigureCryptoKey
function init (line 8631) | func init() {
type ConfigureCryptoKeyRequestType (line 8635) | type ConfigureCryptoKeyRequestType struct
function init (line 8640) | func init() {
type ConfigureCryptoKeyResponse (line 8644) | type ConfigureCryptoKeyResponse struct
type ConfigureDatastoreIORMRequestType (line 8647) | type ConfigureDatastoreIORMRequestType struct
function init (line 8653) | func init() {
type ConfigureDatastoreIORM_Task (line 8657) | type ConfigureDatastoreIORM_Task
function init (line 8659) | func init() {
type ConfigureDatastoreIORM_TaskResponse (line 8663) | type ConfigureDatastoreIORM_TaskResponse struct
type ConfigureDatastorePrincipal (line 8667) | type ConfigureDatastorePrincipal
function init (line 8669) | func init() {
type ConfigureDatastorePrincipalRequestType (line 8673) | type ConfigureDatastorePrincipalRequestType struct
function init (line 8679) | func init() {
type ConfigureDatastorePrincipalResponse (line 8683) | type ConfigureDatastorePrincipalResponse struct
type ConfigureEvcModeRequestType (line 8686) | type ConfigureEvcModeRequestType struct
function init (line 8691) | func init() {
type ConfigureEvcMode_Task (line 8695) | type ConfigureEvcMode_Task
function init (line 8697) | func init() {
type ConfigureEvcMode_TaskResponse (line 8701) | type ConfigureEvcMode_TaskResponse struct
type ConfigureHostCacheRequestType (line 8705) | type ConfigureHostCacheRequestType struct
function init (line 8710) | func init() {
type ConfigureHostCache_Task (line 8714) | type ConfigureHostCache_Task
function init (line 8716) | func init() {
type ConfigureHostCache_TaskResponse (line 8720) | type ConfigureHostCache_TaskResponse struct
type ConfigureLicenseSource (line 8724) | type ConfigureLicenseSource
function init (line 8726) | func init() {
type ConfigureLicenseSourceRequestType (line 8730) | type ConfigureLicenseSourceRequestType struct
function init (line 8736) | func init() {
type ConfigureLicenseSourceResponse (line 8740) | type ConfigureLicenseSourceResponse struct
type ConfigurePowerPolicy (line 8743) | type ConfigurePowerPolicy
function init (line 8745) | func init() {
type ConfigurePowerPolicyRequestType (line 8749) | type ConfigurePowerPolicyRequestType struct
function init (line 8754) | func init() {
type ConfigurePowerPolicyResponse (line 8758) | type ConfigurePowerPolicyResponse struct
type ConfigureStorageDrsForPodRequestType (line 8761) | type ConfigureStorageDrsForPodRequestType struct
function init (line 8768) | func init() {
type ConfigureStorageDrsForPod_Task (line 8772) | type ConfigureStorageDrsForPod_Task
function init (line 8774) | func init() {
type ConfigureStorageDrsForPod_TaskResponse (line 8778) | type ConfigureStorageDrsForPod_TaskResponse struct
type ConfigureVFlashResourceExRequestType (line 8782) | type ConfigureVFlashResourceExRequestType struct
function init (line 8787) | func init() {
type ConfigureVFlashResourceEx_Task (line 8791) | type ConfigureVFlashResourceEx_Task
function init (line 8793) | func init() {
type ConfigureVFlashResourceEx_TaskResponse (line 8797) | type ConfigureVFlashResourceEx_TaskResponse struct
type ConflictingConfiguration (line 8801) | type ConflictingConfiguration struct
function init (line 8807) | func init() {
type ConflictingConfigurationConfig (line 8811) | type ConflictingConfigurationConfig struct
function init (line 8818) | func init() {
type ConflictingConfigurationFault (line 8822) | type ConflictingConfigurationFault
function init (line 8824) | func init() {
type ConflictingDatastoreFound (line 8828) | type ConflictingDatastoreFound struct
function init (line 8835) | func init() {
type ConflictingDatastoreFoundFault (line 8839) | type ConflictingDatastoreFoundFault
function init (line 8841) | func init() {
type ConnectedIso (line 8845) | type ConnectedIso struct
function init (line 8852) | func init() {
type ConnectedIsoFault (line 8856) | type ConnectedIsoFault
function init (line 8858) | func init() {
type ConsolidateVMDisksRequestType (line 8862) | type ConsolidateVMDisksRequestType struct
function init (line 8866) | func init() {
type ConsolidateVMDisks_Task (line 8870) | type ConsolidateVMDisks_Task
function init (line 8872) | func init() {
type ConsolidateVMDisks_TaskResponse (line 8876) | type ConsolidateVMDisks_TaskResponse struct
type ContinueRetrievePropertiesEx (line 8880) | type ContinueRetrievePropertiesEx
function init (line 8882) | func init() {
type ContinueRetrievePropertiesExRequestType (line 8886) | type ContinueRetrievePropertiesExRequestType struct
function init (line 8891) | func init() {
type ContinueRetrievePropertiesExResponse (line 8895) | type ContinueRetrievePropertiesExResponse struct
type ConvertNamespacePathToUuidPath (line 8899) | type ConvertNamespacePathToUuidPath
function init (line 8901) | func init() {
type ConvertNamespacePathToUuidPathRequestType (line 8905) | type ConvertNamespacePathToUuidPathRequestType struct
function init (line 8911) | func init() {
type ConvertNamespacePathToUuidPathResponse (line 8915) | type ConvertNamespacePathToUuidPathResponse struct
type CopyDatastoreFileRequestType (line 8919) | type CopyDatastoreFileRequestType struct
function init (line 8928) | func init() {
type CopyDatastoreFile_Task (line 8932) | type CopyDatastoreFile_Task
function init (line 8934) | func init() {
type CopyDatastoreFile_TaskResponse (line 8938) | type CopyDatastoreFile_TaskResponse struct
type CopyVirtualDiskRequestType (line 8942) | type CopyVirtualDiskRequestType struct
function init (line 8952) | func init() {
type CopyVirtualDisk_Task (line 8956) | type CopyVirtualDisk_Task
function init (line 8958) | func init() {
type CopyVirtualDisk_TaskResponse (line 8962) | type CopyVirtualDisk_TaskResponse struct
type CpuCompatibilityUnknown (line 8966) | type CpuCompatibilityUnknown struct
function init (line 8970) | func init() {
type CpuCompatibilityUnknownFault (line 8974) | type CpuCompatibilityUnknownFault
function init (line 8976) | func init() {
type CpuHotPlugNotSupported (line 8980) | type CpuHotPlugNotSupported struct
function init (line 8984) | func init() {
type CpuHotPlugNotSupportedFault (line 8988) | type CpuHotPlugNotSupportedFault
function init (line 8990) | func init() {
type CpuIncompatible (line 8994) | type CpuIncompatible struct
function init (line 9004) | func init() {
type CpuIncompatible1ECX (line 9008) | type CpuIncompatible1ECX struct
function init (line 9021) | func init() {
type CpuIncompatible1ECXFault (line 9025) | type CpuIncompatible1ECXFault
function init (line 9027) | func init() {
type CpuIncompatible81EDX (line 9031) | type CpuIncompatible81EDX struct
function init (line 9042) | func init() {
type CpuIncompatible81EDXFault (line 9046) | type CpuIncompatible81EDXFault
function init (line 9048) | func init() {
type CpuIncompatibleFault (line 9052) | type CpuIncompatibleFault
function init (line 9054) | func init() {
type CreateAlarm (line 9058) | type CreateAlarm
function init (line 9060) | func init() {
type CreateAlarmRequestType (line 9064) | type CreateAlarmRequestType struct
function init (line 9070) | func init() {
type CreateAlarmResponse (line 9074) | type CreateAlarmResponse struct
type CreateChildVMRequestType (line 9078) | type CreateChildVMRequestType struct
function init (line 9084) | func init() {
type CreateChildVM_Task (line 9088) | type CreateChildVM_Task
function init (line 9090) | func init() {
type CreateChildVM_TaskResponse (line 9094) | type CreateChildVM_TaskResponse struct
type CreateCluster (line 9098) | type CreateCluster
function init (line 9100) | func init() {
type CreateClusterEx (line 9104) | type CreateClusterEx
function init (line 9106) | func init() {
type CreateClusterExRequestType (line 9110) | type CreateClusterExRequestType struct
function init (line 9116) | func init() {
type CreateClusterExResponse (line 9120) | type CreateClusterExResponse struct
type CreateClusterRequestType (line 9124) | type CreateClusterRequestType struct
function init (line 9130) | func init() {
type CreateClusterResponse (line 9134) | type CreateClusterResponse struct
type CreateCollectorForEvents (line 9138) | type CreateCollectorForEvents
function init (line 9140) | func init() {
type CreateCollectorForEventsRequestType (line 9144) | type CreateCollectorForEventsRequestType struct
function init (line 9149) | func init() {
type CreateCollectorForEventsResponse (line 9153) | type CreateCollectorForEventsResponse struct
type CreateCollectorForTasks (line 9157) | type CreateCollectorForTasks
function init (line 9159) | func init() {
type CreateCollectorForTasksRequestType (line 9163) | type CreateCollectorForTasksRequestType struct
function init (line 9168) | func init() {
type CreateCollectorForTasksResponse (line 9172) | type CreateCollectorForTasksResponse struct
type CreateContainerView (line 9176) | type CreateContainerView
function init (line 9178) | func init() {
type CreateContainerViewRequestType (line 9182) | type CreateContainerViewRequestType struct
function init (line 9189) | func init() {
type CreateContainerViewResponse (line 9193) | type CreateContainerViewResponse struct
type CreateCustomizationSpec (line 9197) | type CreateCustomizationSpec
function init (line 9199) | func init() {
type CreateCustomizationSpecRequestType (line 9203) | type CreateCustomizationSpecRequestType struct
function init (line 9208) | func init() {
type CreateCustomizationSpecResponse (line 9212) | type CreateCustomizationSpecResponse struct
type CreateDVPortgroupRequestType (line 9215) | type CreateDVPortgroupRequestType struct
function init (line 9220) | func init() {
type CreateDVPortgroup_Task (line 9224) | type CreateDVPortgroup_Task
function init (line 9226) | func init() {
type CreateDVPortgroup_TaskResponse (line 9230) | type CreateDVPortgroup_TaskResponse struct
type CreateDVSRequestType (line 9234) | type CreateDVSRequestType struct
function init (line 9239) | func init() {
type CreateDVS_Task (line 9243) | type CreateDVS_Task
function init (line 9245) | func init() {
type CreateDVS_TaskResponse (line 9249) | type CreateDVS_TaskResponse struct
type CreateDatacenter (line 9253) | type CreateDatacenter
function init (line 9255) | func init() {
type CreateDatacenterRequestType (line 9259) | type CreateDatacenterRequestType struct
function init (line 9264) | func init() {
type CreateDatacenterResponse (line 9268) | type CreateDatacenterResponse struct
type CreateDefaultProfile (line 9272) | type CreateDefaultProfile
function init (line 9274) | func init() {
type CreateDefaultProfileRequestType (line 9278) | type CreateDefaultProfileRequestType struct
function init (line 9285) | func init() {
type CreateDefaultProfileResponse (line 9289) | type CreateDefaultProfileResponse struct
type CreateDescriptor (line 9293) | type CreateDescriptor
function init (line 9295) | func init() {
type CreateDescriptorRequestType (line 9299) | type CreateDescriptorRequestType struct
function init (line 9305) | func init() {
type CreateDescriptorResponse (line 9309) | type CreateDescriptorResponse struct
type CreateDiagnosticPartition (line 9313) | type CreateDiagnosticPartition
function init (line 9315) | func init() {
type CreateDiagnosticPartitionRequestType (line 9319) | type CreateDiagnosticPartitionRequestType struct
function init (line 9324) | func init() {
type CreateDiagnosticPartitionResponse (line 9328) | type CreateDiagnosticPartitionResponse struct
type CreateDirectory (line 9331) | type CreateDirectory
function init (line 9333) | func init() {
type CreateDirectoryRequestType (line 9337) | type CreateDirectoryRequestType struct
function init (line 9344) | func init() {
type CreateDirectoryResponse (line 9348) | type CreateDirectoryResponse struct
type CreateDiskRequestType (line 9352) | type CreateDiskRequestType struct
function init (line 9357) | func init() {
type CreateDisk_Task (line 9361) | type CreateDisk_Task
function init (line 9363) | func init() {
type CreateDisk_TaskResponse (line 9367) | type CreateDisk_TaskResponse struct
type CreateFilter (line 9371) | type CreateFilter
function init (line 9373) | func init() {
type CreateFilterRequestType (line 9377) | type CreateFilterRequestType struct
function init (line 9383) | func init() {
type CreateFilterResponse (line 9387) | type CreateFilterResponse struct
type CreateFolder (line 9391) | type CreateFolder
function init (line 9393) | func init() {
type CreateFolderRequestType (line 9397) | type CreateFolderRequestType struct
function init (line 9402) | func init() {
type CreateFolderResponse (line 9406) | type CreateFolderResponse struct
type CreateGroup (line 9410) | type CreateGroup
function init (line 9412) | func init() {
type CreateGroupRequestType (line 9416) | type CreateGroupRequestType struct
function init (line 9421) | func init() {
type CreateGroupResponse (line 9425) | type CreateGroupResponse struct
type CreateImportSpec (line 9428) | type CreateImportSpec
function init (line 9430) | func init() {
type CreateImportSpecRequestType (line 9434) | type CreateImportSpecRequestType struct
function init (line 9442) | func init() {
type CreateImportSpecResponse (line 9446) | type CreateImportSpecResponse struct
type CreateInventoryView (line 9450) | type CreateInventoryView
function init (line 9452) | func init() {
type CreateInventoryViewRequestType (line 9456) | type CreateInventoryViewRequestType struct
function init (line 9460) | func init() {
type CreateInventoryViewResponse (line 9464) | type CreateInventoryViewResponse struct
type CreateIpPool (line 9468) | type CreateIpPool
function init (line 9470) | func init() {
type CreateIpPoolRequestType (line 9474) | type CreateIpPoolRequestType struct
function init (line 9480) | func init() {
type CreateIpPoolResponse (line 9484) | type CreateIpPoolResponse struct
type CreateListView (line 9488) | type CreateListView
function init (line 9490) | func init() {
type CreateListViewFromView (line 9494) | type CreateListViewFromView
function init (line 9496) | func init() {
type CreateListViewFromViewRequestType (line 9500) | type CreateListViewFromViewRequestType struct
function init (line 9505) | func init() {
type CreateListViewFromViewResponse (line 9509) | type CreateListViewFromViewResponse struct
type CreateListViewRequestType (line 9513) | type CreateListViewRequestType struct
function init (line 9518) | func init() {
type CreateListViewResponse (line 9522) | type CreateListViewResponse struct
type CreateLocalDatastore (line 9526) | type CreateLocalDatastore
function init (line 9528) | func init() {
type CreateLocalDatastoreRequestType (line 9532) | type CreateLocalDatastoreRequestType struct
function init (line 9538) | func init() {
type CreateLocalDatastoreResponse (line 9542) | type CreateLocalDatastoreResponse struct
type CreateNasDatastore (line 9546) | type CreateNasDatastore
function init (line 9548) | func init() {
type CreateNasDatastoreRequestType (line 9552) | type CreateNasDatastoreRequestType struct
function init (line 9557) | func init() {
type CreateNasDatastoreResponse (line 9561) | type CreateNasDatastoreResponse struct
type CreateObjectScheduledTask (line 9565) | type CreateObjectScheduledTask
function init (line 9567) | func init() {
type CreateObjectScheduledTaskRequestType (line 9571) | type CreateObjectScheduledTaskRequestType struct
function init (line 9577) | func init() {
type CreateObjectScheduledTaskResponse (line 9581) | type CreateObjectScheduledTaskResponse struct
type CreatePerfInterval (line 9585) | type CreatePerfInterval
function init (line 9587) | func init() {
type CreatePerfIntervalRequestType (line 9591) | type CreatePerfIntervalRequestType struct
function init (line 9596) | func init() {
type CreatePerfIntervalResponse (line 9600) | type CreatePerfIntervalResponse struct
type CreateProfile (line 9603) | type CreateProfile
function init (line 9605) | func init() {
type CreateProfileRequestType (line 9609) | type CreateProfileRequestType struct
function init (line 9614) | func init() {
type CreateProfileResponse (line 9618) | type CreateProfileResponse struct
type CreatePropertyCollector (line 9622) | type CreatePropertyCollector
function init (line 9624) | func init() {
type CreatePropertyCollectorRequestType (line 9628) | type CreatePropertyCollectorRequestType struct
function init (line 9632) | func init() {
type CreatePropertyCollectorResponse (line 9636) | type CreatePropertyCollectorResponse struct
type CreateRegistryKeyInGuest (line 9640) | type CreateRegistryKeyInGuest
function init (line 9642) | func init() {
type CreateRegistryKeyInGuestRequestType (line 9646) | type CreateRegistryKeyInGuestRequestType struct
function init (line 9655) | func init() {
type CreateRegistryKeyInGuestResponse (line 9659) | type CreateRegistryKeyInGuestResponse struct
type CreateResourcePool (line 9662) | type CreateResourcePool
function init (line 9664) | func init() {
type CreateResourcePoolRequestType (line 9668) | type CreateResourcePoolRequestType struct
function init (line 9674) | func init() {
type CreateResourcePoolResponse (line 9678) | type CreateResourcePoolResponse struct
type CreateScheduledTask (line 9682) | type CreateScheduledTask
function init (line 9684) | func init() {
type CreateScheduledTaskRequestType (line 9688) | type CreateScheduledTaskRequestType struct
function init (line 9694) | func init() {
type CreateScheduledTaskResponse (line 9698) | type CreateScheduledTaskResponse struct
type CreateScreenshotRequestType (line 9702) | type CreateScreenshotRequestType struct
function init (line 9706) | func init() {
type CreateScreenshot_Task (line 9710) | type CreateScreenshot_Task
function init (line 9712) | func init() {
type CreateScreenshot_TaskResponse (line 9716) | type CreateScreenshot_TaskResponse struct
type CreateSecondaryVMExRequestType (line 9720) | type CreateSecondaryVMExRequestType struct
function init (line 9726) | func init() {
type CreateSecondaryVMEx_Task (line 9730) | type CreateSecondaryVMEx_Task
function init (line 9732) | func init() {
type CreateSecondaryVMEx_TaskResponse (line 9736) | type CreateSecondaryVMEx_TaskResponse struct
type CreateSecondaryVMRequestType (line 9740) | type CreateSecondaryVMRequestType struct
function init (line 9745) | func init() {
type CreateSecondaryVM_Task (line 9749) | type CreateSecondaryVM_Task
function init (line 9751) | func init() {
type CreateSecondaryVM_TaskResponse (line 9755) | type CreateSecondaryVM_TaskResponse struct
type CreateSnapshotExRequestType (line 9759) | type CreateSnapshotExRequestType struct
function init (line 9767) | func init() {
type CreateSnapshotEx_Task (line 9771) | type CreateSnapshotEx_Task
function init (line 9773) | func init() {
type CreateSnapshotEx_TaskResponse (line 9777) | type CreateSnapshotEx_TaskResponse struct
type CreateSnapshotRequestType (line 9781) | type CreateSnapshotRequestType struct
function init (line 9789) | func init() {
type CreateSnapshot_Task (line 9793) | type CreateSnapshot_Task
function init (line 9795) | func init() {
type CreateSnapshot_TaskResponse (line 9799) | type CreateSnapshot_TaskResponse struct
type CreateStoragePod (line 9803) | type CreateStoragePod
function init (line 9805) | func init() {
type CreateStoragePodRequestType (line 9809) | type CreateStoragePodRequestType struct
function init (line 9814) | func init() {
type CreateStoragePodResponse (line 9818) | type CreateStoragePodResponse struct
type CreateTask (line 9822) | type CreateTask
function init (line 9824) | func init() {
type CreateTaskAction (line 9828) | type CreateTaskAction struct
function init (line 9835) | func init() {
type CreateTaskRequestType (line 9839) | type CreateTaskRequestType struct
function init (line 9849) | func init() {
type CreateTaskResponse (line 9853) | type CreateTaskResponse struct
type CreateTemporaryDirectoryInGuest (line 9857) | type CreateTemporaryDirectoryInGuest
function init (line 9859) | func init() {
type CreateTemporaryDirectoryInGuestRequestType (line 9863) | type CreateTemporaryDirectoryInGuestRequestType struct
function init (line 9872) | func init() {
type CreateTemporaryDirectoryInGuestResponse (line 9876) | type CreateTemporaryDirectoryInGuestResponse struct
type CreateTemporaryFileInGuest (line 9880) | type CreateTemporaryFileInGuest
function init (line 9882) | func init() {
type CreateTemporaryFileInGuestRequestType (line 9886) | type CreateTemporaryFileInGuestRequestType struct
function init (line 9895) | func init() {
type CreateTemporaryFileInGuestResponse (line 9899) | type CreateTemporaryFileInGuestResponse struct
type CreateUser (line 9903) | type CreateUser
function init (line 9905) | func init() {
type CreateUserRequestType (line 9909) | type CreateUserRequestType struct
function init (line 9914) | func init() {
type CreateUserResponse (line 9918) | type CreateUserResponse struct
type CreateVApp (line 9921) | type CreateVApp
function init (line 9923) | func init() {
type CreateVAppRequestType (line 9927) | type CreateVAppRequestType struct
function init (line 9935) | func init() {
type CreateVAppResponse (line 9939) | type CreateVAppResponse struct
type CreateVMRequestType (line 9943) | type CreateVMRequestType struct
function init (line 9950) | func init() {
type CreateVM_Task (line 9954) | type CreateVM_Task
function init (line 9956) | func init() {
type CreateVM_TaskResponse (line 9960) | type CreateVM_TaskResponse struct
type CreateVirtualDiskRequestType (line 9964) | type CreateVirtualDiskRequestType struct
function init (line 9971) | func init() {
type CreateVirtualDisk_Task (line 9975) | type CreateVirtualDisk_Task
function init (line 9977) | func init() {
type CreateVirtualDisk_TaskResponse (line 9981) | type CreateVirtualDisk_TaskResponse struct
type CreateVmfsDatastore (line 9985) | type CreateVmfsDatastore
function init (line 9987) | func init() {
type CreateVmfsDatastoreRequestType (line 9991) | type CreateVmfsDatastoreRequestType struct
function init (line 9996) | func init() {
type CreateVmfsDatastoreResponse (line 10000) | type CreateVmfsDatastoreResponse struct
type CreateVvolDatastore (line 10004) | type CreateVvolDatastore
function init (line 10006) | func init() {
type CreateVvolDatastoreRequestType (line 10010) | type CreateVvolDatastoreRequestType struct
function init (line 10015) | func init() {
type CreateVvolDatastoreResponse (line 10019) | type CreateVvolDatastoreResponse struct
type CryptoKeyId (line 10023) | type CryptoKeyId struct
function init (line 10030) | func init() {
type CryptoKeyPlain (line 10034) | type CryptoKeyPlain struct
function init (line 10042) | func init() {
type CryptoKeyResult (line 10046) | type CryptoKeyResult struct
function init (line 10054) | func init() {
type CryptoManagerKmipCertificateInfo (line 10058) | type CryptoManagerKmipCertificateInfo struct
function init (line 10072) | func init() {
type CryptoManagerKmipClusterStatus (line 10076) | type CryptoManagerKmipClusterStatus struct
function init (line 10084) | func init() {
type CryptoManagerKmipServerCertInfo (line 10088) | type CryptoManagerKmipServerCertInfo struct
function init (line 10096) | func init() {
type CryptoManagerKmipServerStatus (line 10100) | type CryptoManagerKmipServerStatus struct
function init (line 10111) | func init() {
type CryptoSpec (line 10115) | type CryptoSpec struct
function init (line 10119) | func init() {
type CryptoSpecDecrypt (line 10123) | type CryptoSpecDecrypt struct
function init (line 10127) | func init() {
type CryptoSpecDeepRecrypt (line 10131) | type CryptoSpecDeepRecrypt struct
function init (line 10137) | func init() {
type CryptoSpecEncrypt (line 10141) | type CryptoSpecEncrypt struct
function init (line 10147) | func init() {
type CryptoSpecNoOp (line 10151) | type CryptoSpecNoOp struct
function init (line 10155) | func init() {
type CryptoSpecRegister (line 10159) | type CryptoSpecRegister struct
function init (line 10165) | func init() {
type CryptoSpecShallowRecrypt (line 10169) | type CryptoSpecShallowRecrypt struct
function init (line 10175) | func init() {
type CurrentTime (line 10179) | type CurrentTime
function init (line 10181) | func init() {
type CurrentTimeRequestType (line 10185) | type CurrentTimeRequestType struct
function init (line 10189) | func init() {
type CurrentTimeResponse (line 10193) | type CurrentTimeResponse struct
type CustomFieldDef (line 10197) | type CustomFieldDef struct
function init (line 10208) | func init() {
type CustomFieldDefAddedEvent (line 10212) | type CustomFieldDefAddedEvent struct
function init (line 10216) | func init() {
type CustomFieldDefEvent (line 10220) | type CustomFieldDefEvent struct
function init (line 10227) | func init() {
type CustomFieldDefRemovedEvent (line 10231) | type CustomFieldDefRemovedEvent struct
function init (line 10235) | func init() {
type CustomFieldDefRenamedEvent (line 10239) | type CustomFieldDefRenamedEvent struct
function init (line 10245) | func init() {
type CustomFieldEvent (line 10249) | type CustomFieldEvent struct
function init (line 10253) | func init() {
type CustomFieldStringValue (line 10257) | type CustomFieldStringValue struct
function init (line 10263) | func init() {
type CustomFieldValue (line 10267) | type CustomFieldValue struct
function init (line 10273) | func init() {
type CustomFieldValueChangedEvent (line 10277) | type CustomFieldValueChangedEvent struct
function init (line 10287) | func init() {
type CustomizationAdapterMapping (line 10291) | type CustomizationAdapterMapping struct
function init (line 10298) | func init() {
type CustomizationAutoIpV6Generator (line 10302) | type CustomizationAutoIpV6Generator struct
function init (line 10306) | func init() {
type CustomizationCustomIpGenerator (line 10310) | type CustomizationCustomIpGenerator struct
function init (line 10316) | func init() {
type CustomizationCustomIpV6Generator (line 10320) | type CustomizationCustomIpV6Generator struct
function init (line 10326) | func init() {
type CustomizationCustomName (line 10330) | type CustomizationCustomName struct
function init (line 10336) | func init() {
type CustomizationDhcpIpGenerator (line 10340) | type CustomizationDhcpIpGenerator struct
function init (line 10344) | func init() {
type CustomizationDhcpIpV6Generator (line 10348) | type CustomizationDhcpIpV6Generator struct
function init (line 10352) | func init() {
type CustomizationEvent (line 10356) | type CustomizationEvent struct
function init (line 10362) | func init() {
type CustomizationFailed (line 10366) | type CustomizationFailed struct
function init (line 10370) | func init() {
type CustomizationFault (line 10374) | type CustomizationFault struct
function init (line 10378) | func init() {
type CustomizationFaultFault (line 10382) | type CustomizationFaultFault
function init (line 10384) | func init() {
type CustomizationFixedIp (line 10388) | type CustomizationFixedIp struct
function init (line 10394) | func init() {
type CustomizationFixedIpV6 (line 10398) | type CustomizationFixedIpV6 struct
function init (line 10405) | func init() {
type CustomizationFixedName (line 10409) | type CustomizationFixedName struct
function init (line 10415) | func init() {
type CustomizationGlobalIPSettings (line 10419) | type CustomizationGlobalIPSettings struct
function init (line 10426) | func init() {
type CustomizationGuiRunOnce (line 10430) | type CustomizationGuiRunOnce struct
function init (line 10436) | func init() {
type CustomizationGuiUnattended (line 10440) | type CustomizationGuiUnattended struct
function init (line 10449) | func init() {
type CustomizationIPSettings (line 10453) | type CustomizationIPSettings struct
function init (line 10467) | func init() {
type CustomizationIPSettingsIpV6AddressSpec (line 10471) | type CustomizationIPSettingsIpV6AddressSpec struct
function init (line 10478) | func init() {
type CustomizationIdentification (line 10482) | type CustomizationIdentification struct
function init (line 10491) | func init() {
type CustomizationIdentitySettings (line 10495) | type CustomizationIdentitySettings struct
function init (line 10499) | func init() {
type CustomizationIpGenerator (line 10503) | type CustomizationIpGenerator struct
function init (line 10507) | func init() {
type CustomizationIpV6Generator (line 10511) | type CustomizationIpV6Generator struct
function init (line 10515) | func init() {
type CustomizationLicenseFilePrintData (line 10519) | type CustomizationLicenseFilePrintData struct
function init (line 10526) | func init() {
type CustomizationLinuxIdentityFailed (line 10530) | type CustomizationLinuxIdentityFailed struct
function init (line 10534) | func init() {
type CustomizationLinuxOptions (line 10538) | type CustomizationLinuxOptions struct
function init (line 10542) | func init() {
type CustomizationLinuxPrep (line 10546) | type CustomizationLinuxPrep struct
function init (line 10555) | func init() {
type CustomizationName (line 10559) | type CustomizationName struct
function init (line 10563) | func init() {
type CustomizationNetworkSetupFailed (line 10567) | type CustomizationNetworkSetupFailed struct
function init (line 10571) | func init() {
type CustomizationOptions (line 10575) | type CustomizationOptions struct
function init (line 10579) | func init() {
type CustomizationPassword (line 10583) | type CustomizationPassword struct
function init (line 10590) | func init() {
type CustomizationPending (line 10594) | type CustomizationPending struct
function init (line 10598) | func init() {
type CustomizationPendingFault (line 10602) | type CustomizationPendingFault
function init (line 10604) | func init() {
type CustomizationPrefixName (line 10608) | type CustomizationPrefixName struct
function init (line 10614) | func init() {
type CustomizationSpec (line 10618) | type CustomizationSpec struct
function init (line 10628) | func init() {
type CustomizationSpecInfo (line 10632) | type CustomizationSpecInfo struct
function init (line 10642) | func init() {
type CustomizationSpecItem (line 10646) | type CustomizationSpecItem struct
function init (line 10653) | func init() {
type CustomizationSpecItemToXml (line 10657) | type CustomizationSpecItemToXml
function init (line 10659) | func init() {
type CustomizationSpecItemToXmlRequestType (line 10663) | type CustomizationSpecItemToXmlRequestType struct
function init (line 10668) | func init() {
type CustomizationSpecItemToXmlResponse (line 10672) | type CustomizationSpecItemToXmlResponse struct
type CustomizationStartedEvent (line 10676) | type CustomizationStartedEvent struct
function init (line 10680) | func init() {
type CustomizationStatelessIpV6Generator (line 10684) | type CustomizationStatelessIpV6Generator struct
function init (line 10688) | func init() {
type CustomizationSucceeded (line 10692) | type CustomizationSucceeded struct
function init (line 10696) | func init() {
type CustomizationSysprep (line 10700) | type CustomizationSysprep struct
function init (line 10710) | func init() {
type CustomizationSysprepFailed (line 10714) | type CustomizationSysprepFailed struct
function init (line 10721) | func init() {
type CustomizationSysprepText (line 10725) | type CustomizationSysprepText struct
function init (line 10731) | func init() {
type CustomizationUnknownFailure (line 10735) | type CustomizationUnknownFailure struct
function init (line 10739) | func init() {
type CustomizationUnknownIpGenerator (line 10743) | type CustomizationUnknownIpGenerator struct
function init (line 10747) | func init() {
type CustomizationUnknownIpV6Generator (line 10751) | type CustomizationUnknownIpV6Generator struct
function init (line 10755) | func init() {
type CustomizationUnknownName (line 10759) | type CustomizationUnknownName struct
function init (line 10763) | func init() {
type CustomizationUserData (line 10767) | type CustomizationUserData struct
function init (line 10776) | func init() {
type CustomizationVirtualMachineName (line 10780) | type CustomizationVirtualMachineName struct
function init (line 10784) | func init() {
type CustomizationWinOptions (line 10788) | type CustomizationWinOptions struct
function init (line 10796) | func init() {
type CustomizeVMRequestType (line 10800) | type CustomizeVMRequestType struct
function init (line 10805) | func init() {
type CustomizeVM_Task (line 10809) | type CustomizeVM_Task
function init (line 10811) | func init() {
type CustomizeVM_TaskResponse (line 10815) | type CustomizeVM_TaskResponse struct
type DVPortConfigInfo (line 10819) | type DVPortConfigInfo struct
function init (line 10829) | func init() {
type DVPortConfigSpec (line 10833) | type DVPortConfigSpec struct
function init (line 10845) | func init() {
type DVPortNotSupported (line 10849) | type DVPortNotSupported struct
function init (line 10853) | func init() {
type DVPortNotSupportedFault (line 10857) | type DVPortNotSupportedFault
function init (line 10859) | func init() {
type DVPortSetting (line 10863) | type DVPortSetting struct
function init (line 10875) | func init() {
type DVPortState (line 10879) | type DVPortState struct
function init (line 10887) | func init() {
type DVPortStatus (line 10891) | type DVPortStatus struct
function init (line 10908) | func init() {
type DVPortgroupConfigInfo (line 10912) | type DVPortgroupConfigInfo struct
function init (line 10932) | func init() {
type DVPortgroupConfigSpec (line 10936) | type DVPortgroupConfigSpec struct
function init (line 10953) | func init() {
type DVPortgroupCreatedEvent (line 10957) | type DVPortgroupCreatedEvent struct
function init (line 10961) | func init() {
type DVPortgroupDestroyedEvent (line 10965) | type DVPortgroupDestroyedEvent struct
function init (line 10969) | func init() {
type DVPortgroupEvent (line 10973) | type DVPortgroupEvent struct
function init (line 10977) | func init() {
type DVPortgroupPolicy (line 10981) | type DVPortgroupPolicy struct
function init (line 10993) | func init() {
type DVPortgroupReconfiguredEvent (line 10997) | type DVPortgroupReconfiguredEvent struct
function init (line 11004) | func init() {
type DVPortgroupRenamedEvent (line 11008) | type DVPortgroupRenamedEvent struct
function init (line 11015) | func init() {
type DVPortgroupRollbackRequestType (line 11019) | type DVPortgroupRollbackRequestType struct
function init (line 11024) | func init() {
type DVPortgroupRollback_Task (line 11028) | type DVPortgroupRollback_Task
function init (line 11030) | func init() {
type DVPortgroupRollback_TaskResponse (line 11034) | type DVPortgroupRollback_TaskResponse struct
type DVPortgroupSelection (line 11038) | type DVPortgroupSelection struct
function init (line 11045) | func init() {
type DVSBackupRestoreCapability (line 11049) | type DVSBackupRestoreCapability struct
function init (line 11055) | func init() {
type DVSCapability (line 11059) | type DVSCapability struct
function init (line 11069) | func init() {
type DVSConfigInfo (line 11073) | type DVSConfigInfo struct
function init (line 11104) | func init() {
type DVSConfigSpec (line 11108) | type DVSConfigSpec struct
function init (line 11130) | func init() {
type DVSContactInfo (line 11134) | type DVSContactInfo struct
function init (line 11141) | func init() {
type DVSCreateSpec (line 11145) | type DVSCreateSpec struct
function init (line 11153) | func init() {
type DVSFailureCriteria (line 11157) | type DVSFailureCriteria struct
function init (line 11169) | func init() {
type DVSFeatureCapability (line 11173) | type DVSFeatureCapability struct
function init (line 11187) | func init() {
type DVSHealthCheckCapability (line 11191) | type DVSHealthCheckCapability struct
function init (line 11195) | func init() {
type DVSHealthCheckConfig (line 11199) | type DVSHealthCheckConfig struct
function init (line 11206) | func init() {
type DVSHostLocalPortInfo (line 11210) | type DVSHostLocalPortInfo struct
function init (line 11219) | func init() {
type DVSManagerDvsConfigTarget (line 11223) | type DVSManagerDvsConfigTarget struct
function init (line 11230) | func init() {
type DVSManagerExportEntityRequestType (line 11234) | type DVSManagerExportEntityRequestType struct
function init (line 11239) | func init() {
type DVSManagerExportEntity_Task (line 11243) | type DVSManagerExportEntity_Task
function init (line 11245) | func init() {
type DVSManagerExportEntity_TaskResponse (line 11249) | type DVSManagerExportEntity_TaskResponse struct
type DVSManagerImportEntityRequestType (line 11253) | type DVSManagerImportEntityRequestType struct
function init (line 11259) | func init() {
type DVSManagerImportEntity_Task (line 11263) | type DVSManagerImportEntity_Task
function init (line 11265) | func init() {
type DVSManagerImportEntity_TaskResponse (line 11269) | type DVSManagerImportEntity_TaskResponse struct
type DVSManagerLookupDvPortGroup (line 11273) | type DVSManagerLookupDvPortGroup
function init (line 11275) | func init() {
type DVSManagerLookupDvPortGroupRequestType (line 11279) | type DVSManagerLookupDvPortGroupRequestType struct
function init (line 11285) | func init() {
type DVSManagerLookupDvPortGroupResponse (line 11289) | type DVSManagerLookupDvPortGroupResponse struct
type DVSNameArrayUplinkPortPolicy (line 11293) | type DVSNameArrayUplinkPortPolicy struct
function init (line 11299) | func init() {
type DVSNetworkResourceManagementCapability (line 11303) | type DVSNetworkResourceManagementCapability struct
function init (line 11313) | func init() {
type DVSNetworkResourcePool (line 11317) | type DVSNetworkResourcePool struct
function init (line 11327) | func init() {
type DVSNetworkResourcePoolAllocationInfo (line 11331) | type DVSNetworkResourcePoolAllocationInfo struct
function init (line 11339) | func init() {
type DVSNetworkResourcePoolConfigSpec (line 11343) | type DVSNetworkResourcePoolConfigSpec struct
function init (line 11353) | func init() {
type DVSPolicy (line 11357) | type DVSPolicy struct
function init (line 11365) | func init() {
type DVSRollbackCapability (line 11369) | type DVSRollbackCapability struct
function init (line 11375) | func init() {
type DVSRollbackRequestType (line 11379) | type DVSRollbackRequestType struct
function init (line 11384) | func init() {
type DVSRollback_Task (line 11388) | type DVSRollback_Task
function init (line 11390) | func init() {
type DVSRollback_TaskResponse (line 11394) | type DVSRollback_TaskResponse struct
type DVSRuntimeInfo (line 11398) | type DVSRuntimeInfo struct
function init (line 11405) | func init() {
type DVSSecurityPolicy (line 11409) | type DVSSecurityPolicy struct
function init (line 11417) | func init() {
type DVSSelection (line 11421) | type DVSSelection struct
function init (line 11427) | func init() {
type DVSSummary (line 11431) | type DVSSummary struct
function init (line 11447) | func init() {
type DVSTrafficShapingPolicy (line 11451) | type DVSTrafficShapingPolicy struct
function init (line 11460) | func init() {
type DVSUplinkPortPolicy (line 11464) | type DVSUplinkPortPolicy struct
function init (line 11468) | func init() {
type DVSVendorSpecificConfig (line 11472) | type DVSVendorSpecificConfig struct
function init (line 11478) | func init() {
type DVSVmVnicNetworkResourcePool (line 11482) | type DVSVmVnicNetworkResourcePool struct
function init (line 11492) | func init() {
type DailyTaskScheduler (line 11496) | type DailyTaskScheduler struct
function init (line 11502) | func init() {
type DasAdmissionControlDisabledEvent (line 11506) | type DasAdmissionControlDisabledEvent struct
function init (line 11510) | func init() {
type DasAdmissionControlEnabledEvent (line 11514) | type DasAdmissionControlEnabledEvent struct
function init (line 11518) | func init() {
type DasAgentFoundEvent (line 11522) | type DasAgentFoundEvent struct
function init (line 11526) | func init() {
type DasAgentUnavailableEvent (line 11530) | type DasAgentUnavailableEvent struct
function init (line 11534) | func init() {
type DasClusterIsolatedEvent (line 11538) | type DasClusterIsolatedEvent struct
function init (line 11542) | func init() {
type DasConfigFault (line 11546) | type DasConfigFault struct
function init (line 11554) | func init() {
type DasConfigFaultFault (line 11558) | type DasConfigFaultFault
function init (line 11560) | func init() {
type DasDisabledEvent (line 11564) | type DasDisabledEvent struct
function init (line 11568) | func init() {
type DasEnabledEvent (line 11572) | type DasEnabledEvent struct
function init (line 11576) | func init() {
type DasHeartbeatDatastoreInfo (line 11580) | type DasHeartbeatDatastoreInfo struct
function init (line 11587) | func init() {
type DasHostFailedEvent (line 11591) | type DasHostFailedEvent struct
function init (line 11597) | func init() {
type DasHostIsolatedEvent (line 11601) | type DasHostIsolatedEvent struct
function init (line 11607) | func init() {
type DatabaseError (line 11611) | type DatabaseError struct
function init (line 11615) | func init() {
type DatabaseErrorFault (line 11619) | type DatabaseErrorFault
function init (line 11621) | func init() {
type DatabaseSizeEstimate (line 11625) | type DatabaseSizeEstimate struct
function init (line 11631) | func init() {
type DatabaseSizeParam (line 11635) | type DatabaseSizeParam struct
function init (line 11642) | func init() {
type DatacenterConfigInfo (line 11646) | type DatacenterConfigInfo struct
function init (line 11652) | func init() {
type DatacenterConfigSpec (line 11656) | type DatacenterConfigSpec struct
function init (line 11662) | func init() {
type DatacenterCreatedEvent (line 11666) | type DatacenterCreatedEvent struct
function init (line 11672) | func init() {
type DatacenterEvent (line 11676) | type DatacenterEvent struct
function init (line 11680) | func init() {
type DatacenterEventArgument (line 11684) | type DatacenterEventArgument struct
function init (line 11690) | func init() {
type DatacenterMismatch (line 11694) | type DatacenterMismatch struct
function init (line 11701) | func init() {
type DatacenterMismatchArgument (line 11705) | type DatacenterMismatchArgument struct
function init (line 11712) | func init() {
type DatacenterMismatchFault (line 11716) | type DatacenterMismatchFault
function init (line 11718) | func init() {
type DatacenterRenamedEvent (line 11722) | type DatacenterRenamedEvent struct
function init (line 11729) | func init() {
type DatastoreCapability (line 11733) | type DatastoreCapability struct
function init (line 11748) | func init() {
type DatastoreCapacityIncreasedEvent (line 11752) | type DatastoreCapacityIncreasedEvent struct
function init (line 11759) | func init() {
type DatastoreDestroyedEvent (line 11763) | type DatastoreDestroyedEvent struct
function init (line 11767) | func init() {
type DatastoreDiscoveredEvent (line 11771) | type DatastoreDiscoveredEvent struct
function init (line 11777) | func init() {
type DatastoreDuplicatedEvent (line 11781) | type DatastoreDuplicatedEvent struct
function init (line 11785) | func init() {
type DatastoreEnterMaintenanceMode (line 11789) | type DatastoreEnterMaintenanceMode
function init (line 11791) | func init() {
type DatastoreEnterMaintenanceModeRequestType (line 11795) | type DatastoreEnterMaintenanceModeRequestType struct
function init (line 11799) | func init() {
type DatastoreEnterMaintenanceModeResponse (line 11803) | type DatastoreEnterMaintenanceModeResponse struct
type DatastoreEvent (line 11807) | type DatastoreEvent struct
function init (line 11813) | func init() {
type DatastoreEventArgument (line 11817) | type DatastoreEventArgument struct
function init (line 11823) | func init() {
type DatastoreExitMaintenanceModeRequestType (line 11827) | type DatastoreExitMaintenanceModeRequestType struct
function init (line 11831) | func init() {
type DatastoreExitMaintenanceMode_Task (line 11835) | type DatastoreExitMaintenanceMode_Task
function init (line 11837) | func init() {
type DatastoreExitMaintenanceMode_TaskResponse (line 11841) | type DatastoreExitMaintenanceMode_TaskResponse struct
type DatastoreFileCopiedEvent (line 11845) | type DatastoreFileCopiedEvent struct
function init (line 11852) | func init() {
type DatastoreFileDeletedEvent (line 11856) | type DatastoreFileDeletedEvent struct
function init (line 11860) | func init() {
type DatastoreFileEvent (line 11864) | type DatastoreFileEvent struct
function init (line 11872) | func init() {
type DatastoreFileMovedEvent (line 11876) | type DatastoreFileMovedEvent struct
function init (line 11883) | func init() {
type DatastoreHostMount (line 11887) | type DatastoreHostMount struct
function init (line 11894) | func init() {
type DatastoreIORMReconfiguredEvent (line 11898) | type DatastoreIORMReconfiguredEvent struct
function init (line 11902) | func init() {
type DatastoreInfo (line 11906) | type DatastoreInfo struct
function init (line 11919) | func init() {
type DatastoreMountPathDatastorePair (line 11923) | type DatastoreMountPathDatastorePair struct
function init (line 11930) | func init() {
type DatastoreNotWritableOnHost (line 11934) | type DatastoreNotWritableOnHost struct
function init (line 11940) | func init() {
type DatastoreNotWritableOnHostFault (line 11944) | type DatastoreNotWritableOnHostFault
function init (line 11946) | func init() {
type DatastoreOption (line 11950) | type DatastoreOption struct
function init (line 11956) | func init() {
type DatastorePrincipalConfigured (line 11960) | type DatastorePrincipalConfigured struct
function init (line 11966) | func init() {
type DatastoreRemovedOnHostEvent (line 11970) | type DatastoreRemovedOnHostEvent struct
function init (line 11976) | func init() {
type DatastoreRenamedEvent (line 11980) | type DatastoreRenamedEvent struct
function init (line 11987) | func init() {
type DatastoreRenamedOnHostEvent (line 11991) | type DatastoreRenamedOnHostEvent struct
function init (line 11998) | func init() {
type DatastoreSummary (line 12002) | type DatastoreSummary struct
function init (line 12017) | func init() {
type DatastoreVVolContainerFailoverPair (line 12021) | type DatastoreVVolContainerFailoverPair struct
function init (line 12029) | func init() {
type DateTimeProfile (line 12033) | type DateTimeProfile struct
function init (line 12037) | func init() {
type DecodeLicense (line 12041) | type DecodeLicense
function init (line 12043) | func init() {
type DecodeLicenseRequestType (line 12047) | type DecodeLicenseRequestType struct
function init (line 12052) | func init() {
type DecodeLicenseResponse (line 12056) | type DecodeLicenseResponse struct
type DefragmentAllDisks (line 12060) | type DefragmentAllDisks
function init (line 12062) | func init() {
type DefragmentAllDisksRequestType (line 12066) | type DefragmentAllDisksRequestType struct
function init (line 12070) | func init() {
type DefragmentAllDisksResponse (line 12074) | type DefragmentAllDisksResponse struct
type DefragmentVirtualDiskRequestType (line 12077) | type DefragmentVirtualDiskRequestType struct
function init (line 12083) | func init() {
type DefragmentVirtualDisk_Task (line 12087) | type DefragmentVirtualDisk_Task
function init (line 12089) | func init() {
type DefragmentVirtualDisk_TaskResponse (line 12093) | type DefragmentVirtualDisk_TaskResponse struct
type DeleteCustomizationSpec (line 12097) | type DeleteCustomizationSpec
function init (line 12099) | func init() {
type DeleteCustomizationSpecRequestType (line 12103) | type DeleteCustomizationSpecRequestType struct
function init (line 12108) | func init() {
type DeleteCustomizationSpecResponse (line 12112) | type DeleteCustomizationSpecResponse struct
type DeleteDatastoreFileRequestType (line 12115) | type DeleteDatastoreFileRequestType struct
function init (line 12121) | func init() {
type DeleteDatastoreFile_Task (line 12125) | type DeleteDatastoreFile_Task
function init (line 12127) | func init() {
type DeleteDatastoreFile_TaskResponse (line 12131) | type DeleteDatastoreFile_TaskResponse struct
type DeleteDirectory (line 12135) | type DeleteDirectory
function init (line 12137) | func init() {
type DeleteDirectoryInGuest (line 12141) | type DeleteDirectoryInGuest
function init (line 12143) | func init() {
type DeleteDirectoryInGuestRequestType (line 12147) | type DeleteDirectoryInGuestRequestType struct
function init (line 12155) | func init() {
type DeleteDirectoryInGuestResponse (line 12159) | type DeleteDirectoryInGuestResponse struct
type DeleteDirectoryRequestType (line 12162) | type DeleteDirectoryRequestType struct
function init (line 12168) | func init() {
type DeleteDirectoryResponse (line 12172) | type DeleteDirectoryResponse struct
type DeleteFile (line 12175) | type DeleteFile
function init (line 12177) | func init() {
type DeleteFileInGuest (line 12181) | type DeleteFileInGuest
function init (line 12183) | func init() {
type DeleteFileInGuestRequestType (line 12187) | type DeleteFileInGuestRequestType struct
function init (line 12194) | func init() {
type DeleteFileInGuestResponse (line 12198) | type DeleteFileInGuestResponse struct
type DeleteFileRequestType (line 12201) | type DeleteFileRequestType struct
function init (line 12206) | func init() {
type DeleteFileResponse (line 12210) | type DeleteFileResponse struct
type DeleteHostSpecification (line 12213) | type DeleteHostSpecification
function init (line 12215) | func init() {
type DeleteHostSpecificationRequestType (line 12219) | type DeleteHostSpecificationRequestType struct
function init (line 12224) | func init() {
type DeleteHostSpecificationResponse (line 12228) | type DeleteHostSpecificationResponse struct
type DeleteHostSubSpecification (line 12231) | type DeleteHostSubSpecification
function init (line 12233) | func init() {
type DeleteHostSubSpecificationRequestType (line 12237) | type DeleteHostSubSpecificationRequestType struct
function init (line 12243) | func init() {
type DeleteHostSubSpecificationResponse (line 12247) | type DeleteHostSubSpecificationResponse struct
type DeleteRegistryKeyInGuest (line 12250) | type DeleteRegistryKeyInGuest
function init (line 12252) | func init() {
type DeleteRegistryKeyInGuestRequestType (line 12256) | type DeleteRegistryKeyInGuestRequestType struct
function init (line 12264) | func init() {
type DeleteRegistryKeyInGuestResponse (line 12268) | type DeleteRegistryKeyInGuestResponse struct
type DeleteRegistryValueInGuest (line 12271) | type DeleteRegistryValueInGuest
function init (line 12273) | func init() {
type DeleteRegistryValueInGuestRequestType (line 12277) | type DeleteRegistryValueInGuestRequestType struct
function init (line 12284) | func init() {
type DeleteRegistryValueInGuestResponse (line 12288) | type DeleteRegistryValueInGuestResponse struct
type DeleteScsiLunState (line 12291) | type DeleteScsiLunState
function init (line 12293) | func init() {
type DeleteScsiLunStateRequestType (line 12297) | type DeleteScsiLunStateRequestType struct
function init (line 12302) | func init() {
type DeleteScsiLunStateResponse (line 12306) | type DeleteScsiLunStateResponse struct
type DeleteVStorageObjectRequestType (line 12309) | type DeleteVStorageObjectRequestType struct
function init (line 12315) | func init() {
type DeleteVStorageObject_Task (line 12319) | type DeleteVStorageObject_Task
function init (line 12321) | func init() {
type DeleteVStorageObject_TaskResponse (line 12325) | type DeleteVStorageObject_TaskResponse struct
type DeleteVffsVolumeState (line 12329) | type DeleteVffsVolumeState
function init (line 12331) | func init() {
type DeleteVffsVolumeStateRequestType (line 12335) | type DeleteVffsVolumeStateRequestType struct
function init (line 12340) | func init() {
type DeleteVffsVolumeStateResponse (line 12344) | type DeleteVffsVolumeStateResponse struct
type DeleteVirtualDiskRequestType (line 12347) | type DeleteVirtualDiskRequestType struct
function init (line 12353) | func init() {
type DeleteVirtualDisk_Task (line 12357) | type DeleteVirtualDisk_Task
function init (line 12359) | func init() {
type DeleteVirtualDisk_TaskResponse (line 12363) | type DeleteVirtualDisk_TaskResponse struct
type DeleteVmfsVolumeState (line 12367) | type DeleteVmfsVolumeState
function init (line 12369) | func init() {
type DeleteVmfsVolumeStateRequestType (line 12373) | type DeleteVmfsVolumeStateRequestType struct
function init (line 12378) | func init() {
type DeleteVmfsVolumeStateResponse (line 12382) | type DeleteVmfsVolumeStateResponse struct
type DeleteVsanObjects (line 12385) | type DeleteVsanObjects
function init (line 12387) | func init() {
type DeleteVsanObjectsRequestType (line 12391) | type DeleteVsanObjectsRequestType struct
function init (line 12397) | func init() {
type DeleteVsanObjectsResponse (line 12401) | type DeleteVsanObjectsResponse struct
type DeltaDiskFormatNotSupported (line 12405) | type DeltaDiskFormatNotSupported struct
function init (line 12412) | func init() {
type DeltaDiskFormatNotSupportedFault (line 12416) | type DeltaDiskFormatNotSupportedFault
function init (line 12418) | func init() {
type Description (line 12422) | type Description struct
function init (line 12429) | func init() {
type DeselectVnic (line 12433) | type DeselectVnic
function init (line 12435) | func init() {
type DeselectVnicForNicType (line 12439) | type DeselectVnicForNicType
function init (line 12441) | func init() {
type DeselectVnicForNicTypeRequestType (line 12445) | type DeselectVnicForNicTypeRequestType struct
function init (line 12451) | func init() {
type DeselectVnicForNicTypeResponse (line 12455) | type DeselectVnicForNicTypeResponse struct
type DeselectVnicRequestType (line 12458) | type DeselectVnicRequestType struct
function init (line 12462) | func init() {
type DeselectVnicResponse (line 12466) | type DeselectVnicResponse struct
type DestinationSwitchFull (line 12469) | type DestinationSwitchFull struct
function init (line 12473) | func init() {
type DestinationSwitchFullFault (line 12477) | type DestinationSwitchFullFault
function init (line 12479) | func init() {
type DestinationVsanDisabled (line 12483) | type DestinationVsanDisabled struct
function init (line 12489) | func init() {
type DestinationVsanDisabledFault (line 12493) | type DestinationVsanDisabledFault
function init (line 12495) | func init() {
type DestroyChildren (line 12499) | type DestroyChildren
function init (line 12501) | func init() {
type DestroyChildrenRequestType (line 12505) | type DestroyChildrenRequestType struct
function init (line 12509) | func init() {
type DestroyChildrenResponse (line 12513) | type DestroyChildrenResponse struct
type DestroyCollector (line 12516) | type DestroyCollector
function init (line 12518) | func init() {
type DestroyCollectorRequestType (line 12522) | type DestroyCollectorRequestType struct
function init (line 12526) | func init() {
type DestroyCollectorResponse (line 12530) | type DestroyCollectorResponse struct
type DestroyDatastore (line 12533) | type DestroyDatastore
function init (line 12535) | func init() {
type DestroyDatastoreRequestType (line 12539) | type DestroyDatastoreRequestType struct
function init (line 12543) | func init() {
type DestroyDatastoreResponse (line 12547) | type DestroyDatastoreResponse struct
type DestroyIpPool (line 12550) | type DestroyIpPool
function init (line 12552) | func init() {
type DestroyIpPoolRequestType (line 12556) | type DestroyIpPoolRequestType struct
function init (line 12563) | func init() {
type DestroyIpPoolResponse (line 12567) | type DestroyIpPoolResponse struct
type DestroyNetwork (line 12570) | type DestroyNetwork
function init (line 12572) | func init() {
type DestroyNetworkRequestType (line 12576) | type DestroyNetworkRequestType struct
function init (line 12580) | func init() {
type DestroyNetworkResponse (line 12584) | type DestroyNetworkResponse struct
type DestroyProfile (line 12587) | type DestroyProfile
function init (line 12589) | func init() {
type DestroyProfileRequestType (line 12593) | type DestroyProfileRequestType struct
function init (line 12597) | func init() {
type DestroyProfileResponse (line 12601) | type DestroyProfileResponse struct
type DestroyPropertyCollector (line 12604) | type DestroyPropertyCollector
function init (line 12606) | func init() {
type DestroyPropertyCollectorRequestType (line 12610) | type DestroyPropertyCollectorRequestType struct
function init (line 12614) | func init() {
type DestroyPropertyCollectorResponse (line 12618) | type DestroyPropertyCollectorResponse struct
type DestroyPropertyFilter (line 12621) | type DestroyPropertyFilter
function init (line 12623) | func init() {
type DestroyPropertyFilterRequestType (line 12627) | type DestroyPropertyFilterRequestType struct
function init (line 12631) | func init() {
type DestroyPropertyFilterResponse (line 12635) | type DestroyPropertyFilterResponse struct
type DestroyRequestType (line 12638) | type DestroyRequestType struct
function init (line 12642) | func init() {
type DestroyVffs (line 12646) | type DestroyVffs
function init (line 12648) | func init() {
type DestroyVffsRequestType (line 12652) | type DestroyVffsRequestType struct
function init (line 12657) | func init() {
type DestroyVffsResponse (line 12661) | type DestroyVffsResponse struct
type DestroyView (line 12664) | type DestroyView
function init (line 12666) | func init() {
type DestroyViewRequestType (line 12670) | type DestroyViewRequestType struct
function init (line 12674) | func init() {
type DestroyViewResponse (line 12678) | type DestroyViewResponse struct
type Destroy_Task (line 12681) | type Destroy_Task
function init (line 12683) | func init() {
type Destroy_TaskResponse (line 12687) | type Destroy_TaskResponse struct
type DetachDiskRequestType (line 12691) | type DetachDiskRequestType struct
function init (line 12696) | func init() {
type DetachDisk_Task (line 12700) | type DetachDisk_Task
function init (line 12702) | func init() {
type DetachDisk_TaskResponse (line 12706) | type DetachDisk_TaskResponse struct
type DetachScsiLun (line 12710) | type DetachScsiLun
function init (line 12712) | func init() {
type DetachScsiLunExRequestType (line 12716) | type DetachScsiLunExRequestType struct
function init (line 12721) | func init() {
type DetachScsiLunEx_Task (line 12725) | type DetachScsiLunEx_Task
function init (line 12727) | func init() {
type DetachScsiLunEx_TaskResponse (line 12731) | type DetachScsiLunEx_TaskResponse struct
type DetachScsiLunRequestType (line 12735) | type DetachScsiLunRequestType struct
function init (line 12740) | func init() {
type DetachScsiLunResponse (line 12744) | type DetachScsiLunResponse struct
type DetachTagFromVStorageObject (line 12747) | type DetachTagFromVStorageObject
function init (line 12749) | func init() {
type DetachTagFromVStorageObjectRequestType (line 12753) | type DetachTagFromVStorageObjectRequestType struct
function init (line 12760) | func init() {
type DetachTagFromVStorageObjectResponse (line 12764) | type DetachTagFromVStorageObjectResponse struct
type DeviceBackedVirtualDiskSpec (line 12767) | type DeviceBackedVirtualDiskSpec struct
function init (line 12773) | func init() {
type DeviceBackingNotSupported (line 12777) | type DeviceBackingNotSupported struct
function init (line 12783) | func init() {
type DeviceBackingNotSupportedFault (line 12787) | type DeviceBackingNotSupportedFault
function init (line 12789) | func init() {
type DeviceControllerNotSupported (line 12793) | type DeviceControllerNotSupported struct
function init (line 12799) | func init() {
type DeviceControllerNotSupportedFault (line 12803) | type DeviceControllerNotSupportedFault
function init (line 12805) | func init() {
type DeviceGroupId (line 12809) | type DeviceGroupId struct
function init (line 12815) | func init() {
type DeviceHotPlugNotSupported (line 12819) | type DeviceHotPlugNotSupported struct
function init (line 12823) | func init() {
type DeviceHotPlugNotSupportedFault (line 12827) | type DeviceHotPlugNotSupportedFault
function init (line 12829) | func init() {
type DeviceNotFound (line 12833) | type DeviceNotFound struct
function init (line 12837) | func init() {
type DeviceNotFoundFault (line 12841) | type DeviceNotFoundFault
function init (line 12843) | func init() {
type DeviceNotSupported (line 12847) | type DeviceNotSupported struct
function init (line 12854) | func init() {
type DeviceNotSupportedFault (line 12858) | type DeviceNotSupportedFault
function init (line 12860) | func init() {
type DeviceUnsupportedForVmPlatform (line 12864) | type DeviceUnsupportedForVmPlatform struct
function init (line 12868) | func init() {
type DeviceUnsupportedForVmPlatformFault (line 12872) | type DeviceUnsupportedForVmPlatformFault
function init (line 12874) | func init() {
type DeviceUnsupportedForVmVersion (line 12878) | type DeviceUnsupportedForVmVersion struct
function init (line 12885) | func init() {
type DeviceUnsupportedForVmVersionFault (line 12889) | type DeviceUnsupportedForVmVersionFault
function init (line 12891) | func init() {
type DiagnosticManagerBundleInfo (line 12895) | type DiagnosticManagerBundleInfo struct
function init (line 12902) | func init() {
type DiagnosticManagerLogDescriptor (line 12906) | type DiagnosticManagerLogDescriptor struct
function init (line 12917) | func init() {
type DiagnosticManagerLogHeader (line 12921) | type DiagnosticManagerLogHeader struct
function init (line 12929) | func init() {
type DigestNotSupported (line 12933) | type DigestNotSupported struct
function init (line 12937) | func init() {
type DigestNotSupportedFault (line 12941) | type DigestNotSupportedFault
function init (line 12943) | func init() {
type DirectoryNotEmpty (line 12947) | type DirectoryNotEmpty struct
function init (line 12951) | func init() {
type DirectoryNotEmptyFault (line 12955) | type DirectoryNotEmptyFault
function init (line 12957) | func init() {
type DisableAdminNotSupported (line 12961) | type DisableAdminNotSupported struct
function init (line 12965) | func init() {
type DisableAdminNotSupportedFault (line 12969) | type DisableAdminNotSupportedFault
function init (line 12971) | func init() {
type DisableEvcModeRequestType (line 12975) | type DisableEvcModeRequestType struct
function init (line 12979) | func init() {
type DisableEvcMode_Task (line 12983) | type DisableEvcMode_Task
function init (line 12985) | func init() {
type DisableEvcMode_TaskResponse (line 12989) | type DisableEvcMode_TaskResponse struct
type DisableFeature (line 12993) | type DisableFeature
function init (line 12995) | func init() {
type DisableFeatureRequestType (line 12999) | type DisableFeatureRequestType struct
function init (line 13005) | func init() {
type DisableFeatureResponse (line 13009) | type DisableFeatureResponse struct
type DisableHyperThreading (line 13013) | type DisableHyperThreading
function init (line 13015) | func init() {
type DisableHyperThreadingRequestType (line 13019) | type DisableHyperThreadingRequestType struct
function init (line 13023) | func init() {
type DisableHyperThreadingResponse (line 13027) | type DisableHyperThreadingResponse struct
type DisableMultipathPath (line 13030) | type DisableMultipathPath
function init (line 13032) | func init() {
type DisableMultipathPathRequestType (line 13036) | type DisableMultipathPathRequestType struct
function init (line 13041) | func init() {
type DisableMultipathPathResponse (line 13045) | type DisableMultipathPathResponse struct
type DisableRuleset (line 13048) | type DisableRuleset
function init (line 13050) | func init() {
type DisableRulesetRequestType (line 13054) | type DisableRulesetRequestType struct
function init (line 13059) | func init() {
type DisableRulesetResponse (line 13063) | type DisableRulesetResponse struct
type DisableSecondaryVMRequestType (line 13066) | type DisableSecondaryVMRequestType struct
function init (line 13071) | func init() {
type DisableSecondaryVM_Task (line 13075) | type DisableSecondaryVM_Task
function init (line 13077) | func init() {
type DisableSecondaryVM_TaskResponse (line 13081) | type DisableSecondaryVM_TaskResponse struct
type DisableSmartCardAuthentication (line 13085) | type DisableSmartCardAuthentication
function init (line 13087) | func init() {
type DisableSmartCardAuthenticationRequestType (line 13091) | type DisableSmartCardAuthenticationRequestType struct
function init (line 13095) | func init() {
type DisableSmartCardAuthenticationResponse (line 13099) | type DisableSmartCardAuthenticationResponse struct
type DisallowedChangeByService (line 13102) | type DisallowedChangeByService struct
function init (line 13109) | func init() {
type DisallowedChangeByServiceFault (line 13113) | type DisallowedChangeByServiceFault
function init (line 13115) | func init() {
type DisallowedDiskModeChange (line 13119) | type DisallowedDiskModeChange struct
function init (line 13123) | func init() {
type DisallowedDiskModeChangeFault (line 13127) | type DisallowedDiskModeChangeFault
function init (line 13129) | func init() {
type DisallowedMigrationDeviceAttached (line 13133) | type DisallowedMigrationDeviceAttached struct
function init (line 13139) | func init() {
type DisallowedMigrationDeviceAttachedFault (line 13143) | type DisallowedMigrationDeviceAttachedFault
function init (line 13145) | func init() {
type DisallowedOperationOnFailoverHost (line 13149) | type DisallowedOperationOnFailoverHost struct
function init (line 13156) | func init() {
type DisallowedOperationOnFailoverHostFault (line 13160) | type DisallowedOperationOnFailoverHostFault
function init (line 13162) | func init() {
type DisconnectHostRequestType (line 13166) | type DisconnectHostRequestType struct
function init (line 13170) | func init() {
type DisconnectHost_Task (line 13174) | type DisconnectHost_Task
function init (line 13176) | func init() {
type DisconnectHost_TaskResponse (line 13180) | type DisconnectHost_TaskResponse struct
type DisconnectedHostsBlockingEVC (line 13184) | type DisconnectedHostsBlockingEVC struct
function init (line 13188) | func init() {
type DisconnectedHostsBlockingEVCFault (line 13192) | type DisconnectedHostsBlockingEVCFault
function init (line 13194) | func init() {
type DiscoverFcoeHbas (line 13198) | type DiscoverFcoeHbas
function init (line 13200) | func init() {
type DiscoverFcoeHbasRequestType (line 13204) | type DiscoverFcoeHbasRequestType struct
function init (line 13209) | func init() {
type DiscoverFcoeHbasResponse (line 13213) | type DiscoverFcoeHbasResponse struct
type DiskChangeExtent (line 13216) | type DiskChangeExtent struct
function init (line 13223) | func init() {
type DiskChangeInfo (line 13227) | type DiskChangeInfo struct
function init (line 13235) | func init() {
type DiskHasPartitions (line 13239) | type DiskHasPartitions struct
function init (line 13243) | func init() {
type DiskHasPartitionsFault (line 13247) | type DiskHasPartitionsFault
function init (line 13249) | func init() {
type DiskIsLastRemainingNonSSD (line 13253) | type DiskIsLastRemainingNonSSD struct
function init (line 13257) | func init() {
type DiskIsLastRemainingNonSSDFault (line 13261) | type DiskIsLastRemainingNonSSDFault
function init (line 13263) | func init() {
type DiskIsNonLocal (line 13267) | type DiskIsNonLocal struct
function init (line 13271) | func init() {
type DiskIsNonLocalFault (line 13275) | type DiskIsNonLocalFault
function init (line 13277) | func init() {
type DiskIsUSB (line 13281) | type DiskIsUSB struct
function init (line 13285) | func init() {
type DiskIsUSBFault (line 13289) | type DiskIsUSBFault
function init (line 13291) | func init() {
type DiskMoveTypeNotSupported (line 13295) | type DiskMoveTypeNotSupported struct
function init (line 13299) | func init() {
type DiskMoveTypeNotSupportedFault (line 13303) | type DiskMoveTypeNotSupportedFault
function init (line 13305) | func init() {
type DiskNotSupported (line 13309) | type DiskNotSupported struct
function init (line 13315) | func init() {
type DiskNotSupportedFault (line 13319) | type DiskNotSupportedFault
function init (line 13321) | func init() {
type DiskTooSmall (line 13325) | type DiskTooSmall struct
function init (line 13329) | func init() {
type DiskTooSmallFault (line 13333) | type DiskTooSmallFault
function init (line 13335) | func init() {
type DissociateProfile (line 13339) | type DissociateProfile
function init (line 13341) | func init() {
type DissociateProfileRequestType (line 13345) | type DissociateProfileRequestType struct
function init (line 13350) | func init() {
type DissociateProfileResponse (line 13354) | type DissociateProfileResponse struct
type DistributedVirtualPort (line 13357) | type DistributedVirtualPort struct
function init (line 13374) | func init() {
type DistributedVirtualPortgroupInfo (line 13378) | type DistributedVirtualPortgroupInfo struct
function init (line 13391) | func init() {
type DistributedVirtualSwitchHostMember (line 13395) | type DistributedVirtualSwitchHostMember struct
function init (line 13406) | func init() {
type DistributedVirtualSwitchHostMemberBacking (line 13410) | type DistributedVirtualSwitchHostMemberBacking struct
function init (line 13414) | func init() {
type DistributedVirtualSwitchHostMemberConfigInfo (line 13418) | type DistributedVirtualSwitchHostMemberConfigInfo struct
function init (line 13427) | func init() {
type DistributedVirtualSwitchHostMemberConfigSpec (line 13431) | type DistributedVirtualSwitchHostMemberConfigSpec struct
function init (line 13441) | func init() {
type DistributedVirtualSwitchHostMemberPnicBacking (line 13445) | type DistributedVirtualSwitchHostMemberPnicBacking struct
function init (line 13451) | func init() {
type DistributedVirtualSwitchHostMemberPnicSpec (line 13455) | type DistributedVirtualSwitchHostMemberPnicSpec struct
function init (line 13464) | func init() {
type DistributedVirtualSwitchHostMemberRuntimeState (line 13468) | type DistributedVirtualSwitchHostMemberRuntimeState struct
function init (line 13474) | func init() {
type DistributedVirtualSwitchHostProductSpec (line 13478) | type DistributedVirtualSwitchHostProductSpec struct
function init (line 13485) | func init() {
type DistributedVirtualSwitchInfo (line 13489) | type DistributedVirtualSwitchInfo struct
function init (line 13498) | func init() {
type DistributedVirtualSwitchKeyedOpaqueBlob (line 13502) | type DistributedVirtualSwitchKeyedOpaqueBlob struct
function init (line 13509) | func init() {
type DistributedVirtualSwitchManagerCompatibilityResult (line 13513) | type DistributedVirtualSwitchManagerCompatibilityResult struct
function init (line 13520) | func init() {
type DistributedVirtualSwitchManagerDvsProductSpec (line 13524) | type DistributedVirtualSwitchManagerDvsProductSpec struct
function init (line 13531) | func init() {
type DistributedVirtualSwitchManagerHostArrayFilter (line 13535) | type DistributedVirtualSwitchManagerHostArrayFilter struct
function init (line 13541) | func init() {
type DistributedVirtualSwitchManagerHostContainer (line 13545) | type DistributedVirtualSwitchManagerHostContainer struct
function init (line 13552) | func init() {
type DistributedVirtualSwitchManagerHostContainerFilter (line 13556) | type DistributedVirtualSwitchManagerHostContainerFilter struct
function init (line 13562) | func init() {
type DistributedVirtualSwitchManagerHostDvsFilterSpec (line 13566) | type DistributedVirtualSwitchManagerHostDvsFilterSpec struct
function init (line 13572) | func init() {
type DistributedVirtualSwitchManagerHostDvsMembershipFilter (line 13576) | type DistributedVirtualSwitchManagerHostDvsMembershipFilter struct
function init (line 13582) | func init() {
type DistributedVirtualSwitchManagerImportResult (line 13586) | type DistributedVirtualSwitchManagerImportResult struct
function init (line 13594) | func init() {
type DistributedVirtualSwitchPortConnectee (line 13598) | type DistributedVirtualSwitchPortConnectee struct
function init (line 13607) | func init() {
type DistributedVirtualSwitchPortConnection (line 13611) | type DistributedVirtualSwitchPortConnection struct
function init (line 13620) | func init() {
type DistributedVirtualSwitchPortCriteria (line 13624) | type DistributedVirtualSwitchPortCriteria struct
function init (line 13637) | func init() {
type DistributedVirtualSwitchPortStatistics (line 13641) | type DistributedVirtualSwitchPortStatistics struct
function init (line 13664) | func init() {
type DistributedVirtualSwitchProductSpec (line 13668) | type DistributedVirtualSwitchProductSpec struct
function init (line 13680) | func init() {
type DoesCustomizationSpecExist (line 13684) | type DoesCustomizationSpecExist
function init (line 13686) | func init() {
type DoesCustomizationSpecExistRequestType (line 13690) | type DoesCustomizationSpecExistRequestType struct
function init (line 13695) | func init() {
type DoesCustomizationSpecExistResponse (line 13699) | type DoesCustomizationSpecExistResponse struct
type DomainNotFound (line 13703) | type DomainNotFound struct
function init (line 13709) | func init() {
type DomainNotFoundFault (line 13713) | type DomainNotFoundFault
function init (line 13715) | func init() {
type DrsDisabledEvent (line 13719) | type DrsDisabledEvent struct
function init (line 13723) | func init() {
type DrsDisabledOnVm (line 13727) | type DrsDisabledOnVm struct
function init (line 13731) | func init() {
type DrsDisabledOnVmFault (line 13735) | type DrsDisabledOnVmFault
function init (line 13737) | func init() {
type DrsEnabledEvent (line 13741) | type DrsEnabledEvent struct
function init (line 13747) | func init() {
type DrsEnteredStandbyModeEvent (line 13751) | type DrsEnteredStandbyModeEvent struct
function init (line 13755) | func init() {
type DrsEnteringStandbyModeEvent (line 13759) | type DrsEnteringStandbyModeEvent struct
function init (line 13763) | func init() {
type DrsExitStandbyModeFailedEvent (line 13767) | type DrsExitStandbyModeFailedEvent struct
function init (line 13771) | func init() {
type DrsExitedStandbyModeEvent (line 13775) | type DrsExitedStandbyModeEvent struct
function init (line 13779) | func init() {
type DrsExitingStandbyModeEvent (line 13783) | type DrsExitingStandbyModeEvent struct
function init (line 13787) | func init() {
type DrsInvocationFailedEvent (line 13791) | type DrsInvocationFailedEvent struct
function init (line 13795) | func init() {
type DrsRecoveredFromFailureEvent (line 13799) | type DrsRecoveredFromFailureEvent struct
function init (line 13803) | func init() {
type DrsResourceConfigureFailedEvent (line 13807) | type DrsResourceConfigureFailedEvent struct
function init (line 13813) | func init() {
type DrsResourceConfigureSyncedEvent (line 13817) | type DrsResourceConfigureSyncedEvent struct
function init (line 13821) | func init() {
type DrsRuleComplianceEvent (line 13825) | type DrsRuleComplianceEvent struct
function init (line 13829) | func init() {
type DrsRuleViolationEvent (line 13833) | type DrsRuleViolationEvent struct
function init (line 13837) | func init() {
type DrsSoftRuleViolationEvent (line 13841) | type DrsSoftRuleViolationEvent struct
function init (line 13845) | func init() {
type DrsVmMigratedEvent (line 13849) | type DrsVmMigratedEvent struct
function init (line 13853) | func init() {
type DrsVmPoweredOnEvent (line 13857) | type DrsVmPoweredOnEvent struct
function init (line 13861) | func init() {
type DrsVmotionIncompatibleFault (line 13865) | type DrsVmotionIncompatibleFault struct
function init (line 13871) | func init() {
type DrsVmotionIncompatibleFaultFault (line 13875) | type DrsVmotionIncompatibleFaultFault
function init (line 13877) | func init() {
type DuplicateCustomizationSpec (line 13881) | type DuplicateCustomizationSpec
function init (line 13883) | func init() {
type DuplicateCustomizationSpecRequestType (line 13887) | type DuplicateCustomizationSpecRequestType struct
function init (line 13893) | func init() {
type DuplicateCustomizationSpecResponse (line 13897) | type DuplicateCustomizationSpecResponse struct
type DuplicateDisks (line 13900) | type DuplicateDisks struct
function init (line 13904) | func init() {
type DuplicateDisksFault (line 13908) | type DuplicateDisksFault
function init (line 13910) | func init() {
type DuplicateIpDetectedEvent (line 13914) | type DuplicateIpDetectedEvent struct
function init (line 13921) | func init() {
type DuplicateName (line 13925) | type DuplicateName struct
function init (line 13932) | func init() {
type DuplicateNameFault (line 13936) | type DuplicateNameFault
function init (line 13938) | func init() {
type DuplicateVsanNetworkInterface (line 13942) | type DuplicateVsanNetworkInterface struct
function init (line 13948) | func init() {
type DuplicateVsanNetworkInterfaceFault (line 13952) | type DuplicateVsanNetworkInterfaceFault
function init (line 13954) | func init() {
type DvpgImportEvent (line 13958) | type DvpgImportEvent struct
function init (line 13964) | func init() {
type DvpgRestoreEvent (line 13968) | type DvpgRestoreEvent struct
function init (line 13972) | func init() {
type DvsAcceptNetworkRuleAction (line 13976) | type DvsAcceptNetworkRuleAction struct
function init (line 13980) | func init() {
type DvsApplyOperationFault (line 13984) | type DvsApplyOperationFault struct
function init (line 13990) | func init() {
type DvsApplyOperationFaultFault (line 13994) | type DvsApplyOperationFaultFault
function init (line 13996) | func init() {
type DvsApplyOperationFaultFaultOnObject (line 14000) | type DvsApplyOperationFaultFaultOnObject struct
function init (line 14008) | func init() {
type DvsCopyNetworkRuleAction (line 14012) | type DvsCopyNetworkRuleAction struct
function init (line 14016) | func init() {
type DvsCreatedEvent (line 14020) | type DvsCreatedEvent struct
function init (line 14026) | func init() {
type DvsDestroyedEvent (line 14030) | type DvsDestroyedEvent struct
function init (line 14034) | func init() {
type DvsDropNetworkRuleAction (line 14038) | type DvsDropNetworkRuleAction struct
function init (line 14042) | func init() {
type DvsEvent (line 14046) | type DvsEvent struct
function init (line 14050) | func init() {
type DvsEventArgument (line 14054) | type DvsEventArgument struct
function init (line 14060) | func init() {
type DvsFault (line 14064) | type DvsFault struct
function init (line 14068) | func init() {
type DvsFaultFault (line 14072) | type DvsFaultFault
function init (line 14074) | func init() {
type DvsFilterConfig (line 14078) | type DvsFilterConfig struct
function init (line 14088) | func init() {
type DvsFilterConfigSpec (line 14092) | type DvsFilterConfigSpec struct
function init (line 14098) | func init() {
type DvsFilterParameter (line 14102) | type DvsFilterParameter struct
function init (line 14108) | func init() {
type DvsFilterPolicy (line 14112) | type DvsFilterPolicy struct
function init (line 14118) | func init() {
type DvsGreEncapNetworkRuleAction (line 14122) | type DvsGreEncapNetworkRuleAction struct
function init (line 14128) | func init() {
type DvsHealthStatusChangeEvent (line 14132) | type DvsHealthStatusChangeEvent struct
function init (line 14139) | func init() {
type DvsHostBackInSyncEvent (line 14143) | type DvsHostBackInSyncEvent struct
function init (line 14149) | func init() {
type DvsHostInfrastructureTrafficResource (line 14153) | type DvsHostInfrastructureTrafficResource struct
function init (line 14161) | func init() {
type DvsHostInfrastructureTrafficResourceAllocation (line 14165) | type DvsHostInfrastructureTrafficResourceAllocation struct
function init (line 14173) | func init() {
type DvsHostJoinedEvent (line 14177) | type DvsHostJoinedEvent struct
function init (line 14183) | func init() {
type DvsHostLeftEvent (line 14187) | type DvsHostLeftEvent struct
function init (line 14193) | func init() {
type DvsHostStatusUpdated (line 14197) | type DvsHostStatusUpdated struct
function init (line 14207) | func init() {
type DvsHostVNicProfile (line 14211) | type DvsHostVNicProfile struct
function init (line 14215) | func init() {
type DvsHostWentOutOfSyncEvent (line 14219) | type DvsHostWentOutOfSyncEvent struct
function init (line 14225) | func init() {
type DvsImportEvent (line 14229) | type DvsImportEvent struct
function init (line 14235) | func init() {
type DvsIpNetworkRuleQualifier (line 14239) | type DvsIpNetworkRuleQualifier struct
function init (line 14250) | func init() {
type DvsIpPort (line 14254) | type DvsIpPort struct
function init (line 14258) | func init() {
type DvsIpPortRange (line 14262) | type DvsIpPortRange struct
function init (line 14269) | func init() {
type DvsLogNetworkRuleAction (line 14273) | type DvsLogNetworkRuleAction struct
function init (line 14277) | func init() {
type DvsMacNetworkRuleQualifier (line 14281) | type DvsMacNetworkRuleQualifier struct
function init (line 14290) | func init() {
type DvsMacRewriteNetworkRuleAction (line 14294) | type DvsMacRewriteNetworkRuleAction struct
function init (line 14300) | func init() {
type DvsMergedEvent (line 14304) | type DvsMergedEvent struct
function init (line 14311) | func init() {
type DvsNetworkRuleAction (line 14315) | type DvsNetworkRuleAction struct
function init (line 14319) | func init() {
type DvsNetworkRuleQualifier (line 14323) | type DvsNetworkRuleQualifier struct
function init (line 14329) | func init() {
type DvsNotAuthorized (line 14333) | type DvsNotAuthorized struct
function init (line 14340) | func init() {
type DvsNotAuthorizedFault (line 14344) | type DvsNotAuthorizedFault
function init (line 14346) | func init() {
type DvsOperationBulkFault (line 14350) | type DvsOperationBulkFault struct
function init (line 14356) | func init() {
type DvsOperationBulkFaultFault (line 14360) | type DvsOperationBulkFaultFault
function init (line 14362) | func init() {
type DvsOperationBulkFaultFaultOnHost (line 14366) | type DvsOperationBulkFaultFaultOnHost struct
function init (line 14373) | func init() {
type DvsOutOfSyncHostArgument (line 14377) | type DvsOutOfSyncHostArgument struct
function init (line 14384) | func init() {
type DvsPortBlockedEvent (line 14388) | type DvsPortBlockedEvent struct
function init (line 14397) | func init() {
type DvsPortConnectedEvent (line 14401) | type DvsPortConnectedEvent struct
function init (line 14408) | func init() {
type DvsPortCreatedEvent (line 14412) | type DvsPortCreatedEvent struct
function init (line 14418) | func init() {
type DvsPortDeletedEvent (line 14422) | type DvsPortDeletedEvent struct
function init (line 14428) | func init() {
type DvsPortDisconnectedEvent (line 14432) | type DvsPortDisconnectedEvent struct
function init (line 14439) | func init() {
type DvsPortEnteredPassthruEvent (line 14443) | type DvsPortEnteredPassthruEvent struct
function init (line 14450) | func init() {
type DvsPortExitedPassthruEvent (line 14454) | type DvsPortExitedPassthruEvent struct
function init (line 14461) | func init() {
type DvsPortJoinPortgroupEvent (line 14465) | type DvsPortJoinPortgroupEvent struct
function init (line 14473) | func init() {
type DvsPortLeavePortgroupEvent (line 14477) | type DvsPortLeavePortgroupEvent struct
function init (line 14485) | func init() {
type DvsPortLinkDownEvent (line 14489) | type DvsPortLinkDownEvent struct
function init (line 14496) | func init() {
type DvsPortLinkUpEvent (line 14500) | type DvsPortLinkUpEvent struct
function init (line 14507) | func init() {
type DvsPortReconfiguredEvent (line 14511) | type DvsPortReconfiguredEvent struct
function init (line 14518) | func init() {
type DvsPortRuntimeChangeEvent (line 14522) | type DvsPortRuntimeChangeEvent struct
function init (line 14529) | func init() {
type DvsPortUnblockedEvent (line 14533) | type DvsPortUnblockedEvent struct
function init (line 14541) | func init() {
type DvsPortVendorSpecificStateChangeEvent (line 14545) | type DvsPortVendorSpecificStateChangeEvent struct
function init (line 14551) | func init() {
type DvsProfile (line 14555) | type DvsProfile struct
function init (line 14563) | func init() {
type DvsPuntNetworkRuleAction (line 14567) | type DvsPuntNetworkRuleAction struct
function init (line 14571) | func init() {
type DvsRateLimitNetworkRuleAction (line 14575) | type DvsRateLimitNetworkRuleAction struct
function init (line 14581) | func init() {
type DvsReconfigureVmVnicNetworkResourcePoolRequestType (line 14585) | type DvsReconfigureVmVnicNetworkResourcePoolRequestType struct
function init (line 14590) | func init() {
type DvsReconfigureVmVnicNetworkResourcePool_Task (line 14594) | type DvsReconfigureVmVnicNetworkResourcePool_Task
function init (line 14596) | func init() {
type DvsReconfigureVmVnicNetworkResourcePool_TaskResponse (line 14600) | type DvsReconfigureVmVnicNetworkResourcePool_TaskResponse struct
type DvsReconfiguredEvent (line 14604) | type DvsReconfiguredEvent struct
function init (line 14611) | func init() {
type DvsRenamedEvent (line 14615) | type DvsRenamedEvent struct
function init (line 14622) | func init() {
type DvsResourceRuntimeInfo (line 14626) | type DvsResourceRuntimeInfo struct
function init (line 14636) | func init() {
type DvsRestoreEvent (line 14640) | type DvsRestoreEvent struct
function init (line 14644) | func init() {
type DvsScopeViolated (line 14648) | type DvsScopeViolated struct
function init (line 14655) | func init() {
type DvsScopeViolatedFault (line 14659) | type DvsScopeViolatedFault
function init (line 14661) | func init() {
type DvsServiceConsoleVNicProfile (line 14665) | type DvsServiceConsoleVNicProfile struct
function init (line 14669) | func init() {
type DvsSingleIpPort (line 14673) | type DvsSingleIpPort struct
function init (line 14679) | func init() {
type DvsSystemTrafficNetworkRuleQualifier (line 14683) | type DvsSystemTrafficNetworkRuleQualifier struct
function init (line 14689) | func init() {
type DvsTrafficFilterConfig (line 14693) | type DvsTrafficFilterConfig struct
function init (line 14699) | func init() {
type DvsTrafficFilterConfigSpec (line 14703) | type DvsTrafficFilterConfigSpec struct
function init (line 14709) | func init() {
type DvsTrafficRule (line 14713) | type DvsTrafficRule struct
function init (line 14724) | func init() {
type DvsTrafficRuleset (line 14728) | type DvsTrafficRuleset struct
function init (line 14737) | func init() {
type DvsUpdateTagNetworkRuleAction (line 14741) | type DvsUpdateTagNetworkRuleAction struct
function init (line 14748) | func init() {
type DvsUpgradeAvailableEvent (line 14752) | type DvsUpgradeAvailableEvent struct
function init (line 14758) | func init() {
type DvsUpgradeInProgressEvent (line 14762) | type DvsUpgradeInProgressEvent struct
function init (line 14768) | func init() {
type DvsUpgradeRejectedEvent (line 14772) | type DvsUpgradeRejectedEvent struct
function init (line 14778) | func init() {
type DvsUpgradedEvent (line 14782) | type DvsUpgradedEvent struct
function init (line 14788) | func init() {
type DvsVNicProfile (line 14792) | type DvsVNicProfile struct
function init (line 14799) | func init() {
type DvsVmVnicNetworkResourcePoolRuntimeInfo (line 14803) | type DvsVmVnicNetworkResourcePoolRuntimeInfo struct
function init (line 14815) | func init() {
type DvsVmVnicResourceAllocation (line 14819) | type DvsVmVnicResourceAllocation struct
function init (line 14825) | func init() {
type DvsVmVnicResourcePoolConfigSpec (line 14829) | type DvsVmVnicResourcePoolConfigSpec struct
function init (line 14840) | func init() {
type DvsVnicAllocatedResource (line 14844) | type DvsVnicAllocatedResource struct
function init (line 14852) | func init() {
type DynamicArray (line 14856) | type DynamicArray struct
function init (line 14860) | func init() {
type DynamicData (line 14864) | type DynamicData struct
function init (line 14867) | func init() {
type DynamicProperty (line 14871) | type DynamicProperty struct
function init (line 14876) | func init() {
type EVCAdmissionFailed (line 14880) | type EVCAdmissionFailed struct
function init (line 14886) | func init() {
type EVCAdmissionFailedCPUFeaturesForMode (line 14890) | type EVCAdmissionFailedCPUFeaturesForMode struct
function init (line 14896) | func init() {
type EVCAdmissionFailedCPUFeaturesForModeFault (line 14900) | type EVCAdmissionFailedCPUFeaturesForModeFault
function init (line 14902) | func init() {
type EVCAdmissionFailedCPUModel (line 14906) | type EVCAdmissionFailedCPUModel struct
function init (line 14910) | func init() {
type EVCAdmissionFailedCPUModelFault (line 14914) | type EVCAdmissionFailedCPUModelFault
function init (line 14916) | func init() {
type EVCAdmissionFailedCPUModelForMode (line 14920) | type EVCAdmissionFailedCPUModelForMode struct
function init (line 14926) | func init() {
type EVCAdmissionFailedCPUModelForModeFault (line 14930) | type EVCAdmissionFailedCPUModelForModeFault
function init (line 14932) | func init() {
type EVCAdmissionFailedCPUVendor (line 14936) | type EVCAdmissionFailedCPUVendor struct
function init (line 14943) | func init() {
type EVCAdmissionFailedCPUVendorFault (line 14947) | type EVCAdmissionFailedCPUVendorFault
function init (line 14949) | func init() {
type EVCAdmissionFailedCPUVendorUnknown (line 14953) | type EVCAdmissionFailedCPUVendorUnknown struct
function init (line 14957) | func init() {
type EVCAdmissionFailedCPUVendorUnknownFault (line 14961) | type EVCAdmissionFailedCPUVendorUnknownFault
function init (line 14963) | func init() {
type EVCAdmissionFailedFault (line 14967) | type EVCAdmissionFailedFault
function init (line 14969) | func init() {
type EVCAdmissionFailedHostDisconnected (line 14973) | type EVCAdmissionFailedHostDisconnected struct
function init (line 14977) | func init() {
type EVCAdmissionFailedHostDisconnectedFault (line 14981) | type EVCAdmissionFailedHostDisconnectedFault
function init (line 14983) | func init() {
type EVCAdmissionFailedHostSoftware (line 14987) | type EVCAdmissionFailedHostSoftware struct
function init (line 14991) | func init() {
type EVCAdmissionFailedHostSoftwareFault (line 14995) | type EVCAdmissionFailedHostSoftwareFault
function init (line 14997) | func init() {
type EVCAdmissionFailedHostSoftwareForMode (line 15001) | type EVCAdmissionFailedHostSoftwareForMode struct
function init (line 15005) | func init() {
type EVCAdmissionFailedHostSoftwareForModeFault (line 15009) | type EVCAdmissionFailedHostSoftwareForModeFault
function init (line 15011) | func init() {
type EVCAdmissionFailedVmActive (line 15015) | type EVCAdmissionFailedVmActive struct
function init (line 15019) | func init() {
type EVCAdmissionFailedVmActiveFault (line 15023) | type EVCAdmissionFailedVmActiveFault
function init (line 15025) | func init() {
type EVCConfigFault (line 15029) | type EVCConfigFault struct
function init (line 15035) | func init() {
type EVCConfigFaultFault (line 15039) | type EVCConfigFaultFault
function init (line 15041) | func init() {
type EVCMode (line 15045) | type EVCMode struct
function init (line 15057) | func init() {
type EVCModeIllegalByVendor (line 15061) | type EVCModeIllegalByVendor struct
function init (line 15068) | func init() {
type EVCModeIllegalByVendorFault (line 15072) | type EVCModeIllegalByVendorFault
function init (line 15074) | func init() {
type EVCModeUnsupportedByHosts (line 15078) | type EVCModeUnsupportedByHosts struct
function init (line 15086) | func init() {
type EVCModeUnsupportedByHostsFault (line 15090) | type EVCModeUnsupportedByHostsFault
function init (line 15092) | func init() {
type EVCUnsupportedByHostHardware (line 15096) | type EVCUnsupportedByHostHardware struct
function init (line 15103) | func init() {
type EVCUnsupportedByHostHardwareFault (line 15107) | type EVCUnsupportedByHostHardwareFault
function init (line 15109) | func init() {
type EVCUnsupportedByHostSoftware (line 15113) | type EVCUnsupportedByHostSoftware struct
function init (line 15120) | func init() {
type EVCUnsupportedByHostSoftwareFault (line 15124) | type EVCUnsupportedByHostSoftwareFault
function init (line 15126) | func init() {
type EagerZeroVirtualDiskRequestType (line 15130) | type EagerZeroVirtualDiskRequestType struct
function init (line 15136) | func init() {
type EagerZeroVirtualDisk_Task (line 15140) | type EagerZeroVirtualDisk_Task
function init (line 15142) | func init() {
type EagerZeroVirtualDisk_TaskResponse (line 15146) | type EagerZeroVirtualDisk_TaskResponse struct
type EightHostLimitViolated (line 15150) | type EightHostLimitViolated struct
function init (line 15154) | func init() {
type EightHostLimitViolatedFault (line 15158) | type EightHostLimitViolatedFault
function init (line 15160) | func init() {
type ElementDescription (line 15164) | type ElementDescription struct
function init (line 15170) | func init() {
type EnableAlarmActions (line 15174) | type EnableAlarmActions
function init (line 15176) | func init() {
type EnableAlarmActionsRequestType (line 15180) | type EnableAlarmActionsRequestType struct
function init (line 15186) | func init() {
type EnableAlarmActionsResponse (line 15190) | type EnableAlarmActionsResponse struct
type EnableCrypto (line 15193) | type EnableCrypto
function init (line 15195) | func init() {
type EnableCryptoRequestType (line 15199) | type EnableCryptoRequestType struct
function init (line 15204) | func init() {
type EnableCryptoResponse (line 15208) | type EnableCryptoResponse struct
type EnableFeature (line 15211) | type EnableFeature
function init (line 15213) | func init() {
type EnableFeatureRequestType (line 15217) | type EnableFeatureRequestType struct
function init (line 15223) | func init() {
type EnableFeatureResponse (line 15227) | type EnableFeatureResponse struct
type EnableHyperThreading (line 15231) | type EnableHyperThreading
function init (line 15233) | func init() {
type EnableHyperThreadingRequestType (line 15237) | type EnableHyperThreadingRequestType struct
function init (line 15241) | func init() {
type EnableHyperThreadingResponse (line 15245) | type EnableHyperThreadingResponse struct
type EnableMultipathPath (line 15248) | type EnableMultipathPath
function init (line 15250) | func init() {
type EnableMultipathPathRequestType (line 15254) | type EnableMultipathPathRequestType struct
function init (line 15259) | func init() {
type EnableMultipathPathResponse (line 15263) | type EnableMultipathPathResponse struct
type EnableNetworkResourceManagement (line 15266) | type EnableNetworkResourceManagement
function init (line 15268) | func init() {
type EnableNetworkResourceManagementRequestType (line 15272) | type EnableNetworkResourceManagementRequestType struct
function init (line 15277) | func init() {
type EnableNetworkResourceManagementResponse (line 15281) | type EnableNetworkResourceManagementResponse struct
type EnableRuleset (line 15284) | type EnableRuleset
function init (line 15286) | func init() {
type EnableRulesetRequestType (line 15290) | type EnableRulesetRequestType struct
function init (line 15295) | func init() {
type EnableRulesetResponse (line 15299) | type EnableRulesetResponse struct
type EnableSecondaryVMRequestType (line 15302) | type EnableSecondaryVMRequestType struct
function init (line 15308) | func init() {
type EnableSecondaryVM_Task (line 15312) | type EnableSecondaryVM_Task
function init (line 15314) | func init() {
type EnableSecondaryVM_TaskResponse (line 15318) | type EnableSecondaryVM_TaskResponse struct
type EnableSmartCardAuthentication (line 15322) | type EnableSmartCardAuthentication
function init (line 15324) | func init() {
type EnableSmartCardAuthenticationRequestType (line 15328) | type EnableSmartCardAuthenticationRequestType struct
function init (line 15332) | func init() {
type EnableSmartCardAuthenticationResponse (line 15336) | type EnableSmartCardAuthenticationResponse struct
type EnterLockdownMode (line 15339) | type EnterLockdownMode
function init (line 15341) | func init() {
type EnterLockdownModeRequestType (line 15345) | type EnterLockdownModeRequestType struct
function init (line 15349) | func init() {
type EnterLockdownModeResponse (line 15353) | type EnterLockdownModeResponse struct
type EnterMaintenanceModeRequestType (line 15356) | type EnterMaintenanceModeRequestType struct
function init (line 15363) | func init() {
type EnterMaintenanceMode_Task (line 15367) | type EnterMaintenanceMode_Task
function init (line 15369) | func init() {
type EnterMaintenanceMode_TaskResponse (line 15373) | type EnterMaintenanceMode_TaskResponse struct
type EnteredMaintenanceModeEvent (line 15377) | type EnteredMaintenanceModeEvent struct
function init (line 15381) | func init() {
type EnteredStandbyModeEvent (line 15385) | type EnteredStandbyModeEvent struct
function init (line 15389) | func init() {
type EnteringMaintenanceModeEvent (line 15393) | type EnteringMaintenanceModeEvent struct
function init (line 15397) | func init() {
type EnteringStandbyModeEvent (line 15401) | type EnteringStandbyModeEvent struct
function init (line 15405) | func init() {
type EntityBackup (line 15409) | type EntityBackup struct
function init (line 15413) | func init() {
type EntityBackupConfig (line 15417) | type EntityBackupConfig struct
function init (line 15428) | func init() {
type EntityEventArgument (line 15432) | type EntityEventArgument struct
function init (line 15438) | func init() {
type EntityPrivilege (line 15442) | type EntityPrivilege struct
function init (line 15449) | func init() {
type EnumDescription (line 15453) | type EnumDescription struct
function init (line 15460) | func init() {
type EnvironmentBrowserConfigOptionQuerySpec (line 15464) | type EnvironmentBrowserConfigOptionQuerySpec struct
function init (line 15472) | func init() {
type ErrorUpgradeEvent (line 15476) | type ErrorUpgradeEvent struct
function init (line 15480) | func init() {
type EstimateDatabaseSize (line 15484) | type EstimateDatabaseSize
function init (line 15486) | func init() {
type EstimateDatabaseSizeRequestType (line 15490) | type EstimateDatabaseSizeRequestType struct
function init (line 15495) | func init() {
type EstimateDatabaseSizeResponse (line 15499) | type EstimateDatabaseSizeResponse struct
type EstimateStorageForConsolidateSnapshotsRequestType (line 15503) | type EstimateStorageForConsolidateSnapshotsRequestType struct
function init (line 15507) | func init() {
type EstimateStorageForConsolidateSnapshots_Task (line 15511) | type EstimateStorageForConsolidateSnapshots_Task
function init (line 15513) | func init() {
type EstimateStorageForConsolidateSnapshots_TaskResponse (line 15517) | type EstimateStorageForConsolidateSnapshots_TaskResponse struct
type EsxAgentHostManagerUpdateConfig (line 15521) | type EsxAgentHostManagerUpdateConfig
function init (line 15523) | func init() {
type EsxAgentHostManagerUpdateConfigRequestType (line 15527) | type EsxAgentHostManagerUpdateConfigRequestType struct
function init (line 15532) | func init() {
type EsxAgentHostManagerUpdateConfigResponse (line 15536) | type EsxAgentHostManagerUpdateConfigResponse struct
type EvacuateVsanNodeRequestType (line 15539) | type EvacuateVsanNodeRequestType struct
function init (line 15545) | func init() {
type EvacuateVsanNode_Task (line 15549) | type EvacuateVsanNode_Task
function init (line 15551) | func init() {
type EvacuateVsanNode_TaskResponse (line 15555) | type EvacuateVsanNode_TaskResponse struct
type EvaluationLicenseSource (line 15559) | type EvaluationLicenseSource struct
function init (line 15565) | func init() {
type EvcManager (line 15569) | type EvcManager
function init (line 15571) | func init() {
type EvcManagerRequestType (line 15575) | type EvcManagerRequestType struct
function init (line 15579) | func init() {
type EvcManagerResponse (line 15583) | type EvcManagerResponse struct
type Event (line 15587) | type Event struct
function init (line 15605) | func init() {
type EventAlarmExpression (line 15609) | type EventAlarmExpression struct
function init (line 15619) | func init() {
type EventAlarmExpressionComparison (line 15623) | type EventAlarmExpressionComparison struct
function init (line 15631) | func init() {
type EventArgDesc (line 15635) | type EventArgDesc struct
function init (line 15643) | func init() {
type EventArgument (line 15647) | type EventArgument struct
function init (line 15651) | func init() {
type EventDescription (line 15655) | type EventDescription struct
function init (line 15663) | func init() {
type EventDescriptionEventDetail (line 15667) | type EventDescriptionEventDetail struct
function init (line 15681) | func init() {
type EventEx (line 15685) | type EventEx struct
function init (line 15698) | func init() {
type EventFilterSpec (line 15702) | type EventFilterSpec struct
function init (line 15719) | func init() {
type EventFilterSpecByEntity (line 15723) | type EventFilterSpecByEntity struct
function init (line 15730) | func init() {
type EventFilterSpecByTime (line 15734) | type EventFilterSpecByTime struct
function init (line 15741) | func init() {
type EventFilterSpecByUsername (line 15745) | type EventFilterSpecByUsername struct
function init (line 15752) | func init() {
type ExecuteHostProfile (line 15756) | type ExecuteHostProfile
function init (line 15758) | func init() {
type ExecuteHostProfileRequestType (line 15762) | type ExecuteHostProfileRequestType struct
function init (line 15768) | func init() {
type ExecuteHostProfileResponse (line 15772) | type ExecuteHostProfileResponse struct
type ExecuteSimpleCommand (line 15776) | type ExecuteSimpleCommand
function init (line 15778) | func init() {
type ExecuteSimpleCommandRequestType (line 15782) | type ExecuteSimpleCommandRequestType struct
function init (line 15787) | func init() {
type ExecuteSimpleCommandResponse (line 15791) | type ExecuteSimpleCommandResponse struct
type ExitLockdownMode (line 15795) | type ExitLockdownMode
function init (line 15797) | func init() {
type ExitLockdownModeRequestType (line 15801) | type ExitLockdownModeRequestType struct
function init (line 15805) | func init() {
type ExitLockdownModeResponse (line 15809) | type ExitLockdownModeResponse struct
type ExitMaintenanceModeEvent (line 15812) | type ExitMaintenanceModeEvent struct
function init (line 15816) | func init() {
type ExitMaintenanceModeRequestType (line 15820) | type ExitMaintenanceModeRequestType struct
function init (line 15825) | func init() {
type ExitMaintenanceMode_Task (line 15829) | type ExitMaintenanceMode_Task
function init (line 15831) | func init() {
type ExitMaintenanceMode_TaskResponse (line 15835) | type ExitMaintenanceMode_TaskResponse struct
type ExitStandbyModeFailedEvent (line 15839) | type ExitStandbyModeFailedEvent struct
function init (line 15843) | func init() {
type ExitedStandbyModeEvent (line 15847) | type ExitedStandbyModeEvent struct
function init (line 15851) | func init() {
type ExitingStandbyModeEvent (line 15855) | type ExitingStandbyModeEvent struct
function init (line 15859) | func init() {
type ExpandVmfsDatastore (line 15863) | type ExpandVmfsDatastore
function init (line 15865) | func init() {
type ExpandVmfsDatastoreRequestType (line 15869) | type ExpandVmfsDatastoreRequestType struct
function init (line 15875) | func init() {
type ExpandVmfsDatastoreResponse (line 15879) | type ExpandVmfsDatastoreResponse struct
type ExpandVmfsExtent (line 15883) | type ExpandVmfsExtent
function init (line 15885) | func init() {
type ExpandVmfsExtentRequestType (line 15889) | type ExpandVmfsExtentRequestType struct
function init (line 15895) | func init() {
type ExpandVmfsExtentResponse (line 15899) | type ExpandVmfsExtentResponse struct
type ExpiredAddonLicense (line 15902) | type ExpiredAddonLicense struct
function init (line 15906) | func init() {
type ExpiredAddonLicenseFault (line 15910) | type ExpiredAddonLicenseFault
function init (line 15912) | func init() {
type ExpiredEditionLicense (line 15916) | type ExpiredEditionLicense struct
function init (line 15920) | func init() {
type ExpiredEditionLicenseFault (line 15924) | type ExpiredEditionLicenseFault
function init (line 15926) | func init() {
type ExpiredFeatureLicense (line 15930) | type ExpiredFeatureLicense struct
function init (line 15938) | func init() {
type ExpiredFeatureLicenseFault (line 15942) | type ExpiredFeatureLicenseFault
function init (line 15944) | func init() {
type ExportAnswerFileRequestType (line 15948) | type ExportAnswerFileRequestType struct
function init (line 15953) | func init() {
type ExportAnswerFile_Task (line 15957) | type ExportAnswerFile_Task
function init (line 15959) | func init() {
type ExportAnswerFile_TaskResponse (line 15963) | type ExportAnswerFile_TaskResponse struct
type ExportProfile (line 15967) | type ExportProfile
function init (line 15969) | func init() {
type ExportProfileRequestType (line 15973) | type ExportProfileRequestType struct
function init (line 15977) | func init() {
type ExportProfileResponse (line 15981) | type ExportProfileResponse struct
type ExportSnapshot (line 15985) | type ExportSnapshot
function init (line 15987) | func init() {
type ExportSnapshotRequestType (line 15991) | type ExportSnapshotRequestType struct
function init (line 15995) | func init() {
type ExportSnapshotResponse (line 15999) | type ExportSnapshotResponse struct
type ExportVApp (line 16003) | type ExportVApp
function init (line 16005) | func init() {
type ExportVAppRequestType (line 16009) | type ExportVAppRequestType struct
function init (line 16013) | func init() {
type ExportVAppResponse (line 16017) | type ExportVAppResponse struct
type ExportVm (line 16021) | type ExportVm
function init (line 16023) | func init() {
type ExportVmRequestType (line 16027) | type ExportVmRequestType struct
function init (line 16031) | func init() {
type ExportVmResponse (line 16035) | type ExportVmResponse struct
type ExtExtendedProductInfo (line 16039) | type ExtExtendedProductInfo struct
function init (line 16048) | func init() {
type ExtManagedEntityInfo (line 16052) | type ExtManagedEntityInfo struct
function init (line 16061) | func init() {
type ExtSolutionManagerInfo (line 16065) | type ExtSolutionManagerInfo struct
function init (line 16072) | func init() {
type ExtSolutionManagerInfoTabInfo (line 16076) | type ExtSolutionManagerInfoTabInfo struct
function init (line 16083) | func init() {
type ExtendDiskRequestType (line 16087) | type ExtendDiskRequestType struct
function init (line 16094) | func init() {
type ExtendDisk_Task (line 16098) | type ExtendDisk_Task
function init (line 16100) | func init() {
type ExtendDisk_TaskResponse (line 16104) | type ExtendDisk_TaskResponse struct
type ExtendVffs (line 16108) | type ExtendVffs
function init (line 16110) | func init() {
type ExtendVffsRequestType (line 16114) | type ExtendVffsRequestType struct
function init (line 16121) | func init() {
type ExtendVffsResponse (line 16125) | type ExtendVffsResponse struct
type ExtendVirtualDiskRequestType (line 16128) | type ExtendVirtualDiskRequestType struct
function init (line 16136) | func init() {
type ExtendVirtualDisk_Task (line 16140) | type ExtendVirtualDisk_Task
function init (line 16142) | func init() {
type ExtendVirtualDisk_TaskResponse (line 16146) | type ExtendVirtualDisk_TaskResponse struct
type ExtendVmfsDatastore (line 16150) | type ExtendVmfsDatastore
function init (line 16152) | func init() {
type ExtendVmfsDatastoreRequestType (line 16156) | type ExtendVmfsDatastoreRequestType struct
function init (line 16162) | func init() {
type ExtendVmfsDatastoreResponse (line 16166) | type ExtendVmfsDatastoreResponse struct
type ExtendedDescription (line 16170) | type ExtendedDescription struct
function init (line 16177) | func init() {
type ExtendedElementDescription (line 16181) | type ExtendedElementDescription struct
function init (line 16188) | func init() {
type ExtendedEvent (line 16192) | type ExtendedEvent struct
function init (line 16200) | func init() {
type ExtendedEventPair (line 16204) | type ExtendedEventPair struct
function init (line 16211) | func init() {
type ExtendedFault (line 16215) | type ExtendedFault struct
function init (line 16222) | func init() {
type ExtendedFaultFault (line 16226) | type ExtendedFaultFault
function init (line 16228) | func init() {
type Extension (line 16232) | type Extension struct
function init (line 16257) | func init() {
type ExtensionClientInfo (line 16261) | type ExtensionClientInfo struct
function init (line 16271) | func init() {
type ExtensionEventTypeInfo (line 16275) | type ExtensionEventTypeInfo struct
function init (line 16282) | func init() {
type ExtensionFaultTypeInfo (line 16286) | type ExtensionFaultTypeInfo struct
function init (line 16292) | func init() {
type ExtensionHealthInfo (line 16296) | type ExtensionHealthInfo struct
function init (line 16302) | func init() {
type ExtensionManagerIpAllocationUsage (line 16306) | type ExtensionManagerIpAllocationUsage struct
function init (line 16313) | func init() {
type ExtensionOvfConsumerInfo (line 16317) | type ExtensionOvfConsumerInfo struct
function init (line 16324) | func init() {
type ExtensionPrivilegeInfo (line 16328) | type ExtensionPrivilegeInfo struct
function init (line 16335) | func init() {
type ExtensionResourceInfo (line 16339) | type ExtensionResourceInfo struct
function init (line 16347) | func init() {
type ExtensionServerInfo (line 16351) | type ExtensionServerInfo struct
function init (line 16362) | func init() {
type ExtensionTaskTypeInfo (line 16366) | type ExtensionTaskTypeInfo struct
function init (line 16372) | func init() {
type ExtractOvfEnvironment (line 16376) | type ExtractOvfEnvironment
function init (line 16378) | func init() {
type ExtractOvfEnvironmentRequestType (line 16382) | type ExtractOvfEnvironmentRequestType struct
function init (line 16386) | func init() {
type ExtractOvfEnvironmentResponse (line 16390) | type ExtractOvfEnvironmentResponse struct
type FailToEnableSPBM (line 16394) | type FailToEnableSPBM struct
function init (line 16402) | func init() {
type FailToEnableSPBMFault (line 16406) | type FailToEnableSPBMFault
function init (line 16408) | func init() {
type FailToLockFaultToleranceVMs (line 16412) | type FailToLockFaultToleranceVMs struct
function init (line 16420) | func init() {
type FailToLockFaultToleranceVMsFault (line 16424) | type FailToLockFaultToleranceVMsFault
function init (line 16426) | func init() {
type FailoverLevelRestored (line 16430) | type FailoverLevelRestored struct
function init (line 16434) | func init() {
type FailoverNodeInfo (line 16438) | type FailoverNodeInfo struct
function init (line 16446) | func init() {
type FaultDomainId (line 16450) | type FaultDomainId struct
function init (line 16456) | func init() {
type FaultToleranceAntiAffinityViolated (line 16460) | type FaultToleranceAntiAffinityViolated struct
function init (line 16467) | func init() {
type FaultToleranceAntiAffinityViolatedFault (line 16471) | type FaultToleranceAntiAffinityViolatedFault
function init (line 16473) | func init() {
type FaultToleranceCannotEditMem (line 16477) | type FaultToleranceCannotEditMem struct
function init (line 16484) | func init() {
type FaultToleranceCannotEditMemFault (line 16488) | type FaultToleranceCannotEditMemFault
function init (line 16490) | func init() {
type FaultToleranceConfigInfo (line 16494) | type FaultToleranceConfigInfo struct
function init (line 16503) | func init() {
type FaultToleranceConfigSpec (line 16507) | type FaultToleranceConfigSpec struct
function init (line 16514) | func init() {
type FaultToleranceCpuIncompatible (line 16518) | type FaultToleranceCpuIncompatible struct
function init (line 16526) | func init() {
type FaultToleranceCpuIncompatibleFault (line 16530) | type FaultToleranceCpuIncompatibleFault
function init (line 16532) | func init() {
type FaultToleranceDiskSpec (line 16536) | type FaultToleranceDiskSpec struct
function init (line 16543) | func init() {
type FaultToleranceMetaSpec (line 16547) | type FaultToleranceMetaSpec struct
function init (line 16553) | func init() {
type FaultToleranceNeedsThickDisk (line 16557) | type FaultToleranceNeedsThickDisk struct
function init (line 16563) | func init() {
type FaultToleranceNeedsThickDiskFault (line 16567) | type FaultToleranceNeedsThickDiskFault
function init (line 16569) | func init() {
type FaultToleranceNotLicensed (line 16573) | type FaultToleranceNotLicensed struct
function init (line 16579) | func init() {
type FaultToleranceNotLicensedFault (line 16583) | type FaultToleranceNotLicensedFault
function init (line 16585) | func init() {
type FaultToleranceNotSameBuild (line 16589) | type FaultToleranceNotSameBuild struct
function init (line 16595) | func init() {
type FaultToleranceNotSameBuildFault (line 16599) | type FaultToleranceNotSameBuildFault
function init (line 16601) | func init() {
type FaultTolerancePrimaryConfigInfo (line 16605) | type FaultTolerancePrimaryConfigInfo struct
function init (line 16611) | func init() {
type FaultTolerancePrimaryPowerOnNotAttempted (line 16615) | type FaultTolerancePrimaryPowerOnNotAttempted struct
function init (line 16622) | func init() {
type FaultTolerancePrimaryPowerOnNotAttemptedFault (line 16626) | type FaultTolerancePrimaryPowerOnNotAttemptedFault
function init (line 16628) | func init() {
type FaultToleranceSecondaryConfigInfo (line 16632) | type FaultToleranceSecondaryConfigInfo struct
function init (line 16638) | func init() {
type FaultToleranceSecondaryOpResult (line 16642) | type FaultToleranceSecondaryOpResult struct
function init (line 16650) | func init() {
type FaultToleranceVMConfigSpec (line 16654) | type FaultToleranceVMConfigSpec struct
function init (line 16661) | func init() {
type FaultToleranceVmNotDasProtected (line 16665) | type FaultToleranceVmNotDasProtected struct
function init (line 16672) | func init() {
type FaultToleranceVmNotDasProtectedFault (line 16676) | type FaultToleranceVmNotDasProtectedFault
function init (line 16678) | func init() {
type FcoeConfig (line 16682) | type FcoeConfig struct
function init (line 16692) | func init() {
type FcoeConfigFcoeCapabilities (line 16696) | type FcoeConfigFcoeCapabilities struct
function init (line 16704) | func init() {
type FcoeConfigFcoeSpecification (line 16708) | type FcoeConfigFcoeSpecification struct
function init (line 16717) | func init() {
type FcoeConfigVlanRange (line 16721) | type FcoeConfigVlanRange struct
function init (line 16728) | func init() {
type FcoeFault (line 16732) | type FcoeFault struct
function init (line 16736) | func init() {
type FcoeFaultFault (line 16740) | type FcoeFaultFault
function init (line 16742) | func init() {
type FcoeFaultPnicHasNoPortSet (line 16746) | type FcoeFaultPnicHasNoPortSet struct
function init (line 16752) | func init() {
type FcoeFaultPnicHasNoPortSetFault (line 16756) | type FcoeFaultPnicHasNoPortSetFault
function init (line 16758) | func init() {
type FeatureRequirementsNotMet (line 16762) | type FeatureRequirementsNotMet struct
function init (line 16770) | func init() {
type FeatureRequirementsNotMetFault (line 16774) | type FeatureRequirementsNotMetFault
function init (line 16776) | func init() {
type FetchDVPortKeys (line 16780) | type FetchDVPortKeys
function init (line 16782) | func init() {
type FetchDVPortKeysRequestType (line 16786) | type FetchDVPortKeysRequestType struct
function init (line 16791) | func init() {
type FetchDVPortKeysResponse (line 16795) | type FetchDVPortKeysResponse struct
type FetchDVPorts (line 16799) | type FetchDVPorts
function init (line 16801) | func init() {
type FetchDVPortsRequestType (line 16805) | type FetchDVPortsRequestType struct
function init (line 16810) | func init() {
type FetchDVPortsResponse (line 16814) | type FetchDVPortsResponse struct
type FetchSystemEventLog (line 16818) | type FetchSystemEventLog
function init (line 16820) | func init() {
type FetchSystemEventLogRequestType (line 16824) | type FetchSystemEventLogRequestType struct
function init (line 16828) | func init() {
type FetchSystemEventLogResponse (line 16832) | type FetchSystemEventLogResponse struct
type FetchUserPrivilegeOnEntities (line 16836) | type FetchUserPrivilegeOnEntities
function init (line 16838) | func init() {
type FetchUserPrivilegeOnEntitiesRequestType (line 16842) | type FetchUserPrivilegeOnEntitiesRequestType struct
function init (line 16848) | func init() {
type FetchUserPrivilegeOnEntitiesResponse (line 16852) | type FetchUserPrivilegeOnEntitiesResponse struct
type FileAlreadyExists (line 16856) | type FileAlreadyExists struct
function init (line 16860) | func init() {
type FileAlreadyExistsFault (line 16864) | type FileAlreadyExistsFault
function init (line 16866) | func init() {
type FileBackedPortNotSupported (line 16870) | type FileBackedPortNotSupported struct
function init (line 16874) | func init() {
type FileBackedPortNotSupportedFault (line 16878) | type FileBackedPortNotSupportedFault
function init (line 16880) | func init() {
type FileBackedVirtualDiskSpec (line 16884) | type FileBackedVirtualDiskSpec struct
function init (line 16892) | func init() {
type FileFault (line 16896) | type FileFault struct
function init (line 16902) | func init() {
type FileFaultFault (line 16906) | type FileFaultFault
function init (line 16908) | func init() {
type FileInfo (line 16912) | type FileInfo struct
function init (line 16922) | func init() {
type FileLocked (line 16926) | type FileLocked struct
function init (line 16930) | func init() {
type FileLockedFault (line 16934) | type FileLockedFault
function init (line 16936) | func init() {
type FileNameTooLong (line 16940) | type FileNameTooLong struct
function init (line 16944) | func init() {
type FileNameTooLongFault (line 16948) | type FileNameTooLongFault
function init (line 16950) | func init() {
type FileNotFound (line 16954) | type FileNotFound struct
function init (line 16958) | func init() {
type FileNotFoundFault (line 16962) | type FileNotFoundFault
function init (line 16964) | func init() {
type FileNotWritable (line 16968) | type FileNotWritable struct
function init (line 16972) | func init() {
type FileNotWritableFault (line 16976) | type FileNotWritableFault
function init (line 16978) | func init() {
type FileQuery (line 16982) | type FileQuery struct
function init (line 16986) | func init() {
type FileQueryFlags (line 16990) | type FileQueryFlags struct
function init (line 16999) | func init() {
type FileTooLarge (line 17003) | type FileTooLarge struct
function init (line 17011) | func init() {
type FileTooLargeFault (line 17015) | type FileTooLargeFault
function init (line 17017) | func init() {
type FileTransferInformation (line 17021) | type FileTransferInformation struct
function init (line 17029) | func init() {
type FilesystemQuiesceFault (line 17033) | type FilesystemQuiesceFault struct
function init (line 17037) | func init() {
type FilesystemQuiesceFaultFault (line 17041) | type FilesystemQuiesceFaultFault
function init (line 17043) | func init() {
type FilterInUse (line 17047) | type FilterInUse struct
function init (line 17053) | func init() {
type FilterInUseFault (line 17057) | type FilterInUseFault
function init (line 17059) | func init() {
type FindAllByDnsName (line 17063) | type FindAllByDnsName
function init (line 17065) | func init() {
type FindAllByDnsNameRequestType (line 17069) | type FindAllByDnsNameRequestType struct
function init (line 17076) | func init() {
type FindAllByDnsNameResponse (line 17080) | type FindAllByDnsNameResponse struct
type FindAllByIp (line 17084) | type FindAllByIp
function init (line 17086) | func init() {
type FindAllByIpRequestType (line 17090) | type FindAllByIpRequestType struct
function init (line 17097) | func init() {
type FindAllByIpResponse (line 17101) | type FindAllByIpResponse struct
type FindAllByUuid (line 17105) | type FindAllByUuid
function init (line 17107) | func init() {
type FindAllByUuidRequestType (line 17111) | type FindAllByUuidRequestType struct
function init (line 17119) | func init() {
type FindAllByUuidResponse (line 17123) | type FindAllByUuidResponse struct
type FindAssociatedProfile (line 17127) | type FindAssociatedProfile
function init (line 17129) | func init() {
type FindAssociatedProfileRequestType (line 17133) | type FindAssociatedProfileRequestType struct
function init (line 17138) | func init() {
type FindAssociatedProfileResponse (line 17142) | type FindAssociatedProfileResponse struct
type FindByDatastorePath (line 17146) | type FindByDatastorePath
function init (line 17148) | func init() {
type FindByDatastorePathRequestType (line 17152) | type FindByDatastorePathRequestType struct
function init (line 17158) | func init() {
type FindByDatastorePathResponse (line 17162) | type FindByDatastorePathResponse struct
type FindByDnsName (line 17166) | type FindByDnsName
function init (line 17168) | func init() {
type FindByDnsNameRequestType (line 17172) | type FindByDnsNameRequestType struct
function init (line 17179) | func init() {
type FindByDnsNameResponse (line 17183) | type FindByDnsNameResponse struct
type FindByInventoryPath (line 17187) | type FindByInventoryPath
function init (line 17189) | func init() {
type FindByInventoryPathRequestType (line 17193) | type FindByInventoryPathRequestType struct
function init (line 17198) | func init() {
type FindByInventoryPathResponse (line 17202) | type FindByInventoryPathResponse struct
type FindByIp (line 17206) | type FindByIp
function init (line 17208) | func init() {
type FindByIpRequestType (line 17212) | type FindByIpRequestType struct
function init (line 17219) | func init() {
type FindByIpResponse (line 17223) | type FindByIpResponse struct
type FindByUuid (line 17227) | type FindByUuid
function init (line 17229) | func init() {
type FindByUuidRequestType (line 17233) | type FindByUuidRequestType struct
function init (line 17241) | func init() {
type FindByUuidResponse (line 17245) | type FindByUuidResponse struct
type FindChild (line 17249) | type FindChild
function init (line 17251) | func init() {
type FindChildRequestType (line 17255) | type FindChildRequestType struct
function init (line 17261) | func init() {
type FindChildResponse (line 17265) | type FindChildResponse struct
type FindExtension (line 17269) | type FindExtension
function init (line 17271) | func init() {
type FindExtensionRequestType (line 17275) | type FindExtensionRequestType struct
function init (line 17280) | func init() {
type FindExtensionResponse (line 17284) | type FindExtensionResponse struct
type FindRulesForVm (line 17288) | type FindRulesForVm
function init (line 17290) | func init() {
type FindRulesForVmRequestType (line 17294) | type FindRulesForVmRequestType struct
function init (line 17299) | func init() {
type FindRulesForVmResponse (line 17303) | type FindRulesForVmResponse struct
type FirewallProfile (line 17307) | type FirewallProfile struct
function init (line 17313) | func init() {
type FirewallProfileRulesetProfile (line 17317) | type FirewallProfileRulesetProfile struct
function init (line 17323) | func init() {
type FloatOption (line 17327) | type FloatOption struct
function init (line 17335) | func init() {
type FloppyImageFileInfo (line 17339) | type FloppyImageFileInfo struct
function init (line 17343) | func init() {
type FloppyImageFileQuery (line 17347) | type FloppyImageFileQuery struct
function init (line 17351) | func init() {
type FolderEventArgument (line 17355) | type FolderEventArgument struct
function init (line 17361) | func init() {
type FolderFileInfo (line 17365) | type FolderFileInfo struct
function init (line 17369) | func init() {
type FolderFileQuery (line 17373) | type FolderFileQuery struct
function init (line 17377) | func init() {
type FormatVffs (line 17381) | type FormatVffs
function init (line 17383) | func init() {
type FormatVffsRequestType (line 17387) | type FormatVffsRequestType struct
function init (line 17392) | func init() {
type FormatVffsResponse (line 17396) | type FormatVffsResponse struct
type FormatVmfs (line 17400) | type FormatVmfs
function init (line 17402) | func init() {
type FormatVmfsRequestType (line 17406) | type FormatVmfsRequestType struct
function init (line 17411) | func init() {
type FormatVmfsResponse (line 17415) | type FormatVmfsResponse struct
type FtIssuesOnHost (line 17419) | type FtIssuesOnHost struct
function init (line 17427) | func init() {
type FtIssuesOnHostFault (line 17431) | type FtIssuesOnHostFault
function init (line 17433) | func init() {
type FullStorageVMotionNotSupported (line 17437) | type FullStorageVMotionNotSupported struct
function init (line 17441) | func init() {
type FullStorageVMotionNotSupportedFault (line 17445) | type FullStorageVMotionNotSupportedFault
function init (line 17447) | func init() {
type GatewayConnectFault (line 17451) | type GatewayConnectFault struct
function init (line 17460) | func init() {
type GatewayConnectFaultFault (line 17464) | type GatewayConnectFaultFault
function init (line 17466) | func init() {
type GatewayHostNotReachable (line 17470) | type GatewayHostNotReachable struct
function init (line 17474) | func init() {
type GatewayHostNotReachableFault (line 17478) | type GatewayHostNotReachableFault
function init (line 17480) | func init() {
type GatewayNotFound (line 17484) | type GatewayNotFound struct
function init (line 17488) | func init() {
type GatewayNotFoundFault (line 17492) | type GatewayNotFoundFault
function init (line 17494) | func init() {
type GatewayNotReachable (line 17498) | type GatewayNotReachable struct
function init (line 17502) | func init() {
type GatewayNotReachableFault (line 17506) | type GatewayNotReachableFault
function init (line 17508) | func init() {
type GatewayOperationRefused (line 17512) | type GatewayOperationRefused struct
function init (line 17516) | func init() {
type GatewayOperationRefusedFault (line 17520) | type GatewayOperationRefusedFault
function init (line 17522) | func init() {
type GatewayToHostAuthFault (line 17526) | type GatewayToHostAuthFault struct
function init (line 17533) | func init() {
type GatewayToHostAuthFaultFault (line 17537) | type GatewayToHostAuthFaultFault
function init (line 17539) | func init() {
type GatewayToHostConnectFault (line 17543) | type GatewayToHostConnectFault struct
function init (line 17550) | func init() {
type GatewayToHostConnectFaultFault (line 17554) | type GatewayToHostConnectFaultFault
function init (line 17556) | func init() {
type GatewayToHostTrustVerifyFault (line 17560) | type GatewayToHostTrustVerifyFault struct
function init (line 17567) | func init() {
type GatewayToHostTrustVerifyFaultFault (line 17571) | type GatewayToHostTrustVerifyFaultFault
function init (line 17573) | func init() {
type GeneralEvent (line 17577) | type GeneralEvent struct
function init (line 17583) | func init() {
type GeneralHostErrorEvent (line 17587) | type GeneralHostErrorEvent struct
function init (line 17591) | func init() {
type GeneralHostInfoEvent (line 17595) | type GeneralHostInfoEvent struct
function init (line 17599) | func init() {
type GeneralHostWarningEvent (line 17603) | type GeneralHostWarningEvent struct
function init (line 17607) | func init() {
type GeneralUserEvent (line 17611) | type GeneralUserEvent struct
function init (line 17617) | func init() {
type GeneralVmErrorEvent (line 17621) | type GeneralVmErrorEvent struct
function init (line 17625) | func init() {
type GeneralVmInfoEvent (line 17629) | type GeneralVmInfoEvent struct
function init (line 17633) | func init() {
type GeneralVmWarningEvent (line 17637) | type GeneralVmWarningEvent struct
function init (line 17641) | func init() {
type GenerateCertificateSigningRequest (line 17645) | type GenerateCertificateSigningRequest
function init (line 17647) | func init() {
type GenerateCertificateSigningRequestByDn (line 17651) | type GenerateCertificateSigningRequestByDn
function init (line 17653) | func init() {
type GenerateCertificateSigningRequestByDnRequestType (line 17657) | type GenerateCertificateSigningRequestByDnRequestType struct
function init (line 17662) | func init() {
type GenerateCertificateSigningRequestByDnResponse (line 17666) | type GenerateCertificateSigningRequestByDnResponse struct
type GenerateCertificateSigningRequestRequestType (line 17670) | type GenerateCertificateSigningRequestRequestType struct
function init (line 17675) | func init() {
type GenerateCertificateSigningRequestResponse (line 17679) | type GenerateCertificateSigningRequestResponse struct
type GenerateClientCsr (line 17683) | type GenerateClientCsr
function init (line 17685) | func init() {
type GenerateClientCsrRequestType (line 17689) | type GenerateClientCsrRequestType struct
function init (line 17694) | func init() {
type GenerateClientCsrResponse (line 17698) | type GenerateClientCsrResponse struct
type GenerateConfigTaskList (line 17702) | type GenerateConfigTaskList
function init (line 17704) | func init() {
type GenerateConfigTaskListRequestType (line 17708) | type GenerateConfigTaskListRequestType struct
function init (line 17714) | func init() {
type GenerateConfigTaskListResponse (line 17718) | type GenerateConfigTaskListResponse struct
type GenerateHostConfigTaskSpecRequestType (line 17722) | type GenerateHostConfigTaskSpecRequestType struct
function init (line 17727) | func init() {
type GenerateHostConfigTaskSpec_Task (line 17731) | type GenerateHostConfigTaskSpec_Task
function init (line 17733) | func init() {
type GenerateHostConfigTaskSpec_TaskResponse (line 17737) | type GenerateHostConfigTaskSpec_TaskResponse struct
type GenerateHostProfileTaskListRequestType (line 17741) | type GenerateHostProfileTaskListRequestType struct
function init (line 17747) | func init() {
type GenerateHostProfileTaskList_Task (line 17751) | type GenerateHostProfileTaskList_Task
function init (line 17753) | func init() {
type GenerateHostProfileTaskList_TaskResponse (line 17757) | type GenerateHostProfileTaskList_TaskResponse struct
type GenerateKey (line 17761) | type GenerateKey
function init (line 17763) | func init() {
type GenerateKeyRequestType (line 17767) | type GenerateKeyRequestType struct
function init (line 17772) | func init() {
type GenerateKeyResponse (line 17776) | type GenerateKeyResponse struct
type GenerateLogBundlesRequestType (line 17780) | type GenerateLogBundlesRequestType struct
function init (line 17786) | func init() {
type GenerateLogBundles_Task (line 17790) | type GenerateLogBundles_Task
function init (line 17792) | func init() {
type GenerateLogBundles_TaskResponse (line 17796) | type GenerateLogBundles_TaskResponse struct
type GenerateSelfSignedClientCert (line 17800) | type GenerateSelfSignedClientCert
function init (line 17802) | func init() {
type GenerateSelfSignedClientCertRequestType (line 17806) | type GenerateSelfSignedClientCertRequestType struct
function init (line 17811) | func init() {
type GenerateSelfSignedClientCertResponse (line 17815) | type GenerateSelfSignedClientCertResponse struct
type GenericDrsFault (line 17819) | type GenericDrsFault struct
function init (line 17825) | func init() {
type GenericDrsFaultFault (line 17829) | type GenericDrsFaultFault
function init (line 17831) | func init() {
type GenericVmConfigFault (line 17835) | type GenericVmConfigFault struct
function init (line 17841) | func init() {
type GenericVmConfigFaultFault (line 17845) | type GenericVmConfigFaultFault
function init (line 17847) | func init() {
type GetAlarm (line 17851) | type GetAlarm
function init (line 17853) | func init() {
type GetAlarmRequestType (line 17857) | type GetAlarmRequestType struct
function init (line 17862) | func init() {
type GetAlarmResponse (line 17866) | type GetAlarmResponse struct
type GetAlarmState (line 17870) | type GetAlarmState
function init (line 17872) | func init() {
type GetAlarmStateRequestType (line 17876) | type GetAlarmStateRequestType struct
function init (line 17881) | func init() {
type GetAlarmStateResponse (line 17885) | type GetAlarmStateResponse struct
type GetCustomizationSpec (line 17889) | type GetCustomizationSpec
function init (line 17891) | func init() {
type GetCustomizationSpecRequestType (line 17895) | type GetCustomizationSpecRequestType struct
function init (line 17900) | func init() {
type GetCustomizationSpecResponse (line 17904) | type GetCustomizationSpecResponse struct
type GetPublicKey (line 17908) | type GetPublicKey
function init (line 17910) | func init() {
type GetPublicKeyRequestType (line 17914) | type GetPublicKeyRequestType struct
function init (line 17918) | func init() {
type GetPublicKeyResponse (line 17922) | type GetPublicKeyResponse struct
type GetResourceUsage (line 17926) | type GetResourceUsage
function init (line 17928) | func init() {
type GetResourceUsageRequestType (line 17932) | type GetResourceUsageRequestType struct
function init (line 17936) | func init() {
type GetResourceUsageResponse (line 17940) | type GetResourceUsageResponse struct
type GetVchaClusterHealth (line 17944) | type GetVchaClusterHealth
function init (line 17946) | func init() {
type GetVchaClusterHealthRequestType (line 17950) | type GetVchaClusterHealthRequestType struct
function init (line 17954) | func init() {
type GetVchaClusterHealthResponse (line 17958) | type GetVchaClusterHealthResponse struct
type GetVsanObjExtAttrs (line 17962) | type GetVsanObjExtAttrs
function init (line 17964) | func init() {
type GetVsanObjExtAttrsRequestType (line 17968) | type GetVsanObjExtAttrsRequestType struct
function init (line 17973) | func init() {
type GetVsanObjExtAttrsResponse (line 17977) | type GetVsanObjExtAttrsResponse struct
type GhostDvsProxySwitchDetectedEvent (line 17981) | type GhostDvsProxySwitchDetectedEvent struct
function init (line 17987) | func init() {
type GhostDvsProxySwitchRemovedEvent (line 17991) | type GhostDvsProxySwitchRemovedEvent struct
function init (line 17997) | func init() {
type GlobalMessageChangedEvent (line 18001) | type GlobalMessageChangedEvent struct
function init (line 18008) | func init() {
type GroupAlarmAction (line 18012) | type GroupAlarmAction struct
function init (line 18018) | func init() {
type GuestAliases (line 18022) | type GuestAliases struct
function init (line 18029) | func init() {
type GuestAuthAliasInfo (line 18033) | type GuestAuthAliasInfo struct
function init (line 18040) | func init() {
type GuestAuthAnySubject (line 18044) | type GuestAuthAnySubject struct
function init (line 18048) | func init() {
type GuestAuthNamedSubject (line 18052) | type GuestAuthNamedSubject struct
function init (line 18058) | func init() {
type GuestAuthSubject (line 18062) | type GuestAuthSubject struct
function init (line 18066) | func init() {
type GuestAuthentication (line 18070) | type GuestAuthentication struct
function init (line 18076) | func init() {
type GuestAuthenticationChallenge (line 18080) | type GuestAuthenticationChallenge struct
function init (line 18087) | func init() {
type GuestAuthenticationChallengeFault (line 18091) | type GuestAuthenticationChallengeFault
function init (line 18093) | func init() {
type GuestComponentsOutOfDate (line 18097) | type GuestComponentsOutOfDate struct
function init (line 18101) | func init() {
type GuestComponentsOutOfDateFault (line 18105) | type GuestComponentsOutOfDateFault
function init (line 18107) | func init() {
type GuestDiskInfo (line 18111) | type GuestDiskInfo struct
function init (line 18119) | func init() {
type GuestFileAttributes (line 18123) | type GuestFileAttributes struct
function init (line 18131) | func init() {
type GuestFileInfo (line 18135) | type GuestFileInfo struct
function init (line 18144) | func init() {
type GuestInfo (line 18148) | type GuestInfo struct
function init (line 18176) | func init() {
type GuestInfoNamespaceGenerationInfo (line 18180) | type GuestInfoNamespaceGenerationInfo struct
function init (line 18187) | func init() {
type GuestListFileInfo (line 18191) | type GuestListFileInfo struct
function init (line 18198) | func init() {
type GuestMappedAliases (line 18202) | type GuestMappedAliases struct
function init (line 18210) | func init() {
type GuestMultipleMappings (line 18214) | type GuestMultipleMappings struct
function init (line 18218) | func init() {
type GuestMultipleMappingsFault (line 18222) | type GuestMultipleMappingsFault
function init (line 18224) | func init() {
type GuestNicInfo (line 18228) | type GuestNicInfo struct
function init (line 18241) | func init() {
type GuestOperationsFault (line 18245) | type GuestOperationsFault struct
function init (line 18249) | func init() {
type GuestOperationsFaultFault (line 18253) | type GuestOperationsFaultFault
function init (line 18255) | func init() {
type GuestOperationsUnavailable (line 18259) | type GuestOperationsUnavailable struct
function init (line 18263) | func init() {
type GuestOperationsUnavailableFault (line 18267) | type GuestOperationsUnavailableFault
function init (line 18269) | func init() {
type GuestOsDescriptor (line 18273) | type GuestOsDescriptor struct
function init (line 18323) | func init() {
type GuestPermissionDenied (line 18327) | type GuestPermissionDenied struct
function init (line 18331) | func init() {
type GuestPermissionDeniedFault (line 18335) | type GuestPermissionDeniedFault
function init (line 18337) | func init() {
type GuestPosixFileAttributes (line 18341) | type GuestPosixFileAttributes struct
function init (line 18349) | func init() {
type GuestProcessInfo (line 18353) | type GuestProcessInfo struct
function init (line 18365) | func init() {
type GuestProcessNotFound (line 18369) | type GuestProcessNotFound struct
function init (line 18375) | func init() {
type GuestProcessNotFoundFault (line 18379) | type GuestProcessNotFoundFault
function init (line 18381) | func init() {
type GuestProgramSpec (line 18385) | type GuestProgramSpec struct
function init (line 18394) | func init() {
type GuestRegKeyNameSpec (line 18398) | type GuestRegKeyNameSpec struct
function init (line 18405) | func init() {
type GuestRegKeyRecordSpec (line 18409) | type GuestRegKeyRecordSpec struct
function init (line 18416) | func init() {
type GuestRegKeySpec (line 18420) | type GuestRegKeySpec struct
function init (line 18428) | func init() {
type GuestRegValueBinarySpec (line 18432) | type GuestRegValueBinarySpec struct
function init (line 18438) | func init() {
type GuestRegValueDataSpec (line 18442) | type GuestRegValueDataSpec struct
function init (line 18446) | func init() {
type GuestRegValueDwordSpec (line 18450) | type GuestRegValueDwordSpec struct
function init (line 18456) | func init() {
type GuestRegValueExpandStringSpec (line 18460) | type GuestRegValueExpandStringSpec struct
function init (line 18466) | func init() {
type GuestRegValueMultiStringSpec (line 18470) | type GuestRegValueMultiStringSpec struct
function init (line 18476) | func init() {
type GuestRegValueNameSpec (line 18480) | type GuestRegValueNameSpec struct
function init (line 18487) | func init() {
type GuestRegValueQwordSpec (line 18491) | type GuestRegValueQwordSpec struct
function init (line 18497) | func init() {
type GuestRegValueSpec (line 18501) | type GuestRegValueSpec struct
function init (line 18508) | func init() {
type GuestRegValueStringSpec (line 18512) | type GuestRegValueStringSpec struct
function init (line 18518) | func init() {
type GuestRegistryFault (line 18522) | type GuestRegistryFault struct
function init (line 18528) | func init() {
type GuestRegistryFaultFault (line 18532) | type GuestRegistryFaultFault
function init (line 18534) | func init() {
type GuestRegistryKeyAlreadyExists (line 18538) | type GuestRegistryKeyAlreadyExists struct
function init (line 18542) | func init() {
type GuestRegistryKeyAlreadyExistsFault (line 18546) | type GuestRegistryKeyAlreadyExistsFault
function init (line 18548) | func init() {
type GuestRegistryKeyFault (line 18552) | type GuestRegistryKeyFault struct
function init (line 18558) | func init() {
type GuestRegistryKeyFaultFault (line 18562) | type GuestRegistryKeyFaultFault
function init (line 18564) | func init() {
type GuestRegistryKeyHasSubkeys (line 18568) | type GuestRegistryKeyHasSubkeys struct
function init (line 18572) | func init() {
type GuestRegistryKeyHasSubkeysFault (line 18576) | type GuestRegistryKeyHasSubkeysFault
function init (line 18578) | func init() {
type GuestRegistryKeyInvalid (line 18582) | type GuestRegistryKeyInvalid struct
function init (line 18586) | func init() {
type GuestRegistryKeyInvalidFault (line 18590) | type GuestRegistryKeyInvalidFault
function init (line 18592) | func init() {
type GuestRegistryKeyParentVolatile (line 18596) | type GuestRegistryKeyParentVolatile struct
function init (line 18600) | func init() {
type GuestRegistryKeyParentVolatileFault (line 18604) | type GuestRegistryKeyParentVolatileFault
function init (line 18606) | func init() {
type GuestRegistryValueFault (line 18610) | type GuestRegistryValueFault struct
function init (line 18617) | func init() {
type GuestRegistryValueFaultFault (line 18621) | type GuestRegistryValueFaultFault
function init (line 18623) | func init() {
type GuestRegistryValueNotFound (line 18627) | type GuestRegistryValueNotFound struct
function init (line 18631) | func init() {
type GuestRegistryValueNotFoundFault (line 18635) | type GuestRegistryValueNotFoundFault
function init (line 18637) | func init() {
type GuestScreenInfo (line 18641) | type GuestScreenInfo struct
function init (line 18648) | func init() {
type GuestStackInfo (line 18652) | type GuestStackInfo struct
function init (line 18661) | func init() {
type GuestWindowsFileAttributes (line 18665) | type GuestWindowsFileAttributes struct
function init (line 18673) | func init() {
type GuestWindowsProgramSpec (line 18677) | type GuestWindowsProgramSpec struct
function init (line 18683) | func init() {
type HAErrorsAtDest (line 18687) | type HAErrorsAtDest struct
function init (line 18691) | func init() {
type HAErrorsAtDestFault (line 18695) | type HAErrorsAtDestFault
function init (line 18697) | func init() {
type HasMonitoredEntity (line 18701) | type HasMonitoredEntity
function init (line 18703) | func init() {
type HasMonitoredEntityRequestType (line 18707) | type HasMonitoredEntityRequestType struct
function init (line 18713) | func init() {
type HasMonitoredEntityResponse (line 18717) | type HasMonitoredEntityResponse struct
type HasPrivilegeOnEntities (line 18721) | type HasPrivilegeOnEntities
function init (line 18723) | func init() {
type HasPrivilegeOnEntitiesRequestType (line 18727) | type HasPrivilegeOnEntitiesRequestType struct
function init (line 18734) | func init() {
type HasPrivilegeOnEntitiesResponse (line 18738) | type HasPrivilegeOnEntitiesResponse struct
type HasPrivilegeOnEntity (line 18742) | type HasPrivilegeOnEntity
function init (line 18744) | func init() {
type HasPrivilegeOnEntityRequestType (line 18748) | type HasPrivilegeOnEntityRequestType struct
function init (line 18755) | func init() {
type HasPrivilegeOnEntityResponse (line 18759) | type HasPrivilegeOnEntityResponse struct
type HasProvider (line 18763) | type HasProvider
function init (line 18765) | func init() {
type HasProviderRequestType (line 18769) | type HasProviderRequestType struct
function init (line 18774) | func init() {
type HasProviderResponse (line 18778) | type HasProviderResponse struct
type HasUserPrivilegeOnEntities (line 18782) | type HasUserPrivilegeOnEntities
function init (line 18784) | func init() {
type HasUserPrivilegeOnEntitiesRequestType (line 18788) | type HasUserPrivilegeOnEntitiesRequestType struct
function init (line 18795) | func init() {
type HasUserPrivilegeOnEntitiesResponse (line 18799) | type HasUserPrivilegeOnEntitiesResponse struct
type HbrDiskMigrationAction (line 18803) | type HbrDiskMigrationAction struct
function init (line 18820) | func init() {
type HbrManagerReplicationVmInfo (line 18824) | type HbrManagerReplicationVmInfo struct
function init (line 18833) | func init() {
type HbrManagerVmReplicationCapability (line 18837) | type HbrManagerVmReplicationCapability struct
function init (line 18848) | func init() {
type HealthStatusChangedEvent (line 18852) | type HealthStatusChangedEvent struct
function init (line 18862) | func init() {
type HealthSystemRuntime (line 18866) | type HealthSystemRuntime struct
function init (line 18873) | func init() {
type HealthUpdate (line 18877) | type HealthUpdate struct
function init (line 18887) | func init() {
type HealthUpdateInfo (line 18891) | type HealthUpdateInfo struct
function init (line 18899) | func init() {
type HeterogenousHostsBlockingEVC (line 18903) | type HeterogenousHostsBlockingEVC struct
function init (line 18907) | func init() {
type HeterogenousHostsBlockingEVCFault (line 18911) | type HeterogenousHostsBlockingEVCFault
function init (line 18913) | func init() {
type HostAccessControlEntry (line 18917) | type HostAccessControlEntry struct
function init (line 18925) | func init() {
type HostAccessRestrictedToManagementServer (line 18929) | type HostAccessRestrictedToManagementServer struct
function init (line 18935) | func init() {
type HostAccessRestrictedToManagementServerFault (line 18939) | type HostAccessRestrictedToManagementServerFault
function init (line 18941) | func init() {
type HostAccountSpec (line 18945) | type HostAccountSpec struct
function init (line 18953) | func init() {
type HostActiveDirectory (line 18957) | type HostActiveDirectory struct
function init (line 18964) | func init() {
type HostActiveDirectoryInfo (line 18968) | type HostActiveDirectoryInfo struct
function init (line 18977) | func init() {
type HostActiveDirectorySpec (line 18981) | type HostActiveDirectorySpec struct
function init (line 18993) | func init() {
type HostAddFailedEvent (line 18997) | type HostAddFailedEvent struct
function init (line 19003) | func init() {
type HostAddedEvent (line 19007) | type HostAddedEvent struct
function init (line 19011) | func init() {
type HostAdminDisableEvent (line 19015) | type HostAdminDisableEvent struct
function init (line 19019) | func init() {
type HostAdminEnableEvent (line 19023) | type HostAdminEnableEvent struct
function init (line 19027) | func init() {
type HostApplyProfile (line 19031) | type HostApplyProfile struct
function init (line 19047) | func init() {
type HostAuthenticationManagerInfo (line 19051) | type HostAuthenticationManagerInfo struct
function init (line 19057) | func init() {
type HostAuthenticationStoreInfo (line 19061) | type HostAuthenticationStoreInfo struct
function init (line 19067) | func init() {
type HostAutoStartManagerConfig (line 19071) | type HostAutoStartManagerConfig struct
function init (line 19078) | func init() {
type HostBIOSInfo (line 19082) | type HostBIOSInfo struct
function init (line 19094) | func init() {
type HostBlockAdapterTargetTransport (line 19098) | type HostBlockAdapterTargetTransport struct
function init (line 19102) | func init() {
type HostBlockHba (line 19106) | type HostBlockHba struct
function init (line 19110) | func init() {
type HostBootDevice (line 19114) | type HostBootDevice struct
function init (line 19121) | func init() {
type HostBootDeviceInfo (line 19125) | type HostBootDeviceInfo struct
function init (line 19132) | func init() {
type HostCacheConfigurationInfo (line 19136) | type HostCacheConfigurationInfo struct
function init (line 19143) | func init() {
type HostCacheConfigurationSpec (line 19147) | type HostCacheConfigurationSpec struct
function init (line 19154) | func init() {
type HostCapability (line 19158) | type HostCapability struct
function init (line 19262) | func init() {
type HostCertificateManagerCertificateInfo (line 19266) | type HostCertificateManagerCertificateInfo struct
function init (line 19276) | func init() {
type HostCloneVStorageObjectRequestType (line 19280) | type HostCloneVStorageObjectRequestType struct
function init (line 19287) | func init() {
type HostCloneVStorageObject_Task (line 19291) | type HostCloneVStorageObject_Task
function init (line 19293) | func init() {
type HostCloneVStorageObject_TaskResponse (line 19297) | type HostCloneVStorageObject_TaskResponse struct
type HostCnxFailedAccountFailedEvent (line 19301) | type HostCnxFailedAccountFailedEvent struct
function init (line 19305) | func init() {
type HostCnxFailedAlreadyManagedEvent (line 19309) | type HostCnxFailedAlreadyManagedEvent struct
function init (line 19315) | func init() {
type HostCnxFailedBadCcagentEvent (line 19319) | type HostCnxFailedBadCcagentEvent struct
function init (line 19323) | func init() {
type HostCnxFailedBadUsernameEvent (line 19327) | type HostCnxFailedBadUsernameEvent struct
function init (line 19331) | func init() {
type HostCnxFailedBadVersionEvent (line 19335) | type HostCnxFailedBadVersionEvent struct
function init (line 19339) | func init() {
type HostCnxFailedCcagentUpgradeEvent (line 19343) | type HostCnxFailedCcagentUpgradeEvent struct
function init (line 19347) | func init() {
type HostCnxFailedEvent (line 19351) | type HostCnxFailedEvent struct
function init (line 19355) | func init() {
type HostCnxFailedNetworkErrorEvent (line 19359) | type HostCnxFailedNetworkErrorEvent struct
function init (line 19363) | func init() {
type HostCnxFailedNoAccessEvent (line 19367) | type HostCnxFailedNoAccessEvent struct
function init (line 19371) | func init() {
type HostCnxFailedNoConnectionEvent (line 19375) | type HostCnxFailedNoConnectionEvent struct
function init (line 19379) | func init() {
type HostCnxFailedNoLicenseEvent (line 19383) | type HostCnxFailedNoLicenseEvent struct
function init (line 19387) | func init() {
type HostCnxFailedNotFoundEvent (line 19391) | type HostCnxFailedNotFoundEvent struct
function init (line 19395) | func init() {
type HostCnxFailedTimeoutEvent (line 19399) | type HostCnxFailedTimeoutEvent struct
function init (line 19403) | func init() {
type HostCommunication (line 19407) | type HostCommunication struct
function init (line 19411) | func init() {
type HostCommunicationFault (line 19415) | type HostCommunicationFault
function init (line 19417) | func init() {
type HostComplianceCheckedEvent (line 19421) | type HostComplianceCheckedEvent struct
function init (line 19427) | func init() {
type HostCompliantEvent (line 19431) | type HostCompliantEvent struct
function init (line 19435) | func init() {
type HostConfigAppliedEvent (line 19439) | type HostConfigAppliedEvent struct
function init (line 19443) | func init() {
type HostConfigChange (line 19447) | type HostConfigChange struct
function init (line 19451) | func init() {
type HostConfigFailed (line 19455) | type HostConfigFailed struct
function init (line 19461) | func init() {
type HostConfigFailedFault (line 19465) | type HostConfigFailedFault
function init (line 19467) | func init() {
type HostConfigFault (line 19471) | type HostConfigFault struct
function init (line 19475) | func init() {
type HostConfigFaultFault (line 19479) | type HostConfigFaultFault
function init (line 19481) | func init() {
type HostConfigInfo (line 19485) | type HostConfigInfo struct
function init (line 19543) | func init() {
type HostConfigManager (line 19547) | type HostConfigManager struct
function init (line 19589) | func init() {
type HostConfigSpec (line 19593) | type HostConfigSpec struct
function init (line 19616) | func init() {
type HostConfigSummary (line 19620) | type HostConfigSummary struct
function init (line 19634) | func init() {
type HostConfigVFlashCache (line 19638) | type HostConfigVFlashCache
function init (line 19640) | func init() {
type HostConfigVFlashCacheRequestType (line 19644) | type HostConfigVFlashCacheRequestType struct
function init (line 19649) | func init() {
type HostConfigVFlashCacheResponse (line 19653) | type HostConfigVFlashCacheResponse struct
type HostConfigureVFlashResource (line 19656) | type HostConfigureVFlashResource
function init (line 19658) | func init() {
type HostConfigureVFlashResourceRequestType (line 19662) | type HostConfigureVFlashResourceRequestType struct
function init (line 19667) | func init() {
type HostConfigureVFlashResourceResponse (line 19671) | type HostConfigureVFlashResourceResponse struct
type HostConnectFault (line 19674) | type HostConnectFault struct
function init (line 19678) | func init() {
type HostConnectFaultFault (line 19682) | type HostConnectFaultFault
function init (line 19684) | func init() {
type HostConnectInfo (line 19688) | type HostConnectInfo struct
function init (line 19703) | func init() {
type HostConnectInfoNetworkInfo (line 19707) | type HostConnectInfoNetworkInfo struct
function init (line 19713) | func init() {
type HostConnectSpec (line 19717) | type HostConnectSpec struct
function init (line 19734) | func init() {
type HostConnectedEvent (line 19738) | type HostConnectedEvent struct
function init (line 19742) | func init() {
type HostConnectionLostEvent (line 19746) | type HostConnectionLostEvent struct
function init (line 19750) | func init() {
type HostCpuIdInfo (line 19754) | type HostCpuIdInfo struct
function init (line 19765) | func init() {
type HostCpuInfo (line 19769) | type HostCpuInfo struct
function init (line 19778) | func init() {
type HostCpuPackage (line 19782) | type HostCpuPackage struct
function init (line 19794) | func init() {
type HostCpuPowerManagementInfo (line 19798) | type HostCpuPowerManagementInfo struct
function init (line 19805) | func init() {
type HostCreateDiskRequestType (line 19809) | type HostCreateDiskRequestType struct
function init (line 19814) | func init() {
type HostCreateDisk_Task (line 19818) | type HostCreateDisk_Task
function init (line 19820) | func init() {
type HostCreateDisk_TaskResponse (line 19824) | type HostCreateDisk_TaskResponse struct
type HostDasDisabledEvent (line 19828) | type HostDasDisabledEvent struct
function init (line 19832) | func init() {
type HostDasDisablingEvent (line 19836) | type HostDasDisablingEvent struct
function init (line 19840) | func init() {
type HostDasEnabledEvent (line 19844) | type HostDasEnabledEvent struct
function init (line 19848) | func init() {
type HostDasEnablingEvent (line 19852) | type HostDasEnablingEvent struct
function init (line 19856) | func init() {
type HostDasErrorEvent (line 19860) | type HostDasErrorEvent struct
function init (line 19867) | func init() {
type HostDasEvent (line 19871) | type HostDasEvent struct
function init (line 19875) | func init() {
type HostDasOkEvent (line 19879) | type HostDasOkEvent struct
function init (line 19883) | func init() {
type HostDatastoreBrowserSearchResults (line 19887) | type HostDatastoreBrowserSearchResults struct
function init (line 19895) | func init() {
type HostDatastoreBrowserSearchSpec (line 19899) | type HostDatastoreBrowserSearchSpec struct
function init (line 19909) | func init() {
type HostDatastoreConnectInfo (line 19913) | type HostDatastoreConnectInfo struct
function init (line 19919) | func init() {
type HostDatastoreExistsConnectInfo (line 19923) | type HostDatastoreExistsConnectInfo struct
function init (line 19929) | func init() {
type HostDatastoreNameConflictConnectInfo (line 19933) | type HostDatastoreNameConflictConnectInfo struct
function init (line 19939) | func init() {
type HostDatastoreSystemCapabilities (line 19943) | type HostDatastoreSystemCapabilities struct
function init (line 19952) | func init() {
type HostDatastoreSystemDatastoreResult (line 19956) | type HostDatastoreSystemDatastoreResult struct
function init (line 19963) | func init() {
type HostDatastoreSystemVvolDatastoreSpec (line 19967) | type HostDatastoreSystemVvolDatastoreSpec struct
function init (line 19974) | func init() {
type HostDateTimeConfig (line 19978) | type HostDateTimeConfig struct
function init (line 19985) | func init() {
type HostDateTimeInfo (line 19989) | type HostDateTimeInfo struct
function init (line 19996) | func init() {
type HostDateTimeSystemTimeZone (line 20000) | type HostDateTimeSystemTimeZone struct
function init (line 20009) | func init() {
type HostDeleteVStorageObjectRequestType (line 20013) | type HostDeleteVStorageObjectRequestType struct
function init (line 20019) | func init() {
type HostDeleteVStorageObject_Task (line 20023) | type HostDeleteVStorageObject_Task
function init (line 20025) | func init() {
type HostDeleteVStorageObject_TaskResponse (line 20029) | type HostDeleteVStorageObject_TaskResponse struct
type HostDeploymentInfo (line 20033) | type HostDeploymentInfo struct
function init (line 20039) | func init() {
type HostDevice (line 20043) | type HostDevice struct
function init (line 20050) | func init() {
type HostDhcpService (line 20054) | type HostDhcpService struct
function init (line 20061) | func init() {
type HostDhcpServiceConfig (line 20065) | type HostDhcpServiceConfig struct
function init (line 20073) | func init() {
type HostDhcpServiceSpec (line 20077) | type HostDhcpServiceSpec struct
function init (line 20090) | func init() {
type HostDiagnosticPartition (line 20094) | type HostDiagnosticPartition struct
function init (line 20103) | func init() {
type HostDiagnosticPartitionCreateDescription (line 20107) | type HostDiagnosticPartitionCreateDescription struct
function init (line 20115) | func init() {
type HostDiagnosticPartitionCreateOption (line 20119) | type HostDiagnosticPartitionCreateOption struct
function init (line 20127) | func init() {
type HostDiagnosticPartitionCreateSpec (line 20131) | type HostDiagnosticPartitionCreateSpec struct
function init (line 20141) | func init() {
type HostDigestInfo (line 20145) | type HostDigestInfo struct
function init (line 20153) | func init() {
type HostDirectoryStoreInfo (line 20157) | type HostDirectoryStoreInfo struct
function init (line 20161) | func init() {
type HostDisconnectedEvent (line 20165) | type HostDisconnectedEvent struct
function init (line 20171) | func init() {
type HostDiskConfigurationResult (line 20175) | type HostDiskConfigurationResult struct
function init (line 20183) | func init() {
type HostDiskDimensions (line 20187) | type HostDiskDimensions struct
function init (line 20191) | func init() {
type HostDiskDimensionsChs (line 20195) | type HostDiskDimensionsChs struct
function init (line 20203) | func init() {
type HostDiskDimensionsLba (line 20207) | type HostDiskDimensionsLba struct
function init (line 20214) | func init() {
type HostDiskMappingInfo (line 20218) | type HostDiskMappingInfo struct
function init (line 20226) | func init() {
type HostDiskMappingOption (line 20230) | type HostDiskMappingOption struct
function init (line 20237) | func init() {
type HostDiskMappingPartitionInfo (line 20241) | type HostDiskMappingPartitionInfo struct
function init (line 20249) | func init() {
type HostDiskMappingPartitionOption (line 20253) | type HostDiskMappingPartitionOption struct
function init (line 20261) | func init() {
type HostDiskPartitionAttributes (line 20265) | type HostDiskPartitionAttributes struct
function init (line 20278) | func init() {
type HostDiskPartitionBlockRange (line 20282) | type HostDiskPartitionBlockRange struct
function init (line 20291) | func init() {
type HostDiskPartitionInfo (line 20295) | type HostDiskPartitionInfo struct
function init (line 20303) | func init() {
type HostDiskPartitionLayout (line 20307) | type HostDiskPartitionLayout struct
function init (line 20314) | func init() {
type HostDiskPartitionSpec (line 20318) | type HostDiskPartitionSpec struct
function init (line 20327) | func init() {
type HostDnsConfig (line 20331) | type HostDnsConfig struct
function init (line 20342) | func init() {
type HostDnsConfigSpec (line 20346) | type HostDnsConfigSpec struct
function init (line 20352) | func init() {
type HostEnableAdminFailedEvent (line 20356) | type HostEnableAdminFailedEvent struct
function init (line 20362) | func init() {
type HostEsxAgentHostManagerConfigInfo (line 20366) | type HostEsxAgentHostManagerConfigInfo struct
function init (line 20373) | func init() {
type HostEvent (line 20377) | type HostEvent struct
function init (line 20381) | func init() {
type HostEventArgument (line 20385) | type HostEventArgument struct
function init (line 20391) | func init() {
type HostExtendDiskRequestType (line 20395) | type HostExtendDiskRequestType struct
function init (line 20402) | func init() {
type HostExtendDisk_Task (line 20406) | type HostExtendDisk_Task
function init (line 20408) | func init() {
type HostExtendDisk_TaskResponse (line 20412) | type HostExtendDisk_TaskResponse struct
type HostExtraNetworksEvent (line 20416) | type HostExtraNetworksEvent struct
function init (line 20422) | func init() {
type HostFaultToleranceManagerComponentHealthInfo (line 20426) | type HostFaultToleranceManagerComponentHealthInfo struct
function init (line 20433) | func init() {
type HostFeatureCapability (line 20437) | type HostFeatureCapability struct
function init (line 20445) | func init() {
type HostFeatureMask (line 20449) | type HostFeatureMask struct
function init (line 20457) | func init() {
type HostFeatureVersionInfo (line 20461) | type HostFeatureVersionInfo struct
function init (line 20468) | func init() {
type HostFibreChannelHba (line 20472) | type HostFibreChannelHba struct
function init (line 20481) | func init() {
type HostFibreChannelOverEthernetHba (line 20485) | type HostFibreChannelOverEthernetHba struct
function init (line 20494) | func init() {
type HostFibreChannelOverEthernetHbaLinkInfo (line 20498) | type HostFibreChannelOverEthernetHbaLinkInfo struct
function init (line 20506) | func init() {
type HostFibreChannelOverEthernetTargetTransport (line 20510) | type HostFibreChannelOverEthernetTargetTransport struct
function init (line 20518) | func init() {
type HostFibreChannelTargetTransport (line 20522) | type HostFibreChannelTargetTransport struct
function init (line 20529) | func init() {
type HostFileAccess (line 20533) | type HostFileAccess struct
function init (line 20540) | func init() {
type HostFileSystemMountInfo (line 20544) | type HostFileSystemMountInfo struct
function init (line 20552) | func init() {
type HostFileSystemVolume (line 20556) | type HostFileSystemVolume struct
function init (line 20564) | func init() {
type HostFileSystemVolumeInfo (line 20568) | type HostFileSystemVolumeInfo struct
function init (line 20575) | func init() {
type HostFirewallConfig (line 20579) | type HostFirewallConfig struct
function init (line 20586) | func init() {
type HostFirewallConfigRuleSetConfig (line 20590) | type HostFirewallConfigRuleSetConfig struct
function init (line 20598) | func init() {
type HostFirewallDefaultPolicy (line 20602) | type HostFirewallDefaultPolicy struct
function init (line 20609) | func init() {
type HostFirewallInfo (line 20613) | type HostFirewallInfo struct
function init (line 20620) | func init() {
type HostFirewallRule (line 20624) | type HostFirewallRule struct
function init (line 20634) | func init() {
type HostFirewallRuleset (line 20638) | type HostFirewallRuleset struct
function init (line 20650) | func init() {
type HostFirewallRulesetIpList (line 20654) | type HostFirewallRulesetIpList struct
function init (line 20662) | func init() {
type HostFirewallRulesetIpNetwork (line 20666) | type HostFirewallRulesetIpNetwork struct
function init (line 20673) | func init() {
type HostFirewallRulesetRulesetSpec (line 20677) | type HostFirewallRulesetRulesetSpec struct
function init (line 20683) | func init() {
type HostFlagInfo (line 20687) | type HostFlagInfo struct
function init (line 20693) | func init() {
type HostForceMountedInfo (line 20697) | type HostForceMountedInfo struct
function init (line 20704) | func init() {
type HostGatewaySpec (line 20708) | type HostGatewaySpec struct
function init (line 20717) | func init() {
type HostGetShortNameFailedEvent (line 20721) | type HostGetShortNameFailedEvent struct
function init (line 20725) | func init() {
type HostGetVFlashModuleDefaultConfig (line 20729) | type HostGetVFlashModuleDefaultConfig
function init (line 20731) | func init() {
type HostGetVFlashModuleDefaultConfigRequestType (line 20735) | type HostGetVFlashModuleDefaultConfigRequestType struct
function init (line 20740) | func init() {
type HostGetVFlashModuleDefaultConfigResponse (line 20744) | type HostGetVFlashModuleDefaultConfigResponse struct
type HostGraphicsConfig (line 20748) | type HostGraphicsConfig struct
function init (line 20756) | func init() {
type HostGraphicsConfigDeviceType (line 20760) | type HostGraphicsConfigDeviceType struct
function init (line 20767) | func init() {
type HostGraphicsInfo (line 20771) | type HostGraphicsInfo struct
function init (line 20782) | func init() {
type HostHardwareElementInfo (line 20786) | type HostHardwareElementInfo struct
function init (line 20793) | func init() {
type HostHardwareInfo (line 20797) | type HostHardwareInfo struct
function init (line 20813) | func init() {
type HostHardwareStatusInfo (line 20817) | type HostHardwareStatusInfo struct
function init (line 20825) | func init() {
type HostHardwareSummary (line 20829) | type HostHardwareSummary struct
function init (line 20846) | func init() {
type HostHasComponentFailure (line 20850) | type HostHasComponentFailure struct
function init (line 20858) | func init() {
type HostHasComponentFailureFault (line 20862) | type HostHasComponentFailureFault
function init (line 20864) | func init() {
type HostHostBusAdapter (line 20868) | type HostHostBusAdapter struct
function init (line 20880) | func init() {
type HostHyperThreadScheduleInfo (line 20884) | type HostHyperThreadScheduleInfo struct
function init (line 20892) | func init() {
type HostImageConfigGetAcceptance (line 20896) | type HostImageConfigGetAcceptance
function init (line 20898) | func init() {
type HostImageConfigGetAcceptanceRequestType (line 20902) | type HostImageConfigGetAcceptanceRequestType struct
function init (line 20906) | func init() {
type HostImageConfigGetAcceptanceResponse (line 20910) | type HostImageConfigGetAcceptanceResponse struct
type HostImageConfigGetProfile (line 20914) | type HostImageConfigGetProfile
function init (line 20916) | func init() {
type HostImageConfigGetProfileRequestType (line 20920) | type HostImageConfigGetProfileRequestType struct
function init (line 20924) | func init() {
type HostImageConfigGetProfileResponse (line 20928) | type HostImageConfigGetProfileResponse struct
type HostImageProfileSummary (line 20932) | type HostImageProfileSummary struct
function init (line 20939) | func init() {
type HostInAuditModeEvent (line 20943) | type HostInAuditModeEvent struct
function init (line 20947) | func init() {
type HostInDomain (line 20951) | type HostInDomain struct
function init (line 20955) | func init() {
type HostInDomainFault (line 20959) | type HostInDomainFault
function init (line 20961) | func init() {
type HostIncompatibleForFaultTolerance (line 20965) | type HostIncompatibleForFaultTolerance struct
function init (line 20972) | func init() {
type HostIncompatibleForFaultToleranceFault (line 20976) | type HostIncompatibleForFaultToleranceFault
function init (line 20978) | func init() {
type HostIncompatibleForRecordReplay (line 20982) | type HostIncompatibleForRecordReplay struct
function init (line 20989) | func init() {
type HostIncompatibleForRecordReplayFault (line 20993) | type HostIncompatibleForRecordReplayFault
function init (line 20995) | func init() {
type HostInflateDiskRequestType (line 20999) | type HostInflateDiskRequestType struct
function init (line 21005) | func init() {
type HostInflateDisk_Task (line 21009) | type HostInflateDisk_Task
function init (line 21011) | func init() {
type HostInflateDisk_TaskResponse (line 21015) | type HostInflateDisk_TaskResponse struct
type HostInternetScsiHba (line 21019) | type HostInternetScsiHba struct
function init (line 21043) | func init() {
type HostInternetScsiHbaAuthenticationCapabilities (line 21047) | type HostInternetScsiHbaAuthenticationCapabilities struct
function init (line 21059) | func init() {
type HostInternetScsiHbaAuthenticationProperties (line 21063) | type HostInternetScsiHbaAuthenticationProperties struct
function init (line 21077) | func init() {
type HostInternetScsiHbaDigestCapabilities (line 21081) | type HostInternetScsiHbaDigestCapabilities struct
function init (line 21090) | func init() {
type HostInternetScsiHbaDigestProperties (line 21094) | type HostInternetScsiHbaDigestProperties struct
function init (line 21103) | func init() {
type HostInternetScsiHbaDiscoveryCapabilities (line 21107) | type HostInternetScsiHbaDiscoveryCapabilities struct
function init (line 21116) | func init() {
type HostInternetScsiHbaDiscoveryProperties (line 21120) | type HostInternetScsiHbaDiscoveryProperties struct
function init (line 21133) | func init() {
type HostInternetScsiHbaIPCapabilities (line 21137) | type HostInternetScsiHbaIPCapabilities struct
function init (line 21162) | func init() {
type HostInternetScsiHbaIPProperties (line 21166) | type HostInternetScsiHbaIPProperties struct
function init (line 21187) | func init() {
type HostInternetScsiHbaIPv6Properties (line 21191) | type HostInternetScsiHbaIPv6Properties struct
function init (line 21201) | func init() {
type HostInternetScsiHbaIscsiIpv6Address (line 21205) | type HostInternetScsiHbaIscsiIpv6Address struct
function init (line 21214) | func init() {
type HostInternetScsiHbaParamValue (line 21218) | type HostInternetScsiHbaParamValue struct
function init (line 21224) | func init() {
type HostInternetScsiHbaSendTarget (line 21228) | type HostInternetScsiHbaSendTarget struct
function init (line 21240) | func init() {
type HostInternetScsiHbaStaticTarget (line 21244) | type HostInternetScsiHbaStaticTarget struct
function init (line 21258) | func init() {
type HostInternetScsiHbaTargetSet (line 21262) | type HostInternetScsiHbaTargetSet struct
function init (line 21269) | func init() {
type HostInternetScsiTargetTransport (line 21273) | type HostInternetScsiTargetTransport struct
function init (line 21281) | func init() {
type HostInventoryFull (line 21285) | type HostInventoryFull struct
function init (line 21291) | func init() {
type HostInventoryFullEvent (line 21295) | type HostInventoryFullEvent struct
function init (line 21301) | func init() {
type HostInventoryFullFault (line 21305) | type HostInventoryFullFault
function init (line 21307) | func init() {
type HostInventoryUnreadableEvent (line 21311) | type HostInventoryUnreadableEvent struct
function init (line 21315) | func init() {
type HostIoFilterInfo (line 21319) | type HostIoFilterInfo struct
function init (line 21325) | func init() {
type HostIpChangedEvent (line 21329) | type HostIpChangedEvent struct
function init (line 21336) | func init() {
type HostIpConfig (line 21340) | type HostIpConfig struct
function init (line 21349) | func init() {
type HostIpConfigIpV6Address (line 21353) | type HostIpConfigIpV6Address struct
function init (line 21364) | func init() {
type HostIpConfigIpV6AddressConfiguration (line 21368) | type HostIpConfigIpV6AddressConfiguration struct
function init (line 21376) | func init() {
type HostIpInconsistentEvent (line 21380) | type HostIpInconsistentEvent struct
function init (line 21387) | func init() {
type HostIpRouteConfig (line 21391) | type HostIpRouteConfig struct
function init (line 21400) | func init() {
type HostIpRouteConfigSpec (line 21404) | type HostIpRouteConfigSpec struct
function init (line 21411) | func init() {
type HostIpRouteEntry (line 21415) | type HostIpRouteEntry struct
function init (line 21424) | func init() {
type HostIpRouteOp (line 21428) | type HostIpRouteOp struct
function init (line 21435) | func init() {
type HostIpRouteTableConfig (line 21439) | type HostIpRouteTableConfig struct
function init (line 21446) | func init() {
type HostIpRouteTableInfo (line 21450) | type HostIpRouteTableInfo struct
function init (line 21457) | func init() {
type HostIpToShortNameFailedEvent (line 21461) | type HostIpToShortNameFailedEvent struct
function init (line 21465) | func init() {
type HostIpmiInfo (line 21469) | type HostIpmiInfo struct
function init (line 21478) | func init() {
type HostIsolationIpPingFailedEvent (line 21482) | type HostIsolationIpPingFailedEvent struct
function init (line 21488) | func init() {
type HostLicensableResourceInfo (line 21492) | type HostLicensableResourceInfo struct
function init (line 21498) | func init() {
type HostLicenseConnectInfo (line 21502) | type HostLicenseConnectInfo struct
function init (line 21510) | func init() {
type HostLicenseExpiredEvent (line 21514) | type HostLicenseExpiredEvent struct
function init (line 21518) | func init() {
type HostLicenseSpec (line 21522) | type HostLicenseSpec struct
function init (line 21531) | func init() {
type HostListSummary (line 21535) | type HostListSummary struct
function init (line 21552) | func init() {
type HostListSummaryGatewaySummary (line 21556) | type HostListSummaryGatewaySummary struct
function init (line 21563) | func init() {
type HostListSummaryQuickStats (line 21567) | type HostListSummaryQuickStats struct
function init (line 21577) | func init() {
type HostListVStorageObject (line 21581) | type HostListVStorageObject
function init (line 21583) | func init() {
type HostListVStorageObjectRequestType (line 21587) | type HostListVStorageObjectRequestType struct
function init (line 21592) | func init() {
type HostListVStorageObjectResponse (line 21596) | type HostListVStorageObjectResponse struct
type HostLocalAuthenticationInfo (line 21600) | type HostLocalAuthenticationInfo struct
function init (line 21604) | func init() {
type HostLocalFileSystemVolume (line 21608) | type HostLocalFileSystemVolume struct
function init (line 21614) | func init() {
type HostLocalFileSystemVolumeSpec (line 21618) | type HostLocalFileSystemVolumeSpec struct
function init (line 21625) | func init() {
type HostLocalPortCreatedEvent (line 21629) | type HostLocalPortCreatedEvent struct
function init (line 21635) | func init() {
type HostLowLevelProvisioningManagerDiskLayoutSpec (line 21639) | type HostLowLevelProvisioningManagerDiskLayoutSpec struct
function init (line 21649) | func init() {
type HostLowLevelProvisioningManagerFileDeleteResult (line 21653) | type HostLowLevelProvisioningManagerFileDeleteResult struct
function init (line 21660) | func init() {
type HostLowLevelProvisioningManagerFileDeleteSpec (line 21664) | type HostLowLevelProvisioningManagerFileDeleteSpec struct
function init (line 21671) | func init() {
type HostLowLevelProvisioningManagerFileReserveResult (line 21675) | type HostLowLevelProvisioningManagerFileReserveResult struct
function init (line 21683) | func init() {
type HostLowLevelProvisioningManagerFileReserveSpec (line 21687) | type HostLowLevelProvisioningManagerFileReserveSpec struct
function init (line 21696) | func init() {
type HostLowLevelProvisioningManagerSnapshotLayoutSpec (line 21700) | type HostLowLevelProvisioningManagerSnapshotLayoutSpec struct
function init (line 21709) | func init() {
type HostLowLevelProvisioningManagerVmMigrationStatus (line 21713) | type HostLowLevelProvisioningManagerVmMigrationStatus struct
function init (line 21722) | func init() {
type HostLowLevelProvisioningManagerVmRecoveryInfo (line 21726) | type HostLowLevelProvisioningManagerVmRecoveryInfo struct
function init (line 21735) | func init() {
type HostMaintenanceSpec (line 21739) | type HostMaintenanceSpec struct
function init (line 21745) | func init() {
type HostMemberHealthCheckResult (line 21749) | type HostMemberHealthCheckResult struct
function init (line 21755) | func init() {
type HostMemberRuntimeInfo (line 21759) | type HostMemberRuntimeInfo struct
function init (line 21768) | func init() {
type HostMemberUplinkHealthCheckResult (line 21772) | type HostMemberUplinkHealthCheckResult struct
function init (line 21778) | func init() {
type HostMemoryProfile (line 21782) | type HostMemoryProfile struct
function init (line 21786) | func init() {
type HostMemorySpec (line 21790) | type HostMemorySpec struct
function init (line 21796) | func init() {
type HostMissingNetworksEvent (line 21800) | type HostMissingNetworksEvent struct
function init (line 21806) | func init() {
type HostMonitoringStateChangedEvent (line 21810) | type HostMonitoringStateChangedEvent struct
function init (line 21817) | func init() {
type HostMountInfo (line 21821) | type HostMountInfo struct
function init (line 21831) | func init() {
type HostMultipathInfo (line 21835) | type HostMultipathInfo struct
function init (line 21841) | func init() {
type HostMultipathInfoFixedLogicalUnitPolicy (line 21845) | type HostMultipathInfoFixedLogicalUnitPolicy struct
function init (line 21851) | func init() {
type HostMultipathInfoLogicalUnit (line 21855) | type HostMultipathInfoLogicalUnit struct
function init (line 21866) | func init() {
type HostMultipathInfoLogicalUnitPolicy (line 21870) | type HostMultipathInfoLogicalUnitPolicy struct
function init (line 21876) | func init() {
type HostMultipathInfoLogicalUnitStorageArrayTypePolicy (line 21880) | type HostMultipathInfoLogicalUnitStorageArrayTypePolicy struct
function init (line 21886) | func init() {
type HostMultipathInfoPath (line 21890) | type HostMultipathInfoPath struct
function init (line 21903) | func init() {
type HostMultipathStateInfo (line 21907) | type HostMultipathStateInfo struct
function init (line 21913) | func init() {
type HostMultipathStateInfoPath (line 21917) | type HostMultipathStateInfoPath struct
function init (line 21924) | func init() {
type HostNasVolume (line 21928) | type HostNasVolume struct
function init (line 21939) | func init() {
type HostNasVolumeConfig (line 21943) | type HostNasVolumeConfig struct
function init (line 21950) | func init() {
type HostNasVolumeSpec (line 21954) | type HostNasVolumeSpec struct
function init (line 21968) | func init() {
type HostNasVolumeUserInfo (line 21972) | type HostNasVolumeUserInfo struct
function init (line 21978) | func init() {
type HostNatService (line 21982) | type HostNatService struct
function init (line 21989) | func init() {
type HostNatServiceConfig (line 21993) | type HostNatServiceConfig struct
function init (line 22001) | func init() {
type HostNatServiceNameServiceSpec (line 22005) | type HostNatServiceNameServiceSpec struct
function init (line 22018) | func init() {
type HostNatServicePortForwardSpec (line 22022) | type HostNatServicePortForwardSpec struct
function init (line 22032) | func init() {
type HostNatServiceSpec (line 22036) | type HostNatServiceSpec struct
function init (line 22049) | func init() {
type HostNetCapabilities (line 22053) | type HostNetCapabilities struct
function init (line 22071) | func init() {
type HostNetOffloadCapabilities (line 22075) | type HostNetOffloadCapabilities struct
function init (line 22083) | func init() {
type HostNetStackInstance (line 22087) | type HostNetStackInstance struct
function init (line 22100) | func init() {
type HostNetworkConfig (line 22104) | type HostNetworkConfig struct
function init (line 22123) | func init() {
type HostNetworkConfigNetStackSpec (line 22127) | type HostNetworkConfigNetStackSpec struct
function init (line 22134) | func init() {
type HostNetworkConfigResult (line 22138) | type HostNetworkConfigResult struct
function init (line 22145) | func init() {
type HostNetworkInfo (line 22149) | type HostNetworkInfo struct
function init (line 22171) | func init() {
type HostNetworkPolicy (line 22175) | type HostNetworkPolicy struct
function init (line 22184) | func init() {
type HostNetworkResourceRuntime (line 22188) | type HostNetworkResourceRuntime struct
function init (line 22194) | func init() {
type HostNetworkSecurityPolicy (line 22198) | type HostNetworkSecurityPolicy struct
function init (line 22206) | func init() {
type HostNetworkTrafficShapingPolicy (line 22210) | type HostNetworkTrafficShapingPolicy struct
function init (line 22219) | func init() {
type HostNewNetworkConnectInfo (line 22223) | type HostNewNetworkConnectInfo struct
function init (line 22227) | func init() {
type HostNicFailureCriteria (line 22231) | type HostNicFailureCriteria struct
function init (line 22243) | func init() {
type HostNicOrderPolicy (line 22247) | type HostNicOrderPolicy struct
function init (line 22254) | func init() {
type HostNicTeamingPolicy (line 22258) | type HostNicTeamingPolicy struct
function init (line 22269) | func init() {
type HostNoAvailableNetworksEvent (line 22273) | type HostNoAvailableNetworksEvent struct
function init (line 22279) | func init() {
type HostNoHAEnabledPortGroupsEvent (line 22283) | type HostNoHAEnabledPortGroupsEvent struct
function init (line 22287) | func init() {
type HostNoRedundantManagementNetworkEvent (line 22291) | type HostNoRedundantManagementNetworkEvent struct
function init (line 22295) | func init() {
type HostNonCompliantEvent (line 22299) | type HostNonCompliantEvent struct
function init (line 22303) | func init() {
type HostNotConnected (line 22307) | type HostNotConnected struct
function init (line 22311) | func init() {
type HostNotConnectedFault (line 22315) | type HostNotConnectedFault
function init (line 22317) | func init() {
type HostNotInClusterEvent (line 22321) | type HostNotInClusterEvent struct
function init (line 22325) | func init() {
type HostNotReachable (line 22329) | type HostNotReachable struct
function init (line 22333) | func init() {
type HostNotReachableFault (line 22337) | type HostNotReachableFault
function init (line 22339) | func init() {
type HostNtpConfig (line 22343) | type HostNtpConfig struct
function init (line 22350) | func init() {
type HostNumaInfo (line 22354) | type HostNumaInfo struct
function init (line 22362) | func init() {
type HostNumaNode (line 22366) | type HostNumaNode struct
function init (line 22375) | func init() {
type HostNumericSensorInfo (line 22379) | type HostNumericSensorInfo struct
function init (line 22393) | func init() {
type HostOpaqueNetworkInfo (line 22397) | type HostOpaqueNetworkInfo struct
function init (line 22408) | func init() {
type HostOpaqueSwitch (line 22412) | type HostOpaqueSwitch struct
function init (line 22424) | func init() {
type HostOpaqueSwitchPhysicalNicZone (line 22428) | type HostOpaqueSwitchPhysicalNicZone struct
function init (line 22435) | func init() {
type HostOvercommittedEvent (line 22439) | type HostOvercommittedEvent struct
function init (line 22443) | func init() {
type HostParallelScsiHba (line 22447) | type HostParallelScsiHba struct
function init (line 22451) | func init() {
type HostParallelScsiTargetTransport (line 22455) | type HostParallelScsiTargetTransport struct
function init (line 22459) | func init() {
type HostPatchManagerLocator (line 22463) | type HostPatchManagerLocator struct
function init (line 22470) | func init() {
type HostPatchManagerPatchManagerOperationSpec (line 22474) | type HostPatchManagerPatchManagerOperationSpec struct
function init (line 22484) | func init() {
type HostPatchManagerResult (line 22488) | type HostPatchManagerResult struct
function init (line 22496) | func init() {
type HostPatchManagerStatus (line 22500) | type HostPatchManagerStatus struct
function init (line 22516) | func init() {
type HostPatchManagerStatusPrerequisitePatch (line 22520) | type HostPatchManagerStatusPrerequisitePatch struct
function init (line 22527) | func init() {
type HostPathSelectionPolicyOption (line 22531) | type HostPathSelectionPolicyOption struct
function init (line 22537) | func init() {
type HostPciDevice (line 22541) | type HostPciDevice struct
function init (line 22558) | func init() {
type HostPciPassthruConfig (line 22562) | type HostPciPassthruConfig struct
function init (line 22569) | func init() {
type HostPciPassthruInfo (line 22573) | type HostPciPassthruInfo struct
function init (line 22583) | func init() {
type HostPlacedVirtualNicIdentifier (line 22587) | type HostPlacedVirtualNicIdentifier struct
function init (line 22595) | func init() {
type HostPlugStoreTopology (line 22599) | type HostPlugStoreTopology struct
function init (line 22609) | func init() {
type HostPlugStoreTopologyAdapter (line 22613) | type HostPlugStoreTopologyAdapter struct
function init (line 22621) | func init() {
type HostPlugStoreTopologyDevice (line 22625) | type HostPlugStoreTopologyDevice struct
function init (line 22633) | func init() {
type HostPlugStoreTopologyPath (line 22637) | type HostPlugStoreTopologyPath struct
function init (line 22650) | func init() {
type HostPlugStoreTopologyPlugin (line 22654) | type HostPlugStoreTopologyPlugin struct
function init (line 22663) | func init() {
type HostPlugStoreTopologyTarget (line 22667) | type HostPlugStoreTopologyTarget struct
function init (line 22674) | func init() {
type HostPnicNetworkResourceInfo (line 22678) | type HostPnicNetworkResourceInfo struct
function init (line 22687) | func init() {
type HostPortGroup (line 22691) | type HostPortGroup struct
function init (line 22701) | func init() {
type HostPortGroupConfig (line 22705) | type HostPortGroupConfig struct
function init (line 22712) | func init() {
type HostPortGroupPort (line 22716) | type HostPortGroupPort struct
function init (line 22724) | func init() {
type HostPortGroupProfile (line 22728) | type HostPortGroupProfile struct
function init (line 22734) | func init() {
type HostPortGroupSpec (line 22738) | type HostPortGroupSpec struct
function init (line 22747) | func init() {
type HostPosixAccountSpec (line 22751) | type HostPosixAccountSpec struct
function init (line 22758) | func init() {
type HostPowerOpFailed (line 22762) | type HostPowerOpFailed struct
function init (line 22766) | func init() {
type HostPowerOpFailedFault (line 22770) | type HostPowerOpFailedFault
function init (line 22772) | func init() {
type HostPowerPolicy (line 22776) | type HostPowerPolicy struct
function init (line 22785) | func init() {
type HostPrimaryAgentNotShortNameEvent (line 22789) | type HostPrimaryAgentNotShortNameEvent struct
function init (line 22795) | func init() {
type HostProfileAppliedEvent (line 22799) | type HostProfileAppliedEvent struct
function init (line 22805) | func init() {
type HostProfileCompleteConfigSpec (line 22809) | type HostProfileCompleteConfigSpec struct
function init (line 22821) | func init() {
type HostProfileConfigInfo (line 22825) | type HostProfileConfigInfo struct
function init (line 22836) | func init() {
type HostProfileConfigSpec (line 22840) | type HostProfileConfigSpec struct
function init (line 22844) | func init() {
type HostProfileHostBasedConfigSpec (line 22848) | type HostProfileHostBasedConfigSpec struct
function init (line 22855) | func init() {
type HostProfileManagerCompositionValidationResultResultElement (line 22859) | type HostProfileManagerCompositionValidationResultResultElement struct
function init (line 22874) | func init() {
type HostProfileManagerConfigTaskList (line 22878) | type HostProfileManagerConfigTaskList struct
function init (line 22886) | func init() {
type HostProfileManagerHostToConfigSpecMap (line 22890) | type HostProfileManagerHostToConfigSpecMap struct
function init (line 22897) | func init() {
type HostProfileSerializedHostProfileSpec (line 22901) | type HostProfileSerializedHostProfileSpec struct
function init (line 22908) | func init() {
type HostProfilesEntityCustomizations (line 22912) | type HostProfilesEntityCustomizations struct
function init (line 22916) | func init() {
type HostProtocolEndpoint (line 22920) | type HostProtocolEndpoint struct
function init (line 22937) | func init() {
type HostProxySwitch (line 22941) | type HostProxySwitch struct
function init (line 22958) | func init() {
type HostProxySwitchConfig (line 22962) | type HostProxySwitchConfig struct
function init (line 22970) | func init() {
type HostProxySwitchHostLagConfig (line 22974) | type HostProxySwitchHostLagConfig struct
function init (line 22982) | func init() {
type HostProxySwitchSpec (line 22986) | type HostProxySwitchSpec struct
function init (line 22992) | func init() {
type HostReconcileDatastoreInventoryRequestType (line 22996) | type HostReconcileDatastoreInventoryRequestType struct
function init (line 23001) | func init() {
type HostReconcileDatastoreInventory_Task (line 23005) | type HostReconcileDatastoreInventory_Task
function init (line 23007) | func init() {
type HostReconcileDatastoreInventory_TaskResponse (line 23011) | type HostReconcileDatastoreInventory_TaskResponse struct
type HostReconnectionFailedEvent (line 23015) | type HostReconnectionFailedEvent struct
function init (line 23019) | func init() {
type HostRegisterDisk (line 23023) | type HostRegisterDisk
function init (line 23025) | func init() {
type HostRegisterDiskRequestType (line 23029) | type HostRegisterDiskRequestType struct
function init (line 23035) | func init() {
type HostRegisterDiskResponse (line 23039) | type HostRegisterDiskResponse struct
type HostReliableMemoryInfo (line 23043) | type HostReliableMemoryInfo struct
function init (line 23049) | func init() {
type HostRelocateVStorageObjectRequestType (line 23053) | type HostRelocateVStorageObjectRequestType struct
function init (line 23060) | func init() {
type HostRelocateVStorageObject_Task (line 23064) | type HostRelocateVStorageObject_Task
function init (line 23066) | func init() {
type HostRelocateVStorageObject_TaskResponse (line 23070) | type HostRelocateVStorageObject_TaskResponse struct
type HostRemoveVFlashResource (line 23074) | type HostRemoveVFlashResource
function init (line 23076) | func init() {
type HostRemoveVFlashResourceRequestType (line 23080) | type HostRemoveVFlashResourceRequestType struct
function init (line 23084) | func init() {
type HostRemoveVFlashResourceResponse (line 23088) | type HostRemoveVFlashResourceResponse struct
type HostRemovedEvent (line 23091) | type HostRemovedEvent struct
function init (line 23095) | func init() {
type HostRenameVStorageObject (line 23099) | type HostRenameVStorageObject
function init (line 23101) | func init() {
type HostRenameVStorageObjectRequestType (line 23105) | type HostRenameVStorageObjectRequestType struct
function init (line 23112) | func init() {
type HostRenameVStorageObjectResponse (line 23116) | type HostRenameVStorageObjectResponse struct
type HostResignatureRescanResult (line 23119) | type HostResignatureRescanResult struct
function init (line 23126) | func init() {
type HostRetrieveVStorageObject (line 23130) | type HostRetrieveVStorageObject
function init (line 23132) | func init() {
type HostRetrieveVStorageObjectRequestType (line 23136) | type HostRetrieveVStorageObjectRequestType struct
function init (line 23142) | func init() {
type HostRetrieveVStorageObjectResponse (line 23146) | type HostRetrieveVStorageObjectResponse struct
type HostRetrieveVStorageObjectState (line 23150) | type HostRetrieveVStorageObjectState
function init (line 23152) | func init() {
type HostRetrieveVStorageObjectStateRequestType (line 23156) | type HostRetrieveVStorageObjectStateRequestType struct
function init (line 23162) | func init() {
type HostRetrieveVStorageObjectStateResponse (line 23166) | type HostRetrieveVStorageObjectStateResponse struct
type HostRuntimeInfo (line 23170) | type HostRuntimeInfo struct
function init (line 23190) | func init() {
type HostRuntimeInfoNetStackInstanceRuntimeInfo (line 23194) | type HostRuntimeInfoNetStackInstanceRuntimeInfo struct
function init (line 23204) | func init() {
type HostRuntimeInfoNetworkRuntimeInfo (line 23208) | type HostRuntimeInfoNetworkRuntimeInfo struct
function init (line 23215) | func init() {
type HostScheduleReconcileDatastoreInventory (line 23219) | type HostScheduleReconcileDatastoreInventory
function init (line 23221) | func init() {
type HostScheduleReconcileDatastoreInventoryRequestType (line 23225) | type HostScheduleReconcileDatastoreInventoryRequestType struct
function init (line 23230) | func init() {
type HostScheduleReconcileDatastoreInventoryResponse (line 23234) | type HostScheduleReconcileDatastoreInventoryResponse struct
type HostScsiDisk (line 23237) | type HostScsiDisk struct
function init (line 23250) | func init() {
type HostScsiDiskPartition (line 23254) | type HostScsiDiskPartition struct
function init (line 23261) | func init() {
type HostScsiTopology (line 23265) | type HostScsiTopology struct
function init (line 23271) | func init() {
type HostScsiTopologyInterface (line 23275) | type HostScsiTopologyInterface struct
function init (line 23283) | func init() {
type HostScsiTopologyLun (line 23287) | type HostScsiTopologyLun struct
function init (line 23295) | func init() {
type HostScsiTopologyTarget (line 23299) | type HostScsiTopologyTarget struct
function init (line 23308) | func init() {
type HostSecuritySpec (line 23312) | type HostSecuritySpec struct
function init (line 23320) | func init() {
type HostSerialAttachedHba (line 23324) | type HostSerialAttachedHba struct
function init (line 23330) | func init() {
type HostSerialAttachedTargetTransport (line 23334) | type HostSerialAttachedTargetTransport struct
function init (line 23338) | func init() {
type HostService (line 23342) | type HostService struct
function init (line 23355) | func init() {
type HostServiceConfig (line 23359) | type HostServiceConfig struct
function init (line 23366) | func init() {
type HostServiceInfo (line 23370) | type HostServiceInfo struct
function init (line 23376) | func init() {
type HostServiceSourcePackage (line 23380) | type HostServiceSourcePackage struct
function init (line 23387) | func init() {
type HostServiceTicket (line 23391) | type HostServiceTicket struct
function init (line 23402) | func init() {
type HostShortNameInconsistentEvent (line 23406) | type HostShortNameInconsistentEvent struct
function init (line 23413) | func init() {
type HostShortNameToIpFailedEvent (line 23417) | type HostShortNameToIpFailedEvent struct
function init (line 23423) | func init() {
type HostShutdownEvent (line 23427) | type HostShutdownEvent struct
function init (line 23433) | func init() {
type HostSnmpConfigSpec (line 23437) | type HostSnmpConfigSpec struct
function init (line 23447) | func init() {
type HostSnmpDestination (line 23451) | type HostSnmpDestination struct
function init (line 23459) | func init() {
type HostSnmpSystemAgentLimits (line 23463) | type HostSnmpSystemAgentLimits struct
function init (line 23473) | func init() {
type HostSpecGetUpdatedHosts (line 23477) | type HostSpecGetUpdatedHosts
function init (line 23479) | func init() {
type HostSpecGetUpdatedHostsRequestType (line 23483) | type HostSpecGetUpdatedHostsRequestType struct
function init (line 23489) | func init() {
type HostSpecGetUpdatedHostsResponse (line 23493) | type HostSpecGetUpdatedHostsResponse struct
type HostSpecification (line 23497) | type HostSpecification struct
function init (line 23507) | func init() {
type HostSpecificationOperationFailed (line 23511) | type HostSpecificationOperationFailed struct
function init (line 23517) | func init() {
type HostSpecificationOperationFailedFault (line 23521) | type HostSpecificationOperationFailedFault
function init (line 23523) | func init() {
type HostSriovConfig (line 23527) | type HostSriovConfig struct
function init (line 23534) | func init() {
type HostSriovDevicePoolInfo (line 23538) | type HostSriovDevicePoolInfo struct
function init (line 23544) | func init() {
type HostSriovInfo (line 23548) | type HostSriovInfo struct
function init (line 23559) | func init() {
type HostSriovNetworkDevicePoolInfo (line 23563) | type HostSriovNetworkDevicePoolInfo struct
function init (line 23571) | func init() {
type HostSslThumbprintInfo (line 23575) | type HostSslThumbprintInfo struct
function init (line 23583) | func init() {
type HostStatusChangedEvent (line 23587) | type HostStatusChangedEvent struct
function init (line 23591) | func init() {
type HostStorageArrayTypePolicyOption (line 23595) | type HostStorageArrayTypePolicyOption struct
function init (line 23601) | func init() {
type HostStorageDeviceInfo (line 23605) | type HostStorageDeviceInfo struct
function init (line 23616) | func init() {
type HostStorageElementInfo (line 23620) | type HostStorageElementInfo struct
function init (line 23626) | func init() {
type HostStorageOperationalInfo (line 23630) | type HostStorageOperationalInfo struct
function init (line 23637) | func init() {
type HostStorageSystemDiskLocatorLedResult (line 23641) | type HostStorageSystemDiskLocatorLedResult struct
function init (line 23648) | func init() {
type HostStorageSystemScsiLunResult (line 23652) | type HostStorageSystemScsiLunResult struct
function init (line 23659) | func init() {
type HostStorageSystemVmfsVolumeResult (line 23663) | type HostStorageSystemVmfsVolumeResult struct
function init (line 23670) | func init() {
type HostSubSpecification (line 23674) | type HostSubSpecification struct
function init (line 23682) | func init() {
type HostSyncFailedEvent (line 23686) | type HostSyncFailedEvent struct
function init (line 23692) | func init() {
type HostSystemHealthInfo (line 23696) | type HostSystemHealthInfo struct
function init (line 23702) | func init() {
type HostSystemIdentificationInfo (line 23706) | type HostSystemIdentificationInfo struct
function init (line 23713) | func init() {
type HostSystemInfo (line 23717) | type HostSystemInfo struct
function init (line 23726) | func init() {
type HostSystemReconnectSpec (line 23730) | type HostSystemReconnectSpec struct
function init (line 23736) | func init() {
type HostSystemResourceInfo (line 23740) | type HostSystemResourceInfo struct
function init (line 23748) | func init() {
type HostSystemSwapConfiguration (line 23752) | type HostSystemSwapConfiguration struct
function init (line 23758) | func init() {
type HostSystemSwapConfigurationDatastoreOption (line 23762) | type HostSystemSwapConfigurationDatastoreOption struct
function init (line 23768) | func init() {
type HostSystemSwapConfigurationDisabledOption (line 23772) | type HostSystemSwapConfigurationDisabledOption struct
function init (line 23776) | func init() {
type HostSystemSwapConfigurationHostCacheOption (line 23780) | type HostSystemSwapConfigurationHostCacheOption struct
function init (line 23784) | func init() {
type HostSystemSwapConfigurationHostLocalSwapOption (line 23788) | type HostSystemSwapConfigurationHostLocalSwapOption struct
function init (line 23792) | func init() {
type HostSystemSwapConfigurationSystemSwapOption (line 23796) | type HostSystemSwapConfigurationSystemSwapOption struct
function init (line 23802) | func init() {
type HostTargetTransport (line 23806) | type HostTargetTransport struct
function init (line 23810) | func init() {
type HostTpmAttestationReport (line 23814) | type HostTpmAttestationReport struct
function init (line 23822) | func init() {
type HostTpmBootSecurityOptionEventDetails (line 23826) | type HostTpmBootSecurityOptionEventDetails struct
function init (line 23832) | func init() {
type HostTpmCommandEventDetails (line 23836) | type HostTpmCommandEventDetails struct
function init (line 23842) | func init() {
type HostTpmDigestInfo (line 23846) | type HostTpmDigestInfo struct
function init (line 23852) | func init() {
type HostTpmEventDetails (line 23856) | type HostTpmEventDetails struct
function init (line 23862) | func init() {
type HostTpmEventLogEntry (line 23866) | type HostTpmEventLogEntry struct
function init (line 23873) | func init() {
type HostTpmOptionEventDetails (line 23877) | type HostTpmOptionEventDetails struct
function init (line 23884) | func init() {
type HostTpmSoftwareComponentEventDetails (line 23888) | type HostTpmSoftwareComponentEventDetails struct
function init (line 23897) | func init() {
type HostUnresolvedVmfsExtent (line 23901) | type HostUnresolvedVmfsExtent struct
function init (line 23914) | func init() {
type HostUnresolvedVmfsResignatureSpec (line 23918) | type HostUnresolvedVmfsResignatureSpec struct
function init (line 23924) | func init() {
type HostUnresolvedVmfsResolutionResult (line 23928) | type HostUnresolvedVmfsResolutionResult struct
function init (line 23936) | func init() {
type HostUnresolvedVmfsResolutionSpec (line 23940) | type HostUnresolvedVmfsResolutionSpec struct
function init (line 23947) | func init() {
type HostUnresolvedVmfsVolume (line 23951) | type HostUnresolvedVmfsVolume struct
function init (line 23961) | func init() {
type HostUnresolvedVmfsVolumeResolveStatus (line 23965) | type HostUnresolvedVmfsVolumeResolveStatus struct
function init (line 23973) | func init() {
type HostUpgradeFailedEvent (line 23977) | type HostUpgradeFailedEvent struct
function init (line 23981) | func init() {
type HostUserWorldSwapNotEnabledEvent (line 23985) | type HostUserWorldSwapNotEnabledEvent struct
function init (line 23989) | func init() {
type HostVFlashManagerVFlashCacheConfigInfo (line 23993) | type HostVFlashManagerVFlashCacheConfigInfo struct
function init (line 24001) | func init() {
type HostVFlashManagerVFlashCacheConfigInfoVFlashModuleConfigOption (line 24005) | type HostVFlashManagerVFlashCacheConfigInfoVFlashModuleConfigOption struct
function init (line 24018) | func init() {
type HostVFlashManagerVFlashCacheConfigSpec (line 24022) | type HostVFlashManagerVFlashCacheConfigSpec struct
function init (line 24029) | func init() {
type HostVFlashManagerVFlashConfigInfo (line 24033) | type HostVFlashManagerVFlashConfigInfo struct
function init (line 24040) | func init() {
type HostVFlashManagerVFlashResourceConfigInfo (line 24044) | type HostVFlashManagerVFlashResourceConfigInfo struct
function init (line 24051) | func init() {
type HostVFlashManagerVFlashResourceConfigSpec (line 24055) | type HostVFlashManagerVFlashResourceConfigSpec struct
function init (line 24061) | func init() {
type HostVFlashManagerVFlashResourceRunTimeInfo (line 24065) | type HostVFlashManagerVFlashResourceRunTimeInfo struct
function init (line 24075) | func init() {
type HostVFlashResourceConfigurationResult (line 24079) | type HostVFlashResourceConfigurationResult struct
function init (line 24087) | func init() {
type HostVMotionCompatibility (line 24091) | type HostVMotionCompatibility struct
function init (line 24098) | func init() {
type HostVMotionConfig (line 24102) | type HostVMotionConfig struct
function init (line 24109) | func init() {
type HostVMotionInfo (line 24113) | type HostVMotionInfo struct
function init (line 24120) | func init() {
type HostVMotionNetConfig (line 24124) | type HostVMotionNetConfig struct
function init (line 24131) | func init() {
type HostVfatVolume (line 24135) | type HostVfatVolume struct
function init (line 24139) | func init() {
type HostVffsSpec (line 24143) | type HostVffsSpec struct
function init (line 24152) | func init() {
type HostVffsVolume (line 24156) | type HostVffsVolume struct
function init (line 24165) | func init() {
type HostVirtualNic (line 24169) | type HostVirtualNic struct
function init (line 24179) | func init() {
type HostVirtualNicConfig (line 24183) | type HostVirtualNicConfig struct
function init (line 24192) | func init() {
type HostVirtualNicConnection (line 24196) | type HostVirtualNicConnection struct
function init (line 24203) | func init() {
type HostVirtualNicIpRouteSpec (line 24207) | type HostVirtualNicIpRouteSpec struct
function init (line 24213) | func init() {
type HostVirtualNicManagerInfo (line 24217) | type HostVirtualNicManagerInfo struct
function init (line 24223) | func init() {
type HostVirtualNicManagerNicTypeSelection (line 24227) | type HostVirtualNicManagerNicTypeSelection struct
function init (line 24234) | func init() {
type HostVirtualNicOpaqueNetworkSpec (line 24238) | type HostVirtualNicOpaqueNetworkSpec struct
function init (line 24245) | func init() {
type HostVirtualNicSpec (line 24249) | type HostVirtualNicSpec struct
function init (line 24265) | func init() {
type HostVirtualSwitch (line 24269) | type HostVirtualSwitch struct
function init (line 24282) | func init() {
type HostVirtualSwitchAutoBridge (line 24286) | type HostVirtualSwitchAutoBridge struct
function init (line 24292) | func init() {
type HostVirtualSwitchBeaconConfig (line 24296) | type HostVirtualSwitchBeaconConfig struct
function init (line 24302) | func init() {
type HostVirtualSwitchBondBridge (line 24306) | type HostVirtualSwitchBondBridge struct
function init (line 24314) | func init() {
type HostVirtualSwitchBridge (line 24318) | type HostVirtualSwitchBridge struct
function init (line 24322) | func init() {
type HostVirtualSwitchConfig (line 24326) | type HostVirtualSwitchConfig struct
function init (line 24334) | func init() {
type HostVirtualSwitchSimpleBridge (line 24338) | type HostVirtualSwitchSimpleBridge struct
function init (line 24344) | func init() {
type HostVirtualSwitchSpec (line 24348) | type HostVirtualSwitchSpec struct
function init (line 24357) | func init() {
type HostVmciAccessManagerAccessSpec (line 24361) | type HostVmciAccessManagerAccessSpec struct
function init (line 24369) | func init() {
type HostVmfsRescanResult (line 24373) | type HostVmfsRescanResult struct
function init (line 24380) | func init() {
type HostVmfsSpec (line 24384) | type HostVmfsSpec struct
function init (line 24396) | func init() {
type HostVmfsVolume (line 24400) | type HostVmfsVolume struct
function init (line 24419) | func init() {
type HostVnicConnectedToCustomizedDVPortEvent (line 24423) | type HostVnicConnectedToCustomizedDVPortEvent struct
function init (line 24430) | func init() {
type HostVsanInternalSystemCmmdsQuery (line 24434) | type HostVsanInternalSystemCmmdsQuery struct
function init (line 24442) | func init() {
type HostVsanInternalSystemDeleteVsanObjectsResult (line 24446) | type HostVsanInternalSystemDeleteVsanObjectsResult struct
function init (line 24454) | func init() {
type HostVsanInternalSystemVsanObjectOperationResult (line 24458) | type HostVsanInternalSystemVsanObjectOperationResult struct
function init (line 24465) | func init() {
type HostVsanInternalSystemVsanPhysicalDiskDiagnosticsResult (line 24469) | type HostVsanInternalSystemVsanPhysicalDiskDiagnosticsResult struct
function init (line 24477) | func init() {
type HostVvolVolume (line 24481) | type HostVvolVolume struct
function init (line 24490) | func init() {
type HostVvolVolumeSpecification (line 24494) | type HostVvolVolumeSpecification struct
function init (line 24504) | func init() {
type HostWwnChangedEvent (line 24508) | type HostWwnChangedEvent struct
function init (line 24517) | func init() {
type HostWwnConflictEvent (line 24521) | type HostWwnConflictEvent struct
function init (line 24529) | func init() {
type HotSnapshotMoveNotSupported (line 24533) | type HotSnapshotMoveNotSupported struct
function init (line 24537) | func init() {
type HotSnapshotMoveNotSupportedFault (line 24541) | type HotSnapshotMoveNotSupportedFault
function init (line 24543) | func init() {
type HourlyTaskScheduler (line 24547) | type HourlyTaskScheduler struct
function init (line 24553) | func init() {
type HttpNfcLeaseAbort (line 24557) | type HttpNfcLeaseAbort
function init (line 24559) | func init() {
type HttpNfcLeaseAbortRequestType (line 24563) | type HttpNfcLeaseAbortRequestType struct
function init (line 24568) | func init() {
type HttpNfcLeaseAbortResponse (line 24572) | type HttpNfcLeaseAbortResponse struct
type HttpNfcLeaseComplete (line 24575) | type HttpNfcLeaseComplete
function init (line 24577) | func init() {
type HttpNfcLeaseCompleteRequestType (line 24581) | type HttpNfcLeaseCompleteRequestType struct
function init (line 24585) | func init() {
type HttpNfcLeaseCompleteResponse (line 24589) | type HttpNfcLeaseCompleteResponse struct
type HttpNfcLeaseDatastoreLeaseInfo (line 24592) | type HttpNfcLeaseDatastoreLeaseInfo struct
function init (line 24599) | func init() {
type HttpNfcLeaseDeviceUrl (line 24603) | type HttpNfcLeaseDeviceUrl struct
function init (line 24616) | func init() {
type HttpNfcLeaseGetManifest (line 24620) | type HttpNfcLeaseGetManifest
function init (line 24622) | func init() {
type HttpNfcLeaseGetManifestRequestType (line 24626) | type HttpNfcLeaseGetManifestRequestType struct
function init (line 24630) | func init() {
type HttpNfcLeaseGetManifestResponse (line 24634) | type HttpNfcLeaseGetManifestResponse struct
type HttpNfcLeaseHostInfo (line 24638) | type HttpNfcLeaseHostInfo struct
function init (line 24645) | func init() {
type HttpNfcLeaseInfo (line 24649) | type HttpNfcLeaseInfo struct
function init (line 24660) | func init() {
type HttpNfcLeaseManifestEntry (line 24664) | type HttpNfcLeaseManifestEntry struct
function init (line 24675) | func init() {
type HttpNfcLeaseProgress (line 24679) | type HttpNfcLeaseProgress
function init (line 24681) | func init() {
type HttpNfcLeaseProgressRequestType (line 24685) | type HttpNfcLeaseProgressRequestType struct
function init (line 24690) | func init() {
type HttpNfcLeaseProgressResponse (line 24694) | type HttpNfcLeaseProgressResponse struct
type ID (line 24697) | type ID struct
function init (line 24703) | func init() {
type IDEDiskNotSupported (line 24707) | type IDEDiskNotSupported struct
function init (line 24711) | func init() {
type IDEDiskNotSupportedFault (line 24715) | type IDEDiskNotSupportedFault
function init (line 24717) | func init() {
type IORMNotSupportedHostOnDatastore (line 24721) | type IORMNotSupportedHostOnDatastore struct
function init (line 24729) | func init() {
type IORMNotSupportedHostOnDatastoreFault (line 24733) | type IORMNotSupportedHostOnDatastoreFault
function init (line 24735) | func init() {
type IScsiBootFailureEvent (line 24739) | type IScsiBootFailureEvent struct
function init (line 24743) | func init() {
type ImpersonateUser (line 24747) | type ImpersonateUser
function init (line 24749) | func init() {
type ImpersonateUserRequestType (line 24753) | type ImpersonateUserRequestType struct
function init (line 24759) | func init() {
type ImpersonateUserResponse (line 24763) | type ImpersonateUserResponse struct
type ImportCertificateForCAMRequestType (line 24767) | type ImportCertificateForCAMRequestType struct
function init (line 24773) | func init() {
type ImportCertificateForCAM_Task (line 24777) | type ImportCertificateForCAM_Task
function init (line 24779) | func init() {
type ImportCertificateForCAM_TaskResponse (line 24783) | type ImportCertificateForCAM_TaskResponse struct
type ImportHostAddFailure (line 24787) | type ImportHostAddFailure struct
function init (line 24793) | func init() {
type ImportHostAddFailureFault (line 24797) | type ImportHostAddFailureFault
function init (line 24799) | func init() {
type ImportOperationBulkFault (line 24803) | type ImportOperationBulkFault struct
function init (line 24809) | func init() {
type ImportOperationBulkFaultFault (line 24813) | type ImportOperationBulkFaultFault
function init (line 24815) | func init() {
type ImportOperationBulkFaultFaultOnImport (line 24819) | type ImportOperationBulkFaultFaultOnImport struct
function init (line 24827) | func init() {
type ImportSpec (line 24831) | type ImportSpec struct
function init (line 24838) | func init() {
type ImportUnmanagedSnapshot (line 24842) | type ImportUnmanagedSnapshot
function init (line 24844) | func init() {
type ImportUnmanagedSnapshotRequestType (line 24848) | type ImportUnmanagedSnapshotRequestType struct
function init (line 24855) | func init() {
type ImportUnmanagedSnapshotResponse (line 24859) | type ImportUnmanagedSnapshotResponse struct
type ImportVApp (line 24862) | type ImportVApp
function init (line 24864) | func init() {
type ImportVAppRequestType (line 24868) | type ImportVAppRequestType struct
function init (line 24875) | func init() {
type ImportVAppResponse (line 24879) | type ImportVAppResponse struct
type InUseFeatureManipulationDisallowed (line 24883) | type InUseFeatureManipulationDisallowed struct
function init (line 24887) | func init() {
type InUseFeatureManipulationDisallowedFault (line 24891) | type InUseFeatureManipulationDisallowedFault
function init (line 24893) | func init() {
type InaccessibleDatastore (line 24897) | type InaccessibleDatastore struct
function init (line 24903) | func init() {
type InaccessibleDatastoreFault (line 24907) | type InaccessibleDatastoreFault
function init (line 24909) | func init() {
type InaccessibleFTMetadataDatastore (line 24913) | type InaccessibleFTMetadataDatastore struct
function init (line 24917) | func init() {
type InaccessibleFTMetadataDatastoreFault (line 24921) | type InaccessibleFTMetadataDatastoreFault
function init (line 24923) | func init() {
type InaccessibleVFlashSource (line 24927) | type InaccessibleVFlashSource struct
function init (line 24933) | func init() {
type InaccessibleVFlashSourceFault (line 24937) | type InaccessibleVFlashSourceFault
function init (line 24939) | func init() {
type IncompatibleDefaultDevice (line 24943) | type IncompatibleDefaultDevice struct
function init (line 24949) | func init() {
type IncompatibleDefaultDeviceFault (line 24953) | type IncompatibleDefaultDeviceFault
function init (line 24955) | func init() {
type IncompatibleHostForFtSecondary (line 24959) | type IncompatibleHostForFtSecondary struct
function init (line 24966) | func init() {
type IncompatibleHostForFtSecondaryFault (line 24970) | type IncompatibleHostForFtSecondaryFault
function init (line 24972) | func init() {
type IncompatibleHostForVmReplication (line 24976) | type IncompatibleHostForVmReplication struct
function init (line 24984) | func init() {
type IncompatibleHostForVmReplicationFault (line 24988) | type IncompatibleHostForVmReplicationFault
function init (line 24990) | func init() {
type IncompatibleSetting (line 24994) | type IncompatibleSetting struct
function init (line 25000) | func init() {
type IncompatibleSettingFault (line 25004) | type IncompatibleSettingFault
function init (line 25006) | func init() {
type IncorrectFileType (line 25010) | type IncorrectFileType struct
function init (line 25014) | func init() {
type IncorrectFileTypeFault (line 25018) | type IncorrectFileTypeFault
function init (line 25020) | func init() {
type IncorrectHostInformation (line 25024) | type IncorrectHostInformation struct
function init (line 25028) | func init() {
type IncorrectHostInformationEvent (line 25032) | type IncorrectHostInformationEvent struct
function init (line 25036) | func init() {
type IncorrectHostInformationFault (line 25040) | type IncorrectHostInformationFault
function init (line 25042) | func init() {
type IndependentDiskVMotionNotSupported (line 25046) | type IndependentDiskVMotionNotSupported struct
function init (line 25050) | func init() {
type IndependentDiskVMotionNotSupportedFault (line 25054) | type IndependentDiskVMotionNotSupportedFault
function init (line 25056) | func init() {
type InflateDiskRequestType (line 25060) | type InflateDiskRequestType struct
function init (line 25066) | func init() {
type InflateDisk_Task (line 25070) | type InflateDisk_Task
function init (line 25072) | func init() {
type InflateDisk_TaskResponse (line 25076) | type InflateDisk_TaskResponse struct
type InflateVirtualDiskRequestType (line 25080) | type InflateVirtualDiskRequestType struct
function init (line 25086) | func init() {
type InflateVirtualDisk_Task (line 25090) | type InflateVirtualDisk_Task
function init (line 25092) | func init() {
type InflateVirtualDisk_TaskResponse (line 25096) | type InflateVirtualDisk_TaskResponse struct
type InfoUpgradeEvent (line 25100) | type InfoUpgradeEvent struct
function init (line 25104) | func init() {
type InheritablePolicy (line 25108) | type InheritablePolicy struct
function init (line 25114) | func init() {
type InitializeDisksRequestType (line 25118) | type InitializeDisksRequestType struct
function init (line 25123) | func init() {
type InitializeDisks_Task (line 25127) | type InitializeDisks_Task
function init (line 25129) | func init() {
type InitializeDisks_TaskResponse (line 25133) | type InitializeDisks_TaskResponse struct
type InitiateFileTransferFromGuest (line 25137) | type InitiateFileTransferFromGuest
function init (line 25139) | func init() {
type InitiateFileTransferFromGuestRequestType (line 25143) | type InitiateFileTransferFromGuestRequestType struct
function init (line 25150) | func init() {
type InitiateFileTransferFromGuestResponse (line 25154) | type InitiateFileTransferFromGuestResponse struct
type InitiateFileTransferToGuest (line 25158) | type InitiateFileTransferToGuest
function init (line 25160) | func init() {
type InitiateFileTransferToGuestRequestType (line 25164) | type InitiateFileTransferToGuestRequestType struct
function init (line 25174) | func init() {
type InitiateFileTransferToGuestResponse (line 25178) | type InitiateFileTransferToGuestResponse struct
type InstallHostPatchRequestType (line 25182) | type InstallHostPatchRequestType struct
function init (line 25189) | func init() {
type InstallHostPatchV2RequestType (line 25193) | type InstallHostPatchV2RequestType struct
function init (line 25201) | func init() {
type InstallHostPatchV2_Task (line 25205) | type InstallHostPatchV2_Task
function init (line 25207) | func init() {
type InstallHostPatchV2_TaskResponse (line 25211) | type InstallHostPatchV2_TaskResponse struct
type InstallHostPatch_Task (line 25215) | type InstallHostPatch_Task
function init (line 25217) | func init() {
type InstallHostPatch_TaskResponse (line 25221) | type InstallHostPatch_TaskResponse struct
type InstallIoFilterRequestType (line 25225) | type InstallIoFilterRequestType struct
function init (line 25231) | func init() {
type InstallIoFilter_Task (line 25235) | type InstallIoFilter_Task
function init (line 25237) | func init() {
type InstallIoFilter_TaskResponse (line 25241) | type InstallIoFilter_TaskResponse struct
type InstallServerCertificate (line 25245) | type InstallServerCertificate
function init (line 25247) | func init() {
type InstallServerCertificateRequestType (line 25251) | type InstallServerCertificateRequestType struct
function init (line 25256) | func init() {
type InstallServerCertificateResponse (line 25260) | type InstallServerCertificateResponse struct
type InstallSmartCardTrustAnchor (line 25263) | type InstallSmartCardTrustAnchor
function init (line 25265) | func init() {
type InstallSmartCardTrustAnchorRequestType (line 25269) | type InstallSmartCardTrustAnchorRequestType struct
function init (line 25274) | func init() {
type InstallSmartCardTrustAnchorResponse (line 25278) | type InstallSmartCardTrustAnchorResponse struct
type InsufficientAgentVmsDeployed (line 25281) | type InsufficientAgentVmsDeployed struct
function init (line 25289) | func init() {
type InsufficientAgentVmsDeployedFault (line 25293) | type InsufficientAgentVmsDeployedFault
function init (line 25295) | func init() {
type InsufficientCpuResourcesFault (line 25299) | type InsufficientCpuResourcesFault struct
function init (line 25306) | func init() {
type InsufficientCpuResourcesFaultFault (line 25310) | type InsufficientCpuResourcesFaultFault
function init (line 25312) | func init() {
type InsufficientDisks (line 25316) | type InsufficientDisks struct
function init (line 25320) | func init() {
type InsufficientDisksFault (line 25324) | type InsufficientDisksFault
function init (line 25326) | func init() {
type InsufficientFailoverResourcesEvent (line 25330) | type InsufficientFailoverResourcesEvent struct
function init (line 25334) | func init() {
type InsufficientFailoverResourcesFault (line 25338) | type InsufficientFailoverResourcesFault struct
function init (line 25342) | func init() {
type InsufficientFailoverResourcesFaultFault (line 25346) | type InsufficientFailoverResourcesFaultFault
function init (line 25348) | func init() {
type InsufficientGraphicsResourcesFault (line 25352) | type InsufficientGraphicsResourcesFault struct
function init (line 25356) | func init() {
type InsufficientGraphicsResourcesFaultFault (line 25360) | type InsufficientGraphicsResourcesFaultFault
function init (line 25362) | func init() {
type InsufficientHostCapacityFault (line 25366) | type InsufficientHostCapacityFault struct
function init (line 25372) | func init() {
type InsufficientHostCapacityFaultFault (line 25376) | type InsufficientHostCapacityFaultFault
function init (line 25378) | func init() {
type InsufficientHostCpuCapacityFault (line 25382) | type InsufficientHostCpuCapacityFault struct
function init (line 25389) | func init() {
type InsufficientHostCpuCapacityFaultFault (line 25393) | type InsufficientHostCpuCapacityFaultFault
function init (line 25395) | func init() {
type InsufficientHostMemoryCapacityFault (line 25399) | type InsufficientHostMemoryCapacityFault struct
function init (line 25406) | func init() {
type InsufficientHostMemoryCapacityFaultFault (line 25410) | type InsufficientHostMemoryCapacityFaultFault
function init (line 25412) | func init() {
type InsufficientMemoryResourcesFault (line 25416) | type InsufficientMemoryResourcesFault struct
function init (line 25423) | func init() {
type InsufficientMemoryResourcesFaultFault (line 25427) | type InsufficientMemoryResourcesFaultFault
function init (line 25429) | func init() {
type InsufficientNetworkCapacity (line 25433) | type InsufficientNetworkCapacity struct
function init (line 25437) | func init() {
type InsufficientNetworkCapacityFault (line 25441) | type InsufficientNetworkCapacityFault
function init (line 25443) | func init() {
type InsufficientNetworkResourcePoolCapacity (line 25447) | type InsufficientNetworkResourcePoolCapacity struct
function init (line 25458) | func init() {
type InsufficientNetworkResourcePoolCapacityFault (line 25462) | type InsufficientNetworkResourcePoolCapacityFault
function init (line 25464) | func init() {
type InsufficientPerCpuCapacity (line 25468) | type InsufficientPerCpuCapacity struct
function init (line 25472) | func init() {
type InsufficientPerCpuCapacityFault (line 25476) | type InsufficientPerCpuCapacityFault
function init (line 25478) | func init() {
type InsufficientResourcesFault (line 25482) | type InsufficientResourcesFault struct
function init (line 25486) | func init() {
type InsufficientResourcesFaultFault (line 25490) | type InsufficientResourcesFaultFault
function init (line 25492) | func init() {
type InsufficientStandbyCpuResource (line 25496) | type InsufficientStandbyCpuResource struct
function init (line 25503) | func init() {
type InsufficientStandbyCpuResourceFault (line 25507) | type InsufficientStandbyCpuResourceFault
function init (line 25509) | func init() {
type InsufficientStandbyMemoryResource (line 25513) | type InsufficientStandbyMemoryResource struct
function init (line 25520) | func init() {
type InsufficientStandbyMemoryResourceFault (line 25524) | type InsufficientStandbyMemoryResourceFault
function init (line 25526) | func init() {
type InsufficientStandbyResource (line 25530) | type InsufficientStandbyResource struct
function init (line 25534) | func init() {
type InsufficientStandbyResourceFault (line 25538) | type InsufficientStandbyResourceFault
function init (line 25540) | func init() {
type InsufficientStorageIops (line 25544) | type InsufficientStorageIops struct
function init (line 25552) | func init() {
type InsufficientStorageIopsFault (line 25556) | type InsufficientStorageIopsFault
function init (line 25558) | func init() {
type InsufficientStorageSpace (line 25562) | type InsufficientStorageSpace struct
function init (line 25566) | func init() {
type InsufficientStorageSpaceFault (line 25570) | type InsufficientStorageSpaceFault
function init (line 25572) | func init() {
type InsufficientVFlashResourcesFault (line 25576) | type InsufficientVFlashResourcesFault struct
function init (line 25585) | func init() {
type InsufficientVFlashResourcesFaultFault (line 25589) | type InsufficientVFlashResourcesFaultFault
function init (line 25591) | func init() {
type IntExpression (line 25595) | type IntExpression struct
function init (line 25601) | func init() {
type IntOption (line 25605) | type IntOption struct
function init (line 25613) | func init() {
type IntPolicy (line 25617) | type IntPolicy struct
function init (line 25623) | func init() {
type InvalidAffinitySettingFault (line 25627) | type InvalidAffinitySettingFault struct
function init (line 25631) | func init() {
type InvalidAffinitySettingFaultFault (line 25635) | type InvalidAffinitySettingFaultFault
function init (line 25637) | func init() {
type InvalidArgument (line 25641) | type InvalidArgument struct
function init (line 25647) | func init() {
type InvalidArgumentFault (line 25651) | type InvalidArgumentFault
function init (line 25653) | func init() {
type InvalidBmcRole (line 25657) | type InvalidBmcRole struct
function init (line 25661) | func init() {
type InvalidBmcRoleFault (line 25665) | type InvalidBmcRoleFault
function init (line 25667) | func init() {
type InvalidBundle (line 25671) | type InvalidBundle struct
function init (line 25675) | func init() {
type InvalidBundleFault (line 25679) | type InvalidBundleFault
function init (line 25681) | func init() {
type InvalidCAMCertificate (line 25685) | type InvalidCAMCertificate struct
function init (line 25689) | func init() {
type InvalidCAMCertificateFault (line 25693) | type InvalidCAMCertificateFault
function init (line 25695) | func init() {
type InvalidCAMServer (line 25699) | type InvalidCAMServer struct
function init (line 25705) | func init() {
type InvalidCAMServerFault (line 25709) | type InvalidCAMServerFault
function init (line 25711) | func init() {
type InvalidClientCertificate (line 25715) | type InvalidClientCertificate struct
function init (line 25719) | func init() {
type InvalidClientCertificateFault (line 25723) | type InvalidClientCertificateFault
function init (line 25725) | func init() {
type InvalidCollectorVersion (line 25729) | type InvalidCollectorVersion struct
function init (line 25733) | func init() {
type InvalidCollectorVersionFault (line 25737) | type InvalidCollectorVersionFault
function init (line 25739) | func init() {
type InvalidController (line 25743) | type InvalidController struct
function init (line 25749) | func init() {
type InvalidControllerFault (line 25753) | type InvalidControllerFault
function init (line 25755) | func init() {
type InvalidDasConfigArgument (line 25759) | type InvalidDasConfigArgument struct
function init (line 25766) | func init() {
type InvalidDasConfigArgumentFault (line 25770) | type InvalidDasConfigArgumentFault
function init (line 25772) | func init() {
type InvalidDasRestartPriorityForFtVm (line 25776) | type InvalidDasRestartPriorityForFtVm struct
function init (line 25783) | func init() {
type InvalidDasRestartPriorityForFtVmFault (line 25787) | type InvalidDasRestartPriorityForFtVmFault
function init (line 25789) | func init() {
type InvalidDatastore (line 25793) | type InvalidDatastore struct
function init (line 25800) | func init() {
type InvalidDatastoreFault (line 25804) | type InvalidDatastoreFault
function init (line 25806) | func init() {
type InvalidDatastorePath (line 25810) | type InvalidDatastorePath struct
function init (line 25816) | func init() {
type InvalidDatastorePathFault (line 25820) | type InvalidDatastorePathFault
function init (line 25822) | func init() {
type InvalidDatastoreState (line 25826) | type InvalidDatastoreState struct
function init (line 25832) | func init() {
type InvalidDatastoreStateFault (line 25836) | type InvalidDatastoreStateFault
function init (line 25838) | func init() {
type InvalidDeviceBacking (line 25842) | type InvalidDeviceBacking struct
function init (line 25846) | func init() {
type InvalidDeviceBackingFault (line 25850) | type InvalidDeviceBackingFault
function init (line 25852) | func init() {
type InvalidDeviceOperation (line 25856) | type InvalidDeviceOperation struct
function init (line 25863) | func init() {
type InvalidDeviceOperationFault (line 25867) | type InvalidDeviceOperationFault
function init (line 25869) | func init() {
type InvalidDeviceSpec (line 25873) | type InvalidDeviceSpec struct
function init (line 25879) | func init() {
type InvalidDeviceSpecFault (line 25883) | type InvalidDeviceSpecFault
function init (line 25885) | func init() {
type InvalidDiskFormat (line 25889) | type InvalidDiskFormat struct
function init (line 25893) | func init() {
type InvalidDiskFormatFault (line 25897) | type InvalidDiskFormatFault
function init (line 25899) | func init() {
type InvalidDrsBehaviorForFtVm (line 25903) | type InvalidDrsBehaviorForFtVm struct
function init (line 25910) | func init() {
type InvalidDrsBehaviorForFtVmFault (line 25914) | type InvalidDrsBehaviorForFtVmFault
function init (line 25916) | func init() {
type InvalidEditionEvent (line 25920) | type InvalidEditionEvent struct
function init (line 25926) | func init() {
type InvalidEditionLicense (line 25930) | type InvalidEditionLicense struct
function init (line 25936) | func init() {
type InvalidEditionLicenseFault (line 25940) | type InvalidEditionLicenseFault
function init (line 25942) | func init() {
type InvalidEvent (line 25946) | type InvalidEvent struct
function init (line 25950) | func init() {
type InvalidEventFault (line 25954) | type InvalidEventFault
function init (line 25956) | func init() {
type InvalidFolder (line 25960) | type InvalidFolder struct
function init (line 25966) | func init() {
type InvalidFolderFault (line 25970) | type InvalidFolderFault
function init (line 25972) | func init() {
type InvalidFormat (line 25976) | type InvalidFormat struct
function init (line 25980) | func init() {
type InvalidFormatFault (line 25984) | type InvalidFormatFault
function init (line 25986) | func init() {
type InvalidGuestLogin (line 25990) | type InvalidGuestLogin struct
function init (line 25994) | func init() {
type InvalidGuestLoginFault (line 25998) | type InvalidGuestLoginFault
function init (line 26000) | func init() {
type InvalidHostConnectionState (line 26004) | type InvalidHostConnectionState struct
function init (line 26008) | func init() {
type InvalidHostConnectionStateFault (line 26012) | type InvalidHostConnectionStateFault
function init (line 26014) | func init() {
type InvalidHostName (line 26018) | type InvalidHostName struct
function init (line 26022) | func init() {
type InvalidHostNameFault (line 26026) | type InvalidHostNameFault
function init (line 26028) | func init() {
type InvalidHostState (line 26032) | type InvalidHostState struct
function init (line 26038) | func init() {
type InvalidHostStateFault (line 26042) | type InvalidHostStateFault
function init (line 26044) | func init() {
type InvalidIndexArgument (line 26048) | type InvalidIndexArgument struct
function init (line 26054) | func init() {
type InvalidIndexArgumentFault (line 26058) | type InvalidIndexArgumentFault
function init (line 26060) | func init() {
type InvalidIpfixConfig (line 26064) | type InvalidIpfixConfig struct
function init (line 26070) | func init() {
type InvalidIpfixConfigFault (line 26074) | type InvalidIpfixConfigFault
function init (line 26076) | func init() {
type InvalidIpmiLoginInfo (line 26080) | type InvalidIpmiLoginInfo struct
function init (line 26084) | func init() {
type InvalidIpmiLoginInfoFault (line 26088) | type InvalidIpmiLoginInfoFault
function init (line 26090) | func init() {
type InvalidIpmiMacAddress (line 26094) | type InvalidIpmiMacAddress struct
function init (line 26101) | func init() {
type InvalidIpmiMacAddressFault (line 26105) | type InvalidIpmiMacAddressFault
function init (line 26107) | func init() {
type InvalidLicense (line 26111) | type InvalidLicense struct
function init (line 26117) | func init() {
type InvalidLicenseFault (line 26121) | type InvalidLicenseFault
function init (line 26123) | func init() {
type InvalidLocale (line 26127) | type InvalidLocale struct
function init (line 26131) | func init() {
type InvalidLocaleFault (line 26135) | type InvalidLocaleFault
function init (line 26137) | func init() {
type InvalidLogin (line 26141) | type InvalidLogin struct
function init (line 26145) | func init() {
type InvalidLoginFault (line 26149) | type InvalidLoginFault
function init (line 26151) | func init() {
type InvalidName (line 26155) | type InvalidName struct
function init (line 26162) | func init() {
type InvalidNameFault (line 26166) | type InvalidNameFault
function init (line 26168) | func init() {
type InvalidNasCredentials (line 26172) | type InvalidNasCredentials struct
function init (line 26178) | func init() {
type InvalidNasCredentialsFault (line 26182) | type InvalidNasCredentialsFault
function init (line 26184) | func init() {
type InvalidNetworkInType (line 26188) | type InvalidNetworkInType struct
function init (line 26192) | func init() {
type InvalidNetworkInTypeFault (line 26196) | type InvalidNetworkInTypeFault
function init (line 26198) | func init() {
type InvalidNetworkResource (line 26202) | type InvalidNetworkResource struct
function init (line 26209) | func init() {
type InvalidNetworkResourceFault (line 26213) | type InvalidNetworkResourceFault
function init (line 26215) | func init() {
type InvalidOperationOnSecondaryVm (line 26219) | type InvalidOperationOnSecondaryVm struct
function init (line 26225) | func init() {
type InvalidOperationOnSecondaryVmFault (line 26229) | type InvalidOperationOnSecondaryVmFault
function init (line 26231) | func init() {
type InvalidPowerState (line 26235) | type InvalidPowerState struct
function init (line 26242) | func init() {
type InvalidPowerStateFault (line 26246) | type InvalidPowerStateFault
function init (line 26248) | func init() {
type InvalidPrivilege (line 26252) | type InvalidPrivilege struct
function init (line 26258) | func init() {
type InvalidPrivilegeFault (line 26262) | type InvalidPrivilegeFault
function init (line 26264) | func init() {
type InvalidProfileReferenceHost (line 26268) | type InvalidProfileReferenceHost struct
function init (line 26277) | func init() {
type InvalidProfileReferenceHostFault (line 26281) | type InvalidProfileReferenceHostFault
function init (line 26283) | func init() {
type InvalidProperty (line 26287) | type InvalidProperty struct
function init (line 26293) | func init() {
type InvalidPropertyFault (line 26297) | type InvalidPropertyFault
function init (line 26299) | func init() {
type InvalidPropertyType (line 26303) | type InvalidPropertyType struct
function init (line 26307) | func init() {
type InvalidPropertyTypeFault (line 26311) | type InvalidPropertyTypeFault
function init (line 26313) | func init() {
type InvalidPropertyValue (line 26317) | type InvalidPropertyValue struct
function init (line 26321) | func init() {
type InvalidPropertyValueFault (line 26325) | type InvalidPropertyValueFault
function init (line 26327) | func init() {
type InvalidRequest (line 26331) | type InvalidRequest struct
function init (line 26335) | func init() {
type InvalidRequestFault (line 26339) | type InvalidRequestFault
function init (line 26341) | func init() {
type InvalidResourcePoolStructureFault (line 26345) | type InvalidResourcePoolStructureFault struct
function init (line 26349) | func init() {
type InvalidResourcePoolStructureFaultFault (line 26353) | type InvalidResourcePoolStructureFaultFault
function init (line 26355) | func init() {
type InvalidSnapshotFormat (line 26359) | type InvalidSnapshotFormat struct
function init (line 26363) | func init() {
type InvalidSnapshotFormatFault (line 26367) | type InvalidSnapshotFormatFault
function init (line 26369) | func init() {
type InvalidState (line 26373) | type InvalidState struct
function init (line 26377) | func init() {
type InvalidStateFault (line 26381) | type InvalidStateFault
function init (line 26383) | func init() {
type InvalidType (line 26387) | type InvalidType struct
function init (line 26393) | func init() {
type InvalidTypeFault (line 26397) | type InvalidTypeFault
function init (line 26399) | func init() {
type InvalidVmConfig (line 26403) | type InvalidVmConfig struct
function init (line 26409) | func init() {
type InvalidVmConfigFault (line 26413) | type InvalidVmConfigFault
function init (line 26415) | func init() {
type InvalidVmState (line 26419) | type InvalidVmState struct
function init (line 26425) | func init() {
type InvalidVmStateFault (line 26429) | type InvalidVmStateFault
function init (line 26431) | func init() {
type InventoryDescription (line 26435) | type InventoryDescription struct
function init (line 26450) | func init() {
type InventoryHasStandardAloneHosts (line 26454) | type InventoryHasStandardAloneHosts struct
function init (line 26460) | func init() {
type InventoryHasStandardAloneHostsFault (line 26464) | type InventoryHasStandardAloneHostsFault
function init (line 26466) | func init() {
type IoFilterHostIssue (line 26470) | type IoFilterHostIssue struct
function init (line 26477) | func init() {
type IoFilterInfo (line 26481) | type IoFilterInfo struct
function init (line 26493) | func init() {
type IoFilterQueryIssueResult (line 26497) | type IoFilterQueryIssueResult struct
function init (line 26504) | func init() {
type IpAddress (line 26508) | type IpAddress struct
function init (line 26512) | func init() {
type IpAddressProfile (line 26516) | type IpAddressProfile struct
function init (line 26520) | func init() {
type IpHostnameGeneratorError (line 26524) | type IpHostnameGeneratorError struct
function init (line 26528) | func init() {
type IpHostnameGeneratorErrorFault (line 26532) | type IpHostnameGeneratorErrorFault
function init (line 26534) | func init() {
type IpPool (line 26538) | type IpPool struct
function init (line 26556) | func init() {
type IpPoolAssociation (line 26560) | type IpPoolAssociation struct
function init (line 26567) | func init() {
type IpPoolIpPoolConfigInfo (line 26571) | type IpPoolIpPoolConfigInfo struct
function init (line 26583) | func init() {
type IpPoolManagerIpAllocation (line 26587) | type IpPoolManagerIpAllocation struct
function init (line 26594) | func init() {
type IpRange (line 26598) | type IpRange struct
function init (line 26605) | func init() {
type IpRouteProfile (line 26609) | type IpRouteProfile struct
function init (line 26615) | func init() {
type IsSharedGraphicsActive (line 26619) | type IsSharedGraphicsActive
function init (line 26621) | func init() {
type IsSharedGraphicsActiveRequestType (line 26625) | type IsSharedGraphicsActiveRequestType struct
function init (line 26629) | func init() {
type IsSharedGraphicsActiveResponse (line 26633) | type IsSharedGraphicsActiveResponse struct
type IscsiDependencyEntity (line 26637) | type IscsiDependencyEntity struct
function init (line 26645) | func init() {
type IscsiFault (line 26649) | type IscsiFault struct
function init (line 26653) | func init() {
type IscsiFaultFault (line 26657) | type IscsiFaultFault
function init (line 26659) | func init() {
type IscsiFaultInvalidVnic (line 26663) | type IscsiFaultInvalidVnic struct
function init (line 26669) | func init() {
type IscsiFaultInvalidVnicFault (line 26673) | type IscsiFaultInvalidVnicFault
function init (line 26675) | func init() {
type IscsiFaultPnicInUse (line 26679) | type IscsiFaultPnicInUse struct
function init (line 26685) | func init() {
type IscsiFaultPnicInUseFault (line 26689) | type IscsiFaultPnicInUseFault
function init (line 26691) | func init() {
type IscsiFaultVnicAlreadyBound (line 26695) | type IscsiFaultVnicAlreadyBound struct
function init (line 26701) | func init() {
type IscsiFaultVnicAlreadyBoundFault (line 26705) | type IscsiFaultVnicAlreadyBoundFault
function init (line 26707) | func init() {
type IscsiFaultVnicHasActivePaths (line 26711) | type IscsiFaultVnicHasActivePaths struct
function init (line 26717) | func init() {
type IscsiFaultVnicHasActivePathsFault (line 26721) | type IscsiFaultVnicHasActivePathsFault
function init (line 26723) | func init() {
type IscsiFaultVnicHasMultipleUplinks (line 26727) | type IscsiFaultVnicHasMultipleUplinks struct
function init (line 26733) | func init() {
type IscsiFaultVnicHasMultipleUplinksFault (line 26737) | type IscsiFaultVnicHasMultipleUplinksFault
function init (line 26739) | func init() {
type IscsiFaultVnicHasNoUplinks (line 26743) | type IscsiFaultVnicHasNoUplinks struct
function init (line 26749) | func init() {
type IscsiFaultVnicHasNoUplinksFault (line 26753) | type IscsiFaultVnicHasNoUplinksFault
function init (line 26755) | func init() {
type IscsiFaultVnicHasWrongUplink (line 26759) | type IscsiFaultVnicHasWrongUplink struct
function init (line 26765) | func init() {
type IscsiFaultVnicHasWrongUplinkFault (line 26769) | type IscsiFaultVnicHasWrongUplinkFault
function init (line 26771) | func init() {
type IscsiFaultVnicInUse (line 26775) | type IscsiFaultVnicInUse struct
function init (line 26781) | func init() {
type IscsiFaultVnicInUseFault (line 26785) | type IscsiFaultVnicInUseFault
function init (line 26787) | func init() {
type IscsiFaultVnicIsLastPath (line 26791) | type IscsiFaultVnicIsLastPath struct
function init (line 26797) | func init() {
type IscsiFaultVnicIsLastPathFault (line 26801) | type IscsiFaultVnicIsLastPathFault
function init (line 26803) | func init() {
type IscsiFaultVnicNotBound (line 26807) | type IscsiFaultVnicNotBound struct
function init (line 26813) | func init() {
type IscsiFaultVnicNotBoundFault (line 26817) | type IscsiFaultVnicNotBoundFault
function init (line 26819) | func init() {
type IscsiFaultVnicNotFound (line 26823) | type IscsiFaultVnicNotFound struct
function init (line 26829) | func init() {
type IscsiFaultVnicNotFoundFault (line 26833) | type IscsiFaultVnicNotFoundFault
function init (line 26835) | func init() {
type IscsiMigrationDependency (line 26839) | type IscsiMigrationDependency struct
function init (line 26847) | func init() {
type IscsiPortInfo (line 26851) | type IscsiPortInfo struct
function init (line 26871) | func init() {
type IscsiStatus (line 26875) | type IscsiStatus struct
function init (line 26881) | func init() {
type IsoImageFileInfo (line 26885) | type IsoImageFileInfo struct
function init (line 26889) | func init() {
type IsoImageFileQuery (line 26893) | type IsoImageFileQuery struct
function init (line 26897) | func init() {
type JoinDomainRequestType (line 26901) | type JoinDomainRequestType struct
function init (line 26908) | func init() {
type JoinDomainWithCAMRequestType (line 26912) | type JoinDomainWithCAMRequestType struct
function init (line 26918) | func init() {
type JoinDomainWithCAM_Task (line 26922) | type JoinDomainWithCAM_Task
function init (line 26924) | func init() {
type JoinDomainWithCAM_TaskResponse (line 26928) | type JoinDomainWithCAM_TaskResponse struct
type JoinDomain_Task (line 26932) | type JoinDomain_Task
function init (line 26934) | func init() {
type JoinDomain_TaskResponse (line 26938) | type JoinDomain_TaskResponse struct
type KernelModuleInfo (line 26942) | type KernelModuleInfo struct
function init (line 26960) | func init() {
type KernelModuleSectionInfo (line 26964) | type KernelModuleSectionInfo struct
function init (line 26971) | func init() {
type KeyAnyValue (line 26975) | type KeyAnyValue struct
function init (line 26982) | func init() {
type KeyProviderId (line 26986) | type KeyProviderId struct
function init (line 26992) | func init() {
type KeyValue (line 26996) | type KeyValue struct
function init (line 27003) | func init() {
type KmipClusterInfo (line 27007) | type KmipClusterInfo struct
function init (line 27015) | func init() {
type KmipServerInfo (line 27019) | type KmipServerInfo struct
function init (line 27034) | func init() {
type KmipServerSpec (line 27038) | type KmipServerSpec struct
function init (line 27046) | func init() {
type KmipServerStatus (line 27050) | type KmipServerStatus struct
function init (line 27059) | func init() {
type LargeRDMConversionNotSupported (line 27063) | type LargeRDMConversionNotSupported struct
function init (line 27069) | func init() {
type LargeRDMConversionNotSupportedFault (line 27073) | type LargeRDMConversionNotSupportedFault
function init (line 27075) | func init() {
type LargeRDMNotSupportedOnDatastore (line 27079) | type LargeRDMNotSupportedOnDatastore struct
function init (line 27087) | func init() {
type LargeRDMNotSupportedOnDatastoreFault (line 27091) | type LargeRDMNotSupportedOnDatastoreFault
function init (line 27093) | func init() {
type LatencySensitivity (line 27097) | type LatencySensitivity struct
function init (line 27104) | func init() {
type LeaveCurrentDomainRequestType (line 27108) | type LeaveCurrentDomainRequestType struct
function init (line 27113) | func init() {
type LeaveCurrentDomain_Task (line 27117) | type LeaveCurrentDomain_Task
function init (line 27119) | func init() {
type LeaveCurrentDomain_TaskResponse (line 27123) | type LeaveCurrentDomain_TaskResponse struct
type LegacyNetworkInterfaceInUse (line 27127) | type LegacyNetworkInterfaceInUse struct
function init (line 27131) | func init() {
type LegacyNetworkInterfaceInUseFault (line 27135) | type LegacyNetworkInterfaceInUseFault
function init (line 27137) | func init() {
type LicenseAssignmentFailed (line 27141) | type LicenseAssignmentFailed struct
function init (line 27147) | func init() {
type LicenseAssignmentFailedFault (line 27151) | type LicenseAssignmentFailedFault
function init (line 27153) | func init() {
type LicenseAssignmentManagerLicenseAssignment (line 27157) | type LicenseAssignmentManagerLicenseAssignment struct
function init (line 27167) | func init() {
type LicenseAvailabilityInfo (line 27171) | type LicenseAvailabilityInfo struct
function init (line 27179) | func init() {
type LicenseDiagnostics (line 27183) | type LicenseDiagnostics struct
function init (line 27197) | func init() {
type LicenseDowngradeDisallowed (line 27201) | type LicenseDowngradeDisallowed struct
function init (line 27209) | func init() {
type LicenseDowngradeDisallowedFault (line 27213) | type LicenseDowngradeDisallowedFault
function init (line 27215) | func init() {
type LicenseEntityNotFound (line 27219) | type LicenseEntityNotFound struct
function init (line 27225) | func init() {
type LicenseEntityNotFoundFault (line 27229) | type LicenseEntityNotFoundFault
function init (line 27231) | func init() {
type LicenseEvent (line 27235) | type LicenseEvent struct
function init (line 27239) | func init() {
type LicenseExpired (line 27243) | type LicenseExpired struct
function init (line 27249) | func init() {
type LicenseExpiredEvent (line 27253) | type LicenseExpiredEvent struct
function init (line 27259) | func init() {
type LicenseExpiredFault (line 27263) | type LicenseExpiredFault
function init (line 27265) | func init() {
type LicenseFeatureInfo (line 27269) | type LicenseFeatureInfo struct
function init (line 27283) | func init() {
type LicenseKeyEntityMismatch (line 27287) | type LicenseKeyEntityMismatch struct
function init (line 27291) | func init() {
type LicenseKeyEntityMismatchFault (line 27295) | type LicenseKeyEntityMismatchFault
function init (line 27297) | func init() {
type LicenseManagerEvaluationInfo (line 27301) | type LicenseManagerEvaluationInfo struct
function init (line 27307) | func init() {
type LicenseManagerLicenseInfo (line 27311) | type LicenseManagerLicenseInfo struct
function init (line 27324) | func init() {
type LicenseNonComplianceEvent (line 27328) | type LicenseNonComplianceEvent struct
function init (line 27334) | func init() {
type LicenseReservationInfo (line 27338) | type LicenseReservationInfo struct
function init (line 27346) | func init() {
type LicenseRestricted (line 27350) | type LicenseRestricted struct
function init (line 27354) | func init() {
type LicenseRestrictedEvent (line 27358) | type LicenseRestrictedEvent struct
function init (line 27362) | func init() {
type LicenseRestrictedFault (line 27366) | type LicenseRestrictedFault
function init (line 27368) | func init() {
type LicenseServerAvailableEvent (line 27372) | type LicenseServerAvailableEvent struct
function init (line 27378) | func init() {
type LicenseServerSource (line 27382) | type LicenseServerSource struct
function init (line 27388) | func init() {
type LicenseServerUnavailable (line 27392) | type LicenseServerUnavailable struct
function init (line 27398) | func init() {
type LicenseServerUnavailableEvent (line 27402) | type LicenseServerUnavailableEvent struct
function init (line 27408) | func init() {
type LicenseServerUnavailableFault (line 27412) | type LicenseServerUnavailableFault
function init (line 27414) | func init() {
type LicenseSource (line 27418) | type LicenseSource struct
function init (line 27422) | func init() {
type LicenseSourceUnavailable (line 27426) | type LicenseSourceUnavailable struct
function init (line 27432) | func init() {
type LicenseSourceUnavailableFault (line 27436) | type LicenseSourceUnavailableFault
function init (line 27438) | func init() {
type LicenseUsageInfo (line 27442) | type LicenseUsageInfo struct
function init (line 27451) | func init() {
type LimitExceeded (line 27455) | type LimitExceeded struct
function init (line 27462) | func init() {
type LimitExceededFault (line 27466) | type LimitExceededFault
function init (line 27468) | func init() {
type LinkDiscoveryProtocolConfig (line 27472) | type LinkDiscoveryProtocolConfig struct
function init (line 27479) | func init() {
type LinkLayerDiscoveryProtocolInfo (line 27483) | type LinkLayerDiscoveryProtocolInfo struct
function init (line 27492) | func init() {
type LinkProfile (line 27496) | type LinkProfile struct
function init (line 27500) | func init() {
type LinuxVolumeNotClean (line 27504) | type LinuxVolumeNotClean struct
function init (line 27508) | func init() {
type LinuxVolumeNotCleanFault (line 27512) | type LinuxVolumeNotCleanFault
function init (line 27514) | func init() {
type ListCACertificateRevocationLists (line 27518) | type ListCACertificateRevocationLists
function init (line 27520) | func init() {
type ListCACertificateRevocationListsRequestType (line 27524) | type ListCACertificateRevocationListsRequestType struct
function init (line 27528) | func init() {
type ListCACertificateRevocationListsResponse (line 27532) | type ListCACertificateRevocationListsResponse struct
type ListCACertificates (line 27536) | type ListCACertificates
function init (line 27538) | func init() {
type ListCACertificatesRequestType (line 27542) | type ListCACertificatesRequestType struct
function init (line 27546) | func init() {
type ListCACertificatesResponse (line 27550) | type ListCACertificatesResponse struct
type ListFilesInGuest (line 27554) | type ListFilesInGuest
function init (line 27556) | func init() {
type ListFilesInGuestRequestType (line 27560) | type ListFilesInGuestRequestType struct
function init (line 27570) | func init() {
type ListFilesInGuestResponse (line 27574) | type ListFilesInGuestResponse struct
type ListGuestAliases (line 27578) | type ListGuestAliases
function init (line 27580) | func init() {
type ListGuestAliasesRequestType (line 27584) | type ListGuestAliasesRequestType struct
function init (line 27591) | func init() {
type ListGuestAliasesResponse (line 27595) | type ListGuestAliasesResponse struct
type ListGuestMappedAliases (line 27599) | type ListGuestMappedAliases
function init (line 27601) | func init() {
type ListGuestMappedAliasesRequestType (line 27605) | type ListGuestMappedAliasesRequestType struct
function init (line 27611) | func init() {
type ListGuestMappedAliasesResponse (line 27615) | type ListGuestMappedAliasesResponse struct
type ListKeys (line 27619) | type ListKeys
function init (line 27621) | func init() {
type ListKeysRequestType (line 27625) | type ListKeysRequestType struct
function init (line 27630) | func init() {
type ListKeysResponse (line 27634) | type ListKeysResponse struct
type ListKmipServers (line 27638) | type ListKmipServers
function init (line 27640) | func init() {
type ListKmipServersRequestType (line 27644) | type ListKmipServersRequestType struct
function init (line 27649) | func init() {
type ListKmipServersResponse (line 27653) | type ListKmipServersResponse struct
type ListProcessesInGuest (line 27657) | type ListProcessesInGuest
function init (line 27659) | func init() {
type ListProcessesInGuestRequestType (line 27663) | type ListProcessesInGuestRequestType struct
function init (line 27670) | func init() {
type ListProcessesInGuestResponse (line 27674) | type ListProcessesInGuestResponse struct
type ListRegistryKeysInGuest (line 27678) | type ListRegistryKeysInGuest
function init (line 27680) | func init() {
type ListRegistryKeysInGuestRequestType (line 27684) | type ListRegistryKeysInGuestRequestType struct
function init (line 27693) | func init() {
type ListRegistryKeysInGuestResponse (line 27697) | type ListRegistryKeysInGuestResponse struct
type ListRegistryValuesInGuest (line 27701) | type ListRegistryValuesInGuest
function init (line 27703) | func init() {
type ListRegistryValuesInGuestRequestType (line 27707) | type ListRegistryValuesInGuestRequestType struct
function init (line 27716) | func init() {
type ListRegistryValuesInGuestResponse (line 27720) | type ListRegistryValuesInGuestResponse struct
type ListSmartCardTrustAnchors (line 27724) | type ListSmartCardTrustAnchors
function init (line 27726) | func init() {
type ListSmartCardTrustAnchorsRequestType (line 27730) | type ListSmartCardTrustAnchorsRequestType struct
function init (line 27734) | func init() {
type ListSmartCardTrustAnchorsResponse (line 27738) | type ListSmartCardTrustAnchorsResponse struct
type ListTagsAttachedToVStorageObject (line 27742) | type ListTagsAttachedToVStorageObject
function init (line 27744) | func init() {
type ListTagsAttachedToVStorageObjectRequestType (line 27748) | type ListTagsAttachedToVStorageObjectRequestType struct
function init (line 27753) | func init() {
type ListTagsAttachedToVStorageObjectResponse (line 27757) | type ListTagsAttachedToVStorageObjectResponse struct
type ListVStorageObject (line 27761) | type ListVStorageObject
function init (line 27763) | func init() {
type ListVStorageObjectRequestType (line 27767) | type ListVStorageObjectRequestType struct
function init (line 27772) | func init() {
type ListVStorageObjectResponse (line 27776) | type ListVStorageObjectResponse struct
type ListVStorageObjectsAttachedToTag (line 27780) | type ListVStorageObjectsAttachedToTag
function init (line 27782) | func init() {
type ListVStorageObjectsAttachedToTagRequestType (line 27786) | type ListVStorageObjectsAttachedToTagRequestType struct
function init (line 27792) | func init() {
type ListVStorageObjectsAttachedToTagResponse (line 27796) | type ListVStorageObjectsAttachedToTagResponse struct
type LocalDatastoreCreatedEvent (line 27800) | type LocalDatastoreCreatedEvent struct
function init (line 27807) | func init() {
type LocalDatastoreInfo (line 27811) | type LocalDatastoreInfo struct
function init (line 27817) | func init() {
type LocalLicenseSource (line 27821) | type LocalLicenseSource struct
function init (line 27827) | func init() {
type LocalTSMEnabledEvent (line 27831) | type LocalTSMEnabledEvent struct
function init (line 27835) | func init() {
type LocalizableMessage (line 27839) | type LocalizableMessage struct
function init (line 27847) | func init() {
type LocalizationManagerMessageCatalog (line 27851) | type LocalizationManagerMessageCatalog struct
function init (line 27863) | func init() {
type LocalizedMethodFault (line 27867) | type LocalizedMethodFault struct
function init (line 27874) | func init() {
type LockerMisconfiguredEvent (line 27878) | type LockerMisconfiguredEvent struct
function init (line 27884) | func init() {
type LockerReconfiguredEvent (line 27888) | type LockerReconfiguredEvent struct
function init (line 27895) | func init() {
type LogBundlingFailed (line 27899) | type LogBundlingFailed struct
function init (line 27903) | func init() {
type LogBundlingFailedFault (line 27907) | type LogBundlingFailedFault
function init (line 27909) | func init() {
type LogUserEvent (line 27913) | type LogUserEvent
function init (line 27915) | func init() {
type LogUserEventRequestType (line 27919) | type LogUserEventRequestType struct
function init (line 27925) | func init() {
type LogUserEventResponse (line 27929) | type LogUserEventResponse struct
type Login (line 27932) | type Login
function init (line 27934) | func init() {
type LoginBySSPI (line 27938) | type LoginBySSPI
function init (line 27940) | func init() {
type LoginBySSPIRequestType (line 27944) | type LoginBySSPIRequestType struct
function init (line 27950) | func init() {
type LoginBySSPIResponse (line 27954) | type LoginBySSPIResponse struct
type LoginByToken (line 27958) | type LoginByToken
function init (line 27960) | func init() {
type LoginByTokenRequestType (line 27964) | type LoginByTokenRequestType struct
function init (line 27969) | func init() {
type LoginByTokenResponse (line 27973) | type LoginByTokenResponse struct
type LoginExtensionByCertificate (line 27977) | type LoginExtensionByCertificate
function init (line 27979) | func init() {
type LoginExtensionByCertificateRequestType (line 27983) | type LoginExtensionByCertificateRequestType struct
function init (line 27989) | func init() {
type LoginExtensionByCertificateResponse (line 27993) | type LoginExtensionByCertificateResponse struct
type LoginExtensionBySubjectName (line 27997) | type LoginExtensionBySubjectName
function init (line 27999) | func init() {
type LoginExtensionBySubjectNameRequestType (line 28003) | type LoginExtensionBySubjectNameRequestType struct
function init (line 28009) | func init() {
type LoginExtensionBySubjectNameResponse (line 28013) | type LoginExtensionBySubjectNameResponse struct
type LoginRequestType (line 28017) | type LoginRequestType struct
function init (line 28024) | func init() {
type LoginResponse (line 28028) | type LoginResponse struct
type Logout (line 28032) | type Logout
function init (line 28034) | func init() {
type LogoutRequestType (line 28038) | type LogoutRequestType struct
function init (line 28042) | func init() {
type LogoutResponse (line 28046) | type LogoutResponse struct
type LongOption (line 28049) | type LongOption struct
function init (line 28057) | func init() {
type LongPolicy (line 28061) | type LongPolicy struct
function init (line 28067) | func init() {
type LookupDvPortGroup (line 28071) | type LookupDvPortGroup
function init (line 28073) | func init() {
type LookupDvPortGroupRequestType (line 28077) | type LookupDvPortGroupRequestType struct
function init (line 28082) | func init() {
type LookupDvPortGroupResponse (line 28086) | type LookupDvPortGroupResponse struct
type LookupVmOverheadMemory (line 28090) | type LookupVmOverheadMemory
function init (line 28092) | func init() {
type LookupVmOverheadMemoryRequestType (line 28096) | type LookupVmOverheadMemoryRequestType struct
function init (line 28102) | func init() {
type LookupVmOverheadMemoryResponse (line 28106) | type LookupVmOverheadMemoryResponse struct
type MacAddress (line 28110) | type MacAddress struct
function init (line 28114) | func init() {
type MacRange (line 28118) | type MacRange struct
function init (line 28125) | func init() {
type MaintenanceModeFileMove (line 28129) | type MaintenanceModeFileMove struct
function init (line 28133) | func init() {
type MaintenanceModeFileMoveFault (line 28137) | type MaintenanceModeFileMoveFault
function init (line 28139) | func init() {
type MakeDirectory (line 28143) | type MakeDirectory
function init (line 28145) | func init() {
type MakeDirectoryInGuest (line 28149) | type MakeDirectoryInGuest
function init (line 28151) | func init() {
type MakeDirectoryInGuestRequestType (line 28155) | type MakeDirectoryInGuestRequestType struct
function init (line 28163) | func init() {
type MakeDirectoryInGuestResponse (line 28167) | type MakeDirectoryInGuestResponse struct
type MakeDirectoryRequestType (line 28170) | type MakeDirectoryRequestType struct
function init (line 28177) | func init() {
type MakeDirectoryResponse (line 28181) | type MakeDirectoryResponse struct
type MakePrimaryVMRequestType (line 28184) | type MakePrimaryVMRequestType struct
function init (line 28189) | func init() {
type MakePrimaryVM_Task (line 28193) | type MakePrimaryVM_Task
function init (line 28195) | func init() {
type MakePrimaryVM_TaskResponse (line 28199) | type MakePrimaryVM_TaskResponse struct
type ManagedByInfo (line 28203) | type ManagedByInfo struct
function init (line 28210) | func init() {
type ManagedEntityEventArgument (line 28214) | type ManagedEntityEventArgument struct
function init (line 28220) | func init() {
type ManagedObjectNotFound (line 28224) | type ManagedObjectNotFound struct
function init (line 28230) | func init() {
type ManagedObjectNotFoundFault (line 28234) | type ManagedObjectNotFoundFault
function init (line 28236) | func init() {
type ManagedObjectReference (line 28240) | type ManagedObjectReference struct
function init (line 28245) | func init() {
type MarkAsLocalRequestType (line 28249) | type MarkAsLocalRequestType struct
function init (line 28254) | func init() {
type MarkAsLocal_Task (line 28258) | type MarkAsLocal_Task
function init (line 28260) | func init() {
type MarkAsLocal_TaskResponse (line 28264) | type MarkAsLocal_TaskResponse struct
type MarkAsNonLocalRequestType (line 28268) | type MarkAsNonLocalRequestType struct
function init (line 28273) | func init() {
type MarkAsNonLocal_Task (line 28277) | type MarkAsNonLocal_Task
function init (line 28279) | func init() {
type MarkAsNonLocal_TaskResponse (line 28283) | type MarkAsNonLocal_TaskResponse struct
type MarkAsNonSsdRequestType (line 28287) | type MarkAsNonSsdRequestType struct
function init (line 28292) | func init() {
type MarkAsNonSsd_Task (line 28296) | type MarkAsNonSsd_Task
function init (line 28298) | func init() {
type MarkAsNonSsd_TaskResponse (line 28302) | type MarkAsNonSsd_TaskResponse struct
type MarkAsSsdRequestType (line 28306) | type MarkAsSsdRequestType struct
function init (line 28311) | func init() {
type MarkAsSsd_Task (line 28315) | type MarkAsSsd_Task
function init (line 28317) | func init() {
type MarkAsSsd_TaskResponse (line 28321) | type MarkAsSsd_TaskResponse struct
type MarkAsTemplate (line 28325) | type MarkAsTemplate
function init (line 28327) | func init() {
type MarkAsTemplateRequestType (line 28331) | type MarkAsTemplateRequestType struct
function init (line 28335) | func init() {
type MarkAsTemplateResponse (line 28339) | type MarkAsTemplateResponse struct
type MarkAsVirtualMachine (line 28342) | type MarkAsVirtualMachine
function init (line 28344) | func init() {
type MarkAsVirtualMachineRequestType (line 28348) | type MarkAsVirtualMachineRequestType struct
function init (line 28354) | func init() {
type MarkAsVirtualMachineResponse (line 28358) | type MarkAsVirtualMachineResponse struct
type MarkDefault (line 28361) | type MarkDefault
function init (line 28363) | func init() {
type MarkDefaultRequestType (line 28367) | type MarkDefaultRequestType struct
function init (line 28372) | func init() {
type MarkDefaultResponse (line 28376) | type MarkDefaultResponse struct
type MarkForRemoval (line 28379) | type MarkForRemoval
function init (line 28381) | func init() {
type MarkForRemovalRequestType (line 28385) | type MarkForRemovalRequestType struct
function init (line 28391) | func init() {
type MarkForRemovalResponse (line 28395) | type MarkForRemovalResponse struct
type MemoryFileFormatNotSupportedByDatastore (line 28398) | type MemoryFileFormatNotSupportedByDatastore struct
function init (line 28405) | func init() {
type MemoryFileFormatNotSupportedByDatastoreFault (line 28409) | type MemoryFileFormatNotSupportedByDatastoreFault
function init (line 28411) | func init() {
type MemoryHotPlugNotSupported (line 28415) | type MemoryHotPlugNotSupported struct
function init (line 28419) | func init() {
type MemoryHotPlugNotSupportedFault (line 28423) | type MemoryHotPlugNotSupportedFault
function init (line 28425) | func init() {
type MemorySizeNotRecommended (line 28429) | type MemorySizeNotRecommended struct
function init (line 28437) | func init() {
type MemorySizeNotRecommendedFault (line 28441) | type MemorySizeNotRecommendedFault
function init (line 28443) | func init() {
type MemorySizeNotSupported (line 28447) | type MemorySizeNotSupported struct
function init (line 28455) | func init() {
type MemorySizeNotSupportedByDatastore (line 28459) | type MemorySizeNotSupportedByDatastore struct
function init (line 28467) | func init() {
type MemorySizeNotSupportedByDatastoreFault (line 28471) | type MemorySizeNotSupportedByDatastoreFault
function init (line 28473) | func init() {
type MemorySizeNotSupportedFault (line 28477) | type MemorySizeNotSupportedFault
function init (line 28479) | func init() {
type MemorySnapshotOnIndependentDisk (line 28483) | type MemorySnapshotOnIndependentDisk struct
function init (line 28487) | func init() {
type MemorySnapshotOnIndependentDiskFault (line 28491) | type MemorySnapshotOnIndependentDiskFault
function init (line 28493) | func init() {
type MergeDvsRequestType (line 28497) | type MergeDvsRequestType struct
function init (line 28502) | func init() {
type MergeDvs_Task (line 28506) | type MergeDvs_Task
function init (line 28508) | func init() {
type MergeDvs_TaskResponse (line 28512) | type MergeDvs_TaskResponse struct
type MergePermissions (line 28516) | type MergePermissions
function init (line 28518) | func init() {
type MergePermissionsRequestType (line 28522) | type MergePermissionsRequestType struct
function init (line 28528) | func init() {
type MergePermissionsResponse (line 28532) | type MergePermissionsResponse struct
type MethodAction (line 28535) | type MethodAction struct
function init (line 28542) | func init() {
type MethodActionArgument (line 28546) | type MethodActionArgument struct
function init (line 28552) | func init() {
type MethodAlreadyDisabledFault (line 28556) | type MethodAlreadyDisabledFault struct
function init (line 28562) | func init() {
type MethodAlreadyDisabledFaultFault (line 28566) | type MethodAlreadyDisabledFaultFault
function init (line 28568) | func init() {
type MethodDescription (line 28572) | type MethodDescription struct
function init (line 28578) | func init() {
type MethodDisabled (line 28582) | type MethodDisabled struct
function init (line 28588) | func init() {
type MethodDisabledFault (line 28592) | type MethodDisabledFault
function init (line 28594) | func init() {
type MethodFault (line 28598) | type MethodFault struct
function init (line 28603) | func init() {
type MethodFaultFault (line 28607) | type MethodFaultFault
function init (line 28609) | func init() {
type MethodNotFound (line 28613) | type MethodNotFound struct
function init (line 28620) | func init() {
type MethodNotFoundFault (line 28624) | type MethodNotFoundFault
function init (line 28626) | func init() {
type MetricAlarmExpression (line 28630) | type MetricAlarmExpression struct
function init (line 28642) | func init() {
type MigrateVMRequestType (line 28646) | type MigrateVMRequestType struct
function init (line 28654) | func init() {
type MigrateVM_Task (line 28658) | type MigrateVM_Task
function init (line 28660) | func init() {
type MigrateVM_TaskResponse (line 28664) | type MigrateVM_TaskResponse struct
type MigrationDisabled (line 28668) | type MigrationDisabled struct
function init (line 28672) | func init() {
type MigrationDisabledFault (line 28676) | type MigrationDisabledFault
function init (line 28678) | func init() {
type MigrationErrorEvent (line 28682) | type MigrationErrorEvent struct
function init (line 28686) | func init() {
type MigrationEvent (line 28690) | type MigrationEvent struct
function init (line 28696) | func init() {
type MigrationFault (line 28700) | type MigrationFault struct
function init (line 28704) | func init() {
type MigrationFaultFault (line 28708) | type MigrationFaultFault
function init (line 28710) | func init() {
type MigrationFeatureNotSupported (line 28714) | type MigrationFeatureNotSupported struct
function init (line 28722) | func init() {
type MigrationFeatureNotSupportedFault (line 28726) | type MigrationFeatureNotSupportedFault
function init (line 28728) | func init() {
type MigrationHostErrorEvent (line 28732) | type MigrationHostErrorEvent struct
function init (line 28738) | func init() {
type MigrationHostWarningEvent (line 28742) | type MigrationHostWarningEvent struct
function init (line 28748) | func init() {
type MigrationNotReady (line 28752) | type MigrationNotReady struct
function init (line 28758) | func init() {
type MigrationNotReadyFault (line 28762) | type MigrationNotReadyFault
function init (line 28764) | func init() {
type MigrationResourceErrorEvent (line 28768) | type MigrationResourceErrorEvent struct
function init (line 28775) | func init() {
type MigrationResourceWarningEvent (line 28779) | type MigrationResourceWarningEvent struct
function init (line 28786) | func init() {
type MigrationWarningEvent (line 28790) | type MigrationWarningEvent struct
function init (line 28794) | func init() {
type MismatchedBundle (line 28798) | type MismatchedBundle struct
function init (line 28807) | func init() {
type MismatchedBundleFault (line 28811) | type MismatchedBundleFault
function init (line 28813) | func init() {
type MismatchedNetworkPolicies (line 28817) | type MismatchedNetworkPolicies struct
function init (line 28825) | func init() {
type MismatchedNetworkPoliciesFault (line 28829) | type MismatchedNetworkPoliciesFault
function init (line 28831) | func init() {
type MismatchedVMotionNetworkNames (line 28835) | type MismatchedVMotionNetworkNames struct
function init (line 28842) | func init() {
type MismatchedVMotionNetworkNamesFault (line 28846) | type MismatchedVMotionNetworkNamesFault
function init (line 28848) | func init() {
type MissingBmcSupport (line 28852) | type MissingBmcSupport struct
function init (line 28856) | func init() {
type MissingBmcSupportFault (line 28860) | type MissingBmcSupportFault
function init (line 28862) | func init() {
type MissingController (line 28866) | type MissingController struct
function init (line 28870) | func init() {
type MissingControllerFault (line 28874) | type MissingControllerFault
function init (line 28876) | func init() {
type MissingIpPool (line 28880) | type MissingIpPool struct
function init (line 28884) | func init() {
type MissingIpPoolFault (line 28888) | type MissingIpPoolFault
function init (line 28890) | func init() {
type MissingLinuxCustResources (line 28894) | type MissingLinuxCustResources struct
function init (line 28898) | func init() {
type MissingLinuxCustResourcesFault (line 28902) | type MissingLinuxCustResourcesFault
function init (line 28904) | func init() {
type MissingNetworkIpConfig (line 28908) | type MissingNetworkIpConfig struct
function init (line 28912) | func init() {
type MissingNetworkIpConfigFault (line 28916) | type MissingNetworkIpConfigFault
function init (line 28918) | func init() {
type MissingObject (line 28922) | type MissingObject struct
function init (line 28929) | func init() {
type MissingPowerOffConfiguration (line 28933) | type MissingPowerOffConfiguration struct
function init (line 28937) | func init() {
type MissingPowerOffConfigurationFault (line 28941) | type MissingPowerOffConfigurationFault
function init (line 28943) | func init() {
type MissingPowerOnConfiguration (line 28947) | type MissingPowerOnConfiguration struct
function init (line 28951) | func init() {
type MissingPowerOnConfigurationFault (line 28955) | type MissingPowerOnConfigurationFault
function init (line 28957) | func init() {
type MissingProperty (line 28961) | type MissingProperty struct
function init (line 28968) | func init() {
type MissingWindowsCustResources (line 28972) | type MissingWindowsCustResources struct
function init (line 28976) | func init() {
type MissingWindowsCustResourcesFault (line 28980) | type MissingWindowsCustResourcesFault
function init (line 28982) | func init() {
type MksConnectionLimitReached (line 28986) | type MksConnectionLimitReached struct
function init (line 28992) | func init() {
type MksConnectionLimitReachedFault (line 28996) | type MksConnectionLimitReachedFault
function init (line 28998) | func init() {
type ModeInfo (line 29002) | type ModeInfo struct
function init (line 29013) | func init() {
type ModifyListView (line 29017) | type ModifyListView
function init (line 29019) | func init() {
type ModifyListViewRequestType (line 29023) | type ModifyListViewRequestType struct
function init (line 29029) | func init() {
type ModifyListViewResponse (line 29033) | type ModifyListViewResponse struct
type MonthlyByDayTaskScheduler (line 29037) | type MonthlyByDayTaskScheduler struct
function init (line 29043) | func init() {
type MonthlyByWeekdayTaskScheduler (line 29047) | type MonthlyByWeekdayTaskScheduler struct
function init (line 29054) | func init() {
type MonthlyTaskScheduler (line 29058) | type MonthlyTaskScheduler struct
function init (line 29062) | func init() {
type MountError (line 29066) | type MountError struct
function init (line 29073) | func init() {
type MountErrorFault (line 29077) | type MountErrorFault
function init (line 29079) | func init() {
type MountToolsInstaller (line 29083) | type MountToolsInstaller
function init (line 29085) | func init() {
type MountToolsInstallerRequestType (line 29089) | type MountToolsInstallerRequestType struct
function init (line 29093) | func init() {
type MountToolsInstallerResponse (line 29097) | type MountToolsInstallerResponse struct
type MountVffsVolume (line 29100) | type MountVffsVolume
function init (line 29102) | func init() {
type MountVffsVolumeRequestType (line 29106) | type MountVffsVolumeRequestType struct
function init (line 29111) | func init() {
type MountVffsVolumeResponse (line 29115) | type MountVffsVolumeResponse struct
type MountVmfsVolume (line 29118) | type MountVmfsVolume
function init (line 29120) | func init() {
type MountVmfsVolumeExRequestType (line 29124) | type MountVmfsVolumeExRequestType struct
function init (line 29129) | func init() {
type MountVmfsVolumeEx_Task (line 29133) | type MountVmfsVolumeEx_Task
function init (line 29135) | func init() {
type MountVmfsVolumeEx_TaskResponse (line 29139) | type MountVmfsVolumeEx_TaskResponse struct
type MountVmfsVolumeRequestType (line 29143) | type MountVmfsVolumeRequestType struct
function init (line 29148) | func init() {
type MountVmfsVolumeResponse (line 29152) | type MountVmfsVolumeResponse struct
type MoveDVPortRequestType (line 29155) | type MoveDVPortRequestType struct
function init (line 29161) | func init() {
type MoveDVPort_Task (line 29165) | type MoveDVPort_Task
function init (line 29167) | func init() {
type MoveDVPort_TaskResponse (line 29171) | type MoveDVPort_TaskResponse struct
type MoveDatastoreFileRequestType (line 29175) | type MoveDatastoreFileRequestType struct
function init (line 29184) | func init() {
type MoveDatastoreFile_Task (line 29188) | type MoveDatastoreFile_Task
function init (line 29190) | func init() {
type MoveDatastoreFile_TaskResponse (line 29194) | type MoveDatastoreFile_TaskResponse struct
type MoveDirectoryInGuest (line 29198) | type MoveDirectoryInGuest
function init (line 29200) | func init() {
type MoveDirectoryInGuestRequestType (line 29204) | type MoveDirectoryInGuestRequestType struct
function init (line 29212) | func init() {
type MoveDirectoryInGuestResponse (line 29216) | type MoveDirectoryInGuestResponse struct
type MoveFileInGuest (line 29219) | type MoveFileInGuest
function init (line 29221) | func init() {
type MoveFileInGuestRequestType (line 29225) | type MoveFileInGuestRequestType struct
function init (line 29234) | func init() {
type MoveFileInGuestResponse (line 29238) | type MoveFileInGuestResponse struct
type MoveHostIntoRequestType (line 29241) | type MoveHostIntoRequestType struct
function init (line 29247) | func init() {
type MoveHostInto_Task (line 29251) | type MoveHostInto_Task
function init (line 29253) | func init() {
type MoveHostInto_TaskResponse (line 29257) | type MoveHostInto_TaskResponse struct
type MoveIntoFolderRequestType (line 29261) | type MoveIntoFolderRequestType struct
function init (line 29266) | func init() {
type MoveIntoFolder_Task (line 29270) | type MoveIntoFolder_Task
function init (line 29272) | func init() {
type MoveIntoFolder_TaskResponse (line 29276) | type MoveIntoFolder_TaskResponse struct
type MoveIntoRequestType (line 29280) | type MoveIntoRequestType struct
function init (line 29285) | func init() {
type MoveIntoResourcePool (line 29289) | type MoveIntoResourcePool
function init (line 29291) | func init() {
type MoveIntoResourcePoolRequestType (line 29295) | type MoveIntoResourcePoolRequestType struct
function init (line 29300) | func init() {
type MoveIntoResourcePoolResponse (line 29304) | type MoveIntoResourcePoolResponse struct
type MoveInto_Task (line 29307) | type MoveInto_Task
function init (line 29309) | func init() {
type MoveInto_TaskResponse (line 29313) | type MoveInto_TaskResponse struct
type MoveVirtualDiskRequestType (line 29317) | type MoveVirtualDiskRequestType struct
function init (line 29327) | func init() {
type MoveVirtualDisk_Task (line 29331) | type MoveVirtualDisk_Task
function init (line 29333) | func init() {
type MoveVirtualDisk_TaskResponse (line 29337) | type MoveVirtualDisk_TaskResponse struct
type MtuMatchEvent (line 29341) | type MtuMatchEvent struct
function init (line 29345) | func init() {
type MtuMismatchEvent (line 29349) | type MtuMismatchEvent struct
function init (line 29353) | func init() {
type MultiWriterNotSupported (line 29357) | type MultiWriterNotSupported struct
function init (line 29361) | func init() {
type MultiWriterNotSupportedFault (line 29365) | type MultiWriterNotSupportedFault
function init (line 29367) | func init() {
type MultipleCertificatesVerifyFault (line 29371) | type MultipleCertificatesVerifyFault struct
function init (line 29377) | func init() {
type MultipleCertificatesVerifyFaultFault (line 29381) | type MultipleCertificatesVerifyFaultFault
function init (line 29383) | func init() {
type MultipleCertificatesVerifyFaultThumbprintData (line 29387) | type MultipleCertificatesVerifyFaultThumbprintData struct
function init (line 29394) | func init() {
type MultipleSnapshotsNotSupported (line 29398) | type MultipleSnapshotsNotSupported struct
function init (line 29402) | func init() {
type MultipleSnapshotsNotSupportedFault (line 29406) | type MultipleSnapshotsNotSupportedFault
function init (line 29408) | func init() {
type NASDatastoreCreatedEvent (line 29412) | type NASDatastoreCreatedEvent struct
function init (line 29419) | func init() {
type NamePasswordAuthentication (line 29423) | type NamePasswordAuthentication struct
function init (line 29430) | func init() {
type NamespaceFull (line 29434) | type NamespaceFull struct
function init (line 29442) | func init() {
type NamespaceFullFault (line 29446) | type NamespaceFullFault
function init (line 29448) | func init() {
type NamespaceLimitReached (line 29452) | type NamespaceLimitReached struct
function init (line 29458) | func init() {
type NamespaceLimitReachedFault (line 29462) | type NamespaceLimitReachedFault
function init (line 29464) | func init() {
type NamespaceWriteProtected (line 29468) | type NamespaceWriteProtected struct
function init (line 29474) | func init() {
type NamespaceWriteProtectedFault (line 29478) | type NamespaceWriteProtectedFault
function init (line 29480) | func init() {
type NasConfigFault (line 29484) | type NasConfigFault struct
function init (line 29490) | func init() {
type NasConfigFaultFault (line 29494) | type NasConfigFaultFault
function init (line 29496) | func init() {
type NasConnectionLimitReached (line 29500) | type NasConnectionLimitReached struct
function init (line 29507) | func init() {
type NasConnectionLimitReachedFault (line 29511) | type NasConnectionLimitReachedFault
function init (line 29513) | func init() {
type NasDatastoreInfo (line 29517) | type NasDatastoreInfo struct
function init (line 29523) | func init() {
type NasSessionCredentialConflict (line 29527) | type NasSessionCredentialConflict struct
function init (line 29535) | func init() {
type NasSessionCredentialConflictFault (line 29539) | type NasSessionCredentialConflictFault
function init (line 29541) | func init() {
type NasStorageProfile (line 29545) | type NasStorageProfile struct
function init (line 29551) | func init() {
type NasVolumeNotMounted (line 29555) | type NasVolumeNotMounted struct
function init (line 29562) | func init() {
type NasVolumeNotMountedFault (line 29566) | type NasVolumeNotMountedFault
function init (line 29568) | func init() {
type NegatableExpression (line 29572) | type NegatableExpression struct
function init (line 29578) | func init() {
type NetBIOSConfigInfo (line 29582) | type NetBIOSConfigInfo struct
function init (line 29588) | func init() {
type NetDhcpConfigInfo (line 29592) | type NetDhcpConfigInfo struct
function init (line 29599) | func init() {
type NetDhcpConfigInfoDhcpOptions (line 29603) | type NetDhcpConfigInfoDhcpOptions struct
function init (line 29610) | func init() {
type NetDhcpConfigSpec (line 29614) | type NetDhcpConfigSpec struct
function init (line 29621) | func init() {
type NetDhcpConfigSpecDhcpOptionsSpec (line 29625) | type NetDhcpConfigSpecDhcpOptionsSpec struct
function init (line 29633) | func init() {
type NetDnsConfigInfo (line 29637) | type NetDnsConfigInfo struct
function init (line 29647) | func init() {
type NetDnsConfigSpec (line 29651) | type NetDnsConfigSpec struct
function init (line 29661) | func init() {
type NetIpConfigInfo (line 29665) | type NetIpConfigInfo struct
function init (line 29673) | func init() {
type NetIpConfigInfoIpAddress (line 29677) | type NetIpConfigInfoIpAddress struct
function init (line 29687) | func init() {
type NetIpConfigSpec (line 29691) | type NetIpConfigSpec struct
function init (line 29699) | func init() {
type NetIpConfigSpecIpAddressSpec (line 29703) | type NetIpConfigSpecIpAddressSpec struct
function init (line 29711) | func init() {
type NetIpRouteConfigInfo (line 29715) | type NetIpRouteConfigInfo struct
function init (line 29721) | func init() {
type NetIpRouteConfigInfoGateway (line 29725) | type NetIpRouteConfigInfoGateway struct
function init (line 29732) | func init() {
type NetIpRouteConfigInfoIpRoute (line 29736) | type NetIpRouteConfigInfoIpRoute struct
function init (line 29744) | func init() {
type NetIpRouteConfigSpec (line 29748) | type NetIpRouteConfigSpec struct
function init (line 29754) | func init() {
type NetIpRouteConfigSpecGatewaySpec (line 29758) | type NetIpRouteConfigSpecGatewaySpec struct
function init (line 29765) | func init() {
type NetIpRouteConfigSpecIpRouteSpec (line 29769) | type NetIpRouteConfigSpecIpRouteSpec struct
function init (line 29778) | func init() {
type NetIpStackInfo (line 29782) | type NetIpStackInfo struct
function init (line 29789) | func init() {
type NetIpStackInfoDefaultRouter (line 29793) | type NetIpStackInfoDefaultRouter struct
function init (line 29802) | func init() {
type NetIpStackInfoNetToMedia (line 29806) | type NetIpStackInfoNetToMedia struct
function init (line 29815) | func init() {
type NetStackInstanceProfile (line 29819) | type NetStackInstanceProfile struct
function init (line 29827) | func init() {
type NetworkCopyFault (line 29831) | type NetworkCopyFault struct
function init (line 29835) | func init() {
type NetworkCopyFaultFault (line 29839) | type NetworkCopyFaultFault
function init (line 29841) | func init() {
type NetworkDisruptedAndConfigRolledBack (line 29845) | type NetworkDisruptedAndConfigRolledBack struct
function init (line 29851) | func init() {
type NetworkDisruptedAndConfigRolledBackFault (line 29855) | type NetworkDisruptedAndConfigRolledBackFault
function init (line 29857) | func init() {
type NetworkEventArgument (line 29861) | type NetworkEventArgument struct
function init (line 29867) | func init() {
type NetworkInaccessible (line 29871) | type NetworkInaccessible struct
function init (line 29875) | func init() {
type NetworkInaccessibleFault (line 29879) | type NetworkInaccessibleFault
function init (line 29881) | func init() {
type NetworkPolicyProfile (line 29885) | type NetworkPolicyProfile struct
function init (line 29889) | func init() {
type NetworkProfile (line 29893) | type NetworkProfile struct
function init (line 29910) | func init() {
type NetworkProfileDnsConfigProfile (line 29914) | type NetworkProfileDnsConfigProfile struct
function init (line 29918) | func init() {
type NetworkRollbackEvent (line 29922) | type NetworkRollbackEvent struct
function init (line 29929) | func init() {
type NetworkSummary (line 29933) | type NetworkSummary struct
function init (line 29943) | func init() {
type NetworksMayNotBeTheSame (line 29947) | type NetworksMayNotBeTheSame struct
function init (line 29953) | func init() {
type NetworksMayNotBeTheSameFault (line 29957) | type NetworksMayNotBeTheSameFault
function init (line 29959) | func init() {
type NicSettingMismatch (line 29963) | type NicSettingMismatch struct
function init (line 29970) | func init() {
type NicSettingMismatchFault (line 29974) | type NicSettingMismatchFault
function init (line 29976) | func init() {
type NoAccessUserEvent (line 29980) | type NoAccessUserEvent struct
function init (line 29986) | func init() {
type NoActiveHostInCluster (line 29990) | type NoActiveHostInCluster struct
function init (line 29996) | func init() {
type NoActiveHostInClusterFault (line 30000) | type NoActiveHostInClusterFault
function init (line 30002) | func init() {
type NoAvailableIp (line 30006) | type NoAvailableIp struct
function init (line 30012) | func init() {
type NoAvailableIpFault (line 30016) | type NoAvailableIpFault
function init (line 30018) | func init() {
type NoClientCertificate (line 30022) | type NoClientCertificate struct
function init (line 30026) | func init() {
type NoClientCertificateFault (line 30030) | type NoClientCertificateFault
function init (line 30032) | func init() {
type NoCompatibleDatastore (line 30036) | type NoCompatibleDatastore struct
function init (line 30040) | func init() {
type NoCompatibleDatastoreFault (line 30044) | type NoCompatibleDatastoreFault
function init (line 30046) | func init() {
type NoCompatibleHardAffinityHost (line 30050) | type NoCompatibleHardAffinityHost struct
function init (line 30056) | func init() {
type NoCompatibleHardAffinityHostFault (line 30060) | type NoCompatibleHardAffinityHostFault
function init (line 30062) | func init() {
type NoCompatibleHost (line 30066) | type NoCompatibleHost struct
function init (line 30073) | func init() {
type NoCompatibleHostFault (line 30077) | type NoCompatibleHostFault
function init (line 30079) | func init() {
type NoCompatibleHostWithAccessToDevice (line 30083) | type NoCompatibleHostWithAccessToDevice struct
function init (line 30087) | func init() {
type NoCompatibleHostWithAccessToDeviceFault (line 30091) | type NoCompatibleHostWithAccessToDeviceFault
function init (line 30093) | func init() {
type NoCompatibleSoftAffinityHost (line 30097) | type NoCompatibleSoftAffinityHost struct
function init (line 30103) | func init() {
type NoCompatibleSoftAffinityHostFault (line 30107) | type NoCompatibleSoftAffinityHostFault
function init (line 30109) | func init() {
type NoConnectedDatastore (line 30113) | type NoConnectedDatastore struct
function init (line 30117) | func init() {
type NoConnectedDatastoreFault (line 30121) | type NoConnectedDatastoreFault
function init (line 30123) | func init() {
type NoDatastoresConfiguredEvent (line 30127) | type NoDatastoresConfiguredEvent struct
function init (line 30131) | func init() {
type NoDiskFound (line 30135) | type NoDiskFound struct
function init (line 30139) | func init() {
type NoDiskFoundFault (line 30143) | type NoDiskFoundFault
function init (line 30145) | func init() {
type NoDiskSpace (line 30149) | type NoDiskSpace struct
function init (line 30155) | func init() {
type NoDiskSpaceFault (line 30159) | type NoDiskSpaceFault
function init (line 30161) | func init() {
type NoDisksToCustomize (line 30165) | type NoDisksToCustomize struct
function init (line 30169) | func init() {
type NoDisksToCustomizeFault (line 30173) | type NoDisksToCustomizeFault
function init (line 30175) | func init() {
type NoGateway (line 30179) | type NoGateway struct
function init (line 30183) | func init() {
type NoGatewayFault (line 30187) | type NoGatewayFault
function init (line 30189) | func init() {
type NoGuestHeartbeat (line 30193) | type NoGuestHeartbeat struct
function init (line 30197) | func init() {
type NoGuestHeartbeatFault (line 30201) | type NoGuestHeartbeatFault
function init (line 30203) | func init() {
type NoHost (line 30207) | type NoHost struct
function init (line 30213) | func init() {
type NoHostFault (line 30217) | type NoHostFault
function init (line 30219) | func init() {
type NoHostSuitableForFtSecondary (line 30223) | type NoHostSuitableForFtSecondary struct
function init (line 30230) | func init() {
type NoHostSuitableForFtSecondaryFault (line 30234) | type NoHostSuitableForFtSecondaryFault
function init (line 30236) | func init() {
type NoLicenseEvent (line 30240) | type NoLicenseEvent struct
function init (line 30246) | func init() {
type NoLicenseServerConfigured (line 30250) | type NoLicenseServerConfigured struct
function init (line 30254) | func init() {
type NoLicenseServerConfiguredFault (line 30258) | type NoLicenseServerConfiguredFault
function init (line 30260) | func init() {
type NoMaintenanceModeDrsRecommendationForVM (line 30264) | type NoMaintenanceModeDrsRecommendationForVM struct
function init (line 30268) | func init() {
type NoPeerHostFound (line 30272) | type NoPeerHostFound struct
function init (line 30276) | func init() {
type NoPeerHostFoundFault (line 30280) | type NoPeerHostFoundFault
function init (line 30282) | func init() {
type NoPermission (line 30286) | type NoPermission struct
function init (line 30293) | func init() {
type NoPermissionFault (line 30297) | type NoPermissionFault
function init (line 30299) | func init() {
type NoPermissionOnAD (line 30303) | type NoPermissionOnAD struct
function init (line 30307) | func init() {
type NoPermissionOnADFault (line 30311) | type NoPermissionOnADFault
function init (line 30313) | func init() {
type NoPermissionOnHost (line 30317) | type NoPermissionOnHost struct
function init (line 30321) | func init() {
type NoPermissionOnHostFault (line 30325) | type NoPermissionOnHostFault
function init (line 30327) | func init() {
type NoPermissionOnNasVolume (line 30331) | type NoPermissionOnNasVolume struct
function init (line 30337) | func init() {
type NoPermissionOnNasVolumeFault (line 30341) | type NoPermissionOnNasVolumeFault
function init (line 30343) | func init() {
type NoSubjectName (line 30347) | type NoSubjectName struct
function init (line 30351) | func init() {
type NoSubjectNameFault (line 30355) | type NoSubjectNameFault
function init (line 30357) | func init() {
type NoVcManagedIpConfigured (line 30361) | type NoVcManagedIpConfigured struct
function init (line 30365) | func init() {
type NoVcManagedIpConfiguredFault (line 30369) | type NoVcManagedIpConfiguredFault
function init (line 30371) | func init() {
type NoVirtualNic (line 30375) | type NoVirtualNic struct
function init (line 30379) | func init() {
type NoVirtualNicFault (line 30383) | type NoVirtualNicFault
function init (line 30385) | func init() {
type NoVmInVApp (line 30389) | type NoVmInVApp struct
function init (line 30393) | func init() {
type NoVmInVAppFault (line 30397) | type NoVmInVAppFault
function init (line 30399) | func init() {
type NodeDeploymentSpec (line 30403) | type NodeDeploymentSpec struct
function init (line 30417) | func init() {
type NodeNetworkSpec (line 30421) | type NodeNetworkSpec struct
function init (line 30427) | func init() {
type NonADUserRequired (line 30431) | type NonADUserRequired struct
function init (line 30435) | func init() {
type NonADUserRequiredFault (line 30439) | type NonADUserRequiredFault
function init (line 30441) | func init() {
type NonHomeRDMVMotionNotSupported (line 30445) | type NonHomeRDMVMotionNotSupported struct
function init (line 30451) | func init() {
type NonHomeRDMVMotionNotSupportedFault (line 30455) | type NonHomeRDMVMotionNotSupportedFault
function init (line 30457) | func init() {
type NonPersistentDisksNotSupported (line 30461) | type NonPersistentDisksNotSupported struct
function init (line 30465) | func init() {
type NonPersistentDisksNotSupportedFault (line 30469) | type NonPersistentDisksNotSupportedFault
function init (line 30471) | func init() {
type NonVIWorkloadDetectedOnDatastoreEvent (line 30475) | type NonVIWorkloadDetectedOnDatastoreEvent struct
function init (line 30479) | func init() {
type NonVmwareOuiMacNotSupportedHost (line 30483) | type NonVmwareOuiMacNotSupportedHost struct
function init (line 30489) | func init() {
type NonVmwareOuiMacNotSupportedHostFault (line 30493) | type NonVmwareOuiMacNotSupportedHostFault
function init (line 30495) | func init() {
type NotADirectory (line 30499) | type NotADirectory struct
function init (line 30503) | func init() {
type NotADirectoryFault (line 30507) | type NotADirectoryFault
function init (line 30509) | func init() {
type NotAFile (line 30513) | type NotAFile struct
function init (line 30517) | func init() {
type NotAFileFault (line 30521) | type NotAFileFault
function init (line 30523) | func init() {
type NotAuthenticated (line 30527) | type NotAuthenticated struct
function init (line 30531) | func init() {
type NotAuthenticatedFault (line 30535) | type NotAuthenticatedFault
function init (line 30537) | func init() {
type NotEnoughCpus (line 30541) | type NotEnoughCpus struct
function init (line 30548) | func init() {
type NotEnoughCpusFault (line 30552) | type NotEnoughCpusFault
function init (line 30554) | func init() {
type NotEnoughLicenses (line 30558) | type NotEnoughLicenses struct
function init (line 30562) | func init() {
type NotEnoughLicensesFault (line 30566) | type NotEnoughLicensesFault
function init (line 30568) | func init() {
type NotEnoughLogicalCpus (line 30572) | type NotEnoughLogicalCpus struct
function init (line 30578) | func init() {
type NotEnoughLogicalCpusFault (line 30582) | type NotEnoughLogicalCpusFault
function init (line 30584) | func init() {
type NotEnoughResourcesToStartVmEvent (line 30588) | type NotEnoughResourcesToStartVmEvent struct
function init (line 30594) | func init() {
type NotFound (line 30598) | type NotFound struct
function init (line 30602) | func init() {
type NotFoundFault (line 30606) | type NotFoundFault
function init (line 30608) | func init() {
type NotImplemented (line 30612) | type NotImplemented struct
function init (line 30616) | func init() {
type NotImplementedFault (line 30620) | type NotImplementedFault
function init (line 30622) | func init() {
type NotSupported (line 30626) | type NotSupported struct
function init (line 30630) | func init() {
type NotSupportedDeviceForFT (line 30634) | type NotSupportedDeviceForFT struct
function init (line 30645) | func init() {
type NotSupportedDeviceForFTFault (line 30649) | type NotSupportedDeviceForFTFault
function init (line 30651) | func init() {
type NotSupportedFault (line 30655) | type NotSupportedFault
function init (line 30657) | func init() {
type NotSupportedHost (line 30661) | type NotSupportedHost struct
function init (line 30668) | func init() {
type NotSupportedHostFault (line 30672) | type NotSupportedHostFault
function init (line 30674) | func init() {
type NotSupportedHostForChecksum (line 30678) | type NotSupportedHostForChecksum struct
function init (line 30682) | func init() {
type NotSupportedHostForChecksumFault (line 30686) | type NotSupportedHostForChecksumFault
function init (line 30688) | func init() {
type NotSupportedHostForVFlash (line 30692) | type NotSupportedHostForVFlash struct
function init (line 30698) | func init() {
type NotSupportedHostForVFlashFault (line 30702) | type NotSupportedHostForVFlashFault
function init (line 30704) | func init() {
type NotSupportedHostForVmcp (line 30708) | type NotSupportedHostForVmcp struct
function init (line 30714) | func init() {
type NotSupportedHostForVmcpFault (line 30718) | type NotSupportedHostForVmcpFault
function init (line 30720) | func init() {
type NotSupportedHostForVmemFile (line 30724) | type NotSupportedHostForVmemFile struct
function init (line 30730) | func init() {
type NotSupportedHostForVmemFileFault (line 30734) | type NotSupportedHostForVmemFileFault
function init (line 30736) | func init() {
type NotSupportedHostForVsan (line 30740) | type NotSupportedHostForVsan struct
function init (line 30746) | func init() {
type NotSupportedHostForVsanFault (line 30750) | type NotSupportedHostForVsanFault
function init (line 30752) | func init() {
type NotSupportedHostInCluster (line 30756) | type NotSupportedHostInCluster struct
function init (line 30760) | func init() {
type NotSupportedHostInClusterFault (line 30764) | type NotSupportedHostInClusterFault
function init (line 30766) | func init() {
type NotSupportedHostInDvs (line 30770) | type NotSupportedHostInDvs struct
function init (line 30776) | func init() {
type NotSupportedHostInDvsFault (line 30780) | type NotSupportedHostInDvsFault
function init (line 30782) | func init() {
type NotSupportedHostInHACluster (line 30786) | type NotSupportedHostInHACluster struct
function init (line 30793) | func init() {
type NotSupportedHostInHAClusterFault (line 30797) | type NotSupportedHostInHAClusterFault
function init (line 30799) | func init() {
type NotUserConfigurableProperty (line 30803) | type NotUserConfigurableProperty struct
function init (line 30807) | func init() {
type NotUserConfigurablePropertyFault (line 30811) | type NotUserConfigurablePropertyFault
function init (line 30813) | func init() {
type NumPortsProfile (line 30817) | type NumPortsProfile struct
function init (line 30821) | func init() {
type NumVirtualCoresPerSocketNotSupported (line 30825) | type NumVirtualCoresPerSocketNotSupported struct
function init (line 30832) | func init() {
type NumVirtualCoresPerSocketNotSupportedFault (line 30836) | type NumVirtualCoresPerSocketNotSupportedFault
function init (line 30838) | func init() {
type NumVirtualCpusExceedsLimit (line 30842) | type NumVirtualCpusExceedsLimit struct
function init (line 30848) | func init() {
type NumVirtualCpusExceedsLimitFault (line 30852) | type NumVirtualCpusExceedsLimitFault
function init (line 30854) | func init() {
type NumVirtualCpusIncompatible (line 30858) | type NumVirtualCpusIncompatible struct
function init (line 30865) | func init() {
type NumVirtualCpusIncompatibleFault (line 30869) | type NumVirtualCpusIncompatibleFault
function init (line 30871) | func init() {
type NumVirtualCpusNotSupported (line 30875) | type NumVirtualCpusNotSupported struct
function init (line 30882) | func init() {
type NumVirtualCpusNotSupportedFault (line 30886) | type NumVirtualCpusNotSupportedFault
function init (line 30888) | func init() {
type NumericRange (line 30892) | type NumericRange struct
function init (line 30899) | func init() {
type ObjectContent (line 30903) | type ObjectContent struct
function init (line 30911) | func init() {
type ObjectSpec (line 30915) | type ObjectSpec struct
function init (line 30923) | func init() {
type ObjectUpdate (line 30927) | type ObjectUpdate struct
function init (line 30936) | func init() {
type OnceTaskScheduler (line 30940) | type OnceTaskScheduler struct
function init (line 30946) | func init() {
type OpaqueNetworkCapability (line 30950) | type OpaqueNetworkCapability struct
function init (line 30956) | func init() {
type OpaqueNetworkSummary (line 30960) | type OpaqueNetworkSummary struct
function init (line 30967) | func init() {
type OpaqueNetworkTargetInfo (line 30971) | type OpaqueNetworkTargetInfo struct
function init (line 30978) | func init() {
type OpenInventoryViewFolder (line 30982) | type OpenInventoryViewFolder
function init (line 30984) | func init() {
type OpenInventoryViewFolderRequestType (line 30988) | type OpenInventoryViewFolderRequestType struct
function init (line 30993) | func init() {
type OpenInventoryViewFolderResponse (line 30997) | type OpenInventoryViewFolderResponse struct
type OperationDisabledByGuest (line 31001) | type OperationDisabledByGuest struct
function init (line 31005) | func init() {
type OperationDisabledByGuestFault (line 31009) | type OperationDisabledByGuestFault
function init (line 31011) | func init() {
type OperationDisallowedOnHost (line 31015) | type OperationDisallowedOnHost struct
function init (line 31019) | func init() {
type OperationDisallowedOnHostFault (line 31023) | type OperationDisallowedOnHostFault
function init (line 31025) | func init() {
type OperationNotSupportedByGuest (line 31029) | type OperationNotSupportedByGuest struct
function init (line 31033) | func init() {
type OperationNotSupportedByGuestFault (line 31037) | type OperationNotSupportedByGuestFault
function init (line 31039) | func init() {
type OptionDef (line 31043) | type OptionDef struct
function init (line 31049) | func init() {
type OptionProfile (line 31053) | type OptionProfile struct
function init (line 31059) | func init() {
type OptionType (line 31063) | type OptionType struct
function init (line 31069) | func init() {
type OptionValue (line 31073) | type OptionValue struct
function init (line 31080) | func init() {
type OrAlarmExpression (line 31084) | type OrAlarmExpression struct
function init (line 31090) | func init() {
type OutOfBounds (line 31094) | type OutOfBounds struct
function init (line 31100) | func init() {
type OutOfBoundsFault (line 31104) | type OutOfBoundsFault
function init (line 31106) | func init() {
type OutOfSyncDvsHost (line 31110) | type OutOfSyncDvsHost struct
function init (line 31116) | func init() {
type OverwriteCustomizationSpec (line 31120) | type OverwriteCustomizationSpec
function init (line 31122) | func init() {
type OverwriteCustomizationSpecRequestType (line 31126) | type OverwriteCustomizationSpecRequestType struct
function init (line 31131) | func init() {
type OverwriteCustomizationSpecResponse (line 31135) | type OverwriteCustomizationSpecResponse struct
type OvfAttribute (line 31138) | type OvfAttribute struct
function init (line 31145) | func init() {
type OvfAttributeFault (line 31149) | type OvfAttributeFault
function init (line 31151) | func init() {
type OvfConnectedDevice (line 31155) | type OvfConnectedDevice struct
function init (line 31159) | func init() {
type OvfConnectedDeviceFault (line 31163) | type OvfConnectedDeviceFault
function init (line 31165) | func init() {
type OvfConnectedDeviceFloppy (line 31169) | type OvfConnectedDeviceFloppy struct
function init (line 31175) | func init() {
type OvfConnectedDeviceFloppyFault (line 31179) | type OvfConnectedDeviceFloppyFault
function init (line 31181) | func init() {
type OvfConnectedDeviceIso (line 31185) | type OvfConnectedDeviceIso struct
function init (line 31191) | func init() {
type OvfConnectedDeviceIsoFault (line 31195) | type OvfConnectedDeviceIsoFault
function init (line 31197) | func init() {
type OvfConstraint (line 31201) | type OvfConstraint struct
function init (line 31207) | func init() {
type OvfConstraintFault (line 31211) | type OvfConstraintFault
function init (line 31213) | func init() {
type OvfConsumerCallbackFault (line 31217) | type OvfConsumerCallbackFault struct
function init (line 31224) | func init() {
type OvfConsumerCallbackFaultFault (line 31228) | type OvfConsumerCallbackFaultFault
function init (line 31230) | func init() {
type OvfConsumerCommunicationError (line 31234) | type OvfConsumerCommunicationError struct
function init (line 31240) | func init() {
type OvfConsumerCommunicationErrorFault (line 31244) | type OvfConsumerCommunicationErrorFault
function init (line 31246) | func init() {
type OvfConsumerFault (line 31250) | type OvfConsumerFault struct
function init (line 31258) | func init() {
type OvfConsumerFaultFault (line 31262) | type OvfConsumerFaultFault
function init (line 31264) | func init() {
type OvfConsumerInvalidSection (line 31268) | type OvfConsumerInvalidSection struct
function init (line 31275) | func init() {
type OvfConsumerInvalidSectionFault (line 31279) | type OvfConsumerInvalidSectionFault
function init (line 31281) | func init() {
type OvfConsumerOstNode (line 31285) | type OvfConsumerOstNode struct
function init (line 31295) | func init() {
type OvfConsumerOvfSection (line 31299) | type OvfConsumerOvfSection struct
function init (line 31306) | func init() {
type OvfConsumerPowerOnFault (line 31310) | type OvfConsumerPowerOnFault struct
function init (line 31318) | func init() {
type OvfConsumerPowerOnFaultFault (line 31322) | type OvfConsumerPowerOnFaultFault
function init (line 31324) | func init() {
type OvfConsumerUndeclaredSection (line 31328) | type OvfConsumerUndeclaredSection struct
function init (line 31334) | func init() {
type OvfConsumerUndeclaredSectionFault (line 31338) | type OvfConsumerUndeclaredSectionFault
function init (line 31340) | func init() {
type OvfConsumerUndefinedPrefix (line 31344) | type OvfConsumerUndefinedPrefix struct
function init (line 31350) | func init() {
type OvfConsumerUndefinedPrefixFault (line 31354) | type OvfConsumerUndefinedPrefixFault
function init (line 31356) | func init() {
type OvfConsumerValidationFault (line 31360) | type OvfConsumerValidationFault struct
function init (line 31368) | func init() {
type OvfConsumerValidationFaultFault (line 31372) | type OvfConsumerValidationFaultFault
function init (line 31374) | func init() {
type OvfCpuCompatibility (line 31378) | type OvfCpuCompatibility struct
function init (line 31387) | func init() {
type OvfCpuCompatibilityCheckNotSupported (line 31391) | type OvfCpuCompatibilityCheckNotSupported struct
function init (line 31395) | func init() {
type OvfCpuCompatibilityCheckNotSupportedFault (line 31399) | type OvfCpuCompatibilityCheckNotSupportedFault
function init (line 31401) | func init() {
type OvfCpuCompatibilityFault (line 31405) | type OvfCpuCompatibilityFault
function init (line 31407) | func init() {
type OvfCreateDescriptorParams (line 31411) | type OvfCreateDescriptorParams struct
function init (line 31422) | func init() {
type OvfCreateDescriptorResult (line 31426) | type OvfCreateDescriptorResult struct
function init (line 31435) | func init() {
type OvfCreateImportSpecParams (line 31439) | type OvfCreateImportSpecParams struct
function init (line 31453) | func init() {
type OvfCreateImportSpecResult (line 31457) | type OvfCreateImportSpecResult struct
function init (line 31466) | func init() {
type OvfDeploymentOption (line 31470) | type OvfDeploymentOption struct
function init (line 31478) | func init() {
type OvfDiskMappingNotFound (line 31482) | type OvfDiskMappingNotFound struct
function init (line 31489) | func init() {
type OvfDiskMappingNotFoundFault (line 31493) | type OvfDiskMappingNotFoundFault
function init (line 31495) | func init() {
type OvfDiskOrderConstraint (line 31499) | type OvfDiskOrderConstraint struct
function init (line 31503) | func init() {
type OvfDiskOrderConstraintFault (line 31507) | type OvfDiskOrderConstraintFault
function init (line 31509) | func init() {
type OvfDuplicateElement (line 31513) | type OvfDuplicateElement struct
function init (line 31517) | func init() {
type OvfDuplicateElementFault (line 31521) | type OvfDuplicateElementFault
function init (line 31523) | func init() {
type OvfDuplicatedElementBoundary (line 31527) | type OvfDuplicatedElementBoundary struct
function init (line 31533) | func init() {
type OvfDuplicatedElementBoundaryFault (line 31537) | type OvfDuplicatedElementBoundaryFault
function init (line 31539) | func init() {
type OvfDuplicatedPropertyIdExport (line 31543) | type OvfDuplicatedPropertyIdExport struct
function init (line 31549) | func init() {
type OvfDuplicatedPropertyIdExportFault (line 31553) | type OvfDuplicatedPropertyIdExportFault
function init (line 31555) | func init() {
type OvfDuplicatedPropertyIdImport (line 31559) | type OvfDuplicatedPropertyIdImport struct
function init (line 31563) | func init() {
type OvfDuplicatedPropertyIdImportFault (line 31567) | type OvfDuplicatedPropertyIdImportFault
function init (line 31569) | func init() {
type OvfElement (line 31573) | type OvfElement struct
function init (line 31579) | func init() {
type OvfElementFault (line 31583) | type OvfElementFault
function init (line 31585) | func init() {
type OvfElementInvalidValue (line 31589) | type OvfElementInvalidValue struct
function init (line 31595) | func init() {
type OvfElementInvalidValueFault (line 31599) | type OvfElementInvalidValueFault
function init (line 31601) | func init() {
type OvfExport (line 31605) | type OvfExport struct
function init (line 31609) | func init() {
type OvfExportFailed (line 31613) | type OvfExportFailed struct
function init (line 31617) | func init() {
type OvfExportFailedFault (line 31621) | type OvfExportFailedFault
function init (line 31623) | func init() {
type OvfExportFault (line 31627) | type OvfExportFault
function init (line 31629) | func init() {
type OvfFault (line 31633) | type OvfFault struct
function init (line 31637) | func init() {
type OvfFaultFault (line 31641) | type OvfFaultFault
function init (line 31643) | func init() {
type OvfFile (line 31647) | type OvfFile struct
function init (line 31659) | func init() {
type OvfFileItem (line 31663) | type OvfFileItem struct
function init (line 31675) | func init() {
type OvfHardwareCheck (line 31679) | type OvfHardwareCheck struct
function init (line 31683) | func init() {
type OvfHardwareCheckFault (line 31687) | type OvfHardwareCheckFault
function init (line 31689) | func init() {
type OvfHardwareExport (line 31693) | type OvfHardwareExport struct
function init (line 31700) | func init() {
type OvfHardwareExportFault (line 31704) | type OvfHardwareExportFault
function init (line 31706) | func init() {
type OvfHostResourceConstraint (line 31710) | type OvfHostResourceConstraint struct
function init (line 31716) | func init() {
type OvfHostResourceConstraintFault (line 31720) | type OvfHostResourceConstraintFault
function init (line 31722) | func init() {
type OvfHostValueNotParsed (line 31726) | type OvfHostValueNotParsed struct
function init (line 31733) | func init() {
type OvfHostValueNotParsedFault (line 31737) | type OvfHostValueNotParsedFault
function init (line 31739) | func init() {
type OvfImport (line 31743) | type OvfImport struct
function init (line 31747) | func init() {
type OvfImportFailed (line 31751) | type OvfImportFailed struct
function init (line 31755) | func init() {
type OvfImportFailedFault (line 31759) | type OvfImportFailedFault
function init (line 31761) | func init() {
type OvfImportFault (line 31765) | type OvfImportFault
function init (line 31767) | func init() {
type OvfInternalError (line 31771) | type OvfInternalError struct
function init (line 31775) | func init() {
type OvfInternalErrorFault (line 31779) | type OvfInternalErrorFault
function init (line 31781) | func init() {
type OvfInvalidPackage (line 31785) | type OvfInvalidPackage struct
function init (line 31791) | func init() {
type OvfInvalidPackageFault (line 31795) | type OvfInvalidPackageFault
function init (line 31797) | func init() {
type OvfInvalidValue (line 31801) | type OvfInvalidValue struct
function init (line 31807) | func init() {
type OvfInvalidValueConfiguration (line 31811) | type OvfInvalidValueConfiguration struct
function init (line 31815) | func init() {
type OvfInvalidValueConfigurationFault (line 31819) | type OvfInvalidValueConfigurationFault
function init (line 31821) | func init() {
type OvfInvalidValueEmpty (line 31825) | type OvfInvalidValueEmpty struct
function init (line 31829) | func init() {
type OvfInvalidValueEmptyFault (line 31833) | type OvfInvalidValueEmptyFault
function init (line 31835) | func init() {
type OvfInvalidValueFault (line 31839) | type OvfInvalidValueFault
function init (line 31841) | func init() {
type OvfInvalidValueFormatMalformed (line 31845) | type OvfInvalidValueFormatMalformed struct
function init (line 31849) | func init() {
type OvfInvalidValueFormatMalformedFault (line 31853) | type OvfInvalidValueFormatMalformedFault
function init (line 31855) | func init() {
type OvfInvalidValueReference (line 31859) | type OvfInvalidValueReference struct
function init (line 31863) | func init() {
type OvfInvalidValueReferenceFault (line 31867) | type OvfInvalidValueReferenceFault
function init (line 31869) | func init() {
type OvfInvalidVmName (line 31873) | type OvfInvalidVmName struct
function init (line 31879) | func init() {
type OvfInvalidVmNameFault (line 31883) | type OvfInvalidVmNameFault
function init (line 31885) | func init() {
type OvfManagerCommonParams (line 31889) | type OvfManagerCommonParams struct
function init (line 31898) | func init() {
type OvfMappedOsId (line 31902) | type OvfMappedOsId struct
function init (line 31910) | func init() {
type OvfMappedOsIdFault (line 31914) | type OvfMappedOsIdFault
function init (line 31916) | func init() {
type OvfMissingAttribute (line 31920) | type OvfMissingAttribute struct
function init (line 31924) | func init() {
type OvfMissingAttributeFault (line 31928) | type OvfMissingAttributeFault
function init (line 31930) | func init() {
type OvfMissingElement (line 31934) | type OvfMissingElement struct
function init (line 31938) | func init() {
type OvfMissingElementFault (line 31942) | type OvfMissingElementFault
function init (line 31944) | func init() {
type OvfMissingElementNormalBoundary (line 31948) | type OvfMissingElementNormalBoundary struct
function init (line 31954) | func init() {
type OvfMissingElementNormalBoundaryFault (line 31958) | type OvfMissingElementNormalBoundaryFault
function init (line 31960) | func init() {
type OvfMissingHardware (line 31964) | type OvfMissingHardware struct
function init (line 31971) | func init() {
type OvfMissingHardwareFault (line 31975) | type OvfMissingHardwareFault
function init (line 31977) | func init() {
type OvfNetworkInfo (line 31981) | type OvfNetworkInfo struct
function init (line 31988) | func init() {
type OvfNetworkMapping (line 31992) | type OvfNetworkMapping struct
function init (line 31999) | func init() {
type OvfNetworkMappingNotSupported (line 32003) | type OvfNetworkMappingNotSupported struct
function init (line 32007) | func init() {
type OvfNetworkMappingNotSupportedFault (line 32011) | type OvfNetworkMappingNotSupportedFault
function init (line 32013) | func init() {
type OvfNoHostNic (line 32017) | type OvfNoHostNic struct
function init (line 32021) | func init() {
type OvfNoHostNicFault (line 32025) | type OvfNoHostNicFault
function init (line 32027) | func init() {
type OvfNoSpaceOnController (line 32031) | type OvfNoSpaceOnController struct
function init (line 32037) | func init() {
type OvfNoSpaceOnControllerFault (line 32041) | type OvfNoSpaceOnControllerFault
function init (line 32043) | func init() {
type OvfNoSupportedHardwareFamily (line 32047) | type OvfNoSupportedHardwareFamily struct
function init (line 32053) | func init() {
type OvfNoSupportedHardwareFamilyFault (line 32057) | type OvfNoSupportedHardwareFamilyFault
function init (line 32059) | func init() {
type OvfOptionInfo (line 32063) | type OvfOptionInfo struct
function init (line 32070) | func init() {
type OvfParseDescriptorParams (line 32074) | type OvfParseDescriptorParams struct
function init (line 32078) | func init() {
type OvfParseDescriptorResult (line 32082) | type OvfParseDescriptorResult struct
function init (line 32105) | func init() {
type OvfProperty (line 32109) | type OvfProperty struct
function init (line 32116) | func init() {
type OvfPropertyExport (line 32120) | type OvfPropertyExport struct
function init (line 32127) | func init() {
type OvfPropertyExportFault (line 32131) | type OvfPropertyExportFault
function init (line 32133) | func init() {
type OvfPropertyFault (line 32137) | type OvfPropertyFault
function init (line 32139) | func init() {
type OvfPropertyNetwork (line 32143) | type OvfPropertyNetwork struct
function init (line 32147) | func init() {
type OvfPropertyNetworkExport (line 32151) | type OvfPropertyNetworkExport struct
function init (line 32157) | func init() {
type OvfPropertyNetworkExportFault (line 32161) | type OvfPropertyNetworkExportFault
function init (line 32163) | func init() {
type OvfPropertyNetworkFault (line 32167) | type OvfPropertyNetworkFault
function init (line 32169) | func init() {
type OvfPropertyQualifier (line 32173) | type OvfPropertyQualifier struct
function init (line 32179) | func init() {
type OvfPropertyQualifierDuplicate (line 32183) | type OvfPropertyQualifierDuplicate struct
function init (line 32189) | func init() {
type OvfPropertyQualifierDuplicateFault (line 32193) | type OvfPropertyQualifierDuplicateFault
function init (line 32195) | func init() {
type OvfPropertyQualifierFault (line 32199) | type OvfPropertyQualifierFault
function init (line 32201) | func init() {
type OvfPropertyQualifierIgnored (line 32205) | type OvfPropertyQualifierIgnored struct
function init (line 32211) | func init() {
type OvfPropertyQualifierIgnoredFault (line 32215) | type OvfPropertyQualifierIgnoredFault
function init (line 32217) | func init() {
type OvfPropertyType (line 32221) | type OvfPropertyType struct
function init (line 32225) | func init() {
type OvfPropertyTypeFault (line 32229) | type OvfPropertyTypeFault
function init (line 32231) | func init() {
type OvfPropertyValue (line 32235) | type OvfPropertyValue struct
function init (line 32239) | func init() {
type OvfPropertyValueFault (line 32243) | type OvfPropertyValueFault
function init (line 32245) | func init() {
type OvfResourceMap (line 32249) | type OvfResourceMap struct
function init (line 32258) | func init() {
type OvfSystemFault (line 32262) | type OvfSystemFault struct
function init (line 32266) | func init() {
type OvfSystemFaultFault (line 32270) | type OvfSystemFaultFault
function init (line 32272) | func init() {
type OvfToXmlUnsupportedElement (line 32276) | type OvfToXmlUnsupportedElement struct
function init (line 32282) | func init() {
type OvfToXmlUnsupportedElementFault (line 32286) | type OvfToXmlUnsupportedElementFault
function init (line 32288) | func init() {
type OvfUnableToExportDisk (line 32292) | type OvfUnableToExportDisk struct
function init (line 32298) | func init() {
type OvfUnableToExportDiskFault (line 32302) | type OvfUnableToExportDiskFault
function init (line 32304) | func init() {
type OvfUnexpectedElement (line 32308) | type OvfUnexpectedElement struct
function init (line 32312) | func init() {
type OvfUnexpectedElementFault (line 32316) | type OvfUnexpectedElementFault
function init (line 32318) | func init() {
type OvfUnknownDevice (line 32322) | type OvfUnknownDevice struct
function init (line 32329) | func init() {
type OvfUnknownDeviceBacking (line 32333) | type OvfUnknownDeviceBacking struct
function init (line 32339) | func init() {
type OvfUnknownDeviceBackingFault (line 32343) | type OvfUnknownDeviceBackingFault
function init (line 32345) | func init() {
type OvfUnknownDeviceFault (line 32349) | type OvfUnknownDeviceFault
function init (line 32351) | func init() {
type OvfUnknownEntity (line 32355) | type OvfUnknownEntity struct
function init (line 32361) | func init() {
type OvfUnknownEntityFault (line 32365) | type OvfUnknownEntityFault
function init (line 32367) | func init() {
type OvfUnsupportedAttribute (line 32371) | type OvfUnsupportedAttribute struct
function init (line 32378) | func init() {
type OvfUnsupportedAttributeFault (line 32382) | type OvfUnsupportedAttributeFault
function init (line 32384) | func init() {
type OvfUnsupportedAttributeValue (line 32388) | type OvfUnsupportedAttributeValue struct
function init (line 32394) | func init() {
type OvfUnsupportedAttributeValueFault (line 32398) | type OvfUnsupportedAttributeValueFault
function init (line 32400) | func init() {
type OvfUnsupportedDeviceBackingInfo (line 32404) | type OvfUnsupportedDeviceBackingInfo struct
function init (line 32413) | func init() {
type OvfUnsupportedDeviceBackingInfoFault (line 32417) | type OvfUnsupportedDeviceBackingInfoFault
function init (line 32419) | func init() {
type OvfUnsupportedDeviceBackingOption (line 32423) | type OvfUnsupportedDeviceBackingOption struct
function init (line 32432) | func init() {
type OvfUnsupportedDeviceBackingOptionFault (line 32436) | type OvfUnsupportedDeviceBackingOptionFault
function init (line 32438) | func init() {
type OvfUnsupportedDeviceExport (line 32442) | type OvfUnsupportedDeviceExport struct
function init (line 32446) | func init() {
type OvfUnsupportedDeviceExportFault (line 32450) | type OvfUnsupportedDeviceExportFault
function init (line 32452) | func init() {
type OvfUnsupportedDiskProvisioning (line 32456) | type OvfUnsupportedDiskProvisioning struct
function init (line 32463) | func init() {
type OvfUnsupportedDiskProvisioningFault (line 32467) | type OvfUnsupportedDiskProvisioningFault
function init (line 32469) | func init() {
type OvfUnsupportedElement (line 32473) | type OvfUnsupportedElement struct
function init (line 32479) | func init() {
type OvfUnsupportedElementFault (line 32483) | type OvfUnsupportedElementFault
function init (line 32485) | func init() {
type OvfUnsupportedElementValue (line 32489) | type OvfUnsupportedElementValue struct
function init (line 32495) | func init() {
type OvfUnsupportedElementValueFault (line 32499) | type OvfUnsupportedElementValueFault
function init (line 32501) | func init() {
type OvfUnsupportedPackage (line 32505) | type OvfUnsupportedPackage struct
function init (line 32511) | func init() {
type OvfUnsupportedPackageFault (line 32515) | type OvfUnsupportedPackageFault
function init (line 32517) | func init() {
type OvfUnsupportedSection (line 32521) | type OvfUnsupportedSection struct
function init (line 32527) | func init() {
type OvfUnsupportedSectionFault (line 32531) | type OvfUnsupportedSectionFault
function init (line 32533) | func init() {
type OvfUnsupportedSubType (line 32537) | type OvfUnsupportedSubType struct
function init (line 32546) | func init() {
type OvfUnsupportedSubTypeFault (line 32550) | type OvfUnsupportedSubTypeFault
function init (line 32552) | func init() {
type OvfUnsupportedType (line 32556) | type OvfUnsupportedType struct
function init (line 32564) | func init() {
type OvfUnsupportedTypeFault (line 32568) | type OvfUnsupportedTypeFault
function init (line 32570) | func init() {
type OvfValidateHostParams (line 32574) | type OvfValidateHostParams struct
function init (line 32578) | func init() {
type OvfValidateHostResult (line 32582) | type OvfValidateHostResult struct
function init (line 32593) | func init() {
type OvfWrongElement (line 32597) | type OvfWrongElement struct
function init (line 32601) | func init() {
type OvfWrongElementFault (line 32605) | type OvfWrongElementFault
function init (line 32607) | func init() {
type OvfWrongNamespace (line 32611) | type OvfWrongNamespace struct
function init (line 32617) | func init() {
type OvfWrongNamespaceFault (line 32621) | type OvfWrongNamespaceFault
function init (line 32623) | func init() {
type OvfXmlFormat (line 32627) | type OvfXmlFormat struct
function init (line 32633) | func init() {
type OvfXmlFormatFault (line 32637) | type OvfXmlFormatFault
function init (line 32639) | func init() {
type ParaVirtualSCSIController (line 32643) | type ParaVirtualSCSIController struct
function init (line 32647) | func init() {
type ParaVirtualSCSIControllerOption (line 32651) | type ParaVirtualSCSIControllerOption struct
function init (line 32655) | func init() {
type ParseDescriptor (line 32659) | type ParseDescriptor
function init (line 32661) | func init() {
type ParseDescriptorRequestType (line 32665) | type ParseDescriptorRequestType struct
function init (line 32671) | func init() {
type ParseDescriptorResponse (line 32675) | type ParseDescriptorResponse struct
type PassiveNodeDeploymentSpec (line 32679) | type PassiveNodeDeploymentSpec struct
function init (line 32685) | func init() {
type PassiveNodeNetworkSpec (line 32689) | type PassiveNodeNetworkSpec struct
function init (line 32695) | func init() {
type PasswordField (line 32699) | type PasswordField struct
function init (line 32705) | func init() {
type PatchAlreadyInstalled (line 32709) | type PatchAlreadyInstalled struct
function init (line 32713) | func init() {
type PatchAlreadyInstalledFault (line 32717) | type PatchAlreadyInstalledFault
function init (line 32719) | func init() {
type PatchBinariesNotFound (line 32723) | type PatchBinariesNotFound struct
function init (line 32730) | func init() {
type PatchBinariesNotFoundFault (line 32734) | type PatchBinariesNotFoundFault
function init (line 32736) | func init() {
type PatchInstallFailed (line 32740) | type PatchInstallFailed struct
function init (line 32746) | func init() {
type PatchInstallFailedFault (line 32750) | type PatchInstallFailedFault
function init (line 32752) | func init() {
type PatchIntegrityError (line 32756) | type PatchIntegrityError struct
function init (line 32760) | func init() {
type PatchIntegrityErrorFault (line 32764) | type PatchIntegrityErrorFault
function init (line 32766) | func init() {
type PatchMetadataCorrupted (line 32770) | type PatchMetadataCorrupted struct
function init (line 32774) | func init() {
type PatchMetadataCorruptedFault (line 32778) | type PatchMetadataCorruptedFault
function init (line 32780) | func init() {
type PatchMetadataInvalid (line 32784) | type PatchMetadataInvalid struct
function init (line 32791) | func init() {
type PatchMetadataInvalidFault (line 32795) | type PatchMetadataInvalidFault
function init (line 32797) | func init() {
type PatchMetadataNotFound (line 32801) | type PatchMetadataNotFound struct
function init (line 32805) | func init() {
type PatchMetadataNotFoundFault (line 32809) | type PatchMetadataNotFoundFault
function init (line 32811) | func init() {
type PatchMissingDependencies (line 32815) | type PatchMissingDependencies struct
function init (line 32822) | func init() {
type PatchMissingDependenciesFault (line 32826) | type PatchMissingDependenciesFault
function init (line 32828) | func init() {
type PatchNotApplicable (line 32832) | type PatchNotApplicable struct
function init (line 32838) | func init() {
type PatchNotApplicableFault (line 32842) | type PatchNotApplicableFault
function init (line 32844) | func init() {
type PatchSuperseded (line 32848) | type PatchSuperseded struct
function init (line 32854) | func init() {
type PatchSupersededFault (line 32858) | type PatchSupersededFault
function init (line 32860) | func init() {
type PerfCompositeMetric (line 32864) | type PerfCompositeMetric struct
function init (line 32871) | func init() {
type PerfCounterInfo (line 32875) | type PerfCounterInfo struct
function init (line 32889) | func init() {
type PerfEntityMetric (line 32893) | type PerfEntityMetric struct
function init (line 32900) | func init() {
type PerfEntityMetricBase (line 32904) | type PerfEntityMetricBase struct
function init (line 32910) | func init() {
type PerfEntityMetricCSV (line 32914) | type PerfEntityMetricCSV struct
function init (line 32921) | func init() {
type PerfInterval (line 32925) | type PerfInterval struct
function init (line 32936) | func init() {
type PerfMetricId (line 32940) | type PerfMetricId struct
function init (line 32947) | func init() {
type PerfMetricIntSeries (line 32951) | type PerfMetricIntSeries struct
function init (line 32957) | func init() {
type PerfMetricSeries (line 32961) | type PerfMetricSeries struct
function init (line 32967) | func init() {
type PerfMetricSeriesCSV (line 32971) | type PerfMetricSeriesCSV struct
function init (line 32977) | func init() {
type PerfProviderSummary (line 32981) | type PerfProviderSummary struct
function init (line 32990) | func init() {
type PerfQuerySpec (line 32994) | type PerfQuerySpec struct
function init (line 33006) | func init() {
type PerfSampleInfo (line 33010) | type PerfSampleInfo struct
function init (line 33017) | func init() {
type PerformDvsProductSpecOperationRequestType (line 33021) | type PerformDvsProductSpecOperationRequestType struct
function init (line 33027) | func init() {
type PerformDvsProductSpecOperation_Task (line 33031) | type PerformDvsProductSpecOperation_Task
function init (line 33033) | func init() {
type PerformDvsProductSpecOperation_TaskResponse (line 33037) | type PerformDvsProductSpecOperation_TaskResponse struct
type PerformVsanUpgradePreflightCheck (line 33041) | type PerformVsanUpgradePreflightCheck
function init (line 33043) | func init() {
type PerformVsanUpgradePreflightCheckRequestType (line 33047) | type PerformVsanUpgradePreflightCheckRequestType struct
function init (line 33053) | func init() {
type PerformVsanUpgradePreflightCheckResponse (line 33057) | type PerformVsanUpgradePreflightCheckResponse struct
type PerformVsanUpgradeRequestType (line 33061) | type PerformVsanUpgradeRequestType struct
function init (line 33070) | func init() {
type PerformVsanUpgrade_Task (line 33074) | type PerformVsanUpgrade_Task
function init (line 33076) | func init() {
type PerformVsanUpgrade_TaskResponse (line 33080) | type PerformVsanUpgrade_TaskResponse struct
type PerformanceDescription (line 33084) | type PerformanceDescription struct
function init (line 33091) | func init() {
type PerformanceManagerCounterLevelMapping (line 33095) | type PerformanceManagerCounterLevelMapping struct
function init (line 33103) | func init() {
type PerformanceStatisticsDescription (line 33107) | type PerformanceStatisticsDescription struct
function init (line 33113) | func init() {
type Permission (line 33117) | type Permission struct
function init (line 33127) | func init() {
type PermissionAddedEvent (line 33131) | type PermissionAddedEvent struct
function init (line 33138) | func init() {
type PermissionEvent (line 33142) | type PermissionEvent struct
function init (line 33150) | func init() {
type PermissionProfile (line 33154) | type PermissionProfile struct
function init (line 33160) | func init() {
type PermissionRemovedEvent (line 33164) | type PermissionRemovedEvent struct
function init (line 33168) | func init() {
type PermissionUpdatedEvent (line 33172) | type PermissionUpdatedEvent struct
function init (line 33181) | func init() {
type PhysCompatRDMNotSupported (line 33185) | type PhysCompatRDMNotSupported struct
function init (line 33189) | func init() {
type PhysCompatRDMNotSupportedFault (line 33193) | type PhysCompatRDMNotSupportedFault
function init (line 33195) | func init() {
type PhysicalNic (line 33199) | type PhysicalNic struct
function init (line 33219) | func init() {
type PhysicalNicCdpDeviceCapability (line 33223) | type PhysicalNicCdpDeviceCapability struct
function init (line 33235) | func init() {
type PhysicalNicCdpInfo (line 33239) | type PhysicalNicCdpInfo struct
function init (line 33263) | func init() {
type PhysicalNicConfig (line 33267) | type PhysicalNicConfig struct
function init (line 33274) | func init() {
type PhysicalNicHint (line 33278) | type PhysicalNicHint struct
function init (line 33284) | func init() {
type PhysicalNicHintInfo (line 33288) | type PhysicalNicHintInfo struct
function init (line 33298) | func init() {
type PhysicalNicIpHint (line 33302) | type PhysicalNicIpHint struct
function init (line 33308) | func init() {
type PhysicalNicLinkInfo (line 33312) | type PhysicalNicLinkInfo struct
function init (line 33319) | func init() {
type PhysicalNicNameHint (line 33323) | type PhysicalNicNameHint struct
function init (line 33329) | func init() {
type PhysicalNicProfile (line 33333) | type PhysicalNicProfile struct
function init (line 33339) | func init() {
type PhysicalNicSpec (line 33343) | type PhysicalNicSpec struct
function init (line 33350) | func init() {
type PlaceVm (line 33354) | type PlaceVm
function init (line 33356) | func init() {
type PlaceVmRequestType (line 33360) | type PlaceVmRequestType struct
function init (line 33365) | func init() {
type PlaceVmResponse (line 33369) | type PlaceVmResponse struct
type PlacementAction (line 33373) | type PlacementAction struct
function init (line 33381) | func init() {
type PlacementAffinityRule (line 33385) | type PlacementAffinityRule struct
function init (line 33394) | func init() {
type PlacementRankResult (line 33398) | type PlacementRankResult struct
function init (line 33410) | func init() {
type PlacementRankSpec (line 33414) | type PlacementRankSpec struct
function init (line 33423) | func init() {
type PlacementResult (line 33427) | type PlacementResult struct
function init (line 33434) | func init() {
type PlacementSpec (line 33438) | type PlacementSpec struct
function init (line 33456) | func init() {
type PlatformConfigFault (line 33460) | type PlatformConfigFault struct
function init (line 33466) | func init() {
type PlatformConfigFaultFault (line 33470) | type PlatformConfigFaultFault
function init (line 33472) | func init() {
type PnicUplinkProfile (line 33476) | type PnicUplinkProfile struct
function init (line 33482) | func init() {
type PodDiskLocator (line 33486) | type PodDiskLocator struct
function init (line 33495) | func init() {
type PodStorageDrsEntry (line 33499) | type PodStorageDrsEntry struct
function init (line 33508) | func init() {
type PolicyOption (line 33512) | type PolicyOption struct
function init (line 33519) | func init() {
type PortGroupProfile (line 33523) | type PortGroupProfile struct
function init (line 33533) | func init() {
type PosixUserSearchResult (line 33537) | type PosixUserSearchResult struct
function init (line 33544) | func init() {
type PostEvent (line 33548) | type PostEvent
function init (line 33550) | func init() {
type PostEventRequestType (line 33554) | type PostEventRequestType struct
function init (line 33560) | func init() {
type PostEventResponse (line 33564) | type PostEventResponse struct
type PostHealthUpdates (line 33567) | type PostHealthUpdates
function init (line 33569) | func init() {
type PostHealthUpdatesRequestType (line 33573) | type PostHealthUpdatesRequestType struct
function init (line 33579) | func init() {
type PostHealthUpdatesResponse (line 33583) | type PostHealthUpdatesResponse struct
type PowerDownHostToStandByRequestType (line 33586) | type PowerDownHostToStandByRequestType struct
function init (line 33592) | func init() {
type PowerDownHostToStandBy_Task (line 33596) | type PowerDownHostToStandBy_Task
function init (line 33598) | func init() {
type PowerDownHostToStandBy_TaskResponse (line 33602) | type PowerDownHostToStandBy_TaskResponse struct
type PowerOffVAppRequestType (line 33606) | type PowerOffVAppRequestType struct
function init (line 33611) | func init() {
type PowerOffVApp_Task (line 33615) | type PowerOffVApp_Task
function init (line 33617) | func init() {
type PowerOffVApp_TaskResponse (line 33621) | type PowerOffVApp_TaskResponse struct
type PowerOffVMRequestType (line 33625) | type PowerOffVMRequestType struct
function init (line 33629) | func init() {
type PowerOffVM_Task (line 33633) | type PowerOffVM_Task
function init (line 33635) | func init() {
type PowerOffVM_TaskResponse (line 33639) | type PowerOffVM_TaskResponse struct
type PowerOnFtSecondaryFailed (line 33643) | type PowerOnFtSecondaryFailed struct
function init (line 33653) | func init() {
type PowerOnFtSecondaryFailedFault (line 33657) | type PowerOnFtSecondaryFailedFault
function init (line 33659) | func init() {
type PowerOnFtSecondaryTimedout (line 33663) | type PowerOnFtSecondaryTimedout struct
function init (line 33671) | func init() {
type PowerOnFtSecondaryTimedoutFault (line 33675) | type PowerOnFtSecondaryTimedoutFault
function init (line 33677) | func init() {
type PowerOnMultiVMRequestType (line 33681) | type PowerOnMultiVMRequestType struct
function init (line 33687) | func init() {
type PowerOnMultiVM_Task (line 33691) | type PowerOnMultiVM_Task
function init (line 33693) | func init() {
type PowerOnMultiVM_TaskResponse (line 33697) | type PowerOnMultiVM_TaskResponse struct
type PowerOnVAppRequestType (line 33701) | type PowerOnVAppRequestType struct
function init (line 33705) | func init() {
type PowerOnVApp_Task (line 33709) | type PowerOnVApp_Task
function init (line 33711) | func init() {
type PowerOnVApp_TaskResponse (line 33715) | type PowerOnVApp_TaskResponse struct
type PowerOnVMRequestType (line 33719) | type PowerOnVMRequestType struct
function init (line 33724) | func init() {
type PowerOnVM_Task (line 33728) | type PowerOnVM_Task
function init (line 33730) | func init() {
type PowerOnVM_TaskResponse (line 33734) | type PowerOnVM_TaskResponse struct
type PowerSystemCapability (line 33738) | type PowerSystemCapability struct
function init (line 33744) | func init() {
type PowerSystemInfo (line 33748) | type PowerSystemInfo struct
function init (line 33754) | func init() {
type PowerUpHostFromStandByRequestType (line 33758) | type PowerUpHostFromStandByRequestType struct
function init (line 33763) | func init() {
type PowerUpHostFromStandBy_Task (line 33767) | type PowerUpHostFromStandBy_Task
function init (line 33769) | func init() {
type PowerUpHostFromStandBy_TaskResponse (line 33773) | type PowerUpHostFromStandBy_TaskResponse struct
type PrepareCrypto (line 33777) | type PrepareCrypto
function init (line 33779) | func init() {
type PrepareCryptoRequestType (line 33783) | type PrepareCryptoRequestType struct
function init (line 33787) | func init() {
type PrepareCryptoResponse (line 33791) | type PrepareCryptoResponse struct
type PrivilegeAvailability (line 33794) | type PrivilegeAvailability struct
function init (line 33801) | func init() {
type PrivilegePolicyDef (line 33805) | type PrivilegePolicyDef struct
function init (line 33814) | func init() {
type ProductComponentInfo (line 33818) | type ProductComponentInfo struct
function init (line 33827) | func init() {
type ProfileApplyProfileElement (line 33831) | type ProfileApplyProfileElement struct
function init (line 33837) | func init() {
type ProfileApplyProfileProperty (line 33841) | type ProfileApplyProfileProperty struct
function init (line 33849) | func init() {
type ProfileAssociatedEvent (line 33853) | type ProfileAssociatedEvent struct
function init (line 33857) | func init() {
type ProfileChangedEvent (line 33861) | type ProfileChangedEvent struct
function init (line 33865) | func init() {
type ProfileCompositeExpression (line 33869) | type ProfileCompositeExpression struct
function init (line 33876) | func init() {
type ProfileCompositePolicyOptionMetadata (line 33880) | type ProfileCompositePolicyOptionMetadata struct
function init (line 33886) | func init() {
type ProfileConfigInfo (line 33890) | type ProfileConfigInfo struct
function init (line 33898) | func init() {
type ProfileCreateSpec (line 33902) | type ProfileCreateSpec struct
function init (line 33910) | func init() {
type ProfileCreatedEvent (line 33914) | type ProfileCreatedEvent struct
function init (line 33918) | func init() {
type ProfileDeferredPolicyOptionParameter (line 33922) | type ProfileDeferredPolicyOptionParameter struct
function init (line 33929) | func init() {
type ProfileDescription (line 33933) | type ProfileDescription struct
function init (line 33939) | func init() {
type ProfileDescriptionSection (line 33943) | type ProfileDescriptionSection struct
function init (line 33950) | func init() {
type ProfileDissociatedEvent (line 33954) | type ProfileDissociatedEvent struct
function init (line 33958) | func init() {
type ProfileEvent (line 33962) | type ProfileEvent struct
function init (line 33968) | func init() {
type ProfileEventArgument (line 33972) | type ProfileEventArgument struct
function init (line 33979) | func init() {
type ProfileExecuteError (line 33983) | type ProfileExecuteError struct
function init (line 33990) | func init() {
type ProfileExecuteResult (line 33994) | type ProfileExecuteResult struct
function init (line 34004) | func init() {
type ProfileExpression (line 34008) | type ProfileExpression struct
function init (line 34016) | func init() {
type ProfileExpressionMetadata (line 34020) | type ProfileExpressionMetadata struct
function init (line 34027) | func init() {
type ProfileMetadata (line 34031) | type ProfileMetadata struct
function init (line 34042) | func init() {
type ProfileMetadataProfileSortSpec (line 34046) | type ProfileMetadataProfileSortSpec struct
function init (line 34053) | func init() {
type ProfileParameterMetadata (line 34057) | type ProfileParameterMetadata struct
function init (line 34069) | func init() {
type ProfilePolicy (line 34073) | type ProfilePolicy struct
function init (line 34080) | func init() {
type ProfilePolicyMetadata (line 34084) | type ProfilePolicyMetadata struct
function init (line 34091) | func init() {
type ProfilePolicyOptionMetadata (line 34095) | type ProfilePolicyOptionMetadata struct
function init (line 34102) | func init() {
type ProfileProfileStructure (line 34106) | type ProfileProfileStructure struct
function init (line 34113) | func init() {
type ProfileProfileStructureProperty (line 34117) | type ProfileProfileStructureProperty struct
function init (line 34125) | func init() {
type ProfilePropertyPath (line 34129) | type ProfilePropertyPath struct
function init (line 34137) | func init() {
type ProfileReferenceHostChangedEvent (line 34141) | type ProfileReferenceHostChangedEvent struct
function init (line 34149) | func init() {
type ProfileRemovedEvent (line 34153) | type ProfileRemovedEvent struct
function init (line 34157) | func init() {
type ProfileSerializedCreateSpec (line 34161) | type ProfileSerializedCreateSpec struct
function init (line 34167) | func init() {
type ProfileSimpleExpression (line 34171) | type ProfileSimpleExpression struct
function init (line 34178) | func init() {
type ProfileUpdateFailed (line 34182) | type ProfileUpdateFailed struct
function init (line 34188) | func init() {
type ProfileUpdateFailedFault (line 34192) | type ProfileUpdateFailedFault
function init (line 34194) | func init() {
type ProfileUpdateFailedUpdateFailure (line 34198) | type ProfileUpdateFailedUpdateFailure struct
function init (line 34205) | func init() {
type PromoteDisksRequestType (line 34209) | type PromoteDisksRequestType struct
function init (line 34215) | func init() {
type PromoteDisks_Task (line 34219) | type PromoteDisks_Task
function init (line 34221) | func init() {
type PromoteDisks_TaskResponse (line 34225) | type PromoteDisks_TaskResponse struct
type PropertyChange (line 34229) | type PropertyChange struct
function init (line 34237) | func init() {
type PropertyFilterSpec (line 34241) | type PropertyFilterSpec struct
function init (line 34249) | func init() {
type PropertyFilterUpdate (line 34253) | type PropertyFilterUpdate struct
function init (line 34261) | func init() {
type PropertySpec (line 34265) | type PropertySpec struct
function init (line 34273) | func init() {
type PutUsbScanCodes (line 34277) | type PutUsbScanCodes
function init (line 34279) | func init() {
type PutUsbScanCodesRequestType (line 34283) | type PutUsbScanCodesRequestType struct
function init (line 34288) | func init() {
type PutUsbScanCodesResponse (line 34292) | type PutUsbScanCodesResponse struct
type QuarantineModeFault (line 34296) | type QuarantineModeFault struct
function init (line 34303) | func init() {
type QuarantineModeFaultFault (line 34307) | type QuarantineModeFaultFault
function init (line 34309) | func init() {
type QueryAnswerFileStatus (line 34313) | type QueryAnswerFileStatus
function init (line 34315) | func init() {
type QueryAnswerFileStatusRequestType (line 34319) | type QueryAnswerFileStatusRequestType struct
function init (line 34324) | func init() {
type QueryAnswerFileStatusResponse (line 34328) | type QueryAnswerFileStatusResponse struct
type QueryAssignedLicenses (line 34332) | type QueryAssignedLicenses
function init (line 34334) | func init() {
type QueryAssignedLicensesRequestType (line 34338) | type QueryAssignedLicensesRequestType struct
function init (line 34343) | func init() {
type QueryAssignedLicensesResponse (line 34347) | type QueryAssignedLicensesResponse struct
type QueryAvailableDisksForVmfs (line 34351) | type QueryAvailableDisksForVmfs
function init (line 34353) | func init() {
type QueryAvailableDisksForVmfsRequestType (line 34357) | type QueryAvailableDisksForVmfsRequestType struct
function init (line 34362) | func init() {
type QueryAvailableDisksForVmfsResponse (line 34366) | type QueryAvailableDisksForVmfsResponse struct
type QueryAvailableDvsSpec (line 34370) | type QueryAvailableDvsSpec
function init (line 34372) | func init() {
type QueryAvailableDvsSpecRequestType (line 34376) | type QueryAvailableDvsSpecRequestType struct
function init (line 34381) | func init() {
type QueryAvailableDvsSpecResponse (line 34385) | type QueryAvailableDvsSpecResponse struct
type QueryAvailablePartition (line 34389) | type QueryAvailablePartition
function init (line 34391) | func init() {
type QueryAvailablePartitionRequestType (line 34395) | type QueryAvailablePartitionRequestType struct
function init (line 34399) | func init() {
type QueryAvailablePartitionResponse (line 34403) | type QueryAvailablePartitionResponse struct
type QueryAvailablePerfMetric (line 34407) | type QueryAvailablePerfMetric
function init (line 34409) | func init() {
type QueryAvailablePerfMetricRequestType (line 34413) | type QueryAvailablePerfMetricRequestType struct
function init (line 34421) | func init() {
type QueryAvailablePerfMetricResponse (line 34425) | type QueryAvailablePerfMetricResponse struct
type QueryAvailableSsds (line 34429) | type QueryAvailableSsds
function init (line 34431) | func init() {
type QueryAvailableSsdsRequestType (line 34435) | type QueryAvailableSsdsRequestType struct
function init (line 34440) | func init() {
type QueryAvailableSsdsResponse (line 34444) | type QueryAvailableSsdsResponse struct
type QueryAvailableTimeZones (line 34448) | type QueryAvailableTimeZones
function init (line 34450) | func init() {
type QueryAvailableTimeZonesRequestType (line 34454) | type QueryAvailableTimeZonesRequestType struct
function init (line 34458) | func init() {
type QueryAvailableTimeZonesResponse (line 34462) | type QueryAvailableTimeZonesResponse struct
type QueryBootDevices (line 34466) | type QueryBootDevices
function init (line 34468) | func init() {
type QueryBootDevicesRequestType (line 34472) | type QueryBootDevicesRequestType struct
function init (line 34476) | func init() {
type QueryBootDevicesResponse (line 34480) | type QueryBootDevicesResponse struct
type QueryBoundVnics (line 34484) | type QueryBoundVnics
function init (line 34486) | func init() {
type QueryBoundVnicsRequestType (line 34490) | type QueryBoundVnicsRequestType struct
function init (line 34495) | func init() {
type QueryBoundVnicsResponse (line 34499) | type QueryBoundVnicsResponse struct
type QueryCandidateNics (line 34503) | type QueryCandidateNics
function init (line 34505) | func init() {
type QueryCandidateNicsRequestType (line 34509) | type QueryCandidateNicsRequestType struct
function init (line 34514) | func init() {
type QueryCandidateNicsResponse (line 34518) | type QueryCandidateNicsResponse struct
type QueryChangedDiskAreas (line 34522) | type QueryChangedDiskAreas
function init (line 34524) | func init() {
type QueryChangedDiskAreasRequestType (line 34528) | type QueryChangedDiskAreasRequestType struct
function init (line 34536) | func init() {
type QueryChangedDiskAreasResponse (line 34540) | type QueryChangedDiskAreasResponse struct
type QueryCmmds (line 34544) | type QueryCmmds
function init (line 34546) | func init() {
type QueryCmmdsRequestType (line 34550) | type QueryCmmdsRequestType struct
function init (line 34555) | func init() {
type QueryCmmdsResponse (line 34559) | type QueryCmmdsResponse struct
type QueryCompatibleHostForExistingDvs (line 34563) | type QueryCompatibleHostForExistingDvs
function init (line 34565) | func init() {
type QueryCompatibleHostForExistingDvsRequestType (line 34569) | type QueryCompatibleHostForExistingDvsRequestType struct
function init (line 34576) | func init() {
type QueryCompatibleHostForExistingDvsResponse (line 34580) | type QueryCompatibleHostForExistingDvsResponse struct
type QueryCompatibleHostForNewDvs (line 34584) | type QueryCompatibleHostForNewDvs
function init (line 34586) | func init() {
type QueryCompatibleHostForNewDvsRequestType (line 34590) | type QueryCompatibleHostForNewDvsRequestType struct
function init (line 34597) | func init() {
type QueryCompatibleHostForNewDvsResponse (line 34601) | type QueryCompatibleHostForNewDvsResponse struct
type QueryComplianceStatus (line 34605) | type QueryComplianceStatus
function init (line 34607) | func init() {
type QueryComplianceStatusRequestType (line 34611) | type QueryComplianceStatusRequestType struct
function init (line 34617) | func init() {
type QueryComplianceStatusResponse (line 34621) | type QueryComplianceStatusResponse struct
type QueryConfigOption (line 34625) | type QueryConfigOption
function init (line 34627) | func init() {
type QueryConfigOptionDescriptor (line 34631) | type QueryConfigOptionDescriptor
function init (line 34633) | func init() {
type QueryConfigOptionDescriptorRequestType (line 34637) | type QueryConfigOptionDescriptorRequestType struct
function init (line 34641) | func init() {
type QueryConfigOptionDescriptorResponse (line 34645) | type QueryConfigOptionDescriptorResponse struct
type QueryConfigOptionEx (line 34649) | type QueryConfigOptionEx
function init (line 34651) | func init() {
type QueryConfigOptionExRequestType (line 34655) | type QueryConfigOptionExRequestType struct
function init (line 34660) | func init() {
type QueryConfigOptionExResponse (line 34664) | type QueryConfigOptionExResponse struct
type QueryConfigOptionRequestType (line 34668) | type QueryConfigOptionRequestType struct
function init (line 34674) | func init() {
type QueryConfigOptionResponse (line 34678) | type QueryConfigOptionResponse struct
type QueryConfigTarget (line 34682) | type QueryConfigTarget
function init (line 34684) | func init() {
type QueryConfigTargetRequestType (line 34688) | type QueryConfigTargetRequestType struct
function init (line 34693) | func init() {
type QueryConfigTargetResponse (line 34697) | type QueryConfigTargetResponse struct
type QueryConfiguredModuleOptionString (line 34701) | type QueryConfiguredModuleOptionString
function init (line 34703) | func init() {
type QueryConfiguredModuleOptionStringRequestType (line 34707) | type QueryConfiguredModuleOptionStringRequestType struct
function init (line 34712) | func init() {
type QueryConfiguredModuleOptionStringResponse (line 34716) | type QueryConfiguredModuleOptionStringResponse struct
type QueryConnectionInfo (line 34720) | type QueryConnectionInfo
function init (line 34722) | func init() {
type QueryConnectionInfoRequestType (line 34726) | type QueryConnectionInfoRequestType struct
function init (line 34735) | func init() {
type QueryConnectionInfoResponse (line 34739) | type QueryConnectionInfoResponse struct
type QueryConnectionInfoViaSpec (line 34743) | type QueryConnectionInfoViaSpec
function init (line 34745) | func init() {
type QueryConnectionInfoViaSpecRequestType (line 34749) | type QueryConnectionInfoViaSpecRequestType struct
function init (line 34754) | func init() {
type QueryConnectionInfoViaSpecResponse (line 34758) | type QueryConnectionInfoViaSpecResponse struct
type QueryDatastorePerformanceSummary (line 34762) | type QueryDatastorePerformanceSummary
function init (line 34764) | func init() {
type QueryDatastorePerformanceSummaryRequestType (line 34768) | type QueryDatastorePerformanceSummaryRequestType struct
function init (line 34773) | func init() {
type QueryDatastorePerformanceSummaryResponse (line 34777) | type QueryDatastorePerformanceSummaryResponse struct
type QueryDateTime (line 34781) | type QueryDateTime
function init (line 34783) | func init() {
type QueryDateTimeRequestType (line 34787) | type QueryDateTimeRequestType struct
function init (line 34791) | func init() {
type QueryDateTimeResponse (line 34795) | type QueryDateTimeResponse struct
type QueryDescriptions (line 34799) | type QueryDescriptions
function init (line 34801) | func init() {
type QueryDescriptionsRequestType (line 34805) | type QueryDescriptionsRequestType struct
function init (line 34810) | func init() {
type QueryDescriptionsResponse (line 34814) | type QueryDescriptionsResponse struct
type QueryDisksForVsan (line 34818) | type QueryDisksForVsan
function init (line 34820) | func init() {
type QueryDisksForVsanRequestType (line 34824) | type QueryDisksForVsanRequestType struct
function init (line 34829) | func init() {
type QueryDisksForVsanResponse (line 34833) | type QueryDisksForVsanResponse struct
type QueryDisksUsingFilter (line 34837) | type QueryDisksUsingFilter
function init (line 34839) | func init() {
type QueryDisksUsingFilterRequestType (line 34843) | type QueryDisksUsingFilterRequestType struct
function init (line 34849) | func init() {
type QueryDisksUsingFilterResponse (line 34853) | type QueryDisksUsingFilterResponse struct
type QueryDvsByUuid (line 34857) | type QueryDvsByUuid
function init (line 34859) | func init() {
type QueryDvsByUuidRequestType (line 34863) | type QueryDvsByUuidRequestType struct
function init (line 34868) | func init() {
type QueryDvsByUuidResponse (line 34872) | type QueryDvsByUuidResponse struct
type QueryDvsCheckCompatibility (line 34876) | type QueryDvsCheckCompatibility
function init (line 34878) | func init() {
type QueryDvsCheckCompatibilityRequestType (line 34882) | type QueryDvsCheckCompatibilityRequestType struct
function init (line 34889) | func init() {
type QueryDvsCheckCompatibilityResponse (line 34893) | type QueryDvsCheckCompatibilityResponse struct
type QueryDvsCompatibleHostSpec (line 34897) | type QueryDvsCompatibleHostSpec
function init (line 34899) | func init() {
type QueryDvsCompatibleHostSpecRequestType (line 34903) | type QueryDvsCompatibleHostSpecRequestType struct
function init (line 34908) | func init() {
type QueryDvsCompatibleHostSpecResponse (line 34912) | type QueryDvsCompatibleHostSpecResponse struct
type QueryDvsConfigTarget (line 34916) | type QueryDvsConfigTarget
function init (line 34918) | func init() {
type QueryDvsConfigTargetRequestType (line 34922) | type QueryDvsConfigTargetRequestType struct
function init (line 34928) | func init() {
type QueryDvsConfigTargetResponse (line 34932) | type QueryDvsConfigTargetResponse struct
type QueryDvsFeatureCapability (line 34936) | type QueryDvsFeatureCapability
function init (line 34938) | func init() {
type QueryDvsFeatureCapabilityRequestType (line 34942) | type QueryDvsFeatureCapabilityRequestType struct
function init (line 34947) | func init() {
type QueryDvsFeatureCapabilityResponse (line 34951) | type QueryDvsFeatureCapabilityResponse struct
type QueryEvents (line 34955) | type QueryEvents
function init (line 34957) | func init() {
type QueryEventsRequestType (line 34961) | type QueryEventsRequestType struct
function init (line 34966) | func init() {
type QueryEventsResponse (line 34970) | type QueryEventsResponse struct
type QueryExpressionMetadata (line 34974) | type QueryExpressionMetadata
function init (line 34976) | func init() {
type QueryExpressionMetadataRequestType (line 34980) | type QueryExpressionMetadataRequestType struct
function init (line 34986) | func init() {
type QueryExpressionMetadataResponse (line 34990) | type QueryExpressionMetadataResponse struct
type QueryExtensionIpAllocationUsage (line 34994) | type QueryExtensionIpAllocationUsage
function init (line 34996) | func init() {
type QueryExtensionIpAllocationUsageRequestType (line 35000) | type QueryExtensionIpAllocationUsageRequestType struct
function init (line 35005) | func init() {
type QueryExtensionIpAllocationUsageResponse (line 35009) | type QueryExtensionIpAllocationUsageResponse struct
type QueryFaultToleranceCompatibility (line 35013) | type QueryFaultToleranceCompatibility
function init (line 35015) | func init() {
type QueryFaultToleranceCompatibilityEx (line 35019) | type QueryFaultToleranceCompatibilityEx
function init (line 35021) | func init() {
type QueryFaultToleranceCompatibilityExRequestType (line 35025) | type QueryFaultToleranceCompatibilityExRequestType struct
function init (line 35030) | func init() {
type QueryFaultToleranceCompatibilityExResponse (line 35034) | type QueryFaultToleranceCompatibilityExResponse struct
type QueryFaultToleranceCompatibilityRequestType (line 35038) | type QueryFaultToleranceCompatibilityRequestType struct
function init (line 35042) | func init() {
type QueryFaultToleranceCompatibilityResponse (line 35046) | type QueryFaultToleranceCompatibilityResponse struct
type QueryFilterEntities (line 35050) | type QueryFilterEntities
function init (line 35052) | func init() {
type QueryFilterEntitiesRequestType (line 35056) | type QueryFilterEntitiesRequestType struct
function init (line 35061) | func init() {
type QueryFilterEntitiesResponse (line 35065) | type QueryFilterEntitiesResponse struct
type QueryFilterInfoIds (line 35069) | type QueryFilterInfoIds
function init (line 35071) | func init() {
type QueryFilterInfoIdsRequestType (line 35075) | type QueryFilterInfoIdsRequestType struct
function init (line 35080) | func init() {
type QueryFilterInfoIdsResponse (line 35084) | type QueryFilterInfoIdsResponse struct
type QueryFilterList (line 35088) | type QueryFilterList
function init (line 35090) | func init() {
type QueryFilterListRequestType (line 35094) | type QueryFilterListRequestType struct
function init (line 35099) | func init() {
type QueryFilterListResponse (line 35103) | type QueryFilterListResponse struct
type QueryFilterName (line 35107) | type QueryFilterName
function init (line 35109) | func init() {
type QueryFilterNameRequestType (line 35113) | type QueryFilterNameRequestType struct
function init (line 35118) | func init() {
type QueryFilterNameResponse (line 35122) | type QueryFilterNameResponse struct
type QueryFirmwareConfigUploadURL (line 35126) | type QueryFirmwareConfigUploadURL
function init (line 35128) | func init() {
type QueryFirmwareConfigUploadURLRequestType (line 35132) | type QueryFirmwareConfigUploadURLRequestType struct
function init (line 35136) | func init() {
type QueryFirmwareConfigUploadURLResponse (line 35140) | type QueryFirmwareConfigUploadURLResponse struct
type QueryHealthUpdateInfos (line 35144) | type QueryHealthUpdateInfos
function init (line 35146) | func init() {
type QueryHealthUpdateInfosRequestType (line 35150) | type QueryHealthUpdateInfosRequestType struct
function init (line 35155) | func init() {
type QueryHealthUpdateInfosResponse (line 35159) | type QueryHealthUpdateInfosResponse struct
type QueryHealthUpdates (line 35163) | type QueryHealthUpdates
function init (line 35165) | func init() {
type QueryHealthUpdatesRequestType (line 35169) | type QueryHealthUpdatesRequestType struct
function init (line 35174) | func init() {
type QueryHealthUpdatesResponse (line 35178) | type QueryHealthUpdatesResponse struct
type QueryHostConnectionInfo (line 35182) | type QueryHostConnectionInfo
function init (line 35184) | func init() {
type QueryHostConnectionInfoRequestType (line 35188) | type QueryHostConnectionInfoRequestType struct
function init (line 35192) | func init() {
type QueryHostConnectionInfoResponse (line 35196) | type QueryHostConnectionInfoResponse struct
type QueryHostPatchRequestType (line 35200) | type QueryHostPatchRequestType struct
function init (line 35205) | func init() {
type QueryHostPatch_Task (line 35209) | type QueryHostPatch_Task
function init (line 35211) | func init() {
type QueryHostPatch_TaskResponse (line 35215) | type QueryHostPatch_TaskResponse struct
type QueryHostProfileMetadata (line 35219) | type QueryHostProfileMetadata
function init (line 35221) | func init() {
type QueryHostProfileMetadataRequestType (line 35225) | type QueryHostProfileMetadataRequestType struct
function init (line 35231) | func init() {
type QueryHostProfileMetadataResponse (line 35235) | type QueryHostProfileMetadataResponse struct
type QueryHostStatus (line 35239) | type QueryHostStatus
function init (line 35241) | func init() {
type QueryHostStatusRequestType (line 35245) | type QueryHostStatusRequestType struct
function init (line 35249) | func init() {
type QueryHostStatusResponse (line 35253) | type QueryHostStatusResponse struct
type QueryIORMConfigOption (line 35257) | type QueryIORMConfigOption
function init (line 35259) | func init() {
type QueryIORMConfigOptionRequestType (line 35263) | type QueryIORMConfigOptionRequestType struct
function init (line 35268) | func init() {
type QueryIORMConfigOptionResponse (line 35272) | type QueryIORMConfigOptionResponse struct
type QueryIPAllocations (line 35276) | type QueryIPAllocations
function init (line 35278) | func init() {
type QueryIPAllocationsRequestType (line 35282) | type QueryIPAllocationsRequestType struct
function init (line 35289) | func init() {
type QueryIPAllocationsResponse (line 35293) | type QueryIPAllocationsResponse struct
type QueryIoFilterInfo (line 35297) | type QueryIoFilterInfo
function init (line 35299) | func init() {
type QueryIoFilterInfoRequestType (line 35303) | type QueryIoFilterInfoRequestType struct
function init (line 35308) | func init() {
type QueryIoFilterInfoResponse (line 35312) | type QueryIoFilterInfoResponse struct
type QueryIoFilterIssues (line 35316) | type QueryIoFilterIssues
function init (line 35318) | func init() {
type QueryIoFilterIssuesRequestType (line 35322) | type QueryIoFilterIssuesRequestType struct
function init (line 35328) | func init() {
type QueryIoFilterIssuesResponse (line 35332) | type QueryIoFilterIssuesResponse struct
type QueryIpPools (line 35336) | type QueryIpPools
function init (line 35338) | func init() {
type QueryIpPoolsRequestType (line 35342) | type QueryIpPoolsRequestType struct
function init (line 35347) | func init() {
type QueryIpPoolsResponse (line 35351) | type QueryIpPoolsResponse struct
type QueryLicenseSourceAvailability (line 35355) | type QueryLicenseSourceAvailability
function init (line 35357) | func init() {
type QueryLicenseSourceAvailabilityRequestType (line 35361) | type QueryLicenseSourceAvailabilityRequestType struct
function init (line 35366) | func init() {
type QueryLicenseSourceAvailabilityResponse (line 35370) | type QueryLicenseSourceAvailabilityResponse struct
type QueryLicenseUsage (line 35374) | type QueryLicenseUsage
function init (line 35376) | func init() {
type QueryLicenseUsageRequestType (line 35380) | type QueryLicenseUsageRequestType struct
function init (line 35385) | func init() {
type QueryLicenseUsageResponse (line 35389) | type QueryLicenseUsageResponse struct
type QueryLockdownExceptions (line 35393) | type QueryLockdownExceptions
function init (line 35395) | func init() {
type QueryLockdownExceptionsRequestType (line 35399) | type QueryLockdownExceptionsRequestType struct
function init (line 35403) | func init() {
type QueryLockdownExceptionsResponse (line 35407) | type QueryLockdownExceptionsResponse struct
type QueryManagedBy (line 35411) | type QueryManagedBy
function init (line 35413) | func init() {
type QueryManagedByRequestType (line 35417) | type QueryManagedByRequestType struct
function init (line 35422) | func init() {
type QueryManagedByResponse (line 35426) | type QueryManagedByResponse struct
type QueryMemoryOverhead (line 35430) | type QueryMemoryOverhead
function init (line 35432) | func init() {
type QueryMemoryOverheadEx (line 35436) | type QueryMemoryOverheadEx
function init (line 35438) | func init() {
type QueryMemoryOverheadExRequestType (line 35442) | type QueryMemoryOverheadExRequestType struct
function init (line 35447) | func init() {
type QueryMemoryOverheadExResponse (line 35451) | type QueryMemoryOverheadExResponse struct
type QueryMemoryOverheadRequestType (line 35455) | type QueryMemoryOverheadRequestType struct
function init (line 35462) | func init() {
type QueryMemoryOverheadResponse (line 35466) | type QueryMemoryOverheadResponse struct
type QueryMigrationDependencies (line 35470) | type QueryMigrationDependencies
function init (line 35472) | func init() {
type QueryMigrationDependenciesRequestType (line 35476) | type QueryMigrationDependenciesRequestType struct
function init (line 35481) | func init() {
type QueryMigrationDependenciesResponse (line 35485) | type QueryMigrationDependenciesResponse struct
type QueryModules (line 35489) | type QueryModules
function init (line 35491) | func init() {
type QueryModulesRequestType (line 35495) | type QueryModulesRequestType struct
function init (line 35499) | func init() {
type QueryModulesResponse (line 35503) | type QueryModulesResponse struct
type QueryMonitoredEntities (line 35507) | type QueryMonitoredEntities
function init (line 35509) | func init() {
type QueryMonitoredEntitiesRequestType (line 35513) | type QueryMonitoredEntitiesRequestType struct
function init (line 35518) | func init() {
type QueryMonitoredEntitiesResponse (line 35522) | type QueryMonitoredEntitiesResponse struct
type QueryNFSUser (line 35526) | type QueryNFSUser
function init (line 35528) | func init() {
type QueryNFSUserRequestType (line 35532) | type QueryNFSUserRequestType struct
function init (line 35536) | func init() {
type QueryNFSUserResponse (line 35540) | type QueryNFSUserResponse struct
type QueryNetConfig (line 35544) | type QueryNetConfig
function init (line 35546) | func init() {
type QueryNetConfigRequestType (line 35550) | type QueryNetConfigRequestType struct
function init (line 35555) | func init() {
type QueryNetConfigResponse (line 35559) | type QueryNetConfigResponse struct
type QueryNetworkHint (line 35563) | type QueryNetworkHint
function init (line 35565) | func init() {
type QueryNetworkHintRequestType (line 35569) | type QueryNetworkHintRequestType struct
function init (line 35574) | func init() {
type QueryNetworkHintResponse (line 35578) | type QueryNetworkHintResponse struct
type QueryObjectsOnPhysicalVsanDisk (line 35582) | type QueryObjectsOnPhysicalVsanDisk
function init (line 35584) | func init() {
type QueryObjectsOnPhysicalVsanDiskRequestType (line 35588) | type QueryObjectsOnPhysicalVsanDiskRequestType struct
function init (line 35593) | func init() {
type QueryObjectsOnPhysicalVsanDiskResponse (line 35597) | type QueryObjectsOnPhysicalVsanDiskResponse struct
type QueryOptions (line 35601) | type QueryOptions
function init (line 35603) | func init() {
type QueryOptionsRequestType (line 35607) | type QueryOptionsRequestType struct
function init (line 35612) | func init() {
type QueryOptionsResponse (line 35616) | type QueryOptionsResponse struct
type QueryPartitionCreateDesc (line 35620) | type QueryPartitionCreateDesc
function init (line 35622) | func init() {
type QueryPartitionCreateDescRequestType (line 35626) | type QueryPartitionCreateDescRequestType struct
function init (line 35632) | func init() {
type QueryPartitionCreateDescResponse (line 35636) | type QueryPartitionCreateDescResponse struct
type QueryPartitionCreateOptions (line 35640) | type QueryPartitionCreateOptions
function init (line 35642) | func init() {
type QueryPartitionCreateOptionsRequestType (line 35646) | type QueryPartitionCreateOptionsRequestType struct
function init (line 35652) | func init() {
type QueryPartitionCreateOptionsResponse (line 35656) | type QueryPartitionCreateOptionsResponse struct
type QueryPathSelectionPolicyOptions (line 35660) | type QueryPathSelectionPolicyOptions
function init (line 35662) | func init() {
type QueryPathSelectionPolicyOptionsRequestType (line 35666) | type QueryPathSelectionPolicyOptionsRequestType struct
function init (line 35670) | func init() {
type QueryPathSelectionPolicyOptionsResponse (line 35674) | type QueryPathSelectionPolicyOptionsResponse struct
type QueryPerf (line 35678) | type QueryPerf
function init (line 35680) | func init() {
type QueryPerfComposite (line 35684) | type QueryPerfComposite
function init (line 35686) | func init() {
type QueryPerfCompositeRequestType (line 35690) | type QueryPerfCompositeRequestType struct
function init (line 35695) | func init() {
type QueryPerfCompositeResponse (line 35699) | type QueryPerfCompositeResponse struct
type QueryPerfCounter (line 35703) | type QueryPerfCounter
function init (line 35705) | func init() {
type QueryPerfCounterByLevel (line 35709) | type QueryPerfCounterByLevel
function init (line 35711) | func init() {
type QueryPerfCounterByLevelRequestType (line 35715) | type QueryPerfCounterByLevelRequestType struct
function init (line 35720) | func init() {
type QueryPerfCounterByLevelResponse (line 35724) | type QueryPerfCounterByLevelResponse struct
type QueryPerfCounterRequestType (line 35728) | type QueryPerfCounterRequestType struct
function init (line 35733) | func init() {
type QueryPerfCounterResponse (line 35737) | type QueryPerfCounterResponse struct
type QueryPerfProviderSummary (line 35741) | type QueryPerfProviderSummary
function init (line 35743) | func init() {
type QueryPerfProviderSummaryRequestType (line 35747) | type QueryPerfProviderSummaryRequestType struct
function init (line 35752) | func init() {
type QueryPerfProviderSummaryResponse (line 35756) | type QueryPerfProviderSummaryResponse struct
type QueryPerfRequestType (line 35760) | type QueryPerfRequestType struct
function init (line 35765) | func init() {
type QueryPerfResponse (line 35769) | type QueryPerfResponse struct
type QueryPhysicalVsanDisks (line 35773) | type QueryPhysicalVsanDisks
function init (line 35775) | func init() {
type QueryPhysicalVsanDisksRequestType (line 35779) | type QueryPhysicalVsanDisksRequestType struct
function init (line 35784) | func init() {
type QueryPhysicalVsanDisksResponse (line 35788) | type QueryPhysicalVsanDisksResponse struct
type QueryPnicStatus (line 35792) | type QueryPnicStatus
function init (line 35794) | func init() {
type QueryPnicStatusRequestType (line 35798) | type QueryPnicStatusRequestType struct
function init (line 35803) | func init() {
type QueryPnicStatusResponse (line 35807) | type QueryPnicStatusResponse struct
type QueryPolicyMetadata (line 35811) | type QueryPolicyMetadata
function init (line 35813) | func init() {
type QueryPolicyMetadataRequestType (line 35817) | type QueryPolicyMetadataRequestType struct
function init (line 35823) | func init() {
type QueryPolicyMetadataResponse (line 35827) | type QueryPolicyMetadataResponse struct
type QueryProfileStructure (line 35831) | type QueryProfileStructure
function init (line 35833) | func init() {
type QueryProfileStructureRequestType (line 35837) | type QueryProfileStructureRequestType struct
function init (line 35842) | func init() {
type QueryProfileStructureResponse (line 35846) | type QueryProfileStructureResponse struct
type QueryProviderList (line 35850) | type QueryProviderList
function init (line 35852) | func init() {
type QueryProviderListRequestType (line 35856) | type QueryProviderListRequestType struct
function init (line 35860) | func init() {
type QueryProviderListResponse (line 35864) | type QueryProviderListResponse struct
type QueryProviderName (line 35868) | type QueryProviderName
function init (line 35870) | func init() {
type QueryProviderNameRequestType (line 35874) | type QueryProviderNameRequestType struct
function init (line 35879) | func init() {
type QueryProviderNameResponse (line 35883) | type QueryProviderNameResponse struct
type QueryResourceConfigOption (line 35887) | type QueryResourceConfigOption
function init (line 35889) | func init() {
type QueryResourceConfigOptionRequestType (line 35893) | type QueryResourceConfigOptionRequestType struct
function init (line 35897) | func init() {
type QueryResourceConfigOptionResponse (line 35901) | type QueryResourceConfigOptionResponse struct
type QueryServiceList (line 35905) | type QueryServiceList
function init (line 35907) | func init() {
type QueryServiceListRequestType (line 35911) | type QueryServiceListRequestType struct
function init (line 35917) | func init() {
type QueryServiceListResponse (line 35921) | type QueryServiceListResponse struct
type QueryStorageArrayTypePolicyOptions (line 35925) | type QueryStorageArrayTypePolicyOptions
function init (line 35927) | func init() {
type QueryStorageArrayTypePolicyOptionsRequestType (line 35931) | type QueryStorageArrayTypePolicyOptionsRequestType struct
function init (line 35935) | func init() {
type QueryStorageArrayTypePolicyOptionsResponse (line 35939) | type QueryStorageArrayTypePolicyOptionsResponse struct
type QuerySupportedFeatures (line 35943) | type QuerySupportedFeatures
function init (line 35945) | func init() {
type QuerySupportedFeaturesRequestType (line 35949) | type QuerySupportedFeaturesRequestType struct
function init (line 35954) | func init() {
type QuerySupportedFeaturesResponse (line 35958) | type QuerySupportedFeaturesResponse struct
type QuerySyncingVsanObjects (line 35962) | type QuerySyncingVsanObjects
function init (line 35964) | func init() {
type QuerySyncingVsanObjectsRequestType (line 35968) | type QuerySyncingVsanObjectsRequestType struct
function init (line 35973) | func init() {
type QuerySyncingVsanObjectsResponse (line 35977) | type QuerySyncingVsanObjectsResponse struct
type QuerySystemUsers (line 35981) | type QuerySystemUsers
function init (line 35983) | func init() {
type QuerySystemUsersRequestType (line 35987) | type QuerySystemUsersRequestType struct
function init (line 35991) | func init() {
type QuerySystemUsersResponse (line 35995) | type QuerySystemUsersResponse struct
type QueryTargetCapabilities (line 35999) | type QueryTargetCapabilities
function init (line 36001) | func init() {
type QueryTargetCapabilitiesRequestType (line 36005) | type QueryTargetCapabilitiesRequestType struct
function init (line 36010) | func init() {
type QueryTargetCapabilitiesResponse (line 36014) | type QueryTargetCapabilitiesResponse struct
type QueryTpmAttestationReport (line 36018) | type QueryTpmAttestationReport
function init (line 36020) | func init() {
type QueryTpmAttestationReportRequestType (line 36024) | type QueryTpmAttestationReportRequestType struct
function init (line 36028) | func init() {
type QueryTpmAttestationReportResponse (line 36032) | type QueryTpmAttestationReportResponse struct
type QueryUnmonitoredHosts (line 36036) | type QueryUnmonitoredHosts
function init (line 36038) | func init() {
type QueryUnmonitoredHostsRequestType (line 36042) | type QueryUnmonitoredHostsRequestType struct
function init (line 36048) | func init() {
type QueryUnmonitoredHostsResponse (line 36052) | type QueryUnmonitoredHostsResponse struct
type QueryUnownedFiles (line 36056) | type QueryUnownedFiles
function init (line 36058) | func init() {
type QueryUnownedFilesRequestType (line 36062) | type QueryUnownedFilesRequestType struct
function init (line 36066) | func init() {
type QueryUnownedFilesResponse (line 36070) | type QueryUnownedFilesResponse struct
type QueryUnresolvedVmfsVolume (line 36074) | type QueryUnresolvedVmfsVolume
function init (line 36076) | func init() {
type QueryUnresolvedVmfsVolumeRequestType (line 36080) | type QueryUnresolvedVmfsVolumeRequestType struct
function init (line 36084) | func init() {
type QueryUnresolvedVmfsVolumeResponse (line 36088) | type QueryUnresolvedVmfsVolumeResponse struct
type QueryUnresolvedVmfsVolumes (line 36092) | type QueryUnresolvedVmfsVolumes
function init (line 36094) | func init() {
type QueryUnresolvedVmfsVolumesRequestType (line 36098) | type QueryUnresolvedVmfsVolumesRequestType struct
function init (line 36102) | func init() {
type QueryUnresolvedVmfsVolumesResponse (line 36106) | type QueryUnresolvedVmfsVolumesResponse struct
type QueryUsedVlanIdInDvs (line 36110) | type QueryUsedVlanIdInDvs
function init (line 36112) | func init() {
type QueryUsedVlanIdInDvsRequestType (line 36116) | type QueryUsedVlanIdInDvsRequestType struct
function init (line 36120) | func init() {
type QueryUsedVlanIdInDvsResponse (line 36124) | type QueryUsedVlanIdInDvsResponse struct
type QueryVMotionCompatibility (line 36128) | type QueryVMotionCompatibility
function init (line 36130) | func init() {
type QueryVMotionCompatibilityExRequestType (line 36134) | type QueryVMotionCompatibilityExRequestType struct
function init (line 36140) | func init() {
type QueryVMotionCompatibilityEx_Task (line 36144) | type QueryVMotionCompatibilityEx_Task
function init (line 36146) | func init() {
type QueryVMotionCompatibilityEx_TaskResponse (line 36150) | type QueryVMotionCompatibilityEx_TaskResponse struct
type QueryVMotionCompatibilityRequestType (line 36154) | type QueryVMotionCompatibilityRequestType struct
function init (line 36161) | func init() {
type QueryVMotionCompatibilityResponse (line 36165) | type QueryVMotionCompatibilityResponse struct
type QueryVirtualDiskFragmentation (line 36169) | type QueryVirtualDiskFragmentation
function init (line 36171) | func init() {
type QueryVirtualDiskFragmentationRequestType (line 36175) | type QueryVirtualDiskFragmentationRequestType struct
function init (line 36181) | func init() {
type QueryVirtualDiskFragmentationResponse (line 36185) | type QueryVirtualDiskFragmentationResponse struct
type QueryVirtualDiskGeometry (line 36189) | type QueryVirtualDiskGeometry
function init (line 36191) | func init() {
type QueryVirtualDiskGeometryRequestType (line 36195) | type QueryVirtualDiskGeometryRequestType struct
function init (line 36201) | func init() {
type QueryVirtualDiskGeometryResponse (line 36205) | type QueryVirtualDiskGeometryResponse struct
type QueryVirtualDiskUuid (line 36209) | type QueryVirtualDiskUuid
function init (line 36211) | func init() {
type QueryVirtualDiskUuidRequestType (line 36215) | type QueryVirtualDiskUuidRequestType struct
function init (line 36221) | func init() {
type QueryVirtualDiskUuidResponse (line 36225) | type QueryVirtualDiskUuidResponse struct
type QueryVmfsConfigOption (line 36229) | type QueryVmfsConfigOption
function init (line 36231) | func init() {
type QueryVmfsConfigOptionRequestType (line 36235) | type QueryVmfsConfigOptionRequestType struct
function init (line 36239) | func init() {
type QueryVmfsConfigOptionResponse (line 36243) | type QueryVmfsConfigOptionResponse struct
type QueryVmfsDatastoreCreateOptions (line 36247) | type QueryVmfsDatastoreCreateOptions
function init (line 36249) | func init() {
type QueryVmfsDatastoreCreateOptionsRequestType (line 36253) | type QueryVmfsDatastoreCreateOptionsRequestType struct
function init (line 36259) | func init() {
type QueryVmfsDatastoreCreateOptionsResponse (line 36263) | type QueryVmfsDatastoreCreateOptionsResponse struct
type QueryVmfsDatastoreExpandOptions (line 36267) | type QueryVmfsDatastoreExpandOptions
function init (line 36269) | func init() {
type QueryVmfsDatastoreExpandOptionsRequestType (line 36273) | type QueryVmfsDatastoreExpandOptionsRequestType struct
function init (line 36278) | func init() {
type QueryVmfsDatastoreExpandOptionsResponse (line 36282) | type QueryVmfsDatastoreExpandOptionsResponse struct
type QueryVmfsDatastoreExtendOptions (line 36286) | type QueryVmfsDatastoreExtendOptions
function init (line 36288) | func init() {
type QueryVmfsDatastoreExtendOptionsRequestType (line 36292) | type QueryVmfsDatastoreExtendOptionsRequestType struct
function init (line 36299) | func init() {
type QueryVmfsDatastoreExtendOptionsResponse (line 36303) | type QueryVmfsDatastoreExtendOptionsResponse struct
type QueryVnicStatus (line 36307) | type QueryVnicStatus
function init (line 36309) | func init() {
type QueryVnicStatusRequestType (line 36313) | type QueryVnicStatusRequestType struct
function init (line 36318) | func init() {
type QueryVnicStatusResponse (line 36322) | type QueryVnicStatusResponse struct
type QueryVsanObjectUuidsByFilter (line 36326) | type QueryVsanObjectUuidsByFilter
function init (line 36328) | func init() {
type QueryVsanObjectUuidsByFilterRequestType (line 36332) | type QueryVsanObjectUuidsByFilterRequestType struct
function init (line 36339) | func init() {
type QueryVsanObjectUuidsByFilterResponse (line 36343) | type QueryVsanObjectUuidsByFilterResponse struct
type QueryVsanObjects (line 36347) | type QueryVsanObjects
function init (line 36349) | func init() {
type QueryVsanObjectsRequestType (line 36353) | type QueryVsanObjectsRequestType struct
function init (line 36358) | func init() {
type QueryVsanObjectsResponse (line 36362) | type QueryVsanObjectsResponse struct
type QueryVsanStatistics (line 36366) | type QueryVsanStatistics
function init (line 36368) | func init() {
type QueryVsanStatisticsRequestType (line 36372) | type QueryVsanStatisticsRequestType struct
function init (line 36377) | func init() {
type QueryVsanStatisticsResponse (line 36381) | type QueryVsanStatisticsResponse struct
type QueryVsanUpgradeStatus (line 36385) | type QueryVsanUpgradeStatus
function init (line 36387) | func init() {
type QueryVsanUpgradeStatusRequestType (line 36391) | type QueryVsanUpgradeStatusRequestType struct
function init (line 36396) | func init() {
type QueryVsanUpgradeStatusResponse (line 36400) | type QueryVsanUpgradeStatusResponse struct
type QuestionPending (line 36404) | type QuestionPending struct
function init (line 36410) | func init() {
type QuestionPendingFault (line 36414) | type QuestionPendingFault
function init (line 36416) | func init() {
type QuiesceDatastoreIOForHAFailed (line 36420) | type QuiesceDatastoreIOForHAFailed struct
function init (line 36429) | func init() {
type QuiesceDatastoreIOForHAFailedFault (line 36433) | type QuiesceDatastoreIOForHAFailedFault
function init (line 36435) | func init() {
type RDMConversionNotSupported (line 36439) | type RDMConversionNotSupported struct
function init (line 36445) | func init() {
type RDMConversionNotSupportedFault (line 36449) | type RDMConversionNotSupportedFault
function init (line 36451) | func init() {
type RDMNotPreserved (line 36455) | type RDMNotPreserved struct
function init (line 36461) | func init() {
type RDMNotPreservedFault (line 36465) | type RDMNotPreservedFault
function init (line 36467) | func init() {
type RDMNotSupported (line 36471) | type RDMNotSupported struct
function init (line 36475) | func init() {
type RDMNotSupportedFault (line 36479) | type RDMNotSupportedFault
function init (line 36481) | func init() {
type RDMNotSupportedOnDatastore (line 36485) | type RDMNotSupportedOnDatastore struct
function init (line 36493) | func init() {
type RDMNotSupportedOnDatastoreFault (line 36497) | type RDMNotSupportedOnDatastoreFault
function init (line 36499) | func init() {
type RDMPointsToInaccessibleDisk (line 36503) | type RDMPointsToInaccessibleDisk struct
function init (line 36507) | func init() {
type RDMPointsToInaccessibleDiskFault (line 36511) | type RDMPointsToInaccessibleDiskFault
function init (line 36513) | func init() {
type RawDiskNotSupported (line 36517) | type RawDiskNotSupported struct
function init (line 36521) | func init() {
type RawDiskNotSupportedFault (line 36525) | type RawDiskNotSupportedFault
function init (line 36527) | func init() {
type ReadEnvironmentVariableInGuest (line 36531) | type ReadEnvironmentVariableInGuest
function init (line 36533) | func init() {
type ReadEnvironmentVariableInGuestRequestType (line 36537) | type ReadEnvironmentVariableInGuestRequestType struct
function init (line 36544) | func init() {
type ReadEnvironmentVariableInGuestResponse (line 36548) | type ReadEnvironmentVariableInGuestResponse struct
type ReadHostResourcePoolTreeFailed (line 36552) | type ReadHostResourcePoolTreeFailed struct
function init (line 36556) | func init() {
type ReadHostResourcePoolTreeFailedFault (line 36560) | type ReadHostResourcePoolTreeFailedFault
function init (line 36562) | func init() {
type ReadNextEvents (line 36566) | type ReadNextEvents
function init (line 36568) | func init() {
type ReadNextEventsRequestType (line 36572) | type ReadNextEventsRequestType struct
function init (line 36577) | func init() {
type ReadNextEventsResponse (line 36581) | type ReadNextEventsResponse struct
type ReadNextTasks (line 36585) | type ReadNextTasks
function init (line 36587) | func init() {
type ReadNextTasksRequestType (line 36591) | type ReadNextTasksRequestType struct
function init (line 36596) | func init() {
type ReadNextTasksResponse (line 36600) | type ReadNextTasksResponse struct
type ReadOnlyDisksWithLegacyDestination (line 36604) | type ReadOnlyDisksWithLegacyDestination struct
function init (line 36611) | func init() {
type ReadOnlyDisksWithLegacyDestinationFault (line 36615) | type ReadOnlyDisksWithLegacyDestinationFault
function init (line 36617) | func init() {
type ReadPreviousEvents (line 36621) | type ReadPreviousEvents
function init (line 36623) | func init() {
type ReadPreviousEventsRequestType (line 36627) | type ReadPreviousEventsRequestType struct
function init (line 36632) | func init() {
type ReadPreviousEventsResponse (line 36636) | type ReadPreviousEventsResponse struct
type ReadPreviousTasks (line 36640) | type ReadPreviousTasks
function init (line 36642) | func init() {
type ReadPreviousTasksRequestType (line 36646) | type ReadPreviousTasksRequestType struct
function init (line 36651) | func init() {
type ReadPreviousTasksResponse (line 36655) | type ReadPreviousTasksResponse struct
type RebootGuest (line 36659) | type RebootGuest
function init (line 36661) | func init() {
type RebootGuestRequestType (line 36665) | type RebootGuestRequestType struct
function init (line 36669) | func init() {
type RebootGuestResponse (line 36673) | type RebootGuestResponse struct
type RebootHostRequestType (line 36676) | type RebootHostRequestType struct
function init (line 36681) | func init() {
type RebootHost_Task (line 36685) | type RebootHost_Task
function init (line 36687) | func init() {
type RebootHost_TaskResponse (line 36691) | type RebootHost_TaskResponse struct
type RebootRequired (line 36695) | type RebootRequired struct
function init (line 36701) | func init() {
type RebootRequiredFault (line 36705) | type RebootRequiredFault
function init (line 36707) | func init() {
type RecommendDatastores (line 36711) | type RecommendDatastores
function init (line 36713) | func init() {
type RecommendDatastoresRequestType (line 36717) | type RecommendDatastoresRequestType struct
function init (line 36722) | func init() {
type RecommendDatastoresResponse (line 36726) | type RecommendDatastoresResponse struct
type RecommendHostsForVm (line 36730) | type RecommendHostsForVm
function init (line 36732) | func init() {
type RecommendHostsForVmRequestType (line 36736) | type RecommendHostsForVmRequestType struct
function init (line 36742) | func init() {
type RecommendHostsForVmResponse (line 36746) | type RecommendHostsForVmResponse struct
type RecommissionVsanNodeRequestType (line 36750) | type RecommissionVsanNodeRequestType struct
function init (line 36754) | func init() {
type RecommissionVsanNode_Task (line 36758) | type RecommissionVsanNode_Task
function init (line 36760) | func init() {
type RecommissionVsanNode_TaskResponse (line 36764) | type RecommissionVsanNode_TaskResponse struct
type ReconcileDatastoreInventoryRequestType (line 36768) | type ReconcileDatastoreInventoryRequestType struct
function init (line 36773) | func init() {
type ReconcileDatastoreInventory_Task (line 36777) | type ReconcileDatastoreInventory_Task
function init (line 36779) | func init() {
type ReconcileDatastoreInventory_TaskResponse (line 36783) | type ReconcileDatastoreInventory_TaskResponse struct
type ReconfigVMRequestType (line 36787) | type ReconfigVMRequestType struct
function init (line 36792) | func init() {
type ReconfigVM_Task (line 36796) | type ReconfigVM_Task
function init (line 36798) | func init() {
type ReconfigVM_TaskResponse (line 36802) | type ReconfigVM_TaskResponse struct
type ReconfigurationSatisfiable (line 36806) | type ReconfigurationSatisfiable
function init (line 36808) | func init() {
type ReconfigurationSatisfiableRequestType (line 36812) | type ReconfigurationSatisfiableRequestType struct
function init (line 36818) | func init() {
type ReconfigurationSatisfiableResponse (line 36822) | type ReconfigurationSatisfiableResponse struct
type ReconfigureAlarm (line 36826) | type ReconfigureAlarm
function init (line 36828) | func init() {
type ReconfigureAlarmRequestType (line 36832) | type ReconfigureAlarmRequestType struct
function init (line 36837) | func init() {
type ReconfigureAlarmResponse (line 36841) | type ReconfigureAlarmResponse struct
type ReconfigureAutostart (line 36844) | type ReconfigureAutostart
function init (line 36846) | func init() {
type ReconfigureAutostartRequestType (line 36850) | type ReconfigureAutostartRequestType struct
function init (line 36855) | func init() {
type ReconfigureAutostartResponse (line 36859) | type ReconfigureAutostartResponse struct
type ReconfigureClusterRequestType (line 36862) | type ReconfigureClusterRequestType struct
function init (line 36868) | func init() {
type ReconfigureCluster_Task (line 36872) | type ReconfigureCluster_Task
function init (line 36874) | func init() {
type ReconfigureCluster_TaskResponse (line 36878) | type ReconfigureCluster_TaskResponse struct
type ReconfigureComputeResourceRequestType (line 36882) | type ReconfigureComputeResourceRequestType struct
function init (line 36888) | func init() {
type ReconfigureComputeResource_Task (line 36892) | type ReconfigureComputeResource_Task
function init (line 36894) | func init() {
type ReconfigureComputeResource_TaskResponse (line 36898) | type ReconfigureComputeResource_TaskResponse struct
type ReconfigureDVPortRequestType (line 36902) | type ReconfigureDVPortRequestType struct
function init (line 36907) | func init() {
type ReconfigureDVPort_Task (line 36911) | type ReconfigureDVPort_Task
function init (line 36913) | func init() {
type ReconfigureDVPort_TaskResponse (line 36917) | type ReconfigureDVPort_TaskResponse struct
type ReconfigureDVPortgroupRequestType (line 36921) | type ReconfigureDVPortgroupRequestType struct
function init (line 36926) | func init() {
type ReconfigureDVPortgroup_Task (line 36930) | type ReconfigureDVPortgroup_Task
function init (line 36932) | func init() {
type ReconfigureDVPortgroup_TaskResponse (line 36936) | type ReconfigureDVPortgroup_TaskResponse struct
type ReconfigureDatacenterRequestType (line 36940) | type ReconfigureDatacenterRequestType struct
function init (line 36946) | func init() {
type ReconfigureDatacenter_Task (line 36950) | type ReconfigureDatacenter_Task
function init (line 36952) | func init() {
type ReconfigureDatacenter_TaskResponse (line 36956) | type ReconfigureDatacenter_TaskResponse struct
type ReconfigureDomObject (line 36960) | type ReconfigureDomObject
function init (line 36962) | func init() {
type ReconfigureDomObjectRequestType (line 36966) | type ReconfigureDomObjectRequestType struct
function init (line 36972) | func init() {
type ReconfigureDomObjectResponse (line 36976) | type ReconfigureDomObjectResponse struct
type ReconfigureDvsRequestType (line 36979) | type ReconfigureDvsRequestType struct
function init (line 36984) | func init() {
type ReconfigureDvs_Task (line 36988) | type ReconfigureDvs_Task
function init (line 36990) | func init() {
type ReconfigureDvs_TaskResponse (line 36994) | type ReconfigureDvs_TaskResponse struct
type ReconfigureHostForDASRequestType (line 36998) | type ReconfigureHostForDASRequestType struct
function init (line 37002) | func init() {
type ReconfigureHostForDAS_Task (line 37006) | type ReconfigureHostForDAS_Task
function init (line 37008) | func init() {
type ReconfigureHostForDAS_TaskResponse (line 37012) | type ReconfigureHostForDAS_TaskResponse struct
type ReconfigureScheduledTask (line 37016) | type ReconfigureScheduledTask
function init (line 37018) | func init() {
type ReconfigureScheduledTaskRequestType (line 37022) | type ReconfigureScheduledTaskRequestType struct
function init (line 37027) | func init() {
type ReconfigureScheduledTaskResponse (line 37031) | type ReconfigureScheduledTaskResponse struct
type ReconfigureServiceConsoleReservation (line 37034) | type ReconfigureServiceConsoleReservation
function init (line 37036) | func init() {
type ReconfigureServiceConsoleReservationRequestType (line 37040) | type ReconfigureServiceConsoleReservationRequestType struct
function init (line 37045) | func init() {
type ReconfigureServiceConsoleReservationResponse (line 37049) | type ReconfigureServiceConsoleReservationResponse struct
type ReconfigureSnmpAgent (line 37052) | type ReconfigureSnmpAgent
function init (line 37054) | func init() {
type ReconfigureSnmpAgentRequestType (line 37058) | type ReconfigureSnmpAgentRequestType struct
function init (line 37063) | func init() {
type ReconfigureSnmpAgentResponse (line 37067) | type ReconfigureSnmpAgentResponse struct
type ReconfigureVirtualMachineReservation (line 37070) | type ReconfigureVirtualMachineReservation
function init (line 37072) | func init() {
type ReconfigureVirtualMachineReservationRequestType (line 37076) | type ReconfigureVirtualMachineReservationRequestType struct
function init (line 37081) | func init() {
type ReconfigureVirtualMachineReservationResponse (line 37085) | type ReconfigureVirtualMachineReservationResponse struct
type ReconnectHostRequestType (line 37088) | type ReconnectHostRequestType struct
function init (line 37094) | func init() {
type ReconnectHost_Task (line 37098) | type ReconnectHost_Task
function init (line 37100) | func init() {
type ReconnectHost_TaskResponse (line 37104) | type ReconnectHost_TaskResponse struct
type RecordReplayDisabled (line 37108) | type RecordReplayDisabled struct
function init (line 37112) | func init() {
type RecordReplayDisabledFault (line 37116) | type RecordReplayDisabledFault
function init (line 37118) | func init() {
type RecoveryEvent (line 37122) | type RecoveryEvent struct
function init (line 37131) | func init() {
type RectifyDvsHostRequestType (line 37135) | type RectifyDvsHostRequestType struct
function init (line 37140) | func init() {
type RectifyDvsHost_Task (line 37144) | type RectifyDvsHost_Task
function init (line 37146) | func init() {
type RectifyDvsHost_TaskResponse (line 37150) | type RectifyDvsHost_TaskResponse struct
type RectifyDvsOnHostRequestType (line 37154) | type RectifyDvsOnHostRequestType struct
function init (line 37159) | func init() {
type RectifyDvsOnHost_Task (line 37163) | type RectifyDvsOnHost_Task
function init (line 37165) | func init() {
type RectifyDvsOnHost_TaskResponse (line 37169) | type RectifyDvsOnHost_TaskResponse struct
type RecurrentTaskScheduler (line 37173) | type RecurrentTaskScheduler struct
function init (line 37179) | func init() {
type Refresh (line 37183) | type Refresh
function init (line 37185) | func init() {
type RefreshDVPortState (line 37189) | type RefreshDVPortState
function init (line 37191) | func init() {
type RefreshDVPortStateRequestType (line 37195) | type RefreshDVPortStateRequestType struct
function init (line 37200) | func init() {
type RefreshDVPortStateResponse (line 37204) | type RefreshDVPortStateResponse struct
type RefreshDatastore (line 37207) | type RefreshDatastore
function init (line 37209) | func init() {
type RefreshDatastoreRequestType (line 37213) | type RefreshDatastoreRequestType struct
function init (line 37217) | func init() {
type RefreshDatastoreResponse (line 37221) | type RefreshDatastoreResponse struct
type RefreshDatastoreStorageInfo (line 37224) | type RefreshDatastoreStorageInfo
function init (line 37226) | func init() {
type RefreshDatastoreStorageInfoRequestType (line 37230) | type RefreshDatastoreStorageInfoRequestType struct
function init (line 37234) | func init() {
type RefreshDatastoreStorageInfoResponse (line 37238) | type RefreshDatastoreStorageInfoResponse struct
type RefreshDateTimeSystem (line 37241) | type RefreshDateTimeSystem
function init (line 37243) | func init() {
type RefreshDateTimeSystemRequestType (line 37247) | type RefreshDateTimeSystemRequestType struct
function init (line 37251) | func init() {
type RefreshDateTimeSystemResponse (line 37255) | type RefreshDateTimeSystemResponse struct
type RefreshFirewall (line 37258) | type RefreshFirewall
function init (line 37260) | func init() {
type RefreshFirewallRequestType (line 37264) | type RefreshFirewallRequestType struct
function init (line 37268) | func init() {
type RefreshFirewallResponse (line 37272) | type RefreshFirewallResponse struct
type RefreshGraphicsManager (line 37275) | type RefreshGraphicsManager
function init (line 37277) | func init() {
type RefreshGraphicsManagerRequestType (line 37281) | type RefreshGraphicsManagerRequestType struct
function init (line 37285) | func init() {
type RefreshGraphicsManagerResponse (line 37289) | type RefreshGraphicsManagerResponse struct
type RefreshHealthStatusSystem (line 37292) | type RefreshHealthStatusSystem
function init (line 37294) | func init() {
type RefreshHealthStatusSystemRequestType (line 37298) | type RefreshHealthStatusSystemRequestType struct
function init (line 37302) | func init() {
type RefreshHealthStatusSystemResponse (line 37306) | type RefreshHealthStatusSystemResponse struct
type RefreshNetworkSystem (line 37309) | type RefreshNetworkSystem
function init (line 37311) | func init() {
type RefreshNetworkSystemRequestType (line 37315) | type RefreshNetworkSystemRequestType struct
function init (line 37319) | func init() {
type RefreshNetworkSystemResponse (line 37323) | type RefreshNetworkSystemResponse struct
type RefreshRecommendation (line 37326) | type RefreshRecommendation
function init (line 37328) | func init() {
type RefreshRecommendationRequestType (line 37332) | type RefreshRecommendationRequestType struct
function init (line 37336) | func init() {
type RefreshRecommendationResponse (line 37340) | type RefreshRecommendationResponse struct
type RefreshRequestType (line 37343) | type RefreshRequestType struct
function init (line 37347) | func init() {
type RefreshResponse (line 37351) | type RefreshResponse struct
type RefreshRuntime (line 37354) | type RefreshRuntime
function init (line 37356) | func init() {
type RefreshRuntimeRequestType (line 37360) | type RefreshRuntimeRequestType struct
function init (line 37364) | func init() {
type RefreshRuntimeResponse (line 37368) | type RefreshRuntimeResponse struct
type RefreshServices (line 37371) | type RefreshServices
function init (line 37373) | func init() {
type RefreshServicesRequestType (line 37377) | type RefreshServicesRequestType struct
function init (line 37381) | func init() {
type RefreshServicesResponse (line 37385) | type RefreshServicesResponse struct
type RefreshStorageDrsRecommendation (line 37388) | type RefreshStorageDrsRecommendation
function init (line 37390) | func init() {
type RefreshStorageDrsRecommendationRequestType (line 37394) | type RefreshStorageDrsRecommendationRequestType struct
function init (line 37399) | func init() {
type RefreshStorageDrsRecommendationResponse (line 37403) | type RefreshStorageDrsRecommendationResponse struct
type RefreshStorageInfo (line 37406) | type RefreshStorageInfo
function init (line 37408) | func init() {
type RefreshStorageInfoRequestType (line 37412) | type RefreshStorageInfoRequestType struct
function init (line 37416) | func init() {
type RefreshStorageInfoResponse (line 37420) | type RefreshStorageInfoResponse struct
type RefreshStorageSystem (line 37423) | type RefreshStorageSystem
function init (line 37425) | func init() {
type RefreshStorageSystemRequestType (line 37429) | type RefreshStorageSystemRequestType struct
function init (line 37433) | func init() {
type RefreshStorageSystemResponse (line 37437) | type RefreshStorageSystemResponse struct
type RegisterChildVMRequestType (line 37440) | type RegisterChildVMRequestType struct
function init (line 37447) | func init() {
type RegisterChildVM_Task (line 37451) | type RegisterChildVM_Task
function init (line 37453) | func init() {
type RegisterChildVM_TaskResponse (line 37457) | type RegisterChildVM_TaskResponse struct
type RegisterDisk (line 37461) | type RegisterDisk
function init (line 37463) | func init() {
type RegisterDiskRequestType (line 37467) | type RegisterDiskRequestType struct
function init (line 37473) | func init() {
type RegisterDiskResponse (line 37477) | type RegisterDiskResponse struct
type RegisterExtension (line 37481) | type RegisterExtension
function init (line 37483) | func init() {
type RegisterExtensionRequestType (line 37487) | type RegisterExtensionRequestType struct
function init (line 37492) | func init() {
type RegisterExtensionResponse (line 37496) | type RegisterExtensionResponse struct
type RegisterHealthUpdateProvider (line 37499) | type RegisterHealthUpdateProvider
function init (line 37501) | func init() {
type RegisterHealthUpdateProviderRequestType (line 37505) | type RegisterHealthUpdateProviderRequestType struct
function init (line 37511) | func init() {
type RegisterHealthUpdateProviderResponse (line 37515) | type RegisterHealthUpdateProviderResponse struct
type RegisterKmipServer (line 37519) | type RegisterKmipServer
function init (line 37521) | func init() {
type RegisterKmipServerRequestType (line 37525) | type RegisterKmipServerRequestType struct
function init (line 37530) | func init() {
type RegisterKmipServerResponse (line 37534) | type RegisterKmipServerResponse struct
type RegisterVMRequestType (line 37537) | type RegisterVMRequestType struct
function init (line 37546) | func init() {
type RegisterVM_Task (line 37550) | type RegisterVM_Task
function init (line 37552) | func init() {
type RegisterVM_TaskResponse (line 37556) | type RegisterVM_TaskResponse struct
type Relation (line 37560) | type Relation struct
function init (line 37568) | func init() {
type ReleaseCredentialsInGuest (line 37572) | type ReleaseCredentialsInGuest
function init (line 37574) | func init() {
type ReleaseCredentialsInGuestRequestType (line 37578) | type ReleaseCredentialsInGuestRequestType struct
function init (line 37584) | func init() {
type ReleaseCredentialsInGuestResponse (line 37588) | type ReleaseCredentialsInGuestResponse struct
type ReleaseIpAllocation (line 37591) | type ReleaseIpAllocation
function init (line 37593) | func init() {
type ReleaseIpAllocationRequestType (line 37597) | type ReleaseIpAllocationRequestType struct
function init (line 37604) | func init() {
type ReleaseIpAllocationResponse (line 37608) | type ReleaseIpAllocationResponse struct
type ReleaseManagedSnapshot (line 37611) | type ReleaseManagedSnapshot
function init (line 37613) | func init() {
type ReleaseManagedSnapshotRequestType (line 37617) | type ReleaseManagedSnapshotRequestType struct
function init (line 37623) | func init() {
type ReleaseManagedSnapshotResponse (line 37627) | type ReleaseManagedSnapshotResponse struct
type Reload (line 37630) | type Reload
function init (line 37632) | func init() {
type ReloadRequestType (line 37636) | type ReloadRequestType struct
function init (line 37640) | func init() {
type ReloadResponse (line 37644) | type ReloadResponse struct
type RelocateVMRequestType (line 37647) | type RelocateVMRequestType struct
function init (line 37653) | func init() {
type RelocateVM_Task (line 37657) | type RelocateVM_Task
function init (line 37659) | func init() {
type RelocateVM_TaskResponse (line 37663) | type RelocateVM_TaskResponse struct
type RelocateVStorageObjectRequestType (line 37667) | type RelocateVStorageObjectRequestType struct
function init (line 37674) | func init() {
type RelocateVStorageObject_Task (line 37678) | type RelocateVStorageObject_Task
function init (line 37680) | func init() {
type RelocateVStorageObject_TaskResponse (line 37684) | type RelocateVStorageObject_TaskResponse struct
type RemoteDeviceNotSupported (line 37688) | type RemoteDeviceNotSupported struct
function init (line 37692) | func init() {
type RemoteDeviceNotSupportedFault (line 37696) | type RemoteDeviceNotSupportedFault
function init (line 37698) | func init() {
type RemoteTSMEnabledEvent (line 37702) | type RemoteTSMEnabledEvent struct
function init (line 37706) | func init() {
type RemoveAlarm (line 37710) | type RemoveAlarm
function init (line 37712) | func init() {
type RemoveAlarmRequestType (line 37716) | type RemoveAlarmRequestType struct
function init (line 37720) | func init() {
type RemoveAlarmResponse (line 37724) | type RemoveAlarmResponse struct
type RemoveAllSnapshotsRequestType (line 37727) | type RemoveAllSnapshotsRequestType struct
function init (line 37732) | func init() {
type RemoveAllSnapshots_Task (line 37736) | type RemoveAllSnapshots_Task
function init (line 37738) | func init() {
type RemoveAllSnapshots_TaskResponse (line 37742) | type RemoveAllSnapshots_TaskResponse struct
type RemoveAssignedLicense (line 37746) | type RemoveAssignedLicense
function init (line 37748) | func init() {
type RemoveAssignedLicenseRequestType (line 37752) | type RemoveAssignedLicenseRequestType struct
function init (line 37757) | func init() {
type RemoveAssignedLicenseResponse (line 37761) | type RemoveAssignedLicenseResponse struct
type RemoveAuthorizationRole (line 37764) | type RemoveAuthorizationRole
function init (line 37766) | func init() {
type RemoveAuthorizationRoleRequestType (line 37770) | type RemoveAuthorizationRoleRequestType struct
function init (line 37776) | func init() {
type RemoveAuthorizationRoleResponse (line 37780) | type RemoveAuthorizationRoleResponse struct
type RemoveCustomFieldDef (line 37783) | type RemoveCustomFieldDef
function init (line 37785) | func init() {
type RemoveCustomFieldDefRequestType (line 37789) | type RemoveCustomFieldDefRequestType struct
function init (line 37794) | func init() {
type RemoveCustomFieldDefResponse (line 37798) | type RemoveCustomFieldDefResponse struct
type RemoveDatastore (line 37801) | type RemoveDatastore
function init (line 37803) | func init() {
type RemoveDatastoreExRequestType (line 37807) | type RemoveDatastoreExRequestType struct
function init (line 37812) | func init() {
type RemoveDatastoreEx_Task (line 37816) | type RemoveDatastoreEx_Task
function init (line 37818) | func init() {
type RemoveDatastoreEx_TaskResponse (line 37822) | type RemoveDatastoreEx_TaskResponse struct
type RemoveDatastoreRequestType (line 37826) | type RemoveDatastoreRequestType struct
function init (line 37831) | func init() {
type RemoveDatastoreResponse (line 37835) | type RemoveDatastoreResponse struct
type RemoveDiskMappingRequestType (line 37838) | type RemoveDiskMappingRequestType struct
function init (line 37845) | func init() {
type RemoveDiskMapping_Task (line 37849) | type RemoveDiskMapping_Task
function init (line 37851) | func init() {
type RemoveDiskMapping_TaskResponse (line 37855) | type RemoveDiskMapping_TaskResponse struct
type RemoveDiskRequestType (line 37859) | type RemoveDiskRequestType struct
function init (line 37866) | func init() {
type RemoveDisk_Task (line 37870) | type RemoveDisk_Task
function init (line 37872) | func init() {
type RemoveDisk_TaskResponse (line 37876) | type RemoveDisk_TaskResponse struct
type RemoveEntityPermission (line 37880) | type RemoveEntityPermission
function init (line 37882) | func init() {
type RemoveEntityPermissionRequestType (line 37886) | type RemoveEntityPermissionRequestType struct
function init (line 37893) | func init() {
type RemoveEntityPermissionResponse (line 37897) | type RemoveEntityPermissionResponse struct
type RemoveFailed (line 37900) | type RemoveFailed struct
function init (line 37904) | func init() {
type RemoveFailedFault (line 37908) | type RemoveFailedFault
function init (line 37910) | func init() {
type RemoveFilter (line 37914) | type RemoveFilter
function init (line 37916) | func init() {
type RemoveFilterEntities (line 37920) | type RemoveFilterEntities
function init (line 37922) | func init() {
type RemoveFilterEntitiesRequestType (line 37926) | type RemoveFilterEntitiesRequestType struct
function init (line 37932) | func init() {
type RemoveFilterEntitiesResponse (line 37936) | type RemoveFilterEntitiesResponse struct
type RemoveFilterRequestType (line 37939) | type RemoveFilterRequestType struct
function init (line 37944) | func init() {
type RemoveFilterResponse (line 37948) | type RemoveFilterResponse struct
type RemoveGroup (line 37951) | type RemoveGroup
function init (line 37953) | func init() {
type RemoveGroupRequestType (line 37957) | type RemoveGroupRequestType struct
function init (line 37962) | func init() {
type RemoveGroupResponse (line 37966) | type RemoveGroupResponse struct
type RemoveGuestAlias (line 37969) | type RemoveGuestAlias
function init (line 37971) | func init() {
type RemoveGuestAliasByCert (line 37975) | type RemoveGuestAliasByCert
function init (line 37977) | func init() {
type RemoveGuestAliasByCertRequestType (line 37981) | type RemoveGuestAliasByCertRequestType struct
function init (line 37989) | func init() {
type RemoveGuestAliasByCertResponse (line 37993) | type RemoveGuestAliasByCertResponse struct
type RemoveGuestAliasRequestType (line 37996) | type RemoveGuestAliasRequestType struct
function init (line 38005) | func init() {
type RemoveGuestAliasResponse (line 38009) | type RemoveGuestAliasResponse struct
type RemoveInternetScsiSendTargets (line 38012) | type RemoveInternetScsiSendTargets
function init (line 38014) | func init() {
type RemoveInternetScsiSendTargetsRequestType (line 38018) | type RemoveInternetScsiSendTargetsRequestType struct
function init (line 38024) | func init() {
type RemoveInternetScsiSendTargetsResponse (line 38028) | type RemoveInternetScsiSendTargetsResponse struct
type RemoveInternetScsiStaticTargets (line 38031) | type RemoveInternetScsiStaticTargets
function init (line 38033) | func init() {
type RemoveInternetScsiStaticTargetsRequestType (line 38037) | type RemoveInternetScsiStaticTargetsRequestType struct
function init (line 38043) | func init() {
type RemoveInternetScsiStaticTargetsResponse (line 38047) | type RemoveInternetScsiStaticTargetsResponse struct
type RemoveKey (line 38050) | type RemoveKey
function init (line 38052) | func init() {
type RemoveKeyRequestType (line 38056) | type RemoveKeyRequestType struct
function init (line 38062) | func init() {
type RemoveKeyResponse (line 38066) | type RemoveKeyResponse struct
type RemoveKeys (line 38069) | type RemoveKeys
function init (line 38071) | func init() {
type RemoveKeysRequestType (line 38075) | type RemoveKeysRequestType struct
function init (line 38081) | func init() {
type RemoveKeysResponse (line 38085) | type RemoveKeysResponse struct
type RemoveKmipServer (line 38089) | type RemoveKmipServer
function init (line 38091) | func init() {
type RemoveKmipServerRequestType (line 38095) | type RemoveKmipServerRequestType struct
function init (line 38101) | func init() {
type RemoveKmipServerResponse (line 38105) | type RemoveKmipServerResponse struct
type RemoveLicense (line 38108) | type RemoveLicense
function init (line 38110) | func init() {
type RemoveLicenseLabel (line 38114) | type RemoveLicenseLabel
function init (line 38116) | func init() {
type RemoveLicenseLabelRequestType (line 38120) | type RemoveLicenseLabelRequestType struct
function init (line 38126) | func init() {
type RemoveLicenseLabelResponse (line 38130) | type RemoveLicenseLabelResponse struct
type RemoveLicenseRequestType (line 38133) | type RemoveLicenseRequestType struct
function init (line 38138) | func init() {
type RemoveLicenseResponse (line 38142) | type RemoveLicenseResponse struct
type RemoveMonitoredEntities (line 38145) | type RemoveMonitoredEntities
function init (line 38147) | func init() {
type RemoveMonitoredEntitiesRequestType (line 38151) | type RemoveMonitoredEntitiesRequestType struct
function init (line 38157) | func init() {
type RemoveMonitoredEntitiesResponse (line 38161) | type RemoveMonitoredEntitiesResponse struct
type RemoveNetworkResourcePool (line 38164) | type RemoveNetworkResourcePool
function init (line 38166) | func init() {
type RemoveNetworkResourcePoolRequestType (line 38170) | type RemoveNetworkResourcePoolRequestType struct
function init (line 38175) | func init() {
type RemoveNetworkResourcePoolResponse (line 38179) | type RemoveNetworkResourcePoolResponse struct
type RemovePerfInterval (line 38182) | type RemovePerfInterval
function init (line 38184) | func init() {
type RemovePerfIntervalRequestType (line 38188) | type RemovePerfIntervalRequestType struct
function init (line 38193) | func init() {
type RemovePerfIntervalResponse (line 38197) | type RemovePerfIntervalResponse struct
type RemovePortGroup (line 38200) | type RemovePortGroup
function init (line 38202) | func init() {
type RemovePortGroupRequestType (line 38206) | type RemovePortGroupRequestType struct
function init (line 38211) | func init() {
type RemovePortGroupResponse (line 38215) | type RemovePortGroupResponse struct
type RemoveScheduledTask (line 38218) | type RemoveScheduledTask
function init (line 38220) | func init() {
type RemoveScheduledTaskRequestType (line 38224) | type RemoveScheduledTaskRequestType struct
function init (line 38228) | func init() {
type RemoveScheduledTaskResponse (line 38232) | type RemoveScheduledTaskResponse struct
type RemoveServiceConsoleVirtualNic (line 38235) | type RemoveServiceConsoleVirtualNic
function init (line 38237) | func init() {
type RemoveServiceConsoleVirtualNicRequestType (line 38241) | type RemoveServiceConsoleVirtualNicRequestType struct
function init (line 38246) | func init() {
type RemoveServiceConsoleVirtualNicResponse (line 38250) | type RemoveServiceConsoleVirtualNicResponse struct
type RemoveSmartCardTrustAnchor (line 38253) | type RemoveSmartCardTrustAnchor
function init (line 38255) | func init() {
type RemoveSmartCardTrustAnchorByFingerprint (line 38259) | type RemoveSmartCardTrustAnchorByFingerprint
function init (line 38261) | func init() {
type RemoveSmartCardTrustAnchorByFingerprintRequestType (line 38265) | type RemoveSmartCardTrustAnchorByFingerprintRequestType struct
function init (line 38271) | func init() {
type RemoveSmartCardTrustAnchorByFingerprintResponse (line 38275) | type RemoveSmartCardTrustAnchorByFingerprintResponse struct
type RemoveSmartCardTrustAnchorRequestType (line 38278) | type RemoveSmartCardTrustAnchorRequestType struct
function init (line 38284) | func init() {
type RemoveSmartCardTrustAnchorResponse (line 38288) | type RemoveSmartCardTrustAnchorResponse struct
type RemoveSnapshotRequestType (line 38291) | type RemoveSnapshotRequestType struct
function init (line 38297) | func init() {
type RemoveSnapshot_Task (line 38301) | type RemoveSnapshot_Task
function init (line 38303) | func init() {
type RemoveSnapshot_TaskResponse (line 38307) | type RemoveSnapshot_TaskResponse struct
type RemoveUser (line 38311) | type RemoveUser
function init (line 38313) | func init() {
type RemoveUserRequestType (line 38317) | type RemoveUserRequestType struct
function init (line 38322) | func init() {
type RemoveUserResponse (line 38326) | type RemoveUserResponse struct
type RemoveVirtualNic (line 38329) | type RemoveVirtualNic
function init (line 38331) | func init() {
type RemoveVirtualNicRequestType (line 38335) | type RemoveVirtualNicRequestType struct
function init (line 38340) | func init() {
type RemoveVirtualNicResponse (line 38344) | type RemoveVirtualNicResponse struct
type RemoveVirtualSwitch (line 38347) | type RemoveVirtualSwitch
function init (line 38349) | func init() {
type RemoveVirtualSwitchRequestType (line 38353) | type RemoveVirtualSwitchRequestType struct
function init (line 38358) | func init() {
type RemoveVirtualSwitchResponse (line 38362) | type RemoveVirtualSwitchResponse struct
type RenameCustomFieldDef (line 38365) | type RenameCustomFieldDef
function init (line 38367) | func init() {
type RenameCustomFieldDefRequestType (line 38371) | type RenameCustomFieldDefRequestType struct
function init (line 38377) | func init() {
type RenameCustomFieldDefResponse (line 38381) | type RenameCustomFieldDefResponse struct
type RenameCustomizationSpec (line 38384) | type RenameCustomizationSpec
function init (line 38386) | func init() {
type RenameCustomizationSpecRequestType (line 38390) | type RenameCustomizationSpecRequestType struct
function init (line 38396) | func init() {
type RenameCustomizationSpecResponse (line 38400) | type RenameCustomizationSpecResponse struct
type RenameDatastore (line 38403) | type RenameDatastore
function init (line 38405) | func init() {
type RenameDatastoreRequestType (line 38409) | type RenameDatastoreRequestType struct
function init (line 38414) | func init() {
type RenameDatastoreResponse (line 38418) | type RenameDatastoreResponse struct
type RenameRequestType (line 38421) | type RenameRequestType struct
function init (line 38426) | func init() {
type RenameSnapshot (line 38430) | type RenameSnapshot
function init (line 38432) | func init() {
type RenameSnapshotRequestType (line 38436) | type RenameSnapshotRequestType struct
function init (line 38442) | func init() {
type RenameSnapshotResponse (line 38446) | type RenameSnapshotResponse struct
type RenameVStorageObject (line 38449) | type RenameVStorageObject
function init (line 38451) | func init() {
type RenameVStorageObjectRequestType (line 38455) | type RenameVStorageObjectRequestType struct
function init (line 38462) | func init() {
type RenameVStorageObjectResponse (line 38466) | type RenameVStorageObjectResponse struct
type Rename_Task (line 38469) | type Rename_Task
function init (line 38471) | func init() {
type Rename_TaskResponse (line 38475) | type Rename_TaskResponse struct
type ReplaceCACertificatesAndCRLs (line 38479) | type ReplaceCACertificatesAndCRLs
function init (line 38481) | func init() {
type ReplaceCACertificatesAndCRLsRequestType (line 38485) | type ReplaceCACertificatesAndCRLsRequestType struct
function init (line 38491) | func init() {
type ReplaceCACertificatesAndCRLsResponse (line 38495) | type ReplaceCACertificatesAndCRLsResponse struct
type ReplaceSmartCardTrustAnchors (line 38498) | type ReplaceSmartCardTrustAnchors
function init (line 38500) | func init() {
type ReplaceSmartCardTrustAnchorsRequestType (line 38504) | type ReplaceSmartCardTrustAnchorsRequestType struct
function init (line 38509) | func init() {
type ReplaceSmartCardTrustAnchorsResponse (line 38513) | type ReplaceSmartCardTrustAnchorsResponse struct
type ReplicationConfigFault (line 38516) | type ReplicationConfigFault struct
function init (line 38520) | func init() {
type ReplicationConfigFaultFault (line 38524) | type ReplicationConfigFaultFault
function init (line 38526) | func init() {
type ReplicationConfigSpec (line 38530) | type ReplicationConfigSpec struct
function init (line 38545) | func init() {
type ReplicationDiskConfigFault (line 38549) | type ReplicationDiskConfigFault struct
function init (line 38557) | func init() {
type ReplicationDiskConfigFaultFault (line 38561) | type ReplicationDiskConfigFaultFault
function init (line 38563) | func init() {
type ReplicationFault (line 38567) | type ReplicationFault struct
function init (line 38571) | func init() {
type ReplicationFaultFault (line 38575) | type ReplicationFaultFault
function init (line 38577) | func init() {
type ReplicationGroupId (line 38581) | type ReplicationGroupId struct
function init (line 38588) | func init() {
type ReplicationIncompatibleWithFT (line 38592) | type ReplicationIncompatibleWithFT struct
function init (line 38596) | func init() {
type ReplicationIncompatibleWithFTFault (line 38600) | type ReplicationIncompatibleWithFTFault
function init (line 38602) | func init() {
type ReplicationInfoDiskSettings (line 38606) | type ReplicationInfoDiskSettings struct
function init (line 38613) | func init() {
type ReplicationInvalidOptions (line 38617) | type ReplicationInvalidOptions struct
function init (line 38624) | func init() {
type ReplicationInvalidOptionsFault (line 38628) | type ReplicationInvalidOptionsFault
function init (line 38630) | func init() {
type ReplicationNotSupportedOnHost (line 38634) | type ReplicationNotSupportedOnHost struct
function init (line 38638) | func init() {
type ReplicationNotSupportedOnHostFault (line 38642) | type ReplicationNotSupportedOnHostFault
function init (line 38644) | func init() {
type ReplicationSpec (line 38648) | type ReplicationSpec struct
function init (line 38654) | func init() {
type ReplicationVmConfigFault (line 38658) | type ReplicationVmConfigFault struct
function init (line 38665) | func init() {
type ReplicationVmConfigFaultFault (line 38669) | type ReplicationVmConfigFaultFault
function init (line 38671) | func init() {
type ReplicationVmFault (line 38675) | type ReplicationVmFault struct
function init (line 38684) | func init() {
type ReplicationVmFaultFault (line 38688) | type ReplicationVmFaultFault
function init (line 38690) | func init() {
type ReplicationVmInProgressFault (line 38694) | type ReplicationVmInProgressFault struct
function init (line 38701) | func init() {
type ReplicationVmInProgressFaultFault (line 38705) | type ReplicationVmInProgressFaultFault
function init (line 38707) | func init() {
type ReplicationVmProgressInfo (line 38711) | type ReplicationVmProgressInfo struct
function init (line 38721) | func init() {
type RequestCanceled (line 38725) | type RequestCanceled struct
function init (line 38729) | func init() {
type RequestCanceledFault (line 38733) | type RequestCanceledFault
function init (line 38735) | func init() {
type RescanAllHba (line 38739) | type RescanAllHba
function init (line 38741) | func init() {
type RescanAllHbaRequestType (line 38745) | type RescanAllHbaRequestType struct
function init (line 38749) | func init() {
type RescanAllHbaResponse (line 38753) | type RescanAllHbaResponse struct
type RescanHba (line 38756) | type RescanHba
function init (line 38758) | func init() {
type RescanHbaRequestType (line 38762) | type RescanHbaRequestType struct
function init (line 38767) | func init() {
type RescanHbaResponse (line 38771) | type RescanHbaResponse struct
type RescanVffs (line 38774) | type RescanVffs
function init (line 38776) | func init() {
type RescanVffsRequestType (line 38780) | type RescanVffsRequestType struct
function init (line 38784) | func init() {
type RescanVffsResponse (line 38788) | type RescanVffsResponse struct
type RescanVmfs (line 38791) | type RescanVmfs
function init (line 38793) | func init() {
type RescanVmfsRequestType (line 38797) | type RescanVmfsRequestType struct
function init (line 38801) | func init() {
type RescanVmfsResponse (line 38805) | type RescanVmfsResponse struct
type ResetCollector (line 38808) | type ResetCollector
function init (line 38810) | func init() {
type ResetCollectorRequestType (line 38814) | type ResetCollectorRequestType struct
function init (line 38818) | func init() {
type ResetCollectorResponse (line 38822) | type ResetCollectorResponse struct
type ResetCounterLevelMapping (line 38825) | type ResetCounterLevelMapping
function init (line 38827) | func init() {
type ResetCounterLevelMappingRequestType (line 38831) | type ResetCounterLevelMappingRequestType struct
function init (line 38836) | func init() {
type ResetCounterLevelMappingResponse (line 38840) | type ResetCounterLevelMappingResponse struct
type ResetEntityPermissions (line 38843) | type ResetEntityPermissions
function init (line 38845) | func init() {
type ResetEntityPermissionsRequestType (line 38849) | type ResetEntityPermissionsRequestType struct
function init (line 38855) | func init() {
type ResetEntityPermissionsResponse (line 38859) | type ResetEntityPermissionsResponse struct
type ResetFirmwareToFactoryDefaults (line 38862) | type ResetFirmwareToFactoryDefaults
function init (line 38864) | func init() {
type ResetFirmwareToFactoryDefaultsRequestType (line 38868) | type ResetFirmwareToFactoryDefaultsRequestType struct
function init (line 38872) | func init() {
type ResetFirmwareToFactoryDefaultsResponse (line 38876) | type ResetFirmwareToFactoryDefaultsResponse struct
type ResetGuestInformation (line 38879) | type ResetGuestInformation
function init (line 38881) | func init() {
type ResetGuestInformationRequestType (line 38885) | type ResetGuestInformationRequestType struct
function init (line 38889) | func init() {
type ResetGuestInformationResponse (line 38893) | type ResetGuestInformationResponse struct
type ResetListView (line 38896) | type ResetListView
function init (line 38898) | func init() {
type ResetListViewFromView (line 38902) | type ResetListViewFromView
function init (line 38904) | func init() {
type ResetListViewFromViewRequestType (line 38908) | type ResetListViewFromViewRequestType struct
function init (line 38913) | func init() {
type ResetListViewFromViewResponse (line 38917) | type ResetListViewFromViewResponse struct
type ResetListViewRequestType (line 38920) | type ResetListViewRequestType struct
function init (line 38925) | func init() {
type ResetListViewResponse (line 38929) | type ResetListViewResponse struct
type ResetSystemHealthInfo (line 38933) | type ResetSystemHealthInfo
function init (line 38935) | func init() {
type ResetSystemHealthInfoRequestType (line 38939) | type ResetSystemHealthInfoRequestType struct
function init (line 38943) | func init() {
type ResetSystemHealthInfoResponse (line 38947) | type ResetSystemHealthInfoResponse struct
type ResetVMRequestType (line 38950) | type ResetVMRequestType struct
function init (line 38954) | func init() {
type ResetVM_Task (line 38958) | type ResetVM_Task
function init (line 38960) | func init() {
type ResetVM_TaskResponse (line 38964) | type ResetVM_TaskResponse struct
type ResignatureUnresolvedVmfsVolumeRequestType (line 38968) | type ResignatureUnresolvedVmfsVolumeRequestType struct
function init (line 38973) | func init() {
type ResignatureUnresolvedVmfsVolume_Task (line 38977) | type ResignatureUnresolvedVmfsVolume_Task
function init (line 38979) | func init() {
type ResignatureUnresolvedVmfsVolume_TaskResponse (line 38983) | type ResignatureUnresolvedVmfsVolume_TaskResponse struct
type ResolveInstallationErrorsOnClusterRequestType (line 38987) | type ResolveInstallationErrorsOnClusterRequestType struct
function init (line 38993) | func init() {
type ResolveInstallationErrorsOnCluster_Task (line 38997) | type ResolveInstallationErrorsOnCluster_Task
function init (line 38999) | func init() {
type ResolveInstallationErrorsOnCluster_TaskResponse (line 39003) | type ResolveInstallationErrorsOnCluster_TaskResponse struct
type ResolveInstallationErrorsOnHostRequestType (line 39007) | type ResolveInstallationErrorsOnHostRequestType struct
function init (line 39013) | func init() {
type ResolveInstallationErrorsOnHost_Task (line 39017) | type ResolveInstallationErrorsOnHost_Task
function init (line 39019) | func init() {
type ResolveInstallationErrorsOnHost_TaskResponse (line 39023) | type ResolveInstallationErrorsOnHost_TaskResponse struct
type ResolveMultipleUnresolvedVmfsVolumes (line 39027) | type ResolveMultipleUnresolvedVmfsVolumes
function init (line 39029) | func init() {
type ResolveMultipleUnresolvedVmfsVolumesExRequestType (line 39033) | type ResolveMultipleUnresolvedVmfsVolumesExRequestType struct
function init (line 39038) | func init() {
type ResolveMultipleUnresolvedVmfsVolumesEx_Task (line 39042) | type ResolveMultipleUnresolvedVmfsVolumesEx_Task
function init (line 39044) | func init() {
type ResolveMultipleUnresolvedVmfsVolumesEx_TaskResponse (line 39048) | type ResolveMultipleUnresolvedVmfsVolumesEx_TaskResponse struct
type ResolveMultipleUnresolvedVmfsVolumesRequestType (line 39052) | type ResolveMultipleUnresolvedVmfsVolumesRequestType struct
function init (line 39057) | func init() {
type ResolveMultipleUnresolvedVmfsVolumesResponse (line 39061) | type ResolveMultipleUnresolvedVmfsVolumesResponse struct
type ResourceAllocationInfo (line 39065) | type ResourceAllocationInfo struct
function init (line 39075) | func init() {
type ResourceAllocationOption (line 39079) | type ResourceAllocationOption struct
function init (line 39085) | func init() {
type ResourceConfigOption (line 39089) | type ResourceConfigOption struct
function init (line 39096) | func init() {
type ResourceConfigSpec (line 39100) | type ResourceConfigSpec struct
function init (line 39110) | func init() {
type ResourceInUse (line 39114) | type ResourceInUse struct
function init (line 39121) | func init() {
type ResourceInUseFault (line 39125) | type ResourceInUseFault
function init (line 39127) | func init() {
type ResourceNotAvailable (line 39131) | type ResourceNotAvailable struct
function init (line 39139) | func init() {
type ResourceNotAvailableFault (line 39143) | type ResourceNotAvailableFault
function init (line 39145) | func init() {
type ResourcePoolCreatedEvent (line 39149) | type ResourcePoolCreatedEvent struct
function init (line 39155) | func init() {
type ResourcePoolDestroyedEvent (line 39159) | type ResourcePoolDestroyedEvent struct
function init (line 39163) | func init() {
type ResourcePoolEvent (line 39167) | type ResourcePoolEvent struct
function init (line 39173) | func init() {
type ResourcePoolEventArgument (line 39177) | type ResourcePoolEventArgument struct
function init (line 39183) | func init() {
type ResourcePoolMovedEvent (line 39187) | type ResourcePoolMovedEvent struct
function init (line 39194) | func init() {
type ResourcePoolQuickStats (line 39198) | type ResourcePoolQuickStats struct
function init (line 39218) | func init() {
type ResourcePoolReconfiguredEvent (line 39222) | type ResourcePoolReconfiguredEvent struct
function init (line 39228) | func init() {
type ResourcePoolResourceUsage (line 39232) | type ResourcePoolResourceUsage struct
function init (line 39243) | func init() {
type ResourcePoolRuntimeInfo (line 39247) | type ResourcePoolRuntimeInfo struct
function init (line 39255) | func init() {
type ResourcePoolSummary (line 39259) | type ResourcePoolSummary struct
function init (line 39269) | func init() {
type ResourceViolatedEvent (line 39273) | type ResourceViolatedEvent struct
function init (line 39277) | func init() {
type RestartService (line 39281) | type RestartService
function init (line 39283) | func init() {
type RestartServiceConsoleVirtualNic (line 39287) | type RestartServiceConsoleVirtualNic
function init (line 39289) | func init() {
type RestartServiceConsoleVirtualNicRequestType (line 39293) | type RestartServiceConsoleVirtualNicRequestType struct
function init (line 39298) | func init() {
type RestartServiceConsoleVirtualNicResponse (line 39302) | type RestartServiceConsoleVirtualNicResponse struct
type RestartServiceRequestType (line 39305) | type RestartServiceRequestType struct
function init (line 39310) | func init() {
type RestartServiceResponse (line 39314) | type RestartServiceResponse struct
type RestoreFirmwareConfiguration (line 39317) | type RestoreFirmwareConfiguration
function init (line 39319) | func init() {
type RestoreFirmwareConfigurationRequestType (line 39323) | type RestoreFirmwareConfigurationRequestType struct
function init (line 39328) | func init() {
type RestoreFirmwareConfigurationResponse (line 39332) | type RestoreFirmwareConfigurationResponse struct
type RestrictedByAdministrator (line 39335) | type RestrictedByAdministrator struct
function init (line 39341) | func init() {
type RestrictedByAdministratorFault (line 39345) | type RestrictedByAdministratorFault
function init (line 39347) | func init() {
type RestrictedVersion (line 39351) | type RestrictedVersion struct
function init (line 39355) | func init() {
type RestrictedVersionFault (line 39359) | type RestrictedVersionFault
function init (line 39361) | func init() {
type RetrieveAllPermissions (line 39365) | type RetrieveAllPermissions
function init (line 39367) | func init() {
type RetrieveAllPermissionsRequestType (line 39371) | type RetrieveAllPermissionsRequestType struct
function init (line 39375) | func init() {
type RetrieveAllPermissionsResponse (line 39379) | type RetrieveAllPermissionsResponse struct
type RetrieveAnswerFile (line 39383) | type RetrieveAnswerFile
function init (line 39385) | func init() {
type RetrieveAnswerFileForProfile (line 39389) | type RetrieveAnswerFileForProfile
function init (line 39391) | func init() {
type RetrieveAnswerFileForProfileRequestType (line 39395) | type RetrieveAnswerFileForProfileRequestType struct
function init (line 39401) | func init() {
type RetrieveAnswerFileForProfileResponse (line 39405) | type RetrieveAnswerFileForProfileResponse struct
type RetrieveAnswerFileRequestType (line 39409) | type RetrieveAnswerFileRequestType struct
function init (line 39414) | func init() {
type RetrieveAnswerFileResponse (line 39418) | type RetrieveAnswerFileResponse struct
type RetrieveArgumentDescription (line 39422) | type RetrieveArgumentDescription
function init (line 39424) | func init() {
type RetrieveArgumentDescriptionRequestType (line 39428) | type RetrieveArgumentDescriptionRequestType struct
function init (line 39433) | func init() {
type RetrieveArgumentDescriptionResponse (line 39437) | type RetrieveArgumentDescriptionResponse struct
type RetrieveClientCert (line 39441) | type RetrieveClientCert
function init (line 39443) | func init() {
type RetrieveClientCertRequestType (line 39447) | type RetrieveClientCertRequestType struct
function init (line 39452) | func init() {
type RetrieveClientCertResponse (line 39456) | type RetrieveClientCertResponse struct
type RetrieveClientCsr (line 39460) | type RetrieveClientCsr
function init (line 39462) | func init() {
type RetrieveClientCsrRequestType (line 39466) | type RetrieveClientCsrRequestType struct
function init (line 39471) | func init() {
type RetrieveClientCsrResponse (line 39475) | type RetrieveClientCsrResponse struct
type RetrieveDasAdvancedRuntimeInfo (line 39479) | type RetrieveDasAdvancedRuntimeInfo
function init (line 39481) | func init() {
type RetrieveDasAdvancedRuntimeInfoRequestType (line 39485) | type RetrieveDasAdvancedRuntimeInfoRequestType struct
function init (line 39489) | func init() {
type RetrieveDasAdvancedRuntimeInfoResponse (line 39493) | type RetrieveDasAdvancedRuntimeInfoResponse struct
type RetrieveDescription (line 39497) | type RetrieveDescription
function init (line 39499) | func init() {
type RetrieveDescriptionRequestType (line 39503) | type RetrieveDescriptionRequestType struct
function init (line 39507) | func init() {
type RetrieveDescriptionResponse (line 39511) | type RetrieveDescriptionResponse struct
type RetrieveDiskPartitionInfo (line 39515) | type RetrieveDiskPartitionInfo
function init (line 39517) | func init() {
type RetrieveDiskPartitionInfoRequestType (line 39521) | type RetrieveDiskPartitionInfoRequestType struct
function init (line 39526) | func init() {
type RetrieveDiskPartitionInfoResponse (line 39530) | type RetrieveDiskPartitionInfoResponse struct
type RetrieveEntityPermissions (line 39534) | type RetrieveEntityPermissions
function init (line 39536) | func init() {
type RetrieveEntityPermissionsRequestType (line 39540) | type RetrieveEntityPermissionsRequestType struct
function init (line 39546) | func init() {
type RetrieveEntityPermissionsResponse (line 39550) | type RetrieveEntityPermissionsResponse struct
type RetrieveEntityScheduledTask (line 39554) | type RetrieveEntityScheduledTask
function init (line 39556) | func init() {
type RetrieveEntityScheduledTaskRequestType (line 39560) | type RetrieveEntityScheduledTaskRequestType struct
function init (line 39565) | func init() {
type RetrieveEntityScheduledTaskResponse (line 39569) | type RetrieveEntityScheduledTaskResponse struct
type RetrieveHardwareUptime (line 39573) | type RetrieveHardwareUptime
function init (line 39575) | func init() {
type RetrieveHardwareUptimeRequestType (line 39579) | type RetrieveHardwareUptimeRequestType struct
function init (line 39583) | func init() {
type RetrieveHardwareUptimeResponse (line 39587) | type RetrieveHardwareUptimeResponse struct
type RetrieveHostAccessControlEntries (line 39591) | type RetrieveHostAccessControlEntries
function init (line 39593) | func init() {
type RetrieveHostAccessControlEntriesRequestType (line 39597) | type RetrieveHostAccessControlEntriesRequestType struct
function init (line 39601) | func init() {
type RetrieveHostAccessControlEntriesResponse (line 39605) | type RetrieveHostAccessControlEntriesResponse struct
type RetrieveHostCustomizations (line 39609) | type RetrieveHostCustomizations
function init (line 39611) | func init() {
type RetrieveHostCustomizationsForProfile (line 39615) | type RetrieveHostCustomizationsForProfile
function init (line 39617) | func init() {
type RetrieveHostCustomizationsForProfileRequestType (line 39621) | type RetrieveHostCustomizationsForProfileRequestType struct
function init (line 39627) | func init() {
type RetrieveHostCustomizationsForProfileResponse (line 39631) | type RetrieveHostCustomizationsForProfileResponse struct
type RetrieveHostCustomizationsRequestType (line 39635) | type RetrieveHostCustomizationsRequestType struct
function init (line 39640) | func init() {
type RetrieveHostCustomizationsResponse (line 39644) | type RetrieveHostCustomizationsResponse struct
type RetrieveHostSpecification (line 39648) | type RetrieveHostSpecification
function init (line 39650) | func init() {
type RetrieveHostSpecificationRequestType (line 39654) | type RetrieveHostSpecificationRequestType struct
function init (line 39660) | func init() {
type RetrieveHostSpecificationResponse (line 39664) | type RetrieveHostSpecificationResponse struct
type RetrieveKmipServerCert (line 39668) | type RetrieveKmipServerCert
function init (line 39670) | func init() {
type RetrieveKmipServerCertRequestType (line 39674) | type RetrieveKmipServerCertRequestType struct
function init (line 39680) | func init() {
type RetrieveKmipServerCertResponse (line 39684) | type RetrieveKmipServerCertResponse struct
type RetrieveKmipServersStatusRequestType (line 39688) | type RetrieveKmipServersStatusRequestType struct
function init (line 39693) | func init() {
type RetrieveKmipServersStatus_Task (line 39697) | type RetrieveKmipServersStatus_Task
function init (line 39699) | func init() {
type RetrieveKmipServersStatus_TaskResponse (line 39703) | type RetrieveKmipServersStatus_TaskResponse struct
type RetrieveObjectScheduledTask (line 39707) | type RetrieveObjectScheduledTask
function init (line 39709) | func init() {
type RetrieveObjectScheduledTaskRequestType (line 39713) | type RetrieveObjectScheduledTaskRequestType struct
function init (line 39718) | func init() {
type RetrieveObjectScheduledTaskResponse (line 39722) | type RetrieveObjectScheduledTaskResponse struct
type RetrieveOptions (line 39726) | type RetrieveOptions struct
function init (line 39732) | func init() {
type RetrieveProductComponents (line 39736) | type RetrieveProductComponents
function init (line 39738) | func init() {
type RetrieveProductComponentsRequestType (line 39742) | type RetrieveProductComponentsRequestType struct
function init (line 39746) | func init() {
type RetrieveProductComponentsResponse (line 39750) | type RetrieveProductComponentsResponse struct
type RetrieveProperties (line 39754) | type RetrieveProperties
function init (line 39756) | func init() {
type RetrievePropertiesEx (line 39760) | type RetrievePropertiesEx
function init (line 39762) | func init() {
type RetrievePropertiesExRequestType (line 39766) | type RetrievePropertiesExRequestType struct
function init (line 39772) | func init() {
type RetrievePropertiesExResponse (line 39776) | type RetrievePropertiesExResponse struct
type RetrievePropertiesRequestType (line 39780) | type RetrievePropertiesRequestType struct
function init (line 39785) | func init() {
type RetrievePropertiesResponse (line 39789) | type RetrievePropertiesResponse struct
type RetrieveResult (line 39793) | type RetrieveResult struct
function init (line 39800) | func init() {
type RetrieveRolePermissions (line 39804) | type RetrieveRolePermissions
function init (line 39806) | func init() {
type RetrieveRolePermissionsRequestType (line 39810) | type RetrieveRolePermissionsRequestType struct
function init (line 39815) | func init() {
type RetrieveRolePermissionsResponse (line 39819) | type RetrieveRolePermissionsResponse struct
type RetrieveSelfSignedClientCert (line 39823) | type RetrieveSelfSignedClientCert
function init (line 39825) | func init() {
type RetrieveSelfSignedClientCertRequestType (line 39829) | type RetrieveSelfSignedClientCertRequestType struct
function init (line 39834) | func init() {
type RetrieveSelfSignedClientCertResponse (line 39838) | type RetrieveSelfSignedClientCertResponse struct
type RetrieveServiceContent (line 39842) | type RetrieveServiceContent
function init (line 39844) | func init() {
type RetrieveServiceContentRequestType (line 39848) | type RetrieveServiceContentRequestType struct
function init (line 39852) | func init() {
type RetrieveServiceContentResponse (line 39856) | type RetrieveServiceContentResponse struct
type RetrieveUserGroups (line 39860) | type RetrieveUserGroups
function init (line 39862) | func init() {
type RetrieveUserGroupsRequestType (line 39866) | type RetrieveUserGroupsRequestType struct
function init (line 39877) | func init() {
type RetrieveUserGroupsResponse (line 39881) | type RetrieveUserGroupsResponse struct
type RetrieveVStorageObject (line 39885) | type RetrieveVStorageObject
function init (line 39887) | func init() {
type RetrieveVStorageObjectRequestType (line 39891) | type RetrieveVStorageObjectRequestType struct
function init (line 39897) | func init() {
type RetrieveVStorageObjectResponse (line 39901) | type RetrieveVStorageObjectResponse struct
type RetrieveVStorageObjectState (line 39905) | type RetrieveVStorageObjectState
function init (line 39907) | func init() {
type RetrieveVStorageObjectStateRequestType (line 39911) | type RetrieveVStorageObjectStateRequestType struct
function init (line 39917) | func init() {
type RetrieveVStorageObjectStateResponse (line 39921) | type RetrieveVStorageObjectStateResponse struct
type RevertToCurrentSnapshotRequestType (line 39925) | type RevertToCurrentSnapshotRequestType struct
function init (line 39931) | func init() {
type RevertToCurrentSnapshot_Task (line 39935) | type RevertToCurrentSnapshot_Task
function init (line 39937) | func init() {
type RevertToCurrentSnapshot_TaskResponse (line 39941) | type RevertToCurrentSnapshot_TaskResponse struct
type RevertToSnapshotRequestType (line 39945) | type RevertToSnapshotRequestType struct
function init (line 39951) | func init() {
type RevertToSnapshot_Task (line 39955) | type RevertToSnapshot_Task
function init (line 39957) | func init() {
type RevertToSnapshot_TaskResponse (line 39961) | type RevertToSnapshot_TaskResponse struct
type RewindCollector (line 39965) | type RewindCollector
function init (line 39967) | func init() {
type RewindCollectorRequestType (line 39971) | type RewindCollectorRequestType struct
function init (line 39975) | func init() {
type RewindCollectorResponse (line 39979) | type RewindCollectorResponse struct
type RoleAddedEvent (line 39982) | type RoleAddedEvent struct
function init (line 39988) | func init() {
type RoleEvent (line 39992) | type RoleEvent struct
function init (line 39998) | func init() {
type RoleEventArgument (line 40002) | type RoleEventArgument struct
function init (line 40009) | func init() {
type RoleRemovedEvent (line 40013) | type RoleRemovedEvent struct
function init (line 40017) | func init() {
type RoleUpdatedEvent (line 40021) | type RoleUpdatedEvent struct
function init (line 40030) | func init() {
type RollbackEvent (line 40034) | type RollbackEvent struct
function init (line 40041) | func init() {
type RollbackFailure (line 40045) | type RollbackFailure struct
function init (line 40052) | func init() {
type RollbackFailureFault (line 40056) | type RollbackFailureFault
function init (line 40058) | func init() {
type RuleViolation (line 40062) | type RuleViolation struct
function init (line 40069) | func init() {
type RuleViolationFault (line 40073) | type RuleViolationFault
function init (line 40075) | func init() {
type RunScheduledTask (line 40079) | type RunScheduledTask
function init (line 40081) | func init() {
type RunScheduledTaskRequestType (line 40085) | type RunScheduledTaskRequestType struct
function init (line 40089) | func init() {
type RunScheduledTaskResponse (line 40093) | type RunScheduledTaskResponse struct
type RunScriptAction (line 40096) | type RunScriptAction struct
function init (line 40102) | func init() {
type RunVsanPhysicalDiskDiagnostics (line 40106) | type RunVsanPhysicalDiskDiagnostics
function init (line 40108) | func init() {
type RunVsanPhysicalDiskDiagnosticsRequestType (line 40112) | type RunVsanPhysicalDiskDiagnosticsRequestType struct
function init (line 40117) | func init() {
type RunVsanPhysicalDiskDiagnosticsResponse (line 40121) | type RunVsanPhysicalDiskDiagnosticsResponse struct
type RuntimeFault (line 40125) | type RuntimeFault struct
function init (line 40129) | func init() {
type RuntimeFaultFault (line 40133) | type RuntimeFaultFault
function init (line 40135) | func init() {
type SAMLTokenAuthentication (line 40139) | type SAMLTokenAuthentication struct
function init (line 40146) | func init() {
type SSLDisabledFault (line 40150) | type SSLDisabledFault struct
function init (line 40154) | func init() {
type SSLDisabledFaultFault (line 40158) | type SSLDisabledFaultFault
function init (line 40160) | func init() {
type SSLVerifyFault (line 40164) | type SSLVerifyFault struct
function init (line 40171) | func init() {
type SSLVerifyFaultFault (line 40175) | type SSLVerifyFaultFault
function init (line 40177) | func init() {
type SSPIAuthentication (line 40181) | type SSPIAuthentication struct
function init (line 40187) | func init() {
type SSPIChallenge (line 40191) | type SSPIChallenge struct
function init (line 40197) | func init() {
type SSPIChallengeFault (line 40201) | type SSPIChallengeFault
function init (line 40203) | func init() {
type ScanHostPatchRequestType (line 40207) | type ScanHostPatchRequestType struct
function init (line 40213) | func init() {
type ScanHostPatchV2RequestType (line 40217) | type ScanHostPatchV2RequestType struct
function init (line 40224) | func init() {
type ScanHostPatchV2_Task (line 40228) | type ScanHostPatchV2_Task
function init (line 40230) | func init() {
type ScanHostPatchV2_TaskResponse (line 40234) | type ScanHostPatchV2_TaskResponse struct
type ScanHostPatch_Task (line 40238) | type ScanHostPatch_Task
function init (line 40240) | func init() {
type ScanHostPatch_TaskResponse (line 40244) | type ScanHostPatch_TaskResponse struct
type ScheduleReconcileDatastoreInventory (line 40248) | type ScheduleReconcileDatastoreInventory
function init (line 40250) | func init() {
type ScheduleReconcileDatastoreInventoryRequestType (line 40254) | type ScheduleReconcileDatastoreInventoryRequestType struct
function init (line 40259) | func init() {
type ScheduleReconcileDatastoreInventoryResponse (line 40263) | type ScheduleReconcileDatastoreInventoryResponse struct
type ScheduledHardwareUpgradeInfo (line 40266) | type ScheduledHardwareUpgradeInfo struct
function init (line 40275) | func init() {
type ScheduledTaskCompletedEvent (line 40279) | type ScheduledTaskCompletedEvent struct
function init (line 40283) | func init() {
type ScheduledTaskCreatedEvent (line 40287) | type ScheduledTaskCreatedEvent struct
function init (line 40291) | func init() {
type ScheduledTaskDescription (line 40295) | type ScheduledTaskDescription struct
function init (line 40305) | func init() {
type ScheduledTaskDetail (line 40309) | type ScheduledTaskDetail struct
function init (line 40315) | func init() {
type ScheduledTaskEmailCompletedEvent (line 40319) | type ScheduledTaskEmailCompletedEvent struct
function init (line 40325) | func init() {
type ScheduledTaskEmailFailedEvent (line 40329) | type ScheduledTaskEmailFailedEvent struct
function init (line 40336) | func init() {
type ScheduledTaskEvent (line 40340) | type ScheduledTaskEvent struct
function init (line 40347) | func init() {
type ScheduledTaskEventArgument (line 40351) | type ScheduledTaskEventArgument struct
function init (line 40357) | func init() {
type ScheduledTaskFailedEvent (line 40361) | type ScheduledTaskFailedEvent struct
function init (line 40367) | func init() {
type ScheduledTaskInfo (line 40371) | type ScheduledTaskInfo struct
function init (line 40388) | func init() {
type ScheduledTaskReconfiguredEvent (line 40392) | type ScheduledTaskReconfiguredEvent struct
function init (line 40398) | func init() {
type ScheduledTaskRemovedEvent (line 40402) | type ScheduledTaskRemovedEvent struct
function init (line 40406) | func init() {
type ScheduledTaskSpec (line 40410) | type ScheduledTaskSpec struct
function init (line 40421) | func init() {
type ScheduledTaskStartedEvent (line 40425) | type ScheduledTaskStartedEvent struct
function init (line 40429) | func init() {
type ScsiLun (line 40433) | type ScsiLun struct
function init (line 40457) | func init() {
type ScsiLunCapabilities (line 40461) | type ScsiLunCapabilities struct
function init (line 40467) | func init() {
type ScsiLunDescriptor (line 40471) | type ScsiLunDescriptor struct
function init (line 40478) | func init() {
type ScsiLunDurableName (line 40482) | type ScsiLunDurableName struct
function init (line 40490) | func init() {
type SeSparseVirtualDiskSpec (line 40494) | type SeSparseVirtualDiskSpec struct
function init (line 40500) | func init() {
type SearchDatastoreRequestType (line 40504) | type SearchDatastoreRequestType struct
function init (line 40510) | func init() {
type SearchDatastoreSubFoldersRequestType (line 40514) | type SearchDatastoreSubFoldersRequestType struct
function init (line 40520) | func init() {
type SearchDatastoreSubFolders_Task (line 40524) | type SearchDatastoreSubFolders_Task
function init (line 40526) | func init() {
type SearchDatastoreSubFolders_TaskResponse (line 40530) | type SearchDatastoreSubFolders_TaskResponse struct
type SearchDatastore_Task (line 40534) | type SearchDatastore_Task
function init (line 40536) | func init() {
type SearchDatastore_TaskResponse (line 40540) | type SearchDatastore_TaskResponse struct
type SecondaryVmAlreadyDisabled (line 40544) | type SecondaryVmAlreadyDisabled struct
function init (line 40550) | func init() {
type SecondaryVmAlreadyDisabledFault (line 40554) | type SecondaryVmAlreadyDisabledFault
function init (line 40556) | func init() {
type SecondaryVmAlreadyEnabled (line 40560) | type SecondaryVmAlreadyEnabled struct
function init (line 40566) | func init() {
type SecondaryVmAlreadyEnabledFault (line 40570) | type SecondaryVmAlreadyEnabledFault
function init (line 40572) | func init() {
type SecondaryVmAlreadyRegistered (line 40576) | type SecondaryVmAlreadyRegistered struct
function init (line 40582) | func init() {
type SecondaryVmAlreadyRegisteredFault (line 40586) | type SecondaryVmAlreadyRegisteredFault
function init (line 40588) | func init() {
type SecondaryVmNotRegistered (line 40592) | type SecondaryVmNotRegistered struct
function init (line 40598) | func init() {
type SecondaryVmNotRegisteredFault (line 40602) | type SecondaryVmNotRegisteredFault
function init (line 40604) | func init() {
type SecurityError (line 40608) | type SecurityError struct
function init (line 40612) | func init() {
type SecurityErrorFault (line 40616) | type SecurityErrorFault
function init (line 40618) | func init() {
type SecurityProfile (line 40622) | type SecurityProfile struct
function init (line 40628) | func init() {
type SelectActivePartition (line 40632) | type SelectActivePartition
function init (line 40634) | func init() {
type SelectActivePartitionRequestType (line 40638) | type SelectActivePartitionRequestType struct
function init (line 40643) | func init() {
type SelectActivePartitionResponse (line 40647) | type SelectActivePartitionResponse struct
type SelectVnic (line 40650) | type SelectVnic
function init (line 40652) | func init() {
type SelectVnicForNicType (line 40656) | type SelectVnicForNicType
function init (line 40658) | func init() {
type SelectVnicForNicTypeRequestType (line 40662) | type SelectVnicForNicTypeRequestType struct
function init (line 40668) | func init() {
type SelectVnicForNicTypeResponse (line 40672) | type SelectVnicForNicTypeResponse struct
type SelectVnicRequestType (line 40675) | type SelectVnicRequestType struct
function init (line 40680) | func init() {
type SelectVnicResponse (line 40684) | type SelectVnicResponse struct
type SelectionSet (line 40687) | type SelectionSet struct
function init (line 40691) | func init() {
type SelectionSpec (line 40695) | type SelectionSpec struct
function init (line 40701) | func init() {
type SendEmailAction (line 40705) | type SendEmailAction struct
function init (line 40714) | func init() {
type SendNMI (line 40718) | type SendNMI
function init (line 40720) | func init() {
type SendNMIRequestType (line 40724) | type SendNMIRequestType struct
function init (line 40728) | func init() {
type SendNMIResponse (line 40732) | type SendNMIResponse struct
type SendSNMPAction (line 40735) | type SendSNMPAction struct
function init (line 40739) | func init() {
type SendTestNotification (line 40743) | type SendTestNotification
function init (line 40745) | func init() {
type SendTestNotificationRequestType (line 40749) | type SendTestNotificationRequestType struct
function init (line 40753) | func init() {
type SendTestNotificationResponse (line 40757) | type SendTestNotificationResponse struct
type ServerLicenseExpiredEvent (line 40760) | type ServerLicenseExpiredEvent struct
function init (line 40766) | func init() {
type ServerStartedSessionEvent (line 40770) | type ServerStartedSessionEvent struct
function init (line 40774) | func init() {
type ServiceConsolePortGroupProfile (line 40778) | type ServiceConsolePortGroupProfile struct
function init (line 40784) | func init() {
type ServiceConsoleReservationInfo (line 40788) | type ServiceConsoleReservationInfo struct
function init (line 40796) | func init() {
type ServiceContent (line 40800) | type ServiceContent struct
function init (line 40851) | func init() {
type ServiceLocator (line 40855) | type ServiceLocator struct
function init (line 40864) | func init() {
type ServiceLocatorCredential (line 40868) | type ServiceLocatorCredential struct
function init (line 40872) | func init() {
type ServiceLocatorNamePassword (line 40876) | type ServiceLocatorNamePassword struct
function init (line 40883) | func init() {
type ServiceLocatorSAMLCredential (line 40887) | type ServiceLocatorSAMLCredential struct
function init (line 40893) | func init() {
type ServiceManagerServiceInfo (line 40897) | type ServiceManagerServiceInfo struct
function init (line 40906) | func init() {
type ServiceProfile (line 40910) | type ServiceProfile struct
function init (line 40916) | func init() {
type SessionEvent (line 40920) | type SessionEvent struct
function init (line 40924) | func init() {
type SessionIsActive (line 40928) | type SessionIsActive
function init (line 40930) | func init() {
type SessionIsActiveRequestType (line 40934) | type SessionIsActiveRequestType struct
function init (line 40940) | func init() {
type SessionIsActiveResponse (line 40944) | type SessionIsActiveResponse struct
type SessionManagerGenericServiceTicket (line 40948) | type SessionManagerGenericServiceTicket struct
function init (line 40956) | func init() {
type SessionManagerHttpServiceRequestSpec (line 40960) | type SessionManagerHttpServiceRequestSpec struct
function init (line 40967) | func init() {
type SessionManagerLocalTicket (line 40971) | type SessionManagerLocalTicket struct
function init (line 40978) | func init() {
type SessionManagerServiceRequestSpec (line 40982) | type SessionManagerServiceRequestSpec struct
function init (line 40986) | func init() {
type SessionManagerVmomiServiceRequestSpec (line 40990) | type SessionManagerVmomiServiceRequestSpec struct
function init (line 40996) | func init() {
type SessionTerminatedEvent (line 41000) | type SessionTerminatedEvent struct
function init (line 41007) | func init() {
type SetCollectorPageSize (line 41011) | type SetCollectorPageSize
function init (line 41013) | func init() {
type SetCollectorPageSizeRequestType (line 41017) | type SetCollectorPageSizeRequestType struct
function init (line 41022) | func init() {
type SetCollectorPageSizeResponse (line 41026) | type SetCollectorPageSizeResponse struct
type SetDisplayTopology (line 41029) | type SetDisplayTopology
function init (line 41031) | func init() {
type SetDisplayTopologyRequestType (line 41035) | type SetDisplayTopologyRequestType struct
function init (line 41040) | func init() {
type SetDisplayTopologyResponse (line 41044) | type SetDisplayTopologyResponse struct
type SetEntityPermissions (line 41047) | type SetEntityPermissions
function init (line 41049) | func init() {
type SetEntityPermissionsRequestType (line 41053) | type SetEntityPermissionsRequestType struct
function init (line 41059) | func init() {
type SetEntityPermissionsResponse (line 41063) | type SetEntityPermissionsResponse struct
type SetExtensionCertificate (line 41066) | type SetExtensionCertificate
function init (line 41068) | func init() {
type SetExtensionCertificateRequestType (line 41072) | type SetExtensionCertificateRequestType struct
function init (line 41078) | func init() {
type SetExtensionCertificateResponse (line 41082) | type SetExtensionCertificateResponse struct
type SetField (line 41085) | type SetField
function init (line 41087) | func init() {
type SetFieldRequestType (line 41091) | type SetFieldRequestType struct
function init (line 41098) | func init() {
type SetFieldResponse (line 41102) | type SetFieldResponse struct
type SetLicenseEdition (line 41105) | type SetLicenseEdition
function init (line 41107) | func init() {
type SetLicenseEditionRequestType (line 41111) | type SetLicenseEditionRequestType struct
function init (line 41117) | func init() {
type SetLicenseEditionResponse (line 41121) | type SetLicenseEditionResponse struct
type SetLocale (line 41124) | type SetLocale
function init (line 41126) | func init() {
type SetLocaleRequestType (line 41130) | type SetLocaleRequestType struct
function init (line 41135) | func init() {
type SetLocaleResponse (line 41139) | type SetLocaleResponse struct
type SetMultipathLunPolicy (line 41142) | type SetMultipathLunPolicy
function init (line 41144) | func init() {
type SetMultipathLunPolicyRequestType (line 41148) | type SetMultipathLunPolicyRequestType struct
function init (line 41154) | func init() {
type SetMultipathLunPolicyResponse (line 41158) | type SetMultipathLunPolicyResponse struct
type SetNFSUser (line 41161) | type SetNFSUser
function init (line 41163) | func init() {
type SetNFSUserRequestType (line 41167) | type SetNFSUserRequestType struct
function init (line 41173) | func init() {
type SetNFSUserResponse (line 41177) | type SetNFSUserResponse struct
type SetPublicKey (line 41180) | type SetPublicKey
function init (line 41182) | func init() {
type SetPublicKeyRequestType (line 41186) | type SetPublicKeyRequestType struct
function init (line 41192) | func init() {
type SetPublicKeyResponse (line 41196) | type SetPublicKeyResponse struct
type SetRegistryValueInGuest (line 41199) | type SetRegistryValueInGuest
function init (line 41201) | func init() {
type SetRegistryValueInGuestRequestType (line 41205) | type SetRegistryValueInGuestRequestType struct
function init (line 41212) | func init() {
type SetRegistryValueInGuestResponse (line 41216) | type SetRegistryValueInGuestResponse struct
type SetScreenResolution (line 41219) | type SetScreenResolution
function init (line 41221) | func init() {
type SetScreenResolutionRequestType (line 41225) | type SetScreenResolutionRequestType struct
function init (line 41231) | func init() {
type SetScreenResolutionResponse (line 41235) | type SetScreenResolutionResponse struct
type SetTaskDescription (line 41238) | type SetTaskDescription
function init (line 41240) | func init() {
type SetTaskDescriptionRequestType (line 41244) | type SetTaskDescriptionRequestType struct
function init (line 41249) | func init() {
type SetTaskDescriptionResponse (line 41253) | type SetTaskDescriptionResponse struct
type SetTaskState (line 41256) | type SetTaskState
function init (line 41258) | func init() {
type SetTaskStateRequestType (line 41262) | type SetTaskStateRequestType struct
function init (line 41269) | func init() {
type SetTaskStateResponse (line 41273) | type SetTaskStateResponse struct
type SetVirtualDiskUuid (line 41276) | type SetVirtualDiskUuid
function init (line 41278) | func init() {
type SetVirtualDiskUuidRequestType (line 41282) | type SetVirtualDiskUuidRequestType struct
function init (line 41289) | func init() {
type SetVirtualDiskUuidResponse (line 41293) | type SetVirtualDiskUuidResponse struct
type SharedBusControllerNotSupported (line 41296) | type SharedBusControllerNotSupported struct
function init (line 41300) | func init() {
type SharedBusControllerNotSupportedFault (line 41304) | type SharedBusControllerNotSupportedFault
function init (line 41306) | func init() {
type SharesInfo (line 41310) | type SharesInfo struct
function init (line 41317) | func init() {
type SharesOption (line 41321) | type SharesOption struct
function init (line 41328) | func init() {
type ShrinkDiskFault (line 41332) | type ShrinkDiskFault struct
function init (line 41338) | func init() {
type ShrinkDiskFaultFault (line 41342) | type ShrinkDiskFaultFault
function init (line 41344) | func init() {
type ShrinkVirtualDiskRequestType (line 41348) | type ShrinkVirtualDiskRequestType struct
function init (line 41355) | func init() {
type ShrinkVirtualDisk_Task (line 41359) | type ShrinkVirtualDisk_Task
function init (line 41361) | func init() {
type ShrinkVirtualDisk_TaskResponse (line 41365) | type ShrinkVirtualDisk_TaskResponse struct
type ShutdownGuest (line 41369) | type ShutdownGuest
function init (line 41371) | func init() {
type ShutdownGuestRequestType (line 41375) | type ShutdownGuestRequestType struct
function init (line 41379) | func init() {
type ShutdownGuestResponse (line 41383) | type ShutdownGuestResponse struct
type ShutdownHostRequestType (line 41386) | type ShutdownHostRequestType struct
function init (line 41391) | func init() {
type ShutdownHost_Task (line 41395) | type ShutdownHost_Task
function init (line 41397) | func init() {
type ShutdownHost_TaskResponse (line 41401) | type ShutdownHost_TaskResponse struct
type SingleIp (line 41405) | type SingleIp struct
function init (line 41411) | func init() {
type SingleMac (line 41415) | type SingleMac struct
function init (line 41421) | func init() {
type SnapshotCloneNotSupported (line 41425) | type SnapshotCloneNotSupported struct
function init (line 41429) | func init() {
type SnapshotCloneNotSupportedFault (line 41433) | type SnapshotCloneNotSupportedFault
function init (line 41435) | func init() {
type SnapshotCopyNotSupported (line 41439) | type SnapshotCopyNotSupported struct
function init (line 41443) | func init() {
type SnapshotCopyNotSupportedFault (line 41447) | type SnapshotCopyNotSupportedFault
function init (line 41449) | func init() {
type SnapshotDisabled (line 41453) | type SnapshotDisabled struct
function init (line 41457) | func init() {
type SnapshotDisabledFault (line 41461) | type SnapshotDisabledFault
function init (line 41463) | func init() {
type SnapshotFault (line 41467) | type SnapshotFault struct
function init (line 41471) | func init() {
type SnapshotFaultFault (line 41475) | type SnapshotFaultFault
function init (line 41477) | func init() {
type SnapshotIncompatibleDeviceInVm (line 41481) | type SnapshotIncompatibleDeviceInVm struct
function init (line 41487) | func init() {
type SnapshotIncompatibleDeviceInVmFault (line 41491) | type SnapshotIncompatibleDeviceInVmFault
function init (line 41493) | func init() {
type SnapshotLocked (line 41497) | type SnapshotLocked struct
function init (line 41501) | func init() {
type SnapshotLockedFault (line 41505) | type SnapshotLockedFault
function init (line 41507) | func init() {
type SnapshotMoveFromNonHomeNotSupported (line 41511) | type SnapshotMoveFromNonHomeNotSupported struct
function init (line 41515) | func init() {
type SnapshotMoveFromNonHomeNotSupportedFault (line 41519) | type SnapshotMoveFromNonHomeNotSupportedFault
function init (line 41521) | func init() {
type SnapshotMoveNotSupported (line 41525) | type SnapshotMoveNotSupported struct
function init (line 41529) | func init() {
type SnapshotMoveNotSupportedFault (line 41533) | type SnapshotMoveNotSupportedFault
function init (line 41535) | func init() {
type SnapshotMoveToNonHomeNotSupported (line 41539) | type SnapshotMoveToNonHomeNotSupported struct
function init (line 41543) | func init() {
type SnapshotMoveToNonHomeNotSupportedFault (line 41547) | type SnapshotMoveToNonHomeNotSupportedFault
function init (line 41549) | func init() {
type SnapshotNoChange (line 41553) | type SnapshotNoChange struct
function init (line 41557) | func init() {
type SnapshotNoChangeFault (line 41561) | type SnapshotNoChangeFault
function init (line 41563) | func init() {
type SnapshotRevertIssue (line 41567) | type SnapshotRevertIssue struct
function init (line 41575) | func init() {
type SnapshotRevertIssueFault (line 41579) | type SnapshotRevertIssueFault
function init (line 41581) | func init() {
type SoftRuleVioCorrectionDisallowed (line 41585) | type SoftRuleVioCorrectionDisallowed struct
function init (line 41591) | func init() {
type SoftRuleVioCorrectionDisallowedFault (line 41595) | type SoftRuleVioCorrectionDisallowedFault
function init (line 41597) | func init() {
type SoftRuleVioCorrectionImpact (line 41601) | type SoftRuleVioCorrectionImpact struct
function init (line 41607) | func init() {
type SoftRuleVioCorrectionImpactFault (line 41611) | type SoftRuleVioCorrectionImpactFault
function init (line 41613) | func init() {
type SoftwarePackage (line 41617) | type SoftwarePackage struct
function init (line 41640) | func init() {
type SoftwarePackageCapability (line 41644) | type SoftwarePackageCapability struct
function init (line 41653) | func init() {
type SourceNodeSpec (line 41657) | type SourceNodeSpec struct
function init (line 41664) | func init() {
type SsdDiskNotAvailable (line 41668) | type SsdDiskNotAvailable struct
function init (line 41674) | func init() {
type SsdDiskNotAvailableFault (line 41678) | type SsdDiskNotAvailableFault
function init (line 41680) | func init() {
type StageHostPatchRequestType (line 41684) | type StageHostPatchRequestType struct
function init (line 41692) | func init() {
type StageHostPatch_Task (line 41696) | type StageHostPatch_Task
function init (line 41698) | func init() {
type StageHostPatch_TaskResponse (line 41702) | type StageHostPatch_TaskResponse struct
type StampAllRulesWithUuidRequestType (line 41706) | type StampAllRulesWithUuidRequestType struct
function init (line 41710) | func init() {
type StampAllRulesWithUuid_Task (line 41714) | type StampAllRulesWithUuid_Task
function init (line 41716) | func init() {
type StampAllRulesWithUuid_TaskResponse (line 41720) | type StampAllRulesWithUuid_TaskResponse struct
type StandbyGuest (line 41724) | type StandbyGuest
function init (line 41726) | func init() {
type StandbyGuestRequestType (line 41730) | type StandbyGuestRequestType struct
function init (line 41734) | func init() {
type StandbyGuestResponse (line 41738) | type StandbyGuestResponse struct
type StartProgramInGuest (line 41741) | type StartProgramInGuest
function init (line 41743) | func init() {
type StartProgramInGuestRequestType (line 41747) | type StartProgramInGuestRequestType struct
function init (line 41754) | func init() {
type StartProgramInGuestResponse (line 41758) | type StartProgramInGuestResponse struct
type StartRecordingRequestType (line 41762) | type StartRecordingRequestType struct
function init (line 41768) | func init() {
type StartRecording_Task (line 41772) | type StartRecording_Task
function init (line 41774) | func init() {
type StartRecording_TaskResponse (line 41778) | type StartRecording_TaskResponse struct
type StartReplayingRequestType (line 41782) | type StartReplayingRequestType struct
function init (line 41787) | func init() {
type StartReplaying_Task (line 41791) | type StartReplaying_Task
function init (line 41793) | func init() {
type StartReplaying_TaskResponse (line 41797) | type StartReplaying_TaskResponse struct
type StartService (line 41801) | type StartService
function init (line 41803) | func init() {
type StartServiceRequestType (line 41807) | type StartServiceRequestType struct
function init (line 41812) | func init() {
type StartServiceResponse (line 41816) | type StartServiceResponse struct
type StateAlarmExpression (line 41819) | type StateAlarmExpression struct
function init (line 41829) | func init() {
type StaticRouteProfile (line 41833) | type StaticRouteProfile struct
function init (line 41839) | func init() {
type StopRecordingRequestType (line 41843) | type StopRecordingRequestType struct
function init (line 41847) | func init() {
type StopRecording_Task (line 41851) | type StopRecording_Task
function init (line 41853) | func init() {
type StopRecording_TaskResponse (line 41857) | type StopRecording_TaskResponse struct
type StopReplayingRequestType (line 41861) | type StopReplayingRequestType struct
function init (line 41865) | func init() {
type StopReplaying_Task (line 41869) | type StopReplaying_Task
function init (line 41871) | func init() {
type StopReplaying_TaskResponse (line 41875) | type StopReplaying_TaskResponse struct
type StopService (line 41879) | type StopService
function init (line 41881) | func init() {
type StopServiceRequestType (line 41885) | type StopServiceRequestType struct
function init (line 41890) | func init() {
type StopServiceResponse (line 41894) | type StopServiceResponse struct
type StorageDrsAutomationConfig (line 41897) | type StorageDrsAutomationConfig struct
function init (line 41907) | func init() {
type StorageDrsCannotMoveDiskInMultiWriterMode (line 41911) | type StorageDrsCannotMoveDiskInMultiWriterMode struct
function init (line 41915) | func init() {
type StorageDrsCannotMoveDiskInMultiWriterModeFault (line 41919) | type StorageDrsCannotMoveDiskInMultiWriterModeFault
function init (line 41921) | func init() {
type StorageDrsCannotMoveFTVm (line 41925) | type StorageDrsCannotMoveFTVm struct
function init (line 41929) | func init() {
type StorageDrsCannotMoveFTVmFault (line 41933) | type StorageDrsCannotMoveFTVmFault
function init (line 41935) | func init() {
type StorageDrsCannotMoveIndependentDisk (line 41939) | type StorageDrsCannotMoveIndependentDisk struct
function init (line 41943) | func init() {
type StorageDrsCannotMoveIndependentDiskFault (line 41947) | type StorageDrsCannotMoveIndependentDiskFault
function init (line 41949) | func init() {
type StorageDrsCannotMoveManuallyPlacedSwapFile (line 41953) | type StorageDrsCannotMoveManuallyPlacedSwapFile struct
function init (line 41957) | func init() {
type StorageDrsCannotMoveManuallyPlacedSwapFileFault (line 41961) | type StorageDrsCannotMoveManuallyPlacedSwapFileFault
function init (line 41963) | func init() {
type StorageDrsCannotMoveManuallyPlacedVm (line 41967) | type StorageDrsCannotMoveManuallyPlacedVm struct
function init (line 41971) | func init() {
type StorageDrsCannotMoveManuallyPlacedVmFault (line 41975) | type StorageDrsCannotMoveManuallyPlacedVmFault
function init (line 41977) | func init() {
type StorageDrsCannotMoveSharedDisk (line 41981) | type StorageDrsCannotMoveSharedDisk struct
function init (line 41985) | func init() {
type StorageDrsCannotMoveSharedDiskFault (line 41989) | type StorageDrsCannotMoveSharedDiskFault
function init (line 41991) | func init() {
type StorageDrsCannotMoveTemplate (line 41995) | type StorageDrsCannotMoveTemplate struct
function init (line 41999) | func init() {
type StorageDrsCannotMoveTemplateFault (line 42003) | type StorageDrsCannotMoveTemplateFault
function init (line 42005) | func init() {
type StorageDrsCannotMoveVmInUserFolder (line 42009) | type StorageDrsCannotMoveVmInUserFolder struct
function init (line 42013) | func init() {
type StorageDrsCannotMoveVmInUserFolderFault (line 42017) | type StorageDrsCannotMoveVmInUserFolderFault
function init (line 42019) | func init() {
type StorageDrsCannotMoveVmWithMountedCDROM (line 42023) | type StorageDrsCannotMoveVmWithMountedCDROM struct
function init (line 42027) | func init() {
type StorageDrsCannotMoveVmWithMountedCDROMFault (line 42031) | type StorageDrsCannotMoveVmWithMountedCDROMFault
function init (line 42033) | func init() {
type StorageDrsCannotMoveVmWithNoFilesInLayout (line 42037) | type StorageDrsCannotMoveVmWithNoFilesInLayout struct
function init (line 42041) | func init() {
type StorageDrsCannotMoveVmWithNoFilesInLayoutFault (line 42045) | type StorageDrsCannotMoveVmWithNoFilesInLayoutFault
function init (line 42047) | func init() {
type StorageDrsConfigInfo (line 42051) | type StorageDrsConfigInfo struct
function init (line 42058) | func init() {
type StorageDrsConfigSpec (line 42062) | type StorageDrsConfigSpec struct
function init (line 42069) | func init() {
type StorageDrsDatacentersCannotShareDatastore (line 42073) | type StorageDrsDatacentersCannotShareDatastore struct
function init (line 42077) | func init() {
type StorageDrsDatacentersCannotShareDatastoreFault (line 42081) | type StorageDrsDatacentersCannotShareDatastoreFault
function init (line 42083) | func init() {
type StorageDrsDisabledOnVm (line 42087) | type StorageDrsDisabledOnVm struct
function init (line 42091) | func init() {
type StorageDrsDisabledOnVmFault (line 42095) | type StorageDrsDisabledOnVmFault
function init (line 42097) | func init() {
type StorageDrsHbrDiskNotMovable (line 42101) | type StorageDrsHbrDiskNotMovable struct
function init (line 42107) | func init() {
type StorageDrsHbrDiskNotMovableFault (line 42111) | type StorageDrsHbrDiskNotMovableFault
function init (line 42113) | func init() {
type StorageDrsHmsMoveInProgress (line 42117) | type StorageDrsHmsMoveInProgress struct
function init (line 42121) | func init() {
type StorageDrsHmsMoveInProgressFault (line 42125) | type StorageDrsHmsMoveInProgressFault
function init (line 42127) | func init() {
type StorageDrsHmsUnreachable (line 42131) | type StorageDrsHmsUnreachable struct
function init (line 42135) | func init() {
type StorageDrsHmsUnreachableFault (line 42139) | type StorageDrsHmsUnreachableFault
function init (line 42141) | func init() {
type StorageDrsIoLoadBalanceConfig (line 42145) | type StorageDrsIoLoadBalanceConfig struct
function init (line 42155) | func init() {
type StorageDrsIolbDisabledInternally (line 42159) | type StorageDrsIolbDisabledInternally struct
function init (line 42163) | func init() {
type StorageDrsIolbDisabledInternallyFault (line 42167) | type StorageDrsIolbDisabledInternallyFault
function init (line 42169) | func init() {
type StorageDrsOptionSpec (line 42173) | type StorageDrsOptionSpec struct
function init (line 42179) | func init() {
type StorageDrsPlacementRankVmSpec (line 42183) | type StorageDrsPlacementRankVmSpec struct
function init (line 42190) | func init() {
type StorageDrsPodConfigInfo (line 42194) | type StorageDrsPodConfigInfo struct
function init (line 42209) | func init() {
type StorageDrsPodConfigSpec (line 42213) | type StorageDrsPodConfigSpec struct
function init (line 42228) | func init() {
type StorageDrsPodSelectionSpec (line 42232) | type StorageDrsPodSelectionSpec struct
function init (line 42239) | func init() {
type StorageDrsRelocateDisabled (line 42243) | type StorageDrsRelocateDisabled struct
function init (line 42247) | func init() {
type StorageDrsRelocateDisabledFault (line 42251) | type StorageDrsRelocateDisabledFault
function init (line 42253) | func init() {
type StorageDrsSpaceLoadBalanceConfig (line 42257) | type StorageDrsSpaceLoadBalanceConfig struct
function init (line 42266) | func init() {
type StorageDrsStaleHmsCollection (line 42270) | type StorageDrsStaleHmsCollection struct
function init (line 42274) | func init() {
type StorageDrsStaleHmsCollectionFault (line 42278) | type StorageDrsStaleHmsCollectionFault
function init (line 42280) | func init() {
type StorageDrsUnableToMoveFiles (line 42284) | type StorageDrsUnableToMoveFiles struct
function init (line 42288) | func init() {
type StorageDrsUnableToMoveFilesFault (line 42292) | type StorageDrsUnableToMoveFilesFault
function init (line 42294) | func init() {
type StorageDrsVmConfigInfo (line 42298) | type StorageDrsVmConfigInfo struct
function init (line 42308) | func init() {
type StorageDrsVmConfigSpec (line 42312) | type StorageDrsVmConfigSpec struct
function init (line 42318) | func init() {
type StorageIOAllocationInfo (line 42322) | type StorageIOAllocationInfo struct
function init (line 42330) | func init() {
type StorageIOAllocationOption (line 42334) | type StorageIOAllocationOption struct
function init (line 42341) | func init() {
type StorageIORMConfigOption (line 42345) | type StorageIORMConfigOption struct
function init (line 42354) | func init() {
type StorageIORMConfigSpec (line 42358) | type StorageIORMConfigSpec struct
function init (line 42371) | func init() {
type StorageIORMInfo (line 42375) | type StorageIORMInfo struct
function init (line 42388) | func init() {
type StorageMigrationAction (line 42392) | type StorageMigrationAction struct
function init (line 42408) | func init() {
type StoragePerformanceSummary (line 42412) | type StoragePerformanceSummary struct
function init (line 42425) | func init() {
type StoragePlacementAction (line 42429) | type StoragePlacementAction struct
function init (line 42442) | func init() {
type StoragePlacementResult (line 42446) | type StoragePlacementResult struct
function init (line 42454) | func init() {
type StoragePlacementSpec (line 42458) | type StoragePlacementSpec struct
function init (line 42476) | func init() {
type StoragePodSummary (line 42480) | type StoragePodSummary struct
function init (line 42488) | func init() {
type StorageProfile (line 42492) | type StorageProfile struct
function init (line 42498) | func init() {
type StorageRequirement (line 42502) | type StorageRequirement struct
function init (line 42509) | func init() {
type StorageResourceManagerStorageProfileStatistics (line 42513) | type StorageResourceManagerStorageProfileStatistics struct
function init (line 42521) | func init() {
type StorageVMotionNotSupported (line 42525) | type StorageVMotionNotSupported struct
function init (line 42529) | func init() {
type StorageVMotionNotSupportedFault (line 42533) | type StorageVMotionNotSupportedFault
function init (line 42535) | func init() {
type StorageVmotionIncompatible (line 42539) | type StorageVmotionIncompatible struct
function init (line 42545) | func init() {
type StorageVmotionIncompatibleFault (line 42549) | type StorageVmotionIncompatibleFault
function init (line 42551) | func init() {
type StringExpression (line 42555) | type StringExpression struct
function init (line 42561) | func init() {
type StringOption (line 42565) | type StringOption struct
function init (line 42572) | func init() {
type StringPolicy (line 42576) | type StringPolicy struct
function init (line 42582) | func init() {
type StructuredCustomizations (line 42586) | type StructuredCustomizations struct
function init (line 42593) | func init() {
type SuspendVAppRequestType (line 42597) | type SuspendVAppRequestType struct
function init (line 42601) | func init() {
type SuspendVApp_Task (line 42605) | type SuspendVApp_Task
function init (line 42607) | func init() {
type SuspendVApp_TaskResponse (line 42611) | type SuspendVApp_TaskResponse struct
type SuspendVMRequestType (line 42615) | type SuspendVMRequestType struct
function init (line 42619) | func init() {
type SuspendVM_Task (line 42623) | type SuspendVM_Task
function init (line 42625) | func init() {
type SuspendVM_TaskResponse (line 42629) | type SuspendVM_TaskResponse struct
type SuspendedRelocateNotSupported (line 42633) | type SuspendedRelocateNotSupported struct
function init (line 42637) | func init() {
type SuspendedRelocateNotSupportedFault (line 42641) | type SuspendedRelocateNotSupportedFault
function init (line 42643) | func init() {
type SwapDatastoreNotWritableOnHost (line 42647) | type SwapDatastoreNotWritableOnHost struct
function init (line 42651) | func init() {
type SwapDatastoreNotWritableOnHostFault (line 42655) | type SwapDatastoreNotWritableOnHostFault
function init (line 42657) | func init() {
type SwapDatastoreUnset (line 42661) | type SwapDatastoreUnset struct
function init (line 42665) | func init() {
type SwapDatastoreUnsetFault (line 42669) | type SwapDatastoreUnsetFault
function init (line 42671) | func init() {
type SwapPlacementOverrideNotSupported (line 42675) | type SwapPlacementOverrideNotSupported struct
function init (line 42679) | func init() {
type SwapPlacementOverrideNotSupportedFault (line 42683) | type SwapPlacementOverrideNotSupportedFault
function init (line 42685) | func init() {
type SwitchIpUnset (line 42689) | type SwitchIpUnset struct
function init (line 42693) | func init() {
type SwitchIpUnsetFault (line 42697) | type SwitchIpUnsetFault
function init (line 42699) | func init() {
type SwitchNotInUpgradeMode (line 42703) | type SwitchNotInUpgradeMode struct
function init (line 42707) | func init() {
type SwitchNotInUpgradeModeFault (line 42711) | type SwitchNotInUpgradeModeFault
function init (line 42713) | func init() {
type SystemError (line 42717) | type SystemError struct
function init (line 42723) | func init() {
type SystemErrorFault (line 42727) | type SystemErrorFault
function init (line 42729) | func init() {
type SystemEventInfo (line 42733) | type SystemEventInfo struct
function init (line 42743) | func init() {
type Tag (line 42747) | type Tag struct
function init (line 42753) | func init() {
type TaskDescription (line 42757) | type TaskDescription struct
function init (line 42765) | func init() {
type TaskEvent (line 42769) | type TaskEvent struct
function init (line 42775) | func init() {
type TaskFilterSpec (line 42779) | type TaskFilterSpec struct
function init (line 42795) | func init() {
type TaskFilterSpecByEntity (line 42799) | type TaskFilterSpecByEntity struct
function init (line 42806) | func init() {
type TaskFilterSpecByTime (line 42810) | type TaskFilterSpecByTime struct
function init (line 42818) | func init() {
type TaskFilterSpecByUsername (line 42822) | type TaskFilterSpecByUsername struct
function init (line 42829) | func init() {
type TaskInProgress (line 42833) | type TaskInProgress struct
function init (line 42839) | func init() {
type TaskInProgressFault (line 42843) | type TaskInProgressFault
function init (line 42845) | func init() {
type TaskInfo (line 42849) | type TaskInfo struct
function init (line 42877) | func init() {
type TaskReason (line 42881) | type TaskReason struct
function init (line 42885) | func init() {
type TaskReasonAlarm (line 42889) | type TaskReasonAlarm struct
function init (line 42898) | func init() {
type TaskReasonSchedule (line 42902) | type TaskReasonSchedule struct
function init (line 42909) | func init() {
type TaskReasonSystem (line 42913) | type TaskReasonSystem struct
function init (line 42917) | func init() {
type TaskReasonUser (line 42921) | type TaskReasonUser struct
function init (line 42927) | func init() {
type TaskScheduler (line 42931) | type TaskScheduler struct
function init (line 42938) | func init() {
type TaskTimeoutEvent (line 42942) | type TaskTimeoutEvent struct
function init (line 42946) | func init() {
type TeamingMatchEvent (line 42950) | type TeamingMatchEvent struct
function init (line 42954) | func init() {
type TeamingMisMatchEvent (line 42958) | type TeamingMisMatchEvent struct
function init (line 42962) | func init() {
type TemplateBeingUpgradedEvent (line 42966) | type TemplateBeingUpgradedEvent struct
function init (line 42970) | func init() {
type TemplateConfigFileInfo (line 42974) | type TemplateConfigFileInfo struct
function init (line 42978) | func init() {
type TemplateConfigFileQuery (line 42982) | type TemplateConfigFileQuery struct
function init (line 42986) | func init() {
type TemplateUpgradeEvent (line 42990) | type TemplateUpgradeEvent struct
function init (line 42996) | func init() {
type TemplateUpgradeFailedEvent (line 43000) | type TemplateUpgradeFailedEvent struct
function init (line 43006) | func init() {
type TemplateUpgradedEvent (line 43010) | type TemplateUpgradedEvent struct
function init (line 43014) | func init() {
type TerminateFaultTolerantVMRequestType (line 43018) | type TerminateFaultTolerantVMRequestType struct
function init (line 43023) | func init() {
type TerminateFaultTolerantVM_Task (line 43027) | type TerminateFaultTolerantVM_Task
function init (line 43029) | func init() {
type TerminateFaultTolerantVM_TaskResponse (line 43033) | type TerminateFaultTolerantVM_TaskResponse struct
type TerminateProcessInGuest (line 43037) | type TerminateProcessInGuest
function init (line 43039) | func init() {
type TerminateProcessInGuestRequestType (line 43043) | type TerminateProcessInGuestRequestType struct
function init (line 43050) | func init() {
type TerminateProcessInGuestResponse (line 43054) | type TerminateProcessInGuestResponse struct
type TerminateSession (line 43057) | type TerminateSession
function init (line 43059) | func init() {
type TerminateSessionRequestType (line 43063) | type TerminateSessionRequestType struct
function init (line 43068) | func init() {
type TerminateSessionResponse (line 43072) | type TerminateSessionResponse struct
type TerminateVM (line 43075) | type TerminateVM
function init (line 43077) | func init() {
type TerminateVMRequestType (line 43081) | type TerminateVMRequestType struct
function init (line 43085) | func init() {
type TerminateVMResponse (line 43089) | type TerminateVMResponse struct
type ThirdPartyLicenseAssignmentFailed (line 43092) | type ThirdPartyLicenseAssignmentFailed struct
function init (line 43100) | func init() {
type ThirdPartyLicenseAssignmentFailedFault (line 43104) | type ThirdPartyLicenseAssignmentFailedFault
function init (line 43106) | func init() {
type TicketedSessionAuthentication (line 43110) | type TicketedSessionAuthentication struct
function init (line 43116) | func init() {
type TimedOutHostOperationEvent (line 43120) | type TimedOutHostOperationEvent struct
function init (line 43124) | func init() {
type Timedout (line 43128) | type Timedout struct
function init (line 43132) | func init() {
type TimedoutFault (line 43136) | type TimedoutFault
function init (line 43138) | func init() {
type TooManyConcurrentNativeClones (line 43142) | type TooManyConcurrentNativeClones struct
function init (line 43146) | func init() {
type TooManyConcurrentNativeClonesFault (line 43150) | type TooManyConcurrentNativeClonesFault
function init (line 43152) | func init() {
type TooManyConsecutiveOverrides (line 43156) | type TooManyConsecutiveOverrides struct
function init (line 43160) | func init() {
type TooManyConsecutiveOverridesFault (line 43164) | type TooManyConsecutiveOverridesFault
function init (line 43166) | func init() {
type TooManyDevices (line 43170) | type TooManyDevices struct
function init (line 43174) | func init() {
type TooManyDevicesFault (line 43178) | type TooManyDevicesFault
function init (line 43180) | func init() {
type TooManyDisksOnLegacyHost (line 43184) | type TooManyDisksOnLegacyHost struct
function init (line 43191) | func init() {
type TooManyDisksOnLegacyHostFault (line 43195) | type TooManyDisksOnLegacyHostFault
function init (line 43197) | func init() {
type TooManyGuestLogons (line 43201) | type TooManyGuestLogons struct
function init (line 43205) | func init() {
type TooManyGuestLogonsFault (line 43209) | type TooManyGuestLogonsFault
function init (line 43211) | func init() {
type TooManyHosts (line 43215) | type TooManyHosts struct
function init (line 43219) | func init() {
type TooManyHostsFault (line 43223) | type TooManyHostsFault
function init (line 43225) | func init() {
type TooManyNativeCloneLevels (line 43229) | type TooManyNativeCloneLevels struct
function init (line 43233) | func init() {
type TooManyNativeCloneLevelsFault (line 43237) | type TooManyNativeCloneLevelsFault
function init (line 43239) | func init() {
type TooManyNativeClonesOnFile (line 43243) | type TooManyNativeClonesOnFile struct
function init (line 43247) | func init() {
type TooManyNativeClonesOnFileFault (line 43251) | type TooManyNativeClonesOnFileFault
function init (line 43253) | func init() {
type TooManySnapshotLevels (line 43257) | type TooManySnapshotLevels struct
function init (line 43261) | func init() {
type TooManySnapshotLevelsFault (line 43265) | type TooManySnapshotLevelsFault
function init (line 43267) | func init() {
type ToolsAlreadyUpgraded (line 43271) | type ToolsAlreadyUpgraded struct
function init (line 43275) | func init() {
type ToolsAlreadyUpgradedFault (line 43279) | type ToolsAlreadyUpgradedFault
function init (line 43281) | func init() {
type ToolsAutoUpgradeNotSupported (line 43285) | type ToolsAutoUpgradeNotSupported struct
function init (line 43289) | func init() {
type ToolsAutoUpgradeNotSupportedFault (line 43293) | type ToolsAutoUpgradeNotSupportedFault
function init (line 43295) | func init() {
type ToolsConfigInfo (line 43299) | type ToolsConfigInfo struct
function init (line 43316) | func init() {
type ToolsConfigInfoToolsLastInstallInfo (line 43320) | type ToolsConfigInfoToolsLastInstallInfo struct
function init (line 43327) | func init() {
type ToolsImageCopyFailed (line 43331) | type ToolsImageCopyFailed struct
function init (line 43335) | func init() {
type ToolsImageCopyFailedFault (line 43339) | type ToolsImageCopyFailedFault
function init (line 43341) | func init() {
type ToolsImageNotAvailable (line 43345) | type ToolsImageNotAvailable struct
function init (line 43349) | func init() {
type ToolsImageNotAvailableFault (line 43353) | type ToolsImageNotAvailableFault
function init (line 43355) | func init() {
type ToolsImageSignatureCheckFailed (line 43359) | type ToolsImageSignatureCheckFailed struct
function init (line 43363) | func init() {
type ToolsImageSignatureCheckFailedFault (line 43367) | type ToolsImageSignatureCheckFailedFault
function init (line 43369) | func init() {
type ToolsInstallationInProgress (line 43373) | type ToolsInstallationInProgress struct
function init (line 43377) | func init() {
type ToolsInstallationInProgressFault (line 43381) | type ToolsInstallationInProgressFault
function init (line 43383) | func init() {
type ToolsUnavailable (line 43387) | type ToolsUnavailable struct
function init (line 43391) | func init() {
type ToolsUnavailableFault (line 43395) | type ToolsUnavailableFault
function init (line 43397) | func init() {
type ToolsUpgradeCancelled (line 43401) | type ToolsUpgradeCancelled struct
function init (line 43405) | func init() {
type ToolsUpgradeCancelledFault (line 43409) | type ToolsUpgradeCancelledFault
function init (line 43411) | func init() {
type TraversalSpec (line 43415) | type TraversalSpec struct
function init (line 43424) | func init() {
type TurnDiskLocatorLedOffRequestType (line 43428) | type TurnDiskLocatorLedOffRequestType struct
function init (line 43433) | func init() {
type TurnDiskLocatorLedOff_Task (line 43437) | type TurnDiskLocatorLedOff_Task
function init (line 43439) | func init() {
type TurnDiskLocatorLedOff_TaskResponse (line 43443) | type TurnDiskLocatorLedOff_TaskResponse struct
type TurnDiskLocatorLedOnRequestType (line 43447) | type TurnDiskLocatorLedOnRequestType struct
function init (line 43452) | func init() {
type TurnDiskLocatorLedOn_Task (line 43456) | type TurnDiskLocatorLedOn_Task
function init (line 43458) | func init() {
type TurnDiskLocatorLedOn_TaskResponse (line 43462) | type TurnDiskLocatorLedOn_TaskResponse struct
type TurnOffFaultToleranceForVMRequestType (line 43466) | type TurnOffFaultToleranceForVMRequestType struct
function init (line 43470) | func init() {
type TurnOffFaultToleranceForVM_Task (line 43474) | type TurnOffFaultToleranceForVM_Task
function init (line 43476) | func init() {
type TurnOffFaultToleranceForVM_TaskResponse (line 43480) | type TurnOffFaultToleranceForVM_TaskResponse struct
type TypeDescription (line 43484) | type TypeDescription struct
function init (line 43490) | func init() {
type UnSupportedDatastoreForVFlash (line 43494) | type UnSupportedDatastoreForVFlash struct
function init (line 43501) | func init() {
type UnSupportedDatastoreForVFlashFault (line 43505) | type UnSupportedDatastoreForVFlashFault
function init (line 43507) | func init() {
type UnassignUserFromGroup (line 43511) | type UnassignUserFromGroup
function init (line 43513) | func init() {
type UnassignUserFromGroupRequestType (line 43517) | type UnassignUserFromGroupRequestType struct
function init (line 43523) | func init() {
type UnassignUserFromGroupResponse (line 43527) | type UnassignUserFromGroupResponse struct
type UnbindVnic (line 43530) | type UnbindVnic
function init (line 43532) | func init() {
type UnbindVnicRequestType (line 43536) | type UnbindVnicRequestType struct
function init (line 43543) | func init() {
type UnbindVnicResponse (line 43547) | type UnbindVnicResponse struct
type UncommittedUndoableDisk (line 43550) | type UncommittedUndoableDisk struct
function init (line 43554) | func init() {
type UncommittedUndoableDiskFault (line 43558) | type UncommittedUndoableDiskFault
function init (line 43560) | func init() {
type UnconfiguredPropertyValue (line 43564) | type UnconfiguredPropertyValue struct
function init (line 43568) | func init() {
type UnconfiguredPropertyValueFault (line 43572) | type UnconfiguredPropertyValueFault
function init (line 43574) | func init() {
type UncustomizableGuest (line 43578) | type UncustomizableGuest struct
function init (line 43584) | func init() {
type UncustomizableGuestFault (line 43588) | type UncustomizableGuestFault
function init (line 43590) | func init() {
type UnexpectedCustomizationFault (line 43594) | type UnexpectedCustomizationFault struct
function init (line 43598) | func init() {
type UnexpectedCustomizationFaultFault (line 43602) | type UnexpectedCustomizationFaultFault
function init (line 43604) | func init() {
type UnexpectedFault (line 43608) | type UnexpectedFault struct
function init (line 43615) | func init() {
type UnexpectedFaultFault (line 43619) | type UnexpectedFaultFault
function init (line 43621) | func init() {
type UninstallHostPatchRequestType (line 43625) | type UninstallHostPatchRequestType struct
function init (line 43631) | func init() {
type UninstallHostPatch_Task (line 43635) | type UninstallHostPatch_Task
function init (line 43637) | func init() {
type UninstallHostPatch_TaskResponse (line 43641) | type UninstallHostPatch_TaskResponse struct
type UninstallIoFilterRequestType (line 43645) | type UninstallIoFilterRequestType struct
function init (line 43651) | func init() {
type UninstallIoFilter_Task (line 43655) | type UninstallIoFilter_Task
function init (line 43657) | func init() {
type UninstallIoFilter_TaskResponse (line 43661) | type UninstallIoFilter_TaskResponse struct
type UninstallService (line 43665) | type UninstallService
function init (line 43667) | func init() {
type UninstallServiceRequestType (line 43671) | type UninstallServiceRequestType struct
function init (line 43676) | func init() {
type UninstallServiceResponse (line 43680) | type UninstallServiceResponse struct
type UnlicensedVirtualMachinesEvent (line 43683) | type UnlicensedVirtualMachinesEvent struct
function init (line 43690) | func init() {
type UnlicensedVirtualMachinesFoundEvent (line 43694) | type UnlicensedVirtualMachinesFoundEvent struct
function init (line 43700) | func init() {
type UnmapVmfsVolumeExRequestType (line 43704) | type UnmapVmfsVolumeExRequestType struct
function init (line 43709) | func init() {
type UnmapVmfsVolumeEx_Task (line 43713) | type UnmapVmfsVolumeEx_Task
function init (line 43715) | func init() {
type UnmapVmfsVolumeEx_TaskResponse (line 43719) | type UnmapVmfsVolumeEx_TaskResponse struct
type UnmountDiskMappingRequestType (line 43723) | type UnmountDiskMappingRequestType struct
function init (line 43728) | func init() {
type UnmountDiskMapping_Task (line 43732) | type UnmountDiskMapping_Task
function init (line 43734) | func init() {
type UnmountDiskMapping_TaskResponse (line 43738) | type UnmountDiskMapping_TaskResponse struct
type UnmountForceMountedVmfsVolume (line 43742) | type UnmountForceMountedVmfsVolume
function init (line 43744) | func init() {
type UnmountForceMountedVmfsVolumeRequestType (line 43748) | type UnmountForceMountedVmfsVolumeRequestType struct
function init (line 43753) | func init() {
type UnmountForceMountedVmfsVolumeResponse (line 43757) | type UnmountForceMountedVmfsVolumeResponse struct
type UnmountToolsInstaller (line 43760) | type UnmountToolsInstaller
function init (line 43762) | func init() {
type UnmountToolsInstallerRequestType (line 43766) | type UnmountToolsInstallerRequestType struct
function init (line 43770) | func init() {
type UnmountToolsInstallerResponse (line 43774) | type UnmountToolsInstallerResponse struct
type UnmountVffsVolume (line 43777) | type UnmountVffsVolume
function init (line 43779) | func init() {
type UnmountVffsVolumeRequestType (line 43783) | type UnmountVffsVolumeRequestType struct
function init (line 43788) | func init() {
type UnmountVffsVolumeResponse (line 43792) | type UnmountVffsVolumeResponse struct
type UnmountVmfsVolume (line 43795) | type UnmountVmfsVolume
function init (line 43797) | func init() {
type UnmountVmfsVolumeExRequestType (line 43801) | type UnmountVmfsVolumeExRequestType struct
function init (line 43806) | func init() {
type UnmountVmfsVolumeEx_Task (line 43810) | type UnmountVmfsVolumeEx_Task
function init (line 43812) | func init() {
type UnmountVmfsVolumeEx_TaskResponse (line 43816) | type UnmountVmfsVolumeEx_TaskResponse struct
type UnmountVmfsVolumeRequestType (line 43820) | type UnmountVmfsVolumeRequestType struct
function init (line 43825) | func init() {
type UnmountVmfsVolumeResponse (line 43829) | type UnmountVmfsVolumeResponse struct
type UnrecognizedHost (line 43832) | type UnrecognizedHost struct
function init (line 43838) | func init() {
type UnrecognizedHostFault (line 43842) | type UnrecognizedHostFault
function init (line 43844) | func init() {
type UnregisterAndDestroyRequestType (line 43848) | type UnregisterAndDestroyRequestType struct
function init (line 43852) | func init() {
type UnregisterAndDestroy_Task (line 43856) | type UnregisterAndDestroy_Task
function init (line 43858) | func init() {
type UnregisterAndDestroy_TaskResponse (line 43862) | type UnregisterAndDestroy_TaskResponse struct
type UnregisterExtension (line 43866) | type UnregisterExtension
function init (line 43868) | func init() {
type UnregisterExtensionRequestType (line 43872) | type UnregisterExtensionRequestType struct
function init (line 43877) | func init() {
type UnregisterExtensionResponse (line 43881) | type UnregisterExtensionResponse struct
type UnregisterHealthUpdateProvider (line 43884) | type UnregisterHealthUpdateProvider
function init (line 43886) | func init() {
type UnregisterHealthUpdateProviderRequestType (line 43890) | type UnregisterHealthUpdateProviderRequestType struct
function init (line 43895) | func init() {
type UnregisterHealthUpdateProviderResponse (line 43899) | type UnregisterHealthUpdateProviderResponse struct
type UnregisterVM (line 43902) | type UnregisterVM
function init (line 43904) | func init() {
type UnregisterVMRequestType (line 43908) | type UnregisterVMRequestType struct
function init (line 43912) | func init() {
type UnregisterVMResponse (line 43916) | type UnregisterVMResponse struct
type UnsharedSwapVMotionNotSupported (line 43919) | type UnsharedSwapVMotionNotSupported struct
function init (line 43923) | func init() {
type UnsharedSwapVMotionNotSupportedFault (line 43927) | type UnsharedSwapVMotionNotSupportedFault
function init (line 43929) | func init() {
type UnsupportedDatastore (line 43933) | type UnsupportedDatastore struct
function init (line 43939) | func init() {
type UnsupportedDatastoreFault (line 43943) | type UnsupportedDatastoreFault
function init (line 43945) | func init() {
type UnsupportedGuest (line 43949) | type UnsupportedGuest struct
function init (line 43955) | func init() {
type UnsupportedGuestFault (line 43959) | type UnsupportedGuestFault
function init (line 43961) | func init() {
type UnsupportedVimApiVersion (line 43965) | type UnsupportedVimApiVersion struct
function init (line 43971) | func init() {
type UnsupportedVimApiVersionFault (line 43975) | type UnsupportedVimApiVersionFault
function init (line 43977) | func init() {
type UnsupportedVmxLocation (line 43981) | type UnsupportedVmxLocation struct
function init (line 43985) | func init() {
type UnsupportedVmxLocationFault (line 43989) | type UnsupportedVmxLocationFault
function init (line 43991) | func init() {
type UnusedVirtualDiskBlocksNotScrubbed (line 43995) | type UnusedVirtualDiskBlocksNotScrubbed struct
function init (line 43999) | func init() {
type UnusedVirtualDiskBlocksNotScrubbedFault (line 44003) | type UnusedVirtualDiskBlocksNotScrubbedFault
function init (line 44005) | func init() {
type UpdateAnswerFileRequestType (line 44009) | type UpdateAnswerFileRequestType struct
function init (line 44015) | func init() {
type UpdateAnswerFile_Task (line 44019) | type UpdateAnswerFile_Task
function init (line 44021) | func init() {
type UpdateAnswerFile_TaskResponse (line 44025) | type UpdateAnswerFile_TaskResponse struct
type UpdateAssignedLicense (line 44029) | type UpdateAssignedLicense
function init (line 44031) | func init() {
type UpdateAssignedLicenseRequestType (line 44035) | type UpdateAssignedLicenseRequestType struct
function init (line 44042) | func init() {
type UpdateAssignedLicenseResponse (line 44046) | type UpdateAssignedLicenseResponse struct
type UpdateAuthorizationRole (line 44050) | type UpdateAuthorizationRole
function init (line 44052) | func init() {
type UpdateAuthorizationRoleRequestType (line 44056) | type UpdateAuthorizationRoleRequestType struct
function init (line 44063) | func init() {
type UpdateAuthorizationRoleResponse (line 44067) | type UpdateAuthorizationRoleResponse struct
type UpdateBootDevice (line 44070) | type UpdateBootDevice
function init (line 44072) | func init() {
type UpdateBootDeviceRequestType (line 44076) | type UpdateBootDeviceRequestType struct
function init (line 44081) | func init() {
type UpdateBootDeviceResponse (line 44085) | type UpdateBootDeviceResponse struct
type UpdateChildResourceConfiguration (line 44088) | type UpdateChildResourceConfiguration
function init (line 44090) | func init() {
type UpdateChildResourceConfigurationRequestType (line 44094) | type UpdateChildResourceConfigurationRequestType struct
function init (line 44099) | func init() {
type UpdateChildResourceConfigurationResponse (line 44103) | type UpdateChildResourceConfigurationResponse struct
type UpdateClusterProfile (line 44106) | type UpdateClusterProfile
function init (line 44108) | func init() {
type UpdateClusterProfileRequestType (line 44112) | type UpdateClusterProfileRequestType struct
function init (line 44117) | func init() {
type UpdateClusterProfileResponse (line 44121) | type UpdateClusterProfileResponse struct
type UpdateConfig (line 44124) | type UpdateConfig
function init (line 44126) | func init() {
type UpdateConfigRequestType (line 44130) | type UpdateConfigRequestType struct
function init (line 44136) | func init() {
type UpdateConfigResponse (line 44140) | type UpdateConfigResponse struct
type UpdateConsoleIpRouteConfig (line 44143) | type UpdateConsoleIpRouteConfig
function init (line 44145) | func init() {
type UpdateConsoleIpRouteConfigRequestType (line 44149) | type UpdateConsoleIpRouteConfigRequestType struct
function init (line 44154) | func init() {
type UpdateConsoleIpRouteConfigResponse (line 44158) | type UpdateConsoleIpRouteConfigResponse struct
type UpdateCounterLevelMapping (line 44161) | type UpdateCounterLevelMapping
function init (line 44163) | func init() {
type UpdateCounterLevelMappingRequestType (line 44167) | type UpdateCounterLevelMappingRequestType struct
function init (line 44172) | func init() {
type UpdateCounterLevelMappingResponse (line 44176) | type UpdateCounterLevelMappingResponse struct
type UpdateDVSHealthCheckConfigRequestType (line 44179) | type UpdateDVSHealthCheckConfigRequestType struct
function init (line 44184) | func init() {
type UpdateDVSHealthCheckConfig_Task (line 44188) | type UpdateDVSHealthCheckConfig_Task
function init (line 44190) | func init() {
type UpdateDVSHealthCheckConfig_TaskResponse (line 44194) | type UpdateDVSHealthCheckConfig_TaskResponse struct
type UpdateDVSLacpGroupConfigRequestType (line 44198) | type UpdateDVSLacpGroupConfigRequestType struct
function init (line 44203) | func init() {
type UpdateDVSLacpGroupConfig_Task (line 44207) | type UpdateDVSLacpGroupConfig_Task
function init (line 44209) | func init() {
type UpdateDVSLacpGroupConfig_TaskResponse (line 44213) | type UpdateDVSLacpGroupConfig_TaskResponse struct
type UpdateDateTime (line 44217) | type UpdateDateTime
function init (line 44219) | func init() {
type UpdateDateTimeConfig (line 44223) | type UpdateDateTimeConfig
function init (line 44225) | func init() {
type UpdateDateTimeConfigRequestType (line 44229) | type UpdateDateTimeConfigRequestType struct
function init (line 44234) | func init() {
type UpdateDateTimeConfigResponse (line 44238) | type UpdateDateTimeConfigResponse struct
type UpdateDateTimeRequestType (line 44241) | type UpdateDateTimeRequestType struct
function init (line 44246) | func init() {
type UpdateDateTimeResponse (line 44250) | type UpdateDateTimeResponse struct
type UpdateDefaultPolicy (line 44253) | type UpdateDefaultPolicy
function init (line 44255) | func init() {
type UpdateDefaultPolicyRequestType (line 44259) | type UpdateDefaultPolicyRequestType struct
function init (line 44264) | func init() {
type UpdateDefaultPolicyResponse (line 44268) | type UpdateDefaultPolicyResponse struct
type UpdateDiskPartitions (line 44271) | type UpdateDiskPartitions
function init (line 44273) | func init() {
type UpdateDiskPartitionsRequestType (line 44277) | type UpdateDiskPartitionsRequestType struct
function init (line 44283) | func init() {
type UpdateDiskPartitionsResponse (line 44287) | type UpdateDiskPartitionsResponse struct
type UpdateDnsConfig (line 44290) | type UpdateDnsConfig
function init (line 44292) | func init() {
type UpdateDnsConfigRequestType (line 44296) | type UpdateDnsConfigRequestType struct
function init (line 44301) | func init() {
type UpdateDnsConfigResponse (line 44305) | type UpdateDnsConfigResponse struct
type UpdateDvsCapability (line 44308) | type UpdateDvsCapability
function init (line 44310) | func init() {
type UpdateDvsCapabilityRequestType (line 44314) | type UpdateDvsCapabilityRequestType struct
function init (line 44319) | func init() {
type UpdateDvsCapabilityResponse (line 44323) | type UpdateDvsCapabilityResponse struct
type UpdateExtension (line 44326) | type UpdateExtension
function init (line 44328) | func init() {
type UpdateExtensionRequestType (line 44332) | type UpdateExtensionRequestType struct
function init (line 44337) | func init() {
type UpdateExtensionResponse (line 44341) | type UpdateExtensionResponse struct
type UpdateFlags (line 44344) | type UpdateFlags
function init (line 44346) | func init() {
type UpdateFlagsRequestType (line 44350) | type UpdateFlagsRequestType struct
function init (line 44355) | func init() {
type UpdateFlagsResponse (line 44359) | type UpdateFlagsResponse struct
type UpdateGraphicsConfig (line 44362) | type UpdateGraphicsConfig
function init (line 44364) | func init() {
type UpdateGraphicsConfigRequestType (line 44368) | type UpdateGraphicsConfigRequestType struct
function init (line 44373) | func init() {
type UpdateGraphicsConfigResponse (line 44377) | type UpdateGraphicsConfigResponse struct
type UpdateHostCustomizationsRequestType (line 44380) | type UpdateHostCustomizationsRequestType struct
function init (line 44385) | func init() {
type UpdateHostCustomizations_Task (line 44389) | type UpdateHostCustomizations_Task
function init (line 44391) | func init() {
type UpdateHostCustomizations_TaskResponse (line 44395) | type UpdateHostCustomizations_TaskResponse struct
type UpdateHostImageAcceptanceLevel (line 44399) | type UpdateHostImageAcceptanceLevel
function init (line 44401) | func init() {
type UpdateHostImageAcceptanceLevelRequestType (line 44405) | type UpdateHostImageAcceptanceLevelRequestType struct
function init (line 44410) | func init() {
type UpdateHostImageAcceptanceLevelResponse (line 44414) | type UpdateHostImageAcceptanceLevelResponse struct
type UpdateHostProfile (line 44417) | type UpdateHostProfile
function init (line 44419) | func init() {
type UpdateHostProfileRequestType (line 44423) | type UpdateHostProfileRequestType struct
function init (line 44428) | func init() {
type UpdateHostProfileResponse (line 44432) | type UpdateHostProfileResponse struct
type UpdateHostSpecification (line 44435) | type UpdateHostSpecification
function init (line 44437) | func init() {
type UpdateHostSpecificationRequestType (line 44441) | type UpdateHostSpecificationRequestType struct
function init (line 44447) | func init() {
type UpdateHostSpecificationResponse (line 44451) | type UpdateHostSpecificationResponse struct
type UpdateHostSubSpecification (line 44454) | type UpdateHostSubSpecification
function init (line 44456) | func init() {
type UpdateHostSubSpecificationRequestType (line 44460) | type UpdateHostSubSpecificationRequestType struct
function init (line 44466) | func init() {
type UpdateHostSubSpecificationResponse (line 44470) | type UpdateHostSubSpecificationResponse struct
type UpdateInternetScsiAdvancedOptions (line 44473) | type UpdateInternetScsiAdvancedOptions
function init (line 44475) | func init() {
type UpdateInternetScsiAdvancedOptionsRequestType (line 44479) | type UpdateInternetScsiAdvancedOptionsRequestType struct
function init (line 44486) | func init() {
type UpdateInternetScsiAdvancedOptionsResponse (line 44490) | type UpdateInternetScsiAdvancedOptionsResponse struct
type UpdateInternetScsiAlias (line 44493) | type UpdateInternetScsiAlias
function init (line 44495) | func init() {
type UpdateInternetScsiAliasRequestType (line 44499) | type UpdateInternetScsiAliasRequestType struct
function init (line 44505) | func init() {
type UpdateInternetScsiAliasResponse (line 44509) | type UpdateInternetScsiAliasResponse struct
type UpdateInternetScsiAuthenticationProperties (line 44512) | type UpdateInternetScsiAuthenticationProperties
function init (line 44514) | func init() {
type UpdateInternetScsiAuthenticationPropertiesRequestType (line 44518) | type UpdateInternetScsiAuthenticationPropertiesRequestType struct
function init (line 44525) | func init() {
type UpdateInternetScsiAuthenticationPropertiesResponse (line 44529) | type UpdateInternetScsiAuthenticationPropertiesResponse struct
type UpdateInternetScsiDigestProperties (line 44532) | type UpdateInternetScsiDigestProperties
function init (line 44534) | func init() {
type UpdateInternetScsiDigestPropertiesRequestType (line 44538) | type UpdateInternetScsiDigestPropertiesRequestType struct
function init (line 44545) | func init() {
type UpdateInternetScsiDigestPropertiesResponse (line 44549) | type UpdateInternetScsiDigestPropertiesResponse struct
type UpdateInternetScsiDiscoveryProperties (line 44552) | type UpdateInternetScsiDiscoveryProperties
function init (line 44554) | func init() {
type UpdateInternetScsiDiscoveryPropertiesRequestType (line 44558) | type UpdateInternetScsiDiscoveryPropertiesRequestType struct
function init (line 44564) | func init() {
type UpdateInternetScsiDiscoveryPropertiesResponse (line 44568) | type UpdateInternetScsiDiscoveryPropertiesResponse struct
type UpdateInternetScsiIPProperties (line 44571) | type UpdateInternetScsiIPProperties
function init (line 44573) | func init() {
type UpdateInternetScsiIPPropertiesRequestType (line 44577) | type UpdateInternetScsiIPPropertiesRequestType struct
function init (line 44583) | func init() {
type UpdateInternetScsiIPPropertiesResponse (line 44587) | type UpdateInternetScsiIPPropertiesResponse struct
type UpdateInternetScsiName (line 44590) | type UpdateInternetScsiName
function init (line 44592) | func init() {
type UpdateInternetScsiNameRequestType (line 44596) | type UpdateInternetScsiNameRequestType struct
function init (line 44602) | func init() {
type UpdateInternetScsiNameResponse (line 44606) | type UpdateInternetScsiNameResponse struct
type UpdateIpConfig (line 44609) | type UpdateIpConfig
function init (line 44611) | func init() {
type UpdateIpConfigRequestType (line 44615) | type UpdateIpConfigRequestType struct
function init (line 44620) | func init() {
type UpdateIpConfigResponse (line 44624) | type UpdateIpConfigResponse struct
type UpdateIpPool (line 44627) | type UpdateIpPool
function init (line 44629) | func init() {
type UpdateIpPoolRequestType (line 44633) | type UpdateIpPoolRequestType struct
function init (line 44639) | func init() {
type UpdateIpPoolResponse (line 44643) | type UpdateIpPoolResponse struct
type UpdateIpRouteConfig (line 44646) | type UpdateIpRouteConfig
function init (line 44648) | func init() {
type UpdateIpRouteConfigRequestType (line 44652) | type UpdateIpRouteConfigRequestType struct
function init (line 44657) | func init() {
type UpdateIpRouteConfigResponse (line 44661) | type UpdateIpRouteConfigResponse struct
type UpdateIpRouteTableConfig (line 44664) | type UpdateIpRouteTableConfig
function init (line 44666) | func init() {
type UpdateIpRouteTableConfigRequestType (line 44670) | type UpdateIpRouteTableConfigRequestType struct
function init (line 44675) | func init() {
type UpdateIpRouteTableConfigResponse (line 44679) | type UpdateIpRouteTableConfigResponse struct
type UpdateIpmi (line 44682) | type UpdateIpmi
function init (line 44684) | func init() {
type UpdateIpmiRequestType (line 44688) | type UpdateIpmiRequestType struct
function init (line 44693) | func init() {
type UpdateIpmiResponse (line 44697) | type UpdateIpmiResponse struct
type UpdateKmipServer (line 44700) | type UpdateKmipServer
function init (line 44702) | func init() {
type UpdateKmipServerRequestType (line 44706) | type UpdateKmipServerRequestType struct
function init (line 44711) | func init() {
type UpdateKmipServerResponse (line 44715) | type UpdateKmipServerResponse struct
type UpdateKmsSignedCsrClientCert (line 44718) | type UpdateKmsSignedCsrClientCert
function init (line 44720) | func init() {
type UpdateKmsSignedCsrClientCertRequestType (line 44724) | type UpdateKmsSignedCsrClientCertRequestType struct
function init (line 44730) | func init() {
type UpdateKmsSignedCsrClientCertResponse (line 44734) | type UpdateKmsSignedCsrClientCertResponse struct
type UpdateLicense (line 44737) | type UpdateLicense
function init (line 44739) | func init() {
type UpdateLicenseLabel (line 44743) | type UpdateLicenseLabel
function init (line 44745) | func init() {
type UpdateLicenseLabelRequestType (line 44749) | type UpdateLicenseLabelRequestType struct
function init (line 44756) | func init() {
type UpdateLicenseLabelResponse (line 44760) | type UpdateLicenseLabelResponse struct
type UpdateLicenseRequestType (line 44763) | type UpdateLicenseRequestType struct
function init (line 44769) | func init() {
type UpdateLicenseResponse (line 44773) | type UpdateLicenseResponse struct
type UpdateLinkedChildren (line 44777) | type UpdateLinkedChildren
function init (line 44779) | func init() {
type UpdateLinkedChildrenRequestType (line 44783) | type UpdateLinkedChildrenRequestType struct
function init (line 44789) | func init() {
type UpdateLinkedChildrenResponse (line 44793) | type UpdateLinkedChildrenResponse struct
type UpdateLocalSwapDatastore (line 44796) | type UpdateLocalSwapDatastore
function init (line 44798) | func init() {
type UpdateLocalSwapDatastoreRequestType (line 44802) | type UpdateLocalSwapDatastoreRequestType struct
function init (line 44807) | func init() {
type UpdateLocalSwapDatastoreResponse (line 44811) | type UpdateLocalSwapDatastoreResponse struct
type UpdateLockdownExceptions (line 44814) | type UpdateLockdownExceptions
function init (line 44816) | func init() {
type UpdateLockdownExceptionsRequestType (line 44820) | type UpdateLockdownExceptionsRequestType struct
function init (line 44825) | func init() {
type UpdateLockdownExceptionsResponse (line 44829) | type UpdateLockdownExceptionsResponse struct
type UpdateModuleOptionString (line 44832) | type UpdateModuleOptionString
function init (line 44834) | func init() {
type UpdateModuleOptionStringRequestType (line 44838) | type UpdateModuleOptionStringRequestType struct
function init (line 44844) | func init() {
type UpdateModuleOptionStringResponse (line 44848) | type UpdateModuleOptionStringResponse struct
type UpdateNetworkConfig (line 44851) | type UpdateNetworkConfig
function init (line 44853) | func init() {
type UpdateNetworkConfigRequestType (line 44857) | type UpdateNetworkConfigRequestType struct
function init (line 44863) | func init() {
type UpdateNetworkConfigResponse (line 44867) | type UpdateNetworkConfigResponse struct
type UpdateNetworkResourcePool (line 44871) | type UpdateNetworkResourcePool
function init (line 44873) | func init() {
type UpdateNetworkResourcePoolRequestType (line 44877) | type UpdateNetworkResourcePoolRequestType struct
function init (line 44882) | func init() {
type UpdateNetworkResourcePoolResponse (line 44886) | type UpdateNetworkResourcePoolResponse struct
type UpdateOptions (line 44889) | type UpdateOptions
function init (line 44891) | func init() {
type UpdateOptionsRequestType (line 44895) | type UpdateOptionsRequestType struct
function init (line 44900) | func init() {
type UpdateOptionsResponse (line 44904) | type UpdateOptionsResponse struct
type UpdatePassthruConfig (line 44907) | type UpdatePassthruConfig
function init (line 44909) | func init() {
type UpdatePassthruConfigRequestType (line 44913) | type UpdatePassthruConfigRequestType struct
function init (line 44918) | func init() {
type UpdatePassthruConfigResponse (line 44922) | type UpdatePassthruConfigResponse struct
type UpdatePerfInterval (line 44925) | type UpdatePerfInterval
function init (line 44927) | func init() {
type UpdatePerfIntervalRequestType (line 44931) | type UpdatePerfIntervalRequestType struct
function init (line 44936) | func init() {
type UpdatePerfIntervalResponse (line 44940) | type UpdatePerfIntervalResponse struct
type UpdatePhysicalNicLinkSpeed (line 44943) | type UpdatePhysicalNicLinkSpeed
function init (line 44945) | func init() {
type UpdatePhysicalNicLinkSpeedRequestType (line 44949) | type UpdatePhysicalNicLinkSpeedRequestType struct
function init (line 44955) | func init() {
type UpdatePhysicalNicLinkSpeedResponse (line 44959) | type UpdatePhysicalNicLinkSpeedResponse struct
type UpdatePortGroup (line 44962) | type UpdatePortGroup
function init (line 44964) | func init() {
type UpdatePortGroupRequestType (line 44968) | type UpdatePortGroupRequestType struct
function init (line 44974) | func init() {
type UpdatePortGroupResponse (line 44978) | type UpdatePortGroupResponse struct
type UpdateProgress (line 44981) | type UpdateProgress
function init (line 44983) | func init() {
type UpdateProgressRequestType (line 44987) | type UpdateProgressRequestType struct
function init (line 44992) | func init() {
type UpdateProgressResponse (line 44996) | type UpdateProgressResponse struct
type UpdateReferenceHost (line 44999) | type UpdateReferenceHost
function init (line 45001) | func init() {
type UpdateReferenceHostRequestType (line 45005) | type UpdateReferenceHostRequestType struct
function init (line 45010) | func init() {
type UpdateReferenceHostResponse (line 45014) | type UpdateReferenceHostResponse struct
type UpdateRuleset (line 45017) | type UpdateRuleset
function init (line 45019) | func init() {
type UpdateRulesetRequestType (line 45023) | type UpdateRulesetRequestType struct
function init (line 45029) | func init() {
type UpdateRulesetResponse (line 45033) | type UpdateRulesetResponse struct
type UpdateScsiLunDisplayName (line 45036) | type UpdateScsiLunDisplayName
function init (line 45038) | func init() {
type UpdateScsiLunDisplayNameRequestType (line 45042) | type UpdateScsiLunDisplayNameRequestType struct
function init (line 45048) | func init() {
type UpdateScsiLunDisplayNameResponse (line 45052) | type UpdateScsiLunDisplayNameResponse struct
type UpdateSelfSignedClientCert (line 45055) | type UpdateSelfSignedClientCert
function init (line 45057) | func init() {
type UpdateSelfSignedClientCertRequestType (line 45061) | type UpdateSelfSignedClientCertRequestType struct
function init (line 45067) | func init() {
type UpdateSelfSignedClientCertResponse (line 45071) | type UpdateSelfSignedClientCertResponse struct
type UpdateServiceConsoleVirtualNic (line 45074) | type UpdateServiceConsoleVirtualNic
function init (line 45076) | func init() {
type UpdateServiceConsoleVirtualNicRequestType (line 45080) | type UpdateServiceConsoleVirtualNicRequestType struct
function init (line 45086) | func init() {
type UpdateServiceConsoleVirtualNicResponse (line 45090) | type UpdateServiceConsoleVirtualNicResponse struct
type UpdateServiceMessage (line 45093) | type UpdateServiceMessage
function init (line 45095) | func init() {
type UpdateServiceMessageRequestType (line 45099) | type UpdateServiceMessageRequestType struct
function init (line 45104) | func init() {
type UpdateServiceMessageResponse (line 45108) | type UpdateServiceMessageResponse struct
type UpdateServicePolicy (line 45111) | type UpdateServicePolicy
function init (line 45113) | func init() {
type UpdateServicePolicyRequestType (line 45117) | type UpdateServicePolicyRequestType struct
function init (line 45123) | func init() {
type UpdateServicePolicyResponse (line 45127) | type UpdateServicePolicyResponse struct
type UpdateSet (line 45130) | type UpdateSet struct
function init (line 45138) | func init() {
type UpdateSoftwareInternetScsiEnabled (line 45142) | type UpdateSoftwareInternetScsiEnabled
function init (line 45144) | func init() {
type UpdateSoftwareInternetScsiEnabledRequestType (line 45148) | type UpdateSoftwareInternetScsiEnabledRequestType struct
function init (line 45153) | func init() {
type UpdateSoftwareInternetScsiEnabledResponse (line 45157) | type UpdateSoftwareInternetScsiEnabledResponse struct
type UpdateSystemResources (line 45160) | type UpdateSystemResources
function init (line 45162) | func init() {
type UpdateSystemResourcesRequestType (line 45166) | type UpdateSystemResourcesRequestType struct
function init (line 45171) | func init() {
type UpdateSystemResourcesResponse (line 45175) | type UpdateSystemResourcesResponse struct
type UpdateSystemSwapConfiguration (line 45178) | type UpdateSystemSwapConfiguration
function init (line 45180) | func init() {
type UpdateSystemSwapConfigurationRequestType (line 45184) | type UpdateSystemSwapConfigurationRequestType struct
function init (line 45189) | func init() {
type UpdateSystemSwapConfigurationResponse (line 45193) | type UpdateSystemSwapConfigurationResponse struct
type UpdateSystemUsers (line 45196) | type UpdateSystemUsers
function init (line 45198) | func init() {
type UpdateSystemUsersRequestType (line 45202) | type UpdateSystemUsersRequestType struct
function init (line 45207) | func init() {
type UpdateSystemUsersResponse (line 45211) | type UpdateSystemUsersResponse struct
type UpdateUser (line 45214) | type UpdateUser
function init (line 45216) | func init() {
type UpdateUserRequestType (line 45220) | type UpdateUserRequestType struct
function init (line 45225) | func init() {
type UpdateUserResponse (line 45229) | type UpdateUserResponse struct
type UpdateVAppConfig (line 45232) | type UpdateVAppConfig
function init (line 45234) | func init() {
type UpdateVAppConfigRequestType (line 45238) | type UpdateVAppConfigRequestType struct
function init (line 45243) | func init() {
type UpdateVAppConfigResponse (line 45247) | type UpdateVAppConfigResponse struct
type UpdateVVolVirtualMachineFilesRequestType (line 45250) | type UpdateVVolVirtualMachineFilesRequestType struct
function init (line 45255) | func init() {
type UpdateVVolVirtualMachineFiles_Task (line 45259) | type UpdateVVolVirtualMachineFiles_Task
function init (line 45261) | func init() {
type UpdateVVolVirtualMachineFiles_TaskResponse (line 45265) | type UpdateVVolVirtualMachineFiles_TaskResponse struct
type UpdateVirtualMachineFilesRequestType (line 45269) | type UpdateVirtualMachineFilesRequestType struct
function init (line 45274) | func init() {
type UpdateVirtualMachineFilesResult (line 45278) | type UpdateVirtualMachineFilesResult struct
function init (line 45284) | func init() {
type UpdateVirtualMachineFilesResultFailedVmFileInfo (line 45288) | type UpdateVirtualMachineFilesResultFailedVmFileInfo struct
function init (line 45295) | func init() {
type UpdateVirtualMachineFiles_Task (line 45299) | type UpdateVirtualMachineFiles_Task
function init (line 45301) | func init() {
type UpdateVirtualMachineFiles_TaskResponse (line 45305) | type UpdateVirtualMachineFiles_TaskResponse struct
type UpdateVirtualNic (line 45309) | type UpdateVirtualNic
function init (line 45311) | func init() {
type UpdateVirtualNicRequestType (line 45315) | type UpdateVirtualNicRequestType struct
function init (line 45321) | func init() {
type UpdateVirtualNicResponse (line 45325) | type UpdateVirtualNicResponse struct
type UpdateVirtualSwitch (line 45328) | type UpdateVirtualSwitch
function init (line 45330) | func init() {
type UpdateVirtualSwitchRequestType (line 45334) | type UpdateVirtualSwitchRequestType struct
function init (line 45340) | func init() {
type UpdateVirtualSwitchResponse (line 45344) | type UpdateVirtualSwitchResponse struct
type UpdateVmfsUnmapPriority (line 45347) | type UpdateVmfsUnmapPriority
function init (line 45349) | func init() {
type UpdateVmfsUnmapPriorityRequestType (line 45353) | type UpdateVmfsUnmapPriorityRequestType struct
function init (line 45359) | func init() {
type UpdateVmfsUnmapPriorityResponse (line 45363) | type UpdateVmfsUnmapPriorityResponse struct
type UpdateVsanRequestType (line 45366) | type UpdateVsanRequestType struct
function init (line 45371) | func init() {
type UpdateVsan_Task (line 45375) | type UpdateVsan_Task
function init (line 45377) | func init() {
type UpdateVsan_TaskResponse (line 45381) | type UpdateVsan_TaskResponse struct
type UpdatedAgentBeingRestartedEvent (line 45385) | type UpdatedAgentBeingRestartedEvent struct
function init (line 45389) | func init() {
type UpgradeEvent (line 45393) | type UpgradeEvent struct
function init (line 45399) | func init() {
type UpgradeIoFilterRequestType (line 45403) | type UpgradeIoFilterRequestType struct
function init (line 45410) | func init() {
type UpgradeIoFilter_Task (line 45414) | type UpgradeIoFilter_Task
function init (line 45416) | func init() {
type UpgradeIoFilter_TaskResponse (line 45420) | type UpgradeIoFilter_TaskResponse struct
type UpgradeToolsRequestType (line 45424) | type UpgradeToolsRequestType struct
function init (line 45429) | func init() {
type UpgradeTools_Task (line 45433) | type UpgradeTools_Task
function init (line 45435) | func init() {
type UpgradeTools_TaskResponse (line 45439) | type UpgradeTools_TaskResponse struct
type UpgradeVMRequestType (line 45443) | type UpgradeVMRequestType struct
function init (line 45448) | func init() {
type UpgradeVM_Task (line 45452) | type UpgradeVM_Task
function init (line 45454) | func init() {
type UpgradeVM_TaskResponse (line 45458) | type UpgradeVM_TaskResponse struct
type UpgradeVmLayout (line 45462) | type UpgradeVmLayout
function init (line 45464) | func init() {
type UpgradeVmLayoutRequestType (line 45468) | type UpgradeVmLayoutRequestType struct
function init (line 45472) | func init() {
type UpgradeVmLayoutResponse (line 45476) | type UpgradeVmLayoutResponse struct
type UpgradeVmfs (line 45479) | type UpgradeVmfs
function init (line 45481) | func init() {
type UpgradeVmfsRequestType (line 45485) | type UpgradeVmfsRequestType struct
function init (line 45490) | func init() {
type UpgradeVmfsResponse (line 45494) | type UpgradeVmfsResponse struct
type UpgradeVsanObjects (line 45497) | type UpgradeVsanObjects
function init (line 45499) | func init() {
type UpgradeVsanObjectsRequestType (line 45503) | type UpgradeVsanObjectsRequestType struct
function init (line 45509) | func init() {
type UpgradeVsanObjectsResponse (line 45513) | type UpgradeVsanObjectsResponse struct
type UplinkPortMtuNotSupportEvent (line 45517) | type UplinkPortMtuNotSupportEvent struct
function init (line 45521) | func init() {
type UplinkPortMtuSupportEvent (line 45525) | type UplinkPortMtuSupportEvent struct
function init (line 45529) | func init() {
type UplinkPortVlanTrunkedEvent (line 45533) | type UplinkPortVlanTrunkedEvent struct
function init (line 45537) | func init() {
type UplinkPortVlanUntrunkedEvent (line 45541) | type UplinkPortVlanUntrunkedEvent struct
function init (line 45545) | func init() {
type UploadClientCert (line 45549) | type UploadClientCert
function init (line 45551) | func init() {
type UploadClientCertRequestType (line 45555) | type UploadClientCertRequestType struct
function init (line 45562) | func init() {
type UploadClientCertResponse (line 45566) | type UploadClientCertResponse struct
type UploadKmipServerCert (line 45569) | type UploadKmipServerCert
function init (line 45571) | func init() {
type UploadKmipServerCertRequestType (line 45575) | type UploadKmipServerCertRequestType struct
function init (line 45581) | func init() {
type UploadKmipServerCertResponse (line 45585) | type UploadKmipServerCertResponse struct
type UsbScanCodeSpec (line 45588) | type UsbScanCodeSpec struct
function init (line 45594) | func init() {
type UsbScanCodeSpecKeyEvent (line 45598) | type UsbScanCodeSpecKeyEvent struct
function init (line 45605) | func init() {
type UsbScanCodeSpecModifierType (line 45609) | type UsbScanCodeSpecModifierType struct
function init (line 45622) | func init() {
type UserAssignedToGroup (line 45626) | type UserAssignedToGroup struct
function init (line 45633) | func init() {
type UserGroupProfile (line 45637) | type UserGroupProfile struct
function init (line 45643) | func init() {
type UserInputRequiredParameterMetadata (line 45647) | type UserInputRequiredParameterMetadata struct
function init (line 45653) | func init() {
type UserLoginSessionEvent (line 45657) | type UserLoginSessionEvent struct
function init (line 45666) | func init() {
type UserLogoutSessionEvent (line 45670) | type UserLogoutSessionEvent struct
function init (line 45680) | func init() {
type UserNotFound (line 45684) | type UserNotFound struct
function init (line 45691) | func init() {
type UserNotFoundFault (line 45695) | type UserNotFoundFault
function init (line 45697) | func init() {
type UserPasswordChanged (line 45701) | type UserPasswordChanged struct
function init (line 45707) | func init() {
type UserPrivilegeResult (line 45711) | type UserPrivilegeResult struct
function init (line 45718) | func init() {
type UserProfile (line 45722) | type UserProfile struct
function init (line 45728) | func init() {
type UserSearchResult (line 45732) | type UserSearchResult struct
function init (line 45740) | func init() {
type UserSession (line 45744) | type UserSession struct
function init (line 45760) | func init() {
type UserUnassignedFromGroup (line 45764) | type UserUnassignedFromGroup struct
function init (line 45771) | func init() {
type UserUpgradeEvent (line 45775) | type UserUpgradeEvent struct
function init (line 45779) | func init() {
type VASAStorageArray (line 45783) | type VASAStorageArray struct
function init (line 45792) | func init() {
type VAppCloneSpec (line 45796) | type VAppCloneSpec struct
function init (line 45809) | func init() {
type VAppCloneSpecNetworkMappingPair (line 45813) | type VAppCloneSpecNetworkMappingPair struct
function init (line 45820) | func init() {
type VAppCloneSpecResourceMap (line 45824) | type VAppCloneSpecResourceMap struct
function init (line 45833) | func init() {
type VAppConfigFault (line 45837) | type VAppConfigFault struct
function init (line 45841) | func init() {
type VAppConfigFaultFault (line 45845) | type VAppConfigFaultFault
function init (line 45847) | func init() {
type VAppConfigInfo (line 45851) | type VAppConfigInfo struct
function init (line 45860) | func init() {
type VAppConfigSpec (line 45864) | type VAppConfigSpec struct
function init (line 45873) | func init() {
type VAppEntityConfigInfo (line 45877) | type VAppEntityConfigInfo struct
function init (line 45891) | func init() {
type VAppIPAssignmentInfo (line 45895) | type VAppIPAssignmentInfo struct
function init (line 45904) | func init() {
type VAppNotRunning (line 45908) | type VAppNotRunning struct
function init (line 45912) | func init() {
type VAppNotRunningFault (line 45916) | type VAppNotRunningFault
function init (line 45918) | func init() {
type VAppOperationInProgress (line 45922) | type VAppOperationInProgress struct
function init (line 45926) | func init() {
type VAppOperationInProgressFault (line 45930) | type VAppOperationInProgressFault
function init (line 45932) | func init() {
type VAppOvfSectionInfo (line 45936) | type VAppOvfSectionInfo struct
function init (line 45946) | func init() {
type VAppOvfSectionSpec (line 45950) | type VAppOvfSectionSpec struct
function init (line 45956) | func init() {
type VAppProductInfo (line 45960) | type VAppProductInfo struct
function init (line 45975) | func init() {
type VAppProductSpec (line 45979) | type VAppProductSpec struct
function init (line 45985) | func init() {
type VAppPropertyFault (line 45989) | type VAppPropertyFault struct
function init (line 45999) | func init() {
type VAppPropertyFaultFault (line 46003) | type VAppPropertyFaultFault
function init (line 46005) | func init() {
type VAppPropertyInfo (line 46009) | type VAppPropertyInfo struct
function init (line 46026) | func init() {
type VAppPropertySpec (line 46030) | type VAppPropertySpec struct
function init (line 46036) | func init() {
type VAppTaskInProgress (line 46040) | type VAppTaskInProgress struct
function init (line 46044) | func init() {
type VAppTaskInProgressFault (line 46048) | type VAppTaskInProgressFault
function init (line 46050) | func init() {
type VFlashCacheHotConfigNotSupported (line 46054) | type VFlashCacheHotConfigNotSupported struct
function init (line 46058) | func init() {
type VFlashCacheHotConfigNotSupportedFault (line 46062) | type VFlashCacheHotConfigNotSupportedFault
function init (line 46064) | func init() {
type VFlashModuleNotSupported (line 46068) | type VFlashModuleNotSupported struct
function init (line 46077) | func init() {
type VFlashModuleNotSupportedFault (line 46081) | type VFlashModuleNotSupportedFault
function init (line 46083) | func init() {
type VFlashModuleVersionIncompatible (line 46087) | type VFlashModuleVersionIncompatible struct
function init (line 46096) | func init() {
type VFlashModuleVersionIncompatibleFault (line 46100) | type VFlashModuleVersionIncompatibleFault
function init (line 46102) | func init() {
type VMFSDatastoreCreatedEvent (line 46106) | type VMFSDatastoreCreatedEvent struct
function init (line 46113) | func init() {
type VMFSDatastoreExpandedEvent (line 46117) | type VMFSDatastoreExpandedEvent struct
function init (line 46123) | func init() {
type VMFSDatastoreExtendedEvent (line 46127) | type VMFSDatastoreExtendedEvent struct
function init (line 46133) | func init() {
type VMINotSupported (line 46137) | type VMINotSupported struct
function init (line 46141) | func init() {
type VMINotSupportedFault (line 46145) | type VMINotSupportedFault
function init (line 46147) | func init() {
type VMOnConflictDVPort (line 46151) | type VMOnConflictDVPort struct
function init (line 46155) | func init() {
type VMOnConflictDVPortFault (line 46159) | type VMOnConflictDVPortFault
function init (line 46161) | func init() {
type VMOnVirtualIntranet (line 46165) | type VMOnVirtualIntranet struct
function init (line 46169) | func init() {
type VMOnVirtualIntranetFault (line 46173) | type VMOnVirtualIntranetFault
function init (line 46175) | func init() {
type VMotionAcrossNetworkNotSupported (line 46179) | type VMotionAcrossNetworkNotSupported struct
function init (line 46183) | func init() {
type VMotionAcrossNetworkNotSupportedFault (line 46187) | type VMotionAcrossNetworkNotSupportedFault
function init (line 46189) | func init() {
type VMotionInterfaceIssue (line 46193) | type VMotionInterfaceIssue struct
function init (line 46201) | func init() {
type VMotionInterfaceIssueFault (line 46205) | type VMotionInterfaceIssueFault
function init (line 46207) | func init() {
type VMotionLicenseExpiredEvent (line 46211) | type VMotionLicenseExpiredEvent struct
function init (line 46215) | func init() {
type VMotionLinkCapacityLow (line 46219) | type VMotionLinkCapacityLow struct
function init (line 46225) | func init() {
type VMotionLinkCapacityLowFault (line 46229) | type VMotionLinkCapacityLowFault
function init (line 46231) | func init() {
type VMotionLinkDown (line 46235) | type VMotionLinkDown struct
function init (line 46241) | func init() {
type VMotionLinkDownFault (line 46245) | type VMotionLinkDownFault
function init (line 46247) | func init() {
type VMotionNotConfigured (line 46251) | type VMotionNotConfigured struct
function init (line 46255) | func init() {
type VMotionNotConfiguredFault (line 46259) | type VMotionNotConfiguredFault
function init (line 46261) | func init() {
type VMotionNotLicensed (line 46265) | type VMotionNotLicensed struct
function init (line 46269) | func init() {
type VMotionNotLicensedFault (line 46273) | type VMotionNotLicensedFault
function init (line 46275) | func init() {
type VMotionNotSupported (line 46279) | type VMotionNotSupported struct
function init (line 46283) | func init() {
type VMotionNotSupportedFault (line 46287) | type VMotionNotSupportedFault
function init (line 46289) | func init() {
type VMotionProtocolIncompatible (line 46293) | type VMotionProtocolIncompatible struct
function init (line 46297) | func init() {
type VMotionProtocolIncompatibleFault (line 46301) | type VMotionProtocolIncompatibleFault
function init (line 46303) | func init() {
type VMwareDVSConfigInfo (line 46307) | type VMwareDVSConfigInfo struct
function init (line 46320) | func init() {
type VMwareDVSConfigSpec (line 46324) | type VMwareDVSConfigSpec struct
function init (line 46336) | func init() {
type VMwareDVSFeatureCapability (line 46340) | type VMwareDVSFeatureCapability struct
function init (line 46352) | func init() {
type VMwareDVSHealthCheckCapability (line 46356) | type VMwareDVSHealthCheckCapability struct
function init (line 46363) | func init() {
type VMwareDVSHealthCheckConfig (line 46367) | type VMwareDVSHealthCheckConfig struct
function init (line 46371) | func init() {
type VMwareDVSMtuHealthCheckResult (line 46375) | type VMwareDVSMtuHealthCheckResult struct
function init (line 46383) | func init() {
type VMwareDVSPortSetting (line 46387) | type VMwareDVSPortSetting struct
function init (line 46399) | func init() {
type VMwareDVSPortgroupPolicy (line 46403) | type VMwareDVSPortgroupPolicy struct
function init (line 46412) | func init() {
type VMwareDVSPvlanConfigSpec (line 46416) | type VMwareDVSPvlanConfigSpec struct
function init (line 46423) | func init() {
type VMwareDVSPvlanMapEntry (line 46427) | type VMwareDVSPvlanMapEntry struct
function init (line 46435) | func init() {
type VMwareDVSTeamingHealthCheckConfig (line 46439) | type VMwareDVSTeamingHealthCheckConfig struct
function init (line 46443) | func init() {
type VMwareDVSTeamingHealthCheckResult (line 46447) | type VMwareDVSTeamingHealthCheckResult struct
function init (line 46453) | func init() {
type VMwareDVSVlanHealthCheckResult (line 46457) | type VMwareDVSVlanHealthCheckResult struct
function init (line 46464) | func init() {
type VMwareDVSVlanMtuHealthCheckConfig (line 46468) | type VMwareDVSVlanMtuHealthCheckConfig struct
function init (line 46472) | func init() {
type VMwareDVSVspanCapability (line 46476) | type VMwareDVSVspanCapability struct
function init (line 46487) | func init() {
type VMwareDVSVspanConfigSpec (line 46491) | type VMwareDVSVspanConfigSpec struct
function init (line 46498) | func init() {
type VMwareDvsIpfixCapability (line 46502) | type VMwareDvsIpfixCapability struct
function init (line 46510) | func init() {
type VMwareDvsLacpCapability (line 46514) | type VMwareDvsLacpCapability struct
function init (line 46521) | func init() {
type VMwareDvsLacpGroupConfig (line 46525) | type VMwareDvsLacpGroupConfig struct
function init (line 46539) | func init() {
type VMwareDvsLacpGroupSpec (line 46543) | type VMwareDvsLacpGroupSpec struct
function init (line 46550) | func init() {
type VMwareDvsLagIpfixConfig (line 46554) | type VMwareDvsLagIpfixConfig struct
function init (line 46560) | func init() {
type VMwareDvsLagVlanConfig (line 46564) | type VMwareDvsLagVlanConfig struct
function init (line 46570) | func init() {
type VMwareIpfixConfig (line 46574) | type VMwareIpfixConfig struct
function init (line 46586) | func init() {
type VMwareUplinkLacpPolicy (line 46590) | type VMwareUplinkLacpPolicy struct
function init (line 46597) | func init() {
type VMwareUplinkPortOrderPolicy (line 46601) | type VMwareUplinkPortOrderPolicy struct
function init (line 46608) | func init() {
type VMwareVspanPort (line 46612) | type VMwareVspanPort struct
function init (line 46622) | func init() {
type VMwareVspanSession (line 46626) | type VMwareVspanSession struct
function init (line 46648) | func init() {
type VRPEditSpec (line 46652) | type VRPEditSpec struct
function init (line 46664) | func init() {
type VStorageObject (line 46668) | type VStorageObject struct
function init (line 46674) | func init() {
type VStorageObjectConfigInfo (line 46678) | type VStorageObjectConfigInfo struct
function init (line 46686) | func init() {
type VStorageObjectStateInfo (line 46690) | type VStorageObjectStateInfo struct
function init (line 46696) | func init() {
type VVolHostPE (line 46700) | type VVolHostPE struct
function init (line 46707) | func init() {
type VVolVmConfigFileUpdateResult (line 46711) | type VVolVmConfigFileUpdateResult struct
function init (line 46718) | func init() {
type VVolVmConfigFileUpdateResultFailedVmConfigFileInfo (line 46722) | type VVolVmConfigFileUpdateResultFailedVmConfigFileInfo struct
function init (line 46729) | func init() {
type ValidateCredentialsInGuest (line 46733) | type ValidateCredentialsInGuest
function init (line 46735) | func init() {
type ValidateCredentialsInGuestRequestType (line 46739) | type ValidateCredentialsInGuestRequestType struct
function init (line 46745) | func init() {
type ValidateCredentialsInGuestResponse (line 46749) | type ValidateCredentialsInGuestResponse struct
type ValidateHost (line 46752) | type ValidateHost
function init (line 46754) | func init() {
type ValidateHostRequestType (line 46758) | type ValidateHostRequestType struct
function init (line 46765) | func init() {
type ValidateHostResponse (line 46769) | type ValidateHostResponse struct
type ValidateMigration (line 46773) | type ValidateMigration
function init (line 46775) | func init() {
type ValidateMigrationRequestType (line 46779) | type ValidateMigrationRequestType struct
function init (line 46788) | func init() {
type ValidateMigrationResponse (line 46792) | type ValidateMigrationResponse struct
type VasaProviderContainerSpec (line 46796) | type VasaProviderContainerSpec struct
function init (line 46804) | func init() {
type VcAgentUninstallFailedEvent (line 46808) | type VcAgentUninstallFailedEvent struct
function init (line 46814) | func init() {
type VcAgentUninstalledEvent (line 46818) | type VcAgentUninstalledEvent struct
function init (line 46822) | func init() {
type VcAgentUpgradeFailedEvent (line 46826) | type VcAgentUpgradeFailedEvent struct
function init (line 46832) | func init() {
type VcAgentUpgradedEvent (line 46836) | type VcAgentUpgradedEvent struct
function init (line 46840) | func init() {
type VchaClusterConfigInfo (line 46844) | type VchaClusterConfigInfo struct
function init (line 46853) | func init() {
type VchaClusterConfigSpec (line 46857) | type VchaClusterConfigSpec struct
function init (line 46864) | func init() {
type VchaClusterDeploymentSpec (line 46868) | type VchaClusterDeploymentSpec struct
function init (line 46877) | func init() {
type VchaClusterHealth (line 46881) | type VchaClusterHealth struct
function init (line 46889) | func init() {
type VchaClusterNetworkSpec (line 46893) | type VchaClusterNetworkSpec struct
function init (line 46900) | func init() {
type VchaClusterRuntimeInfo (line 46904) | type VchaClusterRuntimeInfo struct
function init (line 46912) | func init() {
type VchaNodeRuntimeInfo (line 46916) | type VchaNodeRuntimeInfo struct
function init (line 46924) | func init() {
type VimAccountPasswordChangedEvent (line 46928) | type VimAccountPasswordChangedEvent struct
function init (line 46932) | func init() {
type VimFault (line 46936) | type VimFault struct
function init (line 46940) | func init() {
type VimFaultFault (line 46944) | type VimFaultFault
function init (line 46946) | func init() {
type VimVasaProvider (line 46950) | type VimVasaProvider struct
function init (line 46958) | func init() {
type VimVasaProviderInfo (line 46962) | type VimVasaProviderInfo struct
function init (line 46969) | func init() {
type VimVasaProviderStatePerArray (line 46973) | type VimVasaProviderStatePerArray struct
function init (line 46981) | func init() {
type VirtualAHCIController (line 46985) | type VirtualAHCIController struct
function init (line 46989) | func init() {
type VirtualAHCIControllerOption (line 46993) | type VirtualAHCIControllerOption struct
function init (line 46997) | func init() {
type VirtualAppImportSpec (line 47001) | type VirtualAppImportSpec struct
function init (line 47010) | func init() {
type VirtualAppLinkInfo (line 47014) | type VirtualAppLinkInfo struct
function init (line 47021) | func init() {
type VirtualAppSummary (line 47025) | type VirtualAppSummary struct
function init (line 47035) | func init() {
type VirtualBusLogicController (line 47039) | type VirtualBusLogicController struct
function init (line 47043) | func init() {
type VirtualBusLogicControllerOption (line 47047) | type VirtualBusLogicControllerOption struct
function init (line 47051) | func init() {
type VirtualCdrom (line 47055) | type VirtualCdrom struct
function init (line 47059) | func init() {
type VirtualCdromAtapiBackingInfo (line 47063) | type VirtualCdromAtapiBackingInfo struct
function init (line 47067) | func init() {
type VirtualCdromAtapiBackingOption (line 47071) | type VirtualCdromAtapiBackingOption struct
function init (line 47075) | func init() {
type VirtualCdromIsoBackingInfo (line 47079) | type VirtualCdromIsoBackingInfo struct
function init (line 47083) | func init() {
type VirtualCdromIsoBackingOption (line 47087) | type VirtualCdromIsoBackingOption struct
function init (line 47091) | func init() {
type VirtualCdromOption (line 47095) | type VirtualCdromOption struct
function init (line 47099) | func init() {
type VirtualCdromPassthroughBackingInfo (line 47103) | type VirtualCdromPassthroughBackingInfo struct
function init (line 47109) | func init() {
type VirtualCdromPassthroughBackingOption (line 47113) | type VirtualCdromPassthroughBackingOption struct
function init (line 47119) | func init() {
type VirtualCdromRemoteAtapiBackingInfo (line 47123) | type VirtualCdromRemoteAtapiBackingInfo struct
function init (line 47127) | func init() {
type VirtualCdromRemoteAtapiBackingOption (line 47131) | type VirtualCdromRemoteAtapiBackingOption struct
function init (line 47135) | func init() {
type VirtualCdromRemotePassthroughBackingInfo (line 47139) | type VirtualCdromRemotePassthroughBackingInfo struct
function init (line 47145) | func init() {
type VirtualCdromRemotePassthroughBackingOption (line 47149) | type VirtualCdromRemotePassthroughBackingOption struct
function init (line 47155) | func init() {
type VirtualController (line 47159) | type VirtualController struct
function init (line 47166) | func init() {
type VirtualControllerOption (line 47170) | type VirtualControllerOption struct
function init (line 47177) | func init() {
type VirtualDevice (line 47181) | type VirtualDevice struct
function init (line 47193) | func init() {
type VirtualDeviceBackingInfo (line 47197) | type VirtualDeviceBackingInfo struct
function init (line 47201) | func init() {
type VirtualDeviceBackingOption (line 47205) | type VirtualDeviceBackingOption struct
function init (line 47211) | func init() {
type VirtualDeviceBusSlotInfo (line 47215) | type VirtualDeviceBusSlotInfo struct
function init (line 47219) | func init() {
type VirtualDeviceBusSlotOption (line 47223) | type VirtualDeviceBusSlotOption struct
function init (line 47229) | func init() {
type VirtualDeviceConfigSpec (line 47233) | type VirtualDeviceConfigSpec struct
function init (line 47243) | func init() {
type VirtualDeviceConfigSpecBackingSpec (line 47247) | type VirtualDeviceConfigSpecBackingSpec struct
function init (line 47254) | func init() {
type VirtualDeviceConnectInfo (line 47258) | type VirtualDeviceConnectInfo struct
function init (line 47267) | func init() {
type VirtualDeviceConnectOption (line 47271) | type VirtualDeviceConnectOption struct
function init (line 47278) | func init() {
type VirtualDeviceDeviceBackingInfo (line 47282) | type VirtualDeviceDeviceBackingInfo struct
function init (line 47289) | func init() {
type VirtualDeviceDeviceBackingOption (line 47293) | type VirtualDeviceDeviceBackingOption struct
function init (line 47299) | func init() {
type VirtualDeviceFileBackingInfo (line 47303) | type VirtualDeviceFileBackingInfo struct
function init (line 47311) | func init() {
type VirtualDeviceFileBackingOption (line 47315) | type VirtualDeviceFileBackingOption struct
function init (line 47321) | func init() {
type VirtualDeviceOption (line 47325) | type VirtualDeviceOption struct
function init (line 47341) | func init() {
type VirtualDevicePciBusSlotInfo (line 47345) | type VirtualDevicePciBusSlotInfo struct
function init (line 47351) | func init() {
type VirtualDevicePipeBackingInfo (line 47355) | type VirtualDevicePipeBackingInfo struct
function init (line 47361) | func init() {
type VirtualDevicePipeBackingOption (line 47365) | type VirtualDevicePipeBackingOption struct
function init (line 47369) | func init() {
type VirtualDeviceRemoteDeviceBackingInfo (line 47373) | type VirtualDeviceRemoteDeviceBackingInfo struct
function init (line 47380) | func init() {
type VirtualDeviceRemoteDeviceBackingOption (line 47384) | type VirtualDeviceRemoteDeviceBackingOption struct
function init (line 47390) | func init() {
type VirtualDeviceURIBackingInfo (line 47394) | type VirtualDeviceURIBackingInfo struct
function init (line 47402) | func init() {
type VirtualDeviceURIBackingOption (line 47406) | type VirtualDeviceURIBackingOption struct
function init (line 47412) | func init() {
type VirtualDisk (line 47416) | type VirtualDisk struct
function init (line 47429) | func init() {
type VirtualDiskAntiAffinityRuleSpec (line 47433) | type VirtualDiskAntiAffinityRuleSpec struct
function init (line 47439) | func init() {
type VirtualDiskBlocksNotFullyProvisioned (line 47443) | type VirtualDiskBlocksNotFullyProvisioned struct
function init (line 47447) | func init() {
type VirtualDiskBlocksNotFullyProvisionedFault (line 47451) | type VirtualDiskBlocksNotFullyProvisionedFault
function init (line 47453) | func init() {
type VirtualDiskConfigSpec (line 47457) | type VirtualDiskConfigSpec struct
function init (line 47464) | func init() {
type VirtualDiskDeltaDiskFormatsSupported (line 47468) | type VirtualDiskDeltaDiskFormatsSupported struct
function init (line 47475) | func init() {
type VirtualDiskFlatVer1BackingInfo (line 47479) | type VirtualDiskFlatVer1BackingInfo struct
function init (line 47489) | func init() {
type VirtualDiskFlatVer1BackingOption (line 47493) | type VirtualDiskFlatVer1BackingOption struct
function init (line 47502) | func init() {
type VirtualDiskFlatVer2BackingInfo (line 47506) | type VirtualDiskFlatVer2BackingInfo struct
function init (line 47526) | func init() {
type VirtualDiskFlatVer2BackingOption (line 47530) | type VirtualDiskFlatVer2BackingOption struct
function init (line 47545) | func init() {
type VirtualDiskId (line 47549) | type VirtualDiskId struct
function init (line 47556) | func init() {
type VirtualDiskModeNotSupported (line 47560) | type VirtualDiskModeNotSupported struct
function init (line 47566) | func init() {
type VirtualDiskModeNotSupportedFault (line 47570) | type VirtualDiskModeNotSupportedFault
function init (line 47572) | func init() {
type VirtualDiskOption (line 47576) | type VirtualDiskOption struct
function init (line 47584) | func init() {
type VirtualDiskOptionVFlashCacheConfigOption (line 47588) | type VirtualDiskOptionVFlashCacheConfigOption struct
function init (line 47597) | func init() {
type VirtualDiskPartitionedRawDiskVer2BackingInfo (line 47601) | type VirtualDiskPartitionedRawDiskVer2BackingInfo struct
function init (line 47607) | func init() {
type VirtualDiskPartitionedRawDiskVer2BackingOption (line 47611) | type VirtualDiskPartitionedRawDiskVer2BackingOption struct
function init (line 47615) | func init() {
type VirtualDiskRawDiskMappingVer1BackingInfo (line 47619) | type VirtualDiskRawDiskMappingVer1BackingInfo struct
function init (line 47633) | func init() {
type VirtualDiskRawDiskMappingVer1BackingOption (line 47637) | type VirtualDiskRawDiskMappingVer1BackingOption struct
function init (line 47646) | func init() {
type VirtualDiskRawDiskVer2BackingInfo (line 47650) | type VirtualDiskRawDiskVer2BackingInfo struct
function init (line 47659) | func init() {
type VirtualDiskRawDiskVer2BackingOption (line 47663) | type VirtualDiskRawDiskVer2BackingOption struct
function init (line 47670) | func init() {
type VirtualDiskSeSparseBackingInfo (line 47674) | type VirtualDiskSeSparseBackingInfo struct
function init (line 47689) | func init() {
type VirtualDiskSeSparseBackingOption (line 47693) | type VirtualDiskSeSparseBackingOption struct
function init (line 47704) | func init() {
type VirtualDiskSparseVer1BackingInfo (line 47708) | type VirtualDiskSparseVer1BackingInfo struct
function init (line 47719) | func init() {
type VirtualDiskSparseVer1BackingOption (line 47723) | type VirtualDiskSparseVer1BackingOption struct
function init (line 47732) | func init() {
type VirtualDiskSparseVer2BackingInfo (line 47736) | type VirtualDiskSparseVer2BackingInfo struct
function init (line 47750) | func init() {
type VirtualDiskSparseVer2BackingOption (line 47754) | type VirtualDiskSparseVer2BackingOption struct
function init (line 47765) | func init() {
type VirtualDiskSpec (line 47769) | type VirtualDiskSpec struct
function init (line 47776) | func init() {
type VirtualDiskVFlashCacheConfigInfo (line 47780) | type VirtualDiskVFlashCacheConfigInfo struct
function init (line 47790) | func init() {
type VirtualE1000 (line 47794) | type VirtualE1000 struct
function init (line 47798) | func init() {
type VirtualE1000Option (line 47802) | type VirtualE1000Option struct
function init (line 47806) | func init() {
type VirtualE1000e (line 47810) | type VirtualE1000e struct
function init (line 47814) | func init() {
type VirtualE1000eOption (line 47818) | type VirtualE1000eOption struct
function init (line 47822) | func init() {
type VirtualEnsoniq1371 (line 47826) | type VirtualEnsoniq1371 struct
function init (line 47830) | func init() {
type VirtualEnsoniq1371Option (line 47834) | type VirtualEnsoniq1371Option struct
function init (line 47838) | func init() {
type VirtualEthernetCard (line 47842) | type VirtualEthernetCard struct
function init (line 47853) | func init() {
type VirtualEthernetCardDVPortBackingOption (line 47857) | type VirtualEthernetCardDVPortBackingOption struct
function init (line 47861) | func init() {
type VirtualEthernetCardDistributedVirtualPortBackingInfo (line 47865) | type VirtualEthernetCardDistributedVirtualPortBackingInfo struct
function init (line 47871) | func init() {
type VirtualEthernetCardLegacyNetworkBackingInfo (line 47875) | type VirtualEthernetCardLegacyNetworkBackingInfo struct
function init (line 47879) | func init() {
type VirtualEthernetCardLegacyNetworkBackingOption (line 47883) | type VirtualEthernetCardLegacyNetworkBackingOption struct
function init (line 47887) | func init() {
type VirtualEthernetCardNetworkBackingInfo (line 47891) | type VirtualEthernetCardNetworkBackingInfo struct
function init (line 47898) | func init() {
type VirtualEthernetCardNetworkBackingOption (line 47902) | type VirtualEthernetCardNetworkBackingOption struct
function init (line 47906) | func init() {
type VirtualEthernetCardNotSupported (line 47910) | type VirtualEthernetCardNotSupported struct
function init (line 47914) | func init() {
type VirtualEthernetCardNotSupportedFault (line 47918) | type VirtualEthernetCardNotSupportedFault
function init (line 47920) | func init() {
type VirtualEthernetCardOpaqueNetworkBackingInfo (line 47924) | type VirtualEthernetCardOpaqueNetworkBackingInfo struct
function init (line 47931) | func init() {
type VirtualEthernetCardOpaqueNetworkBackingOption (line 47935) | type VirtualEthernetCardOpaqueNetworkBackingOption struct
function init (line 47939) | func init() {
type VirtualEthernetCardOption (line 47943) | type VirtualEthernetCardOption struct
function init (line 47953) | func init() {
type VirtualEthernetCardResourceAllocation (line 47957) | type VirtualEthernetCardResourceAllocation struct
function init (line 47965) | func init() {
type VirtualFloppy (line 47969) | type VirtualFloppy struct
function init (line 47973) | func init() {
type VirtualFloppyDeviceBackingInfo (line 47977) | type VirtualFloppyDeviceBackingInfo struct
function init (line 47981) | func init() {
type VirtualFloppyDeviceBackingOption (line 47985) | type VirtualFloppyDeviceBackingOption struct
function init (line 47989) | func init() {
type VirtualFloppyImageBackingInfo (line 47993) | type VirtualFloppyImageBackingInfo struct
function init (line 47997) | func init() {
type VirtualFloppyImageBackingOption (line 48001) | type VirtualFloppyImageBackingOption struct
function init (line 48005) | func init() {
type VirtualFloppyOption (line 48009) | type VirtualFloppyOption struct
function init (line 48013) | func init() {
type VirtualFloppyRemoteDeviceBackingInfo (line 48017) | type VirtualFloppyRemoteDeviceBackingInfo struct
function init (line 48021) | func init() {
type VirtualFloppyRemoteDeviceBackingOption (line 48025) | type VirtualFloppyRemoteDeviceBackingOption struct
function init (line 48029) | func init() {
type VirtualHardware (line 48033) | type VirtualHardware struct
function init (line 48044) | func init() {
type VirtualHardwareCompatibilityIssue (line 48048) | type VirtualHardwareCompatibilityIssue struct
function init (line 48052) | func init() {
type VirtualHardwareCompatibilityIssueFault (line 48056) | type VirtualHardwareCompatibilityIssueFault
function init (line 48058) | func init() {
type VirtualHardwareOption (line 48062) | type VirtualHardwareOption struct
function init (line 48084) | func init() {
type VirtualHardwareVersionNotSupported (line 48088) | type VirtualHardwareVersionNotSupported struct
function init (line 48095) | func init() {
type VirtualHardwareVersionNotSupportedFault (line 48099) | type VirtualHardwareVersionNotSupportedFault
function init (line 48101) | func init() {
type VirtualHdAudioCard (line 48105) | type VirtualHdAudioCard struct
function init (line 48109) | func init() {
type VirtualHdAudioCardOption (line 48113) | type VirtualHdAudioCardOption struct
function init (line 48117) | func init() {
type VirtualIDEController (line 48121) | type VirtualIDEController struct
function init (line 48125) | func init() {
type VirtualIDEControllerOption (line 48129) | type VirtualIDEControllerOption struct
function init (line 48136) | func init() {
type VirtualKeyboard (line 48140) | type VirtualKeyboard struct
function init (line 48144) | func init() {
type VirtualKeyboardOption (line 48148) | type VirtualKeyboardOption struct
function init (line 48152) | func init() {
type VirtualLsiLogicController (line 48156) | type VirtualLsiLogicController struct
function init (line 48160) | func init() {
type VirtualLsiLogicControllerOption (line 48164) | type VirtualLsiLogicControllerOption struct
function init (line 48168) | func init() {
type VirtualLsiLogicSASController (line 48172) | type VirtualLsiLogicSASController struct
function init (line 48176) | func init() {
type VirtualLsiLogicSASControllerOption (line 48180) | type VirtualLsiLogicSASControllerOption struct
function init (line 48184) | func init() {
type VirtualMachineAffinityInfo (line 48188) | type VirtualMachineAffinityInfo struct
function init (line 48194) | func init() {
type VirtualMachineBootOptions (line 48198) | type VirtualMachineBootOptions struct
function init (line 48210) | func init() {
type VirtualMachineBootOptionsBootableCdromDevice (line 48214) | type VirtualMachineBootOptionsBootableCdromDevice struct
function init (line 48218) | func init() {
type VirtualMachineBootOptionsBootableDevice (line 48222) | type VirtualMachineBootOptionsBootableDevice struct
function init (line 48226) | func init() {
type VirtualMachineBootOptionsBootableDiskDevice (line 48230) | type VirtualMachineBootOptionsBootableDiskDevice struct
function init (line 48236) | func init() {
type VirtualMachineBootOptionsBootableEthernetDevice (line 48240) | type VirtualMachineBootOptionsBootableEthernetDevice struct
function init (line 48246) | func init() {
type VirtualMachineBootOptionsBootableFloppyDevice (line 48250) | type VirtualMachineBootOptionsBootableFloppyDevice struct
function init (line 48254) | func init() {
type VirtualMachineCapability (line 48258) | type VirtualMachineCapability struct
function init (line 48301) | func init() {
type VirtualMachineCdromInfo (line 48305) | type VirtualMachineCdromInfo struct
function init (line 48311) | func init() {
type VirtualMachineCloneSpec (line 48315) | type VirtualMachineCloneSpec struct
function init (line 48327) | func init() {
type VirtualMachineConfigInfo (line 48331) | type VirtualMachineConfigInfo struct
function init (line 48400) | func init() {
type VirtualMachineConfigInfoDatastoreUrlPair (line 48404) | type VirtualMachineConfigInfoDatastoreUrlPair struct
function init (line 48411) | func init() {
type VirtualMachineConfigInfoOverheadInfo (line 48415) | type VirtualMachineConfigInfoOverheadInfo struct
function init (line 48422) | func init() {
type VirtualMachineConfigOption (line 48426) | type VirtualMachineConfigOption struct
function init (line 48442) | func init() {
type VirtualMachineConfigOptionDescriptor (line 48446) | type VirtualMachineConfigOptionDescriptor struct
function init (line 48458) | func init() {
type VirtualMachineConfigSpec (line 48462) | type VirtualMachineConfigSpec struct
function init (line 48526) | func init() {
type VirtualMachineConfigSummary (line 48530) | type VirtualMachineConfigSummary struct
function init (line 48553) | func init() {
type VirtualMachineConsolePreferences (line 48557) | type VirtualMachineConsolePreferences struct
function init (line 48565) | func init() {
type VirtualMachineCpuIdInfoSpec (line 48569) | type VirtualMachineCpuIdInfoSpec struct
function init (line 48575) | func init() {
type VirtualMachineDatastoreInfo (line 48579) | type VirtualMachineDatastoreInfo struct
function init (line 48592) | func init() {
type VirtualMachineDatastoreVolumeOption (line 48596) | type VirtualMachineDatastoreVolumeOption struct
function init (line 48603) | func init() {
type VirtualMachineDefaultPowerOpInfo (line 48607) | type VirtualMachineDefaultPowerOpInfo struct
function init (line 48619) | func init() {
type VirtualMachineDefaultProfileSpec (line 48623) | type VirtualMachineDefaultProfileSpec struct
function init (line 48627) | func init() {
type VirtualMachineDefinedProfileSpec (line 48631) | type VirtualMachineDefinedProfileSpec struct
function init (line 48639) | func init() {
type VirtualMachineDeviceRuntimeInfo (line 48643) | type VirtualMachineDeviceRuntimeInfo struct
function init (line 48650) | func init() {
type VirtualMachineDeviceRuntimeInfoDeviceRuntimeState (line 48654) | type VirtualMachineDeviceRuntimeInfoDeviceRuntimeState struct
function init (line 48658) | func init() {
type VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState (line 48662) | type VirtualMachineDeviceRuntimeInfoVirtualEthernetCardRuntimeState struct
function init (line 48672) | func init() {
type VirtualMachineDiskDeviceInfo (line 48676) | type VirtualMachineDiskDeviceInfo struct
function init (line 48683) | func init() {
type VirtualMachineDisplayTopology (line 48687) | type VirtualMachineDisplayTopology struct
function init (line 48696) | func init() {
type VirtualMachineEmptyProfileSpec (line 48700) | type VirtualMachineEmptyProfileSpec struct
function init (line 48704) | func init() {
type VirtualMachineFeatureRequirement (line 48708) | type VirtualMachineFeatureRequirement struct
function init (line 48716) | func init() {
type VirtualMachineFileInfo (line 48720) | type VirtualMachineFileInfo struct
function init (line 48730) | func init() {
type VirtualMachineFileLayout (line 48734) | type VirtualMachineFileLayout struct
function init (line 48744) | func init() {
type VirtualMachineFileLayoutDiskLayout (line 48748) | type VirtualMachineFileLayoutDiskLayout struct
function init (line 48755) | func init() {
type VirtualMachineFileLayoutEx (line 48759) | type VirtualMachineFileLayoutEx struct
function init (line 48768) | func init() {
type VirtualMachineFileLayoutExDiskLayout (line 48772) | type VirtualMachineFileLayoutExDiskLayout struct
function init (line 48779) | func init() {
type VirtualMachineFileLayoutExDiskUnit (line 48783) | type VirtualMachineFileLayoutExDiskUnit struct
function init (line 48789) | func init() {
type VirtualMachineFileLayoutExFileInfo (line 48793) | type VirtualMachineFileLayoutExFileInfo struct
function init (line 48805) | func init() {
type VirtualMachineFileLayoutExSnapshotLayout (line 48809) | type VirtualMachineFileLayoutExSnapshotLayout struct
function init (line 48818) | func init() {
type VirtualMachineFileLayoutSnapshotLayout (line 48822) | type VirtualMachineFileLayoutSnapshotLayout struct
function init (line 48829) | func init() {
type VirtualMachineFlagInfo (line 48833) | type VirtualMachineFlagInfo struct
function init (line 48853) | func init() {
type VirtualMachineFloppyInfo (line 48857) | type VirtualMachineFloppyInfo struct
function init (line 48861) | func init() {
type VirtualMachineForkConfigInfo (line 48865) | type VirtualMachineForkConfigInfo struct
function init (line 48874) | func init() {
type VirtualMachineGuestIntegrityInfo (line 48878) | type VirtualMachineGuestIntegrityInfo struct
function init (line 48884) | func init() {
type VirtualMachineGuestQuiesceSpec (line 48888) | type VirtualMachineGuestQuiesceSpec struct
function init (line 48894) | func init() {
type VirtualMachineGuestSummary (line 48898) | type VirtualMachineGuestSummary struct
function init (line 48911) | func init() {
type VirtualMachineIdeDiskDeviceInfo (line 48915) | type VirtualMachineIdeDiskDeviceInfo struct
function init (line 48921) | func init() {
type VirtualMachineIdeDiskDevicePartitionInfo (line 48925) | type VirtualMachineIdeDiskDevicePartitionInfo struct
function init (line 48932) | func init() {
type VirtualMachineImportSpec (line 48936) | type VirtualMachineImportSpec struct
function init (line 48943) | func init() {
type VirtualMachineLegacyNetworkSwitchInfo (line 48947) | type VirtualMachineLegacyNetworkSwitchInfo struct
function init (line 48953) | func init() {
type VirtualMachineMemoryReservationInfo (line 48957) | type VirtualMachineMemoryReservationInfo struct
function init (line 48966) | func init() {
type VirtualMachineMemoryReservationSpec (line 48970) | type VirtualMachineMemoryReservationSpec struct
function init (line 48977) | func init() {
type VirtualMachineMessage (line 48981) | type VirtualMachineMessage struct
function init (line 48989) | func init() {
type VirtualMachineMetadataManagerVmMetadata (line 48993) | type VirtualMachineMetadataManagerVmMetadata struct
function init (line 49000) | func init() {
type VirtualMachineMetadataManagerVmMetadataInput (line 49004) | type VirtualMachineMetadataManagerVmMetadataInput struct
function init (line 49011) | func init() {
type VirtualMachineMetadataManagerVmMetadataOwner (line 49015) | type VirtualMachineMetadataManagerVmMetadataOwner struct
function init (line 49021) | func init() {
type VirtualMachineMetadataManagerVmMetadataResult (line 49025) | type VirtualMachineMetadataManagerVmMetadataResult struct
function init (line 49032) | func init() {
type VirtualMachineMksTicket (line 49036) | type VirtualMachineMksTicket struct
function init (line 49046) | func init() {
type VirtualMachineNetworkInfo (line 49050) | type VirtualMachineNetworkInfo struct
function init (line 49057) | func init() {
type VirtualMachineNetworkShaperInfo (line 49061) | type VirtualMachineNetworkShaperInfo struct
function init (line 49070) | func init() {
type VirtualMachineParallelInfo (line 49074) | type VirtualMachineParallelInfo struct
function init (line 49078) | func init() {
type VirtualMachinePciPassthroughInfo (line 49082) | type VirtualMachinePciPassthroughInfo struct
function init (line 49089) | func init() {
type VirtualMachinePciSharedGpuPassthroughInfo (line 49093) | type VirtualMachinePciSharedGpuPassthroughInfo struct
function init (line 49099) | func init() {
type VirtualMachineProfileRawData (line 49103) | type VirtualMachineProfileRawData struct
function init (line 49110) | func init() {
type VirtualMachineProfileSpec (line 49114) | type VirtualMachineProfileSpec struct
function init (line 49118) | func init() {
type VirtualMachineQuestionInfo (line 49122) | type VirtualMachineQuestionInfo struct
function init (line 49131) | func init() {
type VirtualMachineQuickStats (line 49135) | type VirtualMachineQuickStats struct
function init (line 49160) | func init() {
type VirtualMachineRelocateSpec (line 49164) | type VirtualMachineRelocateSpec struct
function init (line 49179) | func init() {
type VirtualMachineRelocateSpecDiskLocator (line 49183) | type VirtualMachineRelocateSpecDiskLocator struct
function init (line 49193) | func init() {
type VirtualMachineRuntimeInfo (line 49197) | type VirtualMachineRuntimeInfo struct
function init (line 49230) | func init() {
type VirtualMachineRuntimeInfoDasProtectionState (line 49234) | type VirtualMachineRuntimeInfoDasProtectionState struct
function init (line 49240) | func init() {
type VirtualMachineScsiDiskDeviceInfo (line 49244) | type VirtualMachineScsiDiskDeviceInfo struct
function init (line 49252) | func init() {
type VirtualMachineScsiPassthroughInfo (line 49256) | type VirtualMachineScsiPassthroughInfo struct
function init (line 49264) | func init() {
type VirtualMachineSerialInfo (line 49268) | type VirtualMachineSerialInfo struct
function init (line 49272) | func init() {
type VirtualMachineSnapshotInfo (line 49276) | type VirtualMachineSnapshotInfo struct
function init (line 49283) | func init() {
type VirtualMachineSnapshotTree (line 49287) | type VirtualMachineSnapshotTree struct
function init (line 49303) | func init() {
type VirtualMachineSoundInfo (line 49307) | type VirtualMachineSoundInfo struct
function init (line 49311) | func init() {
type VirtualMachineSriovDevicePoolInfo (line 49315) | type VirtualMachineSriovDevicePoolInfo struct
function init (line 49321) | func init() {
type VirtualMachineSriovInfo (line 49325) | type VirtualMachineSriovInfo struct
function init (line 49333) | func init() {
type VirtualMachineSriovNetworkDevicePoolInfo (line 49337) | type VirtualMachineSriovNetworkDevicePoolInfo struct
function init (line 49344) | func init() {
type VirtualMachineStorageInfo (line 49348) | type VirtualMachineStorageInfo struct
function init (line 49355) | func init() {
type VirtualMachineStorageSummary (line 49359) | type VirtualMachineStorageSummary struct
function init (line 49368) | func init() {
type VirtualMachineSummary (line 49372) | type VirtualMachineSummary struct
function init (line 49385) | func init() {
type VirtualMachineTargetInfo (line 49389) | type VirtualMachineTargetInfo struct
function init (line 49396) | func init() {
type VirtualMachineTicket (line 49400) | type VirtualMachineTicket struct
function init (line 49410) | func init() {
type VirtualMachineUsageOnDatastore (line 49414) | type VirtualMachineUsageOnDatastore struct
function init (line 49423) | func init() {
type VirtualMachineUsbInfo (line 49427) | type VirtualMachineUsbInfo struct
function init (line 49439) | func init() {
type VirtualMachineVFlashModuleInfo (line 49443) | type VirtualMachineVFlashModuleInfo struct
function init (line 49449) | func init() {
type VirtualMachineVMCIDevice (line 49453) | type VirtualMachineVMCIDevice struct
function init (line 49462) | func init() {
type VirtualMachineVMCIDeviceFilterInfo (line 49466) | type VirtualMachineVMCIDeviceFilterInfo struct
function init (line 49472) | func init() {
type VirtualMachineVMCIDeviceFilterSpec (line 49476) | type VirtualMachineVMCIDeviceFilterSpec struct
function init (line 49487) | func init() {
type VirtualMachineVMCIDeviceOption (line 49491) | type VirtualMachineVMCIDeviceOption struct
function init (line 49499) | func init() {
type VirtualMachineVMCIDeviceOptionFilterSpecOption (line 49503) | type VirtualMachineVMCIDeviceOptionFilterSpecOption struct
function init (line 49513) | func init() {
type VirtualMachineVMIROM (line 49517) | type VirtualMachineVMIROM struct
function init (line 49521) | func init() {
type VirtualMachineVideoCard (line 49525) | type VirtualMachineVideoCard struct
function init (line 49536) | func init() {
type VirtualMachineWindowsQuiesceSpec (line 49540) | type VirtualMachineWindowsQuiesceSpec struct
function init (line 49549) | func init() {
type VirtualMachineWipeResult (line 49553) | type VirtualMachineWipeResult struct
function init (line 49560) | func init() {
type VirtualNVMEController (line 49564) | type VirtualNVMEController struct
function init (line 49568) | func init() {
type VirtualNVMEControllerOption (line 49572) | type VirtualNVMEControllerOption struct
function init (line 49578) | func init() {
type VirtualNicManagerNetConfig (line 49582) | type VirtualNicManagerNetConfig struct
function init (line 49591) | func init() {
type VirtualPCIController (line 49595) | type VirtualPCIController struct
function init (line 49599) | func init() {
type VirtualPCIControllerOption (line 49603) | type VirtualPCIControllerOption struct
function init (line 49620) | func init() {
type VirtualPCIPassthrough (line 49624) | type VirtualPCIPassthrough struct
function init (line 49628) | func init() {
type VirtualPCIPassthroughDeviceBackingInfo (line 49632) | type VirtualPCIPassthroughDeviceBackingInfo struct
function init (line 49641) | func init() {
type VirtualPCIPassthroughDeviceBackingOption (line 49645) | type VirtualPCIPassthroughDeviceBackingOption struct
function init (line 49649) | func init() {
type VirtualPCIPassthroughOption (line 49653) | type VirtualPCIPassthroughOption struct
function init (line 49657) | func init() {
type VirtualPCIPassthroughPluginBackingInfo (line 49661) | type VirtualPCIPassthroughPluginBackingInfo struct
function init (line 49665) | func init() {
type VirtualPCIPassthroughPluginBackingOption (line 49669) | type VirtualPCIPassthroughPluginBackingOption struct
function init (line 49673) | func init() {
type VirtualPCIPassthroughVmiopBackingInfo (line 49677) | type VirtualPCIPassthroughVmiopBackingInfo struct
function init (line 49683) | func init() {
type VirtualPCIPassthroughVmiopBackingOption (line 49687) | type VirtualPCIPassthroughVmiopBackingOption struct
function init (line 49694) | func init() {
type VirtualPCNet32 (line 49698) | type VirtualPCNet32 struct
function init (line 49702) | func init() {
type VirtualPCNet32Option (line 49706) | type VirtualPCNet32Option struct
function init (line 49712) | func init() {
type VirtualPS2Controller (line 49716) | type VirtualPS2Controller struct
function init (line 49720) | func init() {
type VirtualPS2ControllerOption (line 49724) | type VirtualPS2ControllerOption struct
function init (line 49731) | func init() {
type VirtualParallelPort (line 49735) | type VirtualParallelPort struct
function init (line 49739) | func init() {
type VirtualParallelPortDeviceBackingInfo (line 49743) | type VirtualParallelPortDeviceBackingInfo struct
function init (line 49747) | func init() {
type VirtualParallelPortDeviceBackingOption (line 49751) | type VirtualParallelPortDeviceBackingOption struct
function init (line 49755) | func init() {
type VirtualParallelPortFileBackingInfo (line 49759) | type VirtualParallelPortFileBackingInfo struct
function init (line 49763) | func init() {
type VirtualParallelPortFileBackingOption (line 49767) | type VirtualParallelPortFileBackingOption struct
function init (line 49771) | func init() {
type VirtualParallelPortOption (line 49775) | type VirtualParallelPortOption struct
function init (line 49779) | func init() {
type VirtualPointingDevice (line 49783) | type VirtualPointingDevice struct
function init (line 49787) | func init() {
type VirtualPointingDeviceBackingOption (line 49791) | type VirtualPointingDeviceBackingOption struct
function init (line 49797) | func init() {
type VirtualPointingDeviceDeviceBackingInfo (line 49801) | type VirtualPointingDeviceDeviceBackingInfo struct
function init (line 49807) | func init() {
type VirtualPointingDeviceOption (line 49811) | type VirtualPointingDeviceOption struct
function init (line 49815) | func init() {
type VirtualResourcePoolSpec (line 49819) | type VirtualResourcePoolSpec struct
function init (line 49834) | func init() {
type VirtualResourcePoolUsage (line 49838) | type VirtualResourcePoolUsage struct
function init (line 49848) | func init() {
type VirtualSATAController (line 49852) | type VirtualSATAController struct
function init (line 49856) | func init() {
type VirtualSATAControllerOption (line 49860) | type VirtualSATAControllerOption struct
function init (line 49867) | func init() {
type VirtualSCSIController (line 49871) | type VirtualSCSIController struct
function init (line 49879) | func init() {
type VirtualSCSIControllerOption (line 49883) | type VirtualSCSIControllerOption struct
function init (line 49895) | func init() {
type VirtualSCSIPassthrough (line 49899) | type VirtualSCSIPassthrough struct
function init (line 49903) | func init() {
type VirtualSCSIPassthroughDeviceBackingInfo (line 49907) | type VirtualSCSIPassthroughDeviceBackingInfo struct
function init (line 49911) | func init() {
type VirtualSCSIPassthroughDeviceBackingOption (line 49915) | type VirtualSCSIPassthroughDeviceBackingOption struct
function init (line 49919) | func init() {
type VirtualSCSIPassthroughOption (line 49923) | type VirtualSCSIPassthroughOption struct
function init (line 49927) | func init() {
type VirtualSIOController (line 49931) | type VirtualSIOController struct
function init (line 49935) | func init() {
type VirtualSIOControllerOption (line 49939) | type VirtualSIOControllerOption struct
function init (line 49947) | func init() {
type VirtualSerialPort (line 49951) | type VirtualSerialPort struct
function init (line 49957) | func init() {
type VirtualSerialPortDeviceBackingInfo (line 49961) | type VirtualSerialPortDeviceBackingInfo struct
function init (line 49965) | func init() {
type VirtualSerialPortDeviceBackingOption (line 49969) | type VirtualSerialPortDeviceBackingOption struct
function init (line 49973) | func init() {
type VirtualSerialPortFileBackingInfo (line 49977) | type VirtualSerialPortFileBackingInfo struct
function init (line 49981) | func init() {
type VirtualSerialPortFileBackingOption (line 49985) | type VirtualSerialPortFileBackingOption struct
function init (line 49989) | func init() {
type VirtualSerialPortOption (line 49993) | type VirtualSerialPortOption struct
function init (line 49999) | func init() {
type VirtualSerialPortPipeBackingInfo (line 50003) | type VirtualSerialPortPipeBackingInfo struct
function init (line 50010) | func init() {
type VirtualSerialPortPipeBackingOption (line 50014) | type VirtualSerialPortPipeBackingOption struct
function init (line 50021) | func init() {
type VirtualSerialPortThinPrintBackingInfo (line 50025) | type VirtualSerialPortThinPrintBackingInfo struct
function init (line 50029) | func init() {
type VirtualSerialPortThinPrintBackingOption (line 50033) | type VirtualSerialPortThinPrintBackingOption struct
function init (line 50037) | func init() {
type VirtualSerialPortURIBackingInfo (line 50041) | type VirtualSerialPortURIBackingInfo struct
function init (line 50045) | func init() {
type VirtualSerialPortURIBackingOption (line 50049) | type VirtualSerialPortURIBackingOption struct
function init (line 50053) | func init() {
type VirtualSoundBlaster16 (line 50057) | type VirtualSoundBlaster16 struct
function init (line 50061) | func init() {
type VirtualSoundBlaster16Option (line 50065) | type VirtualSoundBlaster16Option struct
function init (line 50069) | func init() {
type VirtualSoundCard (line 50073) | type VirtualSoundCard struct
function init (line 50077) | func init() {
type VirtualSoundCardDeviceBackingInfo (line 50081) | type VirtualSoundCardDeviceBackingInfo struct
function init (line 50085) | func init() {
type VirtualSoundCardDeviceBackingOption (line 50089) | type VirtualSoundCardDeviceBackingOption struct
function init (line 50093) | func init() {
type VirtualSoundCardOption (line 50097) | type VirtualSoundCardOption struct
function init (line 50101) | func init() {
type VirtualSriovEthernetCard (line 50105) | type VirtualSriovEthernetCard struct
function init (line 50112) | func init() {
type VirtualSriovEthernetCardOption (line 50116) | type VirtualSriovEthernetCardOption struct
function init (line 50120) | func init() {
type VirtualSriovEthernetCardSriovBackingInfo (line 50124) | type VirtualSriovEthernetCardSriovBackingInfo struct
function init (line 50132) | func init() {
type VirtualSriovEthernetCardSriovBackingOption (line 50136) | type VirtualSriovEthernetCardSriovBackingOption struct
function init (line 50140) | func init() {
type VirtualSwitchProfile (line 50144) | type VirtualSwitchProfile struct
function init (line 50154) | func init() {
type VirtualSwitchSelectionProfile (line 50158) | type VirtualSwitchSelectionProfile struct
function init (line 50162) | func init() {
type VirtualUSB (line 50166) | type VirtualUSB struct
function init (line 50176) | func init() {
type VirtualUSBController (line 50180) | type VirtualUSBController struct
function init (line 50187) | func init() {
type VirtualUSBControllerOption (line 50191) | type VirtualUSBControllerOption struct
function init (line 50199) | func init() {
type VirtualUSBControllerPciBusSlotInfo (line 50203) | type VirtualUSBControllerPciBusSlotInfo struct
function init (line 50209) | func init() {
type VirtualUSBOption (line 50213) | type VirtualUSBOption struct
function init (line 50217) | func init() {
type VirtualUSBRemoteClientBackingInfo (line 50221) | type VirtualUSBRemoteClientBackingInfo struct
function init (line 50227) | func init() {
type VirtualUSBRemoteClientBackingOption (line 50231) | type VirtualUSBRemoteClientBackingOption struct
function init (line 50235) | func init() {
type VirtualUSBRemoteHostBackingInfo (line 50239) | type VirtualUSBRemoteHostBackingInfo struct
function init (line 50245) | func init() {
type VirtualUSBRemoteHostBackingOption (line 50249) | type VirtualUSBRemoteHostBackingOption struct
function init (line 50253) | func init() {
type VirtualUSBUSBBackingInfo (line 50257) | type VirtualUSBUSBBackingInfo struct
function init (line 50261) | func init() {
type VirtualUSBUSBBackingOption (line 50265) | type VirtualUSBUSBBackingOption struct
function init (line 50269) | func init() {
type VirtualUSBXHCIController (line 50273) | type VirtualUSBXHCIController struct
function init (line 50279) | func init() {
type VirtualUSBXHCIControllerOption (line 50283) | type VirtualUSBXHCIControllerOption struct
function init (line 50290) | func init() {
type VirtualVMIROMOption (line 50294) | type VirtualVMIROMOption struct
function init (line 50298) | func init() {
type VirtualVideoCardOption (line 50302) | type VirtualVideoCardOption struct
function init (line 50314) | func init() {
type VirtualVmxnet (line 50318) | type VirtualVmxnet struct
function init (line 50322) | func init() {
type VirtualVmxnet2 (line 50326) | type VirtualVmxnet2 struct
function init (line 50330) | func init() {
type VirtualVmxnet2Option (line 50334) | type VirtualVmxnet2Option struct
function init (line 50338) | func init() {
type VirtualVmxnet3 (line 50342) | type VirtualVmxnet3 struct
function init (line 50346) | func init() {
type VirtualVmxnet3Option (line 50350) | type VirtualVmxnet3Option struct
function init (line 50354) | func init() {
type VirtualVmxnet3Vrdma (line 50358) | type VirtualVmxnet3Vrdma struct
function init (line 50362) | func init() {
type VirtualVmxnet3VrdmaOption (line 50366) | type VirtualVmxnet3VrdmaOption struct
function init (line 50370) | func init() {
type VirtualVmxnetOption (line 50374) | type VirtualVmxnetOption struct
function init (line 50378) | func init() {
type VlanProfile (line 50382) | type VlanProfile struct
function init (line 50386) | func init() {
type VmAcquiredMksTicketEvent (line 50390) | type VmAcquiredMksTicketEvent struct
function init (line 50394) | func init() {
type VmAcquiredTicketEvent (line 50398) | type VmAcquiredTicketEvent struct
function init (line 50404) | func init() {
type VmAlreadyExistsInDatacenter (line 50408) | type VmAlreadyExistsInDatacenter struct
function init (line 50416) | func init() {
type VmAlreadyExistsInDatacenterFault (line 50420) | type VmAlreadyExistsInDatacenterFault
function init (line 50422) | func init() {
type VmAutoRenameEvent (line 50426) | type VmAutoRenameEvent struct
function init (line 50433) | func init() {
type VmBeingClonedEvent (line 50437) | type VmBeingClonedEvent struct
function init (line 50445) | func init() {
type VmBeingClonedNoFolderEvent (line 50449) | type VmBeingClonedNoFolderEvent struct
function init (line 50456) | func init() {
type VmBeingCreatedEvent (line 50460) | type VmBeingCreatedEvent struct
function init (line 50466) | func init() {
type VmBeingDeployedEvent (line 50470) | type VmBeingDeployedEvent struct
function init (line 50476) | func init() {
type VmBeingHotMigratedEvent (line 50480) | type VmBeingHotMigratedEvent struct
function init (line 50488) | func init() {
type VmBeingMigratedEvent (line 50492) | type VmBeingMigratedEvent struct
function init (line 50500) | func init() {
type VmBeingRelocatedEvent (line 50504) | type VmBeingRelocatedEvent struct
function init (line 50512) | func init() {
type VmCloneEvent (line 50516) | type VmCloneEvent struct
function init (line 50520) | func init() {
type VmCloneFailedEvent (line 50524) | type VmCloneFailedEvent struct
function init (line 50533) | func init() {
type VmClonedEvent (line 50537) | type VmClonedEvent struct
function init (line 50543) | func init() {
type VmConfigFault (line 50547) | type VmConfigFault struct
function init (line 50551) | func init() {
type VmConfigFaultFault (line 50555) | type VmConfigFaultFault
function init (line 50557) | func init() {
type VmConfigFileEncryptionInfo (line 50561) | type VmConfigFileEncryptionInfo struct
function init (line 50567) | func init() {
type VmConfigFileInfo (line 50571) | type VmConfigFileInfo struct
function init (line 50578) | func init() {
type VmConfigFileQuery (line 50582) | type VmConfigFileQuery struct
function init (line 50589) | func init() {
type VmConfigFileQueryFilter (line 50593) | type VmConfigFileQueryFilter struct
function init (line 50600) | func init() {
type VmConfigFileQueryFlags (line 50604) | type VmConfigFileQueryFlags struct
function init (line 50611) | func init() {
type VmConfigIncompatibleForFaultTolerance (line 50615) | type VmConfigIncompatibleForFaultTolerance struct
function init (line 50621) | func init() {
type VmConfigIncompatibleForFaultToleranceFault (line 50625) | type VmConfigIncompatibleForFaultToleranceFault
function init (line 50627) | func init() {
type VmConfigIncompatibleForRecordReplay (line 50631) | type VmConfigIncompatibleForRecordReplay struct
function init (line 50637) | func init() {
type VmConfigIncompatibleForRecordReplayFault (line 50641) | type VmConfigIncompatibleForRecordReplayFault
function init (line 50643) | func init() {
type VmConfigInfo (line 50647) | type VmConfigInfo struct
function init (line 50660) | func init() {
type VmConfigMissingEvent (line 50664) | type VmConfigMissingEvent struct
function init (line 50668) | func init() {
type VmConfigSpec (line 50672) | type VmConfigSpec struct
function init (line 50685) | func init() {
type VmConnectedEvent (line 50689) | type VmConnectedEvent struct
function init (line 50693) | func init() {
type VmCreatedEvent (line 50697) | type VmCreatedEvent struct
function init (line 50701) | func init() {
type VmDasBeingResetEvent (line 50705) | type VmDasBeingResetEvent struct
function init (line 50711) | func init() {
type VmDasBeingResetWithScreenshotEvent (line 50715) | type VmDasBeingResetWithScreenshotEvent struct
function init (line 50721) | func init() {
type VmDasResetFailedEvent (line 50725) | type VmDasResetFailedEvent struct
function init (line 50729) | func init() {
type VmDasUpdateErrorEvent (line 50733) | type VmDasUpdateErrorEvent struct
function init (line 50737) | func init() {
type VmDasUpdateOkEvent (line 50741) | type VmDasUpdateOkEvent struct
function init (line 50745) | func init() {
type VmDateRolledBackEvent (line 50749) | type VmDateRolledBackEvent struct
function init (line 50753) | func init() {
type VmDeployFailedEvent (line 50757) | type VmDeployFailedEvent struct
function init (line 50764) | func init() {
type VmDeployedEvent (line 50768) | type VmDeployedEvent struct
function init (line 50774) | func init() {
type VmDisconnectedEvent (line 50778) | type VmDisconnectedEvent struct
function init (line 50782) | func init() {
type VmDiscoveredEvent (line 50786) | type VmDiscoveredEvent struct
function init (line 50790) | func init() {
type VmDiskFailedEvent (line 50794) | type VmDiskFailedEvent struct
function init (line 50801) | func init() {
type VmDiskFileEncryptionInfo (line 50805) | type VmDiskFileEncryptionInfo struct
function init (line 50811) | func init() {
type VmDiskFileInfo (line 50815) | type VmDiskFileInfo struct
function init (line 50827) | func init() {
type VmDiskFileQuery (line 50831) | type VmDiskFileQuery struct
function init (line 50838) | func init() {
type VmDiskFileQueryFilter (line 50842) | type VmDiskFileQueryFilter struct
function init (line 50852) | func init() {
type VmDiskFileQueryFlags (line 50856) | type VmDiskFileQueryFlags struct
function init (line 50868) | func init() {
type VmEmigratingEvent (line 50872) | type VmEmigratingEvent struct
function init (line 50876) | func init() {
type VmEndRecordingEvent (line 50880) | type VmEndRecordingEvent struct
function init (line 50884) | func init() {
type VmEndReplayingEvent (line 50888) | type VmEndReplayingEvent struct
function init (line 50892) | func init() {
type VmEvent (line 50896) | type VmEvent struct
function init (line 50902) | func init() {
type VmEventArgument (line 50906) | type VmEventArgument struct
function init (line 50912) | func init() {
type VmFailedMigrateEvent (line 50916) | type VmFailedMigrateEvent struct
function init (line 50925) | func init() {
type VmFailedRelayoutEvent (line 50929) | type VmFailedRelayoutEvent struct
function init (line 50935) | func init() {
type VmFailedRelayoutOnVmfs2DatastoreEvent (line 50939) | type VmFailedRelayoutOnVmfs2DatastoreEvent struct
function init (line 50943) | func init() {
type VmFailedStartingSecondaryEvent (line 50947) | type VmFailedStartingSecondaryEvent struct
function init (line 50953) | func init() {
type VmFailedToPowerOffEvent (line 50957) | type VmFailedToPowerOffEvent struct
function init (line 50963) | func init() {
type VmFailedToPowerOnEvent (line 50967) | type VmFailedToPowerOnEvent struct
function init (line 50973) | func init() {
type VmFailedToRebootGuestEvent (line 50977) | type VmFailedToRebootGuestEvent struct
function init (line 50983) | func init() {
type VmFailedToResetEvent (line 50987) | type VmFailedToResetEvent struct
function init (line 50993) | func init() {
type VmFailedToShutdownGuestEvent (line 50997) | type VmFailedToShutdownGuestEvent struct
function init (line 51003) | func init() {
type VmFailedToStandbyGuestEvent (line 51007) | type VmFailedToStandbyGuestEvent struct
function init (line 51013) | func init() {
type VmFailedToSuspendEvent (line 51017) | type VmFailedToSuspendEvent struct
function init (line 51023) | func init() {
type VmFailedUpdatingSecondaryConfig (line 51027) | type VmFailedUpdatingSecondaryConfig struct
function init (line 51031) | func init() {
type VmFailoverFailed (line 51035) | type VmFailoverFailed struct
function init (line 51041) | func init() {
type VmFaultToleranceConfigIssue (line 51045) | type VmFaultToleranceConfigIssue struct
function init (line 51053) | func init() {
type VmFaultToleranceConfigIssueFault (line 51057) | type VmFaultToleranceConfigIssueFault
function init (line 51059) | func init() {
type VmFaultToleranceConfigIssueWrapper (line 51063) | type VmFaultToleranceConfigIssueWrapper struct
function init (line 51071) | func init() {
type VmFaultToleranceConfigIssueWrapperFault (line 51075) | type VmFaultToleranceConfigIssueWrapperFault
function init (line 51077) | func init() {
type VmFaultToleranceInvalidFileBacking (line 51081) | type VmFaultToleranceInvalidFileBacking struct
function init (line 51088) | func init() {
type VmFaultToleranceInvalidFileBackingFault (line 51092) | type VmFaultToleranceInvalidFileBackingFault
function init (line 51094) | func init() {
type VmFaultToleranceIssue (line 51098) | type VmFaultToleranceIssue struct
function init (line 51102) | func init() {
type VmFaultToleranceIssueFault (line 51106) | type VmFaultToleranceIssueFault
function init (line 51108) | func init() {
type VmFaultToleranceOpIssuesList (line 51112) | type VmFaultToleranceOpIssuesList struct
function init (line 51119) | func init() {
type VmFaultToleranceOpIssuesListFault (line 51123) | type VmFaultToleranceOpIssuesListFault
function init (line 51125) | func init() {
type VmFaultToleranceStateChangedEvent (line 51129) | type VmFaultToleranceStateChangedEvent struct
function init (line 51136) | func init() {
type VmFaultToleranceTooManyFtVcpusOnHost (line 51140) | type VmFaultToleranceTooManyFtVcpusOnHost struct
function init (line 51147) | func init() {
type VmFaultToleranceTooManyFtVcpusOnHostFault (line 51151) | type VmFaultToleranceTooManyFtVcpusOnHostFault
function init (line 51153) | func init() {
type VmFaultToleranceTooManyVMsOnHost (line 51157) | type VmFaultToleranceTooManyVMsOnHost struct
function init (line 51164) | func init() {
type VmFaultToleranceTooManyVMsOnHostFault (line 51168) | type VmFaultToleranceTooManyVMsOnHostFault
function init (line 51170) | func init() {
type VmFaultToleranceTurnedOffEvent (line 51174) | type VmFaultToleranceTurnedOffEvent struct
function init (line 51178) | func init() {
type VmFaultToleranceVmTerminatedEvent (line 51182) | type VmFaultToleranceVmTerminatedEvent struct
function init (line 51188) | func init() {
type VmGuestOSCrashedEvent (line 51192) | type VmGuestOSCrashedEvent struct
function init (line 51196) | func init() {
type VmGuestRebootEvent (line 51200) | type VmGuestRebootEvent struct
function init (line 51204) | func init() {
type VmGuestShutdownEvent (line 51208) | type VmGuestShutdownEvent struct
function init (line 51212) | func init() {
type VmGuestStandbyEvent (line 51216) | type VmGuestStandbyEvent struct
function init (line 51220) | func init() {
type VmHealthMonitoringStateChangedEvent (line 51224) | type VmHealthMonitoringStateChangedEvent struct
function init (line 51231) | func init() {
type VmHostAffinityRuleViolation (line 51235) | type VmHostAffinityRuleViolation struct
function init (line 51242) | func init() {
type VmHostAffinityRuleViolationFault (line 51246) | type VmHostAffinityRuleViolationFault
function init (line 51248) | func init() {
type VmInstanceUuidAssignedEvent (line 51252) | type VmInstanceUuidAssignedEvent struct
function init (line 51258) | func init() {
type VmInstanceUuidChangedEvent (line 51262) | type VmInstanceUuidChangedEvent struct
function init (line 51269) | func init() {
type VmInstanceUuidConflictEvent (line 51273) | type VmInstanceUuidConflictEvent struct
function init (line 51280) | func init() {
type VmLimitLicense (line 51284) | type VmLimitLicense struct
function init (line 51290) | func init() {
type VmLimitLicenseFault (line 51294) | type VmLimitLicenseFault
function init (line 51296) | func init() {
type VmLogFileInfo (line 51300) | type VmLogFileInfo struct
function init (line 51304) | func init() {
type VmLogFileQuery (line 51308) | type VmLogFileQuery struct
function init (line 51312) | func init() {
type VmMacAssignedEvent (line 51316) | type VmMacAssignedEvent struct
function init (line 51323) | func init() {
type VmMacChangedEvent (line 51327) | type VmMacChangedEvent struct
function init (line 51335) | func init() {
type VmMacConflictEvent (line 51339) | type VmMacConflictEvent struct
function init (line 51346) | func init() {
type VmMaxFTRestartCountReached (line 51350) | type VmMaxFTRestartCountReached struct
function init (line 51354) | func init() {
type VmMaxRestartCountReached (line 51358) | type VmMaxRestartCountReached struct
function init (line 51362) | func init() {
type VmMessageErrorEvent (line 51366) | type VmMessageErrorEvent struct
function init (line 51373) | func init() {
type VmMessageEvent (line 51377) | type VmMessageEvent struct
function init (line 51384) | func init() {
type VmMessageWarningEvent (line 51388) | type VmMessageWarningEvent struct
function init (line 51395) | func init() {
type VmMetadataManagerFault (line 51399) | type VmMetadataManagerFault struct
function init (line 51403) | func init() {
type VmMetadataManagerFaultFault (line 51407) | type VmMetadataManagerFaultFault
function init (line 51409) | func init() {
type VmMigratedEvent (line 51413) | type VmMigratedEvent struct
function init (line 51421) | func init() {
type VmMonitorIncompatibleForFaultTolerance (line 51425) | type VmMonitorIncompatibleForFaultTolerance struct
function init (line 51429) | func init() {
type VmMonitorIncompatibleForFaultToleranceFault (line 51433) | type VmMonitorIncompatibleForFaultToleranceFault
function init (line 51435) | func init() {
type VmNoCompatibleHostForSecondaryEvent (line 51439) | type VmNoCompatibleHostForSecondaryEvent struct
function init (line 51443) | func init() {
type VmNoNetworkAccessEvent (line 51447) | type VmNoNetworkAccessEvent struct
function init (line 51453) | func init() {
type VmNvramFileInfo (line 51457) | type VmNvramFileInfo struct
function init (line 51461) | func init() {
type VmNvramFileQuery (line 51465) | type VmNvramFileQuery struct
function init (line 51469) | func init() {
type VmOrphanedEvent (line 51473) | type VmOrphanedEvent struct
function init (line 51477) | func init() {
type VmPodConfigForPlacement (line 51481) | type VmPodConfigForPlacement struct
function init (line 51490) | func init() {
type VmPortGroupProfile (line 51494) | type VmPortGroupProfile struct
function init (line 51498) | func init() {
type VmPowerOffOnIsolationEvent (line 51502) | type VmPowerOffOnIsolationEvent struct
function init (line 51508) | func init() {
type VmPowerOnDisabled (line 51512) | type VmPowerOnDisabled struct
function init (line 51516) | func init() {
type VmPowerOnDisabledFault (line 51520) | type VmPowerOnDisabledFault
function init (line 51522) | func init() {
type VmPoweredOffEvent (line 51526) | type VmPoweredOffEvent struct
function init (line 51530) | func init() {
type VmPoweredOnEvent (line 51534) | type VmPoweredOnEvent struct
function init (line 51538) | func init() {
type VmPoweringOnWithCustomizedDVPortEvent (line 51542) | type VmPoweringOnWithCustomizedDVPortEvent struct
function init (line 51548) | func init() {
type VmPrimaryFailoverEvent (line 51552) | type VmPrimaryFailoverEvent struct
function init (line 51558) | func init() {
type VmReconfiguredEvent (line 51562) | type VmReconfiguredEvent struct
function init (line 51569) | func init() {
type VmRegisteredEvent (line 51573) | type VmRegisteredEvent struct
function init (line 51577) | func init() {
type VmRelayoutSuccessfulEvent (line 51581) | type VmRelayoutSuccessfulEvent struct
function init (line 51585) | func init() {
type VmRelayoutUpToDateEvent (line 51589) | type VmRelayoutUpToDateEvent struct
function init (line 51593) | func init() {
type VmReloadFromPathEvent (line 51597) | type VmReloadFromPathEvent struct
function init (line 51603) | func init() {
type VmReloadFromPathFailedEvent (line 51607) | type VmReloadFromPathFailedEvent struct
function init (line 51613) | func init() {
type VmRelocateFailedEvent (line 51617) | type VmRelocateFailedEvent struct
function init (line 51626) | func init() {
type VmRelocateSpecEvent (line 51630) | type VmRelocateSpecEvent struct
function init (line 51634) | func init() {
type VmRelocatedEvent (line 51638) | type VmRelocatedEvent struct
function init (line 51646) | func init() {
type VmRemoteConsoleConnectedEvent (line 51650) | type VmRemoteConsoleConnectedEvent struct
function init (line 51654) | func init() {
type VmRemoteConsoleDisconnectedEvent (line 51658) | type VmRemoteConsoleDisconnectedEvent struct
function init (line 51662) | func init() {
type VmRemovedEvent (line 51666) | type VmRemovedEvent struct
function init (line 51670) | func init() {
type VmRenamedEvent (line 51674) | type VmRenamedEvent struct
function init (line 51681) | func init() {
type VmRequirementsExceedCurrentEVCModeEvent (line 51685) | type VmRequirementsExceedCurrentEVCModeEvent struct
function init (line 51689) | func init() {
type VmResettingEvent (line 51693) | type VmResettingEvent struct
function init (line 51697) | func init() {
type VmResourcePoolMovedEvent (line 51701) | type VmResourcePoolMovedEvent struct
function init (line 51708) | func init() {
type VmResourceReallocatedEvent (line 51712) | type VmResourceReallocatedEvent struct
function init (line 51718) | func init() {
type VmRestartedOnAlternateHostEvent (line 51722) | type VmRestartedOnAlternateHostEvent struct
function init (line 51728) | func init() {
type VmResumingEvent (line 51732) | type VmResumingEvent struct
function init (line 51736) | func init() {
type VmSecondaryAddedEvent (line 51740) | type VmSecondaryAddedEvent struct
function init (line 51744) | func init() {
type VmSecondaryDisabledBySystemEvent (line 51748) | type VmSecondaryDisabledBySystemEvent struct
function init (line 51754) | func init() {
type VmSecondaryDisabledEvent (line 51758) | type VmSecondaryDisabledEvent struct
function init (line 51762) | func init() {
type VmSecondaryEnabledEvent (line 51766) | type VmSecondaryEnabledEvent struct
function init (line 51770) | func init() {
type VmSecondaryStartedEvent (line 51774) | type VmSecondaryStartedEvent struct
function init (line 51778) | func init() {
type VmShutdownOnIsolationEvent (line 51782) | type VmShutdownOnIsolationEvent struct
function init (line 51789) | func init() {
type VmSmpFaultToleranceTooManyVMsOnHost (line 51793) | type VmSmpFaultToleranceTooManyVMsOnHost struct
function init (line 51800) | func init() {
type VmSmpFaultToleranceTooManyVMsOnHostFault (line 51804) | type VmSmpFaultToleranceTooManyVMsOnHostFault
function init (line 51806) | func init() {
type VmSnapshotFileInfo (line 51810) | type VmSnapshotFileInfo struct
function init (line 51814) | func init() {
type VmSnapshotFileQuery (line 51818) | type VmSnapshotFileQuery struct
function init (line 51822) | func init() {
type VmStartRecordingEvent (line 51826) | type VmStartRecordingEvent struct
function init (line 51830) | func init() {
type VmStartReplayingEvent (line 51834) | type VmStartReplayingEvent struct
function init (line 51838) | func init() {
type VmStartingEvent (line 51842) | type VmStartingEvent struct
function init (line 51846) | func init() {
type VmStartingSecondaryEvent (line 51850) | type VmStartingSecondaryEvent struct
function init (line 51854) | func init() {
type VmStaticMacConflictEvent (line 51858) | type VmStaticMacConflictEvent struct
function init (line 51865) | func init() {
type VmStoppingEvent (line 51869) | type VmStoppingEvent struct
function init (line 51873) | func init() {
type VmSuspendedEvent (line 51877) | type VmSuspendedEvent struct
function init (line 51881) | func init() {
type VmSuspendingEvent (line 51885) | type VmSuspendingEvent struct
function init (line 51889) | func init() {
type VmTimedoutStartingSecondaryEvent (line 51893) | type VmTimedoutStartingSecondaryEvent struct
function init (line 51899) | func init() {
type VmToolsUpgradeFault (line 51903) | type VmToolsUpgradeFault struct
function init (line 51907) | func init() {
type VmToolsUpgradeFaultFault (line 51911) | type VmToolsUpgradeFaultFault
function init (line 51913) | func init() {
type VmUnsupportedStartingEvent (line 51917) | type VmUnsupportedStartingEvent struct
function init (line 51923) | func init() {
type VmUpgradeCompleteEvent (line 51927) | type VmUpgradeCompleteEvent struct
function init (line 51933) | func init() {
type VmUpgradeFailedEvent (line 51937) | type VmUpgradeFailedEvent struct
function init (line 51941) | func init() {
type VmUpgradingEvent (line 51945) | type VmUpgradingEvent struct
function init (line 51951) | func init() {
type VmUuidAssignedEvent (line 51955) | type VmUuidAssignedEvent struct
function init (line 51961) | func init() {
type VmUuidChangedEvent (line 51965) | type VmUuidChangedEvent struct
function init (line 51972) | func init() {
type VmUuidConflictEvent (line 51976) | type VmUuidConflictEvent struct
function init (line 51983) | func init() {
type VmValidateMaxDevice (line 51987) | type VmValidateMaxDevice struct
function init (line 51995) | func init() {
type VmValidateMaxDeviceFault (line 51999) | type VmValidateMaxDeviceFault
function init (line 52001) | func init() {
type VmVnicPoolReservationViolationClearEvent (line 52005) | type VmVnicPoolReservationViolationClearEvent struct
function init (line 52012) | func init() {
type VmVnicPoolReservationViolationRaiseEvent (line 52016) | type VmVnicPoolReservationViolationRaiseEvent struct
function init (line 52023) | func init() {
type VmWwnAssignedEvent (line 52027) | type VmWwnAssignedEvent struct
function init (line 52034) | func init() {
type VmWwnChangedEvent (line 52038) | type VmWwnChangedEvent struct
function init (line 52047) | func init() {
type VmWwnConflict (line 52051) | type VmWwnConflict struct
function init (line 52060) | func init() {
type VmWwnConflictEvent (line 52064) | type VmWwnConflictEvent struct
function init (line 52072) | func init() {
type VmWwnConflictFault (line 52076) | type VmWwnConflictFault
function init (line 52078) | func init() {
type VmfsAlreadyMounted (line 52082) | type VmfsAlreadyMounted struct
function init (line 52086) | func init() {
type VmfsAlreadyMountedFault (line 52090) | type VmfsAlreadyMountedFault
function init (line 52092) | func init() {
type VmfsAmbiguousMount (line 52096) | type VmfsAmbiguousMount struct
function init (line 52100) | func init() {
type VmfsAmbiguousMountFault (line 52104) | type VmfsAmbiguousMountFault
function init (line 52106) | func init() {
type VmfsConfigOption (line 52110) | type VmfsConfigOption struct
function init (line 52117) | func init() {
type VmfsDatastoreAllExtentOption (line 52121) | type VmfsDatastoreAllExtentOption struct
function init (line 52125) | func init() {
type VmfsDatastoreBaseOption (line 52129) | type VmfsDatastoreBaseOption struct
function init (line 52136) | func init() {
type VmfsDatastoreCreateSpec (line 52140) | type VmfsDatastoreCreateSpec struct
function init (line 52148) | func init() {
type VmfsDatastoreExpandSpec (line 52152) | type VmfsDatastoreExpandSpec struct
function init (line 52159) | func init() {
type VmfsDatastoreExtendSpec (line 52163) | type VmfsDatastoreExtendSpec struct
function init (line 52170) | func init() {
type VmfsDatastoreInfo (line 52174) | type VmfsDatastoreInfo struct
function init (line 52182) | func init() {
type VmfsDatastoreMultipleExtentOption (line 52186) | type VmfsDatastoreMultipleExtentOption struct
function init (line 52192) | func init() {
type VmfsDatastoreOption (line 52196) | type VmfsDatastoreOption struct
function init (line 52203) | func init() {
type VmfsDatastoreSingleExtentOption (line 52207) | type VmfsDatastoreSingleExtentOption struct
function init (line 52213) | func init() {
type VmfsDatastoreSpec (line 52217) | type VmfsDatastoreSpec struct
function init (line 52223) | func init() {
type VmfsMountFault (line 52227) | type VmfsMountFault struct
function init (line 52233) | func init() {
type VmfsMountFaultFault (line 52237) | type VmfsMountFaultFault
function init (line 52239) | func init() {
type VmotionInterfaceNotEnabled (line 52243) | type VmotionInterfaceNotEnabled struct
function init (line 52247) | func init() {
type VmotionInterfaceNotEnabledFault (line 52251) | type VmotionInterfaceNotEnabledFault
function init (line 52253) | func init() {
type VmwareDistributedVirtualSwitchPvlanSpec (line 52257) | type VmwareDistributedVirtualSwitchPvlanSpec struct
function init (line 52263) | func init() {
type VmwareDistributedVirtualSwitchTrunkVlanSpec (line 52267) | type VmwareDistributedVirtualSwitchTrunkVlanSpec struct
function init (line 52273) | func init() {
type VmwareDistributedVirtualSwitchVlanIdSpec (line 52277) | type VmwareDistributedVirtualSwitchVlanIdSpec struct
function init (line 52283) | func init() {
type VmwareDistributedVirtualSwitchVlanSpec (line 52287) | type VmwareDistributedVirtualSwitchVlanSpec struct
function init (line 52291) | func init() {
type VmwareUplinkPortTeamingPolicy (line 52295) | type VmwareUplinkPortTeamingPolicy struct
function init (line 52306) | func init() {
type VnicPortArgument (line 52310) | type VnicPortArgument struct
function init (line 52317) | func init() {
type VolumeEditorError (line 52321) | type VolumeEditorError struct
function init (line 52325) | func init() {
type VolumeEditorErrorFault (line 52329) | type VolumeEditorErrorFault
function init (line 52331) | func init() {
type VramLimitLicense (line 52335) | type VramLimitLicense struct
function init (line 52341) | func init() {
type VramLimitLicenseFault (line 52345) | type VramLimitLicenseFault
function init (line 52347) | func init() {
type VrpResourceAllocationInfo (line 52351) | type VrpResourceAllocationInfo struct
function init (line 52357) | func init() {
type VsanClusterConfigInfo (line 52361) | type VsanClusterConfigInfo struct
function init (line 52368) | func init() {
type VsanClusterConfigInfoHostDefaultInfo (line 52372) | type VsanClusterConfigInfoHostDefaultInfo struct
function init (line 52380) | func init() {
type VsanClusterUuidMismatch (line 52384) | type VsanClusterUuidMismatch struct
function init (line 52391) | func init() {
type VsanClusterUuidMismatchFault (line 52395) | type VsanClusterUuidMismatchFault
function init (line 52397) | func init() {
type VsanDiskFault (line 52401) | type VsanDiskFault struct
function init (line 52407) | func init() {
type VsanDiskFaultFault (line 52411) | type VsanDiskFaultFault
function init (line 52413) | func init() {
type VsanFault (line 52417) | type VsanFault struct
function init (line 52421) | func init() {
type VsanFaultFault (line 52425) | type VsanFaultFault
function init (line 52427) | func init() {
type VsanHostClusterStatus (line 52431) | type VsanHostClusterStatus struct
function init (line 52441) | func init() {
type VsanHostClusterStatusState (line 52445) | type VsanHostClusterStatusState struct
function init (line 52452) | func init() {
type VsanHostClusterStatusStateCompletionEstimate (line 52456) | type VsanHostClusterStatusStateCompletionEstimate struct
function init (line 52463) | func init() {
type VsanHostConfigInfo (line 52467) | type VsanHostConfigInfo struct
function init (line 52478) | func init() {
type VsanHostConfigInfoClusterInfo (line 52482) | type VsanHostConfigInfoClusterInfo struct
function init (line 52489) | func init() {
type VsanHostConfigInfoNetworkInfo (line 52493) | type VsanHostConfigInfoNetworkInfo struct
function init (line 52499) | func init() {
type VsanHostConfigInfoNetworkInfoPortConfig (line 52503) | type VsanHostConfigInfoNetworkInfoPortConfig struct
function init (line 52510) | func init() {
type VsanHostConfigInfoStorageInfo (line 52514) | type VsanHostConfigInfoStorageInfo struct
function init (line 52523) | func init() {
type VsanHostDecommissionMode (line 52527) | type VsanHostDecommissionMode struct
function init (line 52533) | func init() {
type VsanHostDiskMapInfo (line 52537) | type VsanHostDiskMapInfo struct
function init (line 52544) | func init() {
type VsanHostDiskMapResult (line 52548) | type VsanHostDiskMapResult struct
function init (line 52556) | func init() {
type VsanHostDiskMapping (line 52560) | type VsanHostDiskMapping struct
function init (line 52567) | func init() {
type VsanHostDiskResult (line 52571) | type VsanHostDiskResult struct
function init (line 52581) | func init() {
type VsanHostFaultDomainInfo (line 52585) | type VsanHostFaultDomainInfo struct
function init (line 52591) | func init() {
type VsanHostIpConfig (line 52595) | type VsanHostIpConfig struct
function init (line 52602) | func init() {
type VsanHostMembershipInfo (line 52606) | type VsanHostMembershipInfo struct
function init (line 52613) | func init() {
type VsanHostRuntimeInfo (line 52617) | type VsanHostRuntimeInfo struct
function init (line 52625) | func init() {
type VsanHostRuntimeInfoDiskIssue (line 52629) | type VsanHostRuntimeInfoDiskIssue struct
function init (line 52636) | func init() {
type VsanHostVsanDiskInfo (line 52640) | type VsanHostVsanDiskInfo struct
function init (line 52647) | func init() {
type VsanIncompatibleDiskMapping (line 52651) | type VsanIncompatibleDiskMapping struct
function init (line 52655) | func init() {
type VsanIncompatibleDiskMappingFault (line 52659) | type VsanIncompatibleDiskMappingFault
function init (line 52661) | func init() {
type VsanNewPolicyBatch (line 52665) | type VsanNewPolicyBatch struct
function init (line 52672) | func init() {
type VsanPolicyChangeBatch (line 52676) | type VsanPolicyChangeBatch struct
function init (line 52683) | func init() {
type VsanPolicyCost (line 52687) | type VsanPolicyCost struct
function init (line 52700) | func init() {
type VsanPolicySatisfiability (line 52704) | type VsanPolicySatisfiability struct
function init (line 52713) | func init() {
type VsanUpgradeSystemAPIBrokenIssue (line 52717) | type VsanUpgradeSystemAPIBrokenIssue struct
function init (line 52723) | func init() {
type VsanUpgradeSystemAutoClaimEnabledOnHostsIssue (line 52727) | type VsanUpgradeSystemAutoClaimEnabledOnHostsIssue struct
function init (line 52733) | func init() {
type VsanUpgradeSystemHostsDisconnectedIssue (line 52737) | type VsanUpgradeSystemHostsDisconnectedIssue struct
function init (line 52743) | func init() {
type VsanUpgradeSystemMissingHostsInClusterIssue (line 52747) | type VsanUpgradeSystemMissingHostsInClusterIssue struct
function init (line 52753) | func init() {
type VsanUpgradeSystemNetworkPartitionInfo (line 52757) | type VsanUpgradeSystemNetworkPartitionInfo struct
function init (line 52763) | func init() {
type VsanUpgradeSystemNetworkPartitionIssue (line 52767) | type VsanUpgradeSystemNetworkPartitionIssue struct
function init (line 52773) | func init() {
type VsanUpgradeSystemNotEnoughFreeCapacityIssue (line 52777) | type VsanUpgradeSystemNotEnoughFreeCapacityIssue struct
function init (line 52783) | func init() {
type VsanUpgradeSystemPreflightCheckIssue (line 52787) | type VsanUpgradeSystemPreflightCheckIssue struct
function init (line 52793) | func init() {
type VsanUpgradeSystemPreflightCheckResult (line 52797) | type VsanUpgradeSystemPreflightCheckResult struct
function init (line 52804) | func init() {
type VsanUpgradeSystemRogueHostsInClusterIssue (line 52808) | type VsanUpgradeSystemRogueHostsInClusterIssue struct
function init (line 52814) | func init() {
type VsanUpgradeSystemUpgradeHistoryDiskGroupOp (line 52818) | type VsanUpgradeSystemUpgradeHistoryDiskGroupOp struct
function init (line 52825) | func init() {
type VsanUpgradeSystemUpgradeHistoryItem (line 52829) | type VsanUpgradeSystemUpgradeHistoryItem struct
function init (line 52838) | func init() {
type VsanUpgradeSystemUpgradeHistoryPreflightFail (line 52842) | type VsanUpgradeSystemUpgradeHistoryPreflightFail struct
function init (line 52848) | func init() {
type VsanUpgradeSystemUpgradeStatus (line 52852) | type VsanUpgradeSystemUpgradeStatus struct
function init (line 52862) | func init() {
type VsanUpgradeSystemV2ObjectsPresentDuringDowngradeIssue (line 52866) | type VsanUpgradeSystemV2ObjectsPresentDuringDowngradeIssue struct
function init (line 52872) | func init() {
type VsanUpgradeSystemWrongEsxVersionIssue (line 52876) | type VsanUpgradeSystemWrongEsxVersionIssue struct
function init (line 52882) | func init() {
type VslmCloneSpec (line 52886) | type VslmCloneSpec struct
function init (line 52892) | func init() {
type VslmCreateSpec (line 52896) | type VslmCreateSpec struct
function init (line 52904) | func init() {
type VslmCreateSpecBackingSpec (line 52908) | type VslmCreateSpecBackingSpec struct
function init (line 52914) | func init() {
type VslmCreateSpecDiskFileBackingSpec (line 52918) | type VslmCreateSpecDiskFileBackingSpec struct
function init (line 52924) | func init() {
type VslmCreateSpecRawDiskMappingBackingSpec (line 52928) | type VslmCreateSpecRawDiskMappingBackingSpec struct
function init (line 52935) | func init() {
type VslmMigrateSpec (line 52939) | type VslmMigrateSpec struct
function init (line 52946) | func init() {
type VslmRelocateSpec (line 52950) | type VslmRelocateSpec struct
function init (line 52954) | func init() {
type VslmTagEntry (line 52958) | type VslmTagEntry struct
function init (line 52965) | func init() {
type VspanDestPortConflict (line 52969) | type VspanDestPortConflict struct
function init (line 52977) | func init() {
type VspanDestPortConflictFault (line 52981) | type VspanDestPortConflictFault
function init (line 52983) | func init() {
type VspanPortConflict (line 52987) | type VspanPortConflict struct
function init (line 52995) | func init() {
type VspanPortConflictFault (line 52999) | type VspanPortConflictFault
function init (line 53001) | func init() {
type VspanPortMoveFault (line 53005) | type VspanPortMoveFault struct
function init (line 53013) | func init() {
type VspanPortMoveFaultFault (line 53017) | type VspanPortMoveFaultFault
function init (line 53019) | func init() {
type VspanPortPromiscChangeFault (line 53023) | type VspanPortPromiscChangeFault struct
function init (line 53029) | func init() {
type VspanPortPromiscChangeFaultFault (line 53033) | type VspanPortPromiscChangeFaultFault
function init (line 53035) | func init() {
type VspanPortgroupPromiscChangeFault (line 53039) | type VspanPortgroupPromiscChangeFault struct
function init (line 53045) | func init() {
type VspanPortgroupPromiscChangeFaultFault (line 53049) | type VspanPortgroupPromiscChangeFaultFault
function init (line 53051) | func init() {
type VspanPortgroupTypeChangeFault (line 53055) | type VspanPortgroupTypeChangeFault struct
function init (line 53061) | func init() {
type VspanPortgroupTypeChangeFaultFault (line 53065) | type VspanPortgroupTypeChangeFaultFault
function init (line 53067) | func init() {
type VspanPromiscuousPortNotSupported (line 53071) | type VspanPromiscuousPortNotSupported struct
function init (line 53078) | func init() {
type VspanPromiscuousPortNotSupportedFault (line 53082) | type VspanPromiscuousPortNotSupportedFault
function init (line 53084) | func init() {
type VspanSameSessionPortConflict (line 53088) | type VspanSameSessionPortConflict struct
function init (line 53095) | func init() {
type VspanSameSessionPortConflictFault (line 53099) | type VspanSameSessionPortConflictFault
function init (line 53101) | func init() {
type VvolDatastoreInfo (line 53105) | type VvolDatastoreInfo struct
function init (line 53111) | func init() {
type WaitForUpdates (line 53115) | type WaitForUpdates
function init (line 53117) | func init() {
type WaitForUpdatesEx (line 53121) | type WaitForUpdatesEx
function init (line 53123) | func init() {
type WaitForUpdatesExRequestType (line 53127) | type WaitForUpdatesExRequestType struct
function init (line 53133) | func init() {
type WaitForUpdatesExResponse (line 53137) | type WaitForUpdatesExResponse struct
type WaitForUpdatesRequestType (line 53141) | type WaitForUpdatesRequestType struct
function init (line 53146) | func init() {
type WaitForUpdatesResponse (line 53150) | type WaitForUpdatesResponse struct
type WaitOptions (line 53154) | type WaitOptions struct
function init (line 53161) | func init() {
type WakeOnLanNotSupported (line 53165) | type WakeOnLanNotSupported struct
function init (line 53169) | func init() {
type WakeOnLanNotSupportedByVmotionNIC (line 53173) | type WakeOnLanNotSupportedByVmotionNIC struct
function init (line 53177) | func init() {
type WakeOnLanNotSupportedByVmotionNICFault (line 53181) | type WakeOnLanNotSupportedByVmotionNICFault
function init (line 53183) | func init() {
type WakeOnLanNotSupportedFault (line 53187) | type WakeOnLanNotSupportedFault
function init (line 53189) | func init() {
type WarningUpgradeEvent (line 53193) | type WarningUpgradeEvent struct
function init (line 53197) | func init() {
type WeeklyTaskScheduler (line 53201) | type WeeklyTaskScheduler struct
function init (line 53213) | func init() {
type WillLoseHAProtection (line 53217) | type WillLoseHAProtection struct
function init (line 53223) | func init() {
type WillLoseHAProtectionFault (line 53227) | type WillLoseHAProtectionFault
function init (line 53229) | func init() {
type WillModifyConfigCpuRequirements (line 53233) | type WillModifyConfigCpuRequirements struct
function init (line 53237) | func init() {
type WillModifyConfigCpuRequirementsFault (line 53241) | type WillModifyConfigCpuRequirementsFault
function init (line 53243) | func init() {
type WillResetSnapshotDirectory (line 53247) | type WillResetSnapshotDirectory struct
function init (line 53251) | func init() {
type WillResetSnapshotDirectoryFault (line 53255) | type WillResetSnapshotDirectoryFault
function init (line 53257) | func init() {
type WinNetBIOSConfigInfo (line 53261) | type WinNetBIOSConfigInfo struct
function init (line 53268) | func init() {
type WipeDiskFault (line 53272) | type WipeDiskFault struct
function init (line 53276) | func init() {
type WipeDiskFaultFault (line 53280) | type WipeDiskFaultFault
function init (line 53282) | func init() {
type WitnessNodeInfo (line 53286) | type WitnessNodeInfo struct
function init (line 53293) | func init() {
type XmlToCustomizationSpecItem (line 53297) | type XmlToCustomizationSpecItem
function init (line 53299) | func init() {
type XmlToCustomizationSpecItemRequestType (line 53303) | type XmlToCustomizationSpecItemRequestType struct
function init (line 53308) | func init() {
type XmlToCustomizationSpecItemResponse (line 53312) | type XmlToCustomizationSpecItemResponse struct
type ZeroFillVirtualDiskRequestType (line 53316) | type ZeroFillVirtualDiskRequestType struct
function init (line 53322) | func init() {
type ZeroFillVirtualDisk_Task (line 53326) | type ZeroFillVirtualDisk_Task
function init (line 53328) | func init() {
type ZeroFillVirtualDisk_TaskResponse (line 53332) | type ZeroFillVirtualDisk_TaskResponse struct
FILE: vendor/github.com/vmware/govmomi/vim25/types/types_test.go
function TestVirtualMachineConfigSpec (line 25) | func TestVirtualMachineConfigSpec(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/xml/atom_test.go
function ParseTime (line 44) | func ParseTime(str string) time.Time {
function NewText (line 52) | func NewText(text string) Text {
FILE: vendor/github.com/vmware/govmomi/vim25/xml/example_test.go
function ExampleMarshalIndent (line 13) | func ExampleMarshalIndent() {
function ExampleEncoder (line 53) | func ExampleEncoder() {
function ExampleUnmarshal (line 97) | func ExampleUnmarshal() {
FILE: vendor/github.com/vmware/govmomi/vim25/xml/extras.go
function stringToType (line 46) | func stringToType(s string) reflect.Type {
function typeToString (line 51) | func typeToString(typ reflect.Type) string {
FILE: vendor/github.com/vmware/govmomi/vim25/xml/extras_test.go
type MyType (line 26) | type MyType struct
function MyTypes (line 36) | func MyTypes(name string) (reflect.Type, bool) {
function TestMarshalWithEmptyInterface (line 41) | func TestMarshalWithEmptyInterface(t *testing.T) {
type VIntf (line 99) | type VIntf interface
type ValueType (line 103) | type ValueType struct
method V (line 111) | func (t ValueType) V() string {
type PointerType (line 107) | type PointerType struct
method V (line 115) | func (t *PointerType) V() string {
function TestMarshalWithInterface (line 119) | func TestMarshalWithInterface(t *testing.T) {
type test3iface (line 148) | type test3iface interface
type test3a (line 152) | type test3a struct
method Value (line 156) | func (t test3a) Value() string { return t.V }
type test3b (line 158) | type test3b struct
method Value (line 162) | func (t test3b) Value() string { return t.V }
function TestUnmarshalInterfaceWithoutTypeAttr (line 164) | func TestUnmarshalInterfaceWithoutTypeAttr(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/xml/marshal.go
constant Header (line 22) | Header = `` + "\n"
function Marshal (line 70) | func Marshal(v interface{}) ([]byte, error) {
type Marshaler (line 94) | type Marshaler interface
type MarshalerAttr (line 109) | type MarshalerAttr interface
function MarshalIndent (line 116) | func MarshalIndent(v interface{}, prefix, indent string) ([]byte, error) {
type Encoder (line 127) | type Encoder struct
method Indent (line 141) | func (enc *Encoder) Indent(prefix, indent string) {
method Encode (line 152) | func (enc *Encoder) Encode(v interface{}) error {
method EncodeElement (line 167) | func (enc *Encoder) EncodeElement(v interface{}, start StartElement) e...
method EncodeToken (line 193) | func (enc *Encoder) EncodeToken(t Token) error {
method Flush (line 246) | func (enc *Encoder) Flush() error {
function NewEncoder (line 132) | func NewEncoder(w io.Writer) *Encoder {
type printer (line 250) | type printer struct
method createAttrPrefix (line 267) | func (p *printer) createAttrPrefix(url string) string {
method deleteAttrPrefix (line 324) | func (p *printer) deleteAttrPrefix(prefix string) {
method markPrefix (line 329) | func (p *printer) markPrefix() {
method popPrefix (line 333) | func (p *printer) popPrefix() {
method marshalValue (line 352) | func (p *printer) marshalValue(val reflect.Value, finfo *fieldInfo, st...
method marshalInterface (line 587) | func (p *printer) marshalInterface(val Marshaler, start StartElement) ...
method marshalTextInterface (line 607) | func (p *printer) marshalTextInterface(val encoding.TextMarshaler, sta...
method writeStart (line 620) | func (p *printer) writeStart(start *StartElement) error {
method writeEnd (line 658) | func (p *printer) writeEnd(name Name) error {
method marshalSimple (line 682) | func (p *printer) marshalSimple(typ reflect.Type, val reflect.Value) (...
method marshalStruct (line 719) | func (p *printer) marshalStruct(tinfo *typeInfo, val reflect.Value) er...
method cachedWriteError (line 852) | func (p *printer) cachedWriteError() error {
method writeIndent (line 857) | func (p *printer) writeIndent(depthDelta int) {
function defaultStart (line 560) | func defaultStart(typ reflect.Type, finfo *fieldInfo, startTemplate *Sta...
type parentStack (line 888) | type parentStack struct
method trim (line 896) | func (s *parentStack) trim(parents []string) error {
method push (line 913) | func (s *parentStack) push(parents []string) error {
type UnsupportedTypeError (line 925) | type UnsupportedTypeError struct
method Error (line 929) | func (e *UnsupportedTypeError) Error() string {
function isEmptyValue (line 933) | func isEmptyValue(v reflect.Value) bool {
FILE: vendor/github.com/vmware/govmomi/vim25/xml/marshal_test.go
type DriveType (line 19) | type DriveType
constant HyperDrive (line 22) | HyperDrive DriveType = iota
constant ImprobabilityDrive (line 23) | ImprobabilityDrive
type Passenger (line 26) | type Passenger struct
type Ship (line 31) | type Ship struct
type NamedType (line 42) | type NamedType
type Port (line 44) | type Port struct
type Domain (line 51) | type Domain struct
type Book (line 58) | type Book struct
type Event (line 63) | type Event struct
type Movie (line 68) | type Movie struct
type Pi (line 73) | type Pi struct
type Universe (line 78) | type Universe struct
type Particle (line 83) | type Particle struct
type Departure (line 88) | type Departure struct
type SecretAgent (line 93) | type SecretAgent struct
type NestedItems (line 100) | type NestedItems struct
type NestedOrder (line 106) | type NestedOrder struct
type MixedNested (line 113) | type MixedNested struct
type NilTest (line 121) | type NilTest struct
type Service (line 127) | type Service struct
type EmbedA (line 137) | type EmbedA struct
type EmbedB (line 143) | type EmbedB struct
type EmbedC (line 148) | type EmbedC struct
type NameCasing (line 155) | type NameCasing struct
type NamePrecedence (line 163) | type NamePrecedence struct
type XMLNameWithTag (line 171) | type XMLNameWithTag struct
type XMLNameWithoutTag (line 176) | type XMLNameWithoutTag struct
type NameInField (line 181) | type NameInField struct
type AttrTest (line 185) | type AttrTest struct
type OmitAttrTest (line 195) | type OmitAttrTest struct
type OmitFieldTest (line 205) | type OmitFieldTest struct
type AnyTest (line 216) | type AnyTest struct
type AnyOmitTest (line 222) | type AnyOmitTest struct
type AnySliceTest (line 228) | type AnySliceTest struct
type AnyHolder (line 234) | type AnyHolder struct
type RecurseA (line 239) | type RecurseA struct
type RecurseB (line 244) | type RecurseB struct
type PresenceTest (line 249) | type PresenceTest struct
type IgnoreTest (line 253) | type IgnoreTest struct
type MyBytes (line 257) | type MyBytes
type Data (line 259) | type Data struct
type Plain (line 265) | type Plain struct
type MyInt (line 269) | type MyInt
type EmbedInt (line 271) | type EmbedInt struct
type Strings (line 275) | type Strings struct
type PointerFieldsTest (line 279) | type PointerFieldsTest struct
type ChardataEmptyTest (line 287) | type ChardataEmptyTest struct
type MyMarshalerTest (line 292) | type MyMarshalerTest struct
method MarshalXML (line 297) | func (m *MyMarshalerTest) MarshalXML(e *Encoder, start StartElement) e...
type MyMarshalerAttrTest (line 304) | type MyMarshalerAttrTest struct
method MarshalXMLAttr (line 309) | func (m *MyMarshalerAttrTest) MarshalXMLAttr(name Name) (Attr, error) {
type MarshalerStruct (line 313) | type MarshalerStruct struct
type InnerStruct (line 317) | type InnerStruct struct
type OuterStruct (line 321) | type OuterStruct struct
type OuterNamedStruct (line 326) | type OuterNamedStruct struct
type OuterNamedOrderedStruct (line 332) | type OuterNamedOrderedStruct struct
type OuterOuterStruct (line 338) | type OuterOuterStruct struct
function ifaceptr (line 342) | func ifaceptr(x interface{}) interface{} {
function TestMarshal (line 929) | func TestMarshal(t *testing.T) {
type AttrParent (line 949) | type AttrParent struct
type BadAttr (line 953) | type BadAttr struct
function TestMarshalErrors (line 1013) | func TestMarshalErrors(t *testing.T) {
function TestUnmarshal (line 1032) | func TestUnmarshal(t *testing.T) {
function TestMarshalIndent (line 1061) | func TestMarshalIndent(t *testing.T) {
type limitedBytesWriter (line 1074) | type limitedBytesWriter struct
method Write (line 1079) | func (lw *limitedBytesWriter) Write(p []byte) (n int, err error) {
function TestMarshalWriteErrors (line 1095) | func TestMarshalWriteErrors(t *testing.T) {
function TestMarshalWriteIOErrors (line 1123) | func TestMarshalWriteIOErrors(t *testing.T) {
function TestMarshalFlush (line 1133) | func TestMarshalFlush(t *testing.T) {
function BenchmarkMarshal (line 1150) | func BenchmarkMarshal(b *testing.B) {
function BenchmarkUnmarshal (line 1156) | func BenchmarkUnmarshal(b *testing.B) {
function TestStructPointerMarshal (line 1164) | func TestStructPointerMarshal(t *testing.T) {
function TestEncodeToken (line 1212) | func TestEncodeToken(t *testing.T) {
function TestProcInstEncodeToken (line 1234) | func TestProcInstEncodeToken(t *testing.T) {
function TestDecodeEncode (line 1251) | func TestDecodeEncode(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/xml/read.go
function Unmarshal (line 114) | func Unmarshal(data []byte, v interface{}) error {
method Decode (line 120) | func (d *Decoder) Decode(v interface{}) error {
method DecodeElement (line 128) | func (d *Decoder) DecodeElement(v interface{}, start *StartElement) error {
type UnmarshalError (line 137) | type UnmarshalError
method Error (line 139) | func (e UnmarshalError) Error() string { return string(e) }
type Unmarshaler (line 156) | type Unmarshaler interface
type UnmarshalerAttr (line 168) | type UnmarshalerAttr interface
function receiverType (line 173) | func receiverType(val interface{}) string {
method unmarshalInterface (line 183) | func (p *Decoder) unmarshalInterface(val Unmarshaler, start *StartElemen...
method unmarshalTextInterface (line 205) | func (p *Decoder) unmarshalTextInterface(val encoding.TextUnmarshaler, s...
method unmarshalAttr (line 228) | func (p *Decoder) unmarshalAttr(val reflect.Value, attr Attr) error {
method typeForElement (line 272) | func (p *Decoder) typeForElement(val reflect.Value, start *StartElement)...
method unmarshal (line 315) | func (p *Decoder) unmarshal(val reflect.Value, start *StartElement) error {
function copyValue (line 623) | func copyValue(dst reflect.Value, src []byte) (err error) {
method unmarshalPath (line 701) | func (p *Decoder) unmarshalPath(tinfo *typeInfo, sv reflect.Value, paren...
method Skip (line 766) | func (d *Decoder) Skip() error {
FILE: vendor/github.com/vmware/govmomi/vim25/xml/read_test.go
function TestUnmarshalFeed (line 17) | func TestUnmarshalFeed(t *testing.T) {
constant atomFeedString (line 28) | atomFeedString = `
type Feed (line 83) | type Feed struct
type Entry (line 93) | type Entry struct
type Link (line 102) | type Link struct
type Person (line 107) | type Person struct
type Text (line 114) | type Text struct
constant pathTestString (line 217) | pathTestString = `
type PathTestItem (line 239) | type PathTestItem struct
type PathTestA (line 243) | type PathTestA struct
type PathTestB (line 248) | type PathTestB struct
type PathTestC (line 253) | type PathTestC struct
type PathTestSet (line 259) | type PathTestSet struct
type PathTestD (line 263) | type PathTestD struct
type PathTestE (line 268) | type PathTestE struct
function TestUnmarshalPaths (line 281) | func TestUnmarshalPaths(t *testing.T) {
type BadPathTestA (line 293) | type BadPathTestA struct
type BadPathTestB (line 299) | type BadPathTestB struct
type BadPathTestC (line 305) | type BadPathTestC struct
type BadPathTestD (line 310) | type BadPathTestD struct
type BadPathEmbeddedA (line 315) | type BadPathEmbeddedA struct
type BadPathEmbeddedB (line 319) | type BadPathEmbeddedB struct
function TestUnmarshalBadPaths (line 332) | func TestUnmarshalBadPaths(t *testing.T) {
constant OK (line 341) | OK = "OK"
constant withoutNameTypeData (line 342) | withoutNameTypeData = `
type TestThree (line 346) | type TestThree struct
function TestUnmarshalWithoutNameType (line 351) | func TestUnmarshalWithoutNameType(t *testing.T) {
function TestUnmarshalAttr (line 361) | func TestUnmarshalAttr(t *testing.T) {
type Tables (line 405) | type Tables struct
function TestUnmarshalNS (line 465) | func TestUnmarshalNS(t *testing.T) {
function TestMarshalNS (line 487) | func TestMarshalNS(t *testing.T) {
type TableAttrs (line 500) | type TableAttrs struct
type TAttr (line 504) | type TAttr struct
function TestUnmarshalNSAttr (line 582) | func TestUnmarshalNSAttr(t *testing.T) {
function TestMarshalNSAttr (line 604) | func TestMarshalNSAttr(t *testing.T) {
type MyCharData (line 626) | type MyCharData struct
method UnmarshalXML (line 630) | func (m *MyCharData) UnmarshalXML(d *Decoder, start StartElement) error {
method UnmarshalXMLAttr (line 648) | func (m *MyCharData) UnmarshalXMLAttr(attr Attr) error {
type MyAttr (line 652) | type MyAttr struct
method UnmarshalXMLAttr (line 656) | func (m *MyAttr) UnmarshalXMLAttr(attr Attr) error {
type MyStruct (line 663) | type MyStruct struct
function TestUnmarshaler (line 671) | func TestUnmarshaler(t *testing.T) {
type Pea (line 689) | type Pea struct
type Pod (line 693) | type Pod struct
function TestUnmarshalIntoInterface (line 698) | func TestUnmarshalIntoInterface(t *testing.T) {
function TestNegativeValuesUnsignedFields (line 717) | func TestNegativeValuesUnsignedFields(t *testing.T) {
FILE: vendor/github.com/vmware/govmomi/vim25/xml/typeinfo.go
type typeInfo (line 15) | type typeInfo struct
type fieldInfo (line 21) | type fieldInfo struct
method value (line 352) | func (finfo *fieldInfo) value(v reflect.Value) reflect.Value {
type fieldFlags (line 29) | type fieldFlags
constant fElement (line 32) | fElement fieldFlags = 1 << iota
constant fAttr (line 33) | fAttr
constant fCharData (line 34) | fCharData
constant fInnerXml (line 35) | fInnerXml
constant fComment (line 36) | fComment
constant fAny (line 37) | fAny
constant fOmitEmpty (line 39) | fOmitEmpty
constant fTypeAttr (line 40) | fTypeAttr
constant fMode (line 42) | fMode = fElement | fAttr | fCharData | fInnerXml | fComment | fAny
function getTypeInfo (line 52) | func getTypeInfo(typ reflect.Type) (*typeInfo, error) {
function structFieldInfo (line 115) | func structFieldInfo(typ reflect.Type, f *reflect.StructField) (*fieldIn...
function lookupXMLName (line 233) | func lookupXMLName(typ reflect.Type) (xmlname *fieldInfo) {
function min (line 256) | func min(a, b int) int {
function addFieldInfo (line 270) | func addFieldInfo(typ reflect.Type, tinfo *typeInfo, newf *fieldInfo) er...
type TagPathError (line 339) | type TagPathError struct
method Error (line 345) | func (e *TagPathError) Error() string {
FILE: vendor/github.com/vmware/govmomi/vim25/xml/xml.go
type SyntaxError (line 30) | type SyntaxError struct
method Error (line 35) | func (e *SyntaxError) Error() string {
type Name (line 44) | type Name struct
type Attr (line 49) | type Attr struct
type Token (line 56) | type Token interface
type StartElement (line 59) | type StartElement struct
method Copy (line 64) | func (e StartElement) Copy() StartElement {
method End (line 72) | func (e StartElement) End() EndElement {
type EndElement (line 77) | type EndElement struct
type CharData (line 84) | type CharData
method Copy (line 92) | func (c CharData) Copy() CharData { return CharData(makeCopy(c)) }
function makeCopy (line 86) | func makeCopy(b []byte) []byte {
type Comment (line 96) | type Comment
method Copy (line 98) | func (c Comment) Copy() Comment { return Comment(makeCopy(c)) }
type ProcInst (line 101) | type ProcInst struct
method Copy (line 106) | func (p ProcInst) Copy() ProcInst {
type Directive (line 113) | type Directive
method Copy (line 115) | func (d Directive) Copy() Directive { return Directive(makeCopy(d)) }
function CopyToken (line 118) | func CopyToken(t Token) Token {
type Decoder (line 136) | type Decoder struct
method Token (line 242) | func (d *Decoder) Token() (t Token, err error) {
method translate (line 302) | func (d *Decoder) translate(n *Name, isElementName bool) {
method switchToReader (line 320) | func (d *Decoder) switchToReader(r io.Reader) {
method push (line 349) | func (d *Decoder) push(kind int) *stack {
method pop (line 362) | func (d *Decoder) pop() *stack {
method pushEOF (line 375) | func (d *Decoder) pushEOF() {
method popEOF (line 401) | func (d *Decoder) popEOF() bool {
method pushElement (line 410) | func (d *Decoder) pushElement(name Name) {
method pushNs (line 417) | func (d *Decoder) pushNs(local string, url string, ok bool) {
method syntaxError (line 425) | func (d *Decoder) syntaxError(msg string) error {
method popElement (line 435) | func (d *Decoder) popElement(t *EndElement) bool {
method autoClose (line 473) | func (d *Decoder) autoClose(t Token) (Token, bool) {
method RawToken (line 496) | func (d *Decoder) RawToken() (Token, error) {
method rawToken (line 503) | func (d *Decoder) rawToken() (Token, error) {
method attrval (line 793) | func (d *Decoder) attrval() []byte {
method space (line 828) | func (d *Decoder) space() {
method getc (line 847) | func (d *Decoder) getc() (b byte, ok bool) {
method savedOffset (line 871) | func (d *Decoder) savedOffset() int {
method mustgetc (line 883) | func (d *Decoder) mustgetc() (b byte, ok bool) {
method ungetc (line 893) | func (d *Decoder) ungetc(b byte) {
method text (line 912) | func (d *Decoder) text(quote int, cdata bool) []byte {
method nsname (line 1091) | func (d *Decoder) nsname() (name Name, ok bool) {
method name (line 1109) | func (d *Decoder) name() (s string, ok bool) {
method readName (line 1127) | func (d *Decoder) readName() (ok bool) {
function NewDecoder (line 209) | func NewDecoder(r io.Reader) *Decoder {
constant xmlURL (line 297) | xmlURL = "http://www.w3.org/XML/1998/namespace"
type stack (line 336) | type stack struct
constant stkStart (line 344) | stkStart = iota
constant stkNs (line 345) | stkNs
constant stkEOF (line 346) | stkEOF
function isInCharacterRange (line 1080) | func isInCharacterRange(r rune) (inrange bool) {
function isNameByte (line 1151) | func isNameByte(c byte) bool {
function isName (line 1158) | func isName(s []byte) bool {
function isNameString (line 1182) | func isNameString(s string) bool {
function EscapeText (line 1828) | func EscapeText(w io.Writer, s []byte) error {
method EscapeString (line 1874) | func (p *printer) EscapeString(s string) {
function Escape (line 1914) | func Escape(w io.Writer, s []byte) {
function procInstEncoding (line 1920) | func procInstEncoding(s string) string {
FILE: vendor/github.com/vmware/govmomi/vim25/xml/xml_test.go
constant testInput (line 17) | testInput = `
constant testInputAltEncoding (line 110) | testInputAltEncoding = `
function TestRawToken (line 170) | func TestRawToken(t *testing.T) {
constant nonStrictInput (line 176) | nonStrictInput = `
function TestNonStrictRawToken (line 225) | func TestNonStrictRawToken(t *testing.T) {
type downCaser (line 231) | type downCaser struct
method ReadByte (line 236) | func (d *downCaser) ReadByte() (c byte, err error) {
method Read (line 244) | func (d *downCaser) Read(p []byte) (int, error) {
function TestRawTokenAltEncoding (line 249) | func TestRawTokenAltEncoding(t *testing.T) {
function TestRawTokenAltEncodingNoConverter (line 260) | func TestRawTokenAltEncodingNoConverter(t *testing.T) {
function testRawToken (line 283) | func testRawToken(t *testing.T, d *Decoder, rawTokens []Token) {
function TestNestedDirectives (line 338) | func TestNestedDirectives(t *testing.T) {
function TestToken (line 352) | func TestToken(t *testing.T) {
function TestSyntax (line 367) | func TestSyntax(t *testing.T) {
type allScalars (line 379) | type allScalars struct
constant testScalarsInput (line 425) | testScalarsInput = `
function TestAllScalars (line 448) | func TestAllScalars(t *testing.T) {
type item (line 460) | type item struct
function TestIssue569 (line 464) | func TestIssue569(t *testing.T) {
function TestUnquotedAttrs (line 474) | func TestUnquotedAttrs(t *testing.T) {
function TestValuelessAttrs (line 494) | func TestValuelessAttrs(t *testing.T) {
function TestCopyTokenCharData (line 521) | func TestCopyTokenCharData(t *testing.T) {
function TestCopyTokenStartElement (line 534) | func TestCopyTokenStartElement(t *testing.T) {
function TestSyntaxErrorLineNum (line 550) | func TestSyntaxErrorLineNum(t *testing.T) {
function TestTrailingRawToken (line 565) | func TestTrailingRawToken(t *testing.T) {
function TestTrailingToken (line 576) | func TestTrailingToken(t *testing.T) {
function TestEntityInsideCDATA (line 587) | func TestEntityInsideCDATA(t *testing.T) {
function TestDisallowedCharacters (line 613) | func TestDisallowedCharacters(t *testing.T) {
type procInstEncodingTest (line 632) | type procInstEncodingTest struct
function TestProcInstEncoding (line 646) | func TestProcInstEncoding(t *testing.T) {
function TestDirectivesWithComments (line 674) | func TestDirectivesWithComments(t *testing.T) {
type errWriter (line 689) | type errWriter struct
method Write (line 691) | func (errWriter) Write(p []byte) (n int, err error) { return 0, fmt.Er...
function TestEscapeTextIOErrors (line 693) | func TestEscapeTextIOErrors(t *testing.T) {
function TestEscapeTextInvalidChar (line 702) | func TestEscapeTextInvalidChar(t *testing.T) {
function TestIssue5880 (line 717) | func TestIssue5880(t *testing.T) {
FILE: vendor/golang.org/x/net/bpf/asm.go
function Assemble (line 14) | func Assemble(insts []Instruction) ([]RawInstruction, error) {
function Disassemble (line 31) | func Disassemble(raw []RawInstruction) (insts []Instruction, allDecoded ...
FILE: vendor/golang.org/x/net/bpf/constants.go
type Register (line 8) | type Register
constant RegA (line 13) | RegA Register = iota
constant RegX (line 16) | RegX
type ALUOp (line 20) | type ALUOp
constant ALUOpAdd (line 24) | ALUOpAdd ALUOp = iota << 4
constant ALUOpSub (line 25) | ALUOpSub
constant ALUOpMul (line 26) | ALUOpMul
constant ALUOpDiv (line 27) | ALUOpDiv
constant ALUOpOr (line 28) | ALUOpOr
constant ALUOpAnd (line 29) | ALUOpAnd
constant ALUOpShiftLeft (line 30) | ALUOpShiftLeft
constant ALUOpShiftRight (line 31) | ALUOpShiftRight
constant aluOpNeg (line 32) | aluOpNeg
constant ALUOpMod (line 33) | ALUOpMod
constant ALUOpXor (line 34) | ALUOpXor
type JumpTest (line 38) | type JumpTest
constant JumpEqual (line 43) | JumpEqual JumpTest = iota
constant JumpNotEqual (line 45) | JumpNotEqual
constant JumpGreaterThan (line 47) | JumpGreaterThan
constant JumpLessThan (line 49) | JumpLessThan
constant JumpGreaterOrEqual (line 51) | JumpGreaterOrEqual
constant JumpLessOrEqual (line 53) | JumpLessOrEqual
constant JumpBitsSet (line 55) | JumpBitsSet
constant JumpBitsNotSet (line 57) | JumpBitsNotSet
type Extension (line 69) | type Extension
constant extOffset (line 75) | extOffset = -0x1000
constant ExtLen (line 77) | ExtLen Extension = 1
constant ExtProto (line 79) | ExtProto Extension = 0
constant ExtType (line 84) | ExtType Extension = 4
constant ExtPayloadOffset (line 88) | ExtPayloadOffset Extension = 52
constant ExtInterfaceIndex (line 91) | ExtInterfaceIndex Extension = 8
constant ExtNetlinkAttr (line 94) | ExtNetlinkAttr Extension = 12
constant ExtNetlinkAttrNested (line 97) | ExtNetlinkAttrNested Extension = 16
constant ExtMark (line 99) | ExtMark Extension = 20
constant ExtQueue (line 101) | ExtQueue Extension = 24
constant ExtLinkLayerType (line 104) | ExtLinkLayerType Extension = 28
constant ExtRXHash (line 108) | ExtRXHash Extension = 32
constant ExtCPUID (line 111) | ExtCPUID Extension = 36
constant ExtVLANTag (line 113) | ExtVLANTag Extension = 44
constant ExtVLANTagPresent (line 120) | ExtVLANTagPresent Extension = 48
constant ExtVLANProto (line 124) | ExtVLANProto Extension = 60
constant ExtRand (line 126) | ExtRand Extension = 56
constant opMaskCls (line 132) | opMaskCls uint16 = 0x7
constant opMaskLoadDest (line 134) | opMaskLoadDest = 0x01
constant opMaskLoadWidth (line 135) | opMaskLoadWidth = 0x18
constant opMaskLoadMode (line 136) | opMaskLoadMode = 0xe0
constant opMaskOperandSrc (line 138) | opMaskOperandSrc = 0x08
constant opMaskOperator (line 139) | opMaskOperator = 0xf0
constant opMaskJumpConst (line 141) | opMaskJumpConst = 0x0f
constant opMaskJumpCond (line 142) | opMaskJumpCond = 0xf0
constant opClsLoadA (line 149) | opClsLoadA uint16 = iota
constant opClsLoadX (line 153) | opClsLoadX
constant opClsStoreA (line 157) | opClsStoreA
constant opClsStoreX (line 161) | opClsStoreX
constant opClsALU (line 165) | opClsALU
constant opClsJump (line 169) | opClsJump
constant opClsReturn (line 173) | opClsReturn
constant opClsMisc (line 177) | opClsMisc
constant opAddrModeImmediate (line 181) | opAddrModeImmediate uint16 = iota << 5
constant opAddrModeAbsolute (line 182) | opAddrModeAbsolute
constant opAddrModeIndirect (line 183) | opAddrModeIndirect
constant opAddrModeScratch (line 184) | opAddrModeScratch
constant opAddrModePacketLen (line 185) | opAddrModePacketLen
constant opAddrModeMemShift (line 186) | opAddrModeMemShift
constant opLoadWidth4 (line 190) | opLoadWidth4 uint16 = iota << 3
constant opLoadWidth2 (line 191) | opLoadWidth2
constant opLoadWidth1 (line 192) | opLoadWidth1
constant opALUSrcConstant (line 198) | opALUSrcConstant uint16 = iota << 3
constant opALUSrcX (line 199) | opALUSrcX
constant opJumpAlways (line 203) | opJumpAlways = iota << 4
constant opJumpEqual (line 204) | opJumpEqual
constant opJumpGT (line 205) | opJumpGT
constant opJumpGE (line 206) | opJumpGE
constant opJumpSet (line 207) | opJumpSet
constant opRetSrcConstant (line 211) | opRetSrcConstant uint16 = iota << 4
constant opRetSrcA (line 212) | opRetSrcA
constant opMiscTAX (line 216) | opMiscTAX = 0x00
constant opMiscTXA (line 217) | opMiscTXA = 0x80
FILE: vendor/golang.org/x/net/bpf/instructions.go
type Instruction (line 11) | type Instruction interface
type RawInstruction (line 17) | type RawInstruction struct
method Assemble (line 29) | func (ri RawInstruction) Assemble() (RawInstruction, error) { return r...
method Disassemble (line 33) | func (ri RawInstruction) Disassemble() Instruction {
type LoadConstant (line 191) | type LoadConstant struct
method Assemble (line 197) | func (a LoadConstant) Assemble() (RawInstruction, error) {
method String (line 202) | func (a LoadConstant) String() string {
type LoadScratch (line 214) | type LoadScratch struct
method Assemble (line 220) | func (a LoadScratch) Assemble() (RawInstruction, error) {
method String (line 228) | func (a LoadScratch) String() string {
type LoadAbsolute (line 241) | type LoadAbsolute struct
method Assemble (line 247) | func (a LoadAbsolute) Assemble() (RawInstruction, error) {
method String (line 252) | func (a LoadAbsolute) String() string {
type LoadIndirect (line 270) | type LoadIndirect struct
method Assemble (line 276) | func (a LoadIndirect) Assemble() (RawInstruction, error) {
method String (line 281) | func (a LoadIndirect) String() string {
type LoadMemShift (line 300) | type LoadMemShift struct
method Assemble (line 305) | func (a LoadMemShift) Assemble() (RawInstruction, error) {
method String (line 310) | func (a LoadMemShift) String() string {
type LoadExtension (line 316) | type LoadExtension struct
method Assemble (line 321) | func (a LoadExtension) Assemble() (RawInstruction, error) {
method String (line 329) | func (a LoadExtension) String() string {
type StoreScratch (line 369) | type StoreScratch struct
method Assemble (line 375) | func (a StoreScratch) Assemble() (RawInstruction, error) {
method String (line 396) | func (a StoreScratch) String() string {
type ALUOpConstant (line 408) | type ALUOpConstant struct
method Assemble (line 414) | func (a ALUOpConstant) Assemble() (RawInstruction, error) {
method String (line 422) | func (a ALUOpConstant) String() string {
type ALUOpX (line 450) | type ALUOpX struct
method Assemble (line 455) | func (a ALUOpX) Assemble() (RawInstruction, error) {
method String (line 462) | func (a ALUOpX) String() string {
type NegateA (line 490) | type NegateA struct
method Assemble (line 493) | func (a NegateA) Assemble() (RawInstruction, error) {
method String (line 500) | func (a NegateA) String() string {
type Jump (line 505) | type Jump struct
method Assemble (line 510) | func (a Jump) Assemble() (RawInstruction, error) {
method String (line 518) | func (a Jump) String() string {
type JumpIf (line 524) | type JumpIf struct
method Assemble (line 532) | func (a JumpIf) Assemble() (RawInstruction, error) {
method String (line 570) | func (a JumpIf) String() string {
function conditionalJump (line 604) | func conditionalJump(inst JumpIf, positiveJump, negativeJump string) str...
type RetA (line 615) | type RetA struct
method Assemble (line 618) | func (a RetA) Assemble() (RawInstruction, error) {
method String (line 625) | func (a RetA) String() string {
type RetConstant (line 630) | type RetConstant struct
method Assemble (line 635) | func (a RetConstant) Assemble() (RawInstruction, error) {
method String (line 643) | func (a RetConstant) String() string {
type TXA (line 648) | type TXA struct
method Assemble (line 651) | func (a TXA) Assemble() (RawInstruction, error) {
method String (line 658) | func (a TXA) String() string {
type TAX (line 663) | type TAX struct
method Assemble (line 666) | func (a TAX) Assemble() (RawInstruction, error) {
method String (line 673) | func (a TAX) String() string {
function assembleLoad (line 677) | func assembleLoad(dst Register, loadSize int, mode uint16, k uint32) (Ra...
FILE: vendor/golang.org/x/net/bpf/instructions_test.go
function TestInterop (line 86) | func TestInterop(t *testing.T) {
function TestAsmDisasm (line 147) | func TestAsmDisasm(t *testing.T) {
type InvalidInstruction (line 177) | type InvalidInstruction struct
method Assemble (line 179) | func (a InvalidInstruction) Assemble() (RawInstruction, error) {
method String (line 183) | func (a InvalidInstruction) String() string {
function TestString (line 187) | func TestString(t *testing.T) {
FILE: vendor/golang.org/x/net/bpf/setter.go
type Setter (line 8) | type Setter interface
FILE: vendor/golang.org/x/net/bpf/vm.go
type VM (line 13) | type VM struct
method Run (line 78) | func (v *VM) Run(in []byte) (int, error) {
function NewVM (line 18) | func NewVM(filter []Instruction) (*VM, error) {
FILE: vendor/golang.org/x/net/bpf/vm_aluop_test.go
function TestVMALUOpAdd (line 13) | func TestVMALUOpAdd(t *testing.T) {
function TestVMALUOpSub (line 44) | func TestVMALUOpSub(t *testing.T) {
function TestVMALUOpMul (line 75) | func TestVMALUOpMul(t *testing.T) {
function TestVMALUOpDiv (line 106) | func TestVMALUOpDiv(t *testing.T) {
function TestVMALUOpDivByZeroALUOpConstant (line 137) | func TestVMALUOpDivByZeroALUOpConstant(t *testing.T) {
function TestVMALUOpDivByZeroALUOpX (line 150) | func TestVMALUOpDivByZeroALUOpX(t *testing.T) {
function TestVMALUOpOr (line 192) | func TestVMALUOpOr(t *testing.T) {
function TestVMALUOpAnd (line 225) | func TestVMALUOpAnd(t *testing.T) {
function TestVMALUOpShiftLeft (line 256) | func TestVMALUOpShiftLeft(t *testing.T) {
function TestVMALUOpShiftRight (line 297) | func TestVMALUOpShiftRight(t *testing.T) {
function TestVMALUOpMod (line 338) | func TestVMALUOpMod(t *testing.T) {
function TestVMALUOpModByZeroALUOpConstant (line 369) | func TestVMALUOpModByZeroALUOpConstant(t *testing.T) {
function TestVMALUOpModByZeroALUOpX (line 386) | func TestVMALUOpModByZeroALUOpX(t *testing.T) {
function TestVMALUOpXor (line 428) | func TestVMALUOpXor(t *testing.T) {
function TestVMALUOpUnknown (line 469) | func TestVMALUOpUnknown(t *testing.T) {
FILE: vendor/golang.org/x/net/bpf/vm_bpf_test.go
type virtualMachine (line 19) | type virtualMachine interface
function canUseOSVM (line 24) | func canUseOSVM() bool {
function testVM (line 42) | func testVM(t *testing.T, filter []bpf.Instruction) (virtualMachine, fun...
constant udpHeaderLen (line 70) | udpHeaderLen = 8
type multiVirtualMachine (line 74) | type multiVirtualMachine struct
method Run (line 81) | func (mvm *multiVirtualMachine) Run(in []byte) (int, error) {
type osVirtualMachine (line 132) | type osVirtualMachine struct
method Run (line 172) | func (vm *osVirtualMachine) Run(in []byte) (int, error) {
function testOSVM (line 139) | func testOSVM(t *testing.T, filter []bpf.Instruction) (virtualMachine, f...
FILE: vendor/golang.org/x/net/bpf/vm_extension_test.go
function TestVMLoadExtensionNotImplemented (line 13) | func TestVMLoadExtensionNotImplemented(t *testing.T) {
function TestVMLoadExtensionExtLen (line 25) | func TestVMLoadExtensionExtLen(t *testing.T) {
FILE: vendor/golang.org/x/net/bpf/vm_instructions.go
function aluOpConstant (line 12) | func aluOpConstant(ins ALUOpConstant, regA uint32) uint32 {
function aluOpX (line 16) | func aluOpX(ins ALUOpX, regA uint32, regX uint32) (uint32, bool) {
function aluOpCommon (line 29) | func aluOpCommon(op ALUOp, regA uint32, value uint32) uint32 {
function jumpIf (line 58) | func jumpIf(ins JumpIf, value uint32) int {
function loadAbsolute (line 88) | func loadAbsolute(ins LoadAbsolute, in []byte) (uint32, bool) {
function loadConstant (line 95) | func loadConstant(ins LoadConstant, regA uint32, regX uint32) (uint32, u...
function loadExtension (line 106) | func loadExtension(ins LoadExtension, in []byte) uint32 {
function loadIndirect (line 115) | func loadIndirect(ins LoadIndirect, in []byte, regX uint32) (uint32, boo...
function loadMemShift (line 122) | func loadMemShift(ins LoadMemShift, in []byte) (uint32, bool) {
function inBounds (line 133) | func inBounds(inLen int, offset int, size int) bool {
function loadCommon (line 137) | func loadCommon(in []byte, offset int, size int) (uint32, bool) {
function loadScratch (line 154) | func loadScratch(ins LoadScratch, regScratch [16]uint32, regA uint32, re...
function storeScratch (line 165) | func storeScratch(ins StoreScratch, regScratch [16]uint32, regA uint32, ...
FILE: vendor/golang.org/x/net/bpf/vm_jump_test.go
function TestVMJumpOne (line 13) | func TestVMJumpOne(t *testing.T) {
function TestVMJumpOutOfProgram (line 48) | func TestVMJumpOutOfProgram(t *testing.T) {
function TestVMJumpIfTrueOutOfProgram (line 60) | func TestVMJumpIfTrueOutOfProgram(t *testing.T) {
function TestVMJumpIfFalseOutOfProgram (line 73) | func TestVMJumpIfFalseOutOfProgram(t *testing.T) {
function TestVMJumpIfEqual (line 86) | func TestVMJumpIfEqual(t *testing.T) {
function TestVMJumpIfNotEqual (line 123) | func TestVMJumpIfNotEqual(t *testing.T) {
function TestVMJumpIfGreaterThan (line 160) | func TestVMJumpIfGreaterThan(t *testing.T) {
function TestVMJumpIfLessThan (line 197) | func TestVMJumpIfLessThan(t *testing.T) {
function TestVMJumpIfGreaterOrEqual (line 234) | func TestVMJumpIfGreaterOrEqual(t *testing.T) {
function TestVMJumpIfLessOrEqual (line 271) | func TestVMJumpIfLessOrEqual(t *testing.T) {
function TestVMJumpIfBitsSet (line 308) | func TestVMJumpIfBitsSet(t *testing.T) {
function TestVMJumpIfBitsNotSet (line 345) | func TestVMJumpIfBitsNotSet(t *testing.T) {
FILE: vendor/golang.org/x/net/bpf/vm_load_test.go
function TestVMLoadAbsoluteOffsetOutOfBounds (line 15) | func TestVMLoadAbsoluteOffsetOutOfBounds(t *testing.T) {
function TestVMLoadAbsoluteOffsetPlusSizeOutOfBounds (line 42) | func TestVMLoadAbsoluteOffsetPlusSizeOutOfBounds(t *testing.T) {
function TestVMLoadAbsoluteBadInstructionSize (line 69) | func TestVMLoadAbsoluteBadInstructionSize(t *testing.T) {
function TestVMLoadConstantOK (line 81) | func TestVMLoadConstantOK(t *testing.T) {
function TestVMLoadIndirectOutOfBounds (line 109) | func TestVMLoadIndirectOutOfBounds(t *testing.T) {
function TestVMLoadMemShiftOutOfBounds (line 136) | func TestVMLoadMemShiftOutOfBounds(t *testing.T) {
constant dhcp4Port (line 163) | dhcp4Port = 53
function TestVMLoadMemShiftLoadIndirectNoResult (line 166) | func TestVMLoadMemShiftLoadIndirectNoResult(t *testing.T) {
function TestVMLoadMemShiftLoadIndirectOK (line 188) | func TestVMLoadMemShiftLoadIndirectOK(t *testing.T) {
function testDHCPv4 (line 210) | func testDHCPv4(t *testing.T) (virtualMachine, []byte, func()) {
FILE: vendor/golang.org/x/net/bpf/vm_ret_test.go
function TestVMRetA (line 13) | func TestVMRetA(t *testing.T) {
function TestVMRetALargerThanInput (line 40) | func TestVMRetALargerThanInput(t *testing.T) {
function TestVMRetConstant (line 67) | func TestVMRetConstant(t *testing.T) {
function TestVMRetConstantLargerThanInput (line 92) | func TestVMRetConstantLargerThanInput(t *testing.T) {
FILE: vendor/golang.org/x/net/bpf/vm_scratch_test.go
function TestVMStoreScratchInvalidScratchRegisterTooSmall (line 13) | func TestVMStoreScratchInvalidScratchRegisterTooSmall(t *testing.T) {
function TestVMStoreScratchInvalidScratchRegisterTooLarge (line 26) | func TestVMStoreScratchInvalidScratchRegisterTooLarge(t *testing.T) {
function TestVMStoreScratchUnknownSourceRegister (line 39) | func TestVMStoreScratchUnknownSourceRegister(t *testing.T) {
function TestVMLoadScratchInvalidScratchRegisterTooSmall (line 52) | func TestVMLoadScratchInvalidScratchRegisterTooSmall(t *testing.T) {
function TestVMLoadScratchInvalidScratchRegisterTooLarge (line 65) | func TestVMLoadScratchInvalidScratchRegisterTooLarge(t *testing.T) {
function TestVMLoadScratchUnknownDestinationRegister (line 78) | func TestVMLoadScratchUnknownDestinationRegister(t *testing.T) {
function TestVMStoreScratchLoadScratchOneValue (line 91) | func TestVMStoreScratchLoadScratchOneValue(t *testing.T) {
function TestVMStoreScratchLoadScratchMultipleValues (line 136) | func TestVMStoreScratchLoadScratchMultipleValues(t *testing.T) {
FILE: vendor/golang.org/x/net/bpf/vm_test.go
type unknown (line 16) | type unknown struct
method Assemble (line 18) | func (unknown) Assemble() (bpf.RawInstruction, error) {
function TestVMUnknownInstruction (line 22) | func TestVMUnknownInstruction(t *testing.T) {
function TestVMNoReturnInstruction (line 47) | func TestVMNoReturnInstruction(t *testing.T) {
function TestVMNoInputInstructions (line 59) | func TestVMNoInputInstructions(t *testing.T) {
function ExampleNewVM (line 68) | func ExampleNewVM() {
function errStr (line 138) | func errStr(err error) string {
FILE: vendor/golang.org/x/net/context/context.go
function Background (line 45) | func Background() Context {
function TODO (line 54) | func TODO() Context {
FILE: vendor/golang.org/x/net/context/context_test.go
type otherContext (line 22) | type otherContext struct
function TestBackground (line 26) | func TestBackground(t *testing.T) {
function TestTODO (line 41) | func TestTODO(t *testing.T) {
function TestWithCancel (line 56) | func TestWithCancel(t *testing.T) {
function TestParentFinishesChild (line 97) | func TestParentFinishesChild(t *testing.T) {
function TestChildFinishesFirst (line 174) | func TestChildFinishesFirst(t *testing.T) {
function testDeadline (line 234) | func testDeadline(c Context, wait time.Duration, t *testing.T) {
function TestDeadline (line 245) | func TestDeadline(t *testing.T) {
function TestTimeout (line 264) | func TestTimeout(t *testing.T) {
function TestCanceledTimeout (line 283) | func TestCanceledTimeout(t *testing.T) {
type key1 (line 301) | type key1
type key2 (line 302) | type key2
function TestValues (line 308) | func TestValues(t *testing.T) {
function TestAllocs (line 356) | func TestAllocs(t *testing.T) {
function TestSimultaneousCancels (line 421) | func TestSimultaneousCancels(t *testing.T) {
function TestInterlockedCancels (line 469) | func TestInterlockedCancels(t *testing.T) {
function TestLayersCancel (line 486) | func TestLayersCancel(t *testing.T) {
function TestLayersTimeout (line 490) | func TestLayersTimeout(t *testing.T) {
function testLayers (line 494) | func testLayers(t *testing.T, seed int64, testTimeout bool) {
function TestCancelRemoves (line 563) | func TestCancelRemoves(t *testing.T) {
FILE: vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go
function Do (line 26) | func Do(ctx context.Context, client *http.Client, req *http.Request) (*h...
function Get (line 44) | func Get(ctx context.Context, client *http.Client, url string) (*http.Re...
function Head (line 53) | func Head(ctx context.Context, client *http.Client, url string) (*http.R...
function Post (line 62) | func Post(ctx context.Context, client *http.Client, url string, bodyType...
function PostForm (line 72) | func PostForm(ctx context.Context, client *http.Client, url string, data...
FILE: vendor/golang.org/x/net/context/ctxhttp/ctxhttp_17_test.go
function TestGo17Context (line 18) | func TestGo17Context(t *testing.T) {
FILE: vendor/golang.org/x/net/context/ctxhttp/ctxhttp_pre17.go
function nop (line 18) | func nop() {}
function Do (line 29) | func Do(ctx context.Context, client *http.Client, req *http.Request) (*h...
function Get (line 92) | func Get(ctx context.Context, client *http.Client, url string) (*http.Re...
function Head (line 101) | func Head(ctx context.Context, client *http.Client, url string) (*http.R...
function Post (line 110) | func Post(ctx context.Context, client *http.Client, url string, bodyType...
function PostForm (line 120) | func PostForm(ctx context.Context, client *http.Client, url string, data...
type notifyingReader (line 126) | type notifyingReader struct
method Read (line 131) | func (r *notifyingReader) Read(p []byte) (int, error) {
method Close (line 140) | func (r *notifyingReader) Close() error {
FILE: vendor/golang.org/x/net/context/ctxhttp/ctxhttp_pre17_test.go
function TestClosesResponseBodyOnCancel (line 21) | func TestClosesResponseBodyOnCancel(t *testing.T) {
type noteCloseConn (line 70) | type noteCloseConn struct
method Close (line 76) | func (c *noteCloseConn) Close() error {
FILE: vendor/golang.org/x/net/context/ctxhttp/ctxhttp_test.go
constant requestDuration (line 21) | requestDuration = 100 * time.Millisecond
constant requestBody (line 22) | requestBody = "ok"
function okHandler (line 25) | func okHandler(w http.ResponseWriter, r *http.Request) {
function TestNoTimeout (line 30) | func TestNoTimeout(t *testing.T) {
function TestCancelBeforeHeaders (line 49) | func TestCancelBeforeHeaders(t *testing.T) {
function TestCancelAfterHangingRequest (line 71) | func TestCancelAfterHangingRequest(t *testing.T) {
FILE: vendor/golang.org/x/net/context/go17.go
function WithCancel (line 32) | func WithCancel(parent Context) (ctx Context, cancel CancelFunc) {
function WithDeadline (line 46) | func WithDeadline(parent Context, deadline time.Time) (Context, CancelFu...
function WithTimeout (line 61) | func WithTimeout(parent Context, timeout time.Duration) (Context, Cancel...
function WithValue (line 70) | func WithValue(parent Context, key interface{}, val interface{}) Context {
FILE: vendor/golang.org/x/net/context/pre_go17.go
type emptyCtx (line 18) | type emptyCtx
method Deadline (line 20) | func (*emptyCtx) Deadline() (deadline time.Time, ok bool) {
method Done (line 24) | func (*emptyCtx) Done() <-chan struct{} {
method Err (line 28) | func (*emptyCtx) Err() error {
method Value (line 32) | func (*emptyCtx) Value(key interface{}) interface{} {
method String (line 36) | func (e *emptyCtx) String() string {
function WithCancel (line 64) | func WithCancel(parent Context) (ctx Context, cancel CancelFunc) {
function newCancelCtx (line 71) | func newCancelCtx(parent Context) *cancelCtx {
function propagateCancel (line 79) | func propagateCancel(parent Context, child canceler) {
function parentCancelCtx (line 109) | func parentCancelCtx(parent Context) (*cancelCtx, bool) {
function removeChild (line 125) | func removeChild(parent Context, child canceler) {
type canceler (line 139) | type canceler interface
type cancelCtx (line 146) | type cancelCtx struct
method Done (line 156) | func (c *cancelCtx) Done() <-chan struct{} {
method Err (line 160) | func (c *cancelCtx) Err() error {
method String (line 166) | func (c *cancelCtx) String() string {
method cancel (line 172) | func (c *cancelCtx) cancel(removeFromParent bool, err error) {
function WithDeadline (line 204) | func WithDeadline(parent Context, deadline time.Time) (Context, CancelFu...
type timerCtx (line 232) | type timerCtx struct
method Deadline (line 239) | func (c *timerCtx) Deadline() (deadline time.Time, ok bool) {
method String (line 243) | func (c *timerCtx) String() string {
method cancel (line 247) | func (c *timerCtx) cancel(removeFromParent bool, err error) {
function WithTimeout (line 271) | func WithTimeout(parent Context, timeout time.Duration) (Context, Cancel...
function WithValue (line 280) | func WithValue(parent Context, key interface{}, val interface{}) Context {
type valueCtx (line 286) | type valueCtx struct
method String (line 291) | func (c *valueCtx) String() string {
method Value (line 295) | func (c *valueCtx) Value(key interface{}) interface{} {
FILE: vendor/golang.org/x/net/context/pre_go19.go
type Context (line 15) | type Context interface
type CancelFunc (line 109) | type CancelFunc
FILE: vendor/golang.org/x/net/context/withtimeout_test.go
function ExampleWithTimeout (line 16) | func ExampleWithTimeout() {
FILE: vendor/golang.org/x/net/dict/dict.go
type Client (line 16) | type Client struct
method Close (line 36) | func (c *Client) Close() error {
method Dicts (line 47) | func (c *Client) Dicts() ([]Dict, error) {
method Define (line 95) | func (c *Client) Define(dict, word string) ([]*Defn, error) {
function Dial (line 22) | func Dial(network, addr string) (*Client, error) {
type Dict (line 41) | type Dict struct
type Defn (line 80) | type Defn struct
function fields (line 144) | func fields(s string) ([]string, error) {
function unquote (line 194) | func unquote(s string) string {
FILE: vendor/golang.org/x/net/dns/dnsmessage/example_test.go
function mustNewName (line 15) | func mustNewName(name string) dnsmessage.Name {
function ExampleParser (line 23) | func ExampleParser() {
FILE: vendor/golang.org/x/net/dns/dnsmessage/message.go
type Type (line 19) | type Type
type Class (line 22) | type Class
type OpCode (line 25) | type OpCode
type RCode (line 28) | type RCode
constant TypeA (line 33) | TypeA Type = 1
constant TypeNS (line 34) | TypeNS Type = 2
constant TypeCNAME (line 35) | TypeCNAME Type = 5
constant TypeSOA (line 36) | TypeSOA Type = 6
constant TypePTR (line 37) | TypePTR Type = 12
constant TypeMX (line 38) | TypeMX Type = 15
constant TypeTXT (line 39) | TypeTXT Type = 16
constant TypeAAAA (line 40) | TypeAAAA Type = 28
constant TypeSRV (line 41) | TypeSRV Type = 33
constant TypeWKS (line 44) | TypeWKS Type = 11
constant TypeHINFO (line 45) | TypeHINFO Type = 13
constant TypeMINFO (line 46) | TypeMINFO Type = 14
constant TypeAXFR (line 47) | TypeAXFR Type = 252
constant TypeALL (line 48) | TypeALL Type = 255
constant ClassINET (line 51) | ClassINET Class = 1
constant ClassCSNET (line 52) | ClassCSNET Class = 2
constant ClassCHAOS (line 53) | ClassCHAOS Class = 3
constant ClassHESIOD (line 54) | ClassHESIOD Class = 4
constant ClassANY (line 57) | ClassANY Class = 255
constant RCodeSuccess (line 60) | RCodeSuccess RCode = 0
constant RCodeFormatError (line 61) | RCodeFormatError RCode = 1
constant RCodeServerFailure (line 62) | RCodeServerFailure RCode = 2
constant RCodeNameError (line 63) | RCodeNameError RCode = 3
constant RCodeNotImplemented (line 64) | RCodeNotImplemented RCode = 4
constant RCodeRefused (line 65) | RCodeRefused RCode = 5
constant packStartingCap (line 102) | packStartingCap = 512
constant uint16Len (line 105) | uint16Len = 2
constant uint32Len (line 108) | uint32Len = 4
constant headerLen (line 113) | headerLen = 6 * uint16Len
type nestedError (line 116) | type nestedError struct
method Error (line 125) | func (e *nestedError) Error() string {
type Header (line 130) | type Header struct
method pack (line 141) | func (m *Header) pack() (id uint16, bits uint16) {
type Message (line 163) | type Message struct
method Unpack (line 769) | func (m *Message) Unpack(msg []byte) error {
method Pack (line 791) | func (m *Message) Pack() ([]byte, error) {
type section (line 171) | type section
constant sectionNotStarted (line 174) | sectionNotStarted section = iota
constant sectionHeader (line 175) | sectionHeader
constant sectionQuestions (line 176) | sectionQuestions
constant sectionAnswers (line 177) | sectionAnswers
constant sectionAuthorities (line 178) | sectionAuthorities
constant sectionAdditionals (line 179) | sectionAdditionals
constant sectionDone (line 180) | sectionDone
constant headerBitQR (line 182) | headerBitQR = 1 << 15
constant headerBitAA (line 183) | headerBitAA = 1 << 10
constant headerBitTC (line 184) | headerBitTC = 1 << 9
constant headerBitRD (line 185) | headerBitRD = 1 << 8
constant headerBitRA (line 186) | headerBitRA = 1 << 7
type header (line 198) | type header struct
method count (line 207) | func (h *header) count(sec section) uint16 {
method pack (line 221) | func (h *header) pack(msg []byte) []byte {
method unpack (line 230) | func (h *header) unpack(msg []byte, off int) (int, error) {
method header (line 254) | func (h *header) header() Header {
type Resource (line 268) | type Resource struct
method pack (line 283) | func (r *Resource) pack(msg []byte, compression map[string]int) ([]byt...
type ResourceBody (line 274) | type ResourceBody interface
type Parser (line 316) | type Parser struct
method Start (line 328) | func (p *Parser) Start(msg []byte) (Header, error) {
method checkAdvance (line 341) | func (p *Parser) checkAdvance(sec section) error {
method resource (line 357) | func (p *Parser) resource(sec section) (Resource, error) {
method resourceHeader (line 373) | func (p *Parser) resourceHeader(sec section) (ResourceHeader, error) {
method skipResource (line 391) | func (p *Parser) skipResource(sec section) error {
method Question (line 415) | func (p *Parser) Question() (Question, error) {
method AllQuestions (line 438) | func (p *Parser) AllQuestions() ([]Question, error) {
method SkipQuestion (line 453) | func (p *Parser) SkipQuestion() error {
method SkipAllQuestions (line 473) | func (p *Parser) SkipAllQuestions() error {
method AnswerHeader (line 484) | func (p *Parser) AnswerHeader() (ResourceHeader, error) {
method Answer (line 489) | func (p *Parser) Answer() (Resource, error) {
method AllAnswers (line 494) | func (p *Parser) AllAnswers() ([]Resource, error) {
method SkipAnswer (line 509) | func (p *Parser) SkipAnswer() error {
method SkipAllAnswers (line 514) | func (p *Parser) SkipAllAnswers() error {
method AuthorityHeader (line 525) | func (p *Parser) AuthorityHeader() (ResourceHeader, error) {
method Authority (line 530) | func (p *Parser) Authority() (Resource, error) {
method AllAuthorities (line 535) | func (p *Parser) AllAuthorities() ([]Resource, error) {
method SkipAuthority (line 550) | func (p *Parser) SkipAuthority() error {
method SkipAllAuthorities (line 555) | func (p *Parser) SkipAllAuthorities() error {
method AdditionalHeader (line 566) | func (p *Parser) AdditionalHeader() (ResourceHeader, error) {
method Additional (line 571) | func (p *Parser) Additional() (Resource, error) {
method AllAdditionals (line 576) | func (p *Parser) AllAdditionals() ([]Resource, error) {
method SkipAdditional (line 591) | func (p *Parser) SkipAdditional() error {
method SkipAllAdditionals (line 596) | func (p *Parser) SkipAllAdditionals() error {
method CNAMEResource (line 610) | func (p *Parser) CNAMEResource() (CNAMEResource, error) {
method MXResource (line 628) | func (p *Parser) MXResource() (MXResource, error) {
method NSResource (line 646) | func (p *Parser) NSResource() (NSResource, error) {
method PTRResource (line 664) | func (p *Parser) PTRResource() (PTRResource, error) {
method SOAResource (line 682) | func (p *Parser) SOAResource() (SOAResource, error) {
method TXTResource (line 700) | func (p *Parser) TXTResource() (TXTResource, error) {
method SRVResource (line 718) | func (p *Parser) SRVResource() (SRVResource, error) {
method AResource (line 736) | func (p *Parser) AResource() (AResource, error) {
method AAAAResource (line 754) | func (p *Parser) AAAAResource() (AAAAResource, error) {
type Builder (line 859) | type Builder struct
method Start (line 869) | func (b *Builder) Start(buf []byte, h Header) {
method StartWithoutCompression (line 881) | func (b *Builder) StartWithoutCompression(buf []byte, h Header) {
method startCheck (line 891) | func (b *Builder) startCheck(s section) error {
method StartQuestions (line 902) | func (b *Builder) StartQuestions() error {
method StartAnswers (line 911) | func (b *Builder) StartAnswers() error {
method StartAuthorities (line 920) | func (b *Builder) StartAuthorities() error {
method StartAdditionals (line 929) | func (b *Builder) StartAdditionals() error {
method incrementSectionCount (line 937) | func (b *Builder) incrementSectionCount() error {
method Question (line 962) | func (b *Builder) Question(q Question) error {
method checkResourceSection (line 980) | func (b *Builder) checkResourceSection() error {
method CNAMEResource (line 991) | func (b *Builder) CNAMEResource(h ResourceHeader, r CNAMEResource) err...
method MXResource (line 1015) | func (b *Builder) MXResource(h ResourceHeader, r MXResource) error {
method NSResource (line 1039) | func (b *Builder) NSResource(h ResourceHeader, r NSResource) error {
method PTRResource (line 1063) | func (b *Builder) PTRResource(h ResourceHeader, r PTRResource) error {
method SOAResource (line 1087) | func (b *Builder) SOAResource(h ResourceHeader, r SOAResource) error {
method TXTResource (line 1111) | func (b *Builder) TXTResource(h ResourceHeader, r TXTResource) error {
method SRVResource (line 1135) | func (b *Builder) SRVResource(h ResourceHeader, r SRVResource) error {
method AResource (line 1159) | func (b *Builder) AResource(h ResourceHeader, r AResource) error {
method AAAAResource (line 1183) | func (b *Builder) AAAAResource(h ResourceHeader, r AAAAResource) error {
method Finish (line 1207) | func (b *Builder) Finish() ([]byte, error) {
type ResourceHeader (line 1218) | type ResourceHeader struct
method pack (line 1245) | func (h *ResourceHeader) pack(oldMsg []byte, compression map[string]in...
method unpack (line 1258) | func (h *ResourceHeader) unpack(msg []byte, off int) (int, error) {
method fixLen (line 1279) | func (h *ResourceHeader) fixLen(msg []byte, length []byte, preLen int)...
function skipResource (line 1292) | func skipResource(msg []byte, off int) (int, error) {
function packUint16 (line 1316) | func packUint16(msg []byte, field uint16) []byte {
function unpackUint16 (line 1320) | func unpackUint16(msg []byte, off int) (uint16, int, error) {
function skipUint16 (line 1327) | func skipUint16(msg []byte, off int) (int, error) {
function packType (line 1334) | func packType(msg []byte, field Type) []byte {
function unpackType (line 1338) | func unpackType(msg []byte, off int) (Type, int, error) {
function skipType (line 1343) | func skipType(msg []byte, off int) (int, error) {
function packClass (line 1347) | func packClass(msg []byte, field Class) []byte {
function unpackClass (line 1351) | func unpackClass(msg []byte, off int) (Class, int, error) {
function skipClass (line 1356) | func skipClass(msg []byte, off int) (int, error) {
function packUint32 (line 1360) | func packUint32(msg []byte, field uint32) []byte {
function unpackUint32 (line 1370) | func unpackUint32(msg []byte, off int) (uint32, int, error) {
function skipUint32 (line 1378) | func skipUint32(msg []byte, off int) (int, error) {
function packText (line 1385) | func packText(msg []byte, field string) []byte {
function unpackText (line 1398) | func unpackText(msg []byte, off int) (string, int, error) {
function skipText (line 1410) | func skipText(msg []byte, off int) (int, error) {
function packBytes (line 1421) | func packBytes(msg []byte, field []byte) []byte {
function unpackBytes (line 1425) | func unpackBytes(msg []byte, off int, field []byte) (int, error) {
function skipBytes (line 1434) | func skipBytes(msg []byte, off int, field []byte) (int, error) {
constant nameLen (line 1442) | nameLen = 255
type Name (line 1446) | type Name struct
method String (line 1461) | func (n Name) String() string {
method pack (line 1472) | func (n *Name) pack(msg []byte, compression map[string]int) ([]byte, e...
method unpack (line 1532) | func (n *Name) unpack(msg []byte, off int) (int, error) {
function NewName (line 1452) | func NewName(name string) (Name, error) {
function skipName (line 1599) | func skipName(msg []byte, off int) (int, error) {
type Question (line 1641) | type Question struct
method pack (line 1647) | func (q *Question) pack(msg []byte, compression map[string]int) ([]byt...
function unpackResourceBody (line 1656) | func unpackResourceBody(msg []byte, off int, hdr ResourceHeader) (Resour...
type CNAMEResource (line 1719) | type CNAMEResource struct
method realType (line 1723) | func (r *CNAMEResource) realType() Type {
method pack (line 1727) | func (r *CNAMEResource) pack(msg []byte, compression map[string]int) (...
function unpackCNAMEResource (line 1731) | func unpackCNAMEResource(msg []byte, off int) (CNAMEResource, error) {
type MXResource (line 1740) | type MXResource struct
method realType (line 1745) | func (r *MXResource) realType() Type {
method pack (line 1749) | func (r *MXResource) pack(msg []byte, compression map[string]int) ([]b...
function unpackMXResource (line 1759) | func unpackMXResource(msg []byte, off int) (MXResource, error) {
type NSResource (line 1772) | type NSResource struct
method realType (line 1776) | func (r *NSResource) realType() Type {
method pack (line 1780) | func (r *NSResource) pack(msg []byte, compression map[string]int) ([]b...
function unpackNSResource (line 1784) | func unpackNSResource(msg []byte, off int) (NSResource, error) {
type PTRResource (line 1793) | type PTRResource struct
method realType (line 1797) | func (r *PTRResource) realType() Type {
method pack (line 1801) | func (r *PTRResource) pack(msg []byte, compression map[string]int) ([]...
function unpackPTRResource (line 1805) | func unpackPTRResource(msg []byte, off int) (PTRResource, error) {
type SOAResource (line 1814) | type SOAResource struct
method realType (line 1828) | func (r *SOAResource) realType() Type {
method pack (line 1832) | func (r *SOAResource) pack(msg []byte, compression map[string]int) ([]...
function unpackSOAResource (line 1849) | func unpackSOAResource(msg []byte, off int) (SOAResource, error) {
type TXTResource (line 1883) | type TXTResource struct
method realType (line 1887) | func (r *TXTResource) realType() Type {
method pack (line 1891) | func (r *TXTResource) pack(msg []byte, compression map[string]int) ([]...
function unpackTXTResource (line 1895) | func unpackTXTResource(msg []byte, off int, length uint16) (TXTResource,...
type SRVResource (line 1914) | type SRVResource struct
method realType (line 1921) | func (r *SRVResource) realType() Type {
method pack (line 1925) | func (r *SRVResource) pack(msg []byte, compression map[string]int) ([]...
function unpackSRVResource (line 1937) | func unpackSRVResource(msg []byte, off int) (SRVResource, error) {
type AResource (line 1958) | type AResource struct
method realType (line 1962) | func (r *AResource) realType() Type {
method pack (line 1966) | func (r *AResource) pack(msg []byte, compression map[string]int) ([]by...
function unpackAResource (line 1970) | func unpackAResource(msg []byte, off int) (AResource, error) {
type AAAAResource (line 1979) | type AAAAResource struct
method realType (line 1983) | func (r *AAAAResource) realType() Type {
method pack (line 1987) | func (r *AAAAResource) pack(msg []byte, compression map[string]int) ([...
function unpackAAAAResource (line 1991) | func unpackAAAAResource(msg []byte, off int) (AAAAResource, error) {
FILE: vendor/golang.org/x/net/dns/dnsmessage/message_test.go
function mustNewName (line 14) | func mustNewName(name string) Name {
method String (line 22) | func (m *Message) String() string {
function TestNameString (line 51) | func TestNameString(t *testing.T) {
function TestQuestionPackUnpack (line 59) | func TestQuestionPackUnpack(t *testing.T) {
function TestName (line 86) | func TestName(t *testing.T) {
function TestNamePackUnpack (line 112) | func TestNamePackUnpack(t *testing.T) {
function checkErrorPrefix (line 160) | func checkErrorPrefix(err error, prefix string) bool {
function TestHeaderUnpackError (line 165) | func TestHeaderUnpackError(t *testing.T) {
function TestParserStart (line 185) | func TestParserStart(t *testing.T) {
function TestResourceNotStarted (line 196) | func TestResourceNotStarted(t *testing.T) {
function TestDNSPackUnpack (line 219) | func TestDNSPackUnpack(t *testing.T) {
function TestSkipAll (line 251) | func TestSkipAll(t *testing.T) {
function TestSkipEach (line 280) | func TestSkipEach(t *testing.T) {
function TestSkipAfterRead (line 311) | func TestSkipAfterRead(t *testing.T) {
function TestSkipNotStarted (line 343) | func TestSkipNotStarted(t *testing.T) {
function TestTooManyRecords (line 362) | func TestTooManyRecords(t *testing.T) {
function TestVeryLongTxt (line 406) | func TestVeryLongTxt(t *testing.T) {
function TestStartError (line 437) | func TestStartError(t *testing.T) {
function TestBuilderResourceError (line 466) | func TestBuilderResourceError(t *testing.T) {
function TestFinishError (line 502) | func TestFinishError(t *testing.T) {
function TestBuilder (line 510) | func TestBuilder(t *testing.T) {
function TestResourcePack (line 600) | func TestResourcePack(t *testing.T) {
function BenchmarkParsing (line 656) | func BenchmarkParsing(b *testing.B) {
function BenchmarkBuilding (line 755) | func BenchmarkBuilding(b *testing.B) {
function smallTestMsg (line 811) | func smallTestMsg() Message {
function largeTestMsg (line 855) | func largeTestMsg() Message {
constant loremIpsum (line 987) | loremIpsum = `
FILE: vendor/golang.org/x/net/html/atom/atom.go
type Atom (line 21) | type Atom
method String (line 24) | func (a Atom) String() string {
method string (line 33) | func (a Atom) string() string {
function fnv (line 38) | func fnv(h uint32, s []byte) uint32 {
function match (line 46) | func match(s string, t []byte) bool {
function Lookup (line 57) | func Lookup(s []byte) Atom {
function String (line 73) | func String(s []byte) string {
FILE: vendor/golang.org/x/net/html/atom/atom_test.go
function TestKnown (line 12) | func TestKnown(t *testing.T) {
function TestHits (line 20) | func TestHits(t *testing.T) {
function TestMisses (line 32) | func TestMisses(t *testing.T) {
function TestForeignObject (line 68) | func TestForeignObject(t *testing.T) {
function BenchmarkLookup (line 89) | func BenchmarkLookup(b *testing.B) {
FILE: vendor/golang.org/x/net/html/atom/gen.go
function identifier (line 26) | func identifier(s string) string {
function genFile (line 45) | func genFile(name string, buf *bytes.Buffer) {
function main (line 57) | func main() {
type byLen (line 219) | type byLen
method Less (line 221) | func (x byLen) Less(i, j int) bool { return len(x[i]) > len(x[j]) }
method Swap (line 222) | func (x byLen) Swap(i, j int) { x[i], x[j] = x[j], x[i] }
method Len (line 223) | func (x byLen) Len() int { return len(x) }
function fnv (line 226) | func fnv(h uint32, s string) uint32 {
type table (line 237) | type table struct
method hash (line 245) | func (t *table) hash(s string) (h1, h2 uint32) {
method init (line 257) | func (t *table) init(h0 uint32, k uint, x []string) bool {
method insert (line 271) | func (t *table) insert(s string) bool {
method push (line 293) | func (t *table) push(i uint32, depth int) bool {
FILE: vendor/golang.org/x/net/html/atom/table.go
constant A (line 8) | A Atom = 0x1
constant Abbr (line 9) | Abbr Atom = 0x4
constant Accept (line 10) | Accept Atom = 0x1a06
constant AcceptCharset (line 11) | AcceptCharset Atom = 0x1a0e
constant Accesskey (line 12) | Accesskey Atom = 0x2c09
constant Action (line 13) | Action Atom = 0x25a06
constant Address (line 14) | Address Atom = 0x6ed07
constant Align (line 15) | Align Atom = 0x6d405
constant Allowfullscreen (line 16) | Allowfullscreen Atom = 0x1f00f
constant Allowpaymentrequest (line 17) | Allowpaymentrequest Atom = 0x6913
constant Allowusermedia (line 18) | Allowusermedia Atom = 0x850e
constant Alt (line 19) | Alt Atom = 0xb003
constant Annotation (line 20) | Annotation Atom = 0x1b90a
constant AnnotationXml (line 21) | AnnotationXml Atom = 0x1b90e
constant Applet (line 22) | Applet Atom = 0x30106
constant Area (line 23) | Area Atom = 0x34a04
constant Article (line 24) | Article Atom = 0x3f007
constant As (line 25) | As Atom = 0xb902
constant Aside (line 26) | Aside Atom = 0xc105
constant Async (line 27) | Async Atom = 0xb905
constant Audio (line 28) | Audio Atom = 0xcf05
constant Autocomplete (line 29) | Autocomplete Atom = 0x2600c
constant Autofocus (line 30) | Autofocus Atom = 0xeb09
constant Autoplay (line 31) | Autoplay Atom = 0x10608
constant B (line 32) | B Atom = 0x101
constant Base (line 33) | Base Atom = 0x11504
constant Basefont (line 34) | Basefont Atom = 0x11508
constant Bdi (line 35) | Bdi Atom = 0x16103
constant Bdo (line 36) | Bdo Atom = 0x13403
constant Bgsound (line 37) | Bgsound Atom = 0x14707
constant Big (line 38) | Big Atom = 0x15903
constant Blink (line 39) | Blink Atom = 0x15c05
constant Blockquote (line 40) | Blockquote Atom = 0x1680a
constant Body (line 41) | Body Atom = 0x2804
constant Br (line 42) | Br Atom = 0x202
constant Button (line 43) | Button Atom = 0x17206
constant Canvas (line 44) | Canvas Atom = 0xbd06
constant Caption (line 45) | Caption Atom = 0x21907
constant Center (line 46) | Center Atom = 0x20806
constant Challenge (line 47) | Challenge Atom = 0x28309
constant Charset (line 48) | Charset Atom = 0x2107
constant Checked (line 49) | Checked Atom = 0x46d07
constant Cite (line 50) | Cite Atom = 0x55804
constant Class (line 51) | Class Atom = 0x5b905
constant Code (line 52) | Code Atom = 0x19004
constant Col (line 53) | Col Atom = 0x19703
constant Colgroup (line 54) | Colgroup Atom = 0x19708
constant Color (line 55) | Color Atom = 0x1af05
constant Cols (line 56) | Cols Atom = 0x1b404
constant Colspan (line 57) | Colspan Atom = 0x1b407
constant Command (line 58) | Command Atom = 0x1c707
constant Content (line 59) | Content Atom = 0x57f07
constant Contenteditable (line 60) | Contenteditable Atom = 0x57f0f
constant Contextmenu (line 61) | Contextmenu Atom = 0x3740b
constant Controls (line 62) | Controls Atom = 0x1ce08
constant Coords (line 63) | Coords Atom = 0x1da06
constant Crossorigin (line 64) | Crossorigin Atom = 0x1e30b
constant Data (line 65) | Data Atom = 0x49904
constant Datalist (line 66) | Datalist Atom = 0x49908
constant Datetime (line 67) | Datetime Atom = 0x2a008
constant Dd (line 68) | Dd Atom = 0x2bf02
constant Default (line 69) | Default Atom = 0xc407
constant Defer (line 70) | Defer Atom = 0x19205
constant Del (line 71) | Del Atom = 0x44603
constant Desc (line 72) | Desc Atom = 0x55504
constant Details (line 73) | Details Atom = 0x4607
constant Dfn (line 74) | Dfn Atom = 0x5f03
constant Dialog (line 75) | Dialog Atom = 0x16206
constant Dir (line 76) | Dir Atom = 0xa303
constant Dirname (line 77) | Dirname Atom = 0xa307
constant Disabled (line 78) | Disabled Atom = 0x14d08
constant Div (line 79) | Div Atom = 0x15403
constant Dl (line 80) | Dl Atom = 0x5e202
constant Download (line 81) | Download Atom = 0x45708
constant Draggable (line 82) | Draggable Atom = 0x18309
constant Dropzone (line 83) | Dropzone Atom = 0x3f908
constant Dt (line 84) | Dt Atom = 0x64702
constant Em (line 85) | Em Atom = 0x4202
constant Embed (line 86) | Embed Atom = 0x4205
constant Enctype (line 87) | Enctype Atom = 0x27507
constant Face (line 88) | Face Atom = 0x20604
constant Fieldset (line 89) | Fieldset Atom = 0x20e08
constant Figcaption (line 90) | Figcaption Atom = 0x2160a
constant Figure (line 91) | Figure Atom = 0x23006
constant Font (line 92) | Font Atom = 0x11904
constant Footer (line 93) | Footer Atom = 0xb306
constant For (line 94) | For Atom = 0x23c03
constant ForeignObject (line 95) | ForeignObject Atom = 0x23c0d
constant Foreignobject (line 96) | Foreignobject Atom = 0x2490d
constant Form (line 97) | Form Atom = 0x25604
constant Formaction (line 98) | Formaction Atom = 0x2560a
constant Formenctype (line 99) | Formenctype Atom = 0x2710b
constant Formmethod (line 100) | Formmethod Atom = 0x28c0a
constant Formnovalidate (line 101) | Formnovalidate Atom = 0x2960e
constant Formtarget (line 102) | Formtarget Atom = 0x2a80a
constant Frame (line 103) | Frame Atom = 0x5705
constant Frameset (line 104) | Frameset Atom = 0x5708
constant H1 (line 105) | H1 Atom = 0x14502
constant H2 (line 106) | H2 Atom = 0x2c602
constant H3 (line 107) | H3 Atom = 0x2f502
constant H4 (line 108) | H4 Atom = 0x33902
constant H5 (line 109) | H5 Atom = 0x34302
constant H6 (line 110) | H6 Atom = 0x64902
constant Head (line 111) | Head Atom = 0x32504
constant Header (line 112) | Header Atom = 0x32506
constant Headers (line 113) | Headers Atom = 0x32507
constant Height (line 114) | Height Atom = 0x12c06
constant Hgroup (line 115) | Hgroup Atom = 0x2b206
constant Hidden (line 116) | Hidden Atom = 0x2bd06
constant High (line 117) | High Atom = 0x2c304
constant Hr (line 118) | Hr Atom = 0x14002
constant Href (line 119) | Href Atom = 0x2c804
constant Hreflang (line 120) | Hreflang Atom = 0x2c808
constant Html (line 121) | Html Atom = 0x13004
constant HttpEquiv (line 122) | HttpEquiv Atom = 0x2d00a
constant I (line 123) | I Atom = 0x601
constant Icon (line 124) | Icon Atom = 0x57e04
constant Id (line 125) | Id Atom = 0xc302
constant Iframe (line 126) | Iframe Atom = 0x2e406
constant Image (line 127) | Image Atom = 0x2ea05
constant Img (line 128) | Img Atom = 0x2ef03
constant Input (line 129) | Input Atom = 0x43f05
constant Inputmode (line 130) | Inputmode Atom = 0x43f09
constant Ins (line 131) | Ins Atom = 0x1ec03
constant Integrity (line 132) | Integrity Atom = 0x22709
constant Is (line 133) | Is Atom = 0x14e02
constant Isindex (line 134) | Isindex Atom = 0x2f707
constant Ismap (line 135) | Ismap Atom = 0x2fe05
constant Itemid (line 136) | Itemid Atom = 0x37f06
constant Itemprop (line 137) | Itemprop Atom = 0x55908
constant Itemref (line 138) | Itemref Atom = 0x3c107
constant Itemscope (line 139) | Itemscope Atom = 0x66d09
constant Itemtype (line 140) | Itemtype Atom = 0x30708
constant Kbd (line 141) | Kbd Atom = 0x16003
constant Keygen (line 142) | Keygen Atom = 0x3206
constant Keytype (line 143) | Keytype Atom = 0x7e07
constant Kind (line 144) | Kind Atom = 0x18004
constant Label (line 145) | Label Atom = 0xda05
constant Lang (line 146) | Lang Atom = 0x2cc04
constant Legend (line 147) | Legend Atom = 0x18a06
constant Li (line 148) | Li Atom = 0x11102
constant Link (line 149) | Link Atom = 0x15d04
constant List (line 150) | List Atom = 0x49d04
constant Listing (line 151) | Listing Atom = 0x49d07
constant Loop (line 152) | Loop Atom = 0xde04
constant Low (line 153) | Low Atom = 0x6b03
constant Main (line 154) | Main Atom = 0x1004
constant Malignmark (line 155) | Malignmark Atom = 0x6d30a
constant Manifest (line 156) | Manifest Atom = 0x30f08
constant Map (line 157) | Map Atom = 0x30003
constant Mark (line 158) | Mark Atom = 0x6d904
constant Marquee (line 159) | Marquee Atom = 0x31b07
constant Math (line 160) | Math Atom = 0x32204
constant Max (line 161) | Max Atom = 0x33103
constant Maxlength (line 162) | Maxlength Atom = 0x33109
constant Media (line 163) | Media Atom = 0x8e05
constant Mediagroup (line 164) | Mediagroup Atom = 0x8e0a
constant Menu (line 165) | Menu Atom = 0x37b04
constant Menuitem (line 166) | Menuitem Atom = 0x37b08
constant Meta (line 167) | Meta Atom = 0x4ac04
constant Meter (line 168) | Meter Atom = 0xa805
constant Method (line 169) | Method Atom = 0x29006
constant Mglyph (line 170) | Mglyph Atom = 0x2f006
constant Mi (line 171) | Mi Atom = 0x33b02
constant Min (line 172) | Min Atom = 0x33b03
constant Minlength (line 173) | Minlength Atom = 0x33b09
constant Mn (line 174) | Mn Atom = 0x29902
constant Mo (line 175) | Mo Atom = 0x6302
constant Ms (line 176) | Ms Atom = 0x67002
constant Mtext (line 177) | Mtext Atom = 0x34505
constant Multiple (line 178) | Multiple Atom = 0x35308
constant Muted (line 179) | Muted Atom = 0x35b05
constant Name (line 180) | Name Atom = 0xa604
constant Nav (line 181) | Nav Atom = 0x1303
constant Nobr (line 182) | Nobr Atom = 0x3704
constant Noembed (line 183) | Noembed Atom = 0x4007
constant Noframes (line 184) | Noframes Atom = 0x5508
constant Nomodule (line 185) | Nomodule Atom = 0x6108
constant Nonce (line 186) | Nonce Atom = 0x56205
constant Noscript (line 187) | Noscript Atom = 0x1fe08
constant Novalidate (line 188) | Novalidate Atom = 0x29a0a
constant Object (line 189) | Object Atom = 0x25006
constant Ol (line 190) | Ol Atom = 0x10102
constant Onabort (line 191) | Onabort Atom = 0x17607
constant Onafterprint (line 192) | Onafterprint Atom = 0x21e0c
constant Onautocomplete (line 193) | Onautocomplete Atom = 0x25e0e
constant Onautocompleteerror (line 194) | Onautocompleteerror Atom = 0x25e13
constant Onauxclick (line 195) | Onauxclick Atom = 0x61b0a
constant Onbeforeprint (line 196) | Onbeforeprint Atom = 0x69a0d
constant Onbeforeunload (line 197) | Onbeforeunload Atom = 0x6e10e
constant Onblur (line 198) | Onblur Atom = 0x5c206
constant Oncancel (line 199) | Oncancel Atom = 0xd308
constant Oncanplay (line 200) | Oncanplay Atom = 0x13609
constant Oncanplaythrough (line 201) | Oncanplaythrough Atom = 0x13610
constant Onchange (line 202) | Onchange Atom = 0x40f08
constant Onclick (line 203) | Onclick Atom = 0x2dd07
constant Onclose (line 204) | Onclose Atom = 0x36007
constant Oncontextmenu (line 205) | Oncontextmenu Atom = 0x3720d
constant Oncopy (line 206) | Oncopy Atom = 0x38506
constant Oncuechange (line 207) | Oncuechange Atom = 0x38b0b
constant Oncut (line 208) | Oncut Atom = 0x39605
constant Ondblclick (line 209) | Ondblclick Atom = 0x39b0a
constant Ondrag (line 210) | Ondrag Atom = 0x3a506
constant Ondragend (line 211) | Ondragend Atom = 0x3a509
constant Ondragenter (line 212) | Ondragenter Atom = 0x3ae0b
constant Ondragexit (line 213) | Ondragexit Atom = 0x3b90a
constant Ondragleave (line 214) | Ondragleave Atom = 0x3d30b
constant Ondragover (line 215) | Ondragover Atom = 0x3de0a
constant Ondragstart (line 216) | Ondragstart Atom = 0x3e80b
constant Ondrop (line 217) | Ondrop Atom = 0x3f706
constant Ondurationchange (line 218) | Ondurationchange Atom = 0x40710
constant Onemptied (line 219) | Onemptied Atom = 0x3fe09
constant Onended (line 220) | Onended Atom = 0x41707
constant Onerror (line 221) | Onerror Atom = 0x41e07
constant Onfocus (line 222) | Onfocus Atom = 0x42507
constant Onhashchange (line 223) | Onhashchange Atom = 0x4310c
constant Oninput (line 224) | Oninput Atom = 0x43d07
constant Oninvalid (line 225) | Oninvalid Atom = 0x44909
constant Onkeydown (line 226) | Onkeydown Atom = 0x45209
constant Onkeypress (line 227) | Onkeypress Atom = 0x45f0a
constant Onkeyup (line 228) | Onkeyup Atom = 0x47407
constant Onlanguagechange (line 229) | Onlanguagechange Atom = 0x48110
constant Onload (line 230) | Onload Atom = 0x49106
constant Onloadeddata (line 231) | Onloadeddata Atom = 0x4910c
constant Onloadedmetadata (line 232) | Onloadedmetadata Atom = 0x4a410
constant Onloadend (line 233) | Onloadend Atom = 0x4ba09
constant Onloadstart (line 234) | Onloadstart Atom = 0x4c30b
constant Onmessage (line 235) | Onmessage Atom = 0x4ce09
constant Onmessageerror (line 236) | Onmessageerror Atom = 0x4ce0e
constant Onmousedown (line 237) | Onmousedown Atom = 0x4dc0b
constant Onmouseenter (line 238) | Onmouseenter Atom = 0x4e70c
constant Onmouseleave (line 239) | Onmouseleave Atom = 0x4f30c
constant Onmousemove (line 240) | Onmousemove Atom = 0x4ff0b
constant Onmouseout (line 241) | Onmouseout Atom = 0x50a0a
constant Onmouseover (line 242) | Onmouseover Atom = 0x5170b
constant Onmouseup (line 243) | Onmouseup Atom = 0x52209
constant Onmousewheel (line 244) | Onmousewheel Atom = 0x5300c
constant Onoffline (line 245) | Onoffline Atom = 0x53c09
constant Ononline (line 246) | Ononline Atom = 0x54508
constant Onpagehide (line 247) | Onpagehide Atom = 0x54d0a
constant Onpageshow (line 248) | Onpageshow Atom = 0x5670a
constant Onpaste (line 249) | Onpaste Atom = 0x57307
constant Onpause (line 250) | Onpause Atom = 0x58e07
constant Onplay (line 251) | Onplay Atom = 0x59806
constant Onplaying (line 252) | Onplaying Atom = 0x59809
constant Onpopstate (line 253) | Onpopstate Atom = 0x5a10a
constant Onprogress (line 254) | Onprogress Atom = 0x5ab0a
constant Onratechange (line 255) | Onratechange Atom = 0x5c80c
constant Onrejectionhandled (line 256) | Onrejectionhandled Atom = 0x5d412
constant Onreset (line 257) | Onreset Atom = 0x5e607
constant Onresize (line 258) | Onresize Atom = 0x5ed08
constant Onscroll (line 259) | Onscroll Atom = 0x5fc08
constant Onsecuritypolicyviolation (line 260) | Onsecuritypolicyviolation Atom = 0x60419
constant Onseeked (line 261) | Onseeked Atom = 0x62508
constant Onseeking (line 262) | Onseeking Atom = 0x62d09
constant Onselect (line 263) | Onselect Atom = 0x63608
constant Onshow (line 264) | Onshow Atom = 0x64006
constant Onsort (line 265) | Onsort Atom = 0x64b06
constant Onstalled (line 266) | Onstalled Atom = 0x65509
constant Onstorage (line 267) | Onstorage Atom = 0x65e09
constant Onsubmit (line 268) | Onsubmit Atom = 0x66708
constant Onsuspend (line 269) | Onsuspend Atom = 0x67709
constant Ontimeupdate (line 270) | Ontimeupdate Atom = 0x11a0c
constant Ontoggle (line 271) | Ontoggle Atom = 0x68008
constant Onunhandledrejection (line 272) | Onunhandledrejection Atom = 0x68814
constant Onunload (line 273) | Onunload Atom = 0x6a708
constant Onvolumechange (line 274) | Onvolumechange Atom = 0x6af0e
constant Onwaiting (line 275) | Onwaiting Atom = 0x6bd09
constant Onwheel (line 276) | Onwheel Atom = 0x6c607
constant Open (line 277) | Open Atom = 0x55f04
constant Optgroup (line 278) | Optgroup Atom = 0xe008
constant Optimum (line 279) | Optimum Atom = 0x6cd07
constant Option (line 280) | Option Atom = 0x6dd06
constant Output (line 281) | Output Atom = 0x51106
constant P (line 282) | P Atom = 0xc01
constant Param (line 283) | Param Atom = 0xc05
constant Pattern (line 284) | Pattern Atom = 0x4f07
constant Picture (line 285) | Picture Atom = 0x9707
constant Ping (line 286) | Ping Atom = 0xe704
constant Placeholder (line 287) | Placeholder Atom = 0xfb0b
constant Plaintext (line 288) | Plaintext Atom = 0x19e09
constant Playsinline (line 289) | Playsinline Atom = 0x10a0b
constant Poster (line 290) | Poster Atom = 0x2b706
constant Pre (line 291) | Pre Atom = 0x46403
constant Preload (line 292) | Preload Atom = 0x47a07
constant Progress (line 293) | Progress Atom = 0x5ad08
constant Prompt (line 294) | Prompt Atom = 0x52a06
constant Public (line 295) | Public Atom = 0x57a06
constant Q (line 296) | Q Atom = 0x7701
constant Radiogroup (line 297) | Radiogroup Atom = 0x30a
constant Readonly (line 298) | Readonly Atom = 0x34b08
constant Referrerpolicy (line 299) | Referrerpolicy Atom = 0x3c50e
constant Rel (line 300) | Rel Atom = 0x47b03
constant Required (line 301) | Required Atom = 0x23408
constant Reversed (line 302) | Reversed Atom = 0x9c08
constant Rows (line 303) | Rows Atom = 0x3a04
constant Rowspan (line 304) | Rowspan Atom = 0x3a07
constant Rp (line 305) | Rp Atom = 0x22402
constant Rt (line 306) | Rt Atom = 0x17b02
constant Ruby (line 307) | Ruby Atom = 0xac04
constant S (line 308) | S Atom = 0x2501
constant Samp (line 309) | Samp Atom = 0x4c04
constant Sandbox (line 310) | Sandbox Atom = 0xf307
constant Scope (line 311) | Scope Atom = 0x67105
constant Scoped (line 312) | Scoped Atom = 0x67106
constant Script (line 313) | Script Atom = 0x20006
constant Seamless (line 314) | Seamless Atom = 0x36508
constant Section (line 315) | Section Atom = 0x5bd07
constant Select (line 316) | Select Atom = 0x63806
constant Selected (line 317) | Selected Atom = 0x63808
constant Shape (line 318) | Shape Atom = 0x1d505
constant Size (line 319) | Size Atom = 0x5f104
constant Sizes (line 320) | Sizes Atom = 0x5f105
constant Slot (line 321) | Slot Atom = 0x1df04
constant Small (line 322) | Small Atom = 0x1ee05
constant Sortable (line 323) | Sortable Atom = 0x64d08
constant Sorted (line 324) | Sorted Atom = 0x32b06
constant Source (line 325) | Source Atom = 0x36c06
constant Spacer (line 326) | Spacer Atom = 0x42b06
constant Span (line 327) | Span Atom = 0x3d04
constant Spellcheck (line 328) | Spellcheck Atom = 0x4680a
constant Src (line 329) | Src Atom = 0x5b403
constant Srcdoc (line 330) | Srcdoc Atom = 0x5b406
constant Srclang (line 331) | Srclang Atom = 0x5f507
constant Srcset (line 332) | Srcset Atom = 0x6f306
constant Start (line 333) | Start Atom = 0x3ee05
constant Step (line 334) | Step Atom = 0x57704
constant Strike (line 335) | Strike Atom = 0x7a06
constant Strong (line 336) | Strong Atom = 0x31506
constant Style (line 337) | Style Atom = 0x6f905
constant Sub (line 338) | Sub Atom = 0x66903
constant Summary (line 339) | Summary Atom = 0x6fe07
constant Sup (line 340) | Sup Atom = 0x70503
constant Svg (line 341) | Svg Atom = 0x70803
constant System (line 342) | System Atom = 0x70b06
constant Tabindex (line 343) | Tabindex Atom = 0x4b208
constant Table (line 344) | Table Atom = 0x58905
constant Target (line 345) | Target Atom = 0x2ac06
constant Tbody (line 346) | Tbody Atom = 0x2705
constant Td (line 347) | Td Atom = 0x5e02
constant Template (line 348) | Template Atom = 0x70e08
constant Textarea (line 349) | Textarea Atom = 0x34608
constant Tfoot (line 350) | Tfoot Atom = 0xb205
constant Th (line 351) | Th Atom = 0x13f02
constant Thead (line 352) | Thead Atom = 0x32405
constant Time (line 353) | Time Atom = 0x11c04
constant Title (line 354) | Title Atom = 0xca05
constant Tr (line 355) | Tr Atom = 0x7402
constant Track (line 356) | Track Atom = 0x17c05
constant Translate (line 357) | Translate Atom = 0x1a609
constant Tt (line 358) | Tt Atom = 0x5102
constant Type (line 359) | Type Atom = 0x8104
constant Typemustmatch (line 360) | Typemustmatch Atom = 0x2780d
constant U (line 361) | U Atom = 0xb01
constant Ul (line 362) | Ul Atom = 0x6602
constant Updateviacache (line 363) | Updateviacache Atom = 0x1200e
constant Usemap (line 364) | Usemap Atom = 0x59206
constant Value (line 365) | Value Atom = 0x1505
constant Var (line 366) | Var Atom = 0x15603
constant Video (line 367) | Video Atom = 0x2d905
constant Wbr (line 368) | Wbr Atom = 0x57003
constant Width (line 369) | Width Atom = 0x64505
constant Workertype (line 370) | Workertype Atom = 0x7160a
constant Wrap (line 371) | Wrap Atom = 0x72004
constant Xmp (line 372) | Xmp Atom = 0xf903
constant hash0 (line 375) | hash0 = 0x81cdf10e
constant maxAtomLen (line 377) | maxAtomLen = 25
constant atomText (line 747) | atomText = "abbradiogrouparamainavalueaccept-charsetbodyaccesskeygenobro" +
FILE: vendor/golang.org/x/net/html/charset/charset.go
function Lookup (line 31) | func Lookup(label string) (e encoding.Encoding, name string) {
type htmlEncoding (line 40) | type htmlEncoding struct
method NewEncoder (line 42) | func (h *htmlEncoding) NewEncoder() *encoding.Encoder {
function DetermineEncoding (line 52) | func DetermineEncoding(content []byte, contentType string) (e encoding.E...
function NewReader (line 108) | func NewReader(r io.Reader, contentType string) (io.Reader, error) {
function NewReaderLabel (line 131) | func NewReaderLabel(label string, input io.Reader) (io.Reader, error) {
function prescan (line 139) | func prescan(content []byte) (e encoding.Encoding, name string) {
function fromMetaElement (line 216) | func fromMetaElement(s string) string {
FILE: vendor/golang.org/x/net/html/charset/charset_test.go
function transformString (line 18) | func transformString(t transform.Transformer, s string) (string, error) {
type testCase (line 24) | type testCase struct
function TestDecode (line 73) | func TestDecode(t *testing.T) {
function TestEncode (line 96) | func TestEncode(t *testing.T) {
function TestSniff (line 138) | func TestSniff(t *testing.T) {
function TestReader (line 159) | func TestReader(t *testing.T) {
function TestFromMeta (line 210) | func TestFromMeta(t *testing.T) {
function TestXML (line 219) | func TestXML(t *testing.T) {
FILE: vendor/golang.org/x/net/html/const.go
function isSpecialElement (line 96) | func isSpecialElement(element *Node) bool {
FILE: vendor/golang.org/x/net/html/doctype.go
function parseDoctype (line 16) | func parseDoctype(s string) (n *Node, quirks bool) {
FILE: vendor/golang.org/x/net/html/entity.go
constant longestEntityWithoutSemicolon (line 8) | longestEntityWithoutSemicolon = 6
FILE: vendor/golang.org/x/net/html/entity_test.go
function TestEntityLength (line 12) | func TestEntityLength(t *testing.T) {
FILE: vendor/golang.org/x/net/html/escape.go
function unescapeEntity (line 57) | func unescapeEntity(b []byte, dst, src int, attribute bool) (dst1, src1 ...
function unescape (line 167) | func unescape(b []byte, attribute bool) []byte {
function lower (line 187) | func lower(b []byte) []byte {
constant escapedChars (line 196) | escapedChars = "&'<>\"\r"
function escape (line 198) | func escape(w writer, s string) error {
function EscapeString (line 237) | func EscapeString(s string) string {
function UnescapeString (line 251) | func UnescapeString(s string) string {
FILE: vendor/golang.org/x/net/html/escape_test.go
type unescapeTest (line 9) | type unescapeTest struct
function TestUnescape (line 69) | func TestUnescape(t *testing.T) {
function TestUnescapeEscape (line 78) | func TestUnescapeEscape(t *testing.T) {
FILE: vendor/golang.org/x/net/html/example_test.go
function ExampleParse (line 16) | func ExampleParse() {
FILE: vendor/golang.org/x/net/html/foreign.go
function adjustAttributeNames (line 11) | func adjustAttributeNames(aa []Attribute, nameMap map[string]string) {
function adjustForeignAttributes (line 19) | func adjustForeignAttributes(aa []Attribute) {
function htmlIntegrationPoint (line 34) | func htmlIntegrationPoint(n *Node) bool {
function mathMLTextIntegrationPoint (line 59) | func mathMLTextIntegrationPoint(n *Node) bool {
FILE: vendor/golang.org/x/net/html/node.go
type NodeType (line 12) | type NodeType
constant ErrorNode (line 15) | ErrorNode NodeType = iota
constant TextNode (line 16) | TextNode
constant DocumentNode (line 17) | DocumentNode
constant ElementNode (line 18) | ElementNode
constant CommentNode (line 19) | CommentNode
constant DoctypeNode (line 20) | DoctypeNode
constant scopeMarkerNode (line 21) | scopeMarkerNode
type Node (line 38) | type Node struct
method InsertBefore (line 53) | func (n *Node) InsertBefore(newChild, oldChild *Node) {
method AppendChild (line 81) | func (n *Node) AppendChild(c *Node) {
method RemoveChild (line 100) | func (n *Node) RemoveChild(c *Node) {
method clone (line 135) | func (n *Node) clone() *Node {
function reparentChildren (line 122) | func reparentChildren(dst, src *Node) {
type nodeStack (line 147) | type nodeStack
method pop (line 150) | func (s *nodeStack) pop() *Node {
method top (line 158) | func (s *nodeStack) top() *Node {
method index (line 167) | func (s *nodeStack) index(n *Node) int {
method insert (line 177) | func (s *nodeStack) insert(i int, n *Node) {
method remove (line 184) | func (s *nodeStack) remove(n *Node) {
FILE: vendor/golang.org/x/net/html/node_test.go
function checkTreeConsistency (line 13) | func checkTreeConsistency(n *Node) error {
function checkTreeConsistency1 (line 17) | func checkTreeConsistency1(n *Node, depth int) error {
function checkNodeConsistency (line 34) | func checkNodeConsistency(n *Node) error {
FILE: vendor/golang.org/x/net/html/parse.go
type parser (line 18) | type parser struct
method top (line 52) | func (p *parser) top() *Node {
method popUntil (line 97) | func (p *parser) popUntil(s scope, matchTags ...a.Atom) bool {
method indexOfElementInScope (line 108) | func (p *parser) indexOfElementInScope(s scope, matchTags ...a.Atom) i...
method elementInScope (line 154) | func (p *parser) elementInScope(s scope, matchTags ...a.Atom) bool {
method clearStackToContext (line 160) | func (p *parser) clearStackToContext(s scope) {
method generateImpliedEndTags (line 188) | func (p *parser) generateImpliedEndTags(exceptions ...string) {
method addChild (line 212) | func (p *parser) addChild(n *Node) {
method shouldFosterParent (line 226) | func (p *parser) shouldFosterParent() bool {
method fosterParent (line 238) | func (p *parser) fosterParent(n *Node) {
method addText (line 273) | func (p *parser) addText(text string) {
method addElement (line 298) | func (p *parser) addElement() {
method addFormattingElement (line 308) | func (p *parser) addFormattingElement() {
method clearActiveFormattingElements (line 355) | func (p *parser) clearActiveFormattingElements() {
method reconstructActiveFormattingElements (line 365) | func (p *parser) reconstructActiveFormattingElements() {
method acknowledgeSelfClosingTag (line 394) | func (p *parser) acknowledgeSelfClosingTag() {
method setOriginalIM (line 407) | func (p *parser) setOriginalIM() {
method resetInsertionMode (line 415) | func (p *parser) resetInsertionMode() {
method inBodyEndTagFormatting (line 1038) | func (p *parser) inBodyEndTagFormatting(tagAtom a.Atom) {
method inBodyEndTagOther (line 1165) | func (p *parser) inBodyEndTagOther(tagAtom a.Atom) {
method inForeignContent (line 1928) | func (p *parser) inForeignContent() bool {
method parseImpliedToken (line 1958) | func (p *parser) parseImpliedToken(t TokenType, dataAtom a.Atom, data ...
method parseCurrentToken (line 1972) | func (p *parser) parseCurrentToken() {
method parse (line 1993) | func (p *parser) parse() error {
type scope (line 68) | type scope
constant defaultScope (line 71) | defaultScope scope = iota
constant listItemScope (line 72) | listItemScope
constant buttonScope (line 73) | buttonScope
constant tableScope (line 74) | tableScope
constant tableRowScope (line 75) | tableRowScope
constant tableBodyScope (line 76) | tableBodyScope
constant selectScope (line 77) | selectScope
type insertionMode (line 402) | type insertionMode
constant whitespace (line 453) | whitespace = " \t\r\n\f"
function initialIM (line 456) | func initialIM(p *parser) bool {
function beforeHTMLIM (line 483) | func beforeHTMLIM(p *parser) bool {
function beforeHeadIM (line 521) | func beforeHeadIM(p *parser) bool {
function inHeadIM (line 564) | func inHeadIM(p *parser) bool {
function afterHeadIM (line 626) | func afterHeadIM(p *parser) bool {
function copyAttributes (line 684) | func copyAttributes(dst *Node, src Token) {
function inBodyIM (line 701) | func inBodyIM(p *parser) bool {
function textIM (line 1178) | func textIM(p *parser) bool {
function inTableIM (line 1207) | func inTableIM(p *parser) bool {
function inCaptionIM (line 1313) | func inCaptionIM(p *parser) bool {
function inColumnGroupIM (line 1359) | func inColumnGroupIM(p *parser) bool {
function inTableBodyIM (line 1412) | func inTableBodyIM(p *parser) bool {
function inRowIM (line 1464) | func inRowIM(p *parser) bool {
function inCellIM (line 1515) | func inCellIM(p *parser) bool {
function inSelectIM (line 1564) | func inSelectIM(p *parser) bool {
function inSelectInTableIM (line 1636) | func inSelectInTableIM(p *parser) bool {
function afterBodyIM (line 1654) | func afterBodyIM(p *parser) bool {
function inFramesetIM (line 1692) | func inFramesetIM(p *parser) bool {
function afterFramesetIM (line 1742) | func afterFramesetIM(p *parser) bool {
function afterAfterBodyIM (line 1781) | func afterAfterBodyIM(p *parser) bool {
function afterAfterFramesetIM (line 1810) | func afterAfterFramesetIM(p *parser) bool {
constant whitespaceOrNUL (line 1845) | whitespaceOrNUL = whitespace + "\x00"
function parseForeignContent (line 1848) | func parseForeignContent(p *parser) bool {
function Parse (line 2016) | func Parse(r io.Reader) (*Node, error) {
function ParseFragment (line 2036) | func ParseFragment(r io.Reader, context *Node) ([]*Node, error) {
FILE: vendor/golang.org/x/net/html/parse_test.go
function readParseTest (line 25) | func readParseTest(r *bufio.Reader) (text, want, context string, err err...
function dumpIndent (line 102) | func dumpIndent(w io.Writer, level int) {
type sortedAttributes (line 109) | type sortedAttributes
method Len (line 111) | func (a sortedAttributes) Len() int {
method Less (line 115) | func (a sortedAttributes) Less(i, j int) bool {
method Swap (line 122) | func (a sortedAttributes) Swap(i, j int) {
function dumpLevel (line 126) | func dumpLevel(w io.Writer, n *Node, level int) error {
function dump (line 186) | func dump(n *Node) (string, error) {
constant testDataDir (line 199) | testDataDir = "testdata/webkit/"
function TestParser (line 201) | func TestParser(t *testing.T) {
function testParseCase (line 236) | func testParseCase(text, want, context string) (err error) {
function TestNodeConsistency (line 363) | func TestNodeConsistency(t *testing.T) {
function BenchmarkParser (line 376) | func BenchmarkParser(b *testing.B) {
FILE: vendor/golang.org/x/net/html/render.go
type writer (line 15) | type writer interface
function Render (line 45) | func Render(w io.Writer, n *Node) error {
function render (line 60) | func render(w writer, n *Node) error {
function render1 (line 68) | func render1(w writer, n *Node) error {
function writeQuoted (line 235) | func writeQuoted(w writer, s string) error {
FILE: vendor/golang.org/x/net/html/render_test.go
function TestRenderer (line 12) | func TestRenderer(t *testing.T) {
FILE: vendor/golang.org/x/net/html/token.go
type TokenType (line 18) | type TokenType
method String (line 41) | func (t TokenType) String() string {
constant ErrorToken (line 22) | ErrorToken TokenType = iota
constant TextToken (line 24) | TextToken
constant StartTagToken (line 26) | StartTagToken
constant EndTagToken (line 28) | EndTagToken
constant SelfClosingTagToken (line 30) | SelfClosingTagToken
constant CommentToken (line 32) | CommentToken
constant DoctypeToken (line 34) | DoctypeToken
type Attribute (line 67) | type Attribute struct
type Token (line 76) | type Token struct
method tagString (line 84) | func (t Token) tagString() string {
method String (line 100) | func (t Token) String() string {
type span (line 122) | type span struct
type Tokenizer (line 127) | type Tokenizer struct
method AllowCDATA (line 188) | func (z *Tokenizer) AllowCDATA(allowCDATA bool) {
method NextIsNotRawText (line 216) | func (z *Tokenizer) NextIsNotRawText() {
method Err (line 222) | func (z *Tokenizer) Err() error {
method readByte (line 234) | func (z *Tokenizer) readByte() byte {
method Buffered (line 290) | func (z *Tokenizer) Buffered() []byte {
method skipWhiteSpace (line 308) | func (z *Tokenizer) skipWhiteSpace() {
method readRawOrRCDATA (line 329) | func (z *Tokenizer) readRawOrRCDATA() {
method readRawEndTag (line 366) | func (z *Tokenizer) readRawEndTag() bool {
method readScript (line 393) | func (z *Tokenizer) readScript() {
method readComment (line 600) | func (z *Tokenizer) readComment() {
method readUntilCloseAngle (line 645) | func (z *Tokenizer) readUntilCloseAngle() {
method readMarkupDeclaration (line 663) | func (z *Tokenizer) readMarkupDeclaration() TokenType {
method readDoctype (line 692) | func (z *Tokenizer) readDoctype() bool {
method readCDATA (line 717) | func (z *Tokenizer) readCDATA() bool {
method startTagIn (line 756) | func (z *Tokenizer) startTagIn(ss ...string) bool {
method readStartTag (line 778) | func (z *Tokenizer) readStartTag() TokenType {
method readTag (line 816) | func (z *Tokenizer) readTag(saveAttr bool) {
method readTagName (line 845) | func (z *Tokenizer) readTagName() {
method readTagAttrKey (line 867) | func (z *Tokenizer) readTagAttrKey() {
method readTagAttrVal (line 888) | func (z *Tokenizer) readTagAttrVal() {
method Next (line 950) | func (z *Tokenizer) Next() TokenType {
method Raw (line 1070) | func (z *Tokenizer) Raw() []byte {
method Text (line 1113) | func (z *Tokenizer) Text() []byte {
method TagName (line 1134) | func (z *Tokenizer) TagName() (name []byte, hasAttr bool) {
method TagAttr (line 1150) | func (z *Tokenizer) TagAttr() (key, val []byte, moreAttr bool) {
method Token (line 1166) | func (z *Tokenizer) Token() Token {
method SetMaxBuf (line 1189) | func (z *Tokenizer) SetMaxBuf(n int) {
function readAtLeastOneByte (line 297) | func readAtLeastOneByte(r io.Reader, b []byte) (int, error) {
function convertNewlines (line 1076) | func convertNewlines(s []byte) []byte {
function NewTokenizer (line 1195) | func NewTokenizer(r io.Reader) *Tokenizer {
function NewTokenizerFragment (line 1207) | func NewTokenizerFragment(r io.Reader, contextTag string) *Tokenizer {
FILE: vendor/golang.org/x/net/html/token_test.go
type tokenTest (line 17) | type tokenTest struct
function TestTokenizer (line 453) | func TestTokenizer(t *testing.T) {
function TestMaxBuffer (line 477) | func TestMaxBuffer(t *testing.T) {
function TestMaxBufferReconstruction (line 493) | func TestMaxBufferReconstruction(t *testing.T) {
function TestPassthrough (line 532) | func TestPassthrough(t *testing.T) {
function TestBufAPI (line 551) | func TestBufAPI(t *testing.T) {
function TestConvertNewlines (line 587) | func TestConvertNewlines(t *testing.T) {
function TestReaderEdgeCases (line 614) | func TestReaderEdgeCases(t *testing.T) {
type zeroOneByteReader (line 651) | type zeroOneByteReader struct
method Read (line 656) | func (r *zeroOneByteReader) Read(p []byte) (int, error) {
type eofStringsReader (line 673) | type eofStringsReader struct
method Read (line 677) | func (r *eofStringsReader) Read(p []byte) (int, error) {
type stuckReader (line 687) | type stuckReader struct
method Read (line 689) | func (*stuckReader) Read(p []byte) (int, error) {
constant rawLevel (line 694) | rawLevel = iota
constant lowLevel (line 695) | lowLevel
constant highLevel (line 696) | highLevel
function benchmarkTokenizer (line 699) | func benchmarkTokenizer(b *testing.B, level int) {
function BenchmarkRawLevelTokenizer (line 746) | func BenchmarkRawLevelTokenizer(b *testing.B) { benchmarkTokenizer(b, r...
function BenchmarkLowLevelTokenizer (line 747) | func BenchmarkLowLevelTokenizer(b *testing.B) { benchmarkTokenizer(b, l...
function BenchmarkHighLevelTokenizer (line 748) | func BenchmarkHighLevelTokenizer(b *testing.B) { benchmarkTokenizer(b, h...
FILE: vendor/golang.org/x/net/http2/ciphers.go
constant cipher_TLS_NULL_WITH_NULL_NULL (line 11) | cipher_TLS_NULL_WITH_NULL_NULL uint16 = 0x0000
constant cipher_TLS_RSA_WITH_NULL_MD5 (line 12) | cipher_TLS_RSA_WITH_NULL_MD5 uint16 = 0x0001
constant cipher_TLS_RSA_WITH_NULL_SHA (line 13) | cipher_TLS_RSA_WITH_NULL_SHA uint16 = 0x0002
constant cipher_TLS_RSA_EXPORT_WITH_RC4_40_MD5 (line 14) | cipher_TLS_RSA_EXPORT_WITH_RC4_40_MD5 uint16 = 0x0003
constant cipher_TLS_RSA_WITH_RC4_128_MD5 (line 15) | cipher_TLS_RSA_WITH_RC4_128_MD5 uint16 = 0x0004
constant cipher_TLS_RSA_WITH_RC4_128_SHA (line 16) | cipher_TLS_RSA_WITH_RC4_128_SHA uint16 = 0x0005
constant cipher_TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5 (line 17) | cipher_TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5 uint16 = 0x0006
constant cipher_TLS_RSA_WITH_IDEA_CBC_SHA (line 18) | cipher_TLS_RSA_WITH_IDEA_CBC_SHA uint16 = 0x0007
constant cipher_TLS_RSA_EXPORT_WITH_DES40_CBC_SHA (line 19) | cipher_TLS_RSA_EXPORT_WITH_DES40_CBC_SHA uint16 = 0x0008
constant cipher_TLS_RSA_WITH_DES_CBC_SHA (line 20) | cipher_TLS_RSA_WITH_DES_CBC_SHA uint16 = 0x0009
constant cipher_TLS_RSA_WITH_3DES_EDE_CBC_SHA (line 21) | cipher_TLS_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0x000A
constant cipher_TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA (line 22) | cipher_TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA uint16 = 0x000B
constant cipher_TLS_DH_DSS_WITH_DES_CBC_SHA (line 23) | cipher_TLS_DH_DSS_WITH_DES_CBC_SHA uint16 = 0x000C
constant cipher_TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA (line 24) | cipher_TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA uint16 = 0x000D
constant cipher_TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA (line 25) | cipher_TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA uint16 = 0x000E
constant cipher_TLS_DH_RSA_WITH_DES_CBC_SHA (line 26) | cipher_TLS_DH_RSA_WITH_DES_CBC_SHA uint16 = 0x000F
constant cipher_TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA (line 27) | cipher_TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0x0010
constant cipher_TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA (line 28) | cipher_TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA uint16 = 0x0011
constant cipher_TLS_DHE_DSS_WITH_DES_CBC_SHA (line 29) | cipher_TLS_DHE_DSS_WITH_DES_CBC_SHA uint16 = 0x0012
constant cipher_TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA (line 30) | cipher_TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA uint16 = 0x0013
constant cipher_TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA (line 31) | cipher_TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA uint16 = 0x0014
constant cipher_TLS_DHE_RSA_WITH_DES_CBC_SHA (line 32) | cipher_TLS_DHE_RSA_WITH_DES_CBC_SHA uint16 = 0x0015
constant cipher_TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA (line 33) | cipher_TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0x0016
constant cipher_TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 (line 34) | cipher_TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 uint16 = 0x0017
constant cipher_TLS_DH_anon_WITH_RC4_128_MD5 (line 35) | cipher_TLS_DH_anon_WITH_RC4_128_MD5 uint16 = 0x0018
constant cipher_TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA (line 36) | cipher_TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA uint16 = 0x0019
constant cipher_TLS_DH_anon_WITH_DES_CBC_SHA (line 37) | cipher_TLS_DH_anon_WITH_DES_CBC_SHA uint16 = 0x001A
constant cipher_TLS_DH_anon_WITH_3DES_EDE_CBC_SHA (line 38) | cipher_TLS_DH_anon_WITH_3DES_EDE_CBC_SHA uint16 = 0x001B
constant cipher_TLS_KRB5_WITH_DES_CBC_SHA (line 40) | cipher_TLS_KRB5_WITH_DES_CBC_SHA uint16 = 0x001E
constant cipher_TLS_KRB5_WITH_3DES_EDE_CBC_SHA (line 41) | cipher_TLS_KRB5_WITH_3DES_EDE_CBC_SHA uint16 = 0x001F
constant cipher_TLS_KRB5_WITH_RC4_128_SHA (line 42) | cipher_TLS_KRB5_WITH_RC4_128_SHA uint16 = 0x0020
constant cipher_TLS_KRB5_WITH_IDEA_CBC_SHA (line 43) | cipher_TLS_KRB5_WITH_IDEA_CBC_SHA uint16 = 0x0021
constant cipher_TLS_KRB5_WITH_DES_CBC_MD5 (line 44) | cipher_TLS_KRB5_WITH_DES_CBC_MD5 uint16 = 0x0022
constant cipher_TLS_KRB5_WITH_3DES_EDE_CBC_MD5 (line 45) | cipher_TLS_KRB5_WITH_3DES_EDE_CBC_MD5 uint16 = 0x0023
constant cipher_TLS_KRB5_WITH_RC4_128_MD5 (line 46) | cipher_TLS_KRB5_WITH_RC4_128_MD5 uint16 = 0x0024
constant cipher_TLS_KRB5_WITH_IDEA_CBC_MD5 (line 47) | cipher_TLS_KRB5_WITH_IDEA_CBC_MD5 uint16 = 0x0025
constant cipher_TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA (line 48) | cipher_TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA uint16 = 0x0026
constant cipher_TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA (line 49) | cipher_TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA uint16 = 0x0027
constant cipher_TLS_KRB5_EXPORT_WITH_RC4_40_SHA (line 50) | cipher_TLS_KRB5_EXPORT_WITH_RC4_40_SHA uint16 = 0x0028
constant cipher_TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 (line 51) | cipher_TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 uint16 = 0x0029
constant cipher_TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5 (line 52) | cipher_TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5 uint16 = 0x002A
constant cipher_TLS_KRB5_EXPORT_WITH_RC4_40_MD5 (line 53) | cipher_TLS_KRB5_EXPORT_WITH_RC4_40_MD5 uint16 = 0x002B
constant cipher_TLS_PSK_WITH_NULL_SHA (line 54) | cipher_TLS_PSK_WITH_NULL_SHA uint16 = 0x002C
constant cipher_TLS_DHE_PSK_WITH_NULL_SHA (line 55) | cipher_TLS_DHE_PSK_WITH_NULL_SHA uint16 = 0x002D
constant cipher_TLS_RSA_PSK_WITH_NULL_SHA (line 56) | cipher_TLS_RSA_PSK_WITH_NULL_SHA uint16 = 0x002E
constant cipher_TLS_RSA_WITH_AES_128_CBC_SHA (line 57) | cipher_TLS_RSA_WITH_AES_128_CBC_SHA uint16 = 0x002F
constant cipher_TLS_DH_DSS_WITH_AES_128_CBC_SHA (line 58) | cipher_TLS_DH_DSS_WITH_AES_128_CBC_SHA uint16 = 0x0030
constant cipher_TLS_DH_RSA_WITH_AES_128_CBC_SHA (line 59) | cipher_TLS_DH_RSA_WITH_AES_128_CBC_SHA uint16 = 0x0031
constant cipher_TLS_DHE_DSS_WITH_AES_128_CBC_SHA (line 60) | cipher_TLS_DHE_DSS_WITH_AES_128_CBC_SHA uint16 = 0x0032
constant cipher_TLS_DHE_RSA_WITH_AES_128_CBC_SHA (line 61) | cipher_TLS_DHE_RSA_WITH_AES_128_CBC_SHA uint16 = 0x0033
constant cipher_TLS_DH_anon_WITH_AES_128_CBC_SHA (line 62) | cipher_TLS_DH_anon_WITH_AES_128_CBC_SHA uint16 = 0x0034
constant cipher_TLS_RSA_WITH_AES_256_CBC_SHA (line 63) | cipher_TLS_RSA_WITH_AES_256_CBC_SHA uint16 = 0x0035
constant cipher_TLS_DH_DSS_WITH_AES_256_CBC_SHA (line 64) | cipher_TLS_DH_DSS_WITH_AES_256_CBC_SHA uint16 = 0x0036
constant cipher_TLS_DH_RSA_WITH_AES_256_CBC_SHA (line 65) | cipher_TLS_DH_RSA_WITH_AES_256_CBC_SHA uint16 = 0x0037
constant cipher_TLS_DHE_DSS_WITH_AES_256_CBC_SHA (line 66) | cipher_TLS_DHE_DSS_WITH_AES_256_CBC_SHA uint16 = 0x0038
constant cipher_TLS_DHE_RSA_WITH_AES_256_CBC_SHA (line 67) | cipher_TLS_DHE_RSA_WITH_AES_256_CBC_SHA uint16 = 0x0039
constant cipher_TLS_DH_anon_WITH_AES_256_CBC_SHA (line 68) | cipher_TLS_DH_anon_WITH_AES_256_CBC_SHA uint16 = 0x003A
constant cipher_TLS_RSA_WITH_NULL_SHA256 (line 69) | cipher_TLS_RSA_WITH_NULL_SHA256 uint16 = 0x003B
constant cipher_TLS_RSA_WITH_AES_128_CBC_SHA256 (line 70) | cipher_TLS_RSA_WITH_AES_128_CBC_SHA256 uint16 = 0x003C
constant cipher_TLS_RSA_WITH_AES_256_CBC_SHA256 (line 71) | cipher_TLS_RSA_WITH_AES_256_CBC_SHA256 uint16 = 0x003D
constant cipher_TLS_DH_DSS_WITH_AES_128_CBC_SHA256 (line 72) | cipher_TLS_DH_DSS_WITH_AES_128_CBC_SHA256 uint16 = 0x003E
constant cipher_TLS_DH_RSA_WITH_AES_128_CBC_SHA256 (line 73) | cipher_TLS_DH_RSA_WITH_AES_128_CBC_SHA256 uint16 = 0x003F
constant cipher_TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 (line 74) | cipher_TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 uint16 = 0x0040
constant cipher_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA (line 75) | cipher_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA uint16 = 0x0041
constant cipher_TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA (line 76) | cipher_TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA uint16 = 0x0042
constant cipher_TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA (line 77) | cipher_TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA uint16 = 0x0043
constant cipher_TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA (line 78) | cipher_TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA uint16 = 0x0044
constant cipher_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA (line 79) | cipher_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA uint16 = 0x0045
constant cipher_TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA (line 80) | cipher_TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA uint16 = 0x0046
constant cipher_TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 (line 86) | cipher_TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 uint16 = 0x0067
constant cipher_TLS_DH_DSS_WITH_AES_256_CBC_SHA256 (line 87) | cipher_TLS_DH_DSS_WITH_AES_256_CBC_SHA256 uint16 = 0x0068
constant cipher_TLS_DH_RSA_WITH_AES_256_CBC_SHA256 (line 88) | cipher_TLS_DH_RSA_WITH_AES_256_CBC_SHA256 uint16 = 0x0069
constant cipher_TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 (line 89) | cipher_TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 uint16 = 0x006A
constant cipher_TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 (line 90) | cipher_TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 uint16 = 0x006B
constant cipher_TLS_DH_anon_WITH_AES_128_CBC_SHA256 (line 91) | cipher_TLS_DH_anon_WITH_AES_128_CBC_SHA256 uint16 = 0x006C
constant cipher_TLS_DH_anon_WITH_AES_256_CBC_SHA256 (line 92) | cipher_TLS_DH_anon_WITH_AES_256_CBC_SHA256 uint16 = 0x006D
constant cipher_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA (line 94) | cipher_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA uint16 = 0x0084
constant cipher_TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA (line 95) | cipher_TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA uint16 = 0x0085
constant cipher_TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA (line 96) | cipher_TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA uint16 = 0x0086
constant cipher_TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA (line 97) | cipher_TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA uint16 = 0x0087
constant cipher_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA (line 98) | cipher_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA uint16 = 0x0088
constant cipher_TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA (line 99) | cipher_TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA uint16 = 0x0089
constant cipher_TLS_PSK_WITH_RC4_128_SHA (line 100) | cipher_TLS_PSK_WITH_RC4_128_SHA uint16 = 0x008A
constant cipher_TLS_PSK_WITH_3DES_EDE_CBC_SHA (line 101) | cipher_TLS_PSK_WITH_3DES_EDE_CBC_SHA uint16 = 0x008B
constant cipher_TLS_PSK_WITH_AES_128_CBC_SHA (line 102) | cipher_TLS_PSK_WITH_AES_128_CBC_SHA uint16 = 0x008C
constant cipher_TLS_PSK_WITH_AES_256_CBC_SHA (line 103) | cipher_TLS_PSK_WITH_AES_256_CBC_SHA uint16 = 0x008D
constant cipher_TLS_DHE_PSK_WITH_RC4_128_SHA (line 104) | cipher_TLS_DHE_PSK_WITH_RC4_128_SHA uint16 = 0x008E
constant cipher_TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA (line 105) | cipher_TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA uint16 = 0x008F
constant cipher_TLS_DHE_PSK_WITH_AES_128_CBC_SHA (line 106) | cipher_TLS_DHE_PSK_WITH_AES_128_CBC_SHA uint16 = 0x0090
constant cipher_TLS_DHE_PSK_WITH_AES_256_CBC_SHA (line 107) | cipher_TLS_DHE_PSK_WITH_AES_256_CBC_SHA uint16 = 0x0091
constant cipher_TLS_RSA_PSK_WITH_RC4_128_SHA (line 108) | cipher_TLS_RSA_PSK_WITH_RC4_128_SHA uint16 = 0x0092
constant cipher_TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA (line 109) | cipher_TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA uint16 = 0x0093
constant cipher_TLS_RSA_PSK_WITH_AES_128_CBC_SHA (line 110) | cipher_TLS_RSA_PSK_WITH_AES_128_CBC_SHA uint16 = 0x0094
constant cipher_TLS_RSA_PSK_WITH_AES_256_CBC_SHA (line 111) | cipher_TLS_RSA_PSK_WITH_AES_256_CBC_SHA uint16 = 0x0095
constant cipher_TLS_RSA_WITH_SEED_CBC_SHA (line 112) | cipher_TLS_RSA_WITH_SEED_CBC_SHA uint16 = 0x0096
constant cipher_TLS_DH_DSS_WITH_SEED_CBC_SHA (line 113) | cipher_TLS_DH_DSS_WITH_SEED_CBC_SHA uint16 = 0x0097
constant cipher_TLS_DH_RSA_WITH_SEED_CBC_SHA (line 114) | cipher_TLS_DH_RSA_WITH_SEED_CBC_SHA uint16 = 0x0098
constant cipher_TLS_DHE_DSS_WITH_SEED_CBC_SHA (line 115) | cipher_TLS_DHE_DSS_WITH_SEED_CBC_SHA uint16 = 0x0099
constant cipher_TLS_DHE_RSA_WITH_SEED_CBC_SHA (line 116) | cipher_TLS_DHE_RSA_WITH_SEED_CBC_SHA uint16 = 0x009A
constant cipher_TLS_DH_anon_WITH_SEED_CBC_SHA (line 117) | cipher_TLS_DH_anon_WITH_SEED_CBC_SHA uint16 = 0x009B
constant cipher_TLS_RSA_WITH_AES_128_GCM_SHA256 (line 118) | cipher_TLS_RSA_WITH_AES_128_GCM_SHA256 uint16 = 0x009C
constant cipher_TLS_RSA_WITH_AES_256_GCM_SHA384 (line 119) | cipher_TLS_RSA_WITH_AES_256_GCM_SHA384 uint16 = 0x009D
constant cipher_TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 (line 120) | cipher_TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 uint16 = 0x009E
constant cipher_TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 (line 121) | cipher_TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 uint16 = 0x009F
constant cipher_TLS_DH_RSA_WITH_AES_128_GCM_SHA256 (line 122) | cipher_TLS_DH_RSA_WITH_AES_128_GCM_SHA256 uint16 = 0x00A0
constant cipher_TLS_DH_RSA_WITH_AES_256_GCM_SHA384 (line 123) | cipher_TLS_DH_RSA_WITH_AES_256_GCM_SHA384 uint16 = 0x00A1
constant cipher_TLS_DHE_DSS_WITH_AES_128_GCM_SHA256 (line 124) | cipher_TLS_DHE_DSS_WITH_AES_128_GCM_SHA256 uint16 = 0x00A2
constant cipher_TLS_DHE_DSS_WITH_AES_256_GCM_SHA384 (line 125) | cipher_TLS_DHE_DSS_WITH_AES_256_GCM_SHA384 uint16 = 0x00A3
constant cipher_TLS_DH_DSS_WITH_AES_128_GCM_SHA256 (line 126) | cipher_TLS_DH_DSS_WITH_AES_128_GCM_SHA256 uint16 = 0x00A4
constant cipher_TLS_DH_DSS_WITH_AES_256_GCM_SHA384 (line 127) | cipher_TLS_DH_DSS_WITH_AES_256_GCM_SHA384 uint16 = 0x00A5
constant cipher_TLS_DH_anon_WITH_AES_128_GCM_SHA256 (line 128) | cipher_TLS_DH_anon_WITH_AES_128_GCM_SHA256 uint16 = 0x00A6
constant cipher_TLS_DH_anon_WITH_AES_256_GCM_SHA384 (line 129) | cipher_TLS_DH_anon_WITH_AES_256_GCM_SHA384 uint16 = 0x00A7
constant cipher_TLS_PSK_WITH_AES_128_GCM_SHA256 (line 130) | cipher_TLS_PSK_WITH_AES_128_GCM_SHA256 uint16 = 0x00A8
constant cipher_TLS_PSK_WITH_AES_256_GCM_SHA384 (line 131) | cipher_TLS_PSK_WITH_AES_256_GCM_SHA384 uint16 = 0x00A9
constant cipher_TLS_DHE_PSK_WITH_AES_128_GCM_SHA256 (line 132) | cipher_TLS_DHE_PSK_WITH_AES_128_GCM_SHA256 uint16 = 0x00AA
constant cipher_TLS_DHE_PSK_WITH_AES_256_GCM_SHA384 (line 133) | cipher_TLS_DHE_PSK_WITH_AES_256_GCM_SHA384 uint16 = 0x00AB
constant cipher_TLS_RSA_PSK_WITH_AES_128_GCM_SHA256 (line 134) | cipher_TLS_RSA_PSK_WITH_AES_128_GCM_SHA256 uint16 = 0x00AC
constant cipher_TLS_RSA_PSK_WITH_AES_256_GCM_SHA384 (line 135) | cipher_TLS_RSA_PSK_WITH_AES_256_GCM_SHA384 uint16 = 0x00AD
constant cipher_TLS_PSK_WITH_AES_128_CBC_SHA256 (line 136) | cipher_TLS_PSK_WITH_AES_128_CBC_SHA256 uint16 = 0x00AE
constant cipher_TLS_PSK_WITH_AES_256_CBC_SHA384 (line 137) | cipher_TLS_PSK_WITH_AES_256_CBC_SHA384 uint16 = 0x00AF
constant cipher_TLS_PSK_WITH_NULL_SHA256 (line 138) | cipher_TLS_PSK_WITH_NULL_SHA256 uint16 = 0x00B0
constant cipher_TLS_PSK_WITH_NULL_SHA384 (line 139) | cipher_TLS_PSK_WITH_NULL_SHA384 uint16 = 0x00B1
constant cipher_TLS_DHE_PSK_WITH_AES_128_CBC_SHA256 (line 140) | cipher_TLS_DHE_PSK_WITH_AES_128_CBC_SHA256 uint16 = 0x00B2
constant cipher_TLS_DHE_PSK_WITH_AES_256_CBC_SHA384 (line 141) | cipher_TLS_DHE_PSK_WITH_AES_256_CBC_SHA384 uint16 = 0x00B3
constant cipher_TLS_DHE_PSK_WITH_NULL_SHA256 (line 142) | cipher_TLS_DHE_PSK_WITH_NULL_SHA256 uint16 = 0x00B4
constant cipher_TLS_DHE_PSK_WITH_NULL_SHA384 (line 143) | cipher_TLS_DHE_PSK_WITH_NULL_SHA384 uint16 = 0x00B5
constant cipher_TLS_RSA_PSK_WITH_AES_128_CBC_SHA256 (line 144) | cipher_TLS_RSA_PSK_WITH_AES_128_CBC_SHA256 uint16 = 0x00B6
constant cipher_TLS_RSA_PSK_WITH_AES_256_CBC_SHA384 (line 145) | cipher_TLS_RSA_PSK_WITH_AES_256_CBC_SHA384 uint16 = 0x00B7
constant cipher_TLS_RSA_PSK_WITH_NULL_SHA256 (line 146) | cipher_TLS_RSA_PSK_WITH_NULL_SHA256 uint16 = 0x00B8
constant cipher_TLS_RSA_PSK_WITH_NULL_SHA384 (line 147) | cipher_TLS_RSA_PSK_WITH_NULL_SHA384 uint16 = 0x00B9
constant cipher_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256 (line 148) | cipher_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0x00BA
constant cipher_TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256 (line 149) | cipher_TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0x00BB
constant cipher_TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256 (line 150) | cipher_TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0x00BC
constant cipher_TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256 (line 151) | cipher_TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0x00BD
constant cipher_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 (line 152) | cipher_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0x00BE
constant cipher_TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256 (line 153) | cipher_TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0x00BF
constant cipher_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256 (line 154) | cipher_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256 uint16 = 0x00C0
constant cipher_TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256 (line 155) | cipher_TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256 uint16 = 0x00C1
constant cipher_TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256 (line 156) | cipher_TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256 uint16 = 0x00C2
constant cipher_TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256 (line 157) | cipher_TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256 uint16 = 0x00C3
constant cipher_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256 (line 158) | cipher_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256 uint16 = 0x00C4
constant cipher_TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256 (line 159) | cipher_TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256 uint16 = 0x00C5
constant cipher_TLS_EMPTY_RENEGOTIATION_INFO_SCSV (line 161) | cipher_TLS_EMPTY_RENEGOTIATION_INFO_SCSV uint16 = 0x00FF
constant cipher_TLS_FALLBACK_SCSV (line 163) | cipher_TLS_FALLBACK_SCSV uint16 = 0x5600
constant cipher_TLS_ECDH_ECDSA_WITH_NULL_SHA (line 165) | cipher_TLS_ECDH_ECDSA_WITH_NULL_SHA uint16 = 0xC001
constant cipher_TLS_ECDH_ECDSA_WITH_RC4_128_SHA (line 166) | cipher_TLS_ECDH_ECDSA_WITH_RC4_128_SHA uint16 = 0xC002
constant cipher_TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA (line 167) | cipher_TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA uint16 = 0xC003
constant cipher_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA (line 168) | cipher_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA uint16 = 0xC004
constant cipher_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA (line 169) | cipher_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA uint16 = 0xC005
constant cipher_TLS_ECDHE_ECDSA_WITH_NULL_SHA (line 170) | cipher_TLS_ECDHE_ECDSA_WITH_NULL_SHA uint16 = 0xC006
constant cipher_TLS_ECDHE_ECDSA_WITH_RC4_128_SHA (line 171) | cipher_TLS_ECDHE_ECDSA_WITH_RC4_128_SHA uint16 = 0xC007
constant cipher_TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA (line 172) | cipher_TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA uint16 = 0xC008
constant cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA (line 173) | cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA uint16 = 0xC009
constant cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA (line 174) | cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA uint16 = 0xC00A
constant cipher_TLS_ECDH_RSA_WITH_NULL_SHA (line 175) | cipher_TLS_ECDH_RSA_WITH_NULL_SHA uint16 = 0xC00B
constant cipher_TLS_ECDH_RSA_WITH_RC4_128_SHA (line 176) | cipher_TLS_ECDH_RSA_WITH_RC4_128_SHA uint16 = 0xC00C
constant cipher_TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA (line 177) | cipher_TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0xC00D
constant cipher_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA (line 178) | cipher_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA uint16 = 0xC00E
constant cipher_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA (line 179) | cipher_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA uint16 = 0xC00F
constant cipher_TLS_ECDHE_RSA_WITH_NULL_SHA (line 180) | cipher_TLS_ECDHE_RSA_WITH_NULL_SHA uint16 = 0xC010
constant cipher_TLS_ECDHE_RSA_WITH_RC4_128_SHA (line 181) | cipher_TLS_ECDHE_RSA_WITH_RC4_128_SHA uint16 = 0xC011
constant cipher_TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA (line 182) | cipher_TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0xC012
constant cipher_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA (line 183) | cipher_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA uint16 = 0xC013
constant cipher_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA (line 184) | cipher_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA uint16 = 0xC014
constant cipher_TLS_ECDH_anon_WITH_NULL_SHA (line 185) | cipher_TLS_ECDH_anon_WITH_NULL_SHA uint16 = 0xC015
constant cipher_TLS_ECDH_anon_WITH_RC4_128_SHA (line 186) | cipher_TLS_ECDH_anon_WITH_RC4_128_SHA uint16 = 0xC016
constant cipher_TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA (line 187) | cipher_TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA uint16 = 0xC017
constant cipher_TLS_ECDH_anon_WITH_AES_128_CBC_SHA (line 188) | cipher_TLS_ECDH_anon_WITH_AES_128_CBC_SHA uint16 = 0xC018
constant cipher_TLS_ECDH_anon_WITH_AES_256_CBC_SHA (line 189) | cipher_TLS_ECDH_anon_WITH_AES_256_CBC_SHA uint16 = 0xC019
constant cipher_TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA (line 190) | cipher_TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA uint16 = 0xC01A
constant cipher_TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA (line 191) | cipher_TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA uint16 = 0xC01B
constant cipher_TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA (line 192) | cipher_TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA uint16 = 0xC01C
constant cipher_TLS_SRP_SHA_WITH_AES_128_CBC_SHA (line 193) | cipher_TLS_SRP_SHA_WITH_AES_128_CBC_SHA uint16 = 0xC01D
constant cipher_TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA (line 194) | cipher_TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA uint16 = 0xC01E
constant cipher_TLS_SRP_SHA_DSS_WITH_AES_128_CBC_SHA (line 195) | cipher_TLS_SRP_SHA_DSS_WITH_AES_128_CBC_SHA uint16 = 0xC01F
constant cipher_TLS_SRP_SHA_WITH_AES_256_CBC_SHA (line 196) | cipher_TLS_SRP_SHA_WITH_AES_256_CBC_SHA uint16 = 0xC020
constant cipher_TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA (line 197) | cipher_TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA uint16 = 0xC021
constant cipher_TLS_SRP_SHA_DSS_WITH_AES_256_CBC_SHA (line 198) | cipher_TLS_SRP_SHA_DSS_WITH_AES_256_CBC_SHA uint16 = 0xC022
constant cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 (line 199) | cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 uint16 = 0xC023
constant cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 (line 200) | cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 uint16 = 0xC024
constant cipher_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 (line 201) | cipher_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 uint16 = 0xC025
constant cipher_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 (line 202) | cipher_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 uint16 = 0xC026
constant cipher_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 (line 203) | cipher_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 uint16 = 0xC027
constant cipher_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 (line 204) | cipher_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 uint16 = 0xC028
constant cipher_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 (line 205) | cipher_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 uint16 = 0xC029
constant cipher_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 (line 206) | cipher_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 uint16 = 0xC02A
constant cipher_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 (line 207) | cipher_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 uint16 = 0xC02B
constant cipher_TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 (line 208) | cipher_TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 uint16 = 0xC02C
constant cipher_TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 (line 209) | cipher_TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 uint16 = 0xC02D
constant cipher_TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 (line 210) | cipher_TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 uint16 = 0xC02E
constant cipher_TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (line 211) | cipher_TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 uint16 = 0xC02F
constant cipher_TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (line 212) | cipher_TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 uint16 = 0xC030
constant cipher_TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 (line 213) | cipher_TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 uint16 = 0xC031
constant cipher_TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 (line 214) | cipher_TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 uint16 = 0xC032
constant cipher_TLS_ECDHE_PSK_WITH_RC4_128_SHA (line 215) | cipher_TLS_ECDHE_PSK_WITH_RC4_128_SHA uint16 = 0xC033
constant cipher_TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA (line 216) | cipher_TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA uint16 = 0xC034
constant cipher_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA (line 217) | cipher_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA uint16 = 0xC035
constant cipher_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA (line 218) | cipher_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA uint16 = 0xC036
constant cipher_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256 (line 219) | cipher_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256 uint16 = 0xC037
constant cipher_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384 (line 220) | cipher_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384 uint16 = 0xC038
constant cipher_TLS_ECDHE_PSK_WITH_NULL_SHA (line 221) | cipher_TLS_ECDHE_PSK_WITH_NULL_SHA uint16 = 0xC039
constant cipher_TLS_ECDHE_PSK_WITH_NULL_SHA256 (line 222) | cipher_TLS_ECDHE_PSK_WITH_NULL_SHA256 uint16 = 0xC03A
constant cipher_TLS_ECDHE_PSK_WITH_NULL_SHA384 (line 223) | cipher_TLS_ECDHE_PSK_WITH_NULL_SHA384 uint16 = 0xC03B
constant cipher_TLS_RSA_WITH_ARIA_128_CBC_SHA256 (line 224) | cipher_TLS_RSA_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC03C
constant cipher_TLS_RSA_WITH_ARIA_256_CBC_SHA384 (line 225) | cipher_TLS_RSA_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC03D
constant cipher_TLS_DH_DSS_WITH_ARIA_128_CBC_SHA256 (line 226) | cipher_TLS_DH_DSS_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC03E
constant cipher_TLS_DH_DSS_WITH_ARIA_256_CBC_SHA384 (line 227) | cipher_TLS_DH_DSS_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC03F
constant cipher_TLS_DH_RSA_WITH_ARIA_128_CBC_SHA256 (line 228) | cipher_TLS_DH_RSA_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC040
constant cipher_TLS_DH_RSA_WITH_ARIA_256_CBC_SHA384 (line 229) | cipher_TLS_DH_RSA_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC041
constant cipher_TLS_DHE_DSS_WITH_ARIA_128_CBC_SHA256 (line 230) | cipher_TLS_DHE_DSS_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC042
constant cipher_TLS_DHE_DSS_WITH_ARIA_256_CBC_SHA384 (line 231) | cipher_TLS_DHE_DSS_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC043
constant cipher_TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256 (line 232) | cipher_TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC044
constant cipher_TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384 (line 233) | cipher_TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC045
constant cipher_TLS_DH_anon_WITH_ARIA_128_CBC_SHA256 (line 234) | cipher_TLS_DH_anon_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC046
constant cipher_TLS_DH_anon_WITH_ARIA_256_CBC_SHA384 (line 235) | cipher_TLS_DH_anon_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC047
constant cipher_TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256 (line 236) | cipher_TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC048
constant cipher_TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384 (line 237) | cipher_TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC049
constant cipher_TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256 (line 238) | cipher_TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC04A
constant cipher_TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384 (line 239) | cipher_TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC04B
constant cipher_TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256 (line 240) | cipher_TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC04C
constant cipher_TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384 (line 241) | cipher_TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC04D
constant cipher_TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256 (line 242) | cipher_TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC04E
constant cipher_TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384 (line 243) | cipher_TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC04F
constant cipher_TLS_RSA_WITH_ARIA_128_GCM_SHA256 (line 244) | cipher_TLS_RSA_WITH_ARIA_128_GCM_SHA256 uint16 = 0xC050
constant cipher_TLS_RSA_WITH_ARIA_256_GCM_SHA384 (line 245) | cipher_TLS_RSA_WITH_ARIA_256_GCM_SHA384 uint16 = 0xC051
constant cipher_TLS_DHE_RSA_WITH_ARIA_128_GCM_SHA256 (line 246) | cipher_TLS_DHE_RSA_WITH_ARIA_128_GCM_SHA256 uint16 = 0xC052
constant cipher_TLS_DHE_RSA_WITH_ARIA_256_GCM_SHA384 (line 247) | cipher_TLS_DHE_RSA_WITH_ARIA_256_GCM_SHA384 uint16 = 0xC053
constant cipher_TLS_DH_RSA_WITH_ARIA_128_GCM_SHA256 (line 248) | cipher_TLS_DH_RSA_WITH_ARIA_128_GCM_SHA256 uint16 = 0xC054
constant cipher_TLS_DH_RSA_WITH_ARIA_256_GCM_SHA384 (line 249) | cipher_TLS_DH_RSA_WITH_ARIA_256_GCM_SHA384 uint16 = 0xC055
constant cipher_TLS_DHE_DSS_WITH_ARIA_128_GCM_SHA256 (line 250) | cipher_TLS_DHE_DSS_WITH_ARIA_128_GCM_SHA256 uint16 = 0xC056
constant cipher_TLS_DHE_DSS_WITH_ARIA_256_GCM_SHA384 (line 251) | cipher_TLS_DHE_DSS_WITH_ARIA_256_GCM_SHA384 uint16 = 0xC057
constant cipher_TLS_DH_DSS_WITH_ARIA_128_GCM_SHA256 (line 252) | cipher_TLS_DH_DSS_WITH_ARIA_128_GCM_SHA256 uint16 = 0xC058
constant cipher_TLS_DH_DSS_WITH_ARIA_256_GCM_SHA384 (line 253) | cipher_TLS_DH_DSS_WITH_ARIA_256_GCM_SHA384 uint16 = 0xC059
constant cipher_TLS_DH_anon_WITH_ARIA_128_GCM_SHA256 (line 254) | cipher_TLS_DH_anon_WITH_ARIA_128_GCM_SHA256 uint16 = 0xC05A
constant cipher_TLS_DH_anon_WITH_ARIA_256_GCM_SHA384 (line 255) | cipher_TLS_DH_anon_WITH_ARIA_256_GCM_SHA384 uint16 = 0xC05B
constant cipher_TLS_ECDHE_ECDSA_WITH_ARIA_128_GCM_SHA256 (line 256) | cipher_TLS_ECDHE_ECDSA_WITH_ARIA_128_GCM_SHA256 uint16 = 0xC05C
constant cipher_TLS_ECDHE_ECDSA_WITH_ARIA_256_GCM_SHA384 (line 257) | cipher_TLS_ECDHE_ECDSA_WITH_ARIA_256_GCM_SHA384 uint16 = 0xC05D
constant cipher_TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256 (line 258) | cipher_TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256 uint16 = 0xC05E
constant cipher_TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384 (line 259) | cipher_TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384 uint16 = 0xC05F
constant cipher_TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256 (line 260) | cipher_TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256 uint16 = 0xC060
constant cipher_TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384 (line 261) | cipher_TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384 uint16 = 0xC061
constant cipher_TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256 (line 262) | cipher_TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256 uint16 = 0xC062
constant cipher_TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384 (line 263) | cipher_TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384 uint16 = 0xC063
constant cipher_TLS_PSK_WITH_ARIA_128_CBC_SHA256 (line 264) | cipher_TLS_PSK_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC064
constant cipher_TLS_PSK_WITH_ARIA_256_CBC_SHA384 (line 265) | cipher_TLS_PSK_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC065
constant cipher_TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256 (line 266) | cipher_TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC066
constant cipher_TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384 (line 267) | cipher_TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC067
constant cipher_TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256 (line 268) | cipher_TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC068
constant cipher_TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384 (line 269) | cipher_TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC069
constant cipher_TLS_PSK_WITH_ARIA_128_GCM_SHA256 (line 270) | cipher_TLS_PSK_WITH_ARIA_128_GCM_SHA256 uint16 = 0xC06A
constant cipher_TLS_PSK_WITH_ARIA_256_GCM_SHA384 (line 271) | cipher_TLS_PSK_WITH_ARIA_256_GCM_SHA384 uint16 = 0xC06B
constant cipher_TLS_DHE_PSK_WITH_ARIA_128_GCM_SHA256 (line 272) | cipher_TLS_DHE_PSK_WITH_ARIA_128_GCM_SHA256 uint16 = 0xC06C
constant cipher_TLS_DHE_PSK_WITH_ARIA_256_GCM_SHA384 (line 273) | cipher_TLS_DHE_PSK_WITH_ARIA_256_GCM_SHA384 uint16 = 0xC06D
constant cipher_TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256 (line 274) | cipher_TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256 uint16 = 0xC06E
constant cipher_TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384 (line 275) | cipher_TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384 uint16 = 0xC06F
constant cipher_TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256 (line 276) | cipher_TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256 uint16 = 0xC070
constant cipher_TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384 (line 277) | cipher_TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384 uint16 = 0xC071
constant cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 (line 278) | cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0xC072
constant cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 (line 279) | cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 uint16 = 0xC073
constant cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 (line 280) | cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0xC074
constant cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 (line 281) | cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 uint16 = 0xC075
constant cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 (line 282) | cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0xC076
constant cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384 (line 283) | cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384 uint16 = 0xC077
constant cipher_TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256 (line 284) | cipher_TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0xC078
constant cipher_TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384 (line 285) | cipher_TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384 uint16 = 0xC079
constant cipher_TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256 (line 286) | cipher_TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC07A
constant cipher_TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384 (line 287) | cipher_TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC07B
constant cipher_TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 (line 288) | cipher_TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC07C
constant cipher_TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 (line 289) | cipher_TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC07D
constant cipher_TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256 (line 290) | cipher_TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC07E
constant cipher_TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384 (line 291) | cipher_TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC07F
constant cipher_TLS_DHE_DSS_WITH_CAMELLIA_128_GCM_SHA256 (line 292) | cipher_TLS_DHE_DSS_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC080
constant cipher_TLS_DHE_DSS_WITH_CAMELLIA_256_GCM_SHA384 (line 293) | cipher_TLS_DHE_DSS_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC081
constant cipher_TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256 (line 294) | cipher_TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC082
constant cipher_TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384 (line 295) | cipher_TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC083
constant cipher_TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256 (line 296) | cipher_TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC084
constant cipher_TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384 (line 297) | cipher_TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC085
constant cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 (line 298) | cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC086
constant cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 (line 299) | cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC087
constant cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 (line 300) | cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC088
constant cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 (line 301) | cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC089
constant cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 (line 302) | cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC08A
constant cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 (line 303) | cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC08B
constant cipher_TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256 (line 304) | cipher_TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC08C
constant cipher_TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384 (line 305) | cipher_TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC08D
constant cipher_TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256 (line 306) | cipher_TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC08E
constant cipher_TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384 (line 307) | cipher_TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC08F
constant cipher_TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256 (line 308) | cipher_TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC090
constant cipher_TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384 (line 309) | cipher_TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC091
constant cipher_TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256 (line 310) | cipher_TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC092
constant cipher_TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384 (line 311) | cipher_TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC093
constant cipher_TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256 (line 312) | cipher_TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0xC094
constant cipher_TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384 (line 313) | cipher_TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384 uint16 = 0xC095
constant cipher_TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 (line 314) | cipher_TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0xC096
constant cipher_TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 (line 315) | cipher_TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 uint16 = 0xC097
constant cipher_TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256 (line 316) | cipher_TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0xC098
constant cipher_TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384 (line 317) | cipher_TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384 uint16 = 0xC099
constant cipher_TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 (line 318) | cipher_TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0xC09A
constant cipher_TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 (line 319) | cipher_TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 uint16 = 0xC09B
constant cipher_TLS_RSA_WITH_AES_128_CCM (line 320) | cipher_TLS_RSA_WITH_AES_128_CCM uint16 = 0xC09C
constant cipher_TLS_RSA_WITH_AES_256_CCM (line 321) | cipher_TLS_RSA_WITH_AES_256_CCM uint16 = 0xC09D
constant cipher_TLS_DHE_RSA_WITH_AES_128_CCM (line 322) | cipher_TLS_DHE_RSA_WITH_AES_128_CCM uint16 = 0xC09E
constant cipher_TLS_DHE_RSA_WITH_AES_256_CCM (line 323) | cipher_TLS_DHE_RSA_WITH_AES_256_CCM uint16 = 0xC09F
constant cipher_TLS_RSA_WITH_AES_128_CCM_8 (line 324) | cipher_TLS_RSA_WITH_AES_128_CCM_8 uint16 = 0xC0A0
constant cipher_TLS_RSA_WITH_AES_256_CCM_8 (line 325) | cipher_TLS_RSA_WITH_AES_256_CCM_8 uint16 = 0xC0A1
constant cipher_TLS_DHE_RSA_WITH_AES_128_CCM_8 (line 326) | cipher_TLS_DHE_RSA_WITH_AES_128_CCM_8 uint16 = 0xC0A2
constant cipher_TLS_DHE_RSA_WITH_AES_256_CCM_8 (line 327) | cipher_TLS_DHE_RSA_WITH_AES_256_CCM_8 uint16 = 0xC0A3
constant cipher_TLS_PSK_WITH_AES_128_CCM (line 328) | cipher_TLS_PSK_WITH_AES_128_CCM uint16 = 0xC0A4
constant cipher_TLS_PSK_WITH_AES_256_CCM (line 329) | cipher_TLS_PSK_WITH_AES_256_CCM uint16 = 0xC0A5
constant cipher_TLS_DHE_PSK_WITH_AES_128_CCM (line 330) | cipher_TLS_DHE_PSK_WITH_AES_128_CCM uint16 = 0xC0A6
constant cipher_TLS_DHE_PSK_WITH_AES_256_CCM (line 331) | cipher_TLS_DHE_PSK_WITH_AES_256_CCM uint16 = 0xC0A7
constant cipher_TLS_PSK_WITH_AES_128_CCM_8 (line 332) | cipher_TLS_PSK_WITH_AES_128_CCM_8 uint16 = 0xC0A8
constant cipher_TLS_PSK_WITH_AES_256_CCM_8 (line 333) | cipher_TLS_PSK_WITH_AES_256_CCM_8 uint16 = 0xC0A9
constant cipher_TLS_PSK_DHE_WITH_AES_128_CCM_8 (line 334) | cipher_TLS_PSK_DHE_WITH_AES_128_CCM_8 uint16 = 0xC0AA
constant cipher_TLS_PSK_DHE_WITH_AES_256_CCM_8 (line 335) | cipher_TLS_PSK_DHE_WITH_AES_256_CCM_8 uint16 = 0xC0AB
constant cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CCM (line 336) | cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CCM uint16 = 0xC0AC
constant cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CCM (line 337) | cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CCM uint16 = 0xC0AD
constant cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8 (line 338) | cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8 uint16 = 0xC0AE
constant cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8 (line 339) | cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8 uint16 = 0xC0AF
constant cipher_TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 (line 343) | cipher_TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 uint16 = 0xCCA8
constant cipher_TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 (line 344) | cipher_TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 uint16 = 0xCCA9
constant cipher_TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256 (line 345) | cipher_TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256 uint16 = 0xCCAA
constant cipher_TLS_PSK_WITH_CHACHA20_POLY1305_SHA256 (line 346) | cipher_TLS_PSK_WITH_CHACHA20_POLY1305_SHA256 uint16 = 0xCCAB
constant cipher_TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 (line 347) | cipher_TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 uint16 = 0xCCAC
constant cipher_TLS_DHE_PSK_WITH_CHACHA20_POLY1305_SHA256 (line 348) | cipher_TLS_DHE_PSK_WITH_CHACHA20_POLY1305_SHA256 uint16 = 0xCCAD
constant cipher_TLS_RSA_PSK_WITH_CHACHA20_POLY1305_SHA256 (line 349) | cipher_TLS_RSA_PSK_WITH_CHACHA20_POLY1305_SHA256 uint16 = 0xCCAE
function isBadCipher (line 359) | func isBadCipher(cipher uint16) bool {
FILE: vendor/golang.org/x/net/http2/ciphers_test.go
function TestIsBadCipherBad (line 9) | func TestIsBadCipherBad(t *testing.T) {
function TestIsBadCipherGood (line 18) | func TestIsBadCipherGood(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/client_conn_pool.go
type ClientConnPool (line 16) | type ClientConnPool interface
type clientConnPoolIdleCloser (line 23) | type clientConnPoolIdleCloser interface
type clientConnPool (line 34) | type clientConnPool struct
method GetClientConn (line 46) | func (p *clientConnPool) GetClientConn(req *http.Request, addr string)...
method getClientConn (line 55) | func (p *clientConnPool) getClientConn(req *http.Request, addr string,...
method getStartDialLocked (line 91) | func (p *clientConnPool) getStartDialLocked(addr string) *dialCall {
method addConnIfNeeded (line 127) | func (p *clientConnPool) addConnIfNeeded(key string, t *Transport, c *...
method addConn (line 177) | func (p *clientConnPool) addConn(key string, cc *ClientConn) {
method addConnLocked (line 184) | func (p *clientConnPool) addConnLocked(key string, cc *ClientConn) {
method MarkDead (line 200) | func (p *clientConnPool) MarkDead(cc *ClientConn) {
method closeIdleConnections (line 218) | func (p *clientConnPool) closeIdleConnections() {
constant dialOnMiss (line 51) | dialOnMiss = true
constant noDialOnMiss (line 52) | noDialOnMiss = false
type dialCall (line 83) | type dialCall struct
method dial (line 106) | func (c *dialCall) dial(addr string) {
type addConnCall (line 156) | type addConnCall struct
method run (line 162) | func (c *addConnCall) run(t *Transport, key string, tc *tls.Conn) {
function filterOutClientConn (line 234) | func filterOutClientConn(in []*ClientConn, exclude *ClientConn) []*Clien...
type noDialClientConnPool (line 252) | type noDialClientConnPool struct
method GetClientConn (line 254) | func (p noDialClientConnPool) GetClientConn(req *http.Request, addr st...
FILE: vendor/golang.org/x/net/http2/configure_transport.go
function configureTransport (line 15) | func configureTransport(t1 *http.Transport) (*Transport, error) {
function registerHTTPSProtocol (line 60) | func registerHTTPSProtocol(t *http.Transport, rt http.RoundTripper) (err...
type noDialH2RoundTripper (line 72) | type noDialH2RoundTripper struct
method RoundTrip (line 74) | func (rt noDialH2RoundTripper) RoundTrip(req *http.Request) (*http.Res...
FILE: vendor/golang.org/x/net/http2/databuffer.go
function getDataBufferChunk (line 40) | func getDataBufferChunk(size int64) []byte {
function putDataBufferChunk (line 50) | func putDataBufferChunk(p []byte) {
type dataBuffer (line 65) | type dataBuffer struct
method Read (line 77) | func (b *dataBuffer) Read(p []byte) (int, error) {
method bytesFromFirstChunk (line 102) | func (b *dataBuffer) bytesFromFirstChunk() []byte {
method Len (line 110) | func (b *dataBuffer) Len() int {
method Write (line 115) | func (b *dataBuffer) Write(p []byte) (int, error) {
method lastChunkOrAlloc (line 135) | func (b *dataBuffer) lastChunkOrAlloc(want int64) []byte {
FILE: vendor/golang.org/x/net/http2/databuffer_test.go
function fmtDataChunk (line 16) | func fmtDataChunk(chunk []byte) string {
function fmtDataChunks (line 37) | func fmtDataChunks(chunks [][]byte) string {
function testDataBuffer (line 45) | func testDataBuffer(t *testing.T, wantBytes []byte, setup func(t *testin...
function TestDataBufferAllocation (line 71) | func TestDataBufferAllocation(t *testing.T) {
function TestDataBufferAllocationWithExpected (line 110) | func TestDataBufferAllocationWithExpected(t *testing.T) {
function TestDataBufferWriteAfterPartialRead (line 142) | func TestDataBufferWriteAfterPartialRead(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/errors.go
type ErrCode (line 13) | type ErrCode
method String (line 49) | func (e ErrCode) String() string {
constant ErrCodeNo (line 16) | ErrCodeNo ErrCode = 0x0
constant ErrCodeProtocol (line 17) | ErrCodeProtocol ErrCode = 0x1
constant ErrCodeInternal (line 18) | ErrCodeInternal ErrCode = 0x2
constant ErrCodeFlowControl (line 19) | ErrCodeFlowControl ErrCode = 0x3
constant ErrCodeSettingsTimeout (line 20) | ErrCodeSettingsTimeout ErrCode = 0x4
constant ErrCodeStreamClosed (line 21) | ErrCodeStreamClosed ErrCode = 0x5
constant ErrCodeFrameSize (line 22) | ErrCodeFrameSize ErrCode = 0x6
constant ErrCodeRefusedStream (line 23) | ErrCodeRefusedStream ErrCode = 0x7
constant ErrCodeCancel (line 24) | ErrCodeCancel ErrCode = 0x8
constant ErrCodeCompression (line 25) | ErrCodeCompression ErrCode = 0x9
constant ErrCodeConnect (line 26) | ErrCodeConnect ErrCode = 0xa
constant ErrCodeEnhanceYourCalm (line 27) | ErrCodeEnhanceYourCalm ErrCode = 0xb
constant ErrCodeInadequateSecurity (line 28) | ErrCodeInadequateSecurity ErrCode = 0xc
constant ErrCodeHTTP11Required (line 29) | ErrCodeHTTP11Required ErrCode = 0xd
type ConnectionError (line 58) | type ConnectionError
method Error (line 60) | func (e ConnectionError) Error() string { return fmt.Sprintf("connecti...
type StreamError (line 64) | type StreamError struct
method Error (line 74) | func (e StreamError) Error() string {
function streamError (line 70) | func streamError(id uint32, code ErrCode) StreamError {
type goAwayFlowError (line 86) | type goAwayFlowError struct
method Error (line 88) | func (goAwayFlowError) Error() string { return "connection exceeded fl...
type connError (line 97) | type connError struct
method Error (line 102) | func (e connError) Error() string {
type pseudoHeaderError (line 106) | type pseudoHeaderError
method Error (line 108) | func (e pseudoHeaderError) Error() string {
type duplicatePseudoHeaderError (line 112) | type duplicatePseudoHeaderError
method Error (line 114) | func (e duplicatePseudoHeaderError) Error() string {
type headerFieldNameError (line 118) | type headerFieldNameError
method Error (line 120) | func (e headerFieldNameError) Error() string {
type headerFieldValueError (line 124) | type headerFieldValueError
method Error (line 126) | func (e headerFieldValueError) Error() string {
FILE: vendor/golang.org/x/net/http2/errors_test.go
function TestErrCodeString (line 9) | func TestErrCodeString(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/flow.go
type flow (line 10) | type flow struct
method setConnFlow (line 21) | func (f *flow) setConnFlow(cf *flow) { f.conn = cf }
method available (line 23) | func (f *flow) available() int32 {
method take (line 31) | func (f *flow) take(n int32) {
method add (line 43) | func (f *flow) add(n int32) bool {
FILE: vendor/golang.org/x/net/http2/flow_test.go
function TestFlow (line 9) | func TestFlow(t *testing.T) {
function TestFlowAdd (line 32) | func TestFlowAdd(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/frame.go
constant frameHeaderLen (line 21) | frameHeaderLen = 9
type FrameType (line 27) | type FrameType
method String (line 55) | func (t FrameType) String() string {
constant FrameData (line 30) | FrameData FrameType = 0x0
constant FrameHeaders (line 31) | FrameHeaders FrameType = 0x1
constant FramePriority (line 32) | FramePriority FrameType = 0x2
constant FrameRSTStream (line 33) | FrameRSTStream FrameType = 0x3
constant FrameSettings (line 34) | FrameSettings FrameType = 0x4
constant FramePushPromise (line 35) | FramePushPromise FrameType = 0x5
constant FramePing (line 36) | FramePing FrameType = 0x6
constant FrameGoAway (line 37) | FrameGoAway FrameType = 0x7
constant FrameWindowUpdate (line 38) | FrameWindowUpdate FrameType = 0x8
constant FrameContinuation (line 39) | FrameContinuation FrameType = 0x9
type Flags (line 64) | type Flags
method Has (line 67) | func (f Flags) Has(v Flags) bool {
constant FlagDataEndStream (line 74) | FlagDataEndStream Flags = 0x1
constant FlagDataPadded (line 75) | FlagDataPadded Flags = 0x8
constant FlagHeadersEndStream (line 78) | FlagHeadersEndStream Flags = 0x1
constant FlagHeadersEndHeaders (line 79) | FlagHeadersEndHeaders Flags = 0x4
constant FlagHeadersPadded (line 80) | FlagHeadersPadded Flags = 0x8
constant FlagHeadersPriority (line 81) | FlagHeadersPriority Flags = 0x20
constant FlagSettingsAck (line 84) | FlagSettingsAck Flags = 0x1
constant FlagPingAck (line 87) | FlagPingAck Flags = 0x1
constant FlagContinuationEndHeaders (line 90) | FlagContinuationEndHeaders Flags = 0x4
constant FlagPushPromiseEndHeaders (line 92) | FlagPushPromiseEndHeaders Flags = 0x4
constant FlagPushPromisePadded (line 93) | FlagPushPromisePadded Flags = 0x8
type frameParser (line 125) | type frameParser
function typeFrameParser (line 140) | func typeFrameParser(t FrameType) frameParser {
type FrameHeader (line 150) | type FrameHeader struct
method Header (line 174) | func (h FrameHeader) Header() FrameHeader { return h }
method String (line 176) | func (h FrameHeader) String() string {
method writeDebug (line 184) | func (h FrameHeader) writeDebug(buf *bytes.Buffer) {
method checkValid (line 211) | func (h *FrameHeader) checkValid() {
method invalidate (line 217) | func (h *FrameHeader) invalidate() { h.valid = false }
function ReadFrameHeader (line 230) | func ReadFrameHeader(r io.Reader) (FrameHeader, error) {
function readFrameHeader (line 236) | func readFrameHeader(buf []byte, r io.Reader) (FrameHeader, error) {
type Frame (line 255) | type Frame interface
type Framer (line 265) | type Framer struct
method maxHeaderListSize (line 330) | func (fr *Framer) maxHeaderListSize() uint32 {
method startWrite (line 337) | func (f *Framer) startWrite(ftype FrameType, flags Flags, streamID uin...
method endWrite (line 351) | func (f *Framer) endWrite() error {
method logWrite (line 373) | func (f *Framer) logWrite() {
method writeByte (line 391) | func (f *Framer) writeByte(v byte) { f.wbuf = append(f.wbuf, v) }
method writeBytes (line 392) | func (f *Framer) writeBytes(v []byte) { f.wbuf = append(f.wbuf, v...) }
method writeUint16 (line 393) | func (f *Framer) writeUint16(v uint16) { f.wbuf = append(f.wbuf, byte(...
method writeUint32 (line 394) | func (f *Framer) writeUint32(v uint32) {
method SetReuseFrames (line 406) | func (fr *Framer) SetReuseFrames() {
method SetMaxReadFrameSize (line 449) | func (fr *Framer) SetMaxReadFrameSize(v uint32) {
method ErrorDetail (line 463) | func (fr *Framer) ErrorDetail() error {
method ReadFrame (line 487) | func (fr *Framer) ReadFrame() (Frame, error) {
method connError (line 526) | func (fr *Framer) connError(code ErrCode, reason string) error {
method checkFrameOrder (line 534) | func (fr *Framer) checkFrameOrder(f Frame) error {
method WriteData (line 642) | func (f *Framer) WriteData(streamID uint32, endStream bool, data []byt...
method WriteDataPadded (line 655) | func (f *Framer) WriteDataPadded(streamID uint32, endStream bool, data...
method WriteSettings (line 771) | func (f *Framer) WriteSettings(settings ...Setting) error {
method WriteSettingsAck (line 784) | func (f *Framer) WriteSettingsAck() error {
method WritePing (line 812) | func (f *Framer) WritePing(ack bool, data [8]byte) error {
method WriteGoAway (line 855) | func (f *Framer) WriteGoAway(maxStreamID uint32, code ErrCode, debugDa...
method WriteWindowUpdate (line 918) | func (f *Framer) WriteWindowUpdate(streamID, incr uint32) error {
method WriteHeaders (line 1028) | func (f *Framer) WriteHeaders(p HeadersFrameParam) error {
method WritePriority (line 1116) | func (f *Framer) WritePriority(streamID uint32, p PriorityParam) error {
method WriteRSTStream (line 1154) | func (f *Framer) WriteRSTStream(streamID uint32, code ErrCode) error {
method WriteContinuation (line 1190) | func (f *Framer) WriteContinuation(streamID uint32, endHeaders bool, h...
method WritePushPromise (line 1285) | func (f *Framer) WritePushPromise(p PushPromiseParam) error {
method WriteRawFrame (line 1311) | func (f *Framer) WriteRawFrame(t FrameType, flags Flags, streamID uint...
method maxHeaderStringLen (line 1434) | func (fr *Framer) maxHeaderStringLen() int {
method readMetaFrame (line 1447) | func (fr *Framer) readMetaFrame(hf *HeadersFrame) (*MetaHeadersFrame, ...
constant minMaxFrameSize (line 399) | minMaxFrameSize = 1 << 14
constant maxFrameSize (line 400) | maxFrameSize = 1<<24 - 1
type frameCache (line 413) | type frameCache struct
method getDataFrame (line 417) | func (fc *frameCache) getDataFrame() *DataFrame {
function NewFramer (line 425) | func NewFramer(w io.Writer, r io.Reader) *Framer {
function terminalReadFrameError (line 473) | func terminalReadFrameError(err error) bool {
type DataFrame (line 573) | type DataFrame struct
method StreamEnded (line 578) | func (f *DataFrame) StreamEnded() bool {
method Data (line 586) | func (f *DataFrame) Data() []byte {
function parseDataFrame (line 591) | func parseDataFrame(fc *frameCache, fh FrameHeader, payload []byte) (Fra...
function validStreamIDOrZero (line 629) | func validStreamIDOrZero(streamID uint32) bool {
function validStreamID (line 633) | func validStreamID(streamID uint32) bool {
type SettingsFrame (line 693) | type SettingsFrame struct
method IsAck (line 732) | func (f *SettingsFrame) IsAck() bool {
method Value (line 736) | func (f *SettingsFrame) Value(s SettingID) (v uint32, ok bool) {
method ForeachSetting (line 751) | func (f *SettingsFrame) ForeachSetting(fn func(Setting) error) error {
function parseSettingsFrame (line 698) | func parseSettingsFrame(_ *frameCache, fh FrameHeader, p []byte) (Frame,...
type PingFrame (line 793) | type PingFrame struct
method IsAck (line 798) | func (f *PingFrame) IsAck() bool { return f.Flags.Has(FlagPingAck) }
function parsePingFrame (line 800) | func parsePingFrame(_ *frameCache, fh FrameHeader, payload []byte) (Fram...
type GoAwayFrame (line 824) | type GoAwayFrame struct
method DebugData (line 835) | func (f *GoAwayFrame) DebugData() []byte {
function parseGoAwayFrame (line 840) | func parseGoAwayFrame(_ *frameCache, fh FrameHeader, p []byte) (Frame, e...
type UnknownFrame (line 865) | type UnknownFrame struct
method Payload (line 875) | func (f *UnknownFrame) Payload() []byte {
function parseUnknownFrame (line 880) | func parseUnknownFrame(_ *frameCache, fh FrameHeader, p []byte) (Frame, ...
type WindowUpdateFrame (line 886) | type WindowUpdateFrame struct
function parseWindowUpdateFrame (line 891) | func parseWindowUpdateFrame(_ *frameCache, fh FrameHeader, p []byte) (Fr...
type HeadersFrame (line 930) | type HeadersFrame struct
method HeaderBlockFragment (line 939) | func (f *HeadersFrame) HeaderBlockFragment() []byte {
method HeadersEnded (line 944) | func (f *HeadersFrame) HeadersEnded() bool {
method StreamEnded (line 948) | func (f *HeadersFrame) StreamEnded() bool {
method HasPriority (line 952) | func (f *HeadersFrame) HasPriority() bool {
function parseHeadersFrame (line 956) | func parseHeadersFrame(_ *frameCache, fh FrameHeader, p []byte) (_ Frame...
type HeadersFrameParam (line 994) | type HeadersFrameParam struct
type PriorityFrame (line 1067) | type PriorityFrame struct
type PriorityParam (line 1073) | type PriorityParam struct
method IsZero (line 1089) | func (p PriorityParam) IsZero() bool {
function parsePriorityFrame (line 1093) | func parsePriorityFrame(_ *frameCache, fh FrameHeader, payload []byte) (...
type RSTStreamFrame (line 1135) | type RSTStreamFrame struct
function parseRSTStreamFrame (line 1140) | func parseRSTStreamFrame(_ *frameCache, fh FrameHeader, p []byte) (Frame...
type ContinuationFrame (line 1165) | type ContinuationFrame struct
method HeaderBlockFragment (line 1177) | func (f *ContinuationFrame) HeaderBlockFragment() []byte {
method HeadersEnded (line 1182) | func (f *ContinuationFrame) HeadersEnded() bool {
function parseContinuationFrame (line 1170) | func parseContinuationFrame(_ *frameCache, fh FrameHeader, p []byte) (Fr...
type PushPromiseFrame (line 1205) | type PushPromiseFrame struct
method HeaderBlockFragment (line 1211) | func (f *PushPromiseFrame) HeaderBlockFragment() []byte {
method HeadersEnded (line 1216) | func (f *PushPromiseFrame) HeadersEnded() bool {
function parsePushPromise (line 1220) | func parsePushPromise(_ *frameCache, fh FrameHeader, p []byte) (_ Frame,...
type PushPromiseParam (line 1257) | type PushPromiseParam struct
function readByte (line 1317) | func readByte(p []byte) (remain []byte, b byte, err error) {
function readUint32 (line 1324) | func readUint32(p []byte) (remain []byte, v uint32, err error) {
type streamEnder (line 1331) | type streamEnder interface
type headersEnder (line 1335) | type headersEnder interface
type headersOrContinuation (line 1339) | type headersOrContinuation interface
type MetaHeadersFrame (line 1350) | type MetaHeadersFrame struct
method PseudoValue (line 1373) | func (mh *MetaHeadersFrame) PseudoValue(pseudo string) string {
method RegularFields (line 1387) | func (mh *MetaHeadersFrame) RegularFields() []hpack.HeaderField {
method PseudoFields (line 1398) | func (mh *MetaHeadersFrame) PseudoFields() []hpack.HeaderField {
method checkPseudos (line 1407) | func (mh *MetaHeadersFrame) checkPseudos() error {
function summarizeFrame (line 1538) | func summarizeFrame(f Frame) string {
FILE: vendor/golang.org/x/net/http2/frame_test.go
function testFramer (line 19) | func testFramer() (*Framer, *bytes.Buffer) {
function TestFrameSizes (line 24) | func TestFrameSizes(t *testing.T) {
function TestFrameTypeString (line 31) | func TestFrameTypeString(t *testing.T) {
function TestWriteRST (line 50) | func TestWriteRST(t *testing.T) {
function TestWriteData (line 78) | func TestWriteData(t *testing.T) {
function TestWriteDataPadded (line 103) | func TestWriteDataPadded(t *testing.T) {
function TestWriteHeaders (line 174) | func TestWriteHeaders(t *testing.T) {
function TestWriteInvalidStreamDep (line 328) | func TestWriteInvalidStreamDep(t *testing.T) {
function TestWriteContinuation (line 346) | func TestWriteContinuation(t *testing.T) {
function TestWritePriority (line 403) | func TestWritePriority(t *testing.T) {
function TestWriteSettings (line 471) | func TestWriteSettings(t *testing.T) {
function TestWriteSettingsAck (line 501) | func TestWriteSettingsAck(t *testing.T) {
function TestWriteWindowUpdate (line 510) | func TestWriteWindowUpdate(t *testing.T) {
function TestWritePing (line 540) | func TestWritePing(t *testing.T) { testWritePing(t, false) }
function TestWritePingAck (line 541) | func TestWritePingAck(t *testing.T) { testWritePing(t, true) }
function testWritePing (line 543) | func testWritePing(t *testing.T, ack bool) {
function TestReadFrameHeader (line 576) | func TestReadFrameHeader(t *testing.T) {
function TestReadWriteFrameHeader (line 604) | func TestReadWriteFrameHeader(t *testing.T) {
function TestWriteTooLargeFrame (line 642) | func TestWriteTooLargeFrame(t *testing.T) {
function TestWriteGoAway (line 652) | func TestWriteGoAway(t *testing.T) {
function TestWritePushPromise (line 686) | func TestWritePushPromise(t *testing.T) {
function TestReadFrameOrder (line 725) | func TestReadFrameOrder(t *testing.T) {
function TestMetaFrameHeader (line 859) | func TestMetaFrameHeader(t *testing.T) {
function TestSetReuseFrames (line 1099) | func TestSetReuseFrames(t *testing.T) {
function TestSetReuseFramesMoreThanOnce (line 1129) | func TestSetReuseFramesMoreThanOnce(t *testing.T) {
function TestNoSetReuseFrames (line 1146) | func TestNoSetReuseFrames(t *testing.T) {
function readAndVerifyDataFrame (line 1164) | func readAndVerifyDataFrame(data string, length byte, fr *Framer, buf *b...
function encodeHeaderRaw (line 1188) | func encodeHeaderRaw(t *testing.T, pairs ...string) []byte {
FILE: vendor/golang.org/x/net/http2/go16.go
function transportExpectContinueTimeout (line 14) | func transportExpectContinueTimeout(t1 *http.Transport) time.Duration {
FILE: vendor/golang.org/x/net/http2/go17.go
type contextContext (line 17) | type contextContext interface
function serverConnBaseContext (line 21) | func serverConnBaseContext(c net.Conn, opts *ServeConnOpts) (ctx context...
function contextWithCancel (line 30) | func contextWithCancel(ctx contextContext) (_ contextContext, cancel fun...
function requestWithContext (line 34) | func requestWithContext(req *http.Request, ctx contextContext) *http.Req...
type clientTrace (line 38) | type clientTrace
function reqContext (line 40) | func reqContext(r *http.Request) context.Context { return r.Context() }
method idleConnTimeout (line 42) | func (t *Transport) idleConnTimeout() time.Duration {
function setResponseUncompressed (line 49) | func setResponseUncompressed(res *http.Response) { res.Uncompressed = tr...
function traceGotConn (line 51) | func traceGotConn(req *http.Request, cc *ClientConn) {
function traceWroteHeaders (line 68) | func traceWroteHeaders(trace *clientTrace) {
function traceGot100Continue (line 74) | func traceGot100Continue(trace *clientTrace) {
function traceWait100Continue (line 80) | func traceWait100Continue(trace *clientTrace) {
function traceWroteRequest (line 86) | func traceWroteRequest(trace *clientTrace, err error) {
function traceFirstResponseByte (line 92) | func traceFirstResponseByte(trace *clientTrace) {
function requestTrace (line 98) | func requestTrace(req *http.Request) *clientTrace {
method Ping (line 104) | func (cc *ClientConn) Ping(ctx context.Context) error {
FILE: vendor/golang.org/x/net/http2/go17_not18.go
function cloneTLSConfig (line 12) | func cloneTLSConfig(c *tls.Config) *tls.Config {
FILE: vendor/golang.org/x/net/http2/go18.go
function cloneTLSConfig (line 15) | func cloneTLSConfig(c *tls.Config) *tls.Config {
method Push (line 24) | func (w *responseWriter) Push(target string, opts *http.PushOptions) err...
function configureServer18 (line 33) | func configureServer18(h1 *http.Server, h2 *Server) error {
function shouldLogPanic (line 44) | func shouldLogPanic(panicValue interface{}) bool {
function reqGetBody (line 48) | func reqGetBody(req *http.Request) func() (io.ReadCloser, error) {
function reqBodyIsNoBody (line 52) | func reqBodyIsNoBody(body io.ReadCloser) bool {
function go18httpNoBody (line 56) | func go18httpNoBody() io.ReadCloser { return http.NoBody }
FILE: vendor/golang.org/x/net/http2/go18_test.go
function TestConfigureServerIdleTimeout_Go18 (line 19) | func TestConfigureServerIdleTimeout_Go18(t *testing.T) {
function TestCertClone (line 69) | func TestCertClone(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/go19.go
function configureServer19 (line 13) | func configureServer19(s *http.Server, conf *Server) error {
FILE: vendor/golang.org/x/net/http2/go19_test.go
function TestServerGracefulShutdown (line 17) | func TestServerGracefulShutdown(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/gotrack.go
type goroutineLock (line 22) | type goroutineLock
method check (line 31) | func (g goroutineLock) check() {
method checkNotOn (line 40) | func (g goroutineLock) checkNotOn() {
function newGoroutineLock (line 24) | func newGoroutineLock() goroutineLock {
function curGoroutineID (line 51) | func curGoroutineID() uint64 {
function parseUintBytes (line 78) | func parseUintBytes(s []byte, base int, bitSize int) (n uint64, err erro...
function cutoff64 (line 165) | func cutoff64(base int) uint64 {
FILE: vendor/golang.org/x/net/http2/gotrack_test.go
function TestGoroutineLock (line 13) | func TestGoroutineLock(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/h2i/h2i.go
type command (line 51) | type command struct
function usage (line 79) | func usage() {
function withPort (line 85) | func withPort(host string) string {
function withoutPort (line 93) | func withoutPort(addr string) string {
type h2i (line 101) | type h2i struct
method Main (line 144) | func (app *h2i) Main() error {
method logf (line 252) | func (app *h2i) logf(format string, args ...interface{}) {
method readConsole (line 256) | func (app *h2i) readConsole() error {
method cmdQuit (line 316) | func (a *h2i) cmdQuit(args []string) error {
method cmdSettings (line 324) | func (a *h2i) cmdSettings(args []string) error {
method cmdPing (line 374) | func (app *h2i) cmdPing(args []string) error {
method cmdHeaders (line 388) | func (app *h2i) cmdHeaders(args []string) error {
method readFrames (line 433) | func (app *h2i) readFrames() error {
method onNewHeaderField (line 481) | func (app *h2i) onNewHeaderField(f hpack.HeaderField) {
method encodeHeaders (line 488) | func (app *h2i) encodeHeaders(req *http.Request) []byte {
method writeHeader (line 519) | func (app *h2i) writeHeader(name, value string) {
function main (line 117) | func main() {
function lookupCommand (line 296) | func lookupCommand(prefix string) (name string, c command, ok bool) {
function settingByName (line 358) | func settingByName(name string) (http2.SettingID, bool) {
FILE: vendor/golang.org/x/net/http2/headermap.go
function init (line 17) | func init() {
function lowerHeader (line 73) | func lowerHeader(v string) string {
FILE: vendor/golang.org/x/net/http2/hpack/encode.go
constant uint32Max (line 12) | uint32Max = ^uint32(0)
constant initialHeaderTableSize (line 13) | initialHeaderTableSize = 4096
type Encoder (line 16) | type Encoder struct
method WriteField (line 50) | func (e *Encoder) WriteField(f HeaderField) error {
method searchTable (line 91) | func (e *Encoder) searchTable(f HeaderField) (i uint64, nameValueMatch...
method SetMaxDynamicTableSize (line 108) | func (e *Encoder) SetMaxDynamicTableSize(v uint32) {
method SetMaxDynamicTableSizeLimit (line 126) | func (e *Encoder) SetMaxDynamicTableSizeLimit(v uint32) {
method shouldIndex (line 135) | func (e *Encoder) shouldIndex(f HeaderField) bool {
function NewEncoder (line 35) | func NewEncoder(w io.Writer) *Encoder {
function appendIndexed (line 141) | func appendIndexed(dst []byte, i uint64) []byte {
function appendNewName (line 155) | func appendNewName(dst []byte, f HeaderField, indexing bool) []byte {
function appendIndexedName (line 168) | func appendIndexedName(dst []byte, f HeaderField, i uint64, indexing boo...
function appendTableSize (line 183) | func appendTableSize(dst []byte, v uint32) []byte {
function appendVarInt (line 195) | func appendVarInt(dst []byte, n byte, i uint64) []byte {
function appendHpackString (line 213) | func appendHpackString(dst []byte, s string) []byte {
function encodeTypeByte (line 232) | func encodeTypeByte(indexing, sensitive bool) byte {
FILE: vendor/golang.org/x/net/http2/hpack/encode_test.go
function TestEncoderTableSizeUpdate (line 17) | func TestEncoderTableSizeUpdate(t *testing.T) {
function TestEncoderWriteField (line 43) | func TestEncoderWriteField(t *testing.T) {
function TestEncoderSearchTable (line 93) | func TestEncoderSearchTable(t *testing.T) {
function TestAppendVarInt (line 131) | func TestAppendVarInt(t *testing.T) {
function TestAppendHpackString (line 158) | func TestAppendHpackString(t *testing.T) {
function TestAppendIndexed (line 180) | func TestAppendIndexed(t *testing.T) {
function TestAppendNewName (line 202) | func TestAppendNewName(t *testing.T) {
function TestAppendIndexedName (line 227) | func TestAppendIndexedName(t *testing.T) {
function TestAppendTableSize (line 253) | func TestAppendTableSize(t *testing.T) {
function TestEncoderSetMaxDynamicTableSize (line 274) | func TestEncoderSetMaxDynamicTableSize(t *testing.T) {
function TestEncoderSetMaxDynamicTableSizeLimit (line 304) | func TestEncoderSetMaxDynamicTableSizeLimit(t *testing.T) {
function removeSpace (line 333) | func removeSpace(s string) string {
function BenchmarkEncoderSearchTable (line 337) | func BenchmarkEncoderSearchTable(b *testing.B) {
FILE: vendor/golang.org/x/net/http2/hpack/hpack.go
type DecodingError (line 18) | type DecodingError struct
method Error (line 22) | func (de DecodingError) Error() string {
type InvalidIndexError (line 28) | type InvalidIndexError
method Error (line 30) | func (e InvalidIndexError) Error() string {
type HeaderField (line 36) | type HeaderField struct
method IsPseudo (line 48) | func (hf HeaderField) IsPseudo() bool {
method String (line 52) | func (hf HeaderField) String() string {
method Size (line 61) | func (hf HeaderField) Size() uint32 {
type Decoder (line 79) | type Decoder struct
method SetMaxStringLength (line 119) | func (d *Decoder) SetMaxStringLength(n int) {
method SetEmitFunc (line 126) | func (d *Decoder) SetEmitFunc(emitFunc func(f HeaderField)) {
method SetEmitEnabled (line 137) | func (d *Decoder) SetEmitEnabled(v bool) { d.emitEnabled = v }
method EmitEnabled (line 141) | func (d *Decoder) EmitEnabled() bool { return d.emitEnabled }
method SetMaxDynamicTableSize (line 146) | func (d *Decoder) SetMaxDynamicTableSize(v uint32) {
method SetAllowedMaxDynamicTableSize (line 153) | func (d *Decoder) SetAllowedMaxDynamicTableSize(v uint32) {
method maxTableIndex (line 186) | func (d *Decoder) maxTableIndex() int {
method at (line 193) | func (d *Decoder) at(i uint64) (hf HeaderField, ok bool) {
method DecodeFull (line 215) | func (d *Decoder) DecodeFull(p []byte) ([]HeaderField, error) {
method Close (line 229) | func (d *Decoder) Close() error {
method Write (line 237) | func (d *Decoder) Write(p []byte) (n int, err error) {
method parseHeaderFieldRepr (line 296) | func (d *Decoder) parseHeaderFieldRepr() error {
method parseFieldIndexed (line 330) | func (d *Decoder) parseFieldIndexed() error {
method parseFieldLiteral (line 345) | func (d *Decoder) parseFieldLiteral(n uint8, it indexType) error {
method callEmit (line 378) | func (d *Decoder) callEmit(hf HeaderField) error {
method parseDynamicTableSizeUpdate (line 391) | func (d *Decoder) parseDynamicTableSizeUpdate() error {
method readString (line 456) | func (d *Decoder) readString(p []byte, wantStr bool) (s string, remain...
function NewDecoder (line 100) | func NewDecoder(maxDynamicTableSize uint32, emitFunc func(f HeaderField)...
type dynamicTable (line 157) | type dynamicTable struct
method setMaxSize (line 165) | func (dt *dynamicTable) setMaxSize(v uint32) {
method add (line 170) | func (dt *dynamicTable) add(f HeaderField) {
method evict (line 177) | func (dt *dynamicTable) evict() {
type indexType (line 281) | type indexType
method indexed (line 289) | func (v indexType) indexed() bool { return v == indexedTrue }
method sensitive (line 290) | func (v indexType) sensitive() bool { return v == indexedNever }
constant indexedTrue (line 284) | indexedTrue indexType = iota
constant indexedFalse (line 285) | indexedFalse
constant indexedNever (line 286) | indexedNever
function readVarInt (line 415) | func readVarInt(n byte, p []byte) (i uint64, remain []byte, err error) {
FILE: vendor/golang.org/x/net/http2/hpack/hpack_test.go
method mustAt (line 18) | func (d *Decoder) mustAt(idx int) HeaderField {
function TestDynamicTableAt (line 26) | func TestDynamicTableAt(t *testing.T) {
function TestDynamicTableSizeEvict (line 45) | func TestDynamicTableSizeEvict(t *testing.T) {
function TestDecoderDecode (line 72) | func TestDecoderDecode(t *testing.T) {
method reverseCopy (line 121) | func (dt *dynamicTable) reverseCopy() (hf []HeaderField) {
type encAndWant (line 129) | type encAndWant struct
function TestDecodeC3_NoHuffman (line 138) | func TestDecodeC3_NoHuffman(t *testing.T) {
function TestDecodeC4_Huffman (line 186) | func TestDecodeC4_Huffman(t *testing.T) {
function TestDecodeC5_ResponsesNoHuff (line 237) | func TestDecodeC5_ResponsesNoHuff(t *testing.T) {
function TestDecodeC6_ResponsesHuffman (line 309) | func TestDecodeC6_ResponsesHuffman(t *testing.T) {
function testDecodeSeries (line 371) | func testDecodeSeries(t *testing.T, size uint32, steps []encAndWant) {
function TestHuffmanDecodeExcessPadding (line 391) | func TestHuffmanDecodeExcessPadding(t *testing.T) {
function TestHuffmanDecodeEOS (line 408) | func TestHuffmanDecodeEOS(t *testing.T) {
function TestHuffmanDecodeMaxLengthOnTrailingByte (line 416) | func TestHuffmanDecodeMaxLengthOnTrailingByte(t *testing.T) {
function TestHuffmanDecodeCorruptPadding (line 424) | func TestHuffmanDecodeCorruptPadding(t *testing.T) {
function TestHuffmanDecode (line 432) | func TestHuffmanDecode(t *testing.T) {
function TestAppendHuffmanString (line 465) | func TestAppendHuffmanString(t *testing.T) {
function TestHuffmanMaxStrLen (line 491) | func TestHuffmanMaxStrLen(t *testing.T) {
function TestHuffmanRoundtripStress (line 514) | func TestHuffmanRoundtripStress(t *testing.T) {
function TestHuffmanDecodeFuzz (line 546) | func TestHuffmanDecodeFuzz(t *testing.T) {
function TestReadVarInt (line 585) | func TestReadVarInt(t *testing.T) {
function TestHuffmanFuzzCrash (line 641) | func TestHuffmanFuzzCrash(t *testing.T) {
function pair (line 651) | func pair(name, value string) HeaderField {
function dehex (line 655) | func dehex(s string) []byte {
function TestEmitEnabled (line 665) | func TestEmitEnabled(t *testing.T) {
function TestSaveBufLimit (line 691) | func TestSaveBufLimit(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/hpack/huffman.go
function HuffmanDecode (line 21) | func HuffmanDecode(w io.Writer, v []byte) (int, error) {
function HuffmanDecodeToString (line 32) | func HuffmanDecodeToString(v []byte) (string, error) {
function huffmanDecode (line 49) | func huffmanDecode(buf *bytes.Buffer, maxLen int, v []byte) error {
type node (line 107) | type node struct
function newInternalNode (line 116) | func newInternalNode() *node {
function init (line 122) | func init() {
function addDecoderNode (line 131) | func addDecoderNode(sym byte, code uint32, codeLen uint8) {
function AppendHuffmanString (line 150) | func AppendHuffmanString(dst []byte, s string) []byte {
function HuffmanEncodeLength (line 174) | func HuffmanEncodeLength(s string) uint64 {
function appendByteToHuffmanCode (line 186) | func appendByteToHuffmanCode(dst []byte, rembits uint8, c byte) ([]byte,...
FILE: vendor/golang.org/x/net/http2/hpack/tables.go
type headerFieldTable (line 13) | type headerFieldTable struct
method init (line 45) | func (t *headerFieldTable) init() {
method len (line 51) | func (t *headerFieldTable) len() int {
method addEntry (line 56) | func (t *headerFieldTable) addEntry(f HeaderField) {
method evictOldest (line 64) | func (t *headerFieldTable) evictOldest(n int) {
method search (line 103) | func (t *headerFieldTable) search(f HeaderField) (i uint64, nameValueM...
method idToIndex (line 117) | func (t *headerFieldTable) idToIndex(id uint64) uint64 {
type pairNameValue (line 41) | type pairNameValue struct
function newStaticTable (line 194) | func newStaticTable() *headerFieldTable {
FILE: vendor/golang.org/x/net/http2/hpack/tables_test.go
function TestHeaderFieldTable (line 15) | func TestHeaderFieldTable(t *testing.T) {
function TestHeaderFieldTable_LookupMapEviction (line 92) | func TestHeaderFieldTable_LookupMapEviction(t *testing.T) {
function TestStaticTable (line 118) | func TestStaticTable(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/http2.go
function init (line 42) | func init() {
constant ClientPreface (line 57) | ClientPreface = "PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n"
constant initialMaxFrameSize (line 61) | initialMaxFrameSize = 16384
constant NextProtoTLS (line 65) | NextProtoTLS = "h2"
constant initialHeaderTableSize (line 68) | initialHeaderTableSize = 4096
constant initialWindowSize (line 70) | initialWindowSize = 65535
constant defaultMaxReadFrameSize (line 72) | defaultMaxReadFrameSize = 1 << 20
type streamState (line 79) | type streamState
method String (line 109) | func (st streamState) String() string {
constant stateIdle (line 94) | stateIdle streamState = iota
constant stateOpen (line 95) | stateOpen
constant stateHalfClosedLocal (line 96) | stateHalfClosedLocal
constant stateHalfClosedRemote (line 97) | stateHalfClosedRemote
constant stateClosed (line 98) | stateClosed
type Setting (line 114) | type Setting struct
method String (line 123) | func (s Setting) String() string {
method Valid (line 128) | func (s Setting) Valid() error {
type SettingID (line 149) | type SettingID
method String (line 169) | func (s SettingID) String() string {
constant SettingHeaderTableSize (line 152) | SettingHeaderTableSize SettingID = 0x1
constant SettingEnablePush (line 153) | SettingEnablePush SettingID = 0x2
constant SettingMaxConcurrentStreams (line 154) | SettingMaxConcurrentStreams SettingID = 0x3
constant SettingInitialWindowSize (line 155) | SettingInitialWindowSize SettingID = 0x4
constant SettingMaxFrameSize (line 156) | SettingMaxFrameSize SettingID = 0x5
constant SettingMaxHeaderListSize (line 157) | SettingMaxHeaderListSize SettingID = 0x6
function validWireHeaderFieldName (line 189) | func validWireHeaderFieldName(v string) bool {
function init (line 206) | func init() {
function httpCodeString (line 214) | func httpCodeString(code int) string {
type stringWriter (line 222) | type stringWriter interface
type gate (line 227) | type gate
method Done (line 229) | func (g gate) Done() { g <- struct{}{} }
method Wait (line 230) | func (g gate) Wait() { <-g }
type closeWaiter (line 233) | type closeWaiter
method Init (line 239) | func (cw *closeWaiter) Init() {
method Close (line 244) | func (cw closeWaiter) Close() {
method Wait (line 249) | func (cw closeWaiter) Wait() {
type bufferedWriter (line 256) | type bufferedWriter struct
method Available (line 279) | func (w *bufferedWriter) Available() int {
method Write (line 286) | func (w *bufferedWriter) Write(p []byte) (n int, err error) {
method Flush (line 295) | func (w *bufferedWriter) Flush() error {
function newBufferedWriter (line 261) | func newBufferedWriter(w io.Writer) *bufferedWriter {
constant bufWriterPoolBufferSize (line 271) | bufWriterPoolBufferSize = 4 << 10
function mustUint31 (line 307) | func mustUint31(v int32) uint32 {
function bodyAllowedForStatus (line 316) | func bodyAllowedForStatus(status int) bool {
type httpError (line 328) | type httpError struct
method Error (line 333) | func (e *httpError) Error() string { return e.msg }
method Timeout (line 334) | func (e *httpError) Timeout() bool { return e.timeout }
method Temporary (line 335) | func (e *httpError) Temporary() bool { return true }
type connectionStater (line 339) | type connectionStater interface
type sorter (line 345) | type sorter struct
method Len (line 349) | func (s *sorter) Len() int { return len(s.v) }
method Swap (line 350) | func (s *sorter) Swap(i, j int) { s.v[i], s.v[j] = s.v[j], s.v[i] }
method Less (line 351) | func (s *sorter) Less(i, j int) bool { return s.v[i] < s.v[j] }
method Keys (line 357) | func (s *sorter) Keys(h http.Header) []string {
method SortStrings (line 367) | func (s *sorter) SortStrings(ss []string) {
function validPseudoPath (line 389) | func validPseudoPath(v string) bool {
FILE: vendor/golang.org/x/net/http2/http2_test.go
function condSkipFailingTest (line 23) | func condSkipFailingTest(t *testing.T) {
function init (line 29) | func init() {
function TestSettingString (line 35) | func TestSettingString(t *testing.T) {
type twriter (line 51) | type twriter struct
method Write (line 56) | func (w twriter) Write(p []byte) (n int, err error) {
function encodeHeaderNoImplicit (line 70) | func encodeHeaderNoImplicit(t *testing.T, headers ...string) []byte {
function requireCurl (line 84) | func requireCurl(t *testing.T) {
function curl (line 94) | func curl(t *testing.T, args ...string) (container string) {
function requireH2load (line 103) | func requireH2load(t *testing.T) {
function h2load (line 113) | func h2load(t *testing.T, args ...string) (container string) {
type puppetCommand (line 121) | type puppetCommand struct
type handlerPuppet (line 126) | type handlerPuppet struct
method act (line 136) | func (p *handlerPuppet) act(w http.ResponseWriter, r *http.Request) {
method done (line 143) | func (p *handlerPuppet) done() { close(p.ch) }
method do (line 144) | func (p *handlerPuppet) do(fn func(http.ResponseWriter, *http.Request)) {
function newHandlerPuppet (line 130) | func newHandlerPuppet() *handlerPuppet {
function dockerLogs (line 149) | func dockerLogs(container string) ([]byte, error) {
function kill (line 166) | func kill(container string) {
function cleanDate (line 171) | func cleanDate(res *http.Response) {
function TestSorterPoolAllocs (line 177) | func TestSorterPoolAllocs(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/not_go16.go
function configureTransport (line 14) | func configureTransport(t1 *http.Transport) (*Transport, error) {
function transportExpectContinueTimeout (line 18) | func transportExpectContinueTimeout(t1 *http.Transport) time.Duration {
FILE: vendor/golang.org/x/net/http2/not_go17.go
type contextContext (line 16) | type contextContext interface
type fakeContext (line 21) | type fakeContext struct
method Done (line 23) | func (fakeContext) Done() <-chan struct{} { return nil }
method Err (line 24) | func (fakeContext) Err() error { panic("should not be calle...
function reqContext (line 26) | func reqContext(r *http.Request) fakeContext {
function setResponseUncompressed (line 30) | func setResponseUncompressed(res *http.Response) {
type clientTrace (line 34) | type clientTrace struct
function requestTrace (line 36) | func requestTrace(*http.Request) *clientTrace { return nil }
function traceGotConn (line 37) | func traceGotConn(*http.Request, *ClientConn) {}
function traceFirstResponseByte (line 38) | func traceFirstResponseByte(*clientTrace) {}
function traceWroteHeaders (line 39) | func traceWroteHeaders(*clientTrace) {}
function traceWroteRequest (line 40) | func traceWroteRequest(*clientTrace, error) {}
function traceGot100Continue (line 41) | func traceGot100Continue(trace *clientTrace) {}
function traceWait100Continue (line 42) | func traceWait100Continue(trace *clientTrace) {}
function nop (line 44) | func nop() {}
function serverConnBaseContext (line 46) | func serverConnBaseContext(c net.Conn, opts *ServeConnOpts) (ctx context...
function contextWithCancel (line 50) | func contextWithCancel(ctx contextContext) (_ contextContext, cancel fun...
function requestWithContext (line 54) | func requestWithContext(req *http.Request, ctx contextContext) *http.Req...
function cloneTLSConfig (line 59) | func cloneTLSConfig(c *tls.Config) *tls.Config {
method Ping (line 83) | func (cc *ClientConn) Ping(ctx contextContext) error {
method idleConnTimeout (line 87) | func (t *Transport) idleConnTimeout() time.Duration { return 0 }
FILE: vendor/golang.org/x/net/http2/not_go18.go
function configureServer18 (line 14) | func configureServer18(h1 *http.Server, h2 *Server) error {
function shouldLogPanic (line 19) | func shouldLogPanic(panicValue interface{}) bool {
function reqGetBody (line 23) | func reqGetBody(req *http.Request) func() (io.ReadCloser, error) {
function reqBodyIsNoBody (line 27) | func reqBodyIsNoBody(io.ReadCloser) bool { return false }
function go18httpNoBody (line 29) | func go18httpNoBody() io.ReadCloser { return nil }
FILE: vendor/golang.org/x/net/http2/not_go19.go
function configureServer19 (line 13) | func configureServer19(s *http.Server, conf *Server) error {
FILE: vendor/golang.org/x/net/http2/pipe.go
type pipe (line 16) | type pipe struct
method Len (line 32) | func (p *pipe) Len() int {
method Read (line 43) | func (p *pipe) Read(d []byte) (n int, err error) {
method Write (line 72) | func (p *pipe) Write(d []byte) (n int, err error) {
method CloseWithError (line 93) | func (p *pipe) CloseWithError(err error) { p.closeWithError(&p.err, er...
method BreakWithError (line 98) | func (p *pipe) BreakWithError(err error) { p.closeWithError(&p.breakEr...
method closeWithErrorAndCode (line 102) | func (p *pipe) closeWithErrorAndCode(err error, fn func()) { p.closeWi...
method closeWithError (line 104) | func (p *pipe) closeWithError(dst *error, err error, fn func()) {
method closeDoneLocked (line 127) | func (p *pipe) closeDoneLocked() {
method Err (line 141) | func (p *pipe) Err() error {
method Done (line 152) | func (p *pipe) Done() <-chan struct{} {
type pipeBuffer (line 26) | type pipeBuffer interface
FILE: vendor/golang.org/x/net/http2/pipe_test.go
function TestPipeClose (line 15) | func TestPipeClose(t *testing.T) {
function TestPipeDoneChan (line 28) | func TestPipeDoneChan(t *testing.T) {
function TestPipeDoneChan_ErrFirst (line 44) | func TestPipeDoneChan_ErrFirst(t *testing.T) {
function TestPipeDoneChan_Break (line 55) | func TestPipeDoneChan_Break(t *testing.T) {
function TestPipeDoneChan_Break_ErrFirst (line 71) | func TestPipeDoneChan_Break_ErrFirst(t *testing.T) {
function TestPipeCloseWithError (line 82) | func TestPipeCloseWithError(t *testing.T) {
function TestPipeBreakWithError (line 104) | func TestPipeBreakWithError(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/server.go
constant prefaceTimeout (line 53) | prefaceTimeout = 10 * time.Second
constant firstSettingsTimeout (line 54) | firstSettingsTimeout = 2 * time.Second
constant handlerChunkWriteSize (line 55) | handlerChunkWriteSize = 4 << 10
constant defaultMaxStreams (line 56) | defaultMaxStreams = 250
type Server (line 83) | type Server struct
method initialConnRecvWindowSize (line 136) | func (s *Server) initialConnRecvWindowSize() int32 {
method initialStreamRecvWindowSize (line 143) | func (s *Server) initialStreamRecvWindowSize() int32 {
method maxReadFrameSize (line 150) | func (s *Server) maxReadFrameSize() uint32 {
method maxConcurrentStreams (line 157) | func (s *Server) maxConcurrentStreams() uint32 {
method ServeConn (line 323) | func (s *Server) ServeConn(c net.Conn, opts *ServeConnOpts) {
type serverInternalState (line 164) | type serverInternalState struct
method registerConn (line 169) | func (s *serverInternalState) registerConn(sc *serverConn) {
method unregisterConn (line 178) | func (s *serverInternalState) unregisterConn(sc *serverConn) {
method startGracefulShutdown (line 187) | func (s *serverInternalState) startGracefulShutdown() {
function ConfigureServer (line 203) | func ConfigureServer(s *http.Server, conf *Server) error {
type ServeConnOpts (line 279) | type ServeConnOpts struct
method baseConfig (line 290) | func (o *ServeConnOpts) baseConfig() *http.Server {
method handler (line 297) | func (o *ServeConnOpts) handler() http.Handler {
type serverConn (line 442) | type serverConn struct
method rejectConn (line 434) | func (sc *serverConn) rejectConn(err ErrCode, debug string) {
method maxHeaderListSize (line 499) | func (sc *serverConn) maxHeaderListSize() uint32 {
method curOpenStreams (line 511) | func (sc *serverConn) curOpenStreams() uint32 {
method Framer (line 550) | func (sc *serverConn) Framer() *Framer { return sc.framer }
method CloseConn (line 551) | func (sc *serverConn) CloseConn() error { return sc.conn.Close() }
method Flush (line 552) | func (sc *serverConn) Flush() error { return sc.bw.Flush() }
method HeaderEncoder (line 553) | func (sc *serverConn) HeaderEncoder() (*hpack.Encoder, *bytes.Buffer) {
method state (line 557) | func (sc *serverConn) state(streamID uint32) (streamState, *stream) {
method setConnState (line 584) | func (sc *serverConn) setConnState(state http.ConnState) {
method vlogf (line 590) | func (sc *serverConn) vlogf(format string, args ...interface{}) {
method logf (line 596) | func (sc *serverConn) logf(format string, args ...interface{}) {
method condlogf (line 648) | func (sc *serverConn) condlogf(err error, format string, args ...inter...
method canonicalHeader (line 660) | func (sc *serverConn) canonicalHeader(v string) string {
method readFrames (line 692) | func (sc *serverConn) readFrames() {
method writeFrameAsync (line 723) | func (sc *serverConn) writeFrameAsync(wr FrameWriteRequest) {
method closeAllStreamsOnConnClose (line 728) | func (sc *serverConn) closeAllStreamsOnConnClose() {
method stopShutdownTimer (line 735) | func (sc *serverConn) stopShutdownTimer() {
method notePanic (line 742) | func (sc *serverConn) notePanic() {
method serve (line 757) | func (sc *serverConn) serve() {
method awaitGracefulShutdown (line 867) | func (sc *serverConn) awaitGracefulShutdown(sharedCh <-chan struct{}, ...
method onSettingsTimer (line 885) | func (sc *serverConn) onSettingsTimer() { sc.sendServeMsg(settingsTime...
method onIdleTimer (line 886) | func (sc *serverConn) onIdleTimer() { sc.sendServeMsg(idleTimerMsg) }
method onShutdownTimer (line 887) | func (sc *serverConn) onShutdownTimer() { sc.sendServeMsg(shutdownTime...
method sendServeMsg (line 889) | func (sc *serverConn) sendServeMsg(msg interface{}) {
method readPreface (line 899) | func (sc *serverConn) readPreface() error {
method writeDataFromHandler (line 937) | func (sc *serverConn) writeDataFromHandler(stream *stream, data []byte...
method writeFrameFromHandler (line 984) | func (sc *serverConn) writeFrameFromHandler(wr FrameWriteRequest) error {
method writeFrame (line 1004) | func (sc *serverConn) writeFrame(wr FrameWriteRequest) {
method startFrameWrite (line 1060) | func (sc *serverConn) startFrameWrite(wr FrameWriteRequest) {
method wroteFrame (line 1110) | func (sc *serverConn) wroteFrame(res frameWriteResult) {
method scheduleFrameWrite (line 1176) | func (sc *serverConn) scheduleFrameWrite() {
method startGracefulShutdown (line 1221) | func (sc *serverConn) startGracefulShutdown() {
method startGracefulShutdownInternal (line 1242) | func (sc *serverConn) startGracefulShutdownInternal() {
method goAway (line 1246) | func (sc *serverConn) goAway(code ErrCode) {
method shutDownIn (line 1257) | func (sc *serverConn) shutDownIn(d time.Duration) {
method resetStream (line 1262) | func (sc *serverConn) resetStream(se StreamError) {
method processFrameFromReader (line 1273) | func (sc *serverConn) processFrameFromReader(res readFrameResult) bool {
method processFrame (line 1325) | func (sc *serverConn) processFrame(f Frame) error {
method processPing (line 1363) | func (sc *serverConn) processPing(f *PingFrame) error {
method processWindowUpdate (line 1385) | func (sc *serverConn) processWindowUpdate(f *WindowUpdateFrame) error {
method processResetStream (line 1417) | func (sc *serverConn) processResetStream(f *RSTStreamFrame) error {
method closeStream (line 1436) | func (sc *serverConn) closeStream(st *stream, err error) {
method processSettings (line 1471) | func (sc *serverConn) processSettings(f *SettingsFrame) error {
method processSetting (line 1491) | func (sc *serverConn) processSetting(s Setting) error {
method processSettingInitialWindowSize (line 1524) | func (sc *serverConn) processSettingInitialWindowSize(val uint32) error {
method processData (line 1552) | func (sc *serverConn) processData(f *DataFrame) error {
method processGoAway (line 1637) | func (sc *serverConn) processGoAway(f *GoAwayFrame) error {
method processHeaders (line 1689) | func (sc *serverConn) processHeaders(f *MetaHeadersFrame) error {
method processPriority (line 1838) | func (sc *serverConn) processPriority(f *PriorityFrame) error {
method newStream (line 1849) | func (sc *serverConn) newStream(id, pusherID uint32, state streamState...
method newWriterAndRequest (line 1886) | func (sc *serverConn) newWriterAndRequest(st *stream, f *MetaHeadersFr...
method newWriterAndRequestNoBody (line 1952) | func (sc *serverConn) newWriterAndRequestNoBody(st *stream, rp request...
method runHandler (line 2038) | func (sc *serverConn) runHandler(rw *responseWriter, req *http.Request...
method writeHeaders (line 2075) | func (sc *serverConn) writeHeaders(st *stream, headerData *writeResHea...
method write100ContinueHeaders (line 2107) | func (sc *serverConn) write100ContinueHeaders(st *stream) {
method noteBodyReadFromHandler (line 2124) | func (sc *serverConn) noteBodyReadFromHandler(st *stream, n int, err e...
method noteBodyRead (line 2134) | func (sc *serverConn) noteBodyRead(st *stream, n int) {
method sendWindowUpdate (line 2145) | func (sc *serverConn) sendWindowUpdate(st *stream, n int) {
method sendWindowUpdate32 (line 2161) | func (sc *serverConn) sendWindowUpdate32(st *stream, n int32) {
method startPush (line 2687) | func (sc *serverConn) startPush(msg *startPushRequest) {
type stream (line 523) | type stream struct
method isPushed (line 1652) | func (st *stream) isPushed() bool {
method endStream (line 1658) | func (st *stream) endStream() {
method copyTrailersToHandlerRequest (line 1674) | func (st *stream) copyTrailersToHandlerRequest() {
method onWriteTimeout (line 1685) | func (st *stream) onWriteTimeout() {
method processTrailerHeaders (line 1797) | func (st *stream) processTrailerHeaders(f *MetaHeadersFrame) error {
function errno (line 608) | func errno(v error) uintptr {
function isClosedConnError (line 617) | func isClosedConnError(err error) bool {
type readFrameResult (line 678) | type readFrameResult struct
type frameWriteResult (line 714) | type frameWriteResult struct
type serverMessage (line 875) | type serverMessage
function checkPriority (line 1827) | func checkPriority(streamID uint32, p PriorityParam) error {
type requestParam (line 1946) | type requestParam struct
function handleHeaderListTooLong (line 2063) | func handleHeaderListTooLong(w http.ResponseWriter, r *http.Request) {
type bodyReadMsg (line 2116) | type bodyReadMsg struct
type requestBody (line 2190) | type requestBody struct
method Close (line 2199) | func (b *requestBody) Close() error {
method Read (line 2207) | func (b *requestBody) Read(p []byte) (n int, err error) {
type responseWriter (line 2232) | type responseWriter struct
method Flush (line 2437) | func (w *responseWriter) Flush() {
method CloseNotify (line 2456) | func (w *responseWriter) CloseNotify() <-chan bool {
method Header (line 2476) | func (w *responseWriter) Header() http.Header {
method WriteHeader (line 2487) | func (w *responseWriter) WriteHeader(code int) {
method Write (line 2523) | func (w *responseWriter) Write(p []byte) (n int, err error) {
method WriteString (line 2527) | func (w *responseWriter) WriteString(s string) (n int, err error) {
method write (line 2532) | func (w *responseWriter) write(lenData int, dataB []byte, dataS string...
method handlerDone (line 2556) | func (w *responseWriter) handlerDone() {
method push (line 2586) | func (w *responseWriter) push(target string, opts pushOptions) error {
type responseWriterState (line 2243) | type responseWriterState struct
method hasTrailers (line 2274) | func (rws *responseWriterState) hasTrailers() bool { return len(rws.tr...
method declareTrailer (line 2279) | func (rws *responseWriterState) declareTrailer(k string) {
method writeChunk (line 2297) | func (rws *responseWriterState) writeChunk(p []byte) (n int, err error) {
method promoteUndeclaredTrailers (line 2420) | func (rws *responseWriterState) promoteUndeclaredTrailers() {
method writeHeader (line 2495) | func (rws *responseWriterState) writeHeader(code int) {
type chunkWriter (line 2270) | type chunkWriter struct
method Write (line 2272) | func (cw chunkWriter) Write(p []byte) (n int, err error) { return cw.r...
constant TrailerPrefix (line 2397) | TrailerPrefix = "Trailer:"
function cloneHeader (line 2505) | func cloneHeader(h http.Header) http.Header {
type pushOptions (line 2581) | type pushOptions struct
type startPushRequest (line 2679) | type startPushRequest struct
function foreachHeaderElement (line 2769) | func foreachHeaderElement(v string, fn func(string)) {
function checkValidHTTP2RequestHeaders (line 2797) | func checkValidHTTP2RequestHeaders(h http.Header) error {
function new400Handler (line 2810) | func new400Handler(err error) http.HandlerFunc {
function ValidTrailerHeader (line 2819) | func ValidTrailerHeader(name string) bool {
function h1ServerKeepAlivesDisabled (line 2854) | func h1ServerKeepAlivesDisabled(hs *http.Server) bool {
FILE: vendor/golang.org/x/net/http2/server_push_test.go
function TestServer_Push_Success (line 22) | func TestServer_Push_Success(t *testing.T) {
function TestServer_Push_SuccessNoRace (line 247) | func TestServer_Push_SuccessNoRace(t *testing.T) {
function TestServer_Push_RejectRecursivePush (line 291) | func TestServer_Push_RejectRecursivePush(t *testing.T) {
function testServer_Push_RejectSingleRequest (line 327) | func testServer_Push_RejectSingleRequest(t *testing.T, doPush func(http....
function TestServer_Push_RejectIfDisabled (line 350) | func TestServer_Push_RejectIfDisabled(t *testing.T) {
function TestServer_Push_RejectWhenNoConcurrentStreams (line 361) | func TestServer_Push_RejectWhenNoConcurrentStreams(t *testing.T) {
function TestServer_Push_RejectWrongScheme (line 372) | func TestServer_Push_RejectWrongScheme(t *testing.T) {
function TestServer_Push_RejectMissingHost (line 382) | func TestServer_Push_RejectMissingHost(t *testing.T) {
function TestServer_Push_RejectRelativePath (line 392) | func TestServer_Push_RejectRelativePath(t *testing.T) {
function TestServer_Push_RejectForbiddenMethod (line 402) | func TestServer_Push_RejectForbiddenMethod(t *testing.T) {
function TestServer_Push_RejectForbiddenHeader (line 412) | func TestServer_Push_RejectForbiddenHeader(t *testing.T) {
function TestServer_Push_StateTransitions (line 430) | func TestServer_Push_StateTransitions(t *testing.T) {
function TestServer_Push_RejectAfterGoAway (line 483) | func TestServer_Push_RejectAfterGoAway(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/server_test.go
function stderrv (line 35) | func stderrv() io.Writer {
type serverTester (line 43) | type serverTester struct
method closeConn (line 178) | func (st *serverTester) closeConn() {
method addLogFilter (line 184) | func (st *serverTester) addLogFilter(phrase string) {
method stream (line 188) | func (st *serverTester) stream(id uint32) *stream {
method streamState (line 196) | func (st *serverTester) streamState(id uint32) streamState {
method loopNum (line 206) | func (st *serverTester) loopNum() int {
method awaitIdle (line 217) | func (st *serverTester) awaitIdle() {
method Close (line 231) | func (st *serverTester) Close() {
method greet (line 262) | func (st *serverTester) greet() {
method greetAndCheckSettings (line 266) | func (st *serverTester) greetAndCheckSettings(checkSetting func(s Sett...
method writePreface (line 311) | func (st *serverTester) writePreface() {
method writeInitialSettings (line 321) | func (st *serverTester) writeInitialSettings() {
method writeSettingsAck (line 327) | func (st *serverTester) writeSettingsAck() {
method writeHeaders (line 333) | func (st *serverTester) writeHeaders(p HeadersFrameParam) {
method writePriority (line 339) | func (st *serverTester) writePriority(id uint32, p PriorityParam) {
method encodeHeaderField (line 345) | func (st *serverTester) encodeHeaderField(k, v string) {
method encodeHeaderRaw (line 354) | func (st *serverTester) encodeHeaderRaw(headers ...string) []byte {
method encodeHeader (line 372) | func (st *serverTester) encodeHeader(headers ...string) []byte {
method bodylessReq1 (line 434) | func (st *serverTester) bodylessReq1(headers ...string) {
method writeData (line 443) | func (st *serverTester) writeData(streamID uint32, endStream bool, dat...
method writeDataPadded (line 449) | func (st *serverTester) writeDataPadded(streamID uint32, endStream boo...
method readFrame (line 478) | func (st *serverTester) readFrame() (Frame, error) {
method wantHeaders (line 482) | func (st *serverTester) wantHeaders() *HeadersFrame {
method wantContinuation (line 494) | func (st *serverTester) wantContinuation() *ContinuationFrame {
method wantData (line 506) | func (st *serverTester) wantData() *DataFrame {
method wantSettings (line 518) | func (st *serverTester) wantSettings() *SettingsFrame {
method wantPing (line 530) | func (st *serverTester) wantPing() *PingFrame {
method wantGoAway (line 542) | func (st *serverTester) wantGoAway() *GoAwayFrame {
method wantRSTStream (line 554) | func (st *serverTester) wantRSTStream(streamID uint32, errCode ErrCode) {
method wantWindowUpdate (line 571) | func (st *serverTester) wantWindowUpdate(streamID, incr uint32) {
method wantSettingsAck (line 588) | func (st *serverTester) wantSettingsAck() {
method wantPushPromise (line 602) | func (st *serverTester) wantPushPromise() *PushPromiseFrame {
method onHeaderField (line 2460) | func (st *serverTester) onHeaderField(f hpack.HeaderField) {
method decodeHeader (line 2467) | func (st *serverTester) decodeHeader(headerBlock []byte) (pairs [][2]s...
function init (line 69) | func init() {
function resetHooks (line 74) | func resetHooks() {
type serverTesterOpt (line 80) | type serverTesterOpt
function newServerTester (line 86) | func newServerTester(t testing.TB, handler http.HandlerFunc, opts ...int...
function readFrameTimeout (line 455) | func readFrameTimeout(fr *Framer, wait time.Duration) (Frame, error) {
function TestServer (line 614) | func TestServer(t *testing.T) {
function TestServer_Request_Get (line 643) | func TestServer_Request_Get(t *testing.T) {
function TestServer_Request_Get_PathSlashes (line 682) | func TestServer_Request_Get_PathSlashes(t *testing.T) {
function TestServer_Request_Post_NoContentLength_EndStream (line 704) | func TestServer_Request_Post_NoContentLength_EndStream(t *testing.T) {
function TestServer_Request_Post_Body_ImmediateEOF (line 725) | func TestServer_Request_Post_Body_ImmediateEOF(t *testing.T) {
function TestServer_Request_Post_Body_OneData (line 737) | func TestServer_Request_Post_Body_OneData(t *testing.T) {
function TestServer_Request_Post_Body_TwoData (line 750) | func TestServer_Request_Post_Body_TwoData(t *testing.T) {
function TestServer_Request_Post_Body_ContentLength_Correct (line 764) | func TestServer_Request_Post_Body_ContentLength_Correct(t *testing.T) {
function TestServer_Request_Post_Body_ContentLength_TooLarge (line 780) | func TestServer_Request_Post_Body_ContentLength_TooLarge(t *testing.T) {
function TestServer_Request_Post_Body_ContentLength_TooSmall (line 796) | func TestServer_Request_Post_Body_ContentLength_TooSmall(t *testing.T) {
function testBodyContents (line 812) | func testBodyContents(t *testing.T, wantContentLength int64, wantBody st...
function testBodyContentsFail (line 833) | func testBodyContentsFail(t *testing.T, wantContentLength int64, wantRea...
function TestServer_Request_Get_Host (line 856) | func TestServer_Request_Get_Host(t *testing.T) {
function TestServer_Request_Get_Authority (line 873) | func TestServer_Request_Get_Authority(t *testing.T) {
function TestServer_Request_WithContinuation (line 889) | func TestServer_Request_WithContinuation(t *testing.T) {
function TestServer_Request_CookieConcat (line 937) | func TestServer_Request_CookieConcat(t *testing.T) {
function TestServer_Request_Reject_CapitalHeader (line 954) | func TestServer_Request_Reject_CapitalHeader(t *testing.T) {
function TestServer_Request_Reject_HeaderFieldNameColon (line 958) | func TestServer_Request_Reject_HeaderFieldNameColon(t *testing.T) {
function TestServer_Request_Reject_HeaderFieldNameNULL (line 962) | func TestServer_Request_Reject_HeaderFieldNameNULL(t *testing.T) {
function TestServer_Request_Reject_HeaderFieldNameEmpty (line 966) | func TestServer_Request_Reject_HeaderFieldNameEmpty(t *testing.T) {
function TestServer_Request_Reject_HeaderFieldValueNewline (line 970) | func TestServer_Request_Reject_HeaderFieldValueNewline(t *testing.T) {
function TestServer_Request_Reject_HeaderFieldValueCR (line 974) | func TestServer_Request_Reject_HeaderFieldValueCR(t *testing.T) {
function TestServer_Request_Reject_HeaderFieldValueDEL (line 978) | func TestServer_Request_Reject_HeaderFieldValueDEL(t *testing.T) {
function TestServer_Request_Reject_Pseudo_Missing_method (line 982) | func TestServer_Request_Reject_Pseudo_Missing_method(t *testing.T) {
function TestServer_Request_Reject_Pseudo_ExactlyOne (line 986) | func TestServer_Request_Reject_Pseudo_ExactlyOne(t *testing.T) {
function TestServer_Request_Reject_Pseudo_AfterRegular (line 995) | func TestServer_Request_Reject_Pseudo_AfterRegular(t *testing.T) {
function TestServer_Request_Reject_Pseudo_Missing_path (line 1019) | func TestServer_Request_Reject_Pseudo_Missing_path(t *testing.T) {
function TestServer_Request_Reject_Pseudo_Missing_scheme (line 1023) | func TestServer_Request_Reject_Pseudo_Missing_scheme(t *testing.T) {
function TestServer_Request_Reject_Pseudo_scheme_invalid (line 1027) | func TestServer_Request_Reject_Pseudo_scheme_invalid(t *testing.T) {
function TestServer_Request_Reject_Pseudo_Unknown (line 1031) | func TestServer_Request_Reject_Pseudo_Unknown(t *testing.T) {
function testRejectRequest (line 1038) | func testRejectRequest(t *testing.T, send func(*serverTester)) {
function testRejectRequestWithProtocolError (line 1049) | func testRejectRequestWithProtocolError(t *testing.T, send func(*serverT...
function TestRejectFrameOnIdle_WindowUpdate (line 1066) | func TestRejectFrameOnIdle_WindowUpdate(t *testing.T) {
function TestRejectFrameOnIdle_Data (line 1071) | func TestRejectFrameOnIdle_Data(t *testing.T) {
function TestRejectFrameOnIdle_RSTStream (line 1076) | func TestRejectFrameOnIdle_RSTStream(t *testing.T) {
function TestServer_Request_Connect (line 1082) | func TestServer_Request_Connect(t *testing.T) {
function TestServer_Request_Connect_InvalidPath (line 1106) | func TestServer_Request_Connect_InvalidPath(t *testing.T) {
function TestServer_Request_Connect_InvalidScheme (line 1121) | func TestServer_Request_Connect_InvalidScheme(t *testing.T) {
function TestServer_Ping (line 1136) | func TestServer_Ping(t *testing.T) {
function TestServer_RejectsLargeFrames (line 1162) | func TestServer_RejectsLargeFrames(t *testing.T) {
function TestServer_Handler_Sends_WindowUpdate (line 1187) | func TestServer_Handler_Sends_WindowUpdate(t *testing.T) {
function TestServer_Handler_Sends_WindowUpdate_Padding (line 1221) | func TestServer_Handler_Sends_WindowUpdate_Padding(t *testing.T) {
function TestServer_Send_GoAway_After_Bogus_WindowUpdate (line 1253) | func TestServer_Send_GoAway_After_Bogus_WindowUpdate(t *testing.T) {
function TestServer_Send_RstStream_After_Bogus_WindowUpdate (line 1269) | func TestServer_Send_RstStream_After_Bogus_WindowUpdate(t *testing.T) {
function testServerPostUnblock (line 1296) | func testServerPostUnblock(t *testing.T,
function TestServer_RSTStream_Unblocks_Read (line 1327) | func TestServer_RSTStream_Unblocks_Read(t *testing.T) {
function TestServer_RSTStream_Unblocks_Header_Write (line 1347) | func TestServer_RSTStream_Unblocks_Header_Write(t *testing.T) {
function testServer_RSTStream_Unblocks_Header_Write (line 1359) | func testServer_RSTStream_Unblocks_Header_Write(t *testing.T) {
function TestServer_DeadConn_Unblocks_Read (line 1397) | func TestServer_DeadConn_Unblocks_Read(t *testing.T) {
function TestServer_CloseNotify_After_RSTStream (line 1417) | func TestServer_CloseNotify_After_RSTStream(t *testing.T) {
function TestServer_CloseNotify_After_ConnClose (line 1425) | func TestServer_CloseNotify_After_ConnClose(t *testing.T) {
function TestServer_CloseNotify_After_StreamError (line 1432) | func TestServer_CloseNotify_After_StreamError(t *testing.T) {
function TestServer_StateTransitions (line 1439) | func TestServer_StateTransitions(t *testing.T) {
function TestServer_Rejects_HeadersNoEnd_Then_Headers (line 1495) | func TestServer_Rejects_HeadersNoEnd_Then_Headers(t *testing.T) {
function TestServer_Rejects_HeadersNoEnd_Then_Ping (line 1513) | func TestServer_Rejects_HeadersNoEnd_Then_Ping(t *testing.T) {
function TestServer_Rejects_HeadersEnd_Then_Continuation (line 1528) | func TestServer_Rejects_HeadersEnd_Then_Continuation(t *testing.T) {
function TestServer_Rejects_HeadersNoEnd_Then_ContinuationWrongStream (line 1544) | func TestServer_Rejects_HeadersNoEnd_Then_ContinuationWrongStream(t *tes...
function TestServer_Rejects_Headers0 (line 1559) | func TestServer_Rejects_Headers0(t *testing.T) {
function TestServer_Rejects_Continuation0 (line 1572) | func TestServer_Rejects_Continuation0(t *testing.T) {
function TestServer_Rejects_Priority0 (line 1582) | func TestServer_Rejects_Priority0(t *testing.T) {
function TestServer_Rejects_HeadersSelfDependence (line 1590) | func TestServer_Rejects_HeadersSelfDependence(t *testing.T) {
function TestServer_Rejects_PrioritySelfDependence (line 1604) | func TestServer_Rejects_PrioritySelfDependence(t *testing.T) {
function TestServer_Rejects_PushPromise (line 1611) | func TestServer_Rejects_PushPromise(t *testing.T) {
function testServerRejectsConn (line 1626) | func testServerRejectsConn(t *testing.T, writeReq func(*serverTester)) {
function testServerRejectsStream (line 1654) | func testServerRejectsStream(t *testing.T, code ErrCode, writeReq func(*...
function testServerRequest (line 1665) | func testServerRequest(t *testing.T, writeReq func(*serverTester), check...
function getSlash (line 1686) | func getSlash(st *serverTester) { st.bodylessReq1() }
function TestServer_Response_NoData (line 1688) | func TestServer_Response_NoData(t *testing.T) {
function TestServer_Response_NoData_Header_FooBar (line 1704) | func TestServer_Response_NoData_Header_FooBar(t *testing.T) {
function TestServer_Response_Data_Sniff_DoesntOverride (line 1730) | func TestServer_Response_Data_Sniff_DoesntOverride(t *testing.T) {
function TestServer_Response_TransferEncoding_chunked (line 1764) | func TestServer_Response_TransferEncoding_chunked(t *testing.T) {
function TestServer_Response_Data_IgnoreHeaderAfterWrite_After (line 1786) | func TestServer_Response_Data_IgnoreHeaderAfterWrite_After(t *testing.T) {
function TestServer_Response_Data_IgnoreHeaderAfterWrite_Overwrite (line 1814) | func TestServer_Response_Data_IgnoreHeaderAfterWrite_Overwrite(t *testin...
function TestServer_Response_Data_SniffLenType (line 1843) | func TestServer_Response_Data_SniffLenType(t *testing.T) {
function TestServer_Response_Header_Flush_MidWrite (line 1876) | func TestServer_Response_Header_Flush_MidWrite(t *testing.T) {
function TestServer_Response_LargeWrite (line 1923) | func TestServer_Response_LargeWrite(t *testing.T) {
function TestServer_Response_LargeWrite_FlowControlled (line 1995) | func TestServer_Response_LargeWrite_FlowControlled(t *testing.T) {
function TestServer_Response_RST_Unblocks_LargeWrite (line 2050) | func TestServer_Response_RST_Unblocks_LargeWrite(t *testing.T) {
function TestServer_Response_Empty_Data_Not_FlowControlled (line 2094) | func TestServer_Response_Empty_Data_Not_FlowControlled(t *testing.T) {
function TestServer_Response_Automatic100Continue (line 2126) | func TestServer_Response_Automatic100Continue(t *testing.T) {
function TestServer_HandlerWriteErrorOnDisconnect (line 2195) | func TestServer_HandlerWriteErrorOnDisconnect(t *testing.T) {
function TestServer_Rejects_Too_Many_Streams (line 2230) | func TestServer_Rejects_Too_Many_Streams(t *testing.T) {
function TestServer_Response_ManyHeaders_With_Continuation (line 2303) | func TestServer_Response_ManyHeaders_With_Continuation(t *testing.T) {
function TestServer_NoCrash_HandlerClose_Then_ClientClose (line 2337) | func TestServer_NoCrash_HandlerClose_Then_ClientClose(t *testing.T) {
function TestServer_Rejects_TLS10 (line 2406) | func TestServer_Rejects_TLS10(t *testing.T) { testRejectTLS(t, tls.Versi...
function TestServer_Rejects_TLS11 (line 2407) | func TestServer_Rejects_TLS11(t *testing.T) { testRejectTLS(t, tls.Versi...
function testRejectTLS (line 2409) | func testRejectTLS(t *testing.T, max uint16) {
function TestServer_Rejects_TLSBadCipher (line 2420) | func TestServer_Rejects_TLSBadCipher(t *testing.T) {
function TestServer_Advertises_Common_Cipher (line 2445) | func TestServer_Advertises_Common_Cipher(t *testing.T) {
function testServerResponse (line 2481) | func testServerResponse(t testing.TB,
function readBodyHandler (line 2520) | func readBodyHandler(t *testing.T, want string) func(w http.ResponseWrit...
function TestServerWithCurl (line 2537) | func TestServerWithCurl(t *testing.T) { testServerWi...
function TestServerWithCurl_LenientCipherSuites (line 2538) | func TestServerWithCurl_LenientCipherSuites(t *testing.T) { testServerWi...
function testServerWithCurl (line 2540) | func testServerWithCurl(t *testing.T, permitProhibitedCipherSuites bool) {
function TestServerWithH2Load (line 2608) | func TestServerWithH2Load(t *testing.T) {
function TestServerDoS_MaxHeaderListSize (line 2636) | func TestServerDoS_MaxHeaderListSize(t *testing.T) {
function TestCompressionErrorOnWrite (line 2709) | func TestCompressionErrorOnWrite(t *testing.T) {
function TestCompressionErrorOnClose (line 2778) | func TestCompressionErrorOnClose(t *testing.T) {
function TestServerReadsTrailers (line 2801) | func TestServerReadsTrailers(t *testing.T) {
function TestServerWritesTrailers_WithFlush (line 2852) | func TestServerWritesTrailers_WithFlush(t *testing.T) { testServerWri...
function TestServerWritesTrailers_WithoutFlush (line 2853) | func TestServerWritesTrailers_WithoutFlush(t *testing.T) { testServerWri...
function testServerWritesTrailers (line 2855) | func testServerWritesTrailers(t *testing.T, withFlush bool) {
function TestServerDoesntWriteInvalidHeaders (line 2936) | func TestServerDoesntWriteInvalidHeaders(t *testing.T) {
function BenchmarkServerGets (line 2965) | func BenchmarkServerGets(b *testing.B) {
function BenchmarkServerPosts (line 2997) | func BenchmarkServerPosts(b *testing.B) {
function BenchmarkServerToClientStreamDefaultOptions (line 3039) | func BenchmarkServerToClientStreamDefaultOptions(b *testing.B) {
function BenchmarkServerToClientStreamReuseFrames (line 3045) | func BenchmarkServerToClientStreamReuseFrames(b *testing.B) {
function benchmarkServerToClientStream (line 3049) | func benchmarkServerToClientStream(b *testing.B, newServerOpts ...interf...
function TestIssue53 (line 3121) | func TestIssue53(t *testing.T) {
type issue53Conn (line 3141) | type issue53Conn struct
method Read (line 3147) | func (c *issue53Conn) Read(b []byte) (n int, err error) {
method Write (line 3156) | func (c *issue53Conn) Write(b []byte) (n int, err error) {
method Close (line 3161) | func (c *issue53Conn) Close() error {
method LocalAddr (line 3166) | func (c *issue53Conn) LocalAddr() net.Addr {
method RemoteAddr (line 3169) | func (c *issue53Conn) RemoteAddr() net.Addr {
method SetDeadline (line 3172) | func (c *issue53Conn) SetDeadline(t time.Time) error { return nil }
method SetReadDeadline (line 3173) | func (c *issue53Conn) SetReadDeadline(t time.Time) error { return nil }
method SetWriteDeadline (line 3174) | func (c *issue53Conn) SetWriteDeadline(t time.Time) error { return nil }
function TestConfigureServer (line 3177) | func TestConfigureServer(t *testing.T) {
function TestServerRejectHeadWithBody (line 3232) | func TestServerRejectHeadWithBody(t *testing.T) {
function TestServerNoAutoContentLengthOnHead (line 3247) | func TestServerNoAutoContentLengthOnHead(t *testing.T) {
function TestServerNoDuplicateContentType (line 3271) | func TestServerNoDuplicateContentType(t *testing.T) {
function disableGoroutineTracking (line 3296) | func disableGoroutineTracking() (restore func()) {
function BenchmarkServer_GetRequest (line 3302) | func BenchmarkServer_GetRequest(b *testing.B) {
function BenchmarkServer_PostRequest (line 3334) | func BenchmarkServer_PostRequest(b *testing.B) {
type connStateConn (line 3366) | type connStateConn struct
method ConnectionState (line 3371) | func (c connStateConn) ConnectionState() tls.ConnectionState { return ...
function TestServerHandleCustomConn (line 3375) | func TestServerHandleCustomConn(t *testing.T) {
function TestServer_Rejects_ConnHeaders (line 3443) | func TestServer_Rejects_ConnHeaders(t *testing.T) {
type hpackEncoder (line 3463) | type hpackEncoder struct
method encodeHeaderRaw (line 3468) | func (he *hpackEncoder) encodeHeaderRaw(t *testing.T, headers ...strin...
function TestCheckValidHTTP2Request (line 3487) | func TestCheckValidHTTP2Request(t *testing.T) {
function TestExpect100ContinueAfterHandlerWrites (line 3530) | func TestExpect100ContinueAfterHandlerWrites(t *testing.T) {
type funcReader (line 3580) | type funcReader
method Read (line 3582) | func (f funcReader) Read(p []byte) (n int, err error) { return f(p) }
function TestUnreadFlowControlReturned_Server (line 3586) | func TestUnreadFlowControlReturned_Server(t *testing.T) {
function TestServerIdleTimeout (line 3620) | func TestServerIdleTimeout(t *testing.T) {
function TestServerIdleTimeout_AfterRequest (line 3638) | func TestServerIdleTimeout_AfterRequest(t *testing.T) {
function TestRequestBodyReadCloseRace (line 3669) | func TestRequestBodyReadCloseRace(t *testing.T) {
function TestIssue20704Race (line 3690) | func TestIssue20704Race(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/transport.go
constant transportDefaultConnFlow (line 38) | transportDefaultConnFlow = 1 << 30
constant transportDefaultStreamFlow (line 43) | transportDefaultStreamFlow = 4 << 20
constant transportDefaultStreamMinRefresh (line 47) | transportDefaultStreamMinRefresh = 4 << 10
constant defaultUserAgent (line 49) | defaultUserAgent = "Go-http-client/2.0"
type Transport (line 56) | type Transport struct
method maxHeaderListSize (line 106) | func (t *Transport) maxHeaderListSize() uint32 {
method disableCompression (line 116) | func (t *Transport) disableCompression() bool {
method connPool (line 130) | func (t *Transport) connPool() ClientConnPool {
method initConnPool (line 135) | func (t *Transport) initConnPool() {
method RoundTrip (line 313) | func (t *Transport) RoundTrip(req *http.Request) (*http.Response, erro...
method RoundTripOpt (line 339) | func (t *Transport) RoundTripOpt(req *http.Request, opt RoundTripOpt) ...
method CloseIdleConnections (line 385) | func (t *Transport) CloseIdleConnections() {
method dialClientConn (line 448) | func (t *Transport) dialClientConn(addr string, singleUse bool) (*Clie...
method newTLSConfig (line 460) | func (t *Transport) newTLSConfig(host string) *tls.Config {
method dialTLS (line 474) | func (t *Transport) dialTLS() func(string, string, *tls.Config) (net.C...
method dialTLSDefault (line 481) | func (t *Transport) dialTLSDefault(network, addr string, cfg *tls.Conf...
method disableKeepAlives (line 506) | func (t *Transport) disableKeepAlives() bool {
method expectContinueTimeout (line 510) | func (t *Transport) expectContinueTimeout() time.Duration {
method NewClientConn (line 517) | func (t *Transport) NewClientConn(c net.Conn) (*ClientConn, error) {
method newClientConn (line 521) | func (t *Transport) newClientConn(c net.Conn, singleUse bool) (*Client...
method vlogf (line 2155) | func (t *Transport) vlogf(format string, args ...interface{}) {
method logf (line 2161) | func (t *Transport) logf(format string, args ...interface{}) {
method getBodyWriterState (line 2222) | func (t *Transport) getBodyWriterState(cs *clientStream, body io.Reade...
function ConfigureTransport (line 125) | func ConfigureTransport(t1 *http.Transport) error {
type ClientConn (line 145) | type ClientConn struct
method setGoAway (line 585) | func (cc *ClientConn) setGoAway(f *GoAwayFrame) {
method CanTakeNewRequest (line 612) | func (cc *ClientConn) CanTakeNewRequest() bool {
method canTakeNewRequestLocked (line 618) | func (cc *ClientConn) canTakeNewRequestLocked() bool {
method onIdleTimeout (line 632) | func (cc *ClientConn) onIdleTimeout() {
method closeIfIdle (line 636) | func (cc *ClientConn) closeIfIdle() {
method frameScratchBuffer (line 659) | func (cc *ClientConn) frameScratchBuffer() []byte {
method putFrameScratchBuffer (line 676) | func (cc *ClientConn) putFrameScratchBuffer(buf []byte) {
method responseHeaderTimeout (line 714) | func (cc *ClientConn) responseHeaderTimeout() time.Duration {
method RoundTrip (line 754) | func (cc *ClientConn) RoundTrip(req *http.Request) (*http.Response, er...
method awaitOpenSlotForRequest (line 938) | func (cc *ClientConn) awaitOpenSlotForRequest(req *http.Request) error {
method writeHeaders (line 976) | func (cc *ClientConn) writeHeaders(streamID uint32, endStream bool, hd...
method encodeHeaders (line 1157) | func (cc *ClientConn) encodeHeaders(req *http.Request, addGzipHeader b...
method encodeTrailers (line 1305) | func (cc *ClientConn) encodeTrailers(req *http.Request) ([]byte, error) {
method writeHeader (line 1330) | func (cc *ClientConn) writeHeader(name, value string) {
method newStream (line 1343) | func (cc *ClientConn) newStream() *clientStream {
method forgetStreamID (line 1360) | func (cc *ClientConn) forgetStreamID(id uint32) {
method streamByID (line 1364) | func (cc *ClientConn) streamByID(id uint32, andRemove bool) *clientStr...
method readLoop (line 1390) | func (cc *ClientConn) readLoop() {
method ping (line 2060) | func (cc *ClientConn) ping(ctx contextContext) error {
method writeStreamReset (line 2130) | func (cc *ClientConn) writeStreamReset(streamID uint32, code ErrCode, ...
method logf (line 2147) | func (cc *ClientConn) logf(format string, args ...interface{}) {
method vlogf (line 2151) | func (cc *ClientConn) vlogf(format string, args ...interface{}) {
type clientStream (line 190) | type clientStream struct
method awaitRequestCancel (line 244) | func (cs *clientStream) awaitRequestCancel(req *http.Request) {
method cancelStream (line 251) | func (cs *clientStream) cancelStream() {
method checkResetOrDone (line 266) | func (cs *clientStream) checkResetOrDone() error {
method abortRequestBodyWrite (line 277) | func (cs *clientStream) abortRequestBodyWrite(err error) {
method writeRequestBody (line 1015) | func (cs *clientStream) writeRequestBody(body io.Reader, bodyCloser io...
method awaitFlowControl (line 1119) | func (cs *clientStream) awaitFlowControl(maxBytes int) (taken int32, e...
method copyTrailers (line 1935) | func (cs *clientStream) copyTrailers() {
function awaitRequestCancel (line 225) | func awaitRequestCancel(req *http.Request, done <-chan struct{}) error {
type stickyErrWriter (line 288) | type stickyErrWriter struct
method Write (line 293) | func (sew stickyErrWriter) Write(p []byte) (n int, err error) {
type RoundTripOpt (line 305) | type RoundTripOpt struct
function authorityAddr (line 319) | func authorityAddr(scheme string, authority string) (addr string) {
type afterReqBodyWriteError (line 399) | type afterReqBodyWriteError struct
method Error (line 403) | func (e afterReqBodyWriteError) Error() string {
function shouldRetryRequest (line 411) | func shouldRetryRequest(req *http.Request, err error, afterBodyWrite boo...
function canRetryError (line 438) | func canRetryError(err error) bool {
constant maxAllocFrameSize (line 653) | maxAllocFrameSize = 512 << 10
function commaSeparatedTrailers (line 697) | func commaSeparatedTrailers(req *http.Request) (string, error) {
function checkConnHeaders (line 728) | func checkConnHeaders(req *http.Request) error {
function actualContentLength (line 744) | func actualContentLength(req *http.Request) int64 {
type badStringError (line 1149) | type badStringError struct
method Error (line 1154) | func (e *badStringError) Error() string { return fmt.Sprintf("%s %q", ...
function shouldSendReqContentLength (line 1287) | func shouldSendReqContentLength(method string, contentLength int64) bool {
type resAndError (line 1337) | type resAndError struct
type clientConnReadLoop (line 1383) | type clientConnReadLoop struct
method cleanup (line 1426) | func (rl *clientConnReadLoop) cleanup() {
method run (line 1465) | func (rl *clientConnReadLoop) run() error {
method processHeaders (line 1537) | func (rl *clientConnReadLoop) processHeaders(f *MetaHeadersFrame) error {
method handleResponse (line 1601) | func (rl *clientConnReadLoop) handleResponse(cs *clientStream, f *Meta...
method processTrailers (line 1685) | func (rl *clientConnReadLoop) processTrailers(cs *clientStream, f *Met...
method processData (line 1814) | func (rl *clientConnReadLoop) processData(f *DataFrame) error {
method endStream (line 1911) | func (rl *clientConnReadLoop) endStream(cs *clientStream) {
method endStreamError (line 1917) | func (rl *clientConnReadLoop) endStreamError(cs *clientStream, err err...
method processGoAway (line 1945) | func (rl *clientConnReadLoop) processGoAway(f *GoAwayFrame) error {
method processSettings (line 1956) | func (rl *clientConnReadLoop) processSettings(f *SettingsFrame) error {
method processWindowUpdate (line 2014) | func (rl *clientConnReadLoop) processWindowUpdate(f *WindowUpdateFrame...
method processResetStream (line 2035) | func (rl *clientConnReadLoop) processResetStream(f *RSTStreamFrame) er...
method processPing (line 2098) | func (rl *clientConnReadLoop) processPing(f *PingFrame) error {
method processPushPromise (line 2119) | func (rl *clientConnReadLoop) processPushPromise(f *PushPromiseFrame) ...
type GoAwayError (line 1407) | type GoAwayError struct
method Error (line 1413) | func (e GoAwayError) Error() string {
function isEOFOrNetReadError (line 1418) | func isEOFOrNetReadError(err error) bool {
type transportResponseBody (line 1716) | type transportResponseBody struct
method Read (line 1720) | func (b transportResponseBody) Read(p []byte) (n int, err error) {
method Close (line 1785) | func (b transportResponseBody) Close() error {
function strSliceContains (line 2167) | func strSliceContains(ss []string, s string) bool {
type erringRoundTripper (line 2176) | type erringRoundTripper struct
method RoundTrip (line 2178) | func (rt erringRoundTripper) RoundTrip(*http.Request) (*http.Response,...
type gzipReader (line 2182) | type gzipReader struct
method Read (line 2188) | func (gz *gzipReader) Read(p []byte) (n int, err error) {
method Close (line 2202) | func (gz *gzipReader) Close() error {
type errorReader (line 2206) | type errorReader struct
method Read (line 2208) | func (r errorReader) Read(p []byte) (int, error) { return 0, r.err }
type bodyWriterState (line 2213) | type bodyWriterState struct
method cancel (line 2256) | func (s bodyWriterState) cancel() {
method on100 (line 2262) | func (s bodyWriterState) on100() {
method scheduleBodyWrite (line 2275) | func (s bodyWriterState) scheduleBodyWrite() {
function isConnectionCloseRequest (line 2291) | func isConnectionCloseRequest(req *http.Request) bool {
FILE: vendor/golang.org/x/net/http2/transport_test.go
type testContext (line 43) | type testContext struct
method Done (line 45) | func (testContext) Done() <-chan struct{} { return m...
method Err (line 46) | func (testContext) Err() error { panic("s...
method Deadline (line 47) | func (testContext) Deadline() (deadline time.Time, ok bool) { return t...
method Value (line 48) | func (testContext) Value(key interface{}) interface{} { return n...
function TestTransportExternal (line 50) | func TestTransportExternal(t *testing.T) {
type fakeTLSConn (line 63) | type fakeTLSConn struct
method ConnectionState (line 67) | func (c *fakeTLSConn) ConnectionState() tls.ConnectionState {
function startH2cServer (line 74) | func startH2cServer(t *testing.T) net.Listener {
function TestTransportH2c (line 90) | func TestTransportH2c(t *testing.T) {
function TestTransport (line 119) | func TestTransport(t *testing.T) {
function onSameConn (line 169) | func onSameConn(t *testing.T, modReq func(*http.Request)) bool {
function TestTransportReusesConns (line 204) | func TestTransportReusesConns(t *testing.T) {
function TestTransportReusesConn_RequestClose (line 210) | func TestTransportReusesConn_RequestClose(t *testing.T) {
function TestTransportReusesConn_ConnClose (line 216) | func TestTransportReusesConn_ConnClose(t *testing.T) {
function TestTransportGroupsPendingDials (line 224) | func TestTransportGroupsPendingDials(t *testing.T) {
function retry (line 293) | func retry(tries int, delay time.Duration, fn func() error) error {
function TestTransportAbortClosesPipes (line 305) | func TestTransportAbortClosesPipes(t *testing.T) {
function TestTransportPath (line 351) | func TestTransportPath(t *testing.T) {
function randString (line 387) | func randString(n int) string {
type panicReader (line 396) | type panicReader struct
method Read (line 398) | func (panicReader) Read([]byte) (int, error) { panic("unexpected Read") }
method Close (line 399) | func (panicReader) Close() error { panic("unexpected Close...
function TestActualContentLength (line 401) | func TestActualContentLength(t *testing.T) {
function TestTransportBody (line 435) | func TestTransportBody(t *testing.T) {
function shortString (line 510) | func shortString(v string) string {
function TestTransportDialTLS (line 518) | func TestTransportDialTLS(t *testing.T) {
function TestConfigureTransport (line 560) | func TestConfigureTransport(t *testing.T) {
type capitalizeReader (line 604) | type capitalizeReader struct
method Read (line 608) | func (cr capitalizeReader) Read(p []byte) (n int, err error) {
type flushWriter (line 618) | type flushWriter struct
method Write (line 622) | func (fw flushWriter) Write(p []byte) (n int, err error) {
type clientTester (line 630) | type clientTester struct
method greet (line 689) | func (ct *clientTester) greet(settings ...Setting) {
method readNonSettingsFrame (line 711) | func (ct *clientTester) readNonSettingsFrame() (Frame, error) {
method cleanup (line 724) | func (ct *clientTester) cleanup() {
method run (line 728) | func (ct *clientTester) run() {
method start (line 741) | func (ct *clientTester) start(which string, errc chan<- error, fn func...
method readFrame (line 758) | func (ct *clientTester) readFrame() (Frame, error) {
method firstHeaders (line 762) | func (ct *clientTester) firstHeaders() (*HeadersFrame, error) {
function newClientTester (line 639) | func newClientTester(t *testing.T) *clientTester {
function newLocalListener (line 677) | func newLocalListener(t *testing.T) net.Listener {
type countingReader (line 780) | type countingReader struct
method Read (line 784) | func (r countingReader) Read(p []byte) (n int, err error) {
function TestTransportReqBodyAfterResponse_200 (line 792) | func TestTransportReqBodyAfterResponse_200(t *testing.T) { testTransport...
function TestTransportReqBodyAfterResponse_403 (line 793) | func TestTransportReqBodyAfterResponse_403(t *testing.T) { testTransport...
function testTransportReqBodyAfterResponse (line 795) | func testTransportReqBodyAfterResponse(t *testing.T, status int) {
function TestTransportFullDuplex (line 900) | func TestTransportFullDuplex(t *testing.T) {
function TestTransportConnectRequest (line 950) | func TestTransportConnectRequest(t *testing.T) {
type headerType (line 1009) | type headerType
constant noHeader (line 1012) | noHeader headerType = iota
constant oneHeader (line 1013) | oneHeader
constant splitHeader (line 1014) | splitHeader
constant f0 (line 1018) | f0 = noHeader
constant f1 (line 1019) | f1 = oneHeader
constant f2 (line 1020) | f2 = splitHeader
constant d0 (line 1021) | d0 = false
constant d1 (line 1022) | d1 = true
function TestTransportResPattern_c0h1d0t0 (line 1028) | func TestTransportResPattern_c0h1d0t0(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c0h1d0t1 (line 1029) | func TestTransportResPattern_c0h1d0t1(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c0h1d0t2 (line 1030) | func TestTransportResPattern_c0h1d0t2(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c0h1d1t0 (line 1031) | func TestTransportResPattern_c0h1d1t0(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c0h1d1t1 (line 1032) | func TestTransportResPattern_c0h1d1t1(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c0h1d1t2 (line 1033) | func TestTransportResPattern_c0h1d1t2(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c0h2d0t0 (line 1034) | func TestTransportResPattern_c0h2d0t0(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c0h2d0t1 (line 1035) | func TestTransportResPattern_c0h2d0t1(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c0h2d0t2 (line 1036) | func TestTransportResPattern_c0h2d0t2(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c0h2d1t0 (line 1037) | func TestTransportResPattern_c0h2d1t0(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c0h2d1t1 (line 1038) | func TestTransportResPattern_c0h2d1t1(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c0h2d1t2 (line 1039) | func TestTransportResPattern_c0h2d1t2(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c1h1d0t0 (line 1040) | func TestTransportResPattern_c1h1d0t0(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c1h1d0t1 (line 1041) | func TestTransportResPattern_c1h1d0t1(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c1h1d0t2 (line 1042) | func TestTransportResPattern_c1h1d0t2(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c1h1d1t0 (line 1043) | func TestTransportResPattern_c1h1d1t0(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c1h1d1t1 (line 1044) | func TestTransportResPattern_c1h1d1t1(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c1h1d1t2 (line 1045) | func TestTransportResPattern_c1h1d1t2(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c1h2d0t0 (line 1046) | func TestTransportResPattern_c1h2d0t0(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c1h2d0t1 (line 1047) | func TestTransportResPattern_c1h2d0t1(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c1h2d0t2 (line 1048) | func TestTransportResPattern_c1h2d0t2(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c1h2d1t0 (line 1049) | func TestTransportResPattern_c1h2d1t0(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c1h2d1t1 (line 1050) | func TestTransportResPattern_c1h2d1t1(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c1h2d1t2 (line 1051) | func TestTransportResPattern_c1h2d1t2(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c2h1d0t0 (line 1052) | func TestTransportResPattern_c2h1d0t0(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c2h1d0t1 (line 1053) | func TestTransportResPattern_c2h1d0t1(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c2h1d0t2 (line 1054) | func TestTransportResPattern_c2h1d0t2(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c2h1d1t0 (line 1055) | func TestTransportResPattern_c2h1d1t0(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c2h1d1t1 (line 1056) | func TestTransportResPattern_c2h1d1t1(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c2h1d1t2 (line 1057) | func TestTransportResPattern_c2h1d1t2(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c2h2d0t0 (line 1058) | func TestTransportResPattern_c2h2d0t0(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c2h2d0t1 (line 1059) | func TestTransportResPattern_c2h2d0t1(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c2h2d0t2 (line 1060) | func TestTransportResPattern_c2h2d0t2(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c2h2d1t0 (line 1061) | func TestTransportResPattern_c2h2d1t0(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c2h2d1t1 (line 1062) | func TestTransportResPattern_c2h2d1t1(t *testing.T) { testTransportResPa...
function TestTransportResPattern_c2h2d1t2 (line 1063) | func TestTransportResPattern_c2h2d1t2(t *testing.T) { testTransportResPa...
function testTransportResPattern (line 1065) | func testTransportResPattern(t *testing.T, expect100Continue, resHeader ...
function TestTransportReceiveUndeclaredTrailer (line 1192) | func TestTransportReceiveUndeclaredTrailer(t *testing.T) {
function TestTransportInvalidTrailer_Pseudo1 (line 1256) | func TestTransportInvalidTrailer_Pseudo1(t *testing.T) {
function TestTransportInvalidTrailer_Pseudo2 (line 1259) | func TestTransportInvalidTrailer_Pseudo2(t *testing.T) {
function testTransportInvalidTrailer_Pseudo (line 1262) | func testTransportInvalidTrailer_Pseudo(t *testing.T, trailers headerTyp...
function TestTransportInvalidTrailer_Capital1 (line 1269) | func TestTransportInvalidTrailer_Capital1(t *testing.T) {
function TestTransportInvalidTrailer_Capital2 (line 1272) | func TestTransportInvalidTrailer_Capital2(t *testing.T) {
function testTransportInvalidTrailer_Capital (line 1275) | func testTransportInvalidTrailer_Capital(t *testing.T, trailers headerTy...
function TestTransportInvalidTrailer_EmptyFieldName (line 1281) | func TestTransportInvalidTrailer_EmptyFieldName(t *testing.T) {
function TestTransportInvalidTrailer_BinaryFieldValue (line 1286) | func TestTransportInvalidTrailer_BinaryFieldValue(t *testing.T) {
function testInvalidTrailer (line 1292) | func testInvalidTrailer(t *testing.T, trailers headerType, wantErr error...
function headerListSize (line 1377) | func headerListSize(h http.Header) (size uint32) {
function padHeaders (line 1394) | func padHeaders(t *testing.T, h http.Header, limit uint64, filler string) {
function TestPadHeaders (line 1428) | func TestPadHeaders(t *testing.T) {
function TestTransportChecksRequestHeaderListSize (line 1486) | func TestTransportChecksRequestHeaderListSize(t *testing.T) {
function TestTransportChecksResponseHeaderListSize (line 1637) | func TestTransportChecksResponseHeaderListSize(t *testing.T) {
function TestTransportBodyReadErrorType (line 1698) | func TestTransportBodyReadErrorType(t *testing.T) {
function TestTransportDoubleCloseOnWriteError (line 1732) | func TestTransportDoubleCloseOnWriteError(t *testing.T) {
function TestTransportDisableKeepAlives (line 1771) | func TestTransportDisableKeepAlives(t *testing.T) {
function TestTransportDisableKeepAlives_Concurrency (line 1814) | func TestTransportDisableKeepAlives_Concurrency(t *testing.T) {
type noteCloseConn (line 1875) | type noteCloseConn struct
method Close (line 1881) | func (c *noteCloseConn) Close() error {
function isTimeout (line 1886) | func isTimeout(err error) bool {
function TestTransportResponseHeaderTimeout_NoBody (line 1899) | func TestTransportResponseHeaderTimeout_NoBody(t *testing.T) {
function TestTransportResponseHeaderTimeout_Body (line 1902) | func TestTransportResponseHeaderTimeout_Body(t *testing.T) {
function testTransportResponseHeaderTimeout (line 1906) | func testTransportResponseHeaderTimeout(t *testing.T, body bool) {
function TestTransportDisableCompression (line 1958) | func TestTransportDisableCompression(t *testing.T) {
function TestTransportRejectsConnHeaders (line 1990) | func TestTransportRejectsConnHeaders(t *testing.T) {
function TestTransportFailsOnInvalidHeaders (line 2089) | func TestTransportFailsOnInvalidHeaders(t *testing.T) {
function TestGzipReader_DoubleReadCrash (line 2152) | func TestGzipReader_DoubleReadCrash(t *testing.T) {
function TestTransportNewTLSConfig (line 2167) | func TestTransportNewTLSConfig(t *testing.T) {
function TestTransportReadHeadResponse (line 2240) | func TestTransportReadHeadResponse(t *testing.T) {
function TestTransportReadHeadResponseWithBody (line 2293) | func TestTransportReadHeadResponseWithBody(t *testing.T) {
type neverEnding (line 2347) | type neverEnding
method Read (line 2349) | func (b neverEnding) Read(p []byte) (int, error) {
function TestTransportHandlerBodyClose (line 2360) | func TestTransportHandlerBodyClose(t *testing.T) {
function TestTransportFlowControl (line 2399) | func TestTransportFlowControl(t *testing.T) {
function TestTransportUsesGoAwayDebugError_RoundTrip (line 2459) | func TestTransportUsesGoAwayDebugError_RoundTrip(t *testing.T) {
function TestTransportUsesGoAwayDebugError_Body (line 2463) | func TestTransportUsesGoAwayDebugError_Body(t *testing.T) {
function testTransportUsesGoAwayDebugError (line 2467) | func testTransportUsesGoAwayDebugError(t *testing.T, failMidBody bool) {
function testTransportReturnsUnusedFlowControl (line 2531) | func testTransportReturnsUnusedFlowControl(t *testing.T, oneDataFrame bo...
function TestTransportReturnsUnusedFlowControlSingleWrite (line 2633) | func TestTransportReturnsUnusedFlowControlSingleWrite(t *testing.T) {
function TestTransportReturnsUnusedFlowControlMultipleWrites (line 2638) | func TestTransportReturnsUnusedFlowControlMultipleWrites(t *testing.T) {
function TestTransportAdjustsFlowControl (line 2644) | func TestTransportAdjustsFlowControl(t *testing.T) {
function TestTransportReturnsDataPaddingFlowControl (line 2713) | func TestTransportReturnsDataPaddingFlowControl(t *testing.T) {
function TestTransportReturnsErrorOnBadResponseHeaders (line 2786) | func TestTransportReturnsErrorOnBadResponseHeaders(t *testing.T) {
type byteAndEOFReader (line 2842) | type byteAndEOFReader
method Read (line 2844) | func (b byteAndEOFReader) Read(p []byte) (n int, err error) {
function TestTransportBodyDoubleEndStream (line 2861) | func TestTransportBodyDoubleEndStream(t *testing.T) {
function TestTransportRequestPathPseudo (line 2882) | func TestTransportRequestPathPseudo(t *testing.T) {
function TestRoundTripDoesntConsumeRequestBodyEarly (line 3012) | func TestRoundTripDoesntConsumeRequestBodyEarly(t *testing.T) {
function TestClientConnPing (line 3031) | func TestClientConnPing(t *testing.T) {
function TestTransportCancelDataResponseRace (line 3049) | func TestTransportCancelDataResponseRace(t *testing.T) {
function TestTransportRetryAfterGOAWAY (line 3100) | func TestTransportRetryAfterGOAWAY(t *testing.T) {
function TestTransportRetryAfterRefusedStream (line 3247) | func TestTransportRetryAfterRefusedStream(t *testing.T) {
function TestTransportRetryHasLimit (line 3309) | func TestTransportRetryHasLimit(t *testing.T) {
function TestTransportResponseDataBeforeHeaders (line 3357) | func TestTransportResponseDataBeforeHeaders(t *testing.T) {
function TestTransportRequestsStallAtServerLimit (line 3411) | func TestTransportRequestsStallAtServerLimit(t *testing.T) {
function TestAuthorityAddr (line 3580) | func TestAuthorityAddr(t *testing.T) {
function TestTransportAllocationsAfterResponseBodyClose (line 3603) | func TestTransportAllocationsAfterResponseBodyClose(t *testing.T) {
function TestTransportNoBodyMeansNoDATA (line 3657) | func TestTransportNoBodyMeansNoDATA(t *testing.T) {
function benchSimpleRoundTrip (line 3694) | func benchSimpleRoundTrip(b *testing.B, nHeaders int) {
type infiniteReader (line 3735) | type infiniteReader struct
method Read (line 3737) | func (r infiniteReader) Read(b []byte) (int, error) {
function TestTransportResponseAndResetWithoutConsumingBodyRace (line 3743) | func TestTransportResponseAndResetWithoutConsumingBodyRace(t *testing.T) {
function BenchmarkClientRequestHeaders (line 3763) | func BenchmarkClientRequestHeaders(b *testing.B) {
FILE: vendor/golang.org/x/net/http2/write.go
type writeFramer (line 19) | type writeFramer interface
type writeContext (line 38) | type writeContext interface
function writeEndsStream (line 50) | func writeEndsStream(w writeFramer) bool {
type flushFrameWriter (line 65) | type flushFrameWriter struct
method writeFrame (line 67) | func (flushFrameWriter) writeFrame(ctx writeContext) error {
method staysWithinBuffer (line 71) | func (flushFrameWriter) staysWithinBuffer(max int) bool { return false }
type writeSettings (line 73) | type writeSettings
method staysWithinBuffer (line 75) | func (s writeSettings) staysWithinBuffer(max int) bool {
method writeFrame (line 81) | func (s writeSettings) writeFrame(ctx writeContext) error {
type writeGoAway (line 85) | type writeGoAway struct
method writeFrame (line 90) | func (p *writeGoAway) writeFrame(ctx writeContext) error {
method staysWithinBuffer (line 96) | func (*writeGoAway) staysWithinBuffer(max int) bool { return false }
type writeData (line 98) | type writeData struct
method String (line 104) | func (w *writeData) String() string {
method writeFrame (line 108) | func (w *writeData) writeFrame(ctx writeContext) error {
method staysWithinBuffer (line 112) | func (w *writeData) staysWithinBuffer(max int) bool {
type handlerPanicRST (line 118) | type handlerPanicRST struct
method writeFrame (line 122) | func (hp handlerPanicRST) writeFrame(ctx writeContext) error {
method staysWithinBuffer (line 126) | func (hp handlerPanicRST) staysWithinBuffer(max int) bool { return fra...
method writeFrame (line 128) | func (se StreamError) writeFrame(ctx writeContext) error {
method staysWithinBuffer (line 132) | func (se StreamError) staysWithinBuffer(max int) bool { return frameHead...
type writePingAck (line 134) | type writePingAck struct
method writeFrame (line 136) | func (w writePingAck) writeFrame(ctx writeContext) error {
method staysWithinBuffer (line 140) | func (w writePingAck) staysWithinBuffer(max int) bool { return frameHe...
type writeSettingsAck (line 142) | type writeSettingsAck struct
method writeFrame (line 144) | func (writeSettingsAck) writeFrame(ctx writeContext) error {
method staysWithinBuffer (line 148) | func (writeSettingsAck) staysWithinBuffer(max int) bool { return frame...
function splitHeaderBlock (line 153) | func splitHeaderBlock(ctx writeContext, headerBlock []byte, fn func(ctx ...
type writeResHeaders (line 179) | type writeResHeaders struct
method staysWithinBuffer (line 198) | func (w *writeResHeaders) staysWithinBuffer(max int) bool {
method writeFrame (line 209) | func (w *writeResHeaders) writeFrame(ctx writeContext) error {
method writeHeaderBlock (line 237) | func (w *writeResHeaders) writeHeaderBlock(ctx writeContext, frag []by...
function encKV (line 191) | func encKV(enc *hpack.Encoder, k, v string) {
type writePushPromise (line 251) | type writePushPromise struct
method staysWithinBuffer (line 263) | func (w *writePushPromise) staysWithinBuffer(max int) bool {
method writeFrame (line 268) | func (w *writePushPromise) writeFrame(ctx writeContext) error {
method writeHeaderBlock (line 286) | func (w *writePushPromise) writeHeaderBlock(ctx writeContext, frag []b...
type write100ContinueHeadersFrame (line 299) | type write100ContinueHeadersFrame struct
method writeFrame (line 303) | func (w write100ContinueHeadersFrame) writeFrame(ctx writeContext) err...
method staysWithinBuffer (line 315) | func (w write100ContinueHeadersFrame) staysWithinBuffer(max int) bool {
type writeWindowUpdate (line 320) | type writeWindowUpdate struct
method staysWithinBuffer (line 325) | func (wu writeWindowUpdate) staysWithinBuffer(max int) bool { return f...
method writeFrame (line 327) | func (wu writeWindowUpdate) writeFrame(ctx writeContext) error {
function encodeHeaders (line 333) | func encodeHeaders(enc *hpack.Encoder, h http.Header, keys []string) {
FILE: vendor/golang.org/x/net/http2/writesched.go
type WriteScheduler (line 11) | type WriteScheduler interface
type OpenStreamOptions (line 40) | type OpenStreamOptions struct
type FrameWriteRequest (line 47) | type FrameWriteRequest struct
method StreamID (line 65) | func (wr FrameWriteRequest) StreamID() uint32 {
method DataSize (line 81) | func (wr FrameWriteRequest) DataSize() int {
method Consume (line 98) | func (wr FrameWriteRequest) Consume(n int32) (FrameWriteRequest, Frame...
method String (line 153) | func (wr FrameWriteRequest) String() string {
method replyToWriter (line 165) | func (wr *FrameWriteRequest) replyToWriter(err error) {
type writeQueue (line 178) | type writeQueue struct
method empty (line 182) | func (q *writeQueue) empty() bool { return len(q.s) == 0 }
method push (line 184) | func (q *writeQueue) push(wr FrameWriteRequest) {
method shift (line 188) | func (q *writeQueue) shift() FrameWriteRequest {
method consume (line 204) | func (q *writeQueue) consume(n int32) (FrameWriteRequest, bool) {
type writeQueuePool (line 220) | type writeQueuePool
method put (line 223) | func (p *writeQueuePool) put(q *writeQueue) {
method get (line 232) | func (p *writeQueuePool) get() *writeQueue {
FILE: vendor/golang.org/x/net/http2/writesched_priority.go
constant priorityDefaultWeight (line 14) | priorityDefaultWeight = 15
type PriorityWriteSchedulerConfig (line 17) | type PriorityWriteSchedulerConfig struct
function NewPriorityWriteScheduler (line 58) | func NewPriorityWriteScheduler(cfg *PriorityWriteSchedulerConfig) WriteS...
type priorityNodeState (line 84) | type priorityNodeState
constant priorityNodeOpen (line 87) | priorityNodeOpen priorityNodeState = iota
constant priorityNodeClosed (line 88) | priorityNodeClosed
constant priorityNodeIdle (line 89) | priorityNodeIdle
type priorityNode (line 95) | type priorityNode struct
method setParent (line 109) | func (n *priorityNode) setParent(parent *priorityNode) {
method addBytes (line 144) | func (n *priorityNode) addBytes(b int64) {
method walkReadyInOrder (line 157) | func (n *priorityNode) walkReadyInOrder(openParent bool, tmp *[]*prior...
type sortPriorityNodeSiblings (line 210) | type sortPriorityNodeSiblings
method Len (line 212) | func (z sortPriorityNodeSiblings) Len() int { return len(z) }
method Swap (line 213) | func (z sortPriorityNodeSiblings) Swap(i, k int) { z[i], z[k] = z[k], ...
method Less (line 214) | func (z sortPriorityNodeSiblings) Less(i, k int) bool {
type priorityWriteScheduler (line 228) | type priorityWriteScheduler struct
method OpenStream (line 257) | func (ws *priorityWriteScheduler) OpenStream(streamID uint32, options ...
method CloseStream (line 288) | func (ws *priorityWriteScheduler) CloseStream(streamID uint32) {
method AdjustStream (line 313) | func (ws *priorityWriteScheduler) AdjustStream(streamID uint32, priori...
method Push (line 384) | func (ws *priorityWriteScheduler) Push(wr FrameWriteRequest) {
method Pop (line 405) | func (ws *priorityWriteScheduler) Pop() (wr FrameWriteRequest, ok bool) {
method addClosedOrIdleNode (line 432) | func (ws *priorityWriteScheduler) addClosedOrIdleNode(list *[]*priorit...
method removeNode (line 446) | func (ws *priorityWriteScheduler) removeNode(n *priorityNode) {
FILE: vendor/golang.org/x/net/http2/writesched_priority_test.go
function defaultPriorityWriteScheduler (line 14) | func defaultPriorityWriteScheduler() *priorityWriteScheduler {
function checkPriorityWellFormed (line 18) | func checkPriorityWellFormed(ws *priorityWriteScheduler) error {
function fmtTree (line 43) | func fmtTree(ws *priorityWriteScheduler, fmtNode func(*priorityNode) str...
function fmtNodeParentSkipRoot (line 64) | func fmtNodeParentSkipRoot(n *priorityNode) string {
function fmtNodeWeightParentSkipRoot (line 75) | func fmtNodeWeightParentSkipRoot(n *priorityNode) string {
function TestPriorityTwoStreams (line 86) | func TestPriorityTwoStreams(t *testing.T) {
function TestPriorityAdjustExclusiveZero (line 112) | func TestPriorityAdjustExclusiveZero(t *testing.T) {
function TestPriorityAdjustOwnParent (line 141) | func TestPriorityAdjustOwnParent(t *testing.T) {
function TestPriorityClosedStreams (line 160) | func TestPriorityClosedStreams(t *testing.T) {
function TestPriorityClosedStreamsDisabled (line 198) | func TestPriorityClosedStreamsDisabled(t *testing.T) {
function TestPriorityIdleStreams (line 217) | func TestPriorityIdleStreams(t *testing.T) {
function TestPriorityIdleStreamsDisabled (line 238) | func TestPriorityIdleStreamsDisabled(t *testing.T) {
function TestPrioritySection531NonExclusive (line 254) | func TestPrioritySection531NonExclusive(t *testing.T) {
function TestPrioritySection531Exclusive (line 276) | func TestPrioritySection531Exclusive(t *testing.T) {
function makeSection533Tree (line 298) | func makeSection533Tree() *priorityWriteScheduler {
function TestPrioritySection533NonExclusive (line 311) | func TestPrioritySection533NonExclusive(t *testing.T) {
function TestPrioritySection533Exclusive (line 335) | func TestPrioritySection533Exclusive(t *testing.T) {
function checkPopAll (line 359) | func checkPopAll(ws WriteScheduler, order []uint32) error {
function TestPriorityPopFrom533Tree (line 376) | func TestPriorityPopFrom533Tree(t *testing.T) {
function TestPriorityPopFromLinearTree (line 390) | func TestPriorityPopFromLinearTree(t *testing.T) {
function TestPriorityFlowControl (line 410) | func TestPriorityFlowControl(t *testing.T) {
function TestPriorityThrottleOutOfOrderWrites (line 442) | func TestPriorityThrottleOutOfOrderWrites(t *testing.T) {
function TestPriorityWeights (line 495) | func TestPriorityWeights(t *testing.T) {
function TestPriorityRstStreamOnNonOpenStreams (line 528) | func TestPriorityRstStreamOnNonOpenStreams(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/writesched_random.go
function NewRandomWriteScheduler (line 13) | func NewRandomWriteScheduler() WriteScheduler {
type randomWriteScheduler (line 17) | type randomWriteScheduler struct
method OpenStream (line 29) | func (ws *randomWriteScheduler) OpenStream(streamID uint32, options Op...
method CloseStream (line 33) | func (ws *randomWriteScheduler) CloseStream(streamID uint32) {
method AdjustStream (line 42) | func (ws *randomWriteScheduler) AdjustStream(streamID uint32, priority...
method Push (line 46) | func (ws *randomWriteScheduler) Push(wr FrameWriteRequest) {
method Pop (line 60) | func (ws *randomWriteScheduler) Pop() (FrameWriteRequest, bool) {
FILE: vendor/golang.org/x/net/http2/writesched_random_test.go
function TestRandomScheduler (line 9) | func TestRandomScheduler(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/writesched_test.go
function makeWriteNonStreamRequest (line 14) | func makeWriteNonStreamRequest() FrameWriteRequest {
function makeWriteHeadersRequest (line 18) | func makeWriteHeadersRequest(streamID uint32) FrameWriteRequest {
function checkConsume (line 23) | func checkConsume(wr FrameWriteRequest, nbytes int32, want []FrameWriteR...
function TestFrameWriteRequestNonData (line 40) | func TestFrameWriteRequestNonData(t *testing.T) {
function TestFrameWriteRequestData (line 52) | func TestFrameWriteRequestData(t *testing.T) {
function TestFrameWriteRequest_StreamID (line 119) | func TestFrameWriteRequest_StreamID(t *testing.T) {
FILE: vendor/golang.org/x/net/http2/z_spec_test.go
function loadSpec (line 30) | func loadSpec() {
function covers (line 41) | func covers(sec, sentences string) {
type specPart (line 46) | type specPart struct
method Less (line 51) | func (ss specPart) Less(oo specPart) bool {
type bySpecSection (line 78) | type bySpecSection
method Len (line 80) | func (a bySpecSection) Len() int { return len(a) }
method Less (line 81) | func (a bySpecSection) Less(i, j int) bool { return a[i].Less(a[j]) }
method Swap (line 82) | func (a bySpecSection) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
type specCoverage (line 84) | type specCoverage struct
method readSection (line 97) | func (sc specCoverage) readSection(sec []int) {
method readXRef (line 142) | func (sc specCoverage) readXRef(se xml.StartElement) []byte {
method addSentences (line 222) | func (sc specCoverage) addSentences(sec string, sentence string) {
method cover (line 228) | func (sc specCoverage) cover(sec string, sentence string) {
function joinSection (line 89) | func joinSection(sec []int) string {
function skipElement (line 193) | func skipElement(s xml.StartElement) bool {
function readSpecCov (line 214) | func readSpecCov(r io.Reader) specCoverage {
function parseSentences (line 241) | func parseSentences(sens string) []string {
function TestSpecParseSentences (line 257) | func TestSpecParseSentences(t *testing.T) {
function TestSpecCoverage (line 283) | func TestSpecCoverage(t *testing.T) {
function attrSig (line 317) | func attrSig(se xml.StartElement) string {
function attrValue (line 330) | func attrValue(se xml.StartElement, attr string) string {
function TestSpecPartLess (line 339) | func TestSpecPartLess(t *testing.T) {
FILE: vendor/golang.org/x/net/icmp/dstunreach.go
type DstUnreach (line 9) | type DstUnreach struct
method Len (line 15) | func (p *DstUnreach) Len(proto int) int {
method Marshal (line 24) | func (p *DstUnreach) Marshal(proto int) ([]byte, error) {
function parseDstUnreach (line 30) | func parseDstUnreach(proto int, b []byte) (MessageBody, error) {
FILE: vendor/golang.org/x/net/icmp/echo.go
type Echo (line 10) | type Echo struct
method Len (line 17) | func (p *Echo) Len(proto int) int {
method Marshal (line 25) | func (p *Echo) Marshal(proto int) ([]byte, error) {
function parseEcho (line 34) | func parseEcho(proto int, b []byte) (MessageBody, error) {
FILE: vendor/golang.org/x/net/icmp/endpoint.go
type PacketConn (line 21) | type PacketConn struct
method ok (line 27) | func (c *PacketConn) ok() bool { return c != nil && c.c != nil }
method IPv4PacketConn (line 31) | func (c *PacketConn) IPv4PacketConn() *ipv4.PacketConn {
method IPv6PacketConn (line 40) | func (c *PacketConn) IPv6PacketConn() *ipv6.PacketConn {
method ReadFrom (line 48) | func (c *PacketConn) ReadFrom(b []byte) (int, net.Addr, error) {
method WriteTo (line 65) | func (c *PacketConn) WriteTo(b []byte, dst net.Addr) (int, error) {
method Close (line 73) | func (c *PacketConn) Close() error {
method LocalAddr (line 81) | func (c *PacketConn) LocalAddr() net.Addr {
method SetDeadline (line 90) | func (c *PacketConn) SetDeadline(t time.Time) error {
method SetReadDeadline (line 99) | func (c *PacketConn) SetReadDeadline(t time.Time) error {
method SetWriteDeadline (line 108) | func (c *PacketConn) SetWriteDeadline(t time.Time) error {
FILE: vendor/golang.org/x/net/icmp/example_test.go
function ExamplePacketConn_nonPrivilegedPing (line 17) | func ExamplePacketConn_nonPrivilegedPing() {
FILE: vendor/golang.org/x/net/icmp/extension.go
type Extension (line 10) | type Extension interface
constant extensionVersion (line 20) | extensionVersion = 2
function validExtensionHeader (line 22) | func validExtensionHeader(b []byte) bool {
function parseExtensions (line 41) | func parseExtensions(b []byte, l int) ([]Extension, int, error) {
FILE: vendor/golang.org/x/net/icmp/extension_test.go
function TestMarshalAndParseExtension (line 168) | func TestMarshalAndParseExtension(t *testing.T) {
function TestParseInterfaceName (line 252) | func TestParseInterfaceName(t *testing.T) {
FILE: vendor/golang.org/x/net/icmp/helper_posix.go
function sockaddr (line 15) | func sockaddr(family int, address string) (syscall.Sockaddr, error) {
function zoneToUint32 (line 53) | func zoneToUint32(zone string) uint32 {
function last (line 67) | func last(s string, b byte) int {
FILE: vendor/golang.org/x/net/icmp/interface.go
constant classInterfaceInfo (line 16) | classInterfaceInfo = 2
constant afiIPv4 (line 18) | afiIPv4 = 1
constant afiIPv6 (line 19) | afiIPv6 = 2
constant attrMTU (line 23) | attrMTU = 1 << iota
constant attrName (line 24) | attrName
constant attrIPAddr (line 25) | attrIPAddr
constant attrIfIndex (line 26) | attrIfIndex
type InterfaceInfo (line 30) | type InterfaceInfo struct
method nameLen (line 37) | func (ifi *InterfaceInfo) nameLen() int {
method attrsAndLen (line 45) | func (ifi *InterfaceInfo) attrsAndLen(proto int) (attrs, l int) {
method Len (line 77) | func (ifi *InterfaceInfo) Len(proto int) int {
method Marshal (line 83) | func (ifi *InterfaceInfo) Marshal(proto int) ([]byte, error) {
method marshal (line 92) | func (ifi *InterfaceInfo) marshal(proto int, b []byte, attrs, l int) e...
method marshalIfIndex (line 114) | func (ifi *InterfaceInfo) marshalIfIndex(proto int, b []byte) []byte {
method parseIfIndex (line 119) | func (ifi *InterfaceInfo) parseIfIndex(b []byte) ([]byte, error) {
method marshalIPAddr (line 127) | func (ifi *InterfaceInfo) marshalIPAddr(proto int, b []byte) []byte {
method parseIPAddr (line 141) | func (ifi *InterfaceInfo) parseIPAddr(b []byte) ([]byte, error) {
method marshalName (line 166) | func (ifi *InterfaceInfo) marshalName(proto int, b []byte) []byte {
method parseName (line 173) | func (ifi *InterfaceInfo) parseName(b []byte) ([]byte, error) {
method marshalMTU (line 187) | func (ifi *InterfaceInfo) marshalMTU(proto int, b []byte) []byte {
method parseMTU (line 192) | func (ifi *InterfaceInfo) parseMTU(b []byte) ([]byte, error) {
function parseInterfaceInfo (line 200) | func parseInterfaceInfo(b []byte) (Extension, error) {
FILE: vendor/golang.org/x/net/icmp/ipv4.go
function ParseIPv4Header (line 22) | func ParseIPv4Header(b []byte) (*ipv4.Header, error) {
FILE: vendor/golang.org/x/net/icmp/ipv4_test.go
type ipv4HeaderTest (line 18) | type ipv4HeaderTest struct
function TestParseIPv4Header (line 57) | func TestParseIPv4Header(t *testing.T) {
FILE: vendor/golang.org/x/net/icmp/ipv6.go
constant ipv6PseudoHeaderLen (line 13) | ipv6PseudoHeaderLen = 2*net.IPv6len + 8
function IPv6PseudoHeader (line 17) | func IPv6PseudoHeader(src, dst net.IP) []byte {
FILE: vendor/golang.org/x/net/icmp/listen_posix.go
constant sysIP_STRIPHDR (line 20) | sysIP_STRIPHDR = 0x17
function ListenPacket (line 44) | func ListenPacket(network, address string) (*PacketConn, error) {
FILE: vendor/golang.org/x/net/icmp/listen_stub.go
function ListenPacket (line 31) | func ListenPacket(network, address string) (*PacketConn, error) {
FILE: vendor/golang.org/x/net/icmp/message.go
function checksum (line 38) | func checksum(b []byte) uint16 {
type Type (line 53) | type Type interface
type Message (line 58) | type Message struct
method Marshal (line 74) | func (m *Message) Marshal(psh []byte) ([]byte, error) {
function ParseMessage (line 129) | func ParseMessage(proto int, b []byte) (*Message, error) {
FILE: vendor/golang.org/x/net/icmp/message_test.go
function TestMarshalAndParseMessageForIPv4 (line 53) | func TestMarshalAndParseMessageForIPv4(t *testing.T) {
function TestMarshalAndParseMessageForIPv6 (line 114) | func TestMarshalAndParseMessageForIPv6(t *testing.T) {
FILE: vendor/golang.org/x/net/icmp/messagebody.go
type MessageBody (line 8) | type MessageBody interface
type DefaultMessageBody (line 19) | type DefaultMessageBody struct
method Len (line 24) | func (p *DefaultMessageBody) Len(proto int) int {
method Marshal (line 32) | func (p *DefaultMessageBody) Marshal(proto int) ([]byte, error) {
function parseDefaultMessageBody (line 37) | func parseDefaultMessageBody(proto int, b []byte) (MessageBody, error) {
FILE: vendor/golang.org/x/net/icmp/mpls.go
type MPLSLabel (line 10) | type MPLSLabel struct
constant classMPLSLabelStack (line 18) | classMPLSLabelStack = 1
constant typeIncomingMPLSLabelStack (line 19) | typeIncomingMPLSLabelStack = 1
type MPLSLabelStack (line 23) | type MPLSLabelStack struct
method Len (line 30) | func (ls *MPLSLabelStack) Len(proto int) int {
method Marshal (line 35) | func (ls *MPLSLabelStack) Marshal(proto int) ([]byte, error) {
method marshal (line 43) | func (ls *MPLSLabelStack) marshal(proto int, b []byte) error {
function parseMPLSLabelStack (line 60) | func parseMPLSLabelStack(b []byte) (Extension, error) {
FILE: vendor/golang.org/x/net/icmp/multipart.go
function multipartMessageBodyDataLen (line 13) | func multipartMessageBodyDataLen(proto int, b []byte, exts []Extension) ...
function multipartMessageOrigDatagramLen (line 30) | func multipartMessageOrigDatagramLen(proto int, b []byte) int {
function marshalMultipartMessageBody (line 53) | func marshalMultipartMessageBody(proto int, data []byte, exts []Extensio...
function parseMultipartMessageBody (line 91) | func parseMultipartMessageBody(proto int, b []byte) ([]byte, []Extension...
FILE: vendor/golang.org/x/net/icmp/multipart_test.go
function TestMarshalAndParseMultipartMessageForIPv4 (line 131) | func TestMarshalAndParseMultipartMessageForIPv4(t *testing.T) {
function TestMarshalAndParseMultipartMessageForIPv6 (line 258) | func TestMarshalAndParseMultipartMessageForIPv6(t *testing.T) {
function dumpExtensions (line 298) | func dumpExtensions(i int, gotExts, wantExts []icmp.Extension) string {
function TestMultipartMessageBodyLen (line 436) | func TestMultipartMessageBodyLen(t *testing.T) {
FILE: vendor/golang.org/x/net/icmp/packettoobig.go
type PacketTooBig (line 10) | type PacketTooBig struct
method Len (line 16) | func (p *PacketTooBig) Len(proto int) int {
method Marshal (line 24) | func (p *PacketTooBig) Marshal(proto int) ([]byte, error) {
function parsePacketTooBig (line 32) | func parsePacketTooBig(proto int, b []byte) (MessageBody, error) {
FILE: vendor/golang.org/x/net/icmp/paramprob.go
type ParamProb (line 13) | type ParamProb struct
method Len (line 20) | func (p *ParamProb) Len(proto int) int {
method Marshal (line 29) | func (p *ParamProb) Marshal(proto int) ([]byte, error) {
function parseParamProb (line 45) | func parseParamProb(proto int, b []byte) (MessageBody, error) {
FILE: vendor/golang.org/x/net/icmp/ping_test.go
function googleAddr (line 24) | func googleAddr(c *icmp.PacketConn, protocol int) (net.Addr, error) {
type pingTest (line 55) | type pingTest struct
function TestNonPrivilegedPing (line 67) | func TestNonPrivilegedPing(t *testing.T) {
function TestPrivilegedPing (line 92) | func TestPrivilegedPing(t *testing.T) {
function doPing (line 107) | func doPing(tt pingTest, seq int) error {
function TestConcurrentNonPrivilegedListenPacket (line 169) | func TestConcurrentNonPrivilegedListenPacket(t *testing.T) {
FILE: vendor/golang.org/x/net/icmp/sys_freebsd.go
function init (line 9) | func init() {
FILE: vendor/golang.org/x/net/icmp/timeexceeded.go
type TimeExceeded (line 8) | type TimeExceeded struct
method Len (line 14) | func (p *TimeExceeded) Len(proto int) int {
method Marshal (line 23) | func (p *TimeExceeded) Marshal(proto int) ([]byte, error) {
function parseTimeExceeded (line 28) | func parseTimeExceeded(proto int, b []byte) (MessageBody, error) {
FILE: vendor/golang.org/x/net/idna/example_test.go
function ExampleProfile (line 15) | func ExampleProfile() {
function ExampleNew (line 41) | func ExampleNew() {
FILE: vendor/golang.org/x/net/idna/idna.go
function ToASCII (line 44) | func ToASCII(s string) (string, error) {
function ToUnicode (line 49) | func ToUnicode(s string) (string, error) {
type Option (line 54) | type Option
function Transitional (line 61) | func Transitional(transitional bool) Option {
function VerifyDNSLength (line 67) | func VerifyDNSLength(verify bool) Option {
function RemoveLeadingDots (line 76) | func RemoveLeadingDots(remove bool) Option {
function ValidateLabels (line 83) | func ValidateLabels(enable bool) Option {
function StrictDomainName (line 104) | func StrictDomainName(use bool) Option {
function BidiRule (line 117) | func BidiRule() Option {
function ValidateForRegistration (line 123) | func ValidateForRegistration() Option {
function MapForLookup (line 141) | func MapForLookup() Option {
type options (line 149) | type options struct
type Profile (line 171) | type Profile struct
method ToASCII (line 199) | func (p *Profile) ToASCII(s string) (string, error) {
method ToUnicode (line 207) | func (p *Profile) ToUnicode(s string) (string, error) {
method String (line 215) | func (p *Profile) String() string {
method process (line 301) | func (p *Profile) process(s string, toASCII bool) (string, error) {
method simplify (line 554) | func (p *Profile) simplify(cat category) category {
method validateLabel (line 659) | func (p *Profile) validateLabel(s string) (err error) {
function apply (line 175) | func apply(o *options, opts []Option) {
function New (line 189) | func New(o ...Option) *Profile {
type labelError (line 285) | type labelError struct
method code (line 287) | func (e labelError) code() string { return e.code_ }
method Error (line 288) | func (e labelError) Error() string {
type runeError (line 292) | type runeError
method code (line 294) | func (e runeError) code() string { return "P1" }
method Error (line 295) | func (e runeError) Error() string {
function normalize (line 392) | func normalize(p *Profile, s string) (mapped string, isBidi bool, err er...
function validateRegistration (line 401) | func validateRegistration(p *Profile, s string) (idem string, bidi bool,...
method isBidi (line 423) | func (c info) isBidi(s string) bool {
function validateAndMap (line 437) | func validateAndMap(p *Profile, s string) (vm string, bidi bool, err err...
type labelIter (line 492) | type labelIter struct
method reset (line 500) | func (l *labelIter) reset() {
method done (line 506) | func (l *labelIter) done() bool {
method result (line 510) | func (l *labelIter) result() string {
method label (line 517) | func (l *labelIter) label() string {
method next (line 530) | func (l *labelIter) next() {
method set (line 544) | func (l *labelIter) set(s string) {
constant acePrefix (line 552) | acePrefix = "xn--"
function validateFromPunycode (line 579) | func validateFromPunycode(p *Profile, s string) error {
constant zwnj (line 596) | zwnj = "\u200c"
constant zwj (line 597) | zwj = "\u200d"
type joinState (line 600) | type joinState
constant stateStart (line 603) | stateStart joinState = iota
constant stateVirama (line 604) | stateVirama
constant stateBefore (line 605) | stateBefore
constant stateBeforeVirama (line 606) | stateBeforeVirama
constant stateAfter (line 607) | stateAfter
constant stateFAIL (line 608) | stateFAIL
function ascii (line 710) | func ascii(s string) bool {
FILE: vendor/golang.org/x/net/idna/idna_test.go
function TestIDNA (line 26) | func TestIDNA(t *testing.T) {
function TestIDNASeparators (line 42) | func TestIDNASeparators(t *testing.T) {
FILE: vendor/golang.org/x/net/idna/punycode.go
constant base (line 22) | base int32 = 36
constant damp (line 23) | damp int32 = 700
constant initialBias (line 24) | initialBias int32 = 72
constant initialN (line 25) | initialN int32 = 128
constant skew (line 26) | skew int32 = 38
constant tmax (line 27) | tmax int32 = 26
constant tmin (line 28) | tmin int32 = 1
function punyError (line 31) | func punyError(s string) error { return &labelError{s, "A3"} }
function decode (line 34) | func decode(encoded string) (string, error) {
function encode (line 101) | func encode(prefix, s string) (string, error) {
function decodeDigit (line 167) | func decodeDigit(x byte) (digit int32, ok bool) {
function encodeDigit (line 179) | func encodeDigit(digit int32) byte {
function adapt (line 190) | func adapt(delta, numPoints int32, firstTime bool) int32 {
FILE: vendor/golang.org/x/net/idna/punycode_test.go
function TestPunycode (line 154) | func TestPunycode(t *testing.T) {
function TestPunycodeErrors (line 182) | func TestPunycodeErrors(t *testing.T) {
FILE: vendor/golang.org/x/net/idna/tables.go
constant UnicodeVersion (line 6) | UnicodeVersion = "10.0.0"
type idnaTrie (line 548) | type idnaTrie struct
method lookup (line 380) | func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) {
method lookupUnsafe (line 442) | func (t *idnaTrie) lookupUnsafe(s []byte) uint16 {
method lookupString (line 465) | func (t *idnaTrie) lookupString(s string) (v uint16, sz int) {
method lookupStringUnsafe (line 527) | func (t *idnaTrie) lookupStringUnsafe(s string) uint16 {
method lookupValue (line 555) | func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 {
function newIdnaTrie (line 550) | func newIdnaTrie(i int) *idnaTrie {
FILE: vendor/golang.org/x/net/idna/trie.go
method appendMapping (line 11) | func (c info) appendMapping(b []byte, s string) []byte {
type valueRange (line 32) | type valueRange struct
type sparseBlocks (line 37) | type sparseBlocks struct
method lookup (line 54) | func (t *sparseBlocks) lookup(n uint32, b byte) uint16 {
FILE: vendor/golang.org/x/net/idna/trieval.go
type info (line 40) | type info
method isMapped (line 94) | func (c info) isMapped() bool {
method category (line 98) | func (c info) category() category {
method joinType (line 106) | func (c info) joinType() info {
method isModifier (line 113) | func (c info) isModifier() bool {
method isViramaModifier (line 117) | func (c info) isViramaModifier() bool {
constant catSmallMask (line 43) | catSmallMask = 0x3
constant catBigMask (line 44) | catBigMask = 0xF8
constant indexShift (line 45) | indexShift = 3
constant xorBit (line 46) | xorBit = 0x4
constant inlineXOR (line 47) | inlineXOR = 0xE000
constant joinShift (line 49) | joinShift = 8
constant joinMask (line 50) | joinMask = 0x07
constant attributesMask (line 53) | attributesMask = 0x1800
constant viramaModifier (line 54) | viramaModifier = 0x1800
constant modifier (line 55) | modifier = 0x1000
constant rtl (line 56) | rtl = 0x0800
constant mayNeedNorm (line 58) | mayNeedNorm = 0x2000
type category (line 62) | type category
constant unknown (line 65) | unknown category = 0
constant mapped (line 66) | mapped category = 1
constant disallowedSTD3Mapped (line 67) | disallowedSTD3Mapped category = 2
constant deviation (line 68) | deviation category = 3
constant valid (line 72) | valid category = 0x08
constant validNV8 (line 73) | validNV8 category = 0x18
constant validXV8 (line 74) | validXV8 category = 0x28
constant disallowed (line 75) | disallowed category = 0x40
constant disallowedSTD3Valid (line 76) | disallowedSTD3Valid category = 0x80
constant ignored (line 77) | ignored category = 0xC0
constant joiningL (line 82) | joiningL = (iota + 1)
constant joiningD (line 83) | joiningD
constant joiningT (line 84) | joiningT
constant joiningR (line 85) | joiningR
constant joinZWJ (line 88) | joinZWJ
constant joinZWNJ (line 89) | joinZWNJ
constant joinVirama (line 90) | joinVirama
constant numJoinTypes (line 91) | numJoinTypes
FILE: vendor/golang.org/x/net/internal/iana/const.go
constant DiffServCS0 (line 9) | DiffServCS0 = 0x0
constant DiffServCS1 (line 10) | DiffServCS1 = 0x20
constant DiffServCS2 (line 11) | DiffServCS2 = 0x40
constant DiffServCS3 (line 12) | DiffServCS3 = 0x60
constant DiffServCS4 (line 13) | DiffServCS4 = 0x80
constant DiffServCS5 (line 14) | DiffServCS5 = 0xa0
constant DiffServCS6 (line 15) | DiffServCS6 = 0xc0
constant DiffServCS7 (line 16) | DiffServCS7 = 0xe0
constant DiffServAF11 (line 17) | DiffServAF11 = 0x28
constant DiffServAF12 (line 18) | DiffServAF12 = 0x30
constant DiffServAF13 (line 19) | DiffServAF13 = 0x38
constant DiffServAF21 (line 20) | DiffServAF21 = 0x48
constant DiffServAF22 (line 21) | DiffServAF22 = 0x50
constant DiffServAF23 (line 22) | DiffServAF23 = 0x58
constant DiffServAF31 (line 23) | DiffServAF31 = 0x68
constant DiffServAF32 (line 24) | DiffServAF32 = 0x70
constant DiffServAF33 (line 25) | DiffServAF33 = 0x78
constant DiffServAF41 (line 26) | DiffServAF41 = 0x88
constant DiffServAF42 (line 27) | DiffServAF42 = 0x90
constant DiffServAF43 (line 28) | DiffServAF43 = 0x98
constant DiffServEF (line 29) | DiffServEF = 0xb8
constant DiffServVOICEADMIT (line 30) | DiffServVOICEADMIT = 0xb0
constant NotECNTransport (line 35) | NotECNTransport = 0x0
constant ECNTransport1 (line 36) | ECNTransport1 = 0x1
constant ECNTransport0 (line 37) | ECNTransport0 = 0x2
constant CongestionExperienced (line 38) | CongestionExperienced = 0x3
constant ProtocolIP (line 43) | ProtocolIP = 0
constant ProtocolHOPOPT (line 44) | ProtocolHOPOPT = 0
constant ProtocolICMP (line 45) | ProtocolICMP = 1
constant ProtocolIGMP (line 46) | ProtocolIGMP = 2
constant ProtocolGGP (line 47) | ProtocolGGP = 3
constant ProtocolIPv4 (line 48) | ProtocolIPv4 = 4
constant ProtocolST (line 49) | ProtocolST = 5
constant ProtocolTCP (line 50) | ProtocolTCP = 6
constant ProtocolCBT (line 51) | ProtocolCBT = 7
constant ProtocolEGP (line 52) | ProtocolEGP = 8
constant ProtocolIGP (line 53) | ProtocolIGP = 9
constant ProtocolBBNRCCMON (line 54) | ProtocolBBNRCCMON = 10
constant ProtocolNVPII (line 55) | ProtocolNVPII = 11
constant ProtocolPUP (line 56) | ProtocolPUP = 12
constant ProtocolEMCON (line 57) | ProtocolEMCON = 14
constant ProtocolXNET (line 58) | ProtocolXNET = 15
constant ProtocolCHAOS (line 59) | ProtocolCHAOS = 16
constant ProtocolUDP (line 60) | ProtocolUDP = 17
constant ProtocolMUX (line 61) | ProtocolMUX = 18
constant ProtocolDCNMEAS (line 62) | ProtocolDCNMEAS = 19
constant ProtocolHMP (line 63) | ProtocolHMP = 20
constant ProtocolPRM (line 64) | ProtocolPRM = 21
constant ProtocolXNSIDP (line 65) | ProtocolXNSIDP = 22
constant ProtocolTRUNK1 (line 66) | ProtocolTRUNK1 = 23
constant ProtocolTRUNK2 (line 67) | ProtocolTRUNK2 = 24
constant ProtocolLEAF1 (line 68) | ProtocolLEAF1 = 25
constant ProtocolLEAF2 (line 69) | ProtocolLEAF2 = 26
constant ProtocolRDP (line 70) | ProtocolRDP = 27
constant ProtocolIRTP (line 71) | ProtocolIRTP = 28
constant ProtocolISOTP4 (line 72) | ProtocolISOTP4 = 29
constant ProtocolNETBLT (line 73) | ProtocolNETBLT = 30
constant ProtocolMFENSP (line 74) | ProtocolMFENSP = 31
constant ProtocolMERITINP (line 75) | ProtocolMERITINP = 32
constant ProtocolDCCP (line 76) | ProtocolDCCP = 33
constant Protocol3PC (line 77) | Protocol3PC = 34
constant ProtocolIDPR (line 78) | ProtocolIDPR = 35
constant ProtocolXTP (line 79) | ProtocolXTP = 36
constant ProtocolDDP (line 80) | ProtocolDDP = 37
constant ProtocolIDPRCMTP (line 81) | ProtocolIDPRCMTP = 38
constant ProtocolTPPP (line 82) | ProtocolTPPP = 39
constant ProtocolIL (line 83) | ProtocolIL = 40
constant ProtocolIPv6 (line 84) | ProtocolIPv6 = 41
constant ProtocolSDRP (line 85) | ProtocolSDRP = 42
constant ProtocolIPv6Route (line 86) | ProtocolIPv6Route = 43
constant ProtocolIPv6Frag (line 87) | ProtocolIPv6Frag = 44
constant ProtocolIDRP (line 88) | ProtocolIDRP = 45
constant ProtocolRSVP (line 89) | ProtocolRSVP = 46
constant ProtocolGRE (line 90) | ProtocolGRE = 47
constant ProtocolDSR (line 91) | ProtocolDSR = 48
constant ProtocolBNA (line 92) | ProtocolBNA = 49
constant ProtocolESP (line 93) | ProtocolESP = 50
constant ProtocolAH (line 94) | ProtocolAH = 51
constant ProtocolINLSP (line 95) | ProtocolINLSP = 52
constant ProtocolNARP (line 96) | ProtocolNARP = 54
constant ProtocolMOBILE (line 97) | ProtocolMOBILE = 55
constant ProtocolTLSP (line 98) | ProtocolTLSP = 56
constant ProtocolSKIP (line 99) | ProtocolSKIP = 57
constant ProtocolIPv6ICMP (line 100) | ProtocolIPv6ICMP = 58
constant ProtocolIPv6NoNxt (line 101) | ProtocolIPv6NoNxt = 59
constant ProtocolIPv6Opts (line 102) | ProtocolIPv6Opts = 60
constant ProtocolCFTP (line 103) | ProtocolCFTP = 62
constant ProtocolSATEXPAK (line 104) | ProtocolSATEXPAK = 64
constant ProtocolKRYPTOLAN (line 105) | ProtocolKRYPTOLAN = 65
constant ProtocolRVD (line 106) | ProtocolRVD = 66
constant ProtocolIPPC (line 107) | ProtocolIPPC = 67
constant ProtocolSATMON (line 108) | ProtocolSATMON = 69
constant ProtocolVISA (line 109) | ProtocolVISA = 70
constant ProtocolIPCV (line 110) | ProtocolIPCV = 71
constant ProtocolCPNX (line 111) | ProtocolCPNX = 72
constant ProtocolCPHB (line 112) | ProtocolCPHB = 73
constant ProtocolWSN (line 113) | ProtocolWSN = 74
constant ProtocolPVP (line 114) | ProtocolPVP = 75
constant ProtocolBRSATMON (line 115) | ProtocolBRSATMON = 76
constant ProtocolSUNND (line 116) | ProtocolSUNND = 77
constant ProtocolWBMON (line 117) | ProtocolWBMON = 78
constant ProtocolWBEXPAK (line 118) | ProtocolWBEXPAK = 79
constant ProtocolISOIP (line 119) | ProtocolISOIP = 80
constant ProtocolVMTP (line 120) | ProtocolVMTP = 81
constant ProtocolSECUREVMTP (line 121) | ProtocolSECUREVMTP = 82
constant ProtocolVINES (line 122) | ProtocolVINES = 83
constant ProtocolTTP (line 123) | ProtocolTTP = 84
constant ProtocolIPTM (line 124) | ProtocolIPTM = 84
constant ProtocolNSFNETIGP (line 125) | ProtocolNSFNETIGP = 85
constant ProtocolDGP (line 126) | ProtocolDGP = 86
constant ProtocolTCF (line 127) | ProtocolTCF = 87
constant ProtocolEIGRP (line 128) | ProtocolEIGRP = 88
constant ProtocolOSPFIGP (line 129) | ProtocolOSPFIGP = 89
constant ProtocolSpriteRPC (line 130) | ProtocolSpriteRPC = 90
constant ProtocolLARP (line 131) | ProtocolLARP = 91
constant ProtocolMTP (line 132) | ProtocolMTP = 92
constant ProtocolAX25 (line 133) | ProtocolAX25 = 93
constant ProtocolIPIP (line 134) | ProtocolIPIP = 94
constant ProtocolSCCSP (line 135) | ProtocolSCCSP = 96
constant ProtocolETHERIP (line 136) | ProtocolETHERIP = 97
constant ProtocolENCAP (line 137) | ProtocolENCAP = 98
constant ProtocolGMTP (line 138) | ProtocolGMTP = 100
constant ProtocolIFMP (line 139) | ProtocolIFMP = 101
constant ProtocolPNNI (line 140) | ProtocolPNNI = 102
constant ProtocolPIM (line 141) | ProtocolPIM = 103
constant ProtocolARIS (line 142) | ProtocolARIS = 104
constant ProtocolSCPS (line 143) | ProtocolSCPS = 105
constant ProtocolQNX (line 144) | ProtocolQNX = 106
constant ProtocolAN (line 145) | ProtocolAN = 107
constant ProtocolIPComp (line 146) | ProtocolIPComp = 108
constant ProtocolSNP (line 147) | ProtocolSNP = 109
constant ProtocolCompaqPeer (line 148) | ProtocolCompaqPeer = 110
constant ProtocolIPXinIP (line 149) | ProtocolIPXinIP = 111
constant ProtocolVRRP (line 150) | ProtocolVRRP = 112
constant ProtocolPGM (line 151) | ProtocolPGM = 113
constant ProtocolL2TP (line 152) | ProtocolL2TP = 115
constant ProtocolDDX (line 153) | ProtocolDDX = 116
constant ProtocolIATP (line 154) | ProtocolIATP = 117
constant ProtocolSTP (line 155) | ProtocolSTP = 118
constant ProtocolSRP (line 156) | ProtocolSRP = 119
constant ProtocolUTI (line 157) | ProtocolUTI = 120
constant ProtocolSMP (line 158) | ProtocolSMP = 121
constant ProtocolPTP (line 159) | ProtocolPTP = 123
constant ProtocolISIS (line 160) | ProtocolISIS = 124
constant ProtocolFIRE (line 161) | ProtocolFIRE = 125
constant ProtocolCRTP (line 162) | ProtocolCRTP = 126
constant ProtocolCRUDP (line 163) | ProtocolCRUDP = 127
constant ProtocolSSCOPMCE (line 164) | ProtocolSSCOPMCE = 128
constant ProtocolIPLT (line 165) | ProtocolIPLT = 129
constant ProtocolSPS (line 166) | ProtocolSPS = 130
constant ProtocolPIPE (line 167) | ProtocolPIPE = 131
constant ProtocolSCTP (line 168) | ProtocolSCTP = 132
constant ProtocolFC (line 169) | ProtocolFC = 133
constant ProtocolRSVPE2EIGNORE (line 170) | ProtocolRSVPE2EIGNORE = 134
constant ProtocolMobilityHeader (line 171) | ProtocolMobilityHeader = 135
constant ProtocolUDPLite (line 172) | ProtocolUDPLite = 136
constant ProtocolMPLSinIP (line 173) | ProtocolMPLSinIP = 137
constant ProtocolMANET (line 174) | ProtocolMANET = 138
constant ProtocolHIP (line 175) | ProtocolHIP = 139
constant ProtocolShim6 (line 176) | ProtocolShim6 = 140
constant ProtocolWESP (line 177) | ProtocolWESP = 141
constant ProtocolROHC (line 178) | ProtocolROHC = 142
constant ProtocolReserved (line 179) | ProtocolReserved = 255
FILE: vendor/golang.org/x/net/internal/iana/gen.go
function main (line 44) | func main() {
function parseDSCPRegistry (line 78) | func parseDSCPRegistry(w io.Writer, r io.Reader) error {
type dscpRegistry (line 95) | type dscpRegistry struct
method escape (line 117) | func (drr *dscpRegistry) escape() []canonDSCPRecord {
type canonDSCPRecord (line 111) | type canonDSCPRecord struct
function parseTOSTCByte (line 139) | func parseTOSTCByte(w io.Writer, r io.Reader) error {
type tosTCByte (line 156) | type tosTCByte struct
method escape (line 174) | func (ttb *tosTCByte) escape() []canonTOSTCByteRecord {
type canonTOSTCByteRecord (line 168) | type canonTOSTCByteRecord struct
function parseProtocolNumbers (line 205) | func parseProtocolNumbers(w io.Writer, r io.Reader) error {
type protocolNumbers (line 234) | type protocolNumbers struct
method escape (line 254) | func (pn *protocolNumbers) escape() []canonProtocolRecord {
type canonProtocolRecord (line 247) | type canonProtocolRecord struct
FILE: vendor/golang.org/x/net/internal/nettest/helper_bsd.go
function init (line 18) | func init() {
function supportsIPv6MulticastDeliveryOnLoopback (line 33) | func supportsIPv6MulticastDeliveryOnLoopback() bool {
function causesIPv6Crash (line 48) | func causesIPv6Crash() bool {
FILE: vendor/golang.org/x/net/internal/nettest/helper_nobsd.go
function supportsIPv6MulticastDeliveryOnLoopback (line 9) | func supportsIPv6MulticastDeliveryOnLoopback() bool {
function causesIPv6Crash (line 13) | func causesIPv6Crash() bool {
FILE: vendor/golang.org/x/net/internal/nettest/helper_posix.go
function protocolNotSupported (line 14) | func protocolNotSupported(err error) bool {
FILE: vendor/golang.org/x/net/internal/nettest/helper_stub.go
function maxOpenFiles (line 14) | func maxOpenFiles() int {
function supportsRawIPSocket (line 18) | func supportsRawIPSocket() (string, bool) {
function supportsIPv6MulticastDeliveryOnLoopback (line 22) | func supportsIPv6MulticastDeliveryOnLoopback() bool {
function causesIPv6Crash (line 26) | func causesIPv6Crash() bool {
function protocolNotSupported (line 30) | func protocolNotSupported(err error) bool {
FILE: vendor/golang.org/x/net/internal/nettest/helper_unix.go
function maxOpenFiles (line 16) | func maxOpenFiles() int {
function supportsRawIPSocket (line 24) | func supportsRawIPSocket() (string, bool) {
FILE: vendor/golang.org/x/net/internal/nettest/helper_windows.go
function maxOpenFiles (line 13) | func maxOpenFiles() int {
function supportsRawIPSocket (line 17) | func supportsRawIPSocket() (string, bool) {
function supportsIPv6MulticastDeliveryOnLoopback (line 36) | func supportsIPv6MulticastDeliveryOnLoopback() bool {
function causesIPv6Crash (line 40) | func causesIPv6Crash() bool {
FILE: vendor/golang.org/x/net/internal/nettest/interface.go
function IsMulticastCapable (line 11) | func IsMulticastCapable(network string, ifi *net.Interface) (net.IP, boo...
function RoutedInterface (line 27) | func RoutedInterface(network string, flags net.Flags) *net.Interface {
function hasRoutableIP (line 49) | func hasRoutableIP(network string, ifi *net.Interface) (net.IP, bool) {
function routableIP (line 69) | func routableIP(network string, ip net.IP) net.IP {
FILE: vendor/golang.org/x/net/internal/nettest/rlimit.go
constant defaultMaxOpenFiles (line 7) | defaultMaxOpenFiles = 256
function MaxOpenFiles (line 11) | func MaxOpenFiles() int { return maxOpenFiles() }
FILE: vendor/golang.org/x/net/internal/nettest/stack.go
function init (line 21) | func init() {
function SupportsIPv4 (line 34) | func SupportsIPv4() bool { return supportsIPv4 }
function SupportsIPv6 (line 38) | func SupportsIPv6() bool { return supportsIPv6 }
function SupportsRawIPSocket (line 42) | func SupportsRawIPSocket() (string, bool) {
function SupportsIPv6MulticastDeliveryOnLoopback (line 49) | func SupportsIPv6MulticastDeliveryOnLoopback() bool {
function ProtocolNotSupported (line 55) | func ProtocolNotSupported(err error) bool {
function TestableNetwork (line 61) | func TestableNetwork(network string) bool {
function NewLocalListener (line 85) | func NewLocalListener(network string) (net.Listener, error) {
function NewLocalPacketListener (line 113) | func NewLocalPacketListener(network string) (net.PacketConn, error) {
function localPath (line 138) | func localPath() string {
FILE: vendor/golang.org/x/net/internal/socket/cmsghdr.go
method len (line 9) | func (h *cmsghdr) len() int { return int(h.Len) }
method lvl (line 10) | func (h *cmsghdr) lvl() int { return int(h.Level) }
method typ (line 11) | func (h *cmsghdr) typ() int { return int(h.Type) }
FILE: vendor/golang.org/x/net/internal/socket/cmsghdr_bsd.go
method set (line 9) | func (h *cmsghdr) set(l, lvl, typ int) {
FILE: vendor/golang.org/x/net/internal/socket/cmsghdr_linux_32bit.go
method set (line 10) | func (h *cmsghdr) set(l, lvl, typ int) {
FILE: vendor/golang.org/x/net/internal/socket/cmsghdr_linux_64bit.go
method set (line 10) | func (h *cmsghdr) set(l, lvl, typ int) {
FILE: vendor/golang.org/x/net/internal/socket/cmsghdr_solaris_64bit.go
method set (line 10) | func (h *cmsghdr) set(l, lvl, typ int) {
FILE: vendor/golang.org/x/net/internal/socket/cmsghdr_stub.go
type cmsghdr (line 9) | type cmsghdr struct
method len (line 13) | func (h *cmsghdr) len() int { return 0 }
method lvl (line 14) | func (h *cmsghdr) lvl() int { return 0 }
method typ (line 15) | func (h *cmsghdr) typ() int { return 0 }
method set (line 17) | func (h *cmsghdr) set(l, lvl, typ int) {}
constant sizeofCmsghdr (line 11) | sizeofCmsghdr = 0
FILE: vendor/golang.org/x/net/internal/socket/defs_darwin.go
constant sysAF_UNSPEC (line 20) | sysAF_UNSPEC = C.AF_UNSPEC
constant sysAF_INET (line 21) | sysAF_INET = C.AF_INET
constant sysAF_INET6 (line 22) | sysAF_INET6 = C.AF_INET6
constant sysSOCK_RAW (line 24) | sysSOCK_RAW = C.SOCK_RAW
type iovec (line 27) | type iovec
type msghdr (line 29) | type msghdr
type cmsghdr (line 31) | type cmsghdr
type sockaddrInet (line 33) | type sockaddrInet
type sockaddrInet6 (line 35) | type sockaddrInet6
constant sizeofIovec (line 38) | sizeofIovec = C.sizeof_struct_iovec
constant sizeofMsghdr (line 39) | sizeofMsghdr = C.sizeof_struct_msghdr
constant sizeofCmsghdr (line 40) | sizeofCmsghdr = C.sizeof_struct_cmsghdr
constant sizeofSockaddrInet (line 42) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofSockaddrInet6 (line 43) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
FILE: vendor/golang.org/x/net/internal/socket/defs_dragonfly.go
constant sysAF_UNSPEC (line 20) | sysAF_UNSPEC = C.AF_UNSPEC
constant sysAF_INET (line 21) | sysAF_INET = C.AF_INET
constant sysAF_INET6 (line 22) | sysAF_INET6 = C.AF_INET6
constant sysSOCK_RAW (line 24) | sysSOCK_RAW = C.SOCK_RAW
type iovec (line 27) | type iovec
type msghdr (line 29) | type msghdr
type cmsghdr (line 31) | type cmsghdr
type sockaddrInet (line 33) | type sockaddrInet
type sockaddrInet6 (line 35) | type sockaddrInet6
constant sizeofIovec (line 38) | sizeofIovec = C.sizeof_struct_iovec
constant sizeofMsghdr (line 39) | sizeofMsghdr = C.sizeof_struct_msghdr
constant sizeofCmsghdr (line 40) | sizeofCmsghdr = C.sizeof_struct_cmsghdr
constant sizeofSockaddrInet (line 42) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofSockaddrInet6 (line 43) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
FILE: vendor/golang.org/x/net/internal/socket/defs_freebsd.go
constant sysAF_UNSPEC (line 20) | sysAF_UNSPEC = C.AF_UNSPEC
constant sysAF_INET (line 21) | sysAF_INET = C.AF_INET
constant sysAF_INET6 (line 22) | sysAF_INET6 = C.AF_INET6
constant sysSOCK_RAW (line 24) | sysSOCK_RAW = C.SOCK_RAW
type iovec (line 27) | type iovec
type msghdr (line 29) | type msghdr
type cmsghdr (line 31) | type cmsghdr
type sockaddrInet (line 33) | type sockaddrInet
type sockaddrInet6 (line 35) | type sockaddrInet6
constant sizeofIovec (line 38) | sizeofIovec = C.sizeof_struct_iovec
constant sizeofMsghdr (line 39) | sizeofMsghdr = C.sizeof_struct_msghdr
constant sizeofCmsghdr (line 40) | sizeofCmsghdr = C.sizeof_struct_cmsghdr
constant sizeofSockaddrInet (line 42) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofSockaddrInet6 (line 43) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
FILE: vendor/golang.org/x/net/internal/socket/defs_linux.go
constant sysAF_UNSPEC (line 22) | sysAF_UNSPEC = C.AF_UNSPEC
constant sysAF_INET (line 23) | sysAF_INET = C.AF_INET
constant sysAF_INET6 (line 24) | sysAF_INET6 = C.AF_INET6
constant sysSOCK_RAW (line 26) | sysSOCK_RAW = C.SOCK_RAW
type iovec (line 29) | type iovec
type msghdr (line 31) | type msghdr
type mmsghdr (line 33) | type mmsghdr
type cmsghdr (line 35) | type cmsghdr
type sockaddrInet (line 37) | type sockaddrInet
type sockaddrInet6 (line 39) | type sockaddrInet6
constant sizeofIovec (line 42) | sizeofIovec = C.sizeof_struct_iovec
constant sizeofMsghdr (line 43) | sizeofMsghdr = C.sizeof_struct_msghdr
constant sizeofMmsghdr (line 44) | sizeofMmsghdr = C.sizeof_struct_mmsghdr
constant sizeofCmsghdr (line 45) | sizeofCmsghdr = C.sizeof_struct_cmsghdr
constant sizeofSockaddrInet (line 47) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofSockaddrInet6 (line 48) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
FILE: vendor/golang.org/x/net/internal/socket/defs_netbsd.go
constant sysAF_UNSPEC (line 20) | sysAF_UNSPEC = C.AF_UNSPEC
constant sysAF_INET (line 21) | sysAF_INET = C.AF_INET
constant sysAF_INET6 (line 22) | sysAF_INET6 = C.AF_INET6
constant sysSOCK_RAW (line 24) | sysSOCK_RAW = C.SOCK_RAW
type iovec (line 27) | type iovec
type msghdr (line 29) | type msghdr
type mmsghdr (line 31) | type mmsghdr
type cmsghdr (line 33) | type cmsghdr
type sockaddrInet (line 35) | type sockaddrInet
type sockaddrInet6 (line 37) | type sockaddrInet6
constant sizeofIovec (line 40) | sizeofIovec = C.sizeof_struct_iovec
constant sizeofMsghdr (line 41) | sizeofMsghdr = C.sizeof_struct_msghdr
constant sizeofMmsghdr (line 42) | sizeofMmsghdr = C.sizeof_struct_mmsghdr
constant sizeofCmsghdr (line 43) | sizeofCmsghdr = C.sizeof_struct_cmsghdr
constant sizeofSockaddrInet (line 45) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofSockaddrInet6 (line 46) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
FILE: vendor/golang.org/x/net/internal/socket/defs_openbsd.go
constant sysAF_UNSPEC (line 20) | sysAF_UNSPEC = C.AF_UNSPEC
constant sysAF_INET (line 21) | sysAF_INET = C.AF_INET
constant sysAF_INET6 (line 22) | sysAF_INET6 = C.AF_INET6
constant sysSOCK_RAW (line 24) | sysSOCK_RAW = C.SOCK_RAW
type iovec (line 27) | type iovec
type msghdr (line 29) | type msghdr
type cmsghdr (line 31) | type cmsghdr
type sockaddrInet (line 33) | type sockaddrInet
type sockaddrInet6 (line 35) | type sockaddrInet6
constant sizeofIovec (line 38) | sizeofIovec = C.sizeof_struct_iovec
constant sizeofMsghdr (line 39) | sizeofMsghdr = C.sizeof_struct_msghdr
constant sizeofCmsghdr (line 40) | sizeofCmsghdr = C.sizeof_struct_cmsghdr
constant sizeofSockaddrInet (line 42) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofSockaddrInet6 (line 43) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
FILE: vendor/golang.org/x/net/internal/socket/defs_solaris.go
constant sysAF_UNSPEC (line 20) | sysAF_UNSPEC = C.AF_UNSPEC
constant sysAF_INET (line 21) | sysAF_INET = C.AF_INET
constant sysAF_INET6 (line 22) | sysAF_INET6 = C.AF_INET6
constant sysSOCK_RAW (line 24) | sysSOCK_RAW = C.SOCK_RAW
type iovec (line 27) | type iovec
type msghdr (line 29) | type msghdr
type cmsghdr (line 31) | type cmsghdr
type sockaddrInet (line 33) | type sockaddrInet
type sockaddrInet6 (line 35) | type sockaddrInet6
constant sizeofIovec (line 38) | sizeofIovec = C.sizeof_struct_iovec
constant sizeofMsghdr (line 39) | sizeofMsghdr = C.sizeof_struct_msghdr
constant sizeofCmsghdr (line 40) | sizeofCmsghdr = C.sizeof_struct_cmsghdr
constant sizeofSockaddrInet (line 42) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofSockaddrInet6 (line 43) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
FILE: vendor/golang.org/x/net/internal/socket/error_unix.go
function errnoErr (line 19) | func errnoErr(errno syscall.Errno) error {
FILE: vendor/golang.org/x/net/internal/socket/error_windows.go
function errnoErr (line 16) | func errnoErr(errno syscall.Errno) error {
FILE: vendor/golang.org/x/net/internal/socket/iovec_32bit.go
method set (line 12) | func (v *iovec) set(b []byte) {
FILE: vendor/golang.org/x/net/internal/socket/iovec_64bit.go
method set (line 12) | func (v *iovec) set(b []byte) {
FILE: vendor/golang.org/x/net/internal/socket/iovec_solaris_64bit.go
method set (line 12) | func (v *iovec) set(b []byte) {
FILE: vendor/golang.org/x/net/internal/socket/iovec_stub.go
type iovec (line 9) | type iovec struct
method set (line 11) | func (v *iovec) set(b []byte) {}
FILE: vendor/golang.org/x/net/internal/socket/mmsghdr_stub.go
type mmsghdr (line 11) | type mmsghdr struct
type mmsghdrs (line 13) | type mmsghdrs
method pack (line 15) | func (hs mmsghdrs) pack(ms []Message, parseFn func([]byte, string) (ne...
method unpack (line 19) | func (hs mmsghdrs) unpack(ms []Message, parseFn func([]byte, string) (...
FILE: vendor/golang.org/x/net/internal/socket/mmsghdr_unix.go
type mmsghdrs (line 11) | type mmsghdrs
method pack (line 13) | func (hs mmsghdrs) pack(ms []Message, parseFn func([]byte, string) (ne...
method unpack (line 28) | func (hs mmsghdrs) unpack(ms []Message, parseFn func([]byte, string) (...
FILE: vendor/golang.org/x/net/internal/socket/msghdr_bsd.go
method pack (line 11) | func (h *msghdr) pack(vs []iovec, bs [][]byte, oob []byte, sa []byte) {
method name (line 26) | func (h *msghdr) name() []byte {
method controllen (line 33) | func (h *msghdr) controllen() int {
method flags (line 37) | func (h *msghdr) flags() int {
FILE: vendor/golang.org/x/net/internal/socket/msghdr_bsdvar.go
method setIov (line 9) | func (h *msghdr) setIov(vs []iovec) {
FILE: vendor/golang.org/x/net/internal/socket/msghdr_linux.go
method pack (line 9) | func (h *msghdr) pack(vs []iovec, bs [][]byte, oob []byte, sa []byte) {
method name (line 23) | func (h *msghdr) name() []byte {
method controllen (line 30) | func (h *msghdr) controllen() int {
method flags (line 34) | func (h *msghdr) flags() int {
FILE: vendor/golang.org/x/net/internal/socket/msghdr_linux_32bit.go
method setIov (line 12) | func (h *msghdr) setIov(vs []iovec) {
method setControl (line 21) | func (h *msghdr) setControl(b []byte) {
FILE: vendor/golang.org/x/net/internal/socket/msghdr_linux_64bit.go
method setIov (line 12) | func (h *msghdr) setIov(vs []iovec) {
method setControl (line 21) | func (h *msghdr) setControl(b []byte) {
FILE: vendor/golang.org/x/net/internal/socket/msghdr_openbsd.go
method setIov (line 7) | func (h *msghdr) setIov(vs []iovec) {
FILE: vendor/golang.org/x/net/internal/socket/msghdr_solaris_64bit.go
method pack (line 12) | func (h *msghdr) pack(vs []iovec, bs [][]byte, oob []byte, sa []byte) {
method controllen (line 30) | func (h *msghdr) controllen() int {
method flags (line 34) | func (h *msghdr) flags() int {
FILE: vendor/golang.org/x/net/internal/socket/msghdr_stub.go
type msghdr (line 9) | type msghdr struct
method pack (line 11) | func (h *msghdr) pack(vs []iovec, bs [][]byte, oob []byte, sa []byte) {}
method name (line 12) | func (h *msghdr) name() []byte ...
method controllen (line 13) | func (h *msghdr) controllen() int ...
method flags (line 14) | func (h *msghdr) flags() int ...
FILE: vendor/golang.org/x/net/internal/socket/rawconn.go
type Conn (line 17) | type Conn struct
function NewConn (line 23) | func NewConn(c net.Conn) (*Conn, error) {
method get (line 45) | func (o *Option) get(c *Conn, b []byte) (int, error) {
method set (line 57) | func (o *Option) set(c *Conn, b []byte) error {
FILE: vendor/golang.org/x/net/internal/socket/rawconn_mmsg.go
method recvMsgs (line 16) | func (c *Conn) recvMsgs(ms []Message, flags int) (int, error) {
method sendMsgs (line 46) | func (c *Conn) sendMsgs(ms []Message, flags int) (int, error) {
FILE: vendor/golang.org/x/net/internal/socket/rawconn_msg.go
method recvMsg (line 15) | func (c *Conn) recvMsg(m *Message, flags int) error {
method sendMsg (line 51) | func (c *Conn) sendMsg(m *Message, flags int) error {
FILE: vendor/golang.org/x/net/internal/socket/rawconn_nommsg.go
method recvMsgs (line 12) | func (c *Conn) recvMsgs(ms []Message, flags int) (int, error) {
method sendMsgs (line 16) | func (c *Conn) sendMsgs(ms []Message, flags int) (int, error) {
FILE: vendor/golang.org/x/net/internal/socket/rawconn_nomsg.go
method recvMsg (line 12) | func (c *Conn) recvMsg(m *Message, flags int) error {
method sendMsg (line 16) | func (c *Conn) sendMsg(m *Message, flags int) error {
FILE: vendor/golang.org/x/net/internal/socket/rawconn_stub.go
method recvMsg (line 11) | func (c *Conn) recvMsg(m *Message, flags int) error {
method sendMsg (line 15) | func (c *Conn) sendMsg(m *Message, flags int) error {
method recvMsgs (line 19) | func (c *Conn) recvMsgs(ms []Message, flags int) (int, error) {
method sendMsgs (line 23) | func (c *Conn) sendMsgs(ms []Message, flags int) (int, error) {
FILE: vendor/golang.org/x/net/internal/socket/reflect.go
type Conn (line 18) | type Conn struct
function NewConn (line 23) | func NewConn(c net.Conn) (*Conn, error) {
method get (line 27) | func (o *Option) get(c *Conn, b []byte) (int, error) {
method set (line 36) | func (o *Option) set(c *Conn, b []byte) error {
function socketOf (line 44) | func socketOf(c net.Conn) (uintptr, error) {
FILE: vendor/golang.org/x/net/internal/socket/socket.go
type Option (line 16) | type Option struct
method Get (line 24) | func (o *Option) Get(c *Conn, b []byte) (int, error) {
method GetInt (line 37) | func (o *Option) GetInt(c *Conn) (int, error) {
method Set (line 62) | func (o *Option) Set(c *Conn, b []byte) error {
method SetInt (line 75) | func (o *Option) SetInt(c *Conn, v int) error {
function controlHeaderLen (line 90) | func controlHeaderLen() int {
function controlMessageLen (line 94) | func controlMessageLen(dataLen int) int {
function ControlMessageSpace (line 99) | func ControlMessageSpace(dataLen int) int {
type ControlMessage (line 110) | type ControlMessage
method Data (line 114) | func (m ControlMessage) Data(dataLen int) []byte {
method Next (line 125) | func (m ControlMessage) Next(dataLen int) ControlMessage {
method MarshalHeader (line 135) | func (m ControlMessage) MarshalHeader(lvl, typ, dataLen int) error {
method ParseHeader (line 146) | func (m ControlMessage) ParseHeader() (lvl, typ, dataLen int, err erro...
method Marshal (line 157) | func (m ControlMessage) Marshal(lvl, typ int, data []byte) (ControlMes...
method Parse (line 173) | func (m ControlMessage) Parse() ([]ControlMessage, error) {
function NewControlMessage (line 215) | func NewControlMessage(dataLen []int) ControlMessage {
type Message (line 224) | type Message struct
method RecvMsg (line 251) | func (c *Conn) RecvMsg(m *Message, flags int) error {
method SendMsg (line 259) | func (c *Conn) SendMsg(m *Message, flags int) error {
method RecvMsgs (line 271) | func (c *Conn) RecvMsgs(ms []Message, flags int) (int, error) {
method SendMsgs (line 283) | func (c *Conn) SendMsgs(ms []Message, flags int) (int, error) {
FILE: vendor/golang.org/x/net/internal/socket/socket_go1_9_test.go
type mockControl (line 21) | type mockControl struct
function TestControlMessage (line 27) | func TestControlMessage(t *testing.T) {
function TestUDP (line 116) | func TestUDP(t *testing.T) {
function BenchmarkUDP (line 202) | func BenchmarkUDP(b *testing.B) {
FILE: vendor/golang.org/x/net/internal/socket/socket_test.go
function TestSocket (line 19) | func TestSocket(t *testing.T) {
function testSocketOption (line 25) | func testSocketOption(t *testing.T, so *socket.Option) {
FILE: vendor/golang.org/x/net/internal/socket/sys.go
function init (line 20) | func init() {
function roundup (line 31) | func roundup(l int) int {
FILE: vendor/golang.org/x/net/internal/socket/sys_bsd.go
function recvmmsg (line 11) | func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
function sendmmsg (line 15) | func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
FILE: vendor/golang.org/x/net/internal/socket/sys_bsdvar.go
function probeProtocolStack (line 11) | func probeProtocolStack() int {
FILE: vendor/golang.org/x/net/internal/socket/sys_darwin.go
function probeProtocolStack (line 7) | func probeProtocolStack() int { return 4 }
FILE: vendor/golang.org/x/net/internal/socket/sys_dragonfly.go
function probeProtocolStack (line 7) | func probeProtocolStack() int { return 4 }
FILE: vendor/golang.org/x/net/internal/socket/sys_linux.go
function probeProtocolStack (line 14) | func probeProtocolStack() int {
function recvmmsg (line 19) | func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
function sendmmsg (line 24) | func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
FILE: vendor/golang.org/x/net/internal/socket/sys_linux_386.go
function probeProtocolStack (line 12) | func probeProtocolStack() int { return 4 }
constant sysSETSOCKOPT (line 15) | sysSETSOCKOPT = 0xe
constant sysGETSOCKOPT (line 16) | sysGETSOCKOPT = 0xf
constant sysSENDMSG (line 17) | sysSENDMSG = 0x10
constant sysRECVMSG (line 18) | sysRECVMSG = 0x11
constant sysRECVMMSG (line 19) | sysRECVMMSG = 0x13
constant sysSENDMMSG (line 20) | sysSENDMMSG = 0x14
function socketcall (line 23) | func socketcall(call, a0, a1, a2, a3, a4, a5 uintptr) (uintptr, syscall....
function rawsocketcall (line 24) | func rawsocketcall(call, a0, a1, a2, a3, a4, a5 uintptr) (uintptr, sysca...
function getsockopt (line 26) | func getsockopt(s uintptr, level, name int, b []byte) (int, error) {
function setsockopt (line 32) | func setsockopt(s uintptr, level, name int, b []byte) error {
function recvmsg (line 37) | func recvmsg(s uintptr, h *msghdr, flags int) (int, error) {
function sendmsg (line 42) | func sendmsg(s uintptr, h *msghdr, flags int) (int, error) {
function recvmmsg (line 47) | func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
function sendmmsg (line 52) | func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
FILE: vendor/golang.org/x/net/internal/socket/sys_linux_amd64.go
constant sysRECVMMSG (line 8) | sysRECVMMSG = 0x12b
constant sysSENDMMSG (line 9) | sysSENDMMSG = 0x133
FILE: vendor/golang.org/x/net/internal/socket/sys_linux_arm.go
constant sysRECVMMSG (line 8) | sysRECVMMSG = 0x16d
constant sysSENDMMSG (line 9) | sysSENDMMSG = 0x176
FILE: vendor/golang.org/x/net/internal/socket/sys_linux_arm64.go
constant sysRECVMMSG (line 8) | sysRECVMMSG = 0xf3
constant sysSENDMMSG (line 9) | sysSENDMMSG = 0x10d
FILE: vendor/golang.org/x/net/internal/socket/sys_linux_mips.go
constant sysRECVMMSG (line 8) | sysRECVMMSG = 0x10ef
constant sysSENDMMSG (line 9) | sysSENDMMSG = 0x10f7
FILE: vendor/golang.org/x/net/internal/socket/sys_linux_mips64.go
constant sysRECVMMSG (line 8) | sysRECVMMSG = 0x14ae
constant sysSENDMMSG (line 9) | sysSENDMMSG = 0x14b6
FILE: vendor/golang.org/x/net/internal/socket/sys_linux_mips64le.go
constant sysRECVMMSG (line 8) | sysRECVMMSG = 0x14ae
constant sysSENDMMSG (line 9) | sysSENDMMSG = 0x14b6
FILE: vendor/golang.org/x/net/internal/socket/sys_linux_mipsle.go
constant sysRECVMMSG (line 8) | sysRECVMMSG = 0x10ef
constant sysSENDMMSG (line 9) | sysSENDMMSG = 0x10f7
FILE: vendor/golang.org/x/net/internal/socket/sys_linux_ppc64.go
constant sysRECVMMSG (line 8) | sysRECVMMSG = 0x157
constant sysSENDMMSG (line 9) | sysSENDMMSG = 0x15d
FILE: vendor/golang.org/x/net/internal/socket/sys_linux_ppc64le.go
constant sysRECVMMSG (line 8) | sysRECVMMSG = 0x157
constant sysSENDMMSG (line 9) | sysSENDMMSG = 0x15d
FILE: vendor/golang.org/x/net/internal/socket/sys_linux_s390x.go
function probeProtocolStack (line 12) | func probeProtocolStack() int { return 8 }
constant sysSETSOCKOPT (line 15) | sysSETSOCKOPT = 0xe
constant sysGETSOCKOPT (line 16) | sysGETSOCKOPT = 0xf
constant sysSENDMSG (line 17) | sysSENDMSG = 0x10
constant sysRECVMSG (line 18) | sysRECVMSG = 0x11
constant sysRECVMMSG (line 19) | sysRECVMMSG = 0x13
constant sysSENDMMSG (line 20) | sysSENDMMSG = 0x14
function socketcall (line 23) | func socketcall(call, a0, a1, a2, a3, a4, a5 uintptr) (uintptr, syscall....
function rawsocketcall (line 24) | func rawsocketcall(call, a0, a1, a2, a3, a4, a5 uintptr) (uintptr, sysca...
function getsockopt (line 26) | func getsockopt(s uintptr, level, name int, b []byte) (int, error) {
function setsockopt (line 32) | func setsockopt(s uintptr, level, name int, b []byte) error {
function recvmsg (line 37) | func recvmsg(s uintptr, h *msghdr, flags int) (int, error) {
function sendmsg (line 42) | func sendmsg(s uintptr, h *msghdr, flags int) (int, error) {
function recvmmsg (line 47) | func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
function sendmmsg (line 52) | func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
FILE: vendor/golang.org/x/net/internal/socket/sys_netbsd.go
constant sysRECVMMSG (line 13) | sysRECVMMSG = 0x1db
constant sysSENDMMSG (line 14) | sysSENDMMSG = 0x1dc
function recvmmsg (line 17) | func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
function sendmmsg (line 22) | func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
FILE: vendor/golang.org/x/net/internal/socket/sys_posix.go
function marshalInetAddr (line 20) | func marshalInetAddr(a net.Addr) []byte {
function marshalSockaddr (line 33) | func marshalSockaddr(ip net.IP, port int, zone string) []byte {
function parseInetAddr (line 66) | func parseInetAddr(b []byte, network string) (net.Addr, error) {
type ipv6ZoneCache (line 112) | type ipv6ZoneCache struct
method update (line 124) | func (zc *ipv6ZoneCache) update(ift []net.Interface) {
method name (line 148) | func (zc *ipv6ZoneCache) name(zone int) string {
method index (line 159) | func (zc *ipv6ZoneCache) index(zone string) int {
FILE: vendor/golang.org/x/net/internal/socket/sys_solaris.go
function probeProtocolStack (line 14) | func probeProtocolStack() int {
function sysvicall6 (line 41) | func sysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (uintptr, u...
function rawSysvicall6 (line 42) | func rawSysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (uintptr...
function getsockopt (line 44) | func getsockopt(s uintptr, level, name int, b []byte) (int, error) {
function setsockopt (line 50) | func setsockopt(s uintptr, level, name int, b []byte) error {
function recvmsg (line 55) | func recvmsg(s uintptr, h *msghdr, flags int) (int, error) {
function sendmsg (line 60) | func sendmsg(s uintptr, h *msghdr, flags int) (int, error) {
function recvmmsg (line 65) | func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
function sendmmsg (line 69) | func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
FILE: vendor/golang.org/x/net/internal/socket/sys_stub.go
constant sysAF_UNSPEC (line 17) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 18) | sysAF_INET = 0x2
constant sysAF_INET6 (line 19) | sysAF_INET6 = 0xa
constant sysSOCK_RAW (line 21) | sysSOCK_RAW = 0x3
function probeProtocolStack (line 24) | func probeProtocolStack() int {
function marshalInetAddr (line 34) | func marshalInetAddr(ip net.IP, port int, zone string) []byte {
function parseInetAddr (line 38) | func parseInetAddr(b []byte, network string) (net.Addr, error) {
function getsockopt (line 42) | func getsockopt(s uintptr, level, name int, b []byte) (int, error) {
function setsockopt (line 46) | func setsockopt(s uintptr, level, name int, b []byte) error {
function recvmsg (line 50) | func recvmsg(s uintptr, h *msghdr, flags int) (int, error) {
function sendmsg (line 54) | func sendmsg(s uintptr, h *msghdr, flags int) (int, error) {
function recvmmsg (line 58) | func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
function sendmmsg (line 62) | func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
FILE: vendor/golang.org/x/net/internal/socket/sys_unix.go
function getsockopt (line 14) | func getsockopt(s uintptr, level, name int, b []byte) (int, error) {
function setsockopt (line 20) | func setsockopt(s uintptr, level, name int, b []byte) error {
function recvmsg (line 25) | func recvmsg(s uintptr, h *msghdr, flags int) (int, error) {
function sendmsg (line 30) | func sendmsg(s uintptr, h *msghdr, flags int) (int, error) {
FILE: vendor/golang.org/x/net/internal/socket/sys_windows.go
function probeProtocolStack (line 13) | func probeProtocolStack() int {
constant sysAF_UNSPEC (line 19) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 20) | sysAF_INET = 0x2
constant sysAF_INET6 (line 21) | sysAF_INET6 = 0x17
constant sysSOCK_RAW (line 23) | sysSOCK_RAW = 0x3
type sockaddrInet (line 26) | type sockaddrInet struct
type sockaddrInet6 (line 33) | type sockaddrInet6 struct
constant sizeofSockaddrInet (line 42) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 43) | sizeofSockaddrInet6 = 0x1c
function getsockopt (line 46) | func getsockopt(s uintptr, level, name int, b []byte) (int, error) {
function setsockopt (line 52) | func setsockopt(s uintptr, level, name int, b []byte) error {
function recvmsg (line 56) | func recvmsg(s uintptr, h *msghdr, flags int) (int, error) {
function sendmsg (line 60) | func sendmsg(s uintptr, h *msghdr, flags int) (int, error) {
function recvmmsg (line 64) | func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
function sendmmsg (line 68) | func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) {
FILE: vendor/golang.org/x/net/internal/socket/zsys_darwin_386.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x1e
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type cmsghdr (line 29) | type cmsghdr struct
type sockaddrInet (line 35) | type sockaddrInet struct
type sockaddrInet6 (line 43) | type sockaddrInet6 struct
constant sizeofIovec (line 53) | sizeofIovec = 0x8
constant sizeofMsghdr (line 54) | sizeofMsghdr = 0x1c
constant sizeofCmsghdr (line 55) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 57) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 58) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_darwin_amd64.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x1e
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type cmsghdr (line 31) | type cmsghdr struct
type sockaddrInet (line 37) | type sockaddrInet struct
type sockaddrInet6 (line 45) | type sockaddrInet6 struct
constant sizeofIovec (line 55) | sizeofIovec = 0x10
constant sizeofMsghdr (line 56) | sizeofMsghdr = 0x30
constant sizeofCmsghdr (line 57) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 59) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 60) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_darwin_arm.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x1e
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type cmsghdr (line 29) | type cmsghdr struct
type sockaddrInet (line 35) | type sockaddrInet struct
type sockaddrInet6 (line 43) | type sockaddrInet6 struct
constant sizeofIovec (line 53) | sizeofIovec = 0x8
constant sizeofMsghdr (line 54) | sizeofMsghdr = 0x1c
constant sizeofCmsghdr (line 55) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 57) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 58) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_dragonfly_amd64.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x1c
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type cmsghdr (line 31) | type cmsghdr struct
type sockaddrInet (line 37) | type sockaddrInet struct
type sockaddrInet6 (line 45) | type sockaddrInet6 struct
constant sizeofIovec (line 55) | sizeofIovec = 0x10
constant sizeofMsghdr (line 56) | sizeofMsghdr = 0x30
constant sizeofCmsghdr (line 57) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 59) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 60) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_freebsd_386.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x1c
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type cmsghdr (line 29) | type cmsghdr struct
type sockaddrInet (line 35) | type sockaddrInet struct
type sockaddrInet6 (line 43) | type sockaddrInet6 struct
constant sizeofIovec (line 53) | sizeofIovec = 0x8
constant sizeofMsghdr (line 54) | sizeofMsghdr = 0x1c
constant sizeofCmsghdr (line 55) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 57) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 58) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_freebsd_amd64.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x1c
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type cmsghdr (line 31) | type cmsghdr struct
type sockaddrInet (line 37) | type sockaddrInet struct
type sockaddrInet6 (line 45) | type sockaddrInet6 struct
constant sizeofIovec (line 55) | sizeofIovec = 0x10
constant sizeofMsghdr (line 56) | sizeofMsghdr = 0x30
constant sizeofCmsghdr (line 57) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 59) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 60) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_freebsd_arm.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x1c
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type cmsghdr (line 29) | type cmsghdr struct
type sockaddrInet (line 35) | type sockaddrInet struct
type sockaddrInet6 (line 43) | type sockaddrInet6 struct
constant sizeofIovec (line 53) | sizeofIovec = 0x8
constant sizeofMsghdr (line 54) | sizeofMsghdr = 0x1c
constant sizeofCmsghdr (line 55) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 57) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 58) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_linux_386.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0xa
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type mmsghdr (line 29) | type mmsghdr struct
type cmsghdr (line 34) | type cmsghdr struct
type sockaddrInet (line 40) | type sockaddrInet struct
type sockaddrInet6 (line 47) | type sockaddrInet6 struct
constant sizeofIovec (line 56) | sizeofIovec = 0x8
constant sizeofMsghdr (line 57) | sizeofMsghdr = 0x1c
constant sizeofMmsghdr (line 58) | sizeofMmsghdr = 0x20
constant sizeofCmsghdr (line 59) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 61) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 62) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_linux_amd64.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0xa
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type mmsghdr (line 31) | type mmsghdr struct
type cmsghdr (line 37) | type cmsghdr struct
type sockaddrInet (line 43) | type sockaddrInet struct
type sockaddrInet6 (line 50) | type sockaddrInet6 struct
constant sizeofIovec (line 59) | sizeofIovec = 0x10
constant sizeofMsghdr (line 60) | sizeofMsghdr = 0x38
constant sizeofMmsghdr (line 61) | sizeofMmsghdr = 0x40
constant sizeofCmsghdr (line 62) | sizeofCmsghdr = 0x10
constant sizeofSockaddrInet (line 64) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 65) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_linux_arm.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0xa
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type mmsghdr (line 29) | type mmsghdr struct
type cmsghdr (line 34) | type cmsghdr struct
type sockaddrInet (line 40) | type sockaddrInet struct
type sockaddrInet6 (line 47) | type sockaddrInet6 struct
constant sizeofIovec (line 56) | sizeofIovec = 0x8
constant sizeofMsghdr (line 57) | sizeofMsghdr = 0x1c
constant sizeofMmsghdr (line 58) | sizeofMmsghdr = 0x20
constant sizeofCmsghdr (line 59) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 61) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 62) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_linux_arm64.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0xa
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type mmsghdr (line 31) | type mmsghdr struct
type cmsghdr (line 37) | type cmsghdr struct
type sockaddrInet (line 43) | type sockaddrInet struct
type sockaddrInet6 (line 50) | type sockaddrInet6 struct
constant sizeofIovec (line 59) | sizeofIovec = 0x10
constant sizeofMsghdr (line 60) | sizeofMsghdr = 0x38
constant sizeofMmsghdr (line 61) | sizeofMmsghdr = 0x40
constant sizeofCmsghdr (line 62) | sizeofCmsghdr = 0x10
constant sizeofSockaddrInet (line 64) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 65) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_linux_mips.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0xa
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type mmsghdr (line 29) | type mmsghdr struct
type cmsghdr (line 34) | type cmsghdr struct
type sockaddrInet (line 40) | type sockaddrInet struct
type sockaddrInet6 (line 47) | type sockaddrInet6 struct
constant sizeofIovec (line 56) | sizeofIovec = 0x8
constant sizeofMsghdr (line 57) | sizeofMsghdr = 0x1c
constant sizeofMmsghdr (line 58) | sizeofMmsghdr = 0x20
constant sizeofCmsghdr (line 59) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 61) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 62) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_linux_mips64.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0xa
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type mmsghdr (line 31) | type mmsghdr struct
type cmsghdr (line 37) | type cmsghdr struct
type sockaddrInet (line 43) | type sockaddrInet struct
type sockaddrInet6 (line 50) | type sockaddrInet6 struct
constant sizeofIovec (line 59) | sizeofIovec = 0x10
constant sizeofMsghdr (line 60) | sizeofMsghdr = 0x38
constant sizeofMmsghdr (line 61) | sizeofMmsghdr = 0x40
constant sizeofCmsghdr (line 62) | sizeofCmsghdr = 0x10
constant sizeofSockaddrInet (line 64) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 65) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_linux_mips64le.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0xa
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type mmsghdr (line 31) | type mmsghdr struct
type cmsghdr (line 37) | type cmsghdr struct
type sockaddrInet (line 43) | type sockaddrInet struct
type sockaddrInet6 (line 50) | type sockaddrInet6 struct
constant sizeofIovec (line 59) | sizeofIovec = 0x10
constant sizeofMsghdr (line 60) | sizeofMsghdr = 0x38
constant sizeofMmsghdr (line 61) | sizeofMmsghdr = 0x40
constant sizeofCmsghdr (line 62) | sizeofCmsghdr = 0x10
constant sizeofSockaddrInet (line 64) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 65) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_linux_mipsle.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0xa
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type mmsghdr (line 29) | type mmsghdr struct
type cmsghdr (line 34) | type cmsghdr struct
type sockaddrInet (line 40) | type sockaddrInet struct
type sockaddrInet6 (line 47) | type sockaddrInet6 struct
constant sizeofIovec (line 56) | sizeofIovec = 0x8
constant sizeofMsghdr (line 57) | sizeofMsghdr = 0x1c
constant sizeofMmsghdr (line 58) | sizeofMmsghdr = 0x20
constant sizeofCmsghdr (line 59) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 61) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 62) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_linux_ppc64.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0xa
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type mmsghdr (line 31) | type mmsghdr struct
type cmsghdr (line 37) | type cmsghdr struct
type sockaddrInet (line 43) | type sockaddrInet struct
type sockaddrInet6 (line 50) | type sockaddrInet6 struct
constant sizeofIovec (line 59) | sizeofIovec = 0x10
constant sizeofMsghdr (line 60) | sizeofMsghdr = 0x38
constant sizeofMmsghdr (line 61) | sizeofMmsghdr = 0x40
constant sizeofCmsghdr (line 62) | sizeofCmsghdr = 0x10
constant sizeofSockaddrInet (line 64) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 65) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_linux_ppc64le.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0xa
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type mmsghdr (line 31) | type mmsghdr struct
type cmsghdr (line 37) | type cmsghdr struct
type sockaddrInet (line 43) | type sockaddrInet struct
type sockaddrInet6 (line 50) | type sockaddrInet6 struct
constant sizeofIovec (line 59) | sizeofIovec = 0x10
constant sizeofMsghdr (line 60) | sizeofMsghdr = 0x38
constant sizeofMmsghdr (line 61) | sizeofMmsghdr = 0x40
constant sizeofCmsghdr (line 62) | sizeofCmsghdr = 0x10
constant sizeofSockaddrInet (line 64) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 65) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_linux_s390x.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0xa
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type mmsghdr (line 31) | type mmsghdr struct
type cmsghdr (line 37) | type cmsghdr struct
type sockaddrInet (line 43) | type sockaddrInet struct
type sockaddrInet6 (line 50) | type sockaddrInet6 struct
constant sizeofIovec (line 59) | sizeofIovec = 0x10
constant sizeofMsghdr (line 60) | sizeofMsghdr = 0x38
constant sizeofMmsghdr (line 61) | sizeofMmsghdr = 0x40
constant sizeofCmsghdr (line 62) | sizeofCmsghdr = 0x10
constant sizeofSockaddrInet (line 64) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 65) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_netbsd_386.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x18
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type mmsghdr (line 29) | type mmsghdr struct
type cmsghdr (line 34) | type cmsghdr struct
type sockaddrInet (line 40) | type sockaddrInet struct
type sockaddrInet6 (line 48) | type sockaddrInet6 struct
constant sizeofIovec (line 58) | sizeofIovec = 0x8
constant sizeofMsghdr (line 59) | sizeofMsghdr = 0x1c
constant sizeofMmsghdr (line 60) | sizeofMmsghdr = 0x20
constant sizeofCmsghdr (line 61) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 63) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 64) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_netbsd_amd64.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x18
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type mmsghdr (line 31) | type mmsghdr struct
type cmsghdr (line 37) | type cmsghdr struct
type sockaddrInet (line 43) | type sockaddrInet struct
type sockaddrInet6 (line 51) | type sockaddrInet6 struct
constant sizeofIovec (line 61) | sizeofIovec = 0x10
constant sizeofMsghdr (line 62) | sizeofMsghdr = 0x30
constant sizeofMmsghdr (line 63) | sizeofMmsghdr = 0x40
constant sizeofCmsghdr (line 64) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 66) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 67) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_netbsd_arm.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x18
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type cmsghdr (line 29) | type cmsghdr struct
type sockaddrInet (line 35) | type sockaddrInet struct
type sockaddrInet6 (line 43) | type sockaddrInet6 struct
constant sizeofIovec (line 53) | sizeofIovec = 0x8
constant sizeofMsghdr (line 54) | sizeofMsghdr = 0x1c
constant sizeofCmsghdr (line 55) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 57) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 58) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_openbsd_386.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x18
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type cmsghdr (line 29) | type cmsghdr struct
type sockaddrInet (line 35) | type sockaddrInet struct
type sockaddrInet6 (line 43) | type sockaddrInet6 struct
constant sizeofIovec (line 53) | sizeofIovec = 0x8
constant sizeofMsghdr (line 54) | sizeofMsghdr = 0x1c
constant sizeofCmsghdr (line 55) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 57) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 58) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_openbsd_amd64.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x18
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type cmsghdr (line 31) | type cmsghdr struct
type sockaddrInet (line 37) | type sockaddrInet struct
type sockaddrInet6 (line 45) | type sockaddrInet6 struct
constant sizeofIovec (line 55) | sizeofIovec = 0x10
constant sizeofMsghdr (line 56) | sizeofMsghdr = 0x30
constant sizeofCmsghdr (line 57) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 59) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 60) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_openbsd_arm.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x18
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x3
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type cmsghdr (line 29) | type cmsghdr struct
type sockaddrInet (line 35) | type sockaddrInet struct
type sockaddrInet6 (line 43) | type sockaddrInet6 struct
constant sizeofIovec (line 53) | sizeofIovec = 0x8
constant sizeofMsghdr (line 54) | sizeofMsghdr = 0x1c
constant sizeofCmsghdr (line 55) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 57) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 58) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/internal/socket/zsys_solaris_amd64.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x1a
constant sysSOCK_RAW (line 11) | sysSOCK_RAW = 0x4
type iovec (line 14) | type iovec struct
type msghdr (line 19) | type msghdr struct
type cmsghdr (line 31) | type cmsghdr struct
type sockaddrInet (line 37) | type sockaddrInet struct
type sockaddrInet6 (line 44) | type sockaddrInet6 struct
constant sizeofIovec (line 54) | sizeofIovec = 0x10
constant sizeofMsghdr (line 55) | sizeofMsghdr = 0x30
constant sizeofCmsghdr (line 56) | sizeofCmsghdr = 0xc
constant sizeofSockaddrInet (line 58) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 59) | sizeofSockaddrInet6 = 0x20
FILE: vendor/golang.org/x/net/internal/timeseries/timeseries.go
constant timeSeriesNumBuckets (line 15) | timeSeriesNumBuckets = 64
constant minuteHourSeriesNumBuckets (line 16) | minuteHourSeriesNumBuckets = 60
type Observable (line 38) | type Observable interface
type Float (line 46) | type Float
method String (line 55) | func (f *Float) String() string { return fmt.Sprintf("%g", f.Value()) }
method Value (line 58) | func (f *Float) Value() float64 { return float64(*f) }
method Multiply (line 60) | func (f *Float) Multiply(ratio float64) { *f *= Float(ratio) }
method Add (line 62) | func (f *Float) Add(other Observable) {
method Clear (line 67) | func (f *Float) Clear() { *f = 0 }
method CopyFrom (line 69) | func (f *Float) CopyFrom(other Observable) {
function NewFloat (line 49) | func NewFloat() Observable {
type Clock (line 75) | type Clock interface
type defaultClock (line 79) | type defaultClock
method Time (line 83) | func (defaultClock) Time() time.Time { return time.Now() }
type tsLevel (line 88) | type tsLevel struct
method Clear (line 97) | func (l *tsLevel) Clear() {
method InitLevel (line 109) | func (l *tsLevel) InitLevel(size time.Duration, numBuckets int, f func...
type timeSeries (line 123) | type timeSeries struct
method init (line 136) | func (ts *timeSeries) init(resolutions []time.Duration, f func() Obser...
method Clear (line 156) | func (ts *timeSeries) Clear() {
method Add (line 169) | func (ts *timeSeries) Add(observation Observable) {
method AddWithTime (line 174) | func (ts *timeSeries) AddWithTime(observation Observable, t time.Time) {
method mergeValue (line 200) | func (ts *timeSeries) mergeValue(observation Observable, t time.Time) {
method mergePendingUpdates (line 215) | func (ts *timeSeries) mergePendingUpdates() {
method advance (line 225) | func (ts *timeSeries) advance(t time.Time) {
method Latest (line 256) | func (ts *timeSeries) Latest(level, num int) Observable {
method LatestBuckets (line 282) | func (ts *timeSeries) LatestBuckets(level, num int) []Observable {
method ScaleBy (line 319) | func (ts *timeSeries) ScaleBy(factor float64) {
method Range (line 333) | func (ts *timeSeries) Range(start, finish time.Time) Observable {
method Recent (line 338) | func (ts *timeSeries) Recent(delta time.Duration) Observable {
method Total (line 344) | func (ts *timeSeries) Total() Observable {
method ComputeRange (line 354) | func (ts *timeSeries) ComputeRange(start, finish time.Time, num int) [...
method RecentList (line 384) | func (ts *timeSeries) RecentList(delta time.Duration, num int) []Obser...
method extract (line 394) | func (ts *timeSeries) extract(l *tsLevel, start, finish time.Time, num...
method resetObservation (line 459) | func (ts *timeSeries) resetObservation(observation Observable) Observa...
type TimeSeries (line 469) | type TimeSeries struct
function NewTimeSeries (line 474) | func NewTimeSeries(f func() Observable) *TimeSeries {
function NewTimeSeriesWithClock (line 480) | func NewTimeSeriesWithClock(f func() Observable, clock Clock) *TimeSeries {
type MinuteHourSeries (line 487) | type MinuteHourSeries struct
method Minute (line 505) | func (ts *MinuteHourSeries) Minute() Observable {
method Hour (line 509) | func (ts *MinuteHourSeries) Hour() Observable {
function NewMinuteHourSeries (line 492) | func NewMinuteHourSeries(f func() Observable) *MinuteHourSeries {
function NewMinuteHourSeriesWithClock (line 498) | func NewMinuteHourSeriesWithClock(f func() Observable, clock Clock) *Min...
function minTime (line 513) | func minTime(a, b time.Time) time.Time {
function maxTime (line 520) | func maxTime(a, b time.Time) time.Time {
FILE: vendor/golang.org/x/net/internal/timeseries/timeseries_test.go
function isNear (line 13) | func isNear(x *Float, y float64, tolerance float64) bool {
function isApproximate (line 17) | func isApproximate(x *Float, y float64) bool {
function checkApproximate (line 21) | func checkApproximate(t *testing.T, o Observable, y float64) {
function checkNear (line 28) | func checkNear(t *testing.T, o Observable, y, tolerance float64) {
function tu (line 37) | func tu(s int64) time.Time {
function tu2 (line 41) | func tu2(s int64, ns int64) time.Time {
function TestBasicTimeSeries (line 45) | func TestBasicTimeSeries(t *testing.T) {
function TestFloat (line 102) | func TestFloat(t *testing.T) {
type mockClock (line 127) | type mockClock struct
method Time (line 131) | func (m *mockClock) Time() time.Time { return m.time }
method Set (line 132) | func (m *mockClock) Set(t time.Time) { m.time = t }
constant buckets (line 134) | buckets = 6
type TestTimeSeries (line 144) | type TestTimeSeries struct
function TestExpectedErrorRate (line 148) | func TestExpectedErrorRate(t *testing.T) {
function min (line 165) | func min(a, b float64) float64 {
FILE: vendor/golang.org/x/net/ipv4/batch.go
method ReadBatch (line 77) | func (c *payloadHandler) ReadBatch(ms []Message, flags int) (int, error) {
method WriteBatch (line 108) | func (c *payloadHandler) WriteBatch(ms []Message, flags int) (int, error) {
method ReadBatch (line 140) | func (c *packetHandler) ReadBatch(ms []Message, flags int) (int, error) {
method WriteBatch (line 171) | func (c *packetHandler) WriteBatch(ms []Message, flags int) (int, error) {
FILE: vendor/golang.org/x/net/ipv4/bpf_test.go
function TestBPF (line 17) | func TestBPF(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv4/control.go
type rawOpt (line 16) | type rawOpt struct
method set (line 21) | func (c *rawOpt) set(f ControlFlags) { c.cflags |= f }
method clear (line 22) | func (c *rawOpt) clear(f ControlFlags) { c.cflags &^= f }
method isset (line 23) | func (c *rawOpt) isset(f ControlFlags) bool { return c.cflags&f != 0 }
type ControlFlags (line 25) | type ControlFlags
constant FlagTTL (line 28) | FlagTTL ControlFlags = 1 << iota
constant FlagSrc (line 29) | FlagSrc
constant FlagDst (line 30) | FlagDst
constant FlagInterface (line 31) | FlagInterface
type ControlMessage (line 35) | type ControlMessage struct
method String (line 50) | func (cm *ControlMessage) String() string {
method Marshal (line 58) | func (cm *ControlMessage) Marshal() []byte {
method Parse (line 73) | func (cm *ControlMessage) Parse(b []byte) error {
function NewControlMessage (line 103) | func NewControlMessage(cf ControlFlags) []byte {
constant ctlTTL (line 130) | ctlTTL = iota
constant ctlSrc (line 131) | ctlSrc
constant ctlDst (line 132) | ctlDst
constant ctlInterface (line 133) | ctlInterface
constant ctlPacketInfo (line 134) | ctlPacketInfo
constant ctlMax (line 135) | ctlMax
type ctlOpt (line 139) | type ctlOpt struct
FILE: vendor/golang.org/x/net/ipv4/control_bsd.go
function marshalDst (line 18) | func marshalDst(b []byte, cm *ControlMessage) []byte {
function parseDst (line 24) | func parseDst(cm *ControlMessage, b []byte) {
function marshalInterface (line 31) | func marshalInterface(b []byte, cm *ControlMessage) []byte {
function parseInterface (line 37) | func parseInterface(cm *ControlMessage, b []byte) {
FILE: vendor/golang.org/x/net/ipv4/control_pktinfo.go
function marshalPacketInfo (line 17) | func marshalPacketInfo(b []byte, cm *ControlMessage) []byte {
function parsePacketInfo (line 32) | func parsePacketInfo(cm *ControlMessage, b []byte) {
FILE: vendor/golang.org/x/net/ipv4/control_stub.go
function setControlMessage (line 11) | func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on ...
FILE: vendor/golang.org/x/net/ipv4/control_test.go
function TestControlMessageParseWithFuzz (line 13) | func TestControlMessageParseWithFuzz(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv4/control_unix.go
function setControlMessage (line 16) | func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on ...
function marshalTTL (line 65) | func marshalTTL(b []byte, cm *ControlMessage) []byte {
function parseTTL (line 71) | func parseTTL(cm *ControlMessage, b []byte) {
FILE: vendor/golang.org/x/net/ipv4/control_windows.go
function setControlMessage (line 13) | func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on ...
FILE: vendor/golang.org/x/net/ipv4/defs_darwin.go
constant sysIP_OPTIONS (line 19) | sysIP_OPTIONS = C.IP_OPTIONS
constant sysIP_HDRINCL (line 20) | sysIP_HDRINCL = C.IP_HDRINCL
constant sysIP_TOS (line 21) | sysIP_TOS = C.IP_TOS
constant sysIP_TTL (line 22) | sysIP_TTL = C.IP_TTL
constant sysIP_RECVOPTS (line 23) | sysIP_RECVOPTS = C.IP_RECVOPTS
constant sysIP_RECVRETOPTS (line 24) | sysIP_RECVRETOPTS = C.IP_RECVRETOPTS
constant sysIP_RECVDSTADDR (line 25) | sysIP_RECVDSTADDR = C.IP_RECVDSTADDR
constant sysIP_RETOPTS (line 26) | sysIP_RETOPTS = C.IP_RETOPTS
constant sysIP_RECVIF (line 27) | sysIP_RECVIF = C.IP_RECVIF
constant sysIP_STRIPHDR (line 28) | sysIP_STRIPHDR = C.IP_STRIPHDR
constant sysIP_RECVTTL (line 29) | sysIP_RECVTTL = C.IP_RECVTTL
constant sysIP_BOUND_IF (line 30) | sysIP_BOUND_IF = C.IP_BOUND_IF
constant sysIP_PKTINFO (line 31) | sysIP_PKTINFO = C.IP_PKTINFO
constant sysIP_RECVPKTINFO (line 32) | sysIP_RECVPKTINFO = C.IP_RECVPKTINFO
constant sysIP_MULTICAST_IF (line 34) | sysIP_MULTICAST_IF = C.IP_MULTICAST_IF
constant sysIP_MULTICAST_TTL (line 35) | sysIP_MULTICAST_TTL = C.IP_MULTICAST_TTL
constant sysIP_MULTICAST_LOOP (line 36) | sysIP_MULTICAST_LOOP = C.IP_MULTICAST_LOOP
constant sysIP_ADD_MEMBERSHIP (line 37) | sysIP_ADD_MEMBERSHIP = C.IP_ADD_MEMBERSHIP
constant sysIP_DROP_MEMBERSHIP (line 38) | sysIP_DROP_MEMBERSHIP = C.IP_DROP_MEMBERSHIP
constant sysIP_MULTICAST_VIF (line 39) | sysIP_MULTICAST_VIF = C.IP_MULTICAST_VIF
constant sysIP_MULTICAST_IFINDEX (line 40) | sysIP_MULTICAST_IFINDEX = C.IP_MULTICAST_IFINDEX
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 41) | sysIP_ADD_SOURCE_MEMBERSHIP = C.IP_ADD_SOURCE_MEMBERSHIP
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 42) | sysIP_DROP_SOURCE_MEMBERSHIP = C.IP_DROP_SOURCE_MEMBERSHIP
constant sysIP_BLOCK_SOURCE (line 43) | sysIP_BLOCK_SOURCE = C.IP_BLOCK_SOURCE
constant sysIP_UNBLOCK_SOURCE (line 44) | sysIP_UNBLOCK_SOURCE = C.IP_UNBLOCK_SOURCE
constant sysMCAST_JOIN_GROUP (line 45) | sysMCAST_JOIN_GROUP = C.MCAST_JOIN_GROUP
constant sysMCAST_LEAVE_GROUP (line 46) | sysMCAST_LEAVE_GROUP = C.MCAST_LEAVE_GROUP
constant sysMCAST_JOIN_SOURCE_GROUP (line 47) | sysMCAST_JOIN_SOURCE_GROUP = C.MCAST_JOIN_SOURCE_GROUP
constant sysMCAST_LEAVE_SOURCE_GROUP (line 48) | sysMCAST_LEAVE_SOURCE_GROUP = C.MCAST_LEAVE_SOURCE_GROUP
constant sysMCAST_BLOCK_SOURCE (line 49) | sysMCAST_BLOCK_SOURCE = C.MCAST_BLOCK_SOURCE
constant sysMCAST_UNBLOCK_SOURCE (line 50) | sysMCAST_UNBLOCK_SOURCE = C.MCAST_UNBLOCK_SOURCE
constant sizeofSockaddrStorage (line 52) | sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage
constant sizeofSockaddrInet (line 53) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofInetPktinfo (line 54) | sizeofInetPktinfo = C.sizeof_struct_in_pktinfo
constant sizeofIPMreq (line 56) | sizeofIPMreq = C.sizeof_struct_ip_mreq
constant sizeofIPMreqn (line 57) | sizeofIPMreqn = C.sizeof_struct_ip_mreqn
constant sizeofIPMreqSource (line 58) | sizeofIPMreqSource = C.sizeof_struct_ip_mreq_source
constant sizeofGroupReq (line 59) | sizeofGroupReq = C.sizeof_struct_group_req
constant sizeofGroupSourceReq (line 60) | sizeofGroupSourceReq = C.sizeof_struct_group_source_req
type sockaddrStorage (line 63) | type sockaddrStorage
type sockaddrInet (line 65) | type sockaddrInet
type inetPktinfo (line 67) | type inetPktinfo
type ipMreq (line 69) | type ipMreq
type ipMreqn (line 71) | type ipMreqn
type ipMreqSource (line 73) | type ipMreqSource
type groupReq (line 75) | type groupReq
type groupSourceReq (line 77) | type groupSourceReq
FILE: vendor/golang.org/x/net/ipv4/defs_dragonfly.go
constant sysIP_OPTIONS (line 17) | sysIP_OPTIONS = C.IP_OPTIONS
constant sysIP_HDRINCL (line 18) | sysIP_HDRINCL = C.IP_HDRINCL
constant sysIP_TOS (line 19) | sysIP_TOS = C.IP_TOS
constant sysIP_TTL (line 20) | sysIP_TTL = C.IP_TTL
constant sysIP_RECVOPTS (line 21) | sysIP_RECVOPTS = C.IP_RECVOPTS
constant sysIP_RECVRETOPTS (line 22) | sysIP_RECVRETOPTS = C.IP_RECVRETOPTS
constant sysIP_RECVDSTADDR (line 23) | sysIP_RECVDSTADDR = C.IP_RECVDSTADDR
constant sysIP_RETOPTS (line 24) | sysIP_RETOPTS = C.IP_RETOPTS
constant sysIP_RECVIF (line 25) | sysIP_RECVIF = C.IP_RECVIF
constant sysIP_RECVTTL (line 26) | sysIP_RECVTTL = C.IP_RECVTTL
constant sysIP_MULTICAST_IF (line 28) | sysIP_MULTICAST_IF = C.IP_MULTICAST_IF
constant sysIP_MULTICAST_TTL (line 29) | sysIP_MULTICAST_TTL = C.IP_MULTICAST_TTL
constant sysIP_MULTICAST_LOOP (line 30) | sysIP_MULTICAST_LOOP = C.IP_MULTICAST_LOOP
constant sysIP_MULTICAST_VIF (line 31) | sysIP_MULTICAST_VIF = C.IP_MULTICAST_VIF
constant sysIP_ADD_MEMBERSHIP (line 32) | sysIP_ADD_MEMBERSHIP = C.IP_ADD_MEMBERSHIP
constant sysIP_DROP_MEMBERSHIP (line 33) | sysIP_DROP_MEMBERSHIP = C.IP_DROP_MEMBERSHIP
constant sizeofIPMreq (line 35) | sizeofIPMreq = C.sizeof_struct_ip_mreq
type ipMreq (line 38) | type ipMreq
FILE: vendor/golang.org/x/net/ipv4/defs_freebsd.go
constant sysIP_OPTIONS (line 19) | sysIP_OPTIONS = C.IP_OPTIONS
constant sysIP_HDRINCL (line 20) | sysIP_HDRINCL = C.IP_HDRINCL
constant sysIP_TOS (line 21) | sysIP_TOS = C.IP_TOS
constant sysIP_TTL (line 22) | sysIP_TTL = C.IP_TTL
constant sysIP_RECVOPTS (line 23) | sysIP_RECVOPTS = C.IP_RECVOPTS
constant sysIP_RECVRETOPTS (line 24) | sysIP_RECVRETOPTS = C.IP_RECVRETOPTS
constant sysIP_RECVDSTADDR (line 25) | sysIP_RECVDSTADDR = C.IP_RECVDSTADDR
constant sysIP_SENDSRCADDR (line 26) | sysIP_SENDSRCADDR = C.IP_SENDSRCADDR
constant sysIP_RETOPTS (line 27) | sysIP_RETOPTS = C.IP_RETOPTS
constant sysIP_RECVIF (line 28) | sysIP_RECVIF = C.IP_RECVIF
constant sysIP_ONESBCAST (line 29) | sysIP_ONESBCAST = C.IP_ONESBCAST
constant sysIP_BINDANY (line 30) | sysIP_BINDANY = C.IP_BINDANY
constant sysIP_RECVTTL (line 31) | sysIP_RECVTTL = C.IP_RECVTTL
constant sysIP_MINTTL (line 32) | sysIP_MINTTL = C.IP_MINTTL
constant sysIP_DONTFRAG (line 33) | sysIP_DONTFRAG = C.IP_DONTFRAG
constant sysIP_RECVTOS (line 34) | sysIP_RECVTOS = C.IP_RECVTOS
constant sysIP_MULTICAST_IF (line 36) | sysIP_MULTICAST_IF = C.IP_MULTICAST_IF
constant sysIP_MULTICAST_TTL (line 37) | sysIP_MULTICAST_TTL = C.IP_MULTICAST_TTL
constant sysIP_MULTICAST_LOOP (line 38) | sysIP_MULTICAST_LOOP = C.IP_MULTICAST_LOOP
constant sysIP_ADD_MEMBERSHIP (line 39) | sysIP_ADD_MEMBERSHIP = C.IP_ADD_MEMBERSHIP
constant sysIP_DROP_MEMBERSHIP (line 40) | sysIP_DROP_MEMBERSHIP = C.IP_DROP_MEMBERSHIP
constant sysIP_MULTICAST_VIF (line 41) | sysIP_MULTICAST_VIF = C.IP_MULTICAST_VIF
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 42) | sysIP_ADD_SOURCE_MEMBERSHIP = C.IP_ADD_SOURCE_MEMBERSHIP
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 43) | sysIP_DROP_SOURCE_MEMBERSHIP = C.IP_DROP_SOURCE_MEMBERSHIP
constant sysIP_BLOCK_SOURCE (line 44) | sysIP_BLOCK_SOURCE = C.IP_BLOCK_SOURCE
constant sysIP_UNBLOCK_SOURCE (line 45) | sysIP_UNBLOCK_SOURCE = C.IP_UNBLOCK_SOURCE
constant sysMCAST_JOIN_GROUP (line 46) | sysMCAST_JOIN_GROUP = C.MCAST_JOIN_GROUP
constant sysMCAST_LEAVE_GROUP (line 47) | sysMCAST_LEAVE_GROUP = C.MCAST_LEAVE_GROUP
constant sysMCAST_JOIN_SOURCE_GROUP (line 48) | sysMCAST_JOIN_SOURCE_GROUP = C.MCAST_JOIN_SOURCE_GROUP
constant sysMCAST_LEAVE_SOURCE_GROUP (line 49) | sysMCAST_LEAVE_SOURCE_GROUP = C.MCAST_LEAVE_SOURCE_GROUP
constant sysMCAST_BLOCK_SOURCE (line 50) | sysMCAST_BLOCK_SOURCE = C.MCAST_BLOCK_SOURCE
constant sysMCAST_UNBLOCK_SOURCE (line 51) | sysMCAST_UNBLOCK_SOURCE = C.MCAST_UNBLOCK_SOURCE
constant sizeofSockaddrStorage (line 53) | sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage
constant sizeofSockaddrInet (line 54) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofIPMreq (line 56) | sizeofIPMreq = C.sizeof_struct_ip_mreq
constant sizeofIPMreqn (line 57) | sizeofIPMreqn = C.sizeof_struct_ip_mreqn
constant sizeofIPMreqSource (line 58) | sizeofIPMreqSource = C.sizeof_struct_ip_mreq_source
constant sizeofGroupReq (line 59) | sizeofGroupReq = C.sizeof_struct_group_req
constant sizeofGroupSourceReq (line 60) | sizeofGroupSourceReq = C.sizeof_struct_group_source_req
type sockaddrStorage (line 63) | type sockaddrStorage
type sockaddrInet (line 65) | type sockaddrInet
type ipMreq (line 67) | type ipMreq
type ipMreqn (line 69) | type ipMreqn
type ipMreqSource (line 71) | type ipMreqSource
type groupReq (line 73) | type groupReq
type groupSourceReq (line 75) | type groupSourceReq
FILE: vendor/golang.org/x/net/ipv4/defs_linux.go
constant sysIP_TOS (line 23) | sysIP_TOS = C.IP_TOS
constant sysIP_TTL (line 24) | sysIP_TTL = C.IP_TTL
constant sysIP_HDRINCL (line 25) | sysIP_HDRINCL = C.IP_HDRINCL
constant sysIP_OPTIONS (line 26) | sysIP_OPTIONS = C.IP_OPTIONS
constant sysIP_ROUTER_ALERT (line 27) | sysIP_ROUTER_ALERT = C.IP_ROUTER_ALERT
constant sysIP_RECVOPTS (line 28) | sysIP_RECVOPTS = C.IP_RECVOPTS
constant sysIP_RETOPTS (line 29) | sysIP_RETOPTS = C.IP_RETOPTS
constant sysIP_PKTINFO (line 30) | sysIP_PKTINFO = C.IP_PKTINFO
constant sysIP_PKTOPTIONS (line 31) | sysIP_PKTOPTIONS = C.IP_PKTOPTIONS
constant sysIP_MTU_DISCOVER (line 32) | sysIP_MTU_DISCOVER = C.IP_MTU_DISCOVER
constant sysIP_RECVERR (line 33) | sysIP_RECVERR = C.IP_RECVERR
constant sysIP_RECVTTL (line 34) | sysIP_RECVTTL = C.IP_RECVTTL
constant sysIP_RECVTOS (line 35) | sysIP_RECVTOS = C.IP_RECVTOS
constant sysIP_MTU (line 36) | sysIP_MTU = C.IP_MTU
constant sysIP_FREEBIND (line 37) | sysIP_FREEBIND = C.IP_FREEBIND
constant sysIP_TRANSPARENT (line 38) | sysIP_TRANSPARENT = C.IP_TRANSPARENT
constant sysIP_RECVRETOPTS (line 39) | sysIP_RECVRETOPTS = C.IP_RECVRETOPTS
constant sysIP_ORIGDSTADDR (line 40) | sysIP_ORIGDSTADDR = C.IP_ORIGDSTADDR
constant sysIP_RECVORIGDSTADDR (line 41) | sysIP_RECVORIGDSTADDR = C.IP_RECVORIGDSTADDR
constant sysIP_MINTTL (line 42) | sysIP_MINTTL = C.IP_MINTTL
constant sysIP_NODEFRAG (line 43) | sysIP_NODEFRAG = C.IP_NODEFRAG
constant sysIP_UNICAST_IF (line 44) | sysIP_UNICAST_IF = C.IP_UNICAST_IF
constant sysIP_MULTICAST_IF (line 46) | sysIP_MULTICAST_IF = C.IP_MULTICAST_IF
constant sysIP_MULTICAST_TTL (line 47) | sysIP_MULTICAST_TTL = C.IP_MULTICAST_TTL
constant sysIP_MULTICAST_LOOP (line 48) | sysIP_MULTICAST_LOOP = C.IP_MULTICAST_LOOP
constant sysIP_ADD_MEMBERSHIP (line 49) | sysIP_ADD_MEMBERSHIP = C.IP_ADD_MEMBERSHIP
constant sysIP_DROP_MEMBERSHIP (line 50) | sysIP_DROP_MEMBERSHIP = C.IP_DROP_MEMBERSHIP
constant sysIP_UNBLOCK_SOURCE (line 51) | sysIP_UNBLOCK_SOURCE = C.IP_UNBLOCK_SOURCE
constant sysIP_BLOCK_SOURCE (line 52) | sysIP_BLOCK_SOURCE = C.IP_BLOCK_SOURCE
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 53) | sysIP_ADD_SOURCE_MEMBERSHIP = C.IP_ADD_SOURCE_MEMBERSHIP
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 54) | sysIP_DROP_SOURCE_MEMBERSHIP = C.IP_DROP_SOURCE_MEMBERSHIP
constant sysIP_MSFILTER (line 55) | sysIP_MSFILTER = C.IP_MSFILTER
constant sysMCAST_JOIN_GROUP (line 56) | sysMCAST_JOIN_GROUP = C.MCAST_JOIN_GROUP
constant sysMCAST_LEAVE_GROUP (line 57) | sysMCAST_LEAVE_GROUP = C.MCAST_LEAVE_GROUP
constant sysMCAST_JOIN_SOURCE_GROUP (line 58) | sysMCAST_JOIN_SOURCE_GROUP = C.MCAST_JOIN_SOURCE_GROUP
constant sysMCAST_LEAVE_SOURCE_GROUP (line 59) | sysMCAST_LEAVE_SOURCE_GROUP = C.MCAST_LEAVE_SOURCE_GROUP
constant sysMCAST_BLOCK_SOURCE (line 60) | sysMCAST_BLOCK_SOURCE = C.MCAST_BLOCK_SOURCE
constant sysMCAST_UNBLOCK_SOURCE (line 61) | sysMCAST_UNBLOCK_SOURCE = C.MCAST_UNBLOCK_SOURCE
constant sysMCAST_MSFILTER (line 62) | sysMCAST_MSFILTER = C.MCAST_MSFILTER
constant sysIP_MULTICAST_ALL (line 63) | sysIP_MULTICAST_ALL = C.IP_MULTICAST_ALL
constant sysICMP_FILTER (line 72) | sysICMP_FILTER = C.ICMP_FILTER
constant sysSO_EE_ORIGIN_NONE (line 74) | sysSO_EE_ORIGIN_NONE = C.SO_EE_ORIGIN_NONE
constant sysSO_EE_ORIGIN_LOCAL (line 75) | sysSO_EE_ORIGIN_LOCAL = C.SO_EE_ORIGIN_LOCAL
constant sysSO_EE_ORIGIN_ICMP (line 76) | sysSO_EE_ORIGIN_ICMP = C.SO_EE_ORIGIN_ICMP
constant sysSO_EE_ORIGIN_ICMP6 (line 77) | sysSO_EE_ORIGIN_ICMP6 = C.SO_EE_ORIGIN_ICMP6
constant sysSO_EE_ORIGIN_TXSTATUS (line 78) | sysSO_EE_ORIGIN_TXSTATUS = C.SO_EE_ORIGIN_TXSTATUS
constant sysSO_EE_ORIGIN_TIMESTAMPING (line 79) | sysSO_EE_ORIGIN_TIMESTAMPING = C.SO_EE_ORIGIN_TIMESTAMPING
constant sysSOL_SOCKET (line 81) | sysSOL_SOCKET = C.SOL_SOCKET
constant sysSO_ATTACH_FILTER (line 82) | sysSO_ATTACH_FILTER = C.SO_ATTACH_FILTER
constant sizeofKernelSockaddrStorage (line 84) | sizeofKernelSockaddrStorage = C.sizeof_struct___kernel_sockaddr_storage
constant sizeofSockaddrInet (line 85) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofInetPktinfo (line 86) | sizeofInetPktinfo = C.sizeof_struct_in_pktinfo
constant sizeofSockExtendedErr (line 87) | sizeofSockExtendedErr = C.sizeof_struct_sock_extended_err
constant sizeofIPMreq (line 89) | sizeofIPMreq = C.sizeof_struct_ip_mreq
constant sizeofIPMreqn (line 90) | sizeofIPMreqn = C.sizeof_struct_ip_mreqn
constant sizeofIPMreqSource (line 91) | sizeofIPMreqSource = C.sizeof_struct_ip_mreq_source
constant sizeofGroupReq (line 92) | sizeofGroupReq = C.sizeof_struct_group_req
constant sizeofGroupSourceReq (line 93) | sizeofGroupSourceReq = C.sizeof_struct_group_source_req
constant sizeofICMPFilter (line 95) | sizeofICMPFilter = C.sizeof_struct_icmp_filter
constant sizeofSockFprog (line 97) | sizeofSockFprog = C.sizeof_struct_sock_fprog
type kernelSockaddrStorage (line 100) | type kernelSockaddrStorage
type sockaddrInet (line 102) | type sockaddrInet
type inetPktinfo (line 104) | type inetPktinfo
type sockExtendedErr (line 106) | type sockExtendedErr
type ipMreq (line 108) | type ipMreq
type ipMreqn (line 110) | type ipMreqn
type ipMreqSource (line 112) | type ipMreqSource
type groupReq (line 114) | type groupReq
type groupSourceReq (line 116) | type groupSourceReq
type icmpFilter (line 118) | type icmpFilter
type sockFProg (line 120) | type sockFProg
type sockFilter (line 122) | type sockFilter
FILE: vendor/golang.org/x/net/ipv4/defs_netbsd.go
constant sysIP_OPTIONS (line 17) | sysIP_OPTIONS = C.IP_OPTIONS
constant sysIP_HDRINCL (line 18) | sysIP_HDRINCL = C.IP_HDRINCL
constant sysIP_TOS (line 19) | sysIP_TOS = C.IP_TOS
constant sysIP_TTL (line 20) | sysIP_TTL = C.IP_TTL
constant sysIP_RECVOPTS (line 21) | sysIP_RECVOPTS = C.IP_RECVOPTS
constant sysIP_RECVRETOPTS (line 22) | sysIP_RECVRETOPTS = C.IP_RECVRETOPTS
constant sysIP_RECVDSTADDR (line 23) | sysIP_RECVDSTADDR = C.IP_RECVDSTADDR
constant sysIP_RETOPTS (line 24) | sysIP_RETOPTS = C.IP_RETOPTS
constant sysIP_RECVIF (line 25) | sysIP_RECVIF = C.IP_RECVIF
constant sysIP_RECVTTL (line 26) | sysIP_RECVTTL = C.IP_RECVTTL
constant sysIP_MULTICAST_IF (line 28) | sysIP_MULTICAST_IF = C.IP_MULTICAST_IF
constant sysIP_MULTICAST_TTL (line 29) | sysIP_MULTICAST_TTL = C.IP_MULTICAST_TTL
constant sysIP_MULTICAST_LOOP (line 30) | sysIP_MULTICAST_LOOP = C.IP_MULTICAST_LOOP
constant sysIP_ADD_MEMBERSHIP (line 31) | sysIP_ADD_MEMBERSHIP = C.IP_ADD_MEMBERSHIP
constant sysIP_DROP_MEMBERSHIP (line 32) | sysIP_DROP_MEMBERSHIP = C.IP_DROP_MEMBERSHIP
constant sizeofIPMreq (line 34) | sizeofIPMreq = C.sizeof_struct_ip_mreq
type ipMreq (line 37) | type ipMreq
FILE: vendor/golang.org/x/net/ipv4/defs_openbsd.go
constant sysIP_OPTIONS (line 17) | sysIP_OPTIONS = C.IP_OPTIONS
constant sysIP_HDRINCL (line 18) | sysIP_HDRINCL = C.IP_HDRINCL
constant sysIP_TOS (line 19) | sysIP_TOS = C.IP_TOS
constant sysIP_TTL (line 20) | sysIP_TTL = C.IP_TTL
constant sysIP_RECVOPTS (line 21) | sysIP_RECVOPTS = C.IP_RECVOPTS
constant sysIP_RECVRETOPTS (line 22) | sysIP_RECVRETOPTS = C.IP_RECVRETOPTS
constant sysIP_RECVDSTADDR (line 23) | sysIP_RECVDSTADDR = C.IP_RECVDSTADDR
constant sysIP_RETOPTS (line 24) | sysIP_RETOPTS = C.IP_RETOPTS
constant sysIP_RECVIF (line 25) | sysIP_RECVIF = C.IP_RECVIF
constant sysIP_RECVTTL (line 26) | sysIP_RECVTTL = C.IP_RECVTTL
constant sysIP_MULTICAST_IF (line 28) | sysIP_MULTICAST_IF = C.IP_MULTICAST_IF
constant sysIP_MULTICAST_TTL (line 29) | sysIP_MULTICAST_TTL = C.IP_MULTICAST_TTL
constant sysIP_MULTICAST_LOOP (line 30) | sysIP_MULTICAST_LOOP = C.IP_MULTICAST_LOOP
constant sysIP_ADD_MEMBERSHIP (line 31) | sysIP_ADD_MEMBERSHIP = C.IP_ADD_MEMBERSHIP
constant sysIP_DROP_MEMBERSHIP (line 32) | sysIP_DROP_MEMBERSHIP = C.IP_DROP_MEMBERSHIP
constant sizeofIPMreq (line 34) | sizeofIPMreq = C.sizeof_struct_ip_mreq
type ipMreq (line 37) | type ipMreq
FILE: vendor/golang.org/x/net/ipv4/defs_solaris.go
constant sysIP_OPTIONS (line 19) | sysIP_OPTIONS = C.IP_OPTIONS
constant sysIP_HDRINCL (line 20) | sysIP_HDRINCL = C.IP_HDRINCL
constant sysIP_TOS (line 21) | sysIP_TOS = C.IP_TOS
constant sysIP_TTL (line 22) | sysIP_TTL = C.IP_TTL
constant sysIP_RECVOPTS (line 23) | sysIP_RECVOPTS = C.IP_RECVOPTS
constant sysIP_RECVRETOPTS (line 24) | sysIP_RECVRETOPTS = C.IP_RECVRETOPTS
constant sysIP_RECVDSTADDR (line 25) | sysIP_RECVDSTADDR = C.IP_RECVDSTADDR
constant sysIP_RETOPTS (line 26) | sysIP_RETOPTS = C.IP_RETOPTS
constant sysIP_RECVIF (line 27) | sysIP_RECVIF = C.IP_RECVIF
constant sysIP_RECVSLLA (line 28) | sysIP_RECVSLLA = C.IP_RECVSLLA
constant sysIP_RECVTTL (line 29) | sysIP_RECVTTL = C.IP_RECVTTL
constant sysIP_MULTICAST_IF (line 31) | sysIP_MULTICAST_IF = C.IP_MULTICAST_IF
constant sysIP_MULTICAST_TTL (line 32) | sysIP_MULTICAST_TTL = C.IP_MULTICAST_TTL
constant sysIP_MULTICAST_LOOP (line 33) | sysIP_MULTICAST_LOOP = C.IP_MULTICAST_LOOP
constant sysIP_ADD_MEMBERSHIP (line 34) | sysIP_ADD_MEMBERSHIP = C.IP_ADD_MEMBERSHIP
constant sysIP_DROP_MEMBERSHIP (line 35) | sysIP_DROP_MEMBERSHIP = C.IP_DROP_MEMBERSHIP
constant sysIP_BLOCK_SOURCE (line 36) | sysIP_BLOCK_SOURCE = C.IP_BLOCK_SOURCE
constant sysIP_UNBLOCK_SOURCE (line 37) | sysIP_UNBLOCK_SOURCE = C.IP_UNBLOCK_SOURCE
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 38) | sysIP_ADD_SOURCE_MEMBERSHIP = C.IP_ADD_SOURCE_MEMBERSHIP
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 39) | sysIP_DROP_SOURCE_MEMBERSHIP = C.IP_DROP_SOURCE_MEMBERSHIP
constant sysIP_NEXTHOP (line 40) | sysIP_NEXTHOP = C.IP_NEXTHOP
constant sysIP_PKTINFO (line 42) | sysIP_PKTINFO = C.IP_PKTINFO
constant sysIP_RECVPKTINFO (line 43) | sysIP_RECVPKTINFO = C.IP_RECVPKTINFO
constant sysIP_DONTFRAG (line 44) | sysIP_DONTFRAG = C.IP_DONTFRAG
constant sysIP_BOUND_IF (line 46) | sysIP_BOUND_IF = C.IP_BOUND_IF
constant sysIP_UNSPEC_SRC (line 47) | sysIP_UNSPEC_SRC = C.IP_UNSPEC_SRC
constant sysIP_BROADCAST_TTL (line 48) | sysIP_BROADCAST_TTL = C.IP_BROADCAST_TTL
constant sysIP_DHCPINIT_IF (line 49) | sysIP_DHCPINIT_IF = C.IP_DHCPINIT_IF
constant sysIP_REUSEADDR (line 51) | sysIP_REUSEADDR = C.IP_REUSEADDR
constant sysIP_DONTROUTE (line 52) | sysIP_DONTROUTE = C.IP_DONTROUTE
constant sysIP_BROADCAST (line 53) | sysIP_BROADCAST = C.IP_BROADCAST
constant sysMCAST_JOIN_GROUP (line 55) | sysMCAST_JOIN_GROUP = C.MCAST_JOIN_GROUP
constant sysMCAST_LEAVE_GROUP (line 56) | sysMCAST_LEAVE_GROUP = C.MCAST_LEAVE_GROUP
constant sysMCAST_BLOCK_SOURCE (line 57) | sysMCAST_BLOCK_SOURCE = C.MCAST_BLOCK_SOURCE
constant sysMCAST_UNBLOCK_SOURCE (line 58) | sysMCAST_UNBLOCK_SOURCE = C.MCAST_UNBLOCK_SOURCE
constant sysMCAST_JOIN_SOURCE_GROUP (line 59) | sysMCAST_JOIN_SOURCE_GROUP = C.MCAST_JOIN_SOURCE_GROUP
constant sysMCAST_LEAVE_SOURCE_GROUP (line 60) | sysMCAST_LEAVE_SOURCE_GROUP = C.MCAST_LEAVE_SOURCE_GROUP
constant sizeofSockaddrStorage (line 62) | sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage
constant sizeofSockaddrInet (line 63) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofInetPktinfo (line 64) | sizeofInetPktinfo = C.sizeof_struct_in_pktinfo
constant sizeofIPMreq (line 66) | sizeofIPMreq = C.sizeof_struct_ip_mreq
constant sizeofIPMreqSource (line 67) | sizeofIPMreqSource = C.sizeof_struct_ip_mreq_source
constant sizeofGroupReq (line 68) | sizeofGroupReq = C.sizeof_struct_group_req
constant sizeofGroupSourceReq (line 69) | sizeofGroupSourceReq = C.sizeof_struct_group_source_req
type sockaddrStorage (line 72) | type sockaddrStorage
type sockaddrInet (line 74) | type sockaddrInet
type inetPktinfo (line 76) | type inetPktinfo
type ipMreq (line 78) | type ipMreq
type ipMreqSource (line 80) | type ipMreqSource
type groupReq (line 82) | type groupReq
type groupSourceReq (line 84) | type groupSourceReq
FILE: vendor/golang.org/x/net/ipv4/dgramopt.go
method MulticastTTL (line 16) | func (c *dgramOpt) MulticastTTL() (int, error) {
method SetMulticastTTL (line 29) | func (c *dgramOpt) SetMulticastTTL(ttl int) error {
method MulticastInterface (line 42) | func (c *dgramOpt) MulticastInterface() (*net.Interface, error) {
method SetMulticastInterface (line 55) | func (c *dgramOpt) SetMulticastInterface(ifi *net.Interface) error {
method MulticastLoopback (line 68) | func (c *dgramOpt) MulticastLoopback() (bool, error) {
method SetMulticastLoopback (line 85) | func (c *dgramOpt) SetMulticastLoopback(on bool) error {
method JoinGroup (line 105) | func (c *dgramOpt) JoinGroup(ifi *net.Interface, group net.Addr) error {
method LeaveGroup (line 123) | func (c *dgramOpt) LeaveGroup(ifi *net.Interface, group net.Addr) error {
method JoinSourceSpecificGroup (line 144) | func (c *dgramOpt) JoinSourceSpecificGroup(ifi *net.Interface, group, so...
method LeaveSourceSpecificGroup (line 165) | func (c *dgramOpt) LeaveSourceSpecificGroup(ifi *net.Interface, group, s...
method ExcludeSourceSpecificGroup (line 187) | func (c *dgramOpt) ExcludeSourceSpecificGroup(ifi *net.Interface, group,...
method IncludeSourceSpecificGroup (line 208) | func (c *dgramOpt) IncludeSourceSpecificGroup(ifi *net.Interface, group,...
method ICMPFilter (line 229) | func (c *dgramOpt) ICMPFilter() (*ICMPFilter, error) {
method SetICMPFilter (line 242) | func (c *dgramOpt) SetICMPFilter(f *ICMPFilter) error {
method SetBPF (line 256) | func (c *dgramOpt) SetBPF(filter []bpf.RawInstruction) error {
FILE: vendor/golang.org/x/net/ipv4/endpoint.go
type Conn (line 23) | type Conn struct
type genericOpt (line 27) | type genericOpt struct
method ok (line 31) | func (c *genericOpt) ok() bool { return c != nil && c.Conn != nil }
function NewConn (line 34) | func NewConn(c net.Conn) *Conn {
type PacketConn (line 46) | type PacketConn struct
method SetControlMessage (line 59) | func (c *PacketConn) SetControlMessage(cf ControlFlags, on bool) error {
method SetDeadline (line 68) | func (c *PacketConn) SetDeadline(t time.Time) error {
method SetReadDeadline (line 77) | func (c *PacketConn) SetReadDeadline(t time.Time) error {
method SetWriteDeadline (line 86) | func (c *PacketConn) SetWriteDeadline(t time.Time) error {
method Close (line 94) | func (c *PacketConn) Close() error {
type dgramOpt (line 52) | type dgramOpt struct
method ok (line 56) | func (c *dgramOpt) ok() bool { return c != nil && c.Conn != nil }
function NewPacketConn (line 103) | func NewPacketConn(c net.PacketConn) *PacketConn {
type RawConn (line 118) | type RawConn struct
method SetControlMessage (line 125) | func (c *RawConn) SetControlMessage(cf ControlFlags, on bool) error {
method SetDeadline (line 134) | func (c *RawConn) SetDeadline(t time.Time) error {
method SetReadDeadline (line 143) | func (c *RawConn) SetReadDeadline(t time.Time) error {
method SetWriteDeadline (line 152) | func (c *RawConn) SetWriteDeadline(t time.Time) error {
method Close (line 160) | func (c *RawConn) Close() error {
function NewRawConn (line 169) | func NewRawConn(c net.PacketConn) (*RawConn, error) {
FILE: vendor/golang.org/x/net/ipv4/example_test.go
function ExampleConn_markingTCP (line 19) | func ExampleConn_markingTCP() {
function ExamplePacketConn_servingOneShotMulticastDNS (line 49) | func ExamplePacketConn_servingOneShotMulticastDNS() {
function ExamplePacketConn_tracingIPPacketRoute (line 86) | func ExamplePacketConn_tracingIPPacketRoute() {
function ExampleRawConn_advertisingOSPFHello (line 176) | func ExampleRawConn_advertisingOSPFHello() {
FILE: vendor/golang.org/x/net/ipv4/gen.go
function main (line 29) | func main() {
function genzsys (line 40) | func genzsys() error {
function geniana (line 80) | func geniana() error {
function parseICMPv4Parameters (line 109) | func parseICMPv4Parameters(w io.Writer, r io.Reader) error {
type icmpv4Parameters (line 138) | type icmpv4Parameters struct
method escape (line 157) | func (icp *icmpv4Parameters) escape() []canonICMPv4ParamRecord {
type canonICMPv4ParamRecord (line 151) | type canonICMPv4ParamRecord struct
FILE: vendor/golang.org/x/net/ipv4/genericopt.go
method TOS (line 10) | func (c *genericOpt) TOS() (int, error) {
method SetTOS (line 23) | func (c *genericOpt) SetTOS(tos int) error {
method TTL (line 35) | func (c *genericOpt) TTL() (int, error) {
method SetTTL (line 48) | func (c *genericOpt) SetTTL(ttl int) error {
FILE: vendor/golang.org/x/net/ipv4/header.go
constant Version (line 18) | Version = 4
constant HeaderLen (line 19) | HeaderLen = 20
constant maxHeaderLen (line 20) | maxHeaderLen = 60
type HeaderFlags (line 23) | type HeaderFlags
constant MoreFragments (line 26) | MoreFragments HeaderFlags = 1 << iota
constant DontFragment (line 27) | DontFragment
type Header (line 31) | type Header struct
method String (line 47) | func (h *Header) String() string {
method Marshal (line 55) | func (h *Header) Marshal() ([]byte, error) {
method Parse (line 102) | func (h *Header) Parse(b []byte) error {
function ParseHeader (line 153) | func ParseHeader(b []byte) (*Header, error) {
FILE: vendor/golang.org/x/net/ipv4/header_test.go
type headerTest (line 19) | type headerTest struct
function TestMarshalHeader (line 159) | func TestMarshalHeader(t *testing.T) {
function TestParseHeader (line 191) | func TestParseHeader(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv4/helper.go
function boolint (line 26) | func boolint(b bool) int {
function netAddrToIP4 (line 33) | func netAddrToIP4(a net.Addr) net.IP {
function opAddr (line 47) | func opAddr(a net.Addr) net.Addr {
FILE: vendor/golang.org/x/net/ipv4/iana.go
constant ICMPTypeEchoReply (line 8) | ICMPTypeEchoReply ICMPType = 0
constant ICMPTypeDestinationUnreachable (line 9) | ICMPTypeDestinationUnreachable ICMPType = 3
constant ICMPTypeRedirect (line 10) | ICMPTypeRedirect ICMPType = 5
constant ICMPTypeEcho (line 11) | ICMPTypeEcho ICMPType = 8
constant ICMPTypeRouterAdvertisement (line 12) | ICMPTypeRouterAdvertisement ICMPType = 9
constant ICMPTypeRouterSolicitation (line 13) | ICMPTypeRouterSolicitation ICMPType = 10
constant ICMPTypeTimeExceeded (line 14) | ICMPTypeTimeExceeded ICMPType = 11
constant ICMPTypeParameterProblem (line 15) | ICMPTypeParameterProblem ICMPType = 12
constant ICMPTypeTimestamp (line 16) | ICMPTypeTimestamp ICMPType = 13
constant ICMPTypeTimestampReply (line 17) | ICMPTypeTimestampReply ICMPType = 14
constant ICMPTypePhoturis (line 18) | ICMPTypePhoturis ICMPType = 40
FILE: vendor/golang.org/x/net/ipv4/icmp.go
type ICMPType (line 10) | type ICMPType
method String (line 12) | func (typ ICMPType) String() string {
method Protocol (line 21) | func (typ ICMPType) Protocol() int {
type ICMPFilter (line 33) | type ICMPFilter struct
method Accept (line 39) | func (f *ICMPFilter) Accept(typ ICMPType) {
method Block (line 45) | func (f *ICMPFilter) Block(typ ICMPType) {
method SetAll (line 50) | func (f *ICMPFilter) SetAll(block bool) {
method WillBlock (line 55) | func (f *ICMPFilter) WillBlock(typ ICMPType) bool {
FILE: vendor/golang.org/x/net/ipv4/icmp_linux.go
method accept (line 7) | func (f *icmpFilter) accept(typ ICMPType) {
method block (line 11) | func (f *icmpFilter) block(typ ICMPType) {
method setAll (line 15) | func (f *icmpFilter) setAll(block bool) {
method willBlock (line 23) | func (f *icmpFilter) willBlock(typ ICMPType) bool {
FILE: vendor/golang.org/x/net/ipv4/icmp_stub.go
constant sizeofICMPFilter (line 9) | sizeofICMPFilter = 0x0
type icmpFilter (line 11) | type icmpFilter struct
method accept (line 14) | func (f *icmpFilter) accept(typ ICMPType) {
method block (line 17) | func (f *icmpFilter) block(typ ICMPType) {
method setAll (line 20) | func (f *icmpFilter) setAll(block bool) {
method willBlock (line 23) | func (f *icmpFilter) willBlock(typ ICMPType) bool {
FILE: vendor/golang.org/x/net/ipv4/icmp_test.go
function TestICMPString (line 26) | func TestICMPString(t *testing.T) {
function TestICMPFilter (line 35) | func TestICMPFilter(t *testing.T) {
function TestSetICMPFilter (line 63) | func TestSetICMPFilter(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv4/multicast_test.go
function TestPacketConnReadWriteMulticastUDP (line 30) | func TestPacketConnReadWriteMulticastUDP(t *testing.T) {
function TestPacketConnReadWriteMulticastICMP (line 118) | func TestPacketConnReadWriteMulticastICMP(t *testing.T) {
function TestRawConnReadWriteMulticastICMP (line 229) | func TestRawConnReadWriteMulticastICMP(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv4/multicastlistener_test.go
function TestUDPSinglePacketConnWithMultipleGroupListeners (line 22) | func TestUDPSinglePacketConnWithMultipleGroupListeners(t *testing.T) {
function TestUDPMultiplePacketConnWithMultipleGroupListeners (line 62) | func TestUDPMultiplePacketConnWithMultipleGroupListeners(t *testing.T) {
function TestUDPPerInterfaceSinglePacketConnWithSingleGroupListener (line 117) | func TestUDPPerInterfaceSinglePacketConnWithSingleGroupListener(t *testi...
function TestIPSingleRawConnWithSingleGroupListener (line 173) | func TestIPSingleRawConnWithSingleGroupListener(t *testing.T) {
function TestIPPerInterfaceSingleRawConnWithSingleGroupListener (line 218) | func TestIPPerInterfaceSingleRawConnWithSingleGroupListener(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv4/multicastsockopt_test.go
function TestPacketConnMulticastSocketOptions (line 27) | func TestPacketConnMulticastSocketOptions(t *testing.T) {
function TestRawConnMulticastSocketOptions (line 67) | func TestRawConnMulticastSocketOptions(t *testing.T) {
type testIPv4MulticastConn (line 100) | type testIPv4MulticastConn interface
function testMulticastSocketOptions (line 113) | func testMulticastSocketOptions(t *testing.T, c testIPv4MulticastConn, i...
function testSourceSpecificMulticastSocketOptions (line 151) | func testSourceSpecificMulticastSocketOptions(t *testing.T, c testIPv4Mu...
FILE: vendor/golang.org/x/net/ipv4/packet.go
type packetHandler (line 18) | type packetHandler struct
method ok (line 24) | func (c *packetHandler) ok() bool { return c != nil && c.IPConn != nil...
method ReadFrom (line 29) | func (c *packetHandler) ReadFrom(b []byte) (h *Header, p []byte, cm *C...
method WriteTo (line 64) | func (c *packetHandler) WriteTo(h *Header, p []byte, cm *ControlMessag...
function slicePacket (line 36) | func slicePacket(b []byte) (h, p []byte, err error) {
FILE: vendor/golang.org/x/net/ipv4/packet_go1_8.go
method readFrom (line 11) | func (c *packetHandler) readFrom(b []byte) (h *Header, p []byte, cm *Con...
method writeTo (line 38) | func (c *packetHandler) writeTo(h *Header, p []byte, cm *ControlMessage)...
FILE: vendor/golang.org/x/net/ipv4/packet_go1_9.go
method readFrom (line 15) | func (c *packetHandler) readFrom(b []byte) (h *Header, p []byte, cm *Con...
method writeTo (line 44) | func (c *packetHandler) writeTo(h *Header, p []byte, cm *ControlMessage)...
FILE: vendor/golang.org/x/net/ipv4/payload.go
type payloadHandler (line 17) | type payloadHandler struct
method ok (line 23) | func (c *payloadHandler) ok() bool { return c != nil && c.PacketConn !...
FILE: vendor/golang.org/x/net/ipv4/payload_cmsg.go
method ReadFrom (line 18) | func (c *payloadHandler) ReadFrom(b []byte) (n int, cm *ControlMessage, ...
method WriteTo (line 31) | func (c *payloadHandler) WriteTo(b []byte, cm *ControlMessage, dst net.A...
FILE: vendor/golang.org/x/net/ipv4/payload_cmsg_go1_8.go
method readFrom (line 12) | func (c *payloadHandler) readFrom(b []byte) (n int, cm *ControlMessage, ...
method writeTo (line 45) | func (c *payloadHandler) writeTo(b []byte, cm *ControlMessage, dst net.A...
FILE: vendor/golang.org/x/net/ipv4/payload_cmsg_go1_9.go
method readFrom (line 16) | func (c *payloadHandler) readFrom(b []byte) (int, *ControlMessage, net.A...
method writeTo (line 56) | func (c *payloadHandler) writeTo(b []byte, cm *ControlMessage, dst net.A...
FILE: vendor/golang.org/x/net/ipv4/payload_nocmsg.go
method ReadFrom (line 18) | func (c *payloadHandler) ReadFrom(b []byte) (n int, cm *ControlMessage, ...
method WriteTo (line 34) | func (c *payloadHandler) WriteTo(b []byte, cm *ControlMessage, dst net.A...
FILE: vendor/golang.org/x/net/ipv4/readwrite_go1_8_test.go
function BenchmarkPacketConnReadWriteUnicast (line 23) | func BenchmarkPacketConnReadWriteUnicast(b *testing.B) {
function TestPacketConnConcurrentReadWriteUnicast (line 127) | func TestPacketConnConcurrentReadWriteUnicast(t *testing.T) {
function testPacketConnConcurrentReadWriteUnicast (line 180) | func testPacketConnConcurrentReadWriteUnicast(t *testing.T, p *ipv4.Pack...
FILE: vendor/golang.org/x/net/ipv4/readwrite_go1_9_test.go
function BenchmarkPacketConnReadWriteUnicast (line 23) | func BenchmarkPacketConnReadWriteUnicast(b *testing.B) {
function TestPacketConnConcurrentReadWriteUnicast (line 173) | func TestPacketConnConcurrentReadWriteUnicast(t *testing.T) {
function testPacketConnConcurrentReadWriteUnicast (line 232) | func testPacketConnConcurrentReadWriteUnicast(t *testing.T, p *ipv4.Pack...
FILE: vendor/golang.org/x/net/ipv4/readwrite_test.go
function BenchmarkReadWriteUnicast (line 19) | func BenchmarkReadWriteUnicast(b *testing.B) {
function TestPacketConnConcurrentReadWriteUnicastUDP (line 62) | func TestPacketConnConcurrentReadWriteUnicastUDP(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv4/sockopt.go
constant ssoTOS (line 11) | ssoTOS = iota
constant ssoTTL (line 12) | ssoTTL
constant ssoMulticastTTL (line 13) | ssoMulticastTTL
constant ssoMulticastInterface (line 14) | ssoMulticastInterface
constant ssoMulticastLoopback (line 15) | ssoMulticastLoopback
constant ssoReceiveTTL (line 16) | ssoReceiveTTL
constant ssoReceiveDst (line 17) | ssoReceiveDst
constant ssoReceiveInterface (line 18) | ssoReceiveInterface
constant ssoPacketInfo (line 19) | ssoPacketInfo
constant ssoHeaderPrepend (line 20) | ssoHeaderPrepend
constant ssoStripHeader (line 21) | ssoStripHeader
constant ssoICMPFilter (line 22) | ssoICMPFilter
constant ssoJoinGroup (line 23) | ssoJoinGroup
constant ssoLeaveGroup (line 24) | ssoLeaveGroup
constant ssoJoinSourceGroup (line 25) | ssoJoinSourceGroup
constant ssoLeaveSourceGroup (line 26) | ssoLeaveSourceGroup
constant ssoBlockSourceGroup (line 27) | ssoBlockSourceGroup
constant ssoUnblockSourceGroup (line 28) | ssoUnblockSourceGroup
constant ssoAttachFilter (line 29) | ssoAttachFilter
constant ssoTypeIPMreq (line 34) | ssoTypeIPMreq = iota + 1
constant ssoTypeIPMreqn (line 35) | ssoTypeIPMreqn
constant ssoTypeGroupReq (line 36) | ssoTypeGroupReq
constant ssoTypeGroupSourceReq (line 37) | ssoTypeGroupSourceReq
type sockOpt (line 41) | type sockOpt struct
FILE: vendor/golang.org/x/net/ipv4/sockopt_posix.go
method getMulticastInterface (line 17) | func (so *sockOpt) getMulticastInterface(c *socket.Conn) (*net.Interface...
method setMulticastInterface (line 26) | func (so *sockOpt) setMulticastInterface(c *socket.Conn, ifi *net.Interf...
method getICMPFilter (line 35) | func (so *sockOpt) getICMPFilter(c *socket.Conn) (*ICMPFilter, error) {
method setICMPFilter (line 47) | func (so *sockOpt) setICMPFilter(c *socket.Conn, f *ICMPFilter) error {
method setGroup (line 52) | func (so *sockOpt) setGroup(c *socket.Conn, ifi *net.Interface, grp net....
method setSourceGroup (line 65) | func (so *sockOpt) setSourceGroup(c *socket.Conn, ifi *net.Interface, gr...
method setBPF (line 69) | func (so *sockOpt) setBPF(c *socket.Conn, f []bpf.RawInstruction) error {
FILE: vendor/golang.org/x/net/ipv4/sockopt_stub.go
method getMulticastInterface (line 16) | func (so *sockOpt) getMulticastInterface(c *socket.Conn) (*net.Interface...
method setMulticastInterface (line 20) | func (so *sockOpt) setMulticastInterface(c *socket.Conn, ifi *net.Interf...
method getICMPFilter (line 24) | func (so *sockOpt) getICMPFilter(c *socket.Conn) (*ICMPFilter, error) {
method setICMPFilter (line 28) | func (so *sockOpt) setICMPFilter(c *socket.Conn, f *ICMPFilter) error {
method setGroup (line 32) | func (so *sockOpt) setGroup(c *socket.Conn, ifi *net.Interface, grp net....
method setSourceGroup (line 36) | func (so *sockOpt) setSourceGroup(c *socket.Conn, ifi *net.Interface, gr...
method setBPF (line 40) | func (so *sockOpt) setBPF(c *socket.Conn, f []bpf.RawInstruction) error {
FILE: vendor/golang.org/x/net/ipv4/sys_asmreq.go
method setIPMreq (line 16) | func (so *sockOpt) setIPMreq(c *socket.Conn, ifi *net.Interface, grp net...
method getMulticastIf (line 25) | func (so *sockOpt) getMulticastIf(c *socket.Conn) (*net.Interface, error) {
method setMulticastIf (line 37) | func (so *sockOpt) setMulticastIf(c *socket.Conn, ifi *net.Interface) er...
function setIPMreqInterface (line 47) | func setIPMreqInterface(mreq *ipMreq, ifi *net.Interface) error {
function netIP4ToInterface (line 72) | func netIP4ToInterface(ip net.IP) (*net.Interface, error) {
function netInterfaceToIP4 (line 98) | func netInterfaceToIP4(ifi *net.Interface) (net.IP, error) {
FILE: vendor/golang.org/x/net/ipv4/sys_asmreq_stub.go
method setIPMreq (line 15) | func (so *sockOpt) setIPMreq(c *socket.Conn, ifi *net.Interface, grp net...
method getMulticastIf (line 19) | func (so *sockOpt) getMulticastIf(c *socket.Conn) (*net.Interface, error) {
method setMulticastIf (line 23) | func (so *sockOpt) setMulticastIf(c *socket.Conn, ifi *net.Interface) er...
FILE: vendor/golang.org/x/net/ipv4/sys_asmreqn.go
method getIPMreqn (line 16) | func (so *sockOpt) getIPMreqn(c *socket.Conn) (*net.Interface, error) {
method setIPMreqn (line 32) | func (so *sockOpt) setIPMreqn(c *socket.Conn, ifi *net.Interface, grp ne...
FILE: vendor/golang.org/x/net/ipv4/sys_asmreqn_stub.go
method getIPMreqn (line 15) | func (so *sockOpt) getIPMreqn(c *socket.Conn) (*net.Interface, error) {
method setIPMreqn (line 19) | func (so *sockOpt) setIPMreqn(c *socket.Conn, ifi *net.Interface, grp ne...
FILE: vendor/golang.org/x/net/ipv4/sys_bpf.go
method setAttachFilter (line 16) | func (so *sockOpt) setAttachFilter(c *socket.Conn, f []bpf.RawInstructio...
FILE: vendor/golang.org/x/net/ipv4/sys_bpf_stub.go
method setAttachFilter (line 14) | func (so *sockOpt) setAttachFilter(c *socket.Conn, f []bpf.RawInstructio...
FILE: vendor/golang.org/x/net/ipv4/sys_darwin.go
function init (line 41) | func init() {
method setIfindex (line 73) | func (pi *inetPktinfo) setIfindex(i int) {
method setGroup (line 77) | func (gr *groupReq) setGroup(grp net.IP) {
method setSourceGroup (line 84) | func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) {
FILE: vendor/golang.org/x/net/ipv4/sys_freebsd.go
function init (line 44) | func init() {
method setGroup (line 60) | func (gr *groupReq) setGroup(grp net.IP) {
method setSourceGroup (line 67) | func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) {
FILE: vendor/golang.org/x/net/ipv4/sys_linux.go
method setIfindex (line 42) | func (pi *inetPktinfo) setIfindex(i int) {
method setGroup (line 46) | func (gr *groupReq) setGroup(grp net.IP) {
method setSourceGroup (line 52) | func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) {
FILE: vendor/golang.org/x/net/ipv4/sys_solaris.go
method setIfindex (line 40) | func (pi *inetPktinfo) setIfindex(i int) {
method setGroup (line 44) | func (gr *groupReq) setGroup(grp net.IP) {
method setSourceGroup (line 50) | func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) {
FILE: vendor/golang.org/x/net/ipv4/sys_ssmreq.go
method setGroupReq (line 18) | func (so *sockOpt) setGroupReq(c *socket.Conn, ifi *net.Interface, grp n...
method setGroupSourceReq (line 37) | func (so *sockOpt) setGroupSourceReq(c *socket.Conn, ifi *net.Interface,...
FILE: vendor/golang.org/x/net/ipv4/sys_ssmreq_stub.go
method setGroupReq (line 15) | func (so *sockOpt) setGroupReq(c *socket.Conn, ifi *net.Interface, grp n...
method setGroupSourceReq (line 19) | func (so *sockOpt) setGroupSourceReq(c *socket.Conn, ifi *net.Interface,...
FILE: vendor/golang.org/x/net/ipv4/sys_windows.go
constant sysIP_OPTIONS (line 14) | sysIP_OPTIONS = 0x1
constant sysIP_HDRINCL (line 15) | sysIP_HDRINCL = 0x2
constant sysIP_TOS (line 16) | sysIP_TOS = 0x3
constant sysIP_TTL (line 17) | sysIP_TTL = 0x4
constant sysIP_MULTICAST_IF (line 18) | sysIP_MULTICAST_IF = 0x9
constant sysIP_MULTICAST_TTL (line 19) | sysIP_MULTICAST_TTL = 0xa
constant sysIP_MULTICAST_LOOP (line 20) | sysIP_MULTICAST_LOOP = 0xb
constant sysIP_ADD_MEMBERSHIP (line 21) | sysIP_ADD_MEMBERSHIP = 0xc
constant sysIP_DROP_MEMBERSHIP (line 22) | sysIP_DROP_MEMBERSHIP = 0xd
constant sysIP_DONTFRAGMENT (line 23) | sysIP_DONTFRAGMENT = 0xe
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 24) | sysIP_ADD_SOURCE_MEMBERSHIP = 0xf
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 25) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x10
constant sysIP_PKTINFO (line 26) | sysIP_PKTINFO = 0x13
constant sizeofInetPktinfo (line 28) | sizeofInetPktinfo = 0x8
constant sizeofIPMreq (line 29) | sizeofIPMreq = 0x8
constant sizeofIPMreqSource (line 30) | sizeofIPMreqSource = 0xc
type inetPktinfo (line 33) | type inetPktinfo struct
method setIfindex (line 65) | func (pi *inetPktinfo) setIfindex(i int) {
type ipMreq (line 38) | type ipMreq struct
type ipMreqSource (line 43) | type ipMreqSource struct
FILE: vendor/golang.org/x/net/ipv4/unicast_test.go
function TestPacketConnReadWriteUnicastUDP (line 21) | func TestPacketConnReadWriteUnicastUDP(t *testing.T) {
function TestPacketConnReadWriteUnicastICMP (line 72) | func TestPacketConnReadWriteUnicastICMP(t *testing.T) {
function TestRawConnReadWriteUnicastICMP (line 158) | func TestRawConnReadWriteUnicastICMP(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv4/unicastsockopt_test.go
function TestConnUnicastSocketOptions (line 17) | func TestConnUnicastSocketOptions(t *testing.T) {
function TestPacketConnUnicastSocketOptions (line 63) | func TestPacketConnUnicastSocketOptions(t *testing.T) {
function TestRawConnUnicastSocketOptions (line 89) | func TestRawConnUnicastSocketOptions(t *testing.T) {
type testIPv4UnicastConn (line 116) | type testIPv4UnicastConn interface
function testUnicastSocketOptions (line 123) | func testUnicastSocketOptions(t *testing.T, c testIPv4UnicastConn) {
FILE: vendor/golang.org/x/net/ipv4/zsys_darwin.go
constant sysIP_OPTIONS (line 7) | sysIP_OPTIONS = 0x1
constant sysIP_HDRINCL (line 8) | sysIP_HDRINCL = 0x2
constant sysIP_TOS (line 9) | sysIP_TOS = 0x3
constant sysIP_TTL (line 10) | sysIP_TTL = 0x4
constant sysIP_RECVOPTS (line 11) | sysIP_RECVOPTS = 0x5
constant sysIP_RECVRETOPTS (line 12) | sysIP_RECVRETOPTS = 0x6
constant sysIP_RECVDSTADDR (line 13) | sysIP_RECVDSTADDR = 0x7
constant sysIP_RETOPTS (line 14) | sysIP_RETOPTS = 0x8
constant sysIP_RECVIF (line 15) | sysIP_RECVIF = 0x14
constant sysIP_STRIPHDR (line 16) | sysIP_STRIPHDR = 0x17
constant sysIP_RECVTTL (line 17) | sysIP_RECVTTL = 0x18
constant sysIP_BOUND_IF (line 18) | sysIP_BOUND_IF = 0x19
constant sysIP_PKTINFO (line 19) | sysIP_PKTINFO = 0x1a
constant sysIP_RECVPKTINFO (line 20) | sysIP_RECVPKTINFO = 0x1a
constant sysIP_MULTICAST_IF (line 22) | sysIP_MULTICAST_IF = 0x9
constant sysIP_MULTICAST_TTL (line 23) | sysIP_MULTICAST_TTL = 0xa
constant sysIP_MULTICAST_LOOP (line 24) | sysIP_MULTICAST_LOOP = 0xb
constant sysIP_ADD_MEMBERSHIP (line 25) | sysIP_ADD_MEMBERSHIP = 0xc
constant sysIP_DROP_MEMBERSHIP (line 26) | sysIP_DROP_MEMBERSHIP = 0xd
constant sysIP_MULTICAST_VIF (line 27) | sysIP_MULTICAST_VIF = 0xe
constant sysIP_MULTICAST_IFINDEX (line 28) | sysIP_MULTICAST_IFINDEX = 0x42
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 29) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x46
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 30) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x47
constant sysIP_BLOCK_SOURCE (line 31) | sysIP_BLOCK_SOURCE = 0x48
constant sysIP_UNBLOCK_SOURCE (line 32) | sysIP_UNBLOCK_SOURCE = 0x49
constant sysMCAST_JOIN_GROUP (line 33) | sysMCAST_JOIN_GROUP = 0x50
constant sysMCAST_LEAVE_GROUP (line 34) | sysMCAST_LEAVE_GROUP = 0x51
constant sysMCAST_JOIN_SOURCE_GROUP (line 35) | sysMCAST_JOIN_SOURCE_GROUP = 0x52
constant sysMCAST_LEAVE_SOURCE_GROUP (line 36) | sysMCAST_LEAVE_SOURCE_GROUP = 0x53
constant sysMCAST_BLOCK_SOURCE (line 37) | sysMCAST_BLOCK_SOURCE = 0x54
constant sysMCAST_UNBLOCK_SOURCE (line 38) | sysMCAST_UNBLOCK_SOURCE = 0x55
constant sizeofSockaddrStorage (line 40) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 41) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 42) | sizeofInetPktinfo = 0xc
constant sizeofIPMreq (line 44) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 45) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 46) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 47) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 48) | sizeofGroupSourceReq = 0x104
type sockaddrStorage (line 51) | type sockaddrStorage struct
type sockaddrInet (line 59) | type sockaddrInet struct
type inetPktinfo (line 67) | type inetPktinfo struct
type ipMreq (line 73) | type ipMreq struct
type ipMreqn (line 78) | type ipMreqn struct
type ipMreqSource (line 84) | type ipMreqSource struct
type groupReq (line 90) | type groupReq struct
type groupSourceReq (line 95) | type groupSourceReq struct
FILE: vendor/golang.org/x/net/ipv4/zsys_dragonfly.go
constant sysIP_OPTIONS (line 7) | sysIP_OPTIONS = 0x1
constant sysIP_HDRINCL (line 8) | sysIP_HDRINCL = 0x2
constant sysIP_TOS (line 9) | sysIP_TOS = 0x3
constant sysIP_TTL (line 10) | sysIP_TTL = 0x4
constant sysIP_RECVOPTS (line 11) | sysIP_RECVOPTS = 0x5
constant sysIP_RECVRETOPTS (line 12) | sysIP_RECVRETOPTS = 0x6
constant sysIP_RECVDSTADDR (line 13) | sysIP_RECVDSTADDR = 0x7
constant sysIP_RETOPTS (line 14) | sysIP_RETOPTS = 0x8
constant sysIP_RECVIF (line 15) | sysIP_RECVIF = 0x14
constant sysIP_RECVTTL (line 16) | sysIP_RECVTTL = 0x41
constant sysIP_MULTICAST_IF (line 18) | sysIP_MULTICAST_IF = 0x9
constant sysIP_MULTICAST_TTL (line 19) | sysIP_MULTICAST_TTL = 0xa
constant sysIP_MULTICAST_LOOP (line 20) | sysIP_MULTICAST_LOOP = 0xb
constant sysIP_MULTICAST_VIF (line 21) | sysIP_MULTICAST_VIF = 0xe
constant sysIP_ADD_MEMBERSHIP (line 22) | sysIP_ADD_MEMBERSHIP = 0xc
constant sysIP_DROP_MEMBERSHIP (line 23) | sysIP_DROP_MEMBERSHIP = 0xd
constant sizeofIPMreq (line 25) | sizeofIPMreq = 0x8
type ipMreq (line 28) | type ipMreq struct
FILE: vendor/golang.org/x/net/ipv4/zsys_freebsd_386.go
constant sysIP_OPTIONS (line 7) | sysIP_OPTIONS = 0x1
constant sysIP_HDRINCL (line 8) | sysIP_HDRINCL = 0x2
constant sysIP_TOS (line 9) | sysIP_TOS = 0x3
constant sysIP_TTL (line 10) | sysIP_TTL = 0x4
constant sysIP_RECVOPTS (line 11) | sysIP_RECVOPTS = 0x5
constant sysIP_RECVRETOPTS (line 12) | sysIP_RECVRETOPTS = 0x6
constant sysIP_RECVDSTADDR (line 13) | sysIP_RECVDSTADDR = 0x7
constant sysIP_SENDSRCADDR (line 14) | sysIP_SENDSRCADDR = 0x7
constant sysIP_RETOPTS (line 15) | sysIP_RETOPTS = 0x8
constant sysIP_RECVIF (line 16) | sysIP_RECVIF = 0x14
constant sysIP_ONESBCAST (line 17) | sysIP_ONESBCAST = 0x17
constant sysIP_BINDANY (line 18) | sysIP_BINDANY = 0x18
constant sysIP_RECVTTL (line 19) | sysIP_RECVTTL = 0x41
constant sysIP_MINTTL (line 20) | sysIP_MINTTL = 0x42
constant sysIP_DONTFRAG (line 21) | sysIP_DONTFRAG = 0x43
constant sysIP_RECVTOS (line 22) | sysIP_RECVTOS = 0x44
constant sysIP_MULTICAST_IF (line 24) | sysIP_MULTICAST_IF = 0x9
constant sysIP_MULTICAST_TTL (line 25) | sysIP_MULTICAST_TTL = 0xa
constant sysIP_MULTICAST_LOOP (line 26) | sysIP_MULTICAST_LOOP = 0xb
constant sysIP_ADD_MEMBERSHIP (line 27) | sysIP_ADD_MEMBERSHIP = 0xc
constant sysIP_DROP_MEMBERSHIP (line 28) | sysIP_DROP_MEMBERSHIP = 0xd
constant sysIP_MULTICAST_VIF (line 29) | sysIP_MULTICAST_VIF = 0xe
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 30) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x46
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 31) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x47
constant sysIP_BLOCK_SOURCE (line 32) | sysIP_BLOCK_SOURCE = 0x48
constant sysIP_UNBLOCK_SOURCE (line 33) | sysIP_UNBLOCK_SOURCE = 0x49
constant sysMCAST_JOIN_GROUP (line 34) | sysMCAST_JOIN_GROUP = 0x50
constant sysMCAST_LEAVE_GROUP (line 35) | sysMCAST_LEAVE_GROUP = 0x51
constant sysMCAST_JOIN_SOURCE_GROUP (line 36) | sysMCAST_JOIN_SOURCE_GROUP = 0x52
constant sysMCAST_LEAVE_SOURCE_GROUP (line 37) | sysMCAST_LEAVE_SOURCE_GROUP = 0x53
constant sysMCAST_BLOCK_SOURCE (line 38) | sysMCAST_BLOCK_SOURCE = 0x54
constant sysMCAST_UNBLOCK_SOURCE (line 39) | sysMCAST_UNBLOCK_SOURCE = 0x55
constant sizeofSockaddrStorage (line 41) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 42) | sizeofSockaddrInet = 0x10
constant sizeofIPMreq (line 44) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 45) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 46) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 47) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 48) | sizeofGroupSourceReq = 0x104
type sockaddrStorage (line 51) | type sockaddrStorage struct
type sockaddrInet (line 59) | type sockaddrInet struct
type ipMreq (line 67) | type ipMreq struct
type ipMreqn (line 72) | type ipMreqn struct
type ipMreqSource (line 78) | type ipMreqSource struct
type groupReq (line 84) | type groupReq struct
type groupSourceReq (line 89) | type groupSourceReq struct
FILE: vendor/golang.org/x/net/ipv4/zsys_freebsd_amd64.go
constant sysIP_OPTIONS (line 7) | sysIP_OPTIONS = 0x1
constant sysIP_HDRINCL (line 8) | sysIP_HDRINCL = 0x2
constant sysIP_TOS (line 9) | sysIP_TOS = 0x3
constant sysIP_TTL (line 10) | sysIP_TTL = 0x4
constant sysIP_RECVOPTS (line 11) | sysIP_RECVOPTS = 0x5
constant sysIP_RECVRETOPTS (line 12) | sysIP_RECVRETOPTS = 0x6
constant sysIP_RECVDSTADDR (line 13) | sysIP_RECVDSTADDR = 0x7
constant sysIP_SENDSRCADDR (line 14) | sysIP_SENDSRCADDR = 0x7
constant sysIP_RETOPTS (line 15) | sysIP_RETOPTS = 0x8
constant sysIP_RECVIF (line 16) | sysIP_RECVIF = 0x14
constant sysIP_ONESBCAST (line 17) | sysIP_ONESBCAST = 0x17
constant sysIP_BINDANY (line 18) | sysIP_BINDANY = 0x18
constant sysIP_RECVTTL (line 19) | sysIP_RECVTTL = 0x41
constant sysIP_MINTTL (line 20) | sysIP_MINTTL = 0x42
constant sysIP_DONTFRAG (line 21) | sysIP_DONTFRAG = 0x43
constant sysIP_RECVTOS (line 22) | sysIP_RECVTOS = 0x44
constant sysIP_MULTICAST_IF (line 24) | sysIP_MULTICAST_IF = 0x9
constant sysIP_MULTICAST_TTL (line 25) | sysIP_MULTICAST_TTL = 0xa
constant sysIP_MULTICAST_LOOP (line 26) | sysIP_MULTICAST_LOOP = 0xb
constant sysIP_ADD_MEMBERSHIP (line 27) | sysIP_ADD_MEMBERSHIP = 0xc
constant sysIP_DROP_MEMBERSHIP (line 28) | sysIP_DROP_MEMBERSHIP = 0xd
constant sysIP_MULTICAST_VIF (line 29) | sysIP_MULTICAST_VIF = 0xe
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 30) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x46
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 31) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x47
constant sysIP_BLOCK_SOURCE (line 32) | sysIP_BLOCK_SOURCE = 0x48
constant sysIP_UNBLOCK_SOURCE (line 33) | sysIP_UNBLOCK_SOURCE = 0x49
constant sysMCAST_JOIN_GROUP (line 34) | sysMCAST_JOIN_GROUP = 0x50
constant sysMCAST_LEAVE_GROUP (line 35) | sysMCAST_LEAVE_GROUP = 0x51
constant sysMCAST_JOIN_SOURCE_GROUP (line 36) | sysMCAST_JOIN_SOURCE_GROUP = 0x52
constant sysMCAST_LEAVE_SOURCE_GROUP (line 37) | sysMCAST_LEAVE_SOURCE_GROUP = 0x53
constant sysMCAST_BLOCK_SOURCE (line 38) | sysMCAST_BLOCK_SOURCE = 0x54
constant sysMCAST_UNBLOCK_SOURCE (line 39) | sysMCAST_UNBLOCK_SOURCE = 0x55
constant sizeofSockaddrStorage (line 41) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 42) | sizeofSockaddrInet = 0x10
constant sizeofIPMreq (line 44) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 45) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 46) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 47) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 48) | sizeofGroupSourceReq = 0x108
type sockaddrStorage (line 51) | type sockaddrStorage struct
type sockaddrInet (line 59) | type sockaddrInet struct
type ipMreq (line 67) | type ipMreq struct
type ipMreqn (line 72) | type ipMreqn struct
type ipMreqSource (line 78) | type ipMreqSource struct
type groupReq (line 84) | type groupReq struct
type groupSourceReq (line 90) | type groupSourceReq struct
FILE: vendor/golang.org/x/net/ipv4/zsys_freebsd_arm.go
constant sysIP_OPTIONS (line 7) | sysIP_OPTIONS = 0x1
constant sysIP_HDRINCL (line 8) | sysIP_HDRINCL = 0x2
constant sysIP_TOS (line 9) | sysIP_TOS = 0x3
constant sysIP_TTL (line 10) | sysIP_TTL = 0x4
constant sysIP_RECVOPTS (line 11) | sysIP_RECVOPTS = 0x5
constant sysIP_RECVRETOPTS (line 12) | sysIP_RECVRETOPTS = 0x6
constant sysIP_RECVDSTADDR (line 13) | sysIP_RECVDSTADDR = 0x7
constant sysIP_SENDSRCADDR (line 14) | sysIP_SENDSRCADDR = 0x7
constant sysIP_RETOPTS (line 15) | sysIP_RETOPTS = 0x8
constant sysIP_RECVIF (line 16) | sysIP_RECVIF = 0x14
constant sysIP_ONESBCAST (line 17) | sysIP_ONESBCAST = 0x17
constant sysIP_BINDANY (line 18) | sysIP_BINDANY = 0x18
constant sysIP_RECVTTL (line 19) | sysIP_RECVTTL = 0x41
constant sysIP_MINTTL (line 20) | sysIP_MINTTL = 0x42
constant sysIP_DONTFRAG (line 21) | sysIP_DONTFRAG = 0x43
constant sysIP_RECVTOS (line 22) | sysIP_RECVTOS = 0x44
constant sysIP_MULTICAST_IF (line 24) | sysIP_MULTICAST_IF = 0x9
constant sysIP_MULTICAST_TTL (line 25) | sysIP_MULTICAST_TTL = 0xa
constant sysIP_MULTICAST_LOOP (line 26) | sysIP_MULTICAST_LOOP = 0xb
constant sysIP_ADD_MEMBERSHIP (line 27) | sysIP_ADD_MEMBERSHIP = 0xc
constant sysIP_DROP_MEMBERSHIP (line 28) | sysIP_DROP_MEMBERSHIP = 0xd
constant sysIP_MULTICAST_VIF (line 29) | sysIP_MULTICAST_VIF = 0xe
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 30) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x46
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 31) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x47
constant sysIP_BLOCK_SOURCE (line 32) | sysIP_BLOCK_SOURCE = 0x48
constant sysIP_UNBLOCK_SOURCE (line 33) | sysIP_UNBLOCK_SOURCE = 0x49
constant sysMCAST_JOIN_GROUP (line 34) | sysMCAST_JOIN_GROUP = 0x50
constant sysMCAST_LEAVE_GROUP (line 35) | sysMCAST_LEAVE_GROUP = 0x51
constant sysMCAST_JOIN_SOURCE_GROUP (line 36) | sysMCAST_JOIN_SOURCE_GROUP = 0x52
constant sysMCAST_LEAVE_SOURCE_GROUP (line 37) | sysMCAST_LEAVE_SOURCE_GROUP = 0x53
constant sysMCAST_BLOCK_SOURCE (line 38) | sysMCAST_BLOCK_SOURCE = 0x54
constant sysMCAST_UNBLOCK_SOURCE (line 39) | sysMCAST_UNBLOCK_SOURCE = 0x55
constant sizeofSockaddrStorage (line 41) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 42) | sizeofSockaddrInet = 0x10
constant sizeofIPMreq (line 44) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 45) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 46) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 47) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 48) | sizeofGroupSourceReq = 0x108
type sockaddrStorage (line 51) | type sockaddrStorage struct
type sockaddrInet (line 59) | type sockaddrInet struct
type ipMreq (line 67) | type ipMreq struct
type ipMreqn (line 72) | type ipMreqn struct
type ipMreqSource (line 78) | type ipMreqSource struct
type groupReq (line 84) | type groupReq struct
type groupSourceReq (line 90) | type groupSourceReq struct
FILE: vendor/golang.org/x/net/ipv4/zsys_linux_386.go
constant sysIP_TOS (line 7) | sysIP_TOS = 0x1
constant sysIP_TTL (line 8) | sysIP_TTL = 0x2
constant sysIP_HDRINCL (line 9) | sysIP_HDRINCL = 0x3
constant sysIP_OPTIONS (line 10) | sysIP_OPTIONS = 0x4
constant sysIP_ROUTER_ALERT (line 11) | sysIP_ROUTER_ALERT = 0x5
constant sysIP_RECVOPTS (line 12) | sysIP_RECVOPTS = 0x6
constant sysIP_RETOPTS (line 13) | sysIP_RETOPTS = 0x7
constant sysIP_PKTINFO (line 14) | sysIP_PKTINFO = 0x8
constant sysIP_PKTOPTIONS (line 15) | sysIP_PKTOPTIONS = 0x9
constant sysIP_MTU_DISCOVER (line 16) | sysIP_MTU_DISCOVER = 0xa
constant sysIP_RECVERR (line 17) | sysIP_RECVERR = 0xb
constant sysIP_RECVTTL (line 18) | sysIP_RECVTTL = 0xc
constant sysIP_RECVTOS (line 19) | sysIP_RECVTOS = 0xd
constant sysIP_MTU (line 20) | sysIP_MTU = 0xe
constant sysIP_FREEBIND (line 21) | sysIP_FREEBIND = 0xf
constant sysIP_TRANSPARENT (line 22) | sysIP_TRANSPARENT = 0x13
constant sysIP_RECVRETOPTS (line 23) | sysIP_RECVRETOPTS = 0x7
constant sysIP_ORIGDSTADDR (line 24) | sysIP_ORIGDSTADDR = 0x14
constant sysIP_RECVORIGDSTADDR (line 25) | sysIP_RECVORIGDSTADDR = 0x14
constant sysIP_MINTTL (line 26) | sysIP_MINTTL = 0x15
constant sysIP_NODEFRAG (line 27) | sysIP_NODEFRAG = 0x16
constant sysIP_UNICAST_IF (line 28) | sysIP_UNICAST_IF = 0x32
constant sysIP_MULTICAST_IF (line 30) | sysIP_MULTICAST_IF = 0x20
constant sysIP_MULTICAST_TTL (line 31) | sysIP_MULTICAST_TTL = 0x21
constant sysIP_MULTICAST_LOOP (line 32) | sysIP_MULTICAST_LOOP = 0x22
constant sysIP_ADD_MEMBERSHIP (line 33) | sysIP_ADD_MEMBERSHIP = 0x23
constant sysIP_DROP_MEMBERSHIP (line 34) | sysIP_DROP_MEMBERSHIP = 0x24
constant sysIP_UNBLOCK_SOURCE (line 35) | sysIP_UNBLOCK_SOURCE = 0x25
constant sysIP_BLOCK_SOURCE (line 36) | sysIP_BLOCK_SOURCE = 0x26
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 37) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x27
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 38) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x28
constant sysIP_MSFILTER (line 39) | sysIP_MSFILTER = 0x29
constant sysMCAST_JOIN_GROUP (line 40) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 41) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 42) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 43) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 44) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 45) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 46) | sysMCAST_MSFILTER = 0x30
constant sysIP_MULTICAST_ALL (line 47) | sysIP_MULTICAST_ALL = 0x31
constant sysICMP_FILTER (line 49) | sysICMP_FILTER = 0x1
constant sysSO_EE_ORIGIN_NONE (line 51) | sysSO_EE_ORIGIN_NONE = 0x0
constant sysSO_EE_ORIGIN_LOCAL (line 52) | sysSO_EE_ORIGIN_LOCAL = 0x1
constant sysSO_EE_ORIGIN_ICMP (line 53) | sysSO_EE_ORIGIN_ICMP = 0x2
constant sysSO_EE_ORIGIN_ICMP6 (line 54) | sysSO_EE_ORIGIN_ICMP6 = 0x3
constant sysSO_EE_ORIGIN_TXSTATUS (line 55) | sysSO_EE_ORIGIN_TXSTATUS = 0x4
constant sysSO_EE_ORIGIN_TIMESTAMPING (line 56) | sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
constant sysSOL_SOCKET (line 58) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 59) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 61) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 62) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 63) | sizeofInetPktinfo = 0xc
constant sizeofSockExtendedErr (line 64) | sizeofSockExtendedErr = 0x10
constant sizeofIPMreq (line 66) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 67) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 68) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 69) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 70) | sizeofGroupSourceReq = 0x104
constant sizeofICMPFilter (line 72) | sizeofICMPFilter = 0x4
constant sizeofSockFprog (line 74) | sizeofSockFprog = 0x8
type kernelSockaddrStorage (line 77) | type kernelSockaddrStorage struct
type sockaddrInet (line 82) | type sockaddrInet struct
type inetPktinfo (line 89) | type inetPktinfo struct
type sockExtendedErr (line 95) | type sockExtendedErr struct
type ipMreq (line 105) | type ipMreq struct
type ipMreqn (line 110) | type ipMreqn struct
type ipMreqSource (line 116) | type ipMreqSource struct
type groupReq (line 122) | type groupReq struct
type groupSourceReq (line 127) | type groupSourceReq struct
type icmpFilter (line 133) | type icmpFilter struct
type sockFProg (line 137) | type sockFProg struct
type sockFilter (line 143) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv4/zsys_linux_amd64.go
constant sysIP_TOS (line 7) | sysIP_TOS = 0x1
constant sysIP_TTL (line 8) | sysIP_TTL = 0x2
constant sysIP_HDRINCL (line 9) | sysIP_HDRINCL = 0x3
constant sysIP_OPTIONS (line 10) | sysIP_OPTIONS = 0x4
constant sysIP_ROUTER_ALERT (line 11) | sysIP_ROUTER_ALERT = 0x5
constant sysIP_RECVOPTS (line 12) | sysIP_RECVOPTS = 0x6
constant sysIP_RETOPTS (line 13) | sysIP_RETOPTS = 0x7
constant sysIP_PKTINFO (line 14) | sysIP_PKTINFO = 0x8
constant sysIP_PKTOPTIONS (line 15) | sysIP_PKTOPTIONS = 0x9
constant sysIP_MTU_DISCOVER (line 16) | sysIP_MTU_DISCOVER = 0xa
constant sysIP_RECVERR (line 17) | sysIP_RECVERR = 0xb
constant sysIP_RECVTTL (line 18) | sysIP_RECVTTL = 0xc
constant sysIP_RECVTOS (line 19) | sysIP_RECVTOS = 0xd
constant sysIP_MTU (line 20) | sysIP_MTU = 0xe
constant sysIP_FREEBIND (line 21) | sysIP_FREEBIND = 0xf
constant sysIP_TRANSPARENT (line 22) | sysIP_TRANSPARENT = 0x13
constant sysIP_RECVRETOPTS (line 23) | sysIP_RECVRETOPTS = 0x7
constant sysIP_ORIGDSTADDR (line 24) | sysIP_ORIGDSTADDR = 0x14
constant sysIP_RECVORIGDSTADDR (line 25) | sysIP_RECVORIGDSTADDR = 0x14
constant sysIP_MINTTL (line 26) | sysIP_MINTTL = 0x15
constant sysIP_NODEFRAG (line 27) | sysIP_NODEFRAG = 0x16
constant sysIP_UNICAST_IF (line 28) | sysIP_UNICAST_IF = 0x32
constant sysIP_MULTICAST_IF (line 30) | sysIP_MULTICAST_IF = 0x20
constant sysIP_MULTICAST_TTL (line 31) | sysIP_MULTICAST_TTL = 0x21
constant sysIP_MULTICAST_LOOP (line 32) | sysIP_MULTICAST_LOOP = 0x22
constant sysIP_ADD_MEMBERSHIP (line 33) | sysIP_ADD_MEMBERSHIP = 0x23
constant sysIP_DROP_MEMBERSHIP (line 34) | sysIP_DROP_MEMBERSHIP = 0x24
constant sysIP_UNBLOCK_SOURCE (line 35) | sysIP_UNBLOCK_SOURCE = 0x25
constant sysIP_BLOCK_SOURCE (line 36) | sysIP_BLOCK_SOURCE = 0x26
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 37) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x27
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 38) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x28
constant sysIP_MSFILTER (line 39) | sysIP_MSFILTER = 0x29
constant sysMCAST_JOIN_GROUP (line 40) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 41) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 42) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 43) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 44) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 45) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 46) | sysMCAST_MSFILTER = 0x30
constant sysIP_MULTICAST_ALL (line 47) | sysIP_MULTICAST_ALL = 0x31
constant sysICMP_FILTER (line 49) | sysICMP_FILTER = 0x1
constant sysSO_EE_ORIGIN_NONE (line 51) | sysSO_EE_ORIGIN_NONE = 0x0
constant sysSO_EE_ORIGIN_LOCAL (line 52) | sysSO_EE_ORIGIN_LOCAL = 0x1
constant sysSO_EE_ORIGIN_ICMP (line 53) | sysSO_EE_ORIGIN_ICMP = 0x2
constant sysSO_EE_ORIGIN_ICMP6 (line 54) | sysSO_EE_ORIGIN_ICMP6 = 0x3
constant sysSO_EE_ORIGIN_TXSTATUS (line 55) | sysSO_EE_ORIGIN_TXSTATUS = 0x4
constant sysSO_EE_ORIGIN_TIMESTAMPING (line 56) | sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
constant sysSOL_SOCKET (line 58) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 59) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 61) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 62) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 63) | sizeofInetPktinfo = 0xc
constant sizeofSockExtendedErr (line 64) | sizeofSockExtendedErr = 0x10
constant sizeofIPMreq (line 66) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 67) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 68) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 69) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 70) | sizeofGroupSourceReq = 0x108
constant sizeofICMPFilter (line 72) | sizeofICMPFilter = 0x4
constant sizeofSockFprog (line 74) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 77) | type kernelSockaddrStorage struct
type sockaddrInet (line 82) | type sockaddrInet struct
type inetPktinfo (line 89) | type inetPktinfo struct
type sockExtendedErr (line 95) | type sockExtendedErr struct
type ipMreq (line 105) | type ipMreq struct
type ipMreqn (line 110) | type ipMreqn struct
type ipMreqSource (line 116) | type ipMreqSource struct
type groupReq (line 122) | type groupReq struct
type groupSourceReq (line 128) | type groupSourceReq struct
type icmpFilter (line 135) | type icmpFilter struct
type sockFProg (line 139) | type sockFProg struct
type sockFilter (line 145) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv4/zsys_linux_arm.go
constant sysIP_TOS (line 7) | sysIP_TOS = 0x1
constant sysIP_TTL (line 8) | sysIP_TTL = 0x2
constant sysIP_HDRINCL (line 9) | sysIP_HDRINCL = 0x3
constant sysIP_OPTIONS (line 10) | sysIP_OPTIONS = 0x4
constant sysIP_ROUTER_ALERT (line 11) | sysIP_ROUTER_ALERT = 0x5
constant sysIP_RECVOPTS (line 12) | sysIP_RECVOPTS = 0x6
constant sysIP_RETOPTS (line 13) | sysIP_RETOPTS = 0x7
constant sysIP_PKTINFO (line 14) | sysIP_PKTINFO = 0x8
constant sysIP_PKTOPTIONS (line 15) | sysIP_PKTOPTIONS = 0x9
constant sysIP_MTU_DISCOVER (line 16) | sysIP_MTU_DISCOVER = 0xa
constant sysIP_RECVERR (line 17) | sysIP_RECVERR = 0xb
constant sysIP_RECVTTL (line 18) | sysIP_RECVTTL = 0xc
constant sysIP_RECVTOS (line 19) | sysIP_RECVTOS = 0xd
constant sysIP_MTU (line 20) | sysIP_MTU = 0xe
constant sysIP_FREEBIND (line 21) | sysIP_FREEBIND = 0xf
constant sysIP_TRANSPARENT (line 22) | sysIP_TRANSPARENT = 0x13
constant sysIP_RECVRETOPTS (line 23) | sysIP_RECVRETOPTS = 0x7
constant sysIP_ORIGDSTADDR (line 24) | sysIP_ORIGDSTADDR = 0x14
constant sysIP_RECVORIGDSTADDR (line 25) | sysIP_RECVORIGDSTADDR = 0x14
constant sysIP_MINTTL (line 26) | sysIP_MINTTL = 0x15
constant sysIP_NODEFRAG (line 27) | sysIP_NODEFRAG = 0x16
constant sysIP_UNICAST_IF (line 28) | sysIP_UNICAST_IF = 0x32
constant sysIP_MULTICAST_IF (line 30) | sysIP_MULTICAST_IF = 0x20
constant sysIP_MULTICAST_TTL (line 31) | sysIP_MULTICAST_TTL = 0x21
constant sysIP_MULTICAST_LOOP (line 32) | sysIP_MULTICAST_LOOP = 0x22
constant sysIP_ADD_MEMBERSHIP (line 33) | sysIP_ADD_MEMBERSHIP = 0x23
constant sysIP_DROP_MEMBERSHIP (line 34) | sysIP_DROP_MEMBERSHIP = 0x24
constant sysIP_UNBLOCK_SOURCE (line 35) | sysIP_UNBLOCK_SOURCE = 0x25
constant sysIP_BLOCK_SOURCE (line 36) | sysIP_BLOCK_SOURCE = 0x26
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 37) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x27
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 38) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x28
constant sysIP_MSFILTER (line 39) | sysIP_MSFILTER = 0x29
constant sysMCAST_JOIN_GROUP (line 40) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 41) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 42) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 43) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 44) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 45) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 46) | sysMCAST_MSFILTER = 0x30
constant sysIP_MULTICAST_ALL (line 47) | sysIP_MULTICAST_ALL = 0x31
constant sysICMP_FILTER (line 49) | sysICMP_FILTER = 0x1
constant sysSO_EE_ORIGIN_NONE (line 51) | sysSO_EE_ORIGIN_NONE = 0x0
constant sysSO_EE_ORIGIN_LOCAL (line 52) | sysSO_EE_ORIGIN_LOCAL = 0x1
constant sysSO_EE_ORIGIN_ICMP (line 53) | sysSO_EE_ORIGIN_ICMP = 0x2
constant sysSO_EE_ORIGIN_ICMP6 (line 54) | sysSO_EE_ORIGIN_ICMP6 = 0x3
constant sysSO_EE_ORIGIN_TXSTATUS (line 55) | sysSO_EE_ORIGIN_TXSTATUS = 0x4
constant sysSO_EE_ORIGIN_TIMESTAMPING (line 56) | sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
constant sysSOL_SOCKET (line 58) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 59) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 61) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 62) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 63) | sizeofInetPktinfo = 0xc
constant sizeofSockExtendedErr (line 64) | sizeofSockExtendedErr = 0x10
constant sizeofIPMreq (line 66) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 67) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 68) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 69) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 70) | sizeofGroupSourceReq = 0x104
constant sizeofICMPFilter (line 72) | sizeofICMPFilter = 0x4
constant sizeofSockFprog (line 74) | sizeofSockFprog = 0x8
type kernelSockaddrStorage (line 77) | type kernelSockaddrStorage struct
type sockaddrInet (line 82) | type sockaddrInet struct
type inetPktinfo (line 89) | type inetPktinfo struct
type sockExtendedErr (line 95) | type sockExtendedErr struct
type ipMreq (line 105) | type ipMreq struct
type ipMreqn (line 110) | type ipMreqn struct
type ipMreqSource (line 116) | type ipMreqSource struct
type groupReq (line 122) | type groupReq struct
type groupSourceReq (line 127) | type groupSourceReq struct
type icmpFilter (line 133) | type icmpFilter struct
type sockFProg (line 137) | type sockFProg struct
type sockFilter (line 143) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv4/zsys_linux_arm64.go
constant sysIP_TOS (line 7) | sysIP_TOS = 0x1
constant sysIP_TTL (line 8) | sysIP_TTL = 0x2
constant sysIP_HDRINCL (line 9) | sysIP_HDRINCL = 0x3
constant sysIP_OPTIONS (line 10) | sysIP_OPTIONS = 0x4
constant sysIP_ROUTER_ALERT (line 11) | sysIP_ROUTER_ALERT = 0x5
constant sysIP_RECVOPTS (line 12) | sysIP_RECVOPTS = 0x6
constant sysIP_RETOPTS (line 13) | sysIP_RETOPTS = 0x7
constant sysIP_PKTINFO (line 14) | sysIP_PKTINFO = 0x8
constant sysIP_PKTOPTIONS (line 15) | sysIP_PKTOPTIONS = 0x9
constant sysIP_MTU_DISCOVER (line 16) | sysIP_MTU_DISCOVER = 0xa
constant sysIP_RECVERR (line 17) | sysIP_RECVERR = 0xb
constant sysIP_RECVTTL (line 18) | sysIP_RECVTTL = 0xc
constant sysIP_RECVTOS (line 19) | sysIP_RECVTOS = 0xd
constant sysIP_MTU (line 20) | sysIP_MTU = 0xe
constant sysIP_FREEBIND (line 21) | sysIP_FREEBIND = 0xf
constant sysIP_TRANSPARENT (line 22) | sysIP_TRANSPARENT = 0x13
constant sysIP_RECVRETOPTS (line 23) | sysIP_RECVRETOPTS = 0x7
constant sysIP_ORIGDSTADDR (line 24) | sysIP_ORIGDSTADDR = 0x14
constant sysIP_RECVORIGDSTADDR (line 25) | sysIP_RECVORIGDSTADDR = 0x14
constant sysIP_MINTTL (line 26) | sysIP_MINTTL = 0x15
constant sysIP_NODEFRAG (line 27) | sysIP_NODEFRAG = 0x16
constant sysIP_UNICAST_IF (line 28) | sysIP_UNICAST_IF = 0x32
constant sysIP_MULTICAST_IF (line 30) | sysIP_MULTICAST_IF = 0x20
constant sysIP_MULTICAST_TTL (line 31) | sysIP_MULTICAST_TTL = 0x21
constant sysIP_MULTICAST_LOOP (line 32) | sysIP_MULTICAST_LOOP = 0x22
constant sysIP_ADD_MEMBERSHIP (line 33) | sysIP_ADD_MEMBERSHIP = 0x23
constant sysIP_DROP_MEMBERSHIP (line 34) | sysIP_DROP_MEMBERSHIP = 0x24
constant sysIP_UNBLOCK_SOURCE (line 35) | sysIP_UNBLOCK_SOURCE = 0x25
constant sysIP_BLOCK_SOURCE (line 36) | sysIP_BLOCK_SOURCE = 0x26
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 37) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x27
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 38) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x28
constant sysIP_MSFILTER (line 39) | sysIP_MSFILTER = 0x29
constant sysMCAST_JOIN_GROUP (line 40) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 41) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 42) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 43) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 44) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 45) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 46) | sysMCAST_MSFILTER = 0x30
constant sysIP_MULTICAST_ALL (line 47) | sysIP_MULTICAST_ALL = 0x31
constant sysICMP_FILTER (line 49) | sysICMP_FILTER = 0x1
constant sysSO_EE_ORIGIN_NONE (line 51) | sysSO_EE_ORIGIN_NONE = 0x0
constant sysSO_EE_ORIGIN_LOCAL (line 52) | sysSO_EE_ORIGIN_LOCAL = 0x1
constant sysSO_EE_ORIGIN_ICMP (line 53) | sysSO_EE_ORIGIN_ICMP = 0x2
constant sysSO_EE_ORIGIN_ICMP6 (line 54) | sysSO_EE_ORIGIN_ICMP6 = 0x3
constant sysSO_EE_ORIGIN_TXSTATUS (line 55) | sysSO_EE_ORIGIN_TXSTATUS = 0x4
constant sysSO_EE_ORIGIN_TIMESTAMPING (line 56) | sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
constant sysSOL_SOCKET (line 58) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 59) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 61) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 62) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 63) | sizeofInetPktinfo = 0xc
constant sizeofSockExtendedErr (line 64) | sizeofSockExtendedErr = 0x10
constant sizeofIPMreq (line 66) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 67) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 68) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 69) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 70) | sizeofGroupSourceReq = 0x108
constant sizeofICMPFilter (line 72) | sizeofICMPFilter = 0x4
constant sizeofSockFprog (line 74) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 77) | type kernelSockaddrStorage struct
type sockaddrInet (line 82) | type sockaddrInet struct
type inetPktinfo (line 89) | type inetPktinfo struct
type sockExtendedErr (line 95) | type sockExtendedErr struct
type ipMreq (line 105) | type ipMreq struct
type ipMreqn (line 110) | type ipMreqn struct
type ipMreqSource (line 116) | type ipMreqSource struct
type groupReq (line 122) | type groupReq struct
type groupSourceReq (line 128) | type groupSourceReq struct
type icmpFilter (line 135) | type icmpFilter struct
type sockFProg (line 139) | type sockFProg struct
type sockFilter (line 145) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv4/zsys_linux_mips.go
constant sysIP_TOS (line 7) | sysIP_TOS = 0x1
constant sysIP_TTL (line 8) | sysIP_TTL = 0x2
constant sysIP_HDRINCL (line 9) | sysIP_HDRINCL = 0x3
constant sysIP_OPTIONS (line 10) | sysIP_OPTIONS = 0x4
constant sysIP_ROUTER_ALERT (line 11) | sysIP_ROUTER_ALERT = 0x5
constant sysIP_RECVOPTS (line 12) | sysIP_RECVOPTS = 0x6
constant sysIP_RETOPTS (line 13) | sysIP_RETOPTS = 0x7
constant sysIP_PKTINFO (line 14) | sysIP_PKTINFO = 0x8
constant sysIP_PKTOPTIONS (line 15) | sysIP_PKTOPTIONS = 0x9
constant sysIP_MTU_DISCOVER (line 16) | sysIP_MTU_DISCOVER = 0xa
constant sysIP_RECVERR (line 17) | sysIP_RECVERR = 0xb
constant sysIP_RECVTTL (line 18) | sysIP_RECVTTL = 0xc
constant sysIP_RECVTOS (line 19) | sysIP_RECVTOS = 0xd
constant sysIP_MTU (line 20) | sysIP_MTU = 0xe
constant sysIP_FREEBIND (line 21) | sysIP_FREEBIND = 0xf
constant sysIP_TRANSPARENT (line 22) | sysIP_TRANSPARENT = 0x13
constant sysIP_RECVRETOPTS (line 23) | sysIP_RECVRETOPTS = 0x7
constant sysIP_ORIGDSTADDR (line 24) | sysIP_ORIGDSTADDR = 0x14
constant sysIP_RECVORIGDSTADDR (line 25) | sysIP_RECVORIGDSTADDR = 0x14
constant sysIP_MINTTL (line 26) | sysIP_MINTTL = 0x15
constant sysIP_NODEFRAG (line 27) | sysIP_NODEFRAG = 0x16
constant sysIP_UNICAST_IF (line 28) | sysIP_UNICAST_IF = 0x32
constant sysIP_MULTICAST_IF (line 30) | sysIP_MULTICAST_IF = 0x20
constant sysIP_MULTICAST_TTL (line 31) | sysIP_MULTICAST_TTL = 0x21
constant sysIP_MULTICAST_LOOP (line 32) | sysIP_MULTICAST_LOOP = 0x22
constant sysIP_ADD_MEMBERSHIP (line 33) | sysIP_ADD_MEMBERSHIP = 0x23
constant sysIP_DROP_MEMBERSHIP (line 34) | sysIP_DROP_MEMBERSHIP = 0x24
constant sysIP_UNBLOCK_SOURCE (line 35) | sysIP_UNBLOCK_SOURCE = 0x25
constant sysIP_BLOCK_SOURCE (line 36) | sysIP_BLOCK_SOURCE = 0x26
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 37) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x27
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 38) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x28
constant sysIP_MSFILTER (line 39) | sysIP_MSFILTER = 0x29
constant sysMCAST_JOIN_GROUP (line 40) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 41) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 42) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 43) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 44) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 45) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 46) | sysMCAST_MSFILTER = 0x30
constant sysIP_MULTICAST_ALL (line 47) | sysIP_MULTICAST_ALL = 0x31
constant sysICMP_FILTER (line 49) | sysICMP_FILTER = 0x1
constant sysSO_EE_ORIGIN_NONE (line 51) | sysSO_EE_ORIGIN_NONE = 0x0
constant sysSO_EE_ORIGIN_LOCAL (line 52) | sysSO_EE_ORIGIN_LOCAL = 0x1
constant sysSO_EE_ORIGIN_ICMP (line 53) | sysSO_EE_ORIGIN_ICMP = 0x2
constant sysSO_EE_ORIGIN_ICMP6 (line 54) | sysSO_EE_ORIGIN_ICMP6 = 0x3
constant sysSO_EE_ORIGIN_TXSTATUS (line 55) | sysSO_EE_ORIGIN_TXSTATUS = 0x4
constant sysSO_EE_ORIGIN_TIMESTAMPING (line 56) | sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
constant sysSOL_SOCKET (line 58) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 59) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 61) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 62) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 63) | sizeofInetPktinfo = 0xc
constant sizeofSockExtendedErr (line 64) | sizeofSockExtendedErr = 0x10
constant sizeofIPMreq (line 66) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 67) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 68) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 69) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 70) | sizeofGroupSourceReq = 0x104
constant sizeofICMPFilter (line 72) | sizeofICMPFilter = 0x4
constant sizeofSockFprog (line 74) | sizeofSockFprog = 0x8
type kernelSockaddrStorage (line 77) | type kernelSockaddrStorage struct
type sockaddrInet (line 82) | type sockaddrInet struct
type inetPktinfo (line 89) | type inetPktinfo struct
type sockExtendedErr (line 95) | type sockExtendedErr struct
type ipMreq (line 105) | type ipMreq struct
type ipMreqn (line 110) | type ipMreqn struct
type ipMreqSource (line 116) | type ipMreqSource struct
type groupReq (line 122) | type groupReq struct
type groupSourceReq (line 127) | type groupSourceReq struct
type icmpFilter (line 133) | type icmpFilter struct
type sockFProg (line 137) | type sockFProg struct
type sockFilter (line 143) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv4/zsys_linux_mips64.go
constant sysIP_TOS (line 7) | sysIP_TOS = 0x1
constant sysIP_TTL (line 8) | sysIP_TTL = 0x2
constant sysIP_HDRINCL (line 9) | sysIP_HDRINCL = 0x3
constant sysIP_OPTIONS (line 10) | sysIP_OPTIONS = 0x4
constant sysIP_ROUTER_ALERT (line 11) | sysIP_ROUTER_ALERT = 0x5
constant sysIP_RECVOPTS (line 12) | sysIP_RECVOPTS = 0x6
constant sysIP_RETOPTS (line 13) | sysIP_RETOPTS = 0x7
constant sysIP_PKTINFO (line 14) | sysIP_PKTINFO = 0x8
constant sysIP_PKTOPTIONS (line 15) | sysIP_PKTOPTIONS = 0x9
constant sysIP_MTU_DISCOVER (line 16) | sysIP_MTU_DISCOVER = 0xa
constant sysIP_RECVERR (line 17) | sysIP_RECVERR = 0xb
constant sysIP_RECVTTL (line 18) | sysIP_RECVTTL = 0xc
constant sysIP_RECVTOS (line 19) | sysIP_RECVTOS = 0xd
constant sysIP_MTU (line 20) | sysIP_MTU = 0xe
constant sysIP_FREEBIND (line 21) | sysIP_FREEBIND = 0xf
constant sysIP_TRANSPARENT (line 22) | sysIP_TRANSPARENT = 0x13
constant sysIP_RECVRETOPTS (line 23) | sysIP_RECVRETOPTS = 0x7
constant sysIP_ORIGDSTADDR (line 24) | sysIP_ORIGDSTADDR = 0x14
constant sysIP_RECVORIGDSTADDR (line 25) | sysIP_RECVORIGDSTADDR = 0x14
constant sysIP_MINTTL (line 26) | sysIP_MINTTL = 0x15
constant sysIP_NODEFRAG (line 27) | sysIP_NODEFRAG = 0x16
constant sysIP_UNICAST_IF (line 28) | sysIP_UNICAST_IF = 0x32
constant sysIP_MULTICAST_IF (line 30) | sysIP_MULTICAST_IF = 0x20
constant sysIP_MULTICAST_TTL (line 31) | sysIP_MULTICAST_TTL = 0x21
constant sysIP_MULTICAST_LOOP (line 32) | sysIP_MULTICAST_LOOP = 0x22
constant sysIP_ADD_MEMBERSHIP (line 33) | sysIP_ADD_MEMBERSHIP = 0x23
constant sysIP_DROP_MEMBERSHIP (line 34) | sysIP_DROP_MEMBERSHIP = 0x24
constant sysIP_UNBLOCK_SOURCE (line 35) | sysIP_UNBLOCK_SOURCE = 0x25
constant sysIP_BLOCK_SOURCE (line 36) | sysIP_BLOCK_SOURCE = 0x26
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 37) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x27
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 38) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x28
constant sysIP_MSFILTER (line 39) | sysIP_MSFILTER = 0x29
constant sysMCAST_JOIN_GROUP (line 40) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 41) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 42) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 43) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 44) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 45) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 46) | sysMCAST_MSFILTER = 0x30
constant sysIP_MULTICAST_ALL (line 47) | sysIP_MULTICAST_ALL = 0x31
constant sysICMP_FILTER (line 49) | sysICMP_FILTER = 0x1
constant sysSO_EE_ORIGIN_NONE (line 51) | sysSO_EE_ORIGIN_NONE = 0x0
constant sysSO_EE_ORIGIN_LOCAL (line 52) | sysSO_EE_ORIGIN_LOCAL = 0x1
constant sysSO_EE_ORIGIN_ICMP (line 53) | sysSO_EE_ORIGIN_ICMP = 0x2
constant sysSO_EE_ORIGIN_ICMP6 (line 54) | sysSO_EE_ORIGIN_ICMP6 = 0x3
constant sysSO_EE_ORIGIN_TXSTATUS (line 55) | sysSO_EE_ORIGIN_TXSTATUS = 0x4
constant sysSO_EE_ORIGIN_TIMESTAMPING (line 56) | sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
constant sysSOL_SOCKET (line 58) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 59) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 61) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 62) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 63) | sizeofInetPktinfo = 0xc
constant sizeofSockExtendedErr (line 64) | sizeofSockExtendedErr = 0x10
constant sizeofIPMreq (line 66) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 67) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 68) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 69) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 70) | sizeofGroupSourceReq = 0x108
constant sizeofICMPFilter (line 72) | sizeofICMPFilter = 0x4
constant sizeofSockFprog (line 74) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 77) | type kernelSockaddrStorage struct
type sockaddrInet (line 82) | type sockaddrInet struct
type inetPktinfo (line 89) | type inetPktinfo struct
type sockExtendedErr (line 95) | type sockExtendedErr struct
type ipMreq (line 105) | type ipMreq struct
type ipMreqn (line 110) | type ipMreqn struct
type ipMreqSource (line 116) | type ipMreqSource struct
type groupReq (line 122) | type groupReq struct
type groupSourceReq (line 128) | type groupSourceReq struct
type icmpFilter (line 135) | type icmpFilter struct
type sockFProg (line 139) | type sockFProg struct
type sockFilter (line 145) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv4/zsys_linux_mips64le.go
constant sysIP_TOS (line 7) | sysIP_TOS = 0x1
constant sysIP_TTL (line 8) | sysIP_TTL = 0x2
constant sysIP_HDRINCL (line 9) | sysIP_HDRINCL = 0x3
constant sysIP_OPTIONS (line 10) | sysIP_OPTIONS = 0x4
constant sysIP_ROUTER_ALERT (line 11) | sysIP_ROUTER_ALERT = 0x5
constant sysIP_RECVOPTS (line 12) | sysIP_RECVOPTS = 0x6
constant sysIP_RETOPTS (line 13) | sysIP_RETOPTS = 0x7
constant sysIP_PKTINFO (line 14) | sysIP_PKTINFO = 0x8
constant sysIP_PKTOPTIONS (line 15) | sysIP_PKTOPTIONS = 0x9
constant sysIP_MTU_DISCOVER (line 16) | sysIP_MTU_DISCOVER = 0xa
constant sysIP_RECVERR (line 17) | sysIP_RECVERR = 0xb
constant sysIP_RECVTTL (line 18) | sysIP_RECVTTL = 0xc
constant sysIP_RECVTOS (line 19) | sysIP_RECVTOS = 0xd
constant sysIP_MTU (line 20) | sysIP_MTU = 0xe
constant sysIP_FREEBIND (line 21) | sysIP_FREEBIND = 0xf
constant sysIP_TRANSPARENT (line 22) | sysIP_TRANSPARENT = 0x13
constant sysIP_RECVRETOPTS (line 23) | sysIP_RECVRETOPTS = 0x7
constant sysIP_ORIGDSTADDR (line 24) | sysIP_ORIGDSTADDR = 0x14
constant sysIP_RECVORIGDSTADDR (line 25) | sysIP_RECVORIGDSTADDR = 0x14
constant sysIP_MINTTL (line 26) | sysIP_MINTTL = 0x15
constant sysIP_NODEFRAG (line 27) | sysIP_NODEFRAG = 0x16
constant sysIP_UNICAST_IF (line 28) | sysIP_UNICAST_IF = 0x32
constant sysIP_MULTICAST_IF (line 30) | sysIP_MULTICAST_IF = 0x20
constant sysIP_MULTICAST_TTL (line 31) | sysIP_MULTICAST_TTL = 0x21
constant sysIP_MULTICAST_LOOP (line 32) | sysIP_MULTICAST_LOOP = 0x22
constant sysIP_ADD_MEMBERSHIP (line 33) | sysIP_ADD_MEMBERSHIP = 0x23
constant sysIP_DROP_MEMBERSHIP (line 34) | sysIP_DROP_MEMBERSHIP = 0x24
constant sysIP_UNBLOCK_SOURCE (line 35) | sysIP_UNBLOCK_SOURCE = 0x25
constant sysIP_BLOCK_SOURCE (line 36) | sysIP_BLOCK_SOURCE = 0x26
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 37) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x27
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 38) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x28
constant sysIP_MSFILTER (line 39) | sysIP_MSFILTER = 0x29
constant sysMCAST_JOIN_GROUP (line 40) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 41) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 42) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 43) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 44) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 45) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 46) | sysMCAST_MSFILTER = 0x30
constant sysIP_MULTICAST_ALL (line 47) | sysIP_MULTICAST_ALL = 0x31
constant sysICMP_FILTER (line 49) | sysICMP_FILTER = 0x1
constant sysSO_EE_ORIGIN_NONE (line 51) | sysSO_EE_ORIGIN_NONE = 0x0
constant sysSO_EE_ORIGIN_LOCAL (line 52) | sysSO_EE_ORIGIN_LOCAL = 0x1
constant sysSO_EE_ORIGIN_ICMP (line 53) | sysSO_EE_ORIGIN_ICMP = 0x2
constant sysSO_EE_ORIGIN_ICMP6 (line 54) | sysSO_EE_ORIGIN_ICMP6 = 0x3
constant sysSO_EE_ORIGIN_TXSTATUS (line 55) | sysSO_EE_ORIGIN_TXSTATUS = 0x4
constant sysSO_EE_ORIGIN_TIMESTAMPING (line 56) | sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
constant sysSOL_SOCKET (line 58) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 59) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 61) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 62) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 63) | sizeofInetPktinfo = 0xc
constant sizeofSockExtendedErr (line 64) | sizeofSockExtendedErr = 0x10
constant sizeofIPMreq (line 66) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 67) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 68) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 69) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 70) | sizeofGroupSourceReq = 0x108
constant sizeofICMPFilter (line 72) | sizeofICMPFilter = 0x4
constant sizeofSockFprog (line 74) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 77) | type kernelSockaddrStorage struct
type sockaddrInet (line 82) | type sockaddrInet struct
type inetPktinfo (line 89) | type inetPktinfo struct
type sockExtendedErr (line 95) | type sockExtendedErr struct
type ipMreq (line 105) | type ipMreq struct
type ipMreqn (line 110) | type ipMreqn struct
type ipMreqSource (line 116) | type ipMreqSource struct
type groupReq (line 122) | type groupReq struct
type groupSourceReq (line 128) | type groupSourceReq struct
type icmpFilter (line 135) | type icmpFilter struct
type sockFProg (line 139) | type sockFProg struct
type sockFilter (line 145) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv4/zsys_linux_mipsle.go
constant sysIP_TOS (line 7) | sysIP_TOS = 0x1
constant sysIP_TTL (line 8) | sysIP_TTL = 0x2
constant sysIP_HDRINCL (line 9) | sysIP_HDRINCL = 0x3
constant sysIP_OPTIONS (line 10) | sysIP_OPTIONS = 0x4
constant sysIP_ROUTER_ALERT (line 11) | sysIP_ROUTER_ALERT = 0x5
constant sysIP_RECVOPTS (line 12) | sysIP_RECVOPTS = 0x6
constant sysIP_RETOPTS (line 13) | sysIP_RETOPTS = 0x7
constant sysIP_PKTINFO (line 14) | sysIP_PKTINFO = 0x8
constant sysIP_PKTOPTIONS (line 15) | sysIP_PKTOPTIONS = 0x9
constant sysIP_MTU_DISCOVER (line 16) | sysIP_MTU_DISCOVER = 0xa
constant sysIP_RECVERR (line 17) | sysIP_RECVERR = 0xb
constant sysIP_RECVTTL (line 18) | sysIP_RECVTTL = 0xc
constant sysIP_RECVTOS (line 19) | sysIP_RECVTOS = 0xd
constant sysIP_MTU (line 20) | sysIP_MTU = 0xe
constant sysIP_FREEBIND (line 21) | sysIP_FREEBIND = 0xf
constant sysIP_TRANSPARENT (line 22) | sysIP_TRANSPARENT = 0x13
constant sysIP_RECVRETOPTS (line 23) | sysIP_RECVRETOPTS = 0x7
constant sysIP_ORIGDSTADDR (line 24) | sysIP_ORIGDSTADDR = 0x14
constant sysIP_RECVORIGDSTADDR (line 25) | sysIP_RECVORIGDSTADDR = 0x14
constant sysIP_MINTTL (line 26) | sysIP_MINTTL = 0x15
constant sysIP_NODEFRAG (line 27) | sysIP_NODEFRAG = 0x16
constant sysIP_UNICAST_IF (line 28) | sysIP_UNICAST_IF = 0x32
constant sysIP_MULTICAST_IF (line 30) | sysIP_MULTICAST_IF = 0x20
constant sysIP_MULTICAST_TTL (line 31) | sysIP_MULTICAST_TTL = 0x21
constant sysIP_MULTICAST_LOOP (line 32) | sysIP_MULTICAST_LOOP = 0x22
constant sysIP_ADD_MEMBERSHIP (line 33) | sysIP_ADD_MEMBERSHIP = 0x23
constant sysIP_DROP_MEMBERSHIP (line 34) | sysIP_DROP_MEMBERSHIP = 0x24
constant sysIP_UNBLOCK_SOURCE (line 35) | sysIP_UNBLOCK_SOURCE = 0x25
constant sysIP_BLOCK_SOURCE (line 36) | sysIP_BLOCK_SOURCE = 0x26
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 37) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x27
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 38) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x28
constant sysIP_MSFILTER (line 39) | sysIP_MSFILTER = 0x29
constant sysMCAST_JOIN_GROUP (line 40) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 41) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 42) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 43) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 44) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 45) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 46) | sysMCAST_MSFILTER = 0x30
constant sysIP_MULTICAST_ALL (line 47) | sysIP_MULTICAST_ALL = 0x31
constant sysICMP_FILTER (line 49) | sysICMP_FILTER = 0x1
constant sysSO_EE_ORIGIN_NONE (line 51) | sysSO_EE_ORIGIN_NONE = 0x0
constant sysSO_EE_ORIGIN_LOCAL (line 52) | sysSO_EE_ORIGIN_LOCAL = 0x1
constant sysSO_EE_ORIGIN_ICMP (line 53) | sysSO_EE_ORIGIN_ICMP = 0x2
constant sysSO_EE_ORIGIN_ICMP6 (line 54) | sysSO_EE_ORIGIN_ICMP6 = 0x3
constant sysSO_EE_ORIGIN_TXSTATUS (line 55) | sysSO_EE_ORIGIN_TXSTATUS = 0x4
constant sysSO_EE_ORIGIN_TIMESTAMPING (line 56) | sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
constant sysSOL_SOCKET (line 58) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 59) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 61) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 62) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 63) | sizeofInetPktinfo = 0xc
constant sizeofSockExtendedErr (line 64) | sizeofSockExtendedErr = 0x10
constant sizeofIPMreq (line 66) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 67) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 68) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 69) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 70) | sizeofGroupSourceReq = 0x104
constant sizeofICMPFilter (line 72) | sizeofICMPFilter = 0x4
constant sizeofSockFprog (line 74) | sizeofSockFprog = 0x8
type kernelSockaddrStorage (line 77) | type kernelSockaddrStorage struct
type sockaddrInet (line 82) | type sockaddrInet struct
type inetPktinfo (line 89) | type inetPktinfo struct
type sockExtendedErr (line 95) | type sockExtendedErr struct
type ipMreq (line 105) | type ipMreq struct
type ipMreqn (line 110) | type ipMreqn struct
type ipMreqSource (line 116) | type ipMreqSource struct
type groupReq (line 122) | type groupReq struct
type groupSourceReq (line 127) | type groupSourceReq struct
type icmpFilter (line 133) | type icmpFilter struct
type sockFProg (line 137) | type sockFProg struct
type sockFilter (line 143) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv4/zsys_linux_ppc.go
constant sysIP_TOS (line 7) | sysIP_TOS = 0x1
constant sysIP_TTL (line 8) | sysIP_TTL = 0x2
constant sysIP_HDRINCL (line 9) | sysIP_HDRINCL = 0x3
constant sysIP_OPTIONS (line 10) | sysIP_OPTIONS = 0x4
constant sysIP_ROUTER_ALERT (line 11) | sysIP_ROUTER_ALERT = 0x5
constant sysIP_RECVOPTS (line 12) | sysIP_RECVOPTS = 0x6
constant sysIP_RETOPTS (line 13) | sysIP_RETOPTS = 0x7
constant sysIP_PKTINFO (line 14) | sysIP_PKTINFO = 0x8
constant sysIP_PKTOPTIONS (line 15) | sysIP_PKTOPTIONS = 0x9
constant sysIP_MTU_DISCOVER (line 16) | sysIP_MTU_DISCOVER = 0xa
constant sysIP_RECVERR (line 17) | sysIP_RECVERR = 0xb
constant sysIP_RECVTTL (line 18) | sysIP_RECVTTL = 0xc
constant sysIP_RECVTOS (line 19) | sysIP_RECVTOS = 0xd
constant sysIP_MTU (line 20) | sysIP_MTU = 0xe
constant sysIP_FREEBIND (line 21) | sysIP_FREEBIND = 0xf
constant sysIP_TRANSPARENT (line 22) | sysIP_TRANSPARENT = 0x13
constant sysIP_RECVRETOPTS (line 23) | sysIP_RECVRETOPTS = 0x7
constant sysIP_ORIGDSTADDR (line 24) | sysIP_ORIGDSTADDR = 0x14
constant sysIP_RECVORIGDSTADDR (line 25) | sysIP_RECVORIGDSTADDR = 0x14
constant sysIP_MINTTL (line 26) | sysIP_MINTTL = 0x15
constant sysIP_NODEFRAG (line 27) | sysIP_NODEFRAG = 0x16
constant sysIP_UNICAST_IF (line 28) | sysIP_UNICAST_IF = 0x32
constant sysIP_MULTICAST_IF (line 30) | sysIP_MULTICAST_IF = 0x20
constant sysIP_MULTICAST_TTL (line 31) | sysIP_MULTICAST_TTL = 0x21
constant sysIP_MULTICAST_LOOP (line 32) | sysIP_MULTICAST_LOOP = 0x22
constant sysIP_ADD_MEMBERSHIP (line 33) | sysIP_ADD_MEMBERSHIP = 0x23
constant sysIP_DROP_MEMBERSHIP (line 34) | sysIP_DROP_MEMBERSHIP = 0x24
constant sysIP_UNBLOCK_SOURCE (line 35) | sysIP_UNBLOCK_SOURCE = 0x25
constant sysIP_BLOCK_SOURCE (line 36) | sysIP_BLOCK_SOURCE = 0x26
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 37) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x27
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 38) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x28
constant sysIP_MSFILTER (line 39) | sysIP_MSFILTER = 0x29
constant sysMCAST_JOIN_GROUP (line 40) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 41) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 42) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 43) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 44) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 45) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 46) | sysMCAST_MSFILTER = 0x30
constant sysIP_MULTICAST_ALL (line 47) | sysIP_MULTICAST_ALL = 0x31
constant sysICMP_FILTER (line 49) | sysICMP_FILTER = 0x1
constant sysSO_EE_ORIGIN_NONE (line 51) | sysSO_EE_ORIGIN_NONE = 0x0
constant sysSO_EE_ORIGIN_LOCAL (line 52) | sysSO_EE_ORIGIN_LOCAL = 0x1
constant sysSO_EE_ORIGIN_ICMP (line 53) | sysSO_EE_ORIGIN_ICMP = 0x2
constant sysSO_EE_ORIGIN_ICMP6 (line 54) | sysSO_EE_ORIGIN_ICMP6 = 0x3
constant sysSO_EE_ORIGIN_TXSTATUS (line 55) | sysSO_EE_ORIGIN_TXSTATUS = 0x4
constant sysSO_EE_ORIGIN_TIMESTAMPING (line 56) | sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
constant sysSOL_SOCKET (line 58) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 59) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 61) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 62) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 63) | sizeofInetPktinfo = 0xc
constant sizeofSockExtendedErr (line 64) | sizeofSockExtendedErr = 0x10
constant sizeofIPMreq (line 66) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 67) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 68) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 69) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 70) | sizeofGroupSourceReq = 0x104
constant sizeofICMPFilter (line 72) | sizeofICMPFilter = 0x4
constant sizeofSockFprog (line 74) | sizeofSockFprog = 0x8
type kernelSockaddrStorage (line 77) | type kernelSockaddrStorage struct
type sockaddrInet (line 82) | type sockaddrInet struct
type inetPktinfo (line 89) | type inetPktinfo struct
type sockExtendedErr (line 95) | type sockExtendedErr struct
type ipMreq (line 105) | type ipMreq struct
type ipMreqn (line 110) | type ipMreqn struct
type ipMreqSource (line 116) | type ipMreqSource struct
type groupReq (line 122) | type groupReq struct
type groupSourceReq (line 127) | type groupSourceReq struct
type icmpFilter (line 133) | type icmpFilter struct
type sockFProg (line 137) | type sockFProg struct
type sockFilter (line 143) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv4/zsys_linux_ppc64.go
constant sysIP_TOS (line 7) | sysIP_TOS = 0x1
constant sysIP_TTL (line 8) | sysIP_TTL = 0x2
constant sysIP_HDRINCL (line 9) | sysIP_HDRINCL = 0x3
constant sysIP_OPTIONS (line 10) | sysIP_OPTIONS = 0x4
constant sysIP_ROUTER_ALERT (line 11) | sysIP_ROUTER_ALERT = 0x5
constant sysIP_RECVOPTS (line 12) | sysIP_RECVOPTS = 0x6
constant sysIP_RETOPTS (line 13) | sysIP_RETOPTS = 0x7
constant sysIP_PKTINFO (line 14) | sysIP_PKTINFO = 0x8
constant sysIP_PKTOPTIONS (line 15) | sysIP_PKTOPTIONS = 0x9
constant sysIP_MTU_DISCOVER (line 16) | sysIP_MTU_DISCOVER = 0xa
constant sysIP_RECVERR (line 17) | sysIP_RECVERR = 0xb
constant sysIP_RECVTTL (line 18) | sysIP_RECVTTL = 0xc
constant sysIP_RECVTOS (line 19) | sysIP_RECVTOS = 0xd
constant sysIP_MTU (line 20) | sysIP_MTU = 0xe
constant sysIP_FREEBIND (line 21) | sysIP_FREEBIND = 0xf
constant sysIP_TRANSPARENT (line 22) | sysIP_TRANSPARENT = 0x13
constant sysIP_RECVRETOPTS (line 23) | sysIP_RECVRETOPTS = 0x7
constant sysIP_ORIGDSTADDR (line 24) | sysIP_ORIGDSTADDR = 0x14
constant sysIP_RECVORIGDSTADDR (line 25) | sysIP_RECVORIGDSTADDR = 0x14
constant sysIP_MINTTL (line 26) | sysIP_MINTTL = 0x15
constant sysIP_NODEFRAG (line 27) | sysIP_NODEFRAG = 0x16
constant sysIP_UNICAST_IF (line 28) | sysIP_UNICAST_IF = 0x32
constant sysIP_MULTICAST_IF (line 30) | sysIP_MULTICAST_IF = 0x20
constant sysIP_MULTICAST_TTL (line 31) | sysIP_MULTICAST_TTL = 0x21
constant sysIP_MULTICAST_LOOP (line 32) | sysIP_MULTICAST_LOOP = 0x22
constant sysIP_ADD_MEMBERSHIP (line 33) | sysIP_ADD_MEMBERSHIP = 0x23
constant sysIP_DROP_MEMBERSHIP (line 34) | sysIP_DROP_MEMBERSHIP = 0x24
constant sysIP_UNBLOCK_SOURCE (line 35) | sysIP_UNBLOCK_SOURCE = 0x25
constant sysIP_BLOCK_SOURCE (line 36) | sysIP_BLOCK_SOURCE = 0x26
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 37) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x27
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 38) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x28
constant sysIP_MSFILTER (line 39) | sysIP_MSFILTER = 0x29
constant sysMCAST_JOIN_GROUP (line 40) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 41) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 42) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 43) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 44) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 45) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 46) | sysMCAST_MSFILTER = 0x30
constant sysIP_MULTICAST_ALL (line 47) | sysIP_MULTICAST_ALL = 0x31
constant sysICMP_FILTER (line 49) | sysICMP_FILTER = 0x1
constant sysSO_EE_ORIGIN_NONE (line 51) | sysSO_EE_ORIGIN_NONE = 0x0
constant sysSO_EE_ORIGIN_LOCAL (line 52) | sysSO_EE_ORIGIN_LOCAL = 0x1
constant sysSO_EE_ORIGIN_ICMP (line 53) | sysSO_EE_ORIGIN_ICMP = 0x2
constant sysSO_EE_ORIGIN_ICMP6 (line 54) | sysSO_EE_ORIGIN_ICMP6 = 0x3
constant sysSO_EE_ORIGIN_TXSTATUS (line 55) | sysSO_EE_ORIGIN_TXSTATUS = 0x4
constant sysSO_EE_ORIGIN_TIMESTAMPING (line 56) | sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
constant sysSOL_SOCKET (line 58) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 59) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 61) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 62) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 63) | sizeofInetPktinfo = 0xc
constant sizeofSockExtendedErr (line 64) | sizeofSockExtendedErr = 0x10
constant sizeofIPMreq (line 66) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 67) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 68) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 69) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 70) | sizeofGroupSourceReq = 0x108
constant sizeofICMPFilter (line 72) | sizeofICMPFilter = 0x4
constant sizeofSockFprog (line 74) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 77) | type kernelSockaddrStorage struct
type sockaddrInet (line 82) | type sockaddrInet struct
type inetPktinfo (line 89) | type inetPktinfo struct
type sockExtendedErr (line 95) | type sockExtendedErr struct
type ipMreq (line 105) | type ipMreq struct
type ipMreqn (line 110) | type ipMreqn struct
type ipMreqSource (line 116) | type ipMreqSource struct
type groupReq (line 122) | type groupReq struct
type groupSourceReq (line 128) | type groupSourceReq struct
type icmpFilter (line 135) | type icmpFilter struct
type sockFProg (line 139) | type sockFProg struct
type sockFilter (line 145) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv4/zsys_linux_ppc64le.go
constant sysIP_TOS (line 7) | sysIP_TOS = 0x1
constant sysIP_TTL (line 8) | sysIP_TTL = 0x2
constant sysIP_HDRINCL (line 9) | sysIP_HDRINCL = 0x3
constant sysIP_OPTIONS (line 10) | sysIP_OPTIONS = 0x4
constant sysIP_ROUTER_ALERT (line 11) | sysIP_ROUTER_ALERT = 0x5
constant sysIP_RECVOPTS (line 12) | sysIP_RECVOPTS = 0x6
constant sysIP_RETOPTS (line 13) | sysIP_RETOPTS = 0x7
constant sysIP_PKTINFO (line 14) | sysIP_PKTINFO = 0x8
constant sysIP_PKTOPTIONS (line 15) | sysIP_PKTOPTIONS = 0x9
constant sysIP_MTU_DISCOVER (line 16) | sysIP_MTU_DISCOVER = 0xa
constant sysIP_RECVERR (line 17) | sysIP_RECVERR = 0xb
constant sysIP_RECVTTL (line 18) | sysIP_RECVTTL = 0xc
constant sysIP_RECVTOS (line 19) | sysIP_RECVTOS = 0xd
constant sysIP_MTU (line 20) | sysIP_MTU = 0xe
constant sysIP_FREEBIND (line 21) | sysIP_FREEBIND = 0xf
constant sysIP_TRANSPARENT (line 22) | sysIP_TRANSPARENT = 0x13
constant sysIP_RECVRETOPTS (line 23) | sysIP_RECVRETOPTS = 0x7
constant sysIP_ORIGDSTADDR (line 24) | sysIP_ORIGDSTADDR = 0x14
constant sysIP_RECVORIGDSTADDR (line 25) | sysIP_RECVORIGDSTADDR = 0x14
constant sysIP_MINTTL (line 26) | sysIP_MINTTL = 0x15
constant sysIP_NODEFRAG (line 27) | sysIP_NODEFRAG = 0x16
constant sysIP_UNICAST_IF (line 28) | sysIP_UNICAST_IF = 0x32
constant sysIP_MULTICAST_IF (line 30) | sysIP_MULTICAST_IF = 0x20
constant sysIP_MULTICAST_TTL (line 31) | sysIP_MULTICAST_TTL = 0x21
constant sysIP_MULTICAST_LOOP (line 32) | sysIP_MULTICAST_LOOP = 0x22
constant sysIP_ADD_MEMBERSHIP (line 33) | sysIP_ADD_MEMBERSHIP = 0x23
constant sysIP_DROP_MEMBERSHIP (line 34) | sysIP_DROP_MEMBERSHIP = 0x24
constant sysIP_UNBLOCK_SOURCE (line 35) | sysIP_UNBLOCK_SOURCE = 0x25
constant sysIP_BLOCK_SOURCE (line 36) | sysIP_BLOCK_SOURCE = 0x26
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 37) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x27
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 38) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x28
constant sysIP_MSFILTER (line 39) | sysIP_MSFILTER = 0x29
constant sysMCAST_JOIN_GROUP (line 40) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 41) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 42) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 43) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 44) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 45) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 46) | sysMCAST_MSFILTER = 0x30
constant sysIP_MULTICAST_ALL (line 47) | sysIP_MULTICAST_ALL = 0x31
constant sysICMP_FILTER (line 49) | sysICMP_FILTER = 0x1
constant sysSO_EE_ORIGIN_NONE (line 51) | sysSO_EE_ORIGIN_NONE = 0x0
constant sysSO_EE_ORIGIN_LOCAL (line 52) | sysSO_EE_ORIGIN_LOCAL = 0x1
constant sysSO_EE_ORIGIN_ICMP (line 53) | sysSO_EE_ORIGIN_ICMP = 0x2
constant sysSO_EE_ORIGIN_ICMP6 (line 54) | sysSO_EE_ORIGIN_ICMP6 = 0x3
constant sysSO_EE_ORIGIN_TXSTATUS (line 55) | sysSO_EE_ORIGIN_TXSTATUS = 0x4
constant sysSO_EE_ORIGIN_TIMESTAMPING (line 56) | sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
constant sysSOL_SOCKET (line 58) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 59) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 61) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 62) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 63) | sizeofInetPktinfo = 0xc
constant sizeofSockExtendedErr (line 64) | sizeofSockExtendedErr = 0x10
constant sizeofIPMreq (line 66) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 67) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 68) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 69) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 70) | sizeofGroupSourceReq = 0x108
constant sizeofICMPFilter (line 72) | sizeofICMPFilter = 0x4
constant sizeofSockFprog (line 74) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 77) | type kernelSockaddrStorage struct
type sockaddrInet (line 82) | type sockaddrInet struct
type inetPktinfo (line 89) | type inetPktinfo struct
type sockExtendedErr (line 95) | type sockExtendedErr struct
type ipMreq (line 105) | type ipMreq struct
type ipMreqn (line 110) | type ipMreqn struct
type ipMreqSource (line 116) | type ipMreqSource struct
type groupReq (line 122) | type groupReq struct
type groupSourceReq (line 128) | type groupSourceReq struct
type icmpFilter (line 135) | type icmpFilter struct
type sockFProg (line 139) | type sockFProg struct
type sockFilter (line 145) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv4/zsys_linux_s390x.go
constant sysIP_TOS (line 7) | sysIP_TOS = 0x1
constant sysIP_TTL (line 8) | sysIP_TTL = 0x2
constant sysIP_HDRINCL (line 9) | sysIP_HDRINCL = 0x3
constant sysIP_OPTIONS (line 10) | sysIP_OPTIONS = 0x4
constant sysIP_ROUTER_ALERT (line 11) | sysIP_ROUTER_ALERT = 0x5
constant sysIP_RECVOPTS (line 12) | sysIP_RECVOPTS = 0x6
constant sysIP_RETOPTS (line 13) | sysIP_RETOPTS = 0x7
constant sysIP_PKTINFO (line 14) | sysIP_PKTINFO = 0x8
constant sysIP_PKTOPTIONS (line 15) | sysIP_PKTOPTIONS = 0x9
constant sysIP_MTU_DISCOVER (line 16) | sysIP_MTU_DISCOVER = 0xa
constant sysIP_RECVERR (line 17) | sysIP_RECVERR = 0xb
constant sysIP_RECVTTL (line 18) | sysIP_RECVTTL = 0xc
constant sysIP_RECVTOS (line 19) | sysIP_RECVTOS = 0xd
constant sysIP_MTU (line 20) | sysIP_MTU = 0xe
constant sysIP_FREEBIND (line 21) | sysIP_FREEBIND = 0xf
constant sysIP_TRANSPARENT (line 22) | sysIP_TRANSPARENT = 0x13
constant sysIP_RECVRETOPTS (line 23) | sysIP_RECVRETOPTS = 0x7
constant sysIP_ORIGDSTADDR (line 24) | sysIP_ORIGDSTADDR = 0x14
constant sysIP_RECVORIGDSTADDR (line 25) | sysIP_RECVORIGDSTADDR = 0x14
constant sysIP_MINTTL (line 26) | sysIP_MINTTL = 0x15
constant sysIP_NODEFRAG (line 27) | sysIP_NODEFRAG = 0x16
constant sysIP_UNICAST_IF (line 28) | sysIP_UNICAST_IF = 0x32
constant sysIP_MULTICAST_IF (line 30) | sysIP_MULTICAST_IF = 0x20
constant sysIP_MULTICAST_TTL (line 31) | sysIP_MULTICAST_TTL = 0x21
constant sysIP_MULTICAST_LOOP (line 32) | sysIP_MULTICAST_LOOP = 0x22
constant sysIP_ADD_MEMBERSHIP (line 33) | sysIP_ADD_MEMBERSHIP = 0x23
constant sysIP_DROP_MEMBERSHIP (line 34) | sysIP_DROP_MEMBERSHIP = 0x24
constant sysIP_UNBLOCK_SOURCE (line 35) | sysIP_UNBLOCK_SOURCE = 0x25
constant sysIP_BLOCK_SOURCE (line 36) | sysIP_BLOCK_SOURCE = 0x26
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 37) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x27
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 38) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x28
constant sysIP_MSFILTER (line 39) | sysIP_MSFILTER = 0x29
constant sysMCAST_JOIN_GROUP (line 40) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 41) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 42) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 43) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 44) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 45) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 46) | sysMCAST_MSFILTER = 0x30
constant sysIP_MULTICAST_ALL (line 47) | sysIP_MULTICAST_ALL = 0x31
constant sysICMP_FILTER (line 49) | sysICMP_FILTER = 0x1
constant sysSO_EE_ORIGIN_NONE (line 51) | sysSO_EE_ORIGIN_NONE = 0x0
constant sysSO_EE_ORIGIN_LOCAL (line 52) | sysSO_EE_ORIGIN_LOCAL = 0x1
constant sysSO_EE_ORIGIN_ICMP (line 53) | sysSO_EE_ORIGIN_ICMP = 0x2
constant sysSO_EE_ORIGIN_ICMP6 (line 54) | sysSO_EE_ORIGIN_ICMP6 = 0x3
constant sysSO_EE_ORIGIN_TXSTATUS (line 55) | sysSO_EE_ORIGIN_TXSTATUS = 0x4
constant sysSO_EE_ORIGIN_TIMESTAMPING (line 56) | sysSO_EE_ORIGIN_TIMESTAMPING = 0x4
constant sysSOL_SOCKET (line 58) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 59) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 61) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 62) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 63) | sizeofInetPktinfo = 0xc
constant sizeofSockExtendedErr (line 64) | sizeofSockExtendedErr = 0x10
constant sizeofIPMreq (line 66) | sizeofIPMreq = 0x8
constant sizeofIPMreqn (line 67) | sizeofIPMreqn = 0xc
constant sizeofIPMreqSource (line 68) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 69) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 70) | sizeofGroupSourceReq = 0x108
constant sizeofICMPFilter (line 72) | sizeofICMPFilter = 0x4
constant sizeofSockFprog (line 74) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 77) | type kernelSockaddrStorage struct
type sockaddrInet (line 82) | type sockaddrInet struct
type inetPktinfo (line 89) | type inetPktinfo struct
type sockExtendedErr (line 95) | type sockExtendedErr struct
type ipMreq (line 105) | type ipMreq struct
type ipMreqn (line 110) | type ipMreqn struct
type ipMreqSource (line 116) | type ipMreqSource struct
type groupReq (line 122) | type groupReq struct
type groupSourceReq (line 128) | type groupSourceReq struct
type icmpFilter (line 135) | type icmpFilter struct
type sockFProg (line 139) | type sockFProg struct
type sockFilter (line 145) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv4/zsys_netbsd.go
constant sysIP_OPTIONS (line 7) | sysIP_OPTIONS = 0x1
constant sysIP_HDRINCL (line 8) | sysIP_HDRINCL = 0x2
constant sysIP_TOS (line 9) | sysIP_TOS = 0x3
constant sysIP_TTL (line 10) | sysIP_TTL = 0x4
constant sysIP_RECVOPTS (line 11) | sysIP_RECVOPTS = 0x5
constant sysIP_RECVRETOPTS (line 12) | sysIP_RECVRETOPTS = 0x6
constant sysIP_RECVDSTADDR (line 13) | sysIP_RECVDSTADDR = 0x7
constant sysIP_RETOPTS (line 14) | sysIP_RETOPTS = 0x8
constant sysIP_RECVIF (line 15) | sysIP_RECVIF = 0x14
constant sysIP_RECVTTL (line 16) | sysIP_RECVTTL = 0x17
constant sysIP_MULTICAST_IF (line 18) | sysIP_MULTICAST_IF = 0x9
constant sysIP_MULTICAST_TTL (line 19) | sysIP_MULTICAST_TTL = 0xa
constant sysIP_MULTICAST_LOOP (line 20) | sysIP_MULTICAST_LOOP = 0xb
constant sysIP_ADD_MEMBERSHIP (line 21) | sysIP_ADD_MEMBERSHIP = 0xc
constant sysIP_DROP_MEMBERSHIP (line 22) | sysIP_DROP_MEMBERSHIP = 0xd
constant sizeofIPMreq (line 24) | sizeofIPMreq = 0x8
type ipMreq (line 27) | type ipMreq struct
FILE: vendor/golang.org/x/net/ipv4/zsys_openbsd.go
constant sysIP_OPTIONS (line 7) | sysIP_OPTIONS = 0x1
constant sysIP_HDRINCL (line 8) | sysIP_HDRINCL = 0x2
constant sysIP_TOS (line 9) | sysIP_TOS = 0x3
constant sysIP_TTL (line 10) | sysIP_TTL = 0x4
constant sysIP_RECVOPTS (line 11) | sysIP_RECVOPTS = 0x5
constant sysIP_RECVRETOPTS (line 12) | sysIP_RECVRETOPTS = 0x6
constant sysIP_RECVDSTADDR (line 13) | sysIP_RECVDSTADDR = 0x7
constant sysIP_RETOPTS (line 14) | sysIP_RETOPTS = 0x8
constant sysIP_RECVIF (line 15) | sysIP_RECVIF = 0x1e
constant sysIP_RECVTTL (line 16) | sysIP_RECVTTL = 0x1f
constant sysIP_MULTICAST_IF (line 18) | sysIP_MULTICAST_IF = 0x9
constant sysIP_MULTICAST_TTL (line 19) | sysIP_MULTICAST_TTL = 0xa
constant sysIP_MULTICAST_LOOP (line 20) | sysIP_MULTICAST_LOOP = 0xb
constant sysIP_ADD_MEMBERSHIP (line 21) | sysIP_ADD_MEMBERSHIP = 0xc
constant sysIP_DROP_MEMBERSHIP (line 22) | sysIP_DROP_MEMBERSHIP = 0xd
constant sizeofIPMreq (line 24) | sizeofIPMreq = 0x8
type ipMreq (line 27) | type ipMreq struct
FILE: vendor/golang.org/x/net/ipv4/zsys_solaris.go
constant sysIP_OPTIONS (line 7) | sysIP_OPTIONS = 0x1
constant sysIP_HDRINCL (line 8) | sysIP_HDRINCL = 0x2
constant sysIP_TOS (line 9) | sysIP_TOS = 0x3
constant sysIP_TTL (line 10) | sysIP_TTL = 0x4
constant sysIP_RECVOPTS (line 11) | sysIP_RECVOPTS = 0x5
constant sysIP_RECVRETOPTS (line 12) | sysIP_RECVRETOPTS = 0x6
constant sysIP_RECVDSTADDR (line 13) | sysIP_RECVDSTADDR = 0x7
constant sysIP_RETOPTS (line 14) | sysIP_RETOPTS = 0x8
constant sysIP_RECVIF (line 15) | sysIP_RECVIF = 0x9
constant sysIP_RECVSLLA (line 16) | sysIP_RECVSLLA = 0xa
constant sysIP_RECVTTL (line 17) | sysIP_RECVTTL = 0xb
constant sysIP_MULTICAST_IF (line 19) | sysIP_MULTICAST_IF = 0x10
constant sysIP_MULTICAST_TTL (line 20) | sysIP_MULTICAST_TTL = 0x11
constant sysIP_MULTICAST_LOOP (line 21) | sysIP_MULTICAST_LOOP = 0x12
constant sysIP_ADD_MEMBERSHIP (line 22) | sysIP_ADD_MEMBERSHIP = 0x13
constant sysIP_DROP_MEMBERSHIP (line 23) | sysIP_DROP_MEMBERSHIP = 0x14
constant sysIP_BLOCK_SOURCE (line 24) | sysIP_BLOCK_SOURCE = 0x15
constant sysIP_UNBLOCK_SOURCE (line 25) | sysIP_UNBLOCK_SOURCE = 0x16
constant sysIP_ADD_SOURCE_MEMBERSHIP (line 26) | sysIP_ADD_SOURCE_MEMBERSHIP = 0x17
constant sysIP_DROP_SOURCE_MEMBERSHIP (line 27) | sysIP_DROP_SOURCE_MEMBERSHIP = 0x18
constant sysIP_NEXTHOP (line 28) | sysIP_NEXTHOP = 0x19
constant sysIP_PKTINFO (line 30) | sysIP_PKTINFO = 0x1a
constant sysIP_RECVPKTINFO (line 31) | sysIP_RECVPKTINFO = 0x1a
constant sysIP_DONTFRAG (line 32) | sysIP_DONTFRAG = 0x1b
constant sysIP_BOUND_IF (line 34) | sysIP_BOUND_IF = 0x41
constant sysIP_UNSPEC_SRC (line 35) | sysIP_UNSPEC_SRC = 0x42
constant sysIP_BROADCAST_TTL (line 36) | sysIP_BROADCAST_TTL = 0x43
constant sysIP_DHCPINIT_IF (line 37) | sysIP_DHCPINIT_IF = 0x45
constant sysIP_REUSEADDR (line 39) | sysIP_REUSEADDR = 0x104
constant sysIP_DONTROUTE (line 40) | sysIP_DONTROUTE = 0x105
constant sysIP_BROADCAST (line 41) | sysIP_BROADCAST = 0x106
constant sysMCAST_JOIN_GROUP (line 43) | sysMCAST_JOIN_GROUP = 0x29
constant sysMCAST_LEAVE_GROUP (line 44) | sysMCAST_LEAVE_GROUP = 0x2a
constant sysMCAST_BLOCK_SOURCE (line 45) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 46) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_JOIN_SOURCE_GROUP (line 47) | sysMCAST_JOIN_SOURCE_GROUP = 0x2d
constant sysMCAST_LEAVE_SOURCE_GROUP (line 48) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2e
constant sizeofSockaddrStorage (line 50) | sizeofSockaddrStorage = 0x100
constant sizeofSockaddrInet (line 51) | sizeofSockaddrInet = 0x10
constant sizeofInetPktinfo (line 52) | sizeofInetPktinfo = 0xc
constant sizeofIPMreq (line 54) | sizeofIPMreq = 0x8
constant sizeofIPMreqSource (line 55) | sizeofIPMreqSource = 0xc
constant sizeofGroupReq (line 56) | sizeofGroupReq = 0x104
constant sizeofGroupSourceReq (line 57) | sizeofGroupSourceReq = 0x204
type sockaddrStorage (line 60) | type sockaddrStorage struct
type sockaddrInet (line 67) | type sockaddrInet struct
type inetPktinfo (line 74) | type inetPktinfo struct
type ipMreq (line 80) | type ipMreq struct
type ipMreqSource (line 85) | type ipMreqSource struct
type groupReq (line 91) | type groupReq struct
type groupSourceReq (line 96) | type groupSourceReq struct
FILE: vendor/golang.org/x/net/ipv6/batch.go
method ReadBatch (line 68) | func (c *payloadHandler) ReadBatch(ms []Message, flags int) (int, error) {
method WriteBatch (line 99) | func (c *payloadHandler) WriteBatch(ms []Message, flags int) (int, error) {
FILE: vendor/golang.org/x/net/ipv6/bpf_test.go
function TestBPF (line 17) | func TestBPF(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv6/control.go
type rawOpt (line 21) | type rawOpt struct
method set (line 26) | func (c *rawOpt) set(f ControlFlags) { c.cflags |= f }
method clear (line 27) | func (c *rawOpt) clear(f ControlFlags) { c.cflags &^= f }
method isset (line 28) | func (c *rawOpt) isset(f ControlFlags) bool { return c.cflags&f != 0 }
type ControlFlags (line 32) | type ControlFlags
constant FlagTrafficClass (line 35) | FlagTrafficClass ControlFlags = 1 << iota
constant FlagHopLimit (line 36) | FlagHopLimit
constant FlagSrc (line 37) | FlagSrc
constant FlagDst (line 38) | FlagDst
constant FlagInterface (line 39) | FlagInterface
constant FlagPathMTU (line 40) | FlagPathMTU
constant flagPacketInfo (line 43) | flagPacketInfo = FlagDst | FlagInterface
type ControlMessage (line 47) | type ControlMessage struct
method String (line 65) | func (cm *ControlMessage) String() string {
method Marshal (line 73) | func (cm *ControlMessage) Marshal() []byte {
method Parse (line 119) | func (cm *ControlMessage) Parse(b []byte) error {
function NewControlMessage (line 149) | func NewControlMessage(cf ControlFlags) []byte {
constant ctlTrafficClass (line 173) | ctlTrafficClass = iota
constant ctlHopLimit (line 174) | ctlHopLimit
constant ctlPacketInfo (line 175) | ctlPacketInfo
constant ctlNextHop (line 176) | ctlNextHop
constant ctlPathMTU (line 177) | ctlPathMTU
constant ctlMax (line 178) | ctlMax
type ctlOpt (line 182) | type ctlOpt struct
FILE: vendor/golang.org/x/net/ipv6/control_rfc2292_unix.go
function marshal2292HopLimit (line 16) | func marshal2292HopLimit(b []byte, cm *ControlMessage) []byte {
function marshal2292PacketInfo (line 25) | func marshal2292PacketInfo(b []byte, cm *ControlMessage) []byte {
function marshal2292NextHop (line 40) | func marshal2292NextHop(b []byte, cm *ControlMessage) []byte {
FILE: vendor/golang.org/x/net/ipv6/control_rfc3542_unix.go
function marshalTrafficClass (line 17) | func marshalTrafficClass(b []byte, cm *ControlMessage) []byte {
function parseTrafficClass (line 26) | func parseTrafficClass(cm *ControlMessage, b []byte) {
function marshalHopLimit (line 30) | func marshalHopLimit(b []byte, cm *ControlMessage) []byte {
function parseHopLimit (line 39) | func parseHopLimit(cm *ControlMessage, b []byte) {
function marshalPacketInfo (line 43) | func marshalPacketInfo(b []byte, cm *ControlMessage) []byte {
function parsePacketInfo (line 58) | func parsePacketInfo(cm *ControlMessage, b []byte) {
function marshalNextHop (line 67) | func marshalNextHop(b []byte, cm *ControlMessage) []byte {
function parseNextHop (line 77) | func parseNextHop(cm *ControlMessage, b []byte) {
function marshalPathMTU (line 80) | func marshalPathMTU(b []byte, cm *ControlMessage) []byte {
function parsePathMTU (line 86) | func parsePathMTU(cm *ControlMessage, b []byte) {
FILE: vendor/golang.org/x/net/ipv6/control_stub.go
function setControlMessage (line 11) | func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on ...
FILE: vendor/golang.org/x/net/ipv6/control_test.go
function TestControlMessageParseWithFuzz (line 13) | func TestControlMessageParseWithFuzz(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv6/control_unix.go
function setControlMessage (line 11) | func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on ...
FILE: vendor/golang.org/x/net/ipv6/control_windows.go
function setControlMessage (line 13) | func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on ...
FILE: vendor/golang.org/x/net/ipv6/defs_darwin.go
constant sysIPV6_UNICAST_HOPS (line 19) | sysIPV6_UNICAST_HOPS = C.IPV6_UNICAST_HOPS
constant sysIPV6_MULTICAST_IF (line 20) | sysIPV6_MULTICAST_IF = C.IPV6_MULTICAST_IF
constant sysIPV6_MULTICAST_HOPS (line 21) | sysIPV6_MULTICAST_HOPS = C.IPV6_MULTICAST_HOPS
constant sysIPV6_MULTICAST_LOOP (line 22) | sysIPV6_MULTICAST_LOOP = C.IPV6_MULTICAST_LOOP
constant sysIPV6_JOIN_GROUP (line 23) | sysIPV6_JOIN_GROUP = C.IPV6_JOIN_GROUP
constant sysIPV6_LEAVE_GROUP (line 24) | sysIPV6_LEAVE_GROUP = C.IPV6_LEAVE_GROUP
constant sysIPV6_PORTRANGE (line 26) | sysIPV6_PORTRANGE = C.IPV6_PORTRANGE
constant sysICMP6_FILTER (line 27) | sysICMP6_FILTER = C.ICMP6_FILTER
constant sysIPV6_2292PKTINFO (line 28) | sysIPV6_2292PKTINFO = C.IPV6_2292PKTINFO
constant sysIPV6_2292HOPLIMIT (line 29) | sysIPV6_2292HOPLIMIT = C.IPV6_2292HOPLIMIT
constant sysIPV6_2292NEXTHOP (line 30) | sysIPV6_2292NEXTHOP = C.IPV6_2292NEXTHOP
constant sysIPV6_2292HOPOPTS (line 31) | sysIPV6_2292HOPOPTS = C.IPV6_2292HOPOPTS
constant sysIPV6_2292DSTOPTS (line 32) | sysIPV6_2292DSTOPTS = C.IPV6_2292DSTOPTS
constant sysIPV6_2292RTHDR (line 33) | sysIPV6_2292RTHDR = C.IPV6_2292RTHDR
constant sysIPV6_2292PKTOPTIONS (line 35) | sysIPV6_2292PKTOPTIONS = C.IPV6_2292PKTOPTIONS
constant sysIPV6_CHECKSUM (line 37) | sysIPV6_CHECKSUM = C.IPV6_CHECKSUM
constant sysIPV6_V6ONLY (line 38) | sysIPV6_V6ONLY = C.IPV6_V6ONLY
constant sysIPV6_IPSEC_POLICY (line 40) | sysIPV6_IPSEC_POLICY = C.IPV6_IPSEC_POLICY
constant sysIPV6_RECVTCLASS (line 42) | sysIPV6_RECVTCLASS = C.IPV6_RECVTCLASS
constant sysIPV6_TCLASS (line 43) | sysIPV6_TCLASS = C.IPV6_TCLASS
constant sysIPV6_RTHDRDSTOPTS (line 45) | sysIPV6_RTHDRDSTOPTS = C.IPV6_RTHDRDSTOPTS
constant sysIPV6_RECVPKTINFO (line 47) | sysIPV6_RECVPKTINFO = C.IPV6_RECVPKTINFO
constant sysIPV6_RECVHOPLIMIT (line 49) | sysIPV6_RECVHOPLIMIT = C.IPV6_RECVHOPLIMIT
constant sysIPV6_RECVRTHDR (line 50) | sysIPV6_RECVRTHDR = C.IPV6_RECVRTHDR
constant sysIPV6_RECVHOPOPTS (line 51) | sysIPV6_RECVHOPOPTS = C.IPV6_RECVHOPOPTS
constant sysIPV6_RECVDSTOPTS (line 52) | sysIPV6_RECVDSTOPTS = C.IPV6_RECVDSTOPTS
constant sysIPV6_USE_MIN_MTU (line 54) | sysIPV6_USE_MIN_MTU = C.IPV6_USE_MIN_MTU
constant sysIPV6_RECVPATHMTU (line 55) | sysIPV6_RECVPATHMTU = C.IPV6_RECVPATHMTU
constant sysIPV6_PATHMTU (line 57) | sysIPV6_PATHMTU = C.IPV6_PATHMTU
constant sysIPV6_PKTINFO (line 59) | sysIPV6_PKTINFO = C.IPV6_PKTINFO
constant sysIPV6_HOPLIMIT (line 60) | sysIPV6_HOPLIMIT = C.IPV6_HOPLIMIT
constant sysIPV6_NEXTHOP (line 61) | sysIPV6_NEXTHOP = C.IPV6_NEXTHOP
constant sysIPV6_HOPOPTS (line 62) | sysIPV6_HOPOPTS = C.IPV6_HOPOPTS
constant sysIPV6_DSTOPTS (line 63) | sysIPV6_DSTOPTS = C.IPV6_DSTOPTS
constant sysIPV6_RTHDR (line 64) | sysIPV6_RTHDR = C.IPV6_RTHDR
constant sysIPV6_AUTOFLOWLABEL (line 66) | sysIPV6_AUTOFLOWLABEL = C.IPV6_AUTOFLOWLABEL
constant sysIPV6_DONTFRAG (line 68) | sysIPV6_DONTFRAG = C.IPV6_DONTFRAG
constant sysIPV6_PREFER_TEMPADDR (line 70) | sysIPV6_PREFER_TEMPADDR = C.IPV6_PREFER_TEMPADDR
constant sysIPV6_MSFILTER (line 72) | sysIPV6_MSFILTER = C.IPV6_MSFILTER
constant sysMCAST_JOIN_GROUP (line 73) | sysMCAST_JOIN_GROUP = C.MCAST_JOIN_GROUP
constant sysMCAST_LEAVE_GROUP (line 74) | sysMCAST_LEAVE_GROUP = C.MCAST_LEAVE_GROUP
constant sysMCAST_JOIN_SOURCE_GROUP (line 75) | sysMCAST_JOIN_SOURCE_GROUP = C.MCAST_JOIN_SOURCE_GROUP
constant sysMCAST_LEAVE_SOURCE_GROUP (line 76) | sysMCAST_LEAVE_SOURCE_GROUP = C.MCAST_LEAVE_SOURCE_GROUP
constant sysMCAST_BLOCK_SOURCE (line 77) | sysMCAST_BLOCK_SOURCE = C.MCAST_BLOCK_SOURCE
constant sysMCAST_UNBLOCK_SOURCE (line 78) | sysMCAST_UNBLOCK_SOURCE = C.MCAST_UNBLOCK_SOURCE
constant sysIPV6_BOUND_IF (line 80) | sysIPV6_BOUND_IF = C.IPV6_BOUND_IF
constant sysIPV6_PORTRANGE_DEFAULT (line 82) | sysIPV6_PORTRANGE_DEFAULT = C.IPV6_PORTRANGE_DEFAULT
constant sysIPV6_PORTRANGE_HIGH (line 83) | sysIPV6_PORTRANGE_HIGH = C.IPV6_PORTRANGE_HIGH
constant sysIPV6_PORTRANGE_LOW (line 84) | sysIPV6_PORTRANGE_LOW = C.IPV6_PORTRANGE_LOW
constant sizeofSockaddrStorage (line 86) | sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage
constant sizeofSockaddrInet6 (line 87) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
constant sizeofInet6Pktinfo (line 88) | sizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo
constant sizeofIPv6Mtuinfo (line 89) | sizeofIPv6Mtuinfo = C.sizeof_struct_ip6_mtuinfo
constant sizeofIPv6Mreq (line 91) | sizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq
constant sizeofGroupReq (line 92) | sizeofGroupReq = C.sizeof_struct_group_req
constant sizeofGroupSourceReq (line 93) | sizeofGroupSourceReq = C.sizeof_struct_group_source_req
constant sizeofICMPv6Filter (line 95) | sizeofICMPv6Filter = C.sizeof_struct_icmp6_filter
type sockaddrStorage (line 98) | type sockaddrStorage
type sockaddrInet6 (line 100) | type sockaddrInet6
type inet6Pktinfo (line 102) | type inet6Pktinfo
type ipv6Mtuinfo (line 104) | type ipv6Mtuinfo
type ipv6Mreq (line 106) | type ipv6Mreq
type icmpv6Filter (line 108) | type icmpv6Filter
type groupReq (line 110) | type groupReq
type groupSourceReq (line 112) | type groupSourceReq
FILE: vendor/golang.org/x/net/ipv6/defs_dragonfly.go
constant sysIPV6_UNICAST_HOPS (line 21) | sysIPV6_UNICAST_HOPS = C.IPV6_UNICAST_HOPS
constant sysIPV6_MULTICAST_IF (line 22) | sysIPV6_MULTICAST_IF = C.IPV6_MULTICAST_IF
constant sysIPV6_MULTICAST_HOPS (line 23) | sysIPV6_MULTICAST_HOPS = C.IPV6_MULTICAST_HOPS
constant sysIPV6_MULTICAST_LOOP (line 24) | sysIPV6_MULTICAST_LOOP = C.IPV6_MULTICAST_LOOP
constant sysIPV6_JOIN_GROUP (line 25) | sysIPV6_JOIN_GROUP = C.IPV6_JOIN_GROUP
constant sysIPV6_LEAVE_GROUP (line 26) | sysIPV6_LEAVE_GROUP = C.IPV6_LEAVE_GROUP
constant sysIPV6_PORTRANGE (line 27) | sysIPV6_PORTRANGE = C.IPV6_PORTRANGE
constant sysICMP6_FILTER (line 28) | sysICMP6_FILTER = C.ICMP6_FILTER
constant sysIPV6_CHECKSUM (line 30) | sysIPV6_CHECKSUM = C.IPV6_CHECKSUM
constant sysIPV6_V6ONLY (line 31) | sysIPV6_V6ONLY = C.IPV6_V6ONLY
constant sysIPV6_IPSEC_POLICY (line 33) | sysIPV6_IPSEC_POLICY = C.IPV6_IPSEC_POLICY
constant sysIPV6_RTHDRDSTOPTS (line 35) | sysIPV6_RTHDRDSTOPTS = C.IPV6_RTHDRDSTOPTS
constant sysIPV6_RECVPKTINFO (line 36) | sysIPV6_RECVPKTINFO = C.IPV6_RECVPKTINFO
constant sysIPV6_RECVHOPLIMIT (line 37) | sysIPV6_RECVHOPLIMIT = C.IPV6_RECVHOPLIMIT
constant sysIPV6_RECVRTHDR (line 38) | sysIPV6_RECVRTHDR = C.IPV6_RECVRTHDR
constant sysIPV6_RECVHOPOPTS (line 39) | sysIPV6_RECVHOPOPTS = C.IPV6_RECVHOPOPTS
constant sysIPV6_RECVDSTOPTS (line 40) | sysIPV6_RECVDSTOPTS = C.IPV6_RECVDSTOPTS
constant sysIPV6_USE_MIN_MTU (line 42) | sysIPV6_USE_MIN_MTU = C.IPV6_USE_MIN_MTU
constant sysIPV6_RECVPATHMTU (line 43) | sysIPV6_RECVPATHMTU = C.IPV6_RECVPATHMTU
constant sysIPV6_PATHMTU (line 45) | sysIPV6_PATHMTU = C.IPV6_PATHMTU
constant sysIPV6_PKTINFO (line 47) | sysIPV6_PKTINFO = C.IPV6_PKTINFO
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = C.IPV6_HOPLIMIT
constant sysIPV6_NEXTHOP (line 49) | sysIPV6_NEXTHOP = C.IPV6_NEXTHOP
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = C.IPV6_HOPOPTS
constant sysIPV6_DSTOPTS (line 51) | sysIPV6_DSTOPTS = C.IPV6_DSTOPTS
constant sysIPV6_RTHDR (line 52) | sysIPV6_RTHDR = C.IPV6_RTHDR
constant sysIPV6_RECVTCLASS (line 54) | sysIPV6_RECVTCLASS = C.IPV6_RECVTCLASS
constant sysIPV6_AUTOFLOWLABEL (line 56) | sysIPV6_AUTOFLOWLABEL = C.IPV6_AUTOFLOWLABEL
constant sysIPV6_TCLASS (line 58) | sysIPV6_TCLASS = C.IPV6_TCLASS
constant sysIPV6_DONTFRAG (line 59) | sysIPV6_DONTFRAG = C.IPV6_DONTFRAG
constant sysIPV6_PREFER_TEMPADDR (line 61) | sysIPV6_PREFER_TEMPADDR = C.IPV6_PREFER_TEMPADDR
constant sysIPV6_PORTRANGE_DEFAULT (line 63) | sysIPV6_PORTRANGE_DEFAULT = C.IPV6_PORTRANGE_DEFAULT
constant sysIPV6_PORTRANGE_HIGH (line 64) | sysIPV6_PORTRANGE_HIGH = C.IPV6_PORTRANGE_HIGH
constant sysIPV6_PORTRANGE_LOW (line 65) | sysIPV6_PORTRANGE_LOW = C.IPV6_PORTRANGE_LOW
constant sizeofSockaddrInet6 (line 67) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
constant sizeofInet6Pktinfo (line 68) | sizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo
constant sizeofIPv6Mtuinfo (line 69) | sizeofIPv6Mtuinfo = C.sizeof_struct_ip6_mtuinfo
constant sizeofIPv6Mreq (line 71) | sizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq
constant sizeofICMPv6Filter (line 73) | sizeofICMPv6Filter = C.sizeof_struct_icmp6_filter
type sockaddrInet6 (line 76) | type sockaddrInet6
type inet6Pktinfo (line 78) | type inet6Pktinfo
type ipv6Mtuinfo (line 80) | type ipv6Mtuinfo
type ipv6Mreq (line 82) | type ipv6Mreq
type icmpv6Filter (line 84) | type icmpv6Filter
FILE: vendor/golang.org/x/net/ipv6/defs_freebsd.go
constant sysIPV6_UNICAST_HOPS (line 21) | sysIPV6_UNICAST_HOPS = C.IPV6_UNICAST_HOPS
constant sysIPV6_MULTICAST_IF (line 22) | sysIPV6_MULTICAST_IF = C.IPV6_MULTICAST_IF
constant sysIPV6_MULTICAST_HOPS (line 23) | sysIPV6_MULTICAST_HOPS = C.IPV6_MULTICAST_HOPS
constant sysIPV6_MULTICAST_LOOP (line 24) | sysIPV6_MULTICAST_LOOP = C.IPV6_MULTICAST_LOOP
constant sysIPV6_JOIN_GROUP (line 25) | sysIPV6_JOIN_GROUP = C.IPV6_JOIN_GROUP
constant sysIPV6_LEAVE_GROUP (line 26) | sysIPV6_LEAVE_GROUP = C.IPV6_LEAVE_GROUP
constant sysIPV6_PORTRANGE (line 27) | sysIPV6_PORTRANGE = C.IPV6_PORTRANGE
constant sysICMP6_FILTER (line 28) | sysICMP6_FILTER = C.ICMP6_FILTER
constant sysIPV6_CHECKSUM (line 30) | sysIPV6_CHECKSUM = C.IPV6_CHECKSUM
constant sysIPV6_V6ONLY (line 31) | sysIPV6_V6ONLY = C.IPV6_V6ONLY
constant sysIPV6_IPSEC_POLICY (line 33) | sysIPV6_IPSEC_POLICY = C.IPV6_IPSEC_POLICY
constant sysIPV6_RTHDRDSTOPTS (line 35) | sysIPV6_RTHDRDSTOPTS = C.IPV6_RTHDRDSTOPTS
constant sysIPV6_RECVPKTINFO (line 37) | sysIPV6_RECVPKTINFO = C.IPV6_RECVPKTINFO
constant sysIPV6_RECVHOPLIMIT (line 38) | sysIPV6_RECVHOPLIMIT = C.IPV6_RECVHOPLIMIT
constant sysIPV6_RECVRTHDR (line 39) | sysIPV6_RECVRTHDR = C.IPV6_RECVRTHDR
constant sysIPV6_RECVHOPOPTS (line 40) | sysIPV6_RECVHOPOPTS = C.IPV6_RECVHOPOPTS
constant sysIPV6_RECVDSTOPTS (line 41) | sysIPV6_RECVDSTOPTS = C.IPV6_RECVDSTOPTS
constant sysIPV6_USE_MIN_MTU (line 43) | sysIPV6_USE_MIN_MTU = C.IPV6_USE_MIN_MTU
constant sysIPV6_RECVPATHMTU (line 44) | sysIPV6_RECVPATHMTU = C.IPV6_RECVPATHMTU
constant sysIPV6_PATHMTU (line 46) | sysIPV6_PATHMTU = C.IPV6_PATHMTU
constant sysIPV6_PKTINFO (line 48) | sysIPV6_PKTINFO = C.IPV6_PKTINFO
constant sysIPV6_HOPLIMIT (line 49) | sysIPV6_HOPLIMIT = C.IPV6_HOPLIMIT
constant sysIPV6_NEXTHOP (line 50) | sysIPV6_NEXTHOP = C.IPV6_NEXTHOP
constant sysIPV6_HOPOPTS (line 51) | sysIPV6_HOPOPTS = C.IPV6_HOPOPTS
constant sysIPV6_DSTOPTS (line 52) | sysIPV6_DSTOPTS = C.IPV6_DSTOPTS
constant sysIPV6_RTHDR (line 53) | sysIPV6_RTHDR = C.IPV6_RTHDR
constant sysIPV6_RECVTCLASS (line 55) | sysIPV6_RECVTCLASS = C.IPV6_RECVTCLASS
constant sysIPV6_AUTOFLOWLABEL (line 57) | sysIPV6_AUTOFLOWLABEL = C.IPV6_AUTOFLOWLABEL
constant sysIPV6_TCLASS (line 59) | sysIPV6_TCLASS = C.IPV6_TCLASS
constant sysIPV6_DONTFRAG (line 60) | sysIPV6_DONTFRAG = C.IPV6_DONTFRAG
constant sysIPV6_PREFER_TEMPADDR (line 62) | sysIPV6_PREFER_TEMPADDR = C.IPV6_PREFER_TEMPADDR
constant sysIPV6_BINDANY (line 64) | sysIPV6_BINDANY = C.IPV6_BINDANY
constant sysIPV6_MSFILTER (line 66) | sysIPV6_MSFILTER = C.IPV6_MSFILTER
constant sysMCAST_JOIN_GROUP (line 68) | sysMCAST_JOIN_GROUP = C.MCAST_JOIN_GROUP
constant sysMCAST_LEAVE_GROUP (line 69) | sysMCAST_LEAVE_GROUP = C.MCAST_LEAVE_GROUP
constant sysMCAST_JOIN_SOURCE_GROUP (line 70) | sysMCAST_JOIN_SOURCE_GROUP = C.MCAST_JOIN_SOURCE_GROUP
constant sysMCAST_LEAVE_SOURCE_GROUP (line 71) | sysMCAST_LEAVE_SOURCE_GROUP = C.MCAST_LEAVE_SOURCE_GROUP
constant sysMCAST_BLOCK_SOURCE (line 72) | sysMCAST_BLOCK_SOURCE = C.MCAST_BLOCK_SOURCE
constant sysMCAST_UNBLOCK_SOURCE (line 73) | sysMCAST_UNBLOCK_SOURCE = C.MCAST_UNBLOCK_SOURCE
constant sysIPV6_PORTRANGE_DEFAULT (line 75) | sysIPV6_PORTRANGE_DEFAULT = C.IPV6_PORTRANGE_DEFAULT
constant sysIPV6_PORTRANGE_HIGH (line 76) | sysIPV6_PORTRANGE_HIGH = C.IPV6_PORTRANGE_HIGH
constant sysIPV6_PORTRANGE_LOW (line 77) | sysIPV6_PORTRANGE_LOW = C.IPV6_PORTRANGE_LOW
constant sizeofSockaddrStorage (line 79) | sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage
constant sizeofSockaddrInet6 (line 80) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
constant sizeofInet6Pktinfo (line 81) | sizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo
constant sizeofIPv6Mtuinfo (line 82) | sizeofIPv6Mtuinfo = C.sizeof_struct_ip6_mtuinfo
constant sizeofIPv6Mreq (line 84) | sizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq
constant sizeofGroupReq (line 85) | sizeofGroupReq = C.sizeof_struct_group_req
constant sizeofGroupSourceReq (line 86) | sizeofGroupSourceReq = C.sizeof_struct_group_source_req
constant sizeofICMPv6Filter (line 88) | sizeofICMPv6Filter = C.sizeof_struct_icmp6_filter
type sockaddrStorage (line 91) | type sockaddrStorage
type sockaddrInet6 (line 93) | type sockaddrInet6
type inet6Pktinfo (line 95) | type inet6Pktinfo
type ipv6Mtuinfo (line 97) | type ipv6Mtuinfo
type ipv6Mreq (line 99) | type ipv6Mreq
type groupReq (line 101) | type groupReq
type groupSourceReq (line 103) | type groupSourceReq
type icmpv6Filter (line 105) | type icmpv6Filter
FILE: vendor/golang.org/x/net/ipv6/defs_linux.go
constant sysIPV6_ADDRFORM (line 22) | sysIPV6_ADDRFORM = C.IPV6_ADDRFORM
constant sysIPV6_2292PKTINFO (line 23) | sysIPV6_2292PKTINFO = C.IPV6_2292PKTINFO
constant sysIPV6_2292HOPOPTS (line 24) | sysIPV6_2292HOPOPTS = C.IPV6_2292HOPOPTS
constant sysIPV6_2292DSTOPTS (line 25) | sysIPV6_2292DSTOPTS = C.IPV6_2292DSTOPTS
constant sysIPV6_2292RTHDR (line 26) | sysIPV6_2292RTHDR = C.IPV6_2292RTHDR
constant sysIPV6_2292PKTOPTIONS (line 27) | sysIPV6_2292PKTOPTIONS = C.IPV6_2292PKTOPTIONS
constant sysIPV6_CHECKSUM (line 28) | sysIPV6_CHECKSUM = C.IPV6_CHECKSUM
constant sysIPV6_2292HOPLIMIT (line 29) | sysIPV6_2292HOPLIMIT = C.IPV6_2292HOPLIMIT
constant sysIPV6_NEXTHOP (line 30) | sysIPV6_NEXTHOP = C.IPV6_NEXTHOP
constant sysIPV6_FLOWINFO (line 31) | sysIPV6_FLOWINFO = C.IPV6_FLOWINFO
constant sysIPV6_UNICAST_HOPS (line 33) | sysIPV6_UNICAST_HOPS = C.IPV6_UNICAST_HOPS
constant sysIPV6_MULTICAST_IF (line 34) | sysIPV6_MULTICAST_IF = C.IPV6_MULTICAST_IF
constant sysIPV6_MULTICAST_HOPS (line 35) | sysIPV6_MULTICAST_HOPS = C.IPV6_MULTICAST_HOPS
constant sysIPV6_MULTICAST_LOOP (line 36) | sysIPV6_MULTICAST_LOOP = C.IPV6_MULTICAST_LOOP
constant sysIPV6_ADD_MEMBERSHIP (line 37) | sysIPV6_ADD_MEMBERSHIP = C.IPV6_ADD_MEMBERSHIP
constant sysIPV6_DROP_MEMBERSHIP (line 38) | sysIPV6_DROP_MEMBERSHIP = C.IPV6_DROP_MEMBERSHIP
constant sysMCAST_JOIN_GROUP (line 39) | sysMCAST_JOIN_GROUP = C.MCAST_JOIN_GROUP
constant sysMCAST_LEAVE_GROUP (line 40) | sysMCAST_LEAVE_GROUP = C.MCAST_LEAVE_GROUP
constant sysMCAST_JOIN_SOURCE_GROUP (line 41) | sysMCAST_JOIN_SOURCE_GROUP = C.MCAST_JOIN_SOURCE_GROUP
constant sysMCAST_LEAVE_SOURCE_GROUP (line 42) | sysMCAST_LEAVE_SOURCE_GROUP = C.MCAST_LEAVE_SOURCE_GROUP
constant sysMCAST_BLOCK_SOURCE (line 43) | sysMCAST_BLOCK_SOURCE = C.MCAST_BLOCK_SOURCE
constant sysMCAST_UNBLOCK_SOURCE (line 44) | sysMCAST_UNBLOCK_SOURCE = C.MCAST_UNBLOCK_SOURCE
constant sysMCAST_MSFILTER (line 45) | sysMCAST_MSFILTER = C.MCAST_MSFILTER
constant sysIPV6_ROUTER_ALERT (line 46) | sysIPV6_ROUTER_ALERT = C.IPV6_ROUTER_ALERT
constant sysIPV6_MTU_DISCOVER (line 47) | sysIPV6_MTU_DISCOVER = C.IPV6_MTU_DISCOVER
constant sysIPV6_MTU (line 48) | sysIPV6_MTU = C.IPV6_MTU
constant sysIPV6_RECVERR (line 49) | sysIPV6_RECVERR = C.IPV6_RECVERR
constant sysIPV6_V6ONLY (line 50) | sysIPV6_V6ONLY = C.IPV6_V6ONLY
constant sysIPV6_JOIN_ANYCAST (line 51) | sysIPV6_JOIN_ANYCAST = C.IPV6_JOIN_ANYCAST
constant sysIPV6_LEAVE_ANYCAST (line 52) | sysIPV6_LEAVE_ANYCAST = C.IPV6_LEAVE_ANYCAST
constant sysIPV6_FLOWLABEL_MGR (line 61) | sysIPV6_FLOWLABEL_MGR = C.IPV6_FLOWLABEL_MGR
constant sysIPV6_FLOWINFO_SEND (line 62) | sysIPV6_FLOWINFO_SEND = C.IPV6_FLOWINFO_SEND
constant sysIPV6_IPSEC_POLICY (line 64) | sysIPV6_IPSEC_POLICY = C.IPV6_IPSEC_POLICY
constant sysIPV6_XFRM_POLICY (line 65) | sysIPV6_XFRM_POLICY = C.IPV6_XFRM_POLICY
constant sysIPV6_RECVPKTINFO (line 67) | sysIPV6_RECVPKTINFO = C.IPV6_RECVPKTINFO
constant sysIPV6_PKTINFO (line 68) | sysIPV6_PKTINFO = C.IPV6_PKTINFO
constant sysIPV6_RECVHOPLIMIT (line 69) | sysIPV6_RECVHOPLIMIT = C.IPV6_RECVHOPLIMIT
constant sysIPV6_HOPLIMIT (line 70) | sysIPV6_HOPLIMIT = C.IPV6_HOPLIMIT
constant sysIPV6_RECVHOPOPTS (line 71) | sysIPV6_RECVHOPOPTS = C.IPV6_RECVHOPOPTS
constant sysIPV6_HOPOPTS (line 72) | sysIPV6_HOPOPTS = C.IPV6_HOPOPTS
constant sysIPV6_RTHDRDSTOPTS (line 73) | sysIPV6_RTHDRDSTOPTS = C.IPV6_RTHDRDSTOPTS
constant sysIPV6_RECVRTHDR (line 74) | sysIPV6_RECVRTHDR = C.IPV6_RECVRTHDR
constant sysIPV6_RTHDR (line 75) | sysIPV6_RTHDR = C.IPV6_RTHDR
constant sysIPV6_RECVDSTOPTS (line 76) | sysIPV6_RECVDSTOPTS = C.IPV6_RECVDSTOPTS
constant sysIPV6_DSTOPTS (line 77) | sysIPV6_DSTOPTS = C.IPV6_DSTOPTS
constant sysIPV6_RECVPATHMTU (line 78) | sysIPV6_RECVPATHMTU = C.IPV6_RECVPATHMTU
constant sysIPV6_PATHMTU (line 79) | sysIPV6_PATHMTU = C.IPV6_PATHMTU
constant sysIPV6_DONTFRAG (line 80) | sysIPV6_DONTFRAG = C.IPV6_DONTFRAG
constant sysIPV6_RECVTCLASS (line 82) | sysIPV6_RECVTCLASS = C.IPV6_RECVTCLASS
constant sysIPV6_TCLASS (line 83) | sysIPV6_TCLASS = C.IPV6_TCLASS
constant sysIPV6_ADDR_PREFERENCES (line 85) | sysIPV6_ADDR_PREFERENCES = C.IPV6_ADDR_PREFERENCES
constant sysIPV6_PREFER_SRC_TMP (line 87) | sysIPV6_PREFER_SRC_TMP = C.IPV6_PREFER_SRC_TMP
constant sysIPV6_PREFER_SRC_PUBLIC (line 88) | sysIPV6_PREFER_SRC_PUBLIC = C.IPV6_PREFER_SRC_PUBLIC
constant sysIPV6_PREFER_SRC_PUBTMP_DEFAULT (line 89) | sysIPV6_PREFER_SRC_PUBTMP_DEFAULT = C.IPV6_PREFER_SRC_PUBTMP_DEFAULT
constant sysIPV6_PREFER_SRC_COA (line 90) | sysIPV6_PREFER_SRC_COA = C.IPV6_PREFER_SRC_COA
constant sysIPV6_PREFER_SRC_HOME (line 91) | sysIPV6_PREFER_SRC_HOME = C.IPV6_PREFER_SRC_HOME
constant sysIPV6_PREFER_SRC_CGA (line 92) | sysIPV6_PREFER_SRC_CGA = C.IPV6_PREFER_SRC_CGA
constant sysIPV6_PREFER_SRC_NONCGA (line 93) | sysIPV6_PREFER_SRC_NONCGA = C.IPV6_PREFER_SRC_NONCGA
constant sysIPV6_MINHOPCOUNT (line 95) | sysIPV6_MINHOPCOUNT = C.IPV6_MINHOPCOUNT
constant sysIPV6_ORIGDSTADDR (line 97) | sysIPV6_ORIGDSTADDR = C.IPV6_ORIGDSTADDR
constant sysIPV6_RECVORIGDSTADDR (line 98) | sysIPV6_RECVORIGDSTADDR = C.IPV6_RECVORIGDSTADDR
constant sysIPV6_TRANSPARENT (line 99) | sysIPV6_TRANSPARENT = C.IPV6_TRANSPARENT
constant sysIPV6_UNICAST_IF (line 100) | sysIPV6_UNICAST_IF = C.IPV6_UNICAST_IF
constant sysICMPV6_FILTER (line 102) | sysICMPV6_FILTER = C.ICMPV6_FILTER
constant sysICMPV6_FILTER_BLOCK (line 104) | sysICMPV6_FILTER_BLOCK = C.ICMPV6_FILTER_BLOCK
constant sysICMPV6_FILTER_PASS (line 105) | sysICMPV6_FILTER_PASS = C.ICMPV6_FILTER_PASS
constant sysICMPV6_FILTER_BLOCKOTHERS (line 106) | sysICMPV6_FILTER_BLOCKOTHERS = C.ICMPV6_FILTER_BLOCKOTHERS
constant sysICMPV6_FILTER_PASSONLY (line 107) | sysICMPV6_FILTER_PASSONLY = C.ICMPV6_FILTER_PASSONLY
constant sysSOL_SOCKET (line 109) | sysSOL_SOCKET = C.SOL_SOCKET
constant sysSO_ATTACH_FILTER (line 110) | sysSO_ATTACH_FILTER = C.SO_ATTACH_FILTER
constant sizeofKernelSockaddrStorage (line 112) | sizeofKernelSockaddrStorage = C.sizeof_struct___kernel_sockaddr_storage
constant sizeofSockaddrInet6 (line 113) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
constant sizeofInet6Pktinfo (line 114) | sizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo
constant sizeofIPv6Mtuinfo (line 115) | sizeofIPv6Mtuinfo = C.sizeof_struct_ip6_mtuinfo
constant sizeofIPv6FlowlabelReq (line 116) | sizeofIPv6FlowlabelReq = C.sizeof_struct_in6_flowlabel_req
constant sizeofIPv6Mreq (line 118) | sizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq
constant sizeofGroupReq (line 119) | sizeofGroupReq = C.sizeof_struct_group_req
constant sizeofGroupSourceReq (line 120) | sizeofGroupSourceReq = C.sizeof_struct_group_source_req
constant sizeofICMPv6Filter (line 122) | sizeofICMPv6Filter = C.sizeof_struct_icmp6_filter
constant sizeofSockFprog (line 124) | sizeofSockFprog = C.sizeof_struct_sock_fprog
type kernelSockaddrStorage (line 127) | type kernelSockaddrStorage
type sockaddrInet6 (line 129) | type sockaddrInet6
type inet6Pktinfo (line 131) | type inet6Pktinfo
type ipv6Mtuinfo (line 133) | type ipv6Mtuinfo
type ipv6FlowlabelReq (line 135) | type ipv6FlowlabelReq
type ipv6Mreq (line 137) | type ipv6Mreq
type groupReq (line 139) | type groupReq
type groupSourceReq (line 141) | type groupSourceReq
type icmpv6Filter (line 143) | type icmpv6Filter
type sockFProg (line 145) | type sockFProg
type sockFilter (line 147) | type sockFilter
FILE: vendor/golang.org/x/net/ipv6/defs_netbsd.go
constant sysIPV6_UNICAST_HOPS (line 21) | sysIPV6_UNICAST_HOPS = C.IPV6_UNICAST_HOPS
constant sysIPV6_MULTICAST_IF (line 22) | sysIPV6_MULTICAST_IF = C.IPV6_MULTICAST_IF
constant sysIPV6_MULTICAST_HOPS (line 23) | sysIPV6_MULTICAST_HOPS = C.IPV6_MULTICAST_HOPS
constant sysIPV6_MULTICAST_LOOP (line 24) | sysIPV6_MULTICAST_LOOP = C.IPV6_MULTICAST_LOOP
constant sysIPV6_JOIN_GROUP (line 25) | sysIPV6_JOIN_GROUP = C.IPV6_JOIN_GROUP
constant sysIPV6_LEAVE_GROUP (line 26) | sysIPV6_LEAVE_GROUP = C.IPV6_LEAVE_GROUP
constant sysIPV6_PORTRANGE (line 27) | sysIPV6_PORTRANGE = C.IPV6_PORTRANGE
constant sysICMP6_FILTER (line 28) | sysICMP6_FILTER = C.ICMP6_FILTER
constant sysIPV6_CHECKSUM (line 30) | sysIPV6_CHECKSUM = C.IPV6_CHECKSUM
constant sysIPV6_V6ONLY (line 31) | sysIPV6_V6ONLY = C.IPV6_V6ONLY
constant sysIPV6_IPSEC_POLICY (line 33) | sysIPV6_IPSEC_POLICY = C.IPV6_IPSEC_POLICY
constant sysIPV6_RTHDRDSTOPTS (line 35) | sysIPV6_RTHDRDSTOPTS = C.IPV6_RTHDRDSTOPTS
constant sysIPV6_RECVPKTINFO (line 37) | sysIPV6_RECVPKTINFO = C.IPV6_RECVPKTINFO
constant sysIPV6_RECVHOPLIMIT (line 38) | sysIPV6_RECVHOPLIMIT = C.IPV6_RECVHOPLIMIT
constant sysIPV6_RECVRTHDR (line 39) | sysIPV6_RECVRTHDR = C.IPV6_RECVRTHDR
constant sysIPV6_RECVHOPOPTS (line 40) | sysIPV6_RECVHOPOPTS = C.IPV6_RECVHOPOPTS
constant sysIPV6_RECVDSTOPTS (line 41) | sysIPV6_RECVDSTOPTS = C.IPV6_RECVDSTOPTS
constant sysIPV6_USE_MIN_MTU (line 43) | sysIPV6_USE_MIN_MTU = C.IPV6_USE_MIN_MTU
constant sysIPV6_RECVPATHMTU (line 44) | sysIPV6_RECVPATHMTU = C.IPV6_RECVPATHMTU
constant sysIPV6_PATHMTU (line 45) | sysIPV6_PATHMTU = C.IPV6_PATHMTU
constant sysIPV6_PKTINFO (line 47) | sysIPV6_PKTINFO = C.IPV6_PKTINFO
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = C.IPV6_HOPLIMIT
constant sysIPV6_NEXTHOP (line 49) | sysIPV6_NEXTHOP = C.IPV6_NEXTHOP
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = C.IPV6_HOPOPTS
constant sysIPV6_DSTOPTS (line 51) | sysIPV6_DSTOPTS = C.IPV6_DSTOPTS
constant sysIPV6_RTHDR (line 52) | sysIPV6_RTHDR = C.IPV6_RTHDR
constant sysIPV6_RECVTCLASS (line 54) | sysIPV6_RECVTCLASS = C.IPV6_RECVTCLASS
constant sysIPV6_TCLASS (line 56) | sysIPV6_TCLASS = C.IPV6_TCLASS
constant sysIPV6_DONTFRAG (line 57) | sysIPV6_DONTFRAG = C.IPV6_DONTFRAG
constant sysIPV6_PORTRANGE_DEFAULT (line 59) | sysIPV6_PORTRANGE_DEFAULT = C.IPV6_PORTRANGE_DEFAULT
constant sysIPV6_PORTRANGE_HIGH (line 60) | sysIPV6_PORTRANGE_HIGH = C.IPV6_PORTRANGE_HIGH
constant sysIPV6_PORTRANGE_LOW (line 61) | sysIPV6_PORTRANGE_LOW = C.IPV6_PORTRANGE_LOW
constant sizeofSockaddrInet6 (line 63) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
constant sizeofInet6Pktinfo (line 64) | sizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo
constant sizeofIPv6Mtuinfo (line 65) | sizeofIPv6Mtuinfo = C.sizeof_struct_ip6_mtuinfo
constant sizeofIPv6Mreq (line 67) | sizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq
constant sizeofICMPv6Filter (line 69) | sizeofICMPv6Filter = C.sizeof_struct_icmp6_filter
type sockaddrInet6 (line 72) | type sockaddrInet6
type inet6Pktinfo (line 74) | type inet6Pktinfo
type ipv6Mtuinfo (line 76) | type ipv6Mtuinfo
type ipv6Mreq (line 78) | type ipv6Mreq
type icmpv6Filter (line 80) | type icmpv6Filter
FILE: vendor/golang.org/x/net/ipv6/defs_openbsd.go
constant sysIPV6_UNICAST_HOPS (line 21) | sysIPV6_UNICAST_HOPS = C.IPV6_UNICAST_HOPS
constant sysIPV6_MULTICAST_IF (line 22) | sysIPV6_MULTICAST_IF = C.IPV6_MULTICAST_IF
constant sysIPV6_MULTICAST_HOPS (line 23) | sysIPV6_MULTICAST_HOPS = C.IPV6_MULTICAST_HOPS
constant sysIPV6_MULTICAST_LOOP (line 24) | sysIPV6_MULTICAST_LOOP = C.IPV6_MULTICAST_LOOP
constant sysIPV6_JOIN_GROUP (line 25) | sysIPV6_JOIN_GROUP = C.IPV6_JOIN_GROUP
constant sysIPV6_LEAVE_GROUP (line 26) | sysIPV6_LEAVE_GROUP = C.IPV6_LEAVE_GROUP
constant sysIPV6_PORTRANGE (line 27) | sysIPV6_PORTRANGE = C.IPV6_PORTRANGE
constant sysICMP6_FILTER (line 28) | sysICMP6_FILTER = C.ICMP6_FILTER
constant sysIPV6_CHECKSUM (line 30) | sysIPV6_CHECKSUM = C.IPV6_CHECKSUM
constant sysIPV6_V6ONLY (line 31) | sysIPV6_V6ONLY = C.IPV6_V6ONLY
constant sysIPV6_RTHDRDSTOPTS (line 33) | sysIPV6_RTHDRDSTOPTS = C.IPV6_RTHDRDSTOPTS
constant sysIPV6_RECVPKTINFO (line 35) | sysIPV6_RECVPKTINFO = C.IPV6_RECVPKTINFO
constant sysIPV6_RECVHOPLIMIT (line 36) | sysIPV6_RECVHOPLIMIT = C.IPV6_RECVHOPLIMIT
constant sysIPV6_RECVRTHDR (line 37) | sysIPV6_RECVRTHDR = C.IPV6_RECVRTHDR
constant sysIPV6_RECVHOPOPTS (line 38) | sysIPV6_RECVHOPOPTS = C.IPV6_RECVHOPOPTS
constant sysIPV6_RECVDSTOPTS (line 39) | sysIPV6_RECVDSTOPTS = C.IPV6_RECVDSTOPTS
constant sysIPV6_USE_MIN_MTU (line 41) | sysIPV6_USE_MIN_MTU = C.IPV6_USE_MIN_MTU
constant sysIPV6_RECVPATHMTU (line 42) | sysIPV6_RECVPATHMTU = C.IPV6_RECVPATHMTU
constant sysIPV6_PATHMTU (line 44) | sysIPV6_PATHMTU = C.IPV6_PATHMTU
constant sysIPV6_PKTINFO (line 46) | sysIPV6_PKTINFO = C.IPV6_PKTINFO
constant sysIPV6_HOPLIMIT (line 47) | sysIPV6_HOPLIMIT = C.IPV6_HOPLIMIT
constant sysIPV6_NEXTHOP (line 48) | sysIPV6_NEXTHOP = C.IPV6_NEXTHOP
constant sysIPV6_HOPOPTS (line 49) | sysIPV6_HOPOPTS = C.IPV6_HOPOPTS
constant sysIPV6_DSTOPTS (line 50) | sysIPV6_DSTOPTS = C.IPV6_DSTOPTS
constant sysIPV6_RTHDR (line 51) | sysIPV6_RTHDR = C.IPV6_RTHDR
constant sysIPV6_AUTH_LEVEL (line 53) | sysIPV6_AUTH_LEVEL = C.IPV6_AUTH_LEVEL
constant sysIPV6_ESP_TRANS_LEVEL (line 54) | sysIPV6_ESP_TRANS_LEVEL = C.IPV6_ESP_TRANS_LEVEL
constant sysIPV6_ESP_NETWORK_LEVEL (line 55) | sysIPV6_ESP_NETWORK_LEVEL = C.IPV6_ESP_NETWORK_LEVEL
constant sysIPSEC6_OUTSA (line 56) | sysIPSEC6_OUTSA = C.IPSEC6_OUTSA
constant sysIPV6_RECVTCLASS (line 57) | sysIPV6_RECVTCLASS = C.IPV6_RECVTCLASS
constant sysIPV6_AUTOFLOWLABEL (line 59) | sysIPV6_AUTOFLOWLABEL = C.IPV6_AUTOFLOWLABEL
constant sysIPV6_IPCOMP_LEVEL (line 60) | sysIPV6_IPCOMP_LEVEL = C.IPV6_IPCOMP_LEVEL
constant sysIPV6_TCLASS (line 62) | sysIPV6_TCLASS = C.IPV6_TCLASS
constant sysIPV6_DONTFRAG (line 63) | sysIPV6_DONTFRAG = C.IPV6_DONTFRAG
constant sysIPV6_PIPEX (line 64) | sysIPV6_PIPEX = C.IPV6_PIPEX
constant sysIPV6_RTABLE (line 66) | sysIPV6_RTABLE = C.IPV6_RTABLE
constant sysIPV6_PORTRANGE_DEFAULT (line 68) | sysIPV6_PORTRANGE_DEFAULT = C.IPV6_PORTRANGE_DEFAULT
constant sysIPV6_PORTRANGE_HIGH (line 69) | sysIPV6_PORTRANGE_HIGH = C.IPV6_PORTRANGE_HIGH
constant sysIPV6_PORTRANGE_LOW (line 70) | sysIPV6_PORTRANGE_LOW = C.IPV6_PORTRANGE_LOW
constant sizeofSockaddrInet6 (line 72) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
constant sizeofInet6Pktinfo (line 73) | sizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo
constant sizeofIPv6Mtuinfo (line 74) | sizeofIPv6Mtuinfo = C.sizeof_struct_ip6_mtuinfo
constant sizeofIPv6Mreq (line 76) | sizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq
constant sizeofICMPv6Filter (line 78) | sizeofICMPv6Filter = C.sizeof_struct_icmp6_filter
type sockaddrInet6 (line 81) | type sockaddrInet6
type inet6Pktinfo (line 83) | type inet6Pktinfo
type ipv6Mtuinfo (line 85) | type ipv6Mtuinfo
type ipv6Mreq (line 87) | type ipv6Mreq
type icmpv6Filter (line 89) | type icmpv6Filter
FILE: vendor/golang.org/x/net/ipv6/defs_solaris.go
constant sysIPV6_UNICAST_HOPS (line 20) | sysIPV6_UNICAST_HOPS = C.IPV6_UNICAST_HOPS
constant sysIPV6_MULTICAST_IF (line 21) | sysIPV6_MULTICAST_IF = C.IPV6_MULTICAST_IF
constant sysIPV6_MULTICAST_HOPS (line 22) | sysIPV6_MULTICAST_HOPS = C.IPV6_MULTICAST_HOPS
constant sysIPV6_MULTICAST_LOOP (line 23) | sysIPV6_MULTICAST_LOOP = C.IPV6_MULTICAST_LOOP
constant sysIPV6_JOIN_GROUP (line 24) | sysIPV6_JOIN_GROUP = C.IPV6_JOIN_GROUP
constant sysIPV6_LEAVE_GROUP (line 25) | sysIPV6_LEAVE_GROUP = C.IPV6_LEAVE_GROUP
constant sysIPV6_PKTINFO (line 27) | sysIPV6_PKTINFO = C.IPV6_PKTINFO
constant sysIPV6_HOPLIMIT (line 29) | sysIPV6_HOPLIMIT = C.IPV6_HOPLIMIT
constant sysIPV6_NEXTHOP (line 30) | sysIPV6_NEXTHOP = C.IPV6_NEXTHOP
constant sysIPV6_HOPOPTS (line 31) | sysIPV6_HOPOPTS = C.IPV6_HOPOPTS
constant sysIPV6_DSTOPTS (line 32) | sysIPV6_DSTOPTS = C.IPV6_DSTOPTS
constant sysIPV6_RTHDR (line 34) | sysIPV6_RTHDR = C.IPV6_RTHDR
constant sysIPV6_RTHDRDSTOPTS (line 35) | sysIPV6_RTHDRDSTOPTS = C.IPV6_RTHDRDSTOPTS
constant sysIPV6_RECVPKTINFO (line 37) | sysIPV6_RECVPKTINFO = C.IPV6_RECVPKTINFO
constant sysIPV6_RECVHOPLIMIT (line 38) | sysIPV6_RECVHOPLIMIT = C.IPV6_RECVHOPLIMIT
constant sysIPV6_RECVHOPOPTS (line 39) | sysIPV6_RECVHOPOPTS = C.IPV6_RECVHOPOPTS
constant sysIPV6_RECVRTHDR (line 41) | sysIPV6_RECVRTHDR = C.IPV6_RECVRTHDR
constant sysIPV6_RECVRTHDRDSTOPTS (line 43) | sysIPV6_RECVRTHDRDSTOPTS = C.IPV6_RECVRTHDRDSTOPTS
constant sysIPV6_CHECKSUM (line 45) | sysIPV6_CHECKSUM = C.IPV6_CHECKSUM
constant sysIPV6_RECVTCLASS (line 46) | sysIPV6_RECVTCLASS = C.IPV6_RECVTCLASS
constant sysIPV6_USE_MIN_MTU (line 47) | sysIPV6_USE_MIN_MTU = C.IPV6_USE_MIN_MTU
constant sysIPV6_DONTFRAG (line 48) | sysIPV6_DONTFRAG = C.IPV6_DONTFRAG
constant sysIPV6_SEC_OPT (line 49) | sysIPV6_SEC_OPT = C.IPV6_SEC_OPT
constant sysIPV6_SRC_PREFERENCES (line 50) | sysIPV6_SRC_PREFERENCES = C.IPV6_SRC_PREFERENCES
constant sysIPV6_RECVPATHMTU (line 51) | sysIPV6_RECVPATHMTU = C.IPV6_RECVPATHMTU
constant sysIPV6_PATHMTU (line 52) | sysIPV6_PATHMTU = C.IPV6_PATHMTU
constant sysIPV6_TCLASS (line 53) | sysIPV6_TCLASS = C.IPV6_TCLASS
constant sysIPV6_V6ONLY (line 54) | sysIPV6_V6ONLY = C.IPV6_V6ONLY
constant sysIPV6_RECVDSTOPTS (line 56) | sysIPV6_RECVDSTOPTS = C.IPV6_RECVDSTOPTS
constant sysMCAST_JOIN_GROUP (line 58) | sysMCAST_JOIN_GROUP = C.MCAST_JOIN_GROUP
constant sysMCAST_LEAVE_GROUP (line 59) | sysMCAST_LEAVE_GROUP = C.MCAST_LEAVE_GROUP
constant sysMCAST_BLOCK_SOURCE (line 60) | sysMCAST_BLOCK_SOURCE = C.MCAST_BLOCK_SOURCE
constant sysMCAST_UNBLOCK_SOURCE (line 61) | sysMCAST_UNBLOCK_SOURCE = C.MCAST_UNBLOCK_SOURCE
constant sysMCAST_JOIN_SOURCE_GROUP (line 62) | sysMCAST_JOIN_SOURCE_GROUP = C.MCAST_JOIN_SOURCE_GROUP
constant sysMCAST_LEAVE_SOURCE_GROUP (line 63) | sysMCAST_LEAVE_SOURCE_GROUP = C.MCAST_LEAVE_SOURCE_GROUP
constant sysIPV6_PREFER_SRC_HOME (line 65) | sysIPV6_PREFER_SRC_HOME = C.IPV6_PREFER_SRC_HOME
constant sysIPV6_PREFER_SRC_COA (line 66) | sysIPV6_PREFER_SRC_COA = C.IPV6_PREFER_SRC_COA
constant sysIPV6_PREFER_SRC_PUBLIC (line 67) | sysIPV6_PREFER_SRC_PUBLIC = C.IPV6_PREFER_SRC_PUBLIC
constant sysIPV6_PREFER_SRC_TMP (line 68) | sysIPV6_PREFER_SRC_TMP = C.IPV6_PREFER_SRC_TMP
constant sysIPV6_PREFER_SRC_NONCGA (line 69) | sysIPV6_PREFER_SRC_NONCGA = C.IPV6_PREFER_SRC_NONCGA
constant sysIPV6_PREFER_SRC_CGA (line 70) | sysIPV6_PREFER_SRC_CGA = C.IPV6_PREFER_SRC_CGA
constant sysIPV6_PREFER_SRC_MIPMASK (line 72) | sysIPV6_PREFER_SRC_MIPMASK = C.IPV6_PREFER_SRC_MIPMASK
constant sysIPV6_PREFER_SRC_MIPDEFAULT (line 73) | sysIPV6_PREFER_SRC_MIPDEFAULT = C.IPV6_PREFER_SRC_MIPDEFAULT
constant sysIPV6_PREFER_SRC_TMPMASK (line 74) | sysIPV6_PREFER_SRC_TMPMASK = C.IPV6_PREFER_SRC_TMPMASK
constant sysIPV6_PREFER_SRC_TMPDEFAULT (line 75) | sysIPV6_PREFER_SRC_TMPDEFAULT = C.IPV6_PREFER_SRC_TMPDEFAULT
constant sysIPV6_PREFER_SRC_CGAMASK (line 76) | sysIPV6_PREFER_SRC_CGAMASK = C.IPV6_PREFER_SRC_CGAMASK
constant sysIPV6_PREFER_SRC_CGADEFAULT (line 77) | sysIPV6_PREFER_SRC_CGADEFAULT = C.IPV6_PREFER_SRC_CGADEFAULT
constant sysIPV6_PREFER_SRC_MASK (line 79) | sysIPV6_PREFER_SRC_MASK = C.IPV6_PREFER_SRC_MASK
constant sysIPV6_PREFER_SRC_DEFAULT (line 81) | sysIPV6_PREFER_SRC_DEFAULT = C.IPV6_PREFER_SRC_DEFAULT
constant sysIPV6_BOUND_IF (line 83) | sysIPV6_BOUND_IF = C.IPV6_BOUND_IF
constant sysIPV6_UNSPEC_SRC (line 84) | sysIPV6_UNSPEC_SRC = C.IPV6_UNSPEC_SRC
constant sysICMP6_FILTER (line 86) | sysICMP6_FILTER = C.ICMP6_FILTER
constant sizeofSockaddrStorage (line 88) | sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage
constant sizeofSockaddrInet6 (line 89) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
constant sizeofInet6Pktinfo (line 90) | sizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo
constant sizeofIPv6Mtuinfo (line 91) | sizeofIPv6Mtuinfo = C.sizeof_struct_ip6_mtuinfo
constant sizeofIPv6Mreq (line 93) | sizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq
constant sizeofGroupReq (line 94) | sizeofGroupReq = C.sizeof_struct_group_req
constant sizeofGroupSourceReq (line 95) | sizeofGroupSourceReq = C.sizeof_struct_group_source_req
constant sizeofICMPv6Filter (line 97) | sizeofICMPv6Filter = C.sizeof_struct_icmp6_filter
type sockaddrStorage (line 100) | type sockaddrStorage
type sockaddrInet6 (line 102) | type sockaddrInet6
type inet6Pktinfo (line 104) | type inet6Pktinfo
type ipv6Mtuinfo (line 106) | type ipv6Mtuinfo
type ipv6Mreq (line 108) | type ipv6Mreq
type groupReq (line 110) | type groupReq
type groupSourceReq (line 112) | type groupSourceReq
type icmpv6Filter (line 114) | type icmpv6Filter
FILE: vendor/golang.org/x/net/ipv6/dgramopt.go
method MulticastHopLimit (line 16) | func (c *dgramOpt) MulticastHopLimit() (int, error) {
method SetMulticastHopLimit (line 29) | func (c *dgramOpt) SetMulticastHopLimit(hoplim int) error {
method MulticastInterface (line 42) | func (c *dgramOpt) MulticastInterface() (*net.Interface, error) {
method SetMulticastInterface (line 55) | func (c *dgramOpt) SetMulticastInterface(ifi *net.Interface) error {
method MulticastLoopback (line 68) | func (c *dgramOpt) MulticastLoopback() (bool, error) {
method SetMulticastLoopback (line 85) | func (c *dgramOpt) SetMulticastLoopback(on bool) error {
method JoinGroup (line 105) | func (c *dgramOpt) JoinGroup(ifi *net.Interface, group net.Addr) error {
method LeaveGroup (line 123) | func (c *dgramOpt) LeaveGroup(ifi *net.Interface, group net.Addr) error {
method JoinSourceSpecificGroup (line 144) | func (c *dgramOpt) JoinSourceSpecificGroup(ifi *net.Interface, group, so...
method LeaveSourceSpecificGroup (line 165) | func (c *dgramOpt) LeaveSourceSpecificGroup(ifi *net.Interface, group, s...
method ExcludeSourceSpecificGroup (line 187) | func (c *dgramOpt) ExcludeSourceSpecificGroup(ifi *net.Interface, group,...
method IncludeSourceSpecificGroup (line 208) | func (c *dgramOpt) IncludeSourceSpecificGroup(ifi *net.Interface, group,...
method Checksum (line 231) | func (c *dgramOpt) Checksum() (on bool, offset int, err error) {
method SetChecksum (line 252) | func (c *dgramOpt) SetChecksum(on bool, offset int) error {
method ICMPFilter (line 267) | func (c *dgramOpt) ICMPFilter() (*ICMPFilter, error) {
method SetICMPFilter (line 279) | func (c *dgramOpt) SetICMPFilter(f *ICMPFilter) error {
method SetBPF (line 293) | func (c *dgramOpt) SetBPF(filter []bpf.RawInstruction) error {
FILE: vendor/golang.org/x/net/ipv6/endpoint.go
type Conn (line 23) | type Conn struct
method PathMTU (line 35) | func (c *Conn) PathMTU() (int, error) {
type genericOpt (line 27) | type genericOpt struct
method ok (line 31) | func (c *genericOpt) ok() bool { return c != nil && c.Conn != nil }
function NewConn (line 51) | func NewConn(c net.Conn) *Conn {
type PacketConn (line 63) | type PacketConn struct
method SetControlMessage (line 77) | func (c *PacketConn) SetControlMessage(cf ControlFlags, on bool) error {
method SetDeadline (line 86) | func (c *PacketConn) SetDeadline(t time.Time) error {
method SetReadDeadline (line 95) | func (c *PacketConn) SetReadDeadline(t time.Time) error {
method SetWriteDeadline (line 104) | func (c *PacketConn) SetWriteDeadline(t time.Time) error {
method Close (line 112) | func (c *PacketConn) Close() error {
type dgramOpt (line 69) | type dgramOpt struct
method ok (line 73) | func (c *dgramOpt) ok() bool { return c != nil && c.Conn != nil }
function NewPacketConn (line 121) | func NewPacketConn(c net.PacketConn) *PacketConn {
FILE: vendor/golang.org/x/net/ipv6/example_test.go
function ExampleConn_markingTCP (line 18) | func ExampleConn_markingTCP() {
function ExamplePacketConn_servingOneShotMulticastDNS (line 48) | func ExamplePacketConn_servingOneShotMulticastDNS() {
function ExamplePacketConn_tracingIPPacketRoute (line 87) | func ExamplePacketConn_tracingIPPacketRoute() {
function ExamplePacketConn_advertisingOSPFHello (line 181) | func ExamplePacketConn_advertisingOSPFHello() {
FILE: vendor/golang.org/x/net/ipv6/gen.go
function main (line 29) | func main() {
function genzsys (line 40) | func genzsys() error {
function geniana (line 80) | func geniana() error {
function parseICMPv6Parameters (line 109) | func parseICMPv6Parameters(w io.Writer, r io.Reader) error {
type icmpv6Parameters (line 138) | type icmpv6Parameters struct
method escape (line 157) | func (icp *icmpv6Parameters) escape() []canonICMPv6ParamRecord {
type canonICMPv6ParamRecord (line 151) | type canonICMPv6ParamRecord struct
FILE: vendor/golang.org/x/net/ipv6/genericopt.go
method TrafficClass (line 11) | func (c *genericOpt) TrafficClass() (int, error) {
method SetTrafficClass (line 24) | func (c *genericOpt) SetTrafficClass(tclass int) error {
method HopLimit (line 36) | func (c *genericOpt) HopLimit() (int, error) {
method SetHopLimit (line 49) | func (c *genericOpt) SetHopLimit(hoplim int) error {
FILE: vendor/golang.org/x/net/ipv6/header.go
constant Version (line 14) | Version = 6
constant HeaderLen (line 15) | HeaderLen = 40
type Header (line 19) | type Header struct
method String (line 30) | func (h *Header) String() string {
function ParseHeader (line 38) | func ParseHeader(b []byte) (*Header, error) {
FILE: vendor/golang.org/x/net/ipv6/header_test.go
function TestParseHeader (line 43) | func TestParseHeader(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv6/helper.go
function boolint (line 20) | func boolint(b bool) int {
function netAddrToIP16 (line 27) | func netAddrToIP16(a net.Addr) net.IP {
function opAddr (line 41) | func opAddr(a net.Addr) net.Addr {
FILE: vendor/golang.org/x/net/ipv6/iana.go
constant ICMPTypeDestinationUnreachable (line 8) | ICMPTypeDestinationUnreachable ICMPType = 1
constant ICMPTypePacketTooBig (line 9) | ICMPTypePacketTooBig ICMPType = 2
constant ICMPTypeTimeExceeded (line 10) | ICMPTypeTimeExceeded ICMPType = 3
constant ICMPTypeParameterProblem (line 11) | ICMPTypeParameterProblem ICMPType = 4
constant ICMPTypeEchoRequest (line 12) | ICMPTypeEchoRequest ICMPType = 128
constant ICMPTypeEchoReply (line 13) | ICMPTypeEchoReply ICMPType = 129
constant ICMPTypeMulticastListenerQuery (line 14) | ICMPTypeMulticastListenerQuery ICMPType = 130
constant ICMPTypeMulticastListenerReport (line 15) | ICMPTypeMulticastListenerReport ICMPType = 131
constant ICMPTypeMulticastListenerDone (line 16) | ICMPTypeMulticastListenerDone ICMPType = 132
constant ICMPTypeRouterSolicitation (line 17) | ICMPTypeRouterSolicitation ICMPType = 133
constant ICMPTypeRouterAdvertisement (line 18) | ICMPTypeRouterAdvertisement ICMPType = 134
constant ICMPTypeNeighborSolicitation (line 19) | ICMPTypeNeighborSolicitation ICMPType = 135
constant ICMPTypeNeighborAdvertisement (line 20) | ICMPTypeNeighborAdvertisement ICMPType = 136
constant ICMPTypeRedirect (line 21) | ICMPTypeRedirect ICMPType = 137
constant ICMPTypeRouterRenumbering (line 22) | ICMPTypeRouterRenumbering ICMPType = 138
constant ICMPTypeNodeInformationQuery (line 23) | ICMPTypeNodeInformationQuery ICMPType = 139
constant ICMPTypeNodeInformationResponse (line 24) | ICMPTypeNodeInformationResponse ICMPType = 140
constant ICMPTypeInverseNeighborDiscoverySolicitation (line 25) | ICMPTypeInverseNeighborDiscoverySolicitation ICMPType = 141
constant ICMPTypeInverseNeighborDiscoveryAdvertisement (line 26) | ICMPTypeInverseNeighborDiscoveryAdvertisement ICMPType = 142
constant ICMPTypeVersion2MulticastListenerReport (line 27) | ICMPTypeVersion2MulticastListenerReport ICMPType = 143
constant ICMPTypeHomeAgentAddressDiscoveryRequest (line 28) | ICMPTypeHomeAgentAddressDiscoveryRequest ICMPType = 144
constant ICMPTypeHomeAgentAddressDiscoveryReply (line 29) | ICMPTypeHomeAgentAddressDiscoveryReply ICMPType = 145
constant ICMPTypeMobilePrefixSolicitation (line 30) | ICMPTypeMobilePrefixSolicitation ICMPType = 146
constant ICMPTypeMobilePrefixAdvertisement (line 31) | ICMPTypeMobilePrefixAdvertisement ICMPType = 147
constant ICMPTypeCertificationPathSolicitation (line 32) | ICMPTypeCertificationPathSolicitation ICMPType = 148
constant ICMPTypeCertificationPathAdvertisement (line 33) | ICMPTypeCertificationPathAdvertisement ICMPType = 149
constant ICMPTypeMulticastRouterAdvertisement (line 34) | ICMPTypeMulticastRouterAdvertisement ICMPType = 151
constant ICMPTypeMulticastRouterSolicitation (line 35) | ICMPTypeMulticastRouterSolicitation ICMPType = 152
constant ICMPTypeMulticastRouterTermination (line 36) | ICMPTypeMulticastRouterTermination ICMPType = 153
constant ICMPTypeFMIPv6 (line 37) | ICMPTypeFMIPv6 ICMPType = 154
constant ICMPTypeRPLControl (line 38) | ICMPTypeRPLControl ICMPType = 155
constant ICMPTypeILNPv6LocatorUpdate (line 39) | ICMPTypeILNPv6LocatorUpdate ICMPType = 156
constant ICMPTypeDuplicateAddressRequest (line 40) | ICMPTypeDuplicateAddressRequest ICMPType = 157
constant ICMPTypeDuplicateAddressConfirmation (line 41) | ICMPTypeDuplicateAddressConfirmation ICMPType = 158
constant ICMPTypeMPLControl (line 42) | ICMPTypeMPLControl ICMPType = 159
FILE: vendor/golang.org/x/net/ipv6/icmp.go
type ICMPType (line 13) | type ICMPType
method String (line 15) | func (typ ICMPType) String() string {
method Protocol (line 24) | func (typ ICMPType) Protocol() int {
type ICMPFilter (line 36) | type ICMPFilter struct
method Accept (line 42) | func (f *ICMPFilter) Accept(typ ICMPType) {
method Block (line 48) | func (f *ICMPFilter) Block(typ ICMPType) {
method SetAll (line 53) | func (f *ICMPFilter) SetAll(block bool) {
method WillBlock (line 58) | func (f *ICMPFilter) WillBlock(typ ICMPType) bool {
FILE: vendor/golang.org/x/net/ipv6/icmp_bsd.go
method accept (line 9) | func (f *icmpv6Filter) accept(typ ICMPType) {
method block (line 13) | func (f *icmpv6Filter) block(typ ICMPType) {
method setAll (line 17) | func (f *icmpv6Filter) setAll(block bool) {
method willBlock (line 27) | func (f *icmpv6Filter) willBlock(typ ICMPType) bool {
FILE: vendor/golang.org/x/net/ipv6/icmp_linux.go
method accept (line 7) | func (f *icmpv6Filter) accept(typ ICMPType) {
method block (line 11) | func (f *icmpv6Filter) block(typ ICMPType) {
method setAll (line 15) | func (f *icmpv6Filter) setAll(block bool) {
method willBlock (line 25) | func (f *icmpv6Filter) willBlock(typ ICMPType) bool {
FILE: vendor/golang.org/x/net/ipv6/icmp_solaris.go
method accept (line 7) | func (f *icmpv6Filter) accept(typ ICMPType) {
method block (line 11) | func (f *icmpv6Filter) block(typ ICMPType) {
method setAll (line 15) | func (f *icmpv6Filter) setAll(block bool) {
method willBlock (line 25) | func (f *icmpv6Filter) willBlock(typ ICMPType) bool {
FILE: vendor/golang.org/x/net/ipv6/icmp_stub.go
type icmpv6Filter (line 9) | type icmpv6Filter struct
method accept (line 12) | func (f *icmpv6Filter) accept(typ ICMPType) {
method block (line 15) | func (f *icmpv6Filter) block(typ ICMPType) {
method setAll (line 18) | func (f *icmpv6Filter) setAll(block bool) {
method willBlock (line 21) | func (f *icmpv6Filter) willBlock(typ ICMPType) bool {
FILE: vendor/golang.org/x/net/ipv6/icmp_test.go
function TestICMPString (line 26) | func TestICMPString(t *testing.T) {
function TestICMPFilter (line 35) | func TestICMPFilter(t *testing.T) {
function TestSetICMPFilter (line 62) | func TestSetICMPFilter(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv6/icmp_windows.go
method accept (line 7) | func (f *icmpv6Filter) accept(typ ICMPType) {
method block (line 11) | func (f *icmpv6Filter) block(typ ICMPType) {
method setAll (line 15) | func (f *icmpv6Filter) setAll(block bool) {
method willBlock (line 19) | func (f *icmpv6Filter) willBlock(typ ICMPType) bool {
FILE: vendor/golang.org/x/net/ipv6/mocktransponder_test.go
function connector (line 12) | func connector(t *testing.T, network, addr string, done chan<- bool) {
function acceptor (line 23) | func acceptor(t *testing.T, ln net.Listener, done chan<- bool) {
FILE: vendor/golang.org/x/net/ipv6/multicast_test.go
function TestPacketConnReadWriteMulticastUDP (line 30) | func TestPacketConnReadWriteMulticastUDP(t *testing.T) {
function TestPacketConnReadWriteMulticastICMP (line 130) | func TestPacketConnReadWriteMulticastICMP(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv6/multicastlistener_test.go
function TestUDPSinglePacketConnWithMultipleGroupListeners (line 22) | func TestUDPSinglePacketConnWithMultipleGroupListeners(t *testing.T) {
function TestUDPMultiplePacketConnWithMultipleGroupListeners (line 62) | func TestUDPMultiplePacketConnWithMultipleGroupListeners(t *testing.T) {
function TestUDPPerInterfaceSinglePacketConnWithSingleGroupListener (line 117) | func TestUDPPerInterfaceSinglePacketConnWithSingleGroupListener(t *testi...
function TestIPSinglePacketConnWithSingleGroupListener (line 173) | func TestIPSinglePacketConnWithSingleGroupListener(t *testing.T) {
function TestIPPerInterfaceSinglePacketConnWithSingleGroupListener (line 215) | func TestIPPerInterfaceSinglePacketConnWithSingleGroupListener(t *testin...
FILE: vendor/golang.org/x/net/ipv6/multicastsockopt_test.go
function TestPacketConnMulticastSocketOptions (line 27) | func TestPacketConnMulticastSocketOptions(t *testing.T) {
type testIPv6MulticastConn (line 62) | type testIPv6MulticastConn interface
function testMulticastSocketOptions (line 75) | func testMulticastSocketOptions(t *testing.T, c testIPv6MulticastConn, i...
function testSourceSpecificMulticastSocketOptions (line 113) | func testSourceSpecificMulticastSocketOptions(t *testing.T, c testIPv6Mu...
FILE: vendor/golang.org/x/net/ipv6/payload.go
type payloadHandler (line 17) | type payloadHandler struct
method ok (line 23) | func (c *payloadHandler) ok() bool { return c != nil && c.PacketConn !...
FILE: vendor/golang.org/x/net/ipv6/payload_cmsg.go
method ReadFrom (line 18) | func (c *payloadHandler) ReadFrom(b []byte) (n int, cm *ControlMessage, ...
method WriteTo (line 30) | func (c *payloadHandler) WriteTo(b []byte, cm *ControlMessage, dst net.A...
FILE: vendor/golang.org/x/net/ipv6/payload_cmsg_go1_8.go
method readFrom (line 12) | func (c *payloadHandler) readFrom(b []byte) (n int, cm *ControlMessage, ...
method writeTo (line 41) | func (c *payloadHandler) writeTo(b []byte, cm *ControlMessage, dst net.A...
FILE: vendor/golang.org/x/net/ipv6/payload_cmsg_go1_9.go
method readFrom (line 16) | func (c *payloadHandler) readFrom(b []byte) (int, *ControlMessage, net.A...
method writeTo (line 46) | func (c *payloadHandler) writeTo(b []byte, cm *ControlMessage, dst net.A...
FILE: vendor/golang.org/x/net/ipv6/payload_nocmsg.go
method ReadFrom (line 18) | func (c *payloadHandler) ReadFrom(b []byte) (n int, cm *ControlMessage, ...
method WriteTo (line 33) | func (c *payloadHandler) WriteTo(b []byte, cm *ControlMessage, dst net.A...
FILE: vendor/golang.org/x/net/ipv6/readwrite_go1_8_test.go
function BenchmarkPacketConnReadWriteUnicast (line 23) | func BenchmarkPacketConnReadWriteUnicast(b *testing.B) {
function TestPacketConnConcurrentReadWriteUnicast (line 124) | func TestPacketConnConcurrentReadWriteUnicast(t *testing.T) {
function testPacketConnConcurrentReadWriteUnicast (line 172) | func testPacketConnConcurrentReadWriteUnicast(t *testing.T, p *ipv6.Pack...
FILE: vendor/golang.org/x/net/ipv6/readwrite_go1_9_test.go
function BenchmarkPacketConnReadWriteUnicast (line 23) | func BenchmarkPacketConnReadWriteUnicast(b *testing.B) {
function TestPacketConnConcurrentReadWriteUnicast (line 170) | func TestPacketConnConcurrentReadWriteUnicast(t *testing.T) {
function testPacketConnConcurrentReadWriteUnicast (line 224) | func testPacketConnConcurrentReadWriteUnicast(t *testing.T, p *ipv6.Pack...
FILE: vendor/golang.org/x/net/ipv6/readwrite_test.go
function BenchmarkReadWriteUnicast (line 20) | func BenchmarkReadWriteUnicast(b *testing.B) {
function TestPacketConnConcurrentReadWriteUnicastUDP (line 66) | func TestPacketConnConcurrentReadWriteUnicastUDP(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv6/sockopt.go
constant ssoTrafficClass (line 11) | ssoTrafficClass = iota
constant ssoHopLimit (line 12) | ssoHopLimit
constant ssoMulticastInterface (line 13) | ssoMulticastInterface
constant ssoMulticastHopLimit (line 14) | ssoMulticastHopLimit
constant ssoMulticastLoopback (line 15) | ssoMulticastLoopback
constant ssoReceiveTrafficClass (line 16) | ssoReceiveTrafficClass
constant ssoReceiveHopLimit (line 17) | ssoReceiveHopLimit
constant ssoReceivePacketInfo (line 18) | ssoReceivePacketInfo
constant ssoReceivePathMTU (line 19) | ssoReceivePathMTU
constant ssoPathMTU (line 20) | ssoPathMTU
constant ssoChecksum (line 21) | ssoChecksum
constant ssoICMPFilter (line 22) | ssoICMPFilter
constant ssoJoinGroup (line 23) | ssoJoinGroup
constant ssoLeaveGroup (line 24) | ssoLeaveGroup
constant ssoJoinSourceGroup (line 25) | ssoJoinSourceGroup
constant ssoLeaveSourceGroup (line 26) | ssoLeaveSourceGroup
constant ssoBlockSourceGroup (line 27) | ssoBlockSourceGroup
constant ssoUnblockSourceGroup (line 28) | ssoUnblockSourceGroup
constant ssoAttachFilter (line 29) | ssoAttachFilter
constant ssoTypeIPMreq (line 34) | ssoTypeIPMreq = iota + 1
constant ssoTypeGroupReq (line 35) | ssoTypeGroupReq
constant ssoTypeGroupSourceReq (line 36) | ssoTypeGroupSourceReq
type sockOpt (line 40) | type sockOpt struct
FILE: vendor/golang.org/x/net/ipv6/sockopt_posix.go
method getMulticastInterface (line 17) | func (so *sockOpt) getMulticastInterface(c *socket.Conn) (*net.Interface...
method setMulticastInterface (line 25) | func (so *sockOpt) setMulticastInterface(c *socket.Conn, ifi *net.Interf...
method getICMPFilter (line 33) | func (so *sockOpt) getICMPFilter(c *socket.Conn) (*ICMPFilter, error) {
method setICMPFilter (line 45) | func (so *sockOpt) setICMPFilter(c *socket.Conn, f *ICMPFilter) error {
method getMTUInfo (line 50) | func (so *sockOpt) getMTUInfo(c *socket.Conn) (*net.Interface, int, erro...
method setGroup (line 70) | func (so *sockOpt) setGroup(c *socket.Conn, ifi *net.Interface, grp net....
method setSourceGroup (line 81) | func (so *sockOpt) setSourceGroup(c *socket.Conn, ifi *net.Interface, gr...
method setBPF (line 85) | func (so *sockOpt) setBPF(c *socket.Conn, f []bpf.RawInstruction) error {
FILE: vendor/golang.org/x/net/ipv6/sockopt_stub.go
method getMulticastInterface (line 16) | func (so *sockOpt) getMulticastInterface(c *socket.Conn) (*net.Interface...
method setMulticastInterface (line 20) | func (so *sockOpt) setMulticastInterface(c *socket.Conn, ifi *net.Interf...
method getICMPFilter (line 24) | func (so *sockOpt) getICMPFilter(c *socket.Conn) (*ICMPFilter, error) {
method setICMPFilter (line 28) | func (so *sockOpt) setICMPFilter(c *socket.Conn, f *ICMPFilter) error {
method getMTUInfo (line 32) | func (so *sockOpt) getMTUInfo(c *socket.Conn) (*net.Interface, int, erro...
method setGroup (line 36) | func (so *sockOpt) setGroup(c *socket.Conn, ifi *net.Interface, grp net....
method setSourceGroup (line 40) | func (so *sockOpt) setSourceGroup(c *socket.Conn, ifi *net.Interface, gr...
method setBPF (line 44) | func (so *sockOpt) setBPF(c *socket.Conn, f []bpf.RawInstruction) error {
FILE: vendor/golang.org/x/net/ipv6/sockopt_test.go
function TestConnInitiatorPathMTU (line 20) | func TestConnInitiatorPathMTU(t *testing.T) {
function TestConnResponderPathMTU (line 58) | func TestConnResponderPathMTU(t *testing.T) {
function TestPacketConnChecksum (line 96) | func TestPacketConnChecksum(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv6/sys_asmreq.go
method setIPMreq (line 16) | func (so *sockOpt) setIPMreq(c *socket.Conn, ifi *net.Interface, grp net...
FILE: vendor/golang.org/x/net/ipv6/sys_asmreq_stub.go
method setIPMreq (line 15) | func (so *sockOpt) setIPMreq(c *socket.Conn, ifi *net.Interface, grp net...
FILE: vendor/golang.org/x/net/ipv6/sys_bpf.go
method setAttachFilter (line 16) | func (so *sockOpt) setAttachFilter(c *socket.Conn, f []bpf.RawInstructio...
FILE: vendor/golang.org/x/net/ipv6/sys_bpf_stub.go
method setAttachFilter (line 14) | func (so *sockOpt) setAttachFilter(c *socket.Conn, f []bpf.RawInstructio...
FILE: vendor/golang.org/x/net/ipv6/sys_bsd.go
method setSockaddr (line 44) | func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) {
method setIfindex (line 51) | func (pi *inet6Pktinfo) setIfindex(i int) {
method setIfindex (line 55) | func (mreq *ipv6Mreq) setIfindex(i int) {
FILE: vendor/golang.org/x/net/ipv6/sys_darwin.go
function init (line 38) | func init() {
method setSockaddr (line 75) | func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) {
method setIfindex (line 82) | func (pi *inet6Pktinfo) setIfindex(i int) {
method setIfindex (line 86) | func (mreq *ipv6Mreq) setIfindex(i int) {
method setGroup (line 90) | func (gr *groupReq) setGroup(grp net.IP) {
method setSourceGroup (line 97) | func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) {
FILE: vendor/golang.org/x/net/ipv6/sys_freebsd.go
function init (line 49) | func init() {
method setSockaddr (line 61) | func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) {
method setIfindex (line 68) | func (pi *inet6Pktinfo) setIfindex(i int) {
method setIfindex (line 72) | func (mreq *ipv6Mreq) setIfindex(i int) {
method setGroup (line 76) | func (gr *groupReq) setGroup(grp net.IP) {
method setSourceGroup (line 83) | func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) {
FILE: vendor/golang.org/x/net/ipv6/sys_linux.go
method setSockaddr (line 47) | func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) {
method setIfindex (line 53) | func (pi *inet6Pktinfo) setIfindex(i int) {
method setIfindex (line 57) | func (mreq *ipv6Mreq) setIfindex(i int) {
method setGroup (line 61) | func (gr *groupReq) setGroup(grp net.IP) {
method setSourceGroup (line 67) | func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) {
FILE: vendor/golang.org/x/net/ipv6/sys_solaris.go
method setSockaddr (line 47) | func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) {
method setIfindex (line 53) | func (pi *inet6Pktinfo) setIfindex(i int) {
method setIfindex (line 57) | func (mreq *ipv6Mreq) setIfindex(i int) {
method setGroup (line 61) | func (gr *groupReq) setGroup(grp net.IP) {
method setSourceGroup (line 67) | func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) {
FILE: vendor/golang.org/x/net/ipv6/sys_ssmreq.go
method setGroupReq (line 18) | func (so *sockOpt) setGroupReq(c *socket.Conn, ifi *net.Interface, grp n...
method setGroupSourceReq (line 37) | func (so *sockOpt) setGroupSourceReq(c *socket.Conn, ifi *net.Interface,...
FILE: vendor/golang.org/x/net/ipv6/sys_ssmreq_stub.go
method setGroupReq (line 15) | func (so *sockOpt) setGroupReq(c *socket.Conn, ifi *net.Interface, grp n...
method setGroupSourceReq (line 19) | func (so *sockOpt) setGroupSourceReq(c *socket.Conn, ifi *net.Interface,...
FILE: vendor/golang.org/x/net/ipv6/sys_windows.go
constant sysIPV6_UNICAST_HOPS (line 17) | sysIPV6_UNICAST_HOPS = 0x4
constant sysIPV6_MULTICAST_IF (line 18) | sysIPV6_MULTICAST_IF = 0x9
constant sysIPV6_MULTICAST_HOPS (line 19) | sysIPV6_MULTICAST_HOPS = 0xa
constant sysIPV6_MULTICAST_LOOP (line 20) | sysIPV6_MULTICAST_LOOP = 0xb
constant sysIPV6_JOIN_GROUP (line 21) | sysIPV6_JOIN_GROUP = 0xc
constant sysIPV6_LEAVE_GROUP (line 22) | sysIPV6_LEAVE_GROUP = 0xd
constant sysIPV6_PKTINFO (line 23) | sysIPV6_PKTINFO = 0x13
constant sizeofSockaddrInet6 (line 25) | sizeofSockaddrInet6 = 0x1c
constant sizeofIPv6Mreq (line 27) | sizeofIPv6Mreq = 0x14
constant sizeofIPv6Mtuinfo (line 28) | sizeofIPv6Mtuinfo = 0x20
constant sizeofICMPv6Filter (line 29) | sizeofICMPv6Filter = 0
type sockaddrInet6 (line 32) | type sockaddrInet6 struct
method setSockaddr (line 67) | func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) {
type ipv6Mreq (line 40) | type ipv6Mreq struct
method setIfindex (line 73) | func (mreq *ipv6Mreq) setIfindex(i int) {
type ipv6Mtuinfo (line 45) | type ipv6Mtuinfo struct
type icmpv6Filter (line 50) | type icmpv6Filter struct
FILE: vendor/golang.org/x/net/ipv6/unicast_test.go
function TestPacketConnReadWriteUnicastUDP (line 21) | func TestPacketConnReadWriteUnicastUDP(t *testing.T) {
function TestPacketConnReadWriteUnicastICMP (line 79) | func TestPacketConnReadWriteUnicastICMP(t *testing.T) {
FILE: vendor/golang.org/x/net/ipv6/unicastsockopt_test.go
function TestConnUnicastSocketOptions (line 17) | func TestConnUnicastSocketOptions(t *testing.T) {
function TestPacketConnUnicastSocketOptions (line 62) | func TestPacketConnUnicastSocketOptions(t *testing.T) {
type testIPv6UnicastConn (line 87) | type testIPv6UnicastConn interface
function testUnicastSocketOptions (line 94) | func testUnicastSocketOptions(t *testing.T, c testIPv6UnicastConn) {
FILE: vendor/golang.org/x/net/ipv6/zsys_darwin.go
constant sysIPV6_UNICAST_HOPS (line 7) | sysIPV6_UNICAST_HOPS = 0x4
constant sysIPV6_MULTICAST_IF (line 8) | sysIPV6_MULTICAST_IF = 0x9
constant sysIPV6_MULTICAST_HOPS (line 9) | sysIPV6_MULTICAST_HOPS = 0xa
constant sysIPV6_MULTICAST_LOOP (line 10) | sysIPV6_MULTICAST_LOOP = 0xb
constant sysIPV6_JOIN_GROUP (line 11) | sysIPV6_JOIN_GROUP = 0xc
constant sysIPV6_LEAVE_GROUP (line 12) | sysIPV6_LEAVE_GROUP = 0xd
constant sysIPV6_PORTRANGE (line 14) | sysIPV6_PORTRANGE = 0xe
constant sysICMP6_FILTER (line 15) | sysICMP6_FILTER = 0x12
constant sysIPV6_2292PKTINFO (line 16) | sysIPV6_2292PKTINFO = 0x13
constant sysIPV6_2292HOPLIMIT (line 17) | sysIPV6_2292HOPLIMIT = 0x14
constant sysIPV6_2292NEXTHOP (line 18) | sysIPV6_2292NEXTHOP = 0x15
constant sysIPV6_2292HOPOPTS (line 19) | sysIPV6_2292HOPOPTS = 0x16
constant sysIPV6_2292DSTOPTS (line 20) | sysIPV6_2292DSTOPTS = 0x17
constant sysIPV6_2292RTHDR (line 21) | sysIPV6_2292RTHDR = 0x18
constant sysIPV6_2292PKTOPTIONS (line 23) | sysIPV6_2292PKTOPTIONS = 0x19
constant sysIPV6_CHECKSUM (line 25) | sysIPV6_CHECKSUM = 0x1a
constant sysIPV6_V6ONLY (line 26) | sysIPV6_V6ONLY = 0x1b
constant sysIPV6_IPSEC_POLICY (line 28) | sysIPV6_IPSEC_POLICY = 0x1c
constant sysIPV6_RECVTCLASS (line 30) | sysIPV6_RECVTCLASS = 0x23
constant sysIPV6_TCLASS (line 31) | sysIPV6_TCLASS = 0x24
constant sysIPV6_RTHDRDSTOPTS (line 33) | sysIPV6_RTHDRDSTOPTS = 0x39
constant sysIPV6_RECVPKTINFO (line 35) | sysIPV6_RECVPKTINFO = 0x3d
constant sysIPV6_RECVHOPLIMIT (line 37) | sysIPV6_RECVHOPLIMIT = 0x25
constant sysIPV6_RECVRTHDR (line 38) | sysIPV6_RECVRTHDR = 0x26
constant sysIPV6_RECVHOPOPTS (line 39) | sysIPV6_RECVHOPOPTS = 0x27
constant sysIPV6_RECVDSTOPTS (line 40) | sysIPV6_RECVDSTOPTS = 0x28
constant sysIPV6_USE_MIN_MTU (line 42) | sysIPV6_USE_MIN_MTU = 0x2a
constant sysIPV6_RECVPATHMTU (line 43) | sysIPV6_RECVPATHMTU = 0x2b
constant sysIPV6_PATHMTU (line 45) | sysIPV6_PATHMTU = 0x2c
constant sysIPV6_PKTINFO (line 47) | sysIPV6_PKTINFO = 0x2e
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = 0x2f
constant sysIPV6_NEXTHOP (line 49) | sysIPV6_NEXTHOP = 0x30
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = 0x31
constant sysIPV6_DSTOPTS (line 51) | sysIPV6_DSTOPTS = 0x32
constant sysIPV6_RTHDR (line 52) | sysIPV6_RTHDR = 0x33
constant sysIPV6_AUTOFLOWLABEL (line 54) | sysIPV6_AUTOFLOWLABEL = 0x3b
constant sysIPV6_DONTFRAG (line 56) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_PREFER_TEMPADDR (line 58) | sysIPV6_PREFER_TEMPADDR = 0x3f
constant sysIPV6_MSFILTER (line 60) | sysIPV6_MSFILTER = 0x4a
constant sysMCAST_JOIN_GROUP (line 61) | sysMCAST_JOIN_GROUP = 0x50
constant sysMCAST_LEAVE_GROUP (line 62) | sysMCAST_LEAVE_GROUP = 0x51
constant sysMCAST_JOIN_SOURCE_GROUP (line 63) | sysMCAST_JOIN_SOURCE_GROUP = 0x52
constant sysMCAST_LEAVE_SOURCE_GROUP (line 64) | sysMCAST_LEAVE_SOURCE_GROUP = 0x53
constant sysMCAST_BLOCK_SOURCE (line 65) | sysMCAST_BLOCK_SOURCE = 0x54
constant sysMCAST_UNBLOCK_SOURCE (line 66) | sysMCAST_UNBLOCK_SOURCE = 0x55
constant sysIPV6_BOUND_IF (line 68) | sysIPV6_BOUND_IF = 0x7d
constant sysIPV6_PORTRANGE_DEFAULT (line 70) | sysIPV6_PORTRANGE_DEFAULT = 0x0
constant sysIPV6_PORTRANGE_HIGH (line 71) | sysIPV6_PORTRANGE_HIGH = 0x1
constant sysIPV6_PORTRANGE_LOW (line 72) | sysIPV6_PORTRANGE_LOW = 0x2
constant sizeofSockaddrStorage (line 74) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 75) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 76) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 77) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6Mreq (line 79) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 80) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 81) | sizeofGroupSourceReq = 0x104
constant sizeofICMPv6Filter (line 83) | sizeofICMPv6Filter = 0x20
type sockaddrStorage (line 86) | type sockaddrStorage struct
type sockaddrInet6 (line 94) | type sockaddrInet6 struct
type inet6Pktinfo (line 103) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 108) | type ipv6Mtuinfo struct
type ipv6Mreq (line 113) | type ipv6Mreq struct
type icmpv6Filter (line 118) | type icmpv6Filter struct
type groupReq (line 122) | type groupReq struct
type groupSourceReq (line 127) | type groupSourceReq struct
FILE: vendor/golang.org/x/net/ipv6/zsys_dragonfly.go
constant sysIPV6_UNICAST_HOPS (line 7) | sysIPV6_UNICAST_HOPS = 0x4
constant sysIPV6_MULTICAST_IF (line 8) | sysIPV6_MULTICAST_IF = 0x9
constant sysIPV6_MULTICAST_HOPS (line 9) | sysIPV6_MULTICAST_HOPS = 0xa
constant sysIPV6_MULTICAST_LOOP (line 10) | sysIPV6_MULTICAST_LOOP = 0xb
constant sysIPV6_JOIN_GROUP (line 11) | sysIPV6_JOIN_GROUP = 0xc
constant sysIPV6_LEAVE_GROUP (line 12) | sysIPV6_LEAVE_GROUP = 0xd
constant sysIPV6_PORTRANGE (line 13) | sysIPV6_PORTRANGE = 0xe
constant sysICMP6_FILTER (line 14) | sysICMP6_FILTER = 0x12
constant sysIPV6_CHECKSUM (line 16) | sysIPV6_CHECKSUM = 0x1a
constant sysIPV6_V6ONLY (line 17) | sysIPV6_V6ONLY = 0x1b
constant sysIPV6_IPSEC_POLICY (line 19) | sysIPV6_IPSEC_POLICY = 0x1c
constant sysIPV6_RTHDRDSTOPTS (line 21) | sysIPV6_RTHDRDSTOPTS = 0x23
constant sysIPV6_RECVPKTINFO (line 22) | sysIPV6_RECVPKTINFO = 0x24
constant sysIPV6_RECVHOPLIMIT (line 23) | sysIPV6_RECVHOPLIMIT = 0x25
constant sysIPV6_RECVRTHDR (line 24) | sysIPV6_RECVRTHDR = 0x26
constant sysIPV6_RECVHOPOPTS (line 25) | sysIPV6_RECVHOPOPTS = 0x27
constant sysIPV6_RECVDSTOPTS (line 26) | sysIPV6_RECVDSTOPTS = 0x28
constant sysIPV6_USE_MIN_MTU (line 28) | sysIPV6_USE_MIN_MTU = 0x2a
constant sysIPV6_RECVPATHMTU (line 29) | sysIPV6_RECVPATHMTU = 0x2b
constant sysIPV6_PATHMTU (line 31) | sysIPV6_PATHMTU = 0x2c
constant sysIPV6_PKTINFO (line 33) | sysIPV6_PKTINFO = 0x2e
constant sysIPV6_HOPLIMIT (line 34) | sysIPV6_HOPLIMIT = 0x2f
constant sysIPV6_NEXTHOP (line 35) | sysIPV6_NEXTHOP = 0x30
constant sysIPV6_HOPOPTS (line 36) | sysIPV6_HOPOPTS = 0x31
constant sysIPV6_DSTOPTS (line 37) | sysIPV6_DSTOPTS = 0x32
constant sysIPV6_RTHDR (line 38) | sysIPV6_RTHDR = 0x33
constant sysIPV6_RECVTCLASS (line 40) | sysIPV6_RECVTCLASS = 0x39
constant sysIPV6_AUTOFLOWLABEL (line 42) | sysIPV6_AUTOFLOWLABEL = 0x3b
constant sysIPV6_TCLASS (line 44) | sysIPV6_TCLASS = 0x3d
constant sysIPV6_DONTFRAG (line 45) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_PREFER_TEMPADDR (line 47) | sysIPV6_PREFER_TEMPADDR = 0x3f
constant sysIPV6_PORTRANGE_DEFAULT (line 49) | sysIPV6_PORTRANGE_DEFAULT = 0x0
constant sysIPV6_PORTRANGE_HIGH (line 50) | sysIPV6_PORTRANGE_HIGH = 0x1
constant sysIPV6_PORTRANGE_LOW (line 51) | sysIPV6_PORTRANGE_LOW = 0x2
constant sizeofSockaddrInet6 (line 53) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 54) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 55) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6Mreq (line 57) | sizeofIPv6Mreq = 0x14
constant sizeofICMPv6Filter (line 59) | sizeofICMPv6Filter = 0x20
type sockaddrInet6 (line 62) | type sockaddrInet6 struct
type inet6Pktinfo (line 71) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 76) | type ipv6Mtuinfo struct
type ipv6Mreq (line 81) | type ipv6Mreq struct
type icmpv6Filter (line 86) | type icmpv6Filter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_freebsd_386.go
constant sysIPV6_UNICAST_HOPS (line 7) | sysIPV6_UNICAST_HOPS = 0x4
constant sysIPV6_MULTICAST_IF (line 8) | sysIPV6_MULTICAST_IF = 0x9
constant sysIPV6_MULTICAST_HOPS (line 9) | sysIPV6_MULTICAST_HOPS = 0xa
constant sysIPV6_MULTICAST_LOOP (line 10) | sysIPV6_MULTICAST_LOOP = 0xb
constant sysIPV6_JOIN_GROUP (line 11) | sysIPV6_JOIN_GROUP = 0xc
constant sysIPV6_LEAVE_GROUP (line 12) | sysIPV6_LEAVE_GROUP = 0xd
constant sysIPV6_PORTRANGE (line 13) | sysIPV6_PORTRANGE = 0xe
constant sysICMP6_FILTER (line 14) | sysICMP6_FILTER = 0x12
constant sysIPV6_CHECKSUM (line 16) | sysIPV6_CHECKSUM = 0x1a
constant sysIPV6_V6ONLY (line 17) | sysIPV6_V6ONLY = 0x1b
constant sysIPV6_IPSEC_POLICY (line 19) | sysIPV6_IPSEC_POLICY = 0x1c
constant sysIPV6_RTHDRDSTOPTS (line 21) | sysIPV6_RTHDRDSTOPTS = 0x23
constant sysIPV6_RECVPKTINFO (line 23) | sysIPV6_RECVPKTINFO = 0x24
constant sysIPV6_RECVHOPLIMIT (line 24) | sysIPV6_RECVHOPLIMIT = 0x25
constant sysIPV6_RECVRTHDR (line 25) | sysIPV6_RECVRTHDR = 0x26
constant sysIPV6_RECVHOPOPTS (line 26) | sysIPV6_RECVHOPOPTS = 0x27
constant sysIPV6_RECVDSTOPTS (line 27) | sysIPV6_RECVDSTOPTS = 0x28
constant sysIPV6_USE_MIN_MTU (line 29) | sysIPV6_USE_MIN_MTU = 0x2a
constant sysIPV6_RECVPATHMTU (line 30) | sysIPV6_RECVPATHMTU = 0x2b
constant sysIPV6_PATHMTU (line 32) | sysIPV6_PATHMTU = 0x2c
constant sysIPV6_PKTINFO (line 34) | sysIPV6_PKTINFO = 0x2e
constant sysIPV6_HOPLIMIT (line 35) | sysIPV6_HOPLIMIT = 0x2f
constant sysIPV6_NEXTHOP (line 36) | sysIPV6_NEXTHOP = 0x30
constant sysIPV6_HOPOPTS (line 37) | sysIPV6_HOPOPTS = 0x31
constant sysIPV6_DSTOPTS (line 38) | sysIPV6_DSTOPTS = 0x32
constant sysIPV6_RTHDR (line 39) | sysIPV6_RTHDR = 0x33
constant sysIPV6_RECVTCLASS (line 41) | sysIPV6_RECVTCLASS = 0x39
constant sysIPV6_AUTOFLOWLABEL (line 43) | sysIPV6_AUTOFLOWLABEL = 0x3b
constant sysIPV6_TCLASS (line 45) | sysIPV6_TCLASS = 0x3d
constant sysIPV6_DONTFRAG (line 46) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_PREFER_TEMPADDR (line 48) | sysIPV6_PREFER_TEMPADDR = 0x3f
constant sysIPV6_BINDANY (line 50) | sysIPV6_BINDANY = 0x40
constant sysIPV6_MSFILTER (line 52) | sysIPV6_MSFILTER = 0x4a
constant sysMCAST_JOIN_GROUP (line 54) | sysMCAST_JOIN_GROUP = 0x50
constant sysMCAST_LEAVE_GROUP (line 55) | sysMCAST_LEAVE_GROUP = 0x51
constant sysMCAST_JOIN_SOURCE_GROUP (line 56) | sysMCAST_JOIN_SOURCE_GROUP = 0x52
constant sysMCAST_LEAVE_SOURCE_GROUP (line 57) | sysMCAST_LEAVE_SOURCE_GROUP = 0x53
constant sysMCAST_BLOCK_SOURCE (line 58) | sysMCAST_BLOCK_SOURCE = 0x54
constant sysMCAST_UNBLOCK_SOURCE (line 59) | sysMCAST_UNBLOCK_SOURCE = 0x55
constant sysIPV6_PORTRANGE_DEFAULT (line 61) | sysIPV6_PORTRANGE_DEFAULT = 0x0
constant sysIPV6_PORTRANGE_HIGH (line 62) | sysIPV6_PORTRANGE_HIGH = 0x1
constant sysIPV6_PORTRANGE_LOW (line 63) | sysIPV6_PORTRANGE_LOW = 0x2
constant sizeofSockaddrStorage (line 65) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 66) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 67) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 68) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6Mreq (line 70) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 71) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 72) | sizeofGroupSourceReq = 0x104
constant sizeofICMPv6Filter (line 74) | sizeofICMPv6Filter = 0x20
type sockaddrStorage (line 77) | type sockaddrStorage struct
type sockaddrInet6 (line 85) | type sockaddrInet6 struct
type inet6Pktinfo (line 94) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 99) | type ipv6Mtuinfo struct
type ipv6Mreq (line 104) | type ipv6Mreq struct
type groupReq (line 109) | type groupReq struct
type groupSourceReq (line 114) | type groupSourceReq struct
type icmpv6Filter (line 120) | type icmpv6Filter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_freebsd_amd64.go
constant sysIPV6_UNICAST_HOPS (line 7) | sysIPV6_UNICAST_HOPS = 0x4
constant sysIPV6_MULTICAST_IF (line 8) | sysIPV6_MULTICAST_IF = 0x9
constant sysIPV6_MULTICAST_HOPS (line 9) | sysIPV6_MULTICAST_HOPS = 0xa
constant sysIPV6_MULTICAST_LOOP (line 10) | sysIPV6_MULTICAST_LOOP = 0xb
constant sysIPV6_JOIN_GROUP (line 11) | sysIPV6_JOIN_GROUP = 0xc
constant sysIPV6_LEAVE_GROUP (line 12) | sysIPV6_LEAVE_GROUP = 0xd
constant sysIPV6_PORTRANGE (line 13) | sysIPV6_PORTRANGE = 0xe
constant sysICMP6_FILTER (line 14) | sysICMP6_FILTER = 0x12
constant sysIPV6_CHECKSUM (line 16) | sysIPV6_CHECKSUM = 0x1a
constant sysIPV6_V6ONLY (line 17) | sysIPV6_V6ONLY = 0x1b
constant sysIPV6_IPSEC_POLICY (line 19) | sysIPV6_IPSEC_POLICY = 0x1c
constant sysIPV6_RTHDRDSTOPTS (line 21) | sysIPV6_RTHDRDSTOPTS = 0x23
constant sysIPV6_RECVPKTINFO (line 23) | sysIPV6_RECVPKTINFO = 0x24
constant sysIPV6_RECVHOPLIMIT (line 24) | sysIPV6_RECVHOPLIMIT = 0x25
constant sysIPV6_RECVRTHDR (line 25) | sysIPV6_RECVRTHDR = 0x26
constant sysIPV6_RECVHOPOPTS (line 26) | sysIPV6_RECVHOPOPTS = 0x27
constant sysIPV6_RECVDSTOPTS (line 27) | sysIPV6_RECVDSTOPTS = 0x28
constant sysIPV6_USE_MIN_MTU (line 29) | sysIPV6_USE_MIN_MTU = 0x2a
constant sysIPV6_RECVPATHMTU (line 30) | sysIPV6_RECVPATHMTU = 0x2b
constant sysIPV6_PATHMTU (line 32) | sysIPV6_PATHMTU = 0x2c
constant sysIPV6_PKTINFO (line 34) | sysIPV6_PKTINFO = 0x2e
constant sysIPV6_HOPLIMIT (line 35) | sysIPV6_HOPLIMIT = 0x2f
constant sysIPV6_NEXTHOP (line 36) | sysIPV6_NEXTHOP = 0x30
constant sysIPV6_HOPOPTS (line 37) | sysIPV6_HOPOPTS = 0x31
constant sysIPV6_DSTOPTS (line 38) | sysIPV6_DSTOPTS = 0x32
constant sysIPV6_RTHDR (line 39) | sysIPV6_RTHDR = 0x33
constant sysIPV6_RECVTCLASS (line 41) | sysIPV6_RECVTCLASS = 0x39
constant sysIPV6_AUTOFLOWLABEL (line 43) | sysIPV6_AUTOFLOWLABEL = 0x3b
constant sysIPV6_TCLASS (line 45) | sysIPV6_TCLASS = 0x3d
constant sysIPV6_DONTFRAG (line 46) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_PREFER_TEMPADDR (line 48) | sysIPV6_PREFER_TEMPADDR = 0x3f
constant sysIPV6_BINDANY (line 50) | sysIPV6_BINDANY = 0x40
constant sysIPV6_MSFILTER (line 52) | sysIPV6_MSFILTER = 0x4a
constant sysMCAST_JOIN_GROUP (line 54) | sysMCAST_JOIN_GROUP = 0x50
constant sysMCAST_LEAVE_GROUP (line 55) | sysMCAST_LEAVE_GROUP = 0x51
constant sysMCAST_JOIN_SOURCE_GROUP (line 56) | sysMCAST_JOIN_SOURCE_GROUP = 0x52
constant sysMCAST_LEAVE_SOURCE_GROUP (line 57) | sysMCAST_LEAVE_SOURCE_GROUP = 0x53
constant sysMCAST_BLOCK_SOURCE (line 58) | sysMCAST_BLOCK_SOURCE = 0x54
constant sysMCAST_UNBLOCK_SOURCE (line 59) | sysMCAST_UNBLOCK_SOURCE = 0x55
constant sysIPV6_PORTRANGE_DEFAULT (line 61) | sysIPV6_PORTRANGE_DEFAULT = 0x0
constant sysIPV6_PORTRANGE_HIGH (line 62) | sysIPV6_PORTRANGE_HIGH = 0x1
constant sysIPV6_PORTRANGE_LOW (line 63) | sysIPV6_PORTRANGE_LOW = 0x2
constant sizeofSockaddrStorage (line 65) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 66) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 67) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 68) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6Mreq (line 70) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 71) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 72) | sizeofGroupSourceReq = 0x108
constant sizeofICMPv6Filter (line 74) | sizeofICMPv6Filter = 0x20
type sockaddrStorage (line 77) | type sockaddrStorage struct
type sockaddrInet6 (line 85) | type sockaddrInet6 struct
type inet6Pktinfo (line 94) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 99) | type ipv6Mtuinfo struct
type ipv6Mreq (line 104) | type ipv6Mreq struct
type groupReq (line 109) | type groupReq struct
type groupSourceReq (line 115) | type groupSourceReq struct
type icmpv6Filter (line 122) | type icmpv6Filter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_freebsd_arm.go
constant sysIPV6_UNICAST_HOPS (line 7) | sysIPV6_UNICAST_HOPS = 0x4
constant sysIPV6_MULTICAST_IF (line 8) | sysIPV6_MULTICAST_IF = 0x9
constant sysIPV6_MULTICAST_HOPS (line 9) | sysIPV6_MULTICAST_HOPS = 0xa
constant sysIPV6_MULTICAST_LOOP (line 10) | sysIPV6_MULTICAST_LOOP = 0xb
constant sysIPV6_JOIN_GROUP (line 11) | sysIPV6_JOIN_GROUP = 0xc
constant sysIPV6_LEAVE_GROUP (line 12) | sysIPV6_LEAVE_GROUP = 0xd
constant sysIPV6_PORTRANGE (line 13) | sysIPV6_PORTRANGE = 0xe
constant sysICMP6_FILTER (line 14) | sysICMP6_FILTER = 0x12
constant sysIPV6_CHECKSUM (line 16) | sysIPV6_CHECKSUM = 0x1a
constant sysIPV6_V6ONLY (line 17) | sysIPV6_V6ONLY = 0x1b
constant sysIPV6_IPSEC_POLICY (line 19) | sysIPV6_IPSEC_POLICY = 0x1c
constant sysIPV6_RTHDRDSTOPTS (line 21) | sysIPV6_RTHDRDSTOPTS = 0x23
constant sysIPV6_RECVPKTINFO (line 23) | sysIPV6_RECVPKTINFO = 0x24
constant sysIPV6_RECVHOPLIMIT (line 24) | sysIPV6_RECVHOPLIMIT = 0x25
constant sysIPV6_RECVRTHDR (line 25) | sysIPV6_RECVRTHDR = 0x26
constant sysIPV6_RECVHOPOPTS (line 26) | sysIPV6_RECVHOPOPTS = 0x27
constant sysIPV6_RECVDSTOPTS (line 27) | sysIPV6_RECVDSTOPTS = 0x28
constant sysIPV6_USE_MIN_MTU (line 29) | sysIPV6_USE_MIN_MTU = 0x2a
constant sysIPV6_RECVPATHMTU (line 30) | sysIPV6_RECVPATHMTU = 0x2b
constant sysIPV6_PATHMTU (line 32) | sysIPV6_PATHMTU = 0x2c
constant sysIPV6_PKTINFO (line 34) | sysIPV6_PKTINFO = 0x2e
constant sysIPV6_HOPLIMIT (line 35) | sysIPV6_HOPLIMIT = 0x2f
constant sysIPV6_NEXTHOP (line 36) | sysIPV6_NEXTHOP = 0x30
constant sysIPV6_HOPOPTS (line 37) | sysIPV6_HOPOPTS = 0x31
constant sysIPV6_DSTOPTS (line 38) | sysIPV6_DSTOPTS = 0x32
constant sysIPV6_RTHDR (line 39) | sysIPV6_RTHDR = 0x33
constant sysIPV6_RECVTCLASS (line 41) | sysIPV6_RECVTCLASS = 0x39
constant sysIPV6_AUTOFLOWLABEL (line 43) | sysIPV6_AUTOFLOWLABEL = 0x3b
constant sysIPV6_TCLASS (line 45) | sysIPV6_TCLASS = 0x3d
constant sysIPV6_DONTFRAG (line 46) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_PREFER_TEMPADDR (line 48) | sysIPV6_PREFER_TEMPADDR = 0x3f
constant sysIPV6_BINDANY (line 50) | sysIPV6_BINDANY = 0x40
constant sysIPV6_MSFILTER (line 52) | sysIPV6_MSFILTER = 0x4a
constant sysMCAST_JOIN_GROUP (line 54) | sysMCAST_JOIN_GROUP = 0x50
constant sysMCAST_LEAVE_GROUP (line 55) | sysMCAST_LEAVE_GROUP = 0x51
constant sysMCAST_JOIN_SOURCE_GROUP (line 56) | sysMCAST_JOIN_SOURCE_GROUP = 0x52
constant sysMCAST_LEAVE_SOURCE_GROUP (line 57) | sysMCAST_LEAVE_SOURCE_GROUP = 0x53
constant sysMCAST_BLOCK_SOURCE (line 58) | sysMCAST_BLOCK_SOURCE = 0x54
constant sysMCAST_UNBLOCK_SOURCE (line 59) | sysMCAST_UNBLOCK_SOURCE = 0x55
constant sysIPV6_PORTRANGE_DEFAULT (line 61) | sysIPV6_PORTRANGE_DEFAULT = 0x0
constant sysIPV6_PORTRANGE_HIGH (line 62) | sysIPV6_PORTRANGE_HIGH = 0x1
constant sysIPV6_PORTRANGE_LOW (line 63) | sysIPV6_PORTRANGE_LOW = 0x2
constant sizeofSockaddrStorage (line 65) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 66) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 67) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 68) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6Mreq (line 70) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 71) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 72) | sizeofGroupSourceReq = 0x108
constant sizeofICMPv6Filter (line 74) | sizeofICMPv6Filter = 0x20
type sockaddrStorage (line 77) | type sockaddrStorage struct
type sockaddrInet6 (line 85) | type sockaddrInet6 struct
type inet6Pktinfo (line 94) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 99) | type ipv6Mtuinfo struct
type ipv6Mreq (line 104) | type ipv6Mreq struct
type groupReq (line 109) | type groupReq struct
type groupSourceReq (line 115) | type groupSourceReq struct
type icmpv6Filter (line 122) | type icmpv6Filter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_linux_386.go
constant sysIPV6_ADDRFORM (line 7) | sysIPV6_ADDRFORM = 0x1
constant sysIPV6_2292PKTINFO (line 8) | sysIPV6_2292PKTINFO = 0x2
constant sysIPV6_2292HOPOPTS (line 9) | sysIPV6_2292HOPOPTS = 0x3
constant sysIPV6_2292DSTOPTS (line 10) | sysIPV6_2292DSTOPTS = 0x4
constant sysIPV6_2292RTHDR (line 11) | sysIPV6_2292RTHDR = 0x5
constant sysIPV6_2292PKTOPTIONS (line 12) | sysIPV6_2292PKTOPTIONS = 0x6
constant sysIPV6_CHECKSUM (line 13) | sysIPV6_CHECKSUM = 0x7
constant sysIPV6_2292HOPLIMIT (line 14) | sysIPV6_2292HOPLIMIT = 0x8
constant sysIPV6_NEXTHOP (line 15) | sysIPV6_NEXTHOP = 0x9
constant sysIPV6_FLOWINFO (line 16) | sysIPV6_FLOWINFO = 0xb
constant sysIPV6_UNICAST_HOPS (line 18) | sysIPV6_UNICAST_HOPS = 0x10
constant sysIPV6_MULTICAST_IF (line 19) | sysIPV6_MULTICAST_IF = 0x11
constant sysIPV6_MULTICAST_HOPS (line 20) | sysIPV6_MULTICAST_HOPS = 0x12
constant sysIPV6_MULTICAST_LOOP (line 21) | sysIPV6_MULTICAST_LOOP = 0x13
constant sysIPV6_ADD_MEMBERSHIP (line 22) | sysIPV6_ADD_MEMBERSHIP = 0x14
constant sysIPV6_DROP_MEMBERSHIP (line 23) | sysIPV6_DROP_MEMBERSHIP = 0x15
constant sysMCAST_JOIN_GROUP (line 24) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 25) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 26) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 27) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 28) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 29) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 30) | sysMCAST_MSFILTER = 0x30
constant sysIPV6_ROUTER_ALERT (line 31) | sysIPV6_ROUTER_ALERT = 0x16
constant sysIPV6_MTU_DISCOVER (line 32) | sysIPV6_MTU_DISCOVER = 0x17
constant sysIPV6_MTU (line 33) | sysIPV6_MTU = 0x18
constant sysIPV6_RECVERR (line 34) | sysIPV6_RECVERR = 0x19
constant sysIPV6_V6ONLY (line 35) | sysIPV6_V6ONLY = 0x1a
constant sysIPV6_JOIN_ANYCAST (line 36) | sysIPV6_JOIN_ANYCAST = 0x1b
constant sysIPV6_LEAVE_ANYCAST (line 37) | sysIPV6_LEAVE_ANYCAST = 0x1c
constant sysIPV6_FLOWLABEL_MGR (line 39) | sysIPV6_FLOWLABEL_MGR = 0x20
constant sysIPV6_FLOWINFO_SEND (line 40) | sysIPV6_FLOWINFO_SEND = 0x21
constant sysIPV6_IPSEC_POLICY (line 42) | sysIPV6_IPSEC_POLICY = 0x22
constant sysIPV6_XFRM_POLICY (line 43) | sysIPV6_XFRM_POLICY = 0x23
constant sysIPV6_RECVPKTINFO (line 45) | sysIPV6_RECVPKTINFO = 0x31
constant sysIPV6_PKTINFO (line 46) | sysIPV6_PKTINFO = 0x32
constant sysIPV6_RECVHOPLIMIT (line 47) | sysIPV6_RECVHOPLIMIT = 0x33
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = 0x34
constant sysIPV6_RECVHOPOPTS (line 49) | sysIPV6_RECVHOPOPTS = 0x35
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = 0x36
constant sysIPV6_RTHDRDSTOPTS (line 51) | sysIPV6_RTHDRDSTOPTS = 0x37
constant sysIPV6_RECVRTHDR (line 52) | sysIPV6_RECVRTHDR = 0x38
constant sysIPV6_RTHDR (line 53) | sysIPV6_RTHDR = 0x39
constant sysIPV6_RECVDSTOPTS (line 54) | sysIPV6_RECVDSTOPTS = 0x3a
constant sysIPV6_DSTOPTS (line 55) | sysIPV6_DSTOPTS = 0x3b
constant sysIPV6_RECVPATHMTU (line 56) | sysIPV6_RECVPATHMTU = 0x3c
constant sysIPV6_PATHMTU (line 57) | sysIPV6_PATHMTU = 0x3d
constant sysIPV6_DONTFRAG (line 58) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_RECVTCLASS (line 60) | sysIPV6_RECVTCLASS = 0x42
constant sysIPV6_TCLASS (line 61) | sysIPV6_TCLASS = 0x43
constant sysIPV6_ADDR_PREFERENCES (line 63) | sysIPV6_ADDR_PREFERENCES = 0x48
constant sysIPV6_PREFER_SRC_TMP (line 65) | sysIPV6_PREFER_SRC_TMP = 0x1
constant sysIPV6_PREFER_SRC_PUBLIC (line 66) | sysIPV6_PREFER_SRC_PUBLIC = 0x2
constant sysIPV6_PREFER_SRC_PUBTMP_DEFAULT (line 67) | sysIPV6_PREFER_SRC_PUBTMP_DEFAULT = 0x100
constant sysIPV6_PREFER_SRC_COA (line 68) | sysIPV6_PREFER_SRC_COA = 0x4
constant sysIPV6_PREFER_SRC_HOME (line 69) | sysIPV6_PREFER_SRC_HOME = 0x400
constant sysIPV6_PREFER_SRC_CGA (line 70) | sysIPV6_PREFER_SRC_CGA = 0x8
constant sysIPV6_PREFER_SRC_NONCGA (line 71) | sysIPV6_PREFER_SRC_NONCGA = 0x800
constant sysIPV6_MINHOPCOUNT (line 73) | sysIPV6_MINHOPCOUNT = 0x49
constant sysIPV6_ORIGDSTADDR (line 75) | sysIPV6_ORIGDSTADDR = 0x4a
constant sysIPV6_RECVORIGDSTADDR (line 76) | sysIPV6_RECVORIGDSTADDR = 0x4a
constant sysIPV6_TRANSPARENT (line 77) | sysIPV6_TRANSPARENT = 0x4b
constant sysIPV6_UNICAST_IF (line 78) | sysIPV6_UNICAST_IF = 0x4c
constant sysICMPV6_FILTER (line 80) | sysICMPV6_FILTER = 0x1
constant sysICMPV6_FILTER_BLOCK (line 82) | sysICMPV6_FILTER_BLOCK = 0x1
constant sysICMPV6_FILTER_PASS (line 83) | sysICMPV6_FILTER_PASS = 0x2
constant sysICMPV6_FILTER_BLOCKOTHERS (line 84) | sysICMPV6_FILTER_BLOCKOTHERS = 0x3
constant sysICMPV6_FILTER_PASSONLY (line 85) | sysICMPV6_FILTER_PASSONLY = 0x4
constant sysSOL_SOCKET (line 87) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 88) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 90) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 91) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 92) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 93) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6FlowlabelReq (line 94) | sizeofIPv6FlowlabelReq = 0x20
constant sizeofIPv6Mreq (line 96) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 97) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 98) | sizeofGroupSourceReq = 0x104
constant sizeofICMPv6Filter (line 100) | sizeofICMPv6Filter = 0x20
constant sizeofSockFprog (line 102) | sizeofSockFprog = 0x8
type kernelSockaddrStorage (line 105) | type kernelSockaddrStorage struct
type sockaddrInet6 (line 110) | type sockaddrInet6 struct
type inet6Pktinfo (line 118) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 123) | type ipv6Mtuinfo struct
type ipv6FlowlabelReq (line 128) | type ipv6FlowlabelReq struct
type ipv6Mreq (line 139) | type ipv6Mreq struct
type groupReq (line 144) | type groupReq struct
type groupSourceReq (line 149) | type groupSourceReq struct
type icmpv6Filter (line 155) | type icmpv6Filter struct
type sockFProg (line 159) | type sockFProg struct
type sockFilter (line 165) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_linux_amd64.go
constant sysIPV6_ADDRFORM (line 7) | sysIPV6_ADDRFORM = 0x1
constant sysIPV6_2292PKTINFO (line 8) | sysIPV6_2292PKTINFO = 0x2
constant sysIPV6_2292HOPOPTS (line 9) | sysIPV6_2292HOPOPTS = 0x3
constant sysIPV6_2292DSTOPTS (line 10) | sysIPV6_2292DSTOPTS = 0x4
constant sysIPV6_2292RTHDR (line 11) | sysIPV6_2292RTHDR = 0x5
constant sysIPV6_2292PKTOPTIONS (line 12) | sysIPV6_2292PKTOPTIONS = 0x6
constant sysIPV6_CHECKSUM (line 13) | sysIPV6_CHECKSUM = 0x7
constant sysIPV6_2292HOPLIMIT (line 14) | sysIPV6_2292HOPLIMIT = 0x8
constant sysIPV6_NEXTHOP (line 15) | sysIPV6_NEXTHOP = 0x9
constant sysIPV6_FLOWINFO (line 16) | sysIPV6_FLOWINFO = 0xb
constant sysIPV6_UNICAST_HOPS (line 18) | sysIPV6_UNICAST_HOPS = 0x10
constant sysIPV6_MULTICAST_IF (line 19) | sysIPV6_MULTICAST_IF = 0x11
constant sysIPV6_MULTICAST_HOPS (line 20) | sysIPV6_MULTICAST_HOPS = 0x12
constant sysIPV6_MULTICAST_LOOP (line 21) | sysIPV6_MULTICAST_LOOP = 0x13
constant sysIPV6_ADD_MEMBERSHIP (line 22) | sysIPV6_ADD_MEMBERSHIP = 0x14
constant sysIPV6_DROP_MEMBERSHIP (line 23) | sysIPV6_DROP_MEMBERSHIP = 0x15
constant sysMCAST_JOIN_GROUP (line 24) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 25) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 26) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 27) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 28) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 29) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 30) | sysMCAST_MSFILTER = 0x30
constant sysIPV6_ROUTER_ALERT (line 31) | sysIPV6_ROUTER_ALERT = 0x16
constant sysIPV6_MTU_DISCOVER (line 32) | sysIPV6_MTU_DISCOVER = 0x17
constant sysIPV6_MTU (line 33) | sysIPV6_MTU = 0x18
constant sysIPV6_RECVERR (line 34) | sysIPV6_RECVERR = 0x19
constant sysIPV6_V6ONLY (line 35) | sysIPV6_V6ONLY = 0x1a
constant sysIPV6_JOIN_ANYCAST (line 36) | sysIPV6_JOIN_ANYCAST = 0x1b
constant sysIPV6_LEAVE_ANYCAST (line 37) | sysIPV6_LEAVE_ANYCAST = 0x1c
constant sysIPV6_FLOWLABEL_MGR (line 39) | sysIPV6_FLOWLABEL_MGR = 0x20
constant sysIPV6_FLOWINFO_SEND (line 40) | sysIPV6_FLOWINFO_SEND = 0x21
constant sysIPV6_IPSEC_POLICY (line 42) | sysIPV6_IPSEC_POLICY = 0x22
constant sysIPV6_XFRM_POLICY (line 43) | sysIPV6_XFRM_POLICY = 0x23
constant sysIPV6_RECVPKTINFO (line 45) | sysIPV6_RECVPKTINFO = 0x31
constant sysIPV6_PKTINFO (line 46) | sysIPV6_PKTINFO = 0x32
constant sysIPV6_RECVHOPLIMIT (line 47) | sysIPV6_RECVHOPLIMIT = 0x33
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = 0x34
constant sysIPV6_RECVHOPOPTS (line 49) | sysIPV6_RECVHOPOPTS = 0x35
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = 0x36
constant sysIPV6_RTHDRDSTOPTS (line 51) | sysIPV6_RTHDRDSTOPTS = 0x37
constant sysIPV6_RECVRTHDR (line 52) | sysIPV6_RECVRTHDR = 0x38
constant sysIPV6_RTHDR (line 53) | sysIPV6_RTHDR = 0x39
constant sysIPV6_RECVDSTOPTS (line 54) | sysIPV6_RECVDSTOPTS = 0x3a
constant sysIPV6_DSTOPTS (line 55) | sysIPV6_DSTOPTS = 0x3b
constant sysIPV6_RECVPATHMTU (line 56) | sysIPV6_RECVPATHMTU = 0x3c
constant sysIPV6_PATHMTU (line 57) | sysIPV6_PATHMTU = 0x3d
constant sysIPV6_DONTFRAG (line 58) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_RECVTCLASS (line 60) | sysIPV6_RECVTCLASS = 0x42
constant sysIPV6_TCLASS (line 61) | sysIPV6_TCLASS = 0x43
constant sysIPV6_ADDR_PREFERENCES (line 63) | sysIPV6_ADDR_PREFERENCES = 0x48
constant sysIPV6_PREFER_SRC_TMP (line 65) | sysIPV6_PREFER_SRC_TMP = 0x1
constant sysIPV6_PREFER_SRC_PUBLIC (line 66) | sysIPV6_PREFER_SRC_PUBLIC = 0x2
constant sysIPV6_PREFER_SRC_PUBTMP_DEFAULT (line 67) | sysIPV6_PREFER_SRC_PUBTMP_DEFAULT = 0x100
constant sysIPV6_PREFER_SRC_COA (line 68) | sysIPV6_PREFER_SRC_COA = 0x4
constant sysIPV6_PREFER_SRC_HOME (line 69) | sysIPV6_PREFER_SRC_HOME = 0x400
constant sysIPV6_PREFER_SRC_CGA (line 70) | sysIPV6_PREFER_SRC_CGA = 0x8
constant sysIPV6_PREFER_SRC_NONCGA (line 71) | sysIPV6_PREFER_SRC_NONCGA = 0x800
constant sysIPV6_MINHOPCOUNT (line 73) | sysIPV6_MINHOPCOUNT = 0x49
constant sysIPV6_ORIGDSTADDR (line 75) | sysIPV6_ORIGDSTADDR = 0x4a
constant sysIPV6_RECVORIGDSTADDR (line 76) | sysIPV6_RECVORIGDSTADDR = 0x4a
constant sysIPV6_TRANSPARENT (line 77) | sysIPV6_TRANSPARENT = 0x4b
constant sysIPV6_UNICAST_IF (line 78) | sysIPV6_UNICAST_IF = 0x4c
constant sysICMPV6_FILTER (line 80) | sysICMPV6_FILTER = 0x1
constant sysICMPV6_FILTER_BLOCK (line 82) | sysICMPV6_FILTER_BLOCK = 0x1
constant sysICMPV6_FILTER_PASS (line 83) | sysICMPV6_FILTER_PASS = 0x2
constant sysICMPV6_FILTER_BLOCKOTHERS (line 84) | sysICMPV6_FILTER_BLOCKOTHERS = 0x3
constant sysICMPV6_FILTER_PASSONLY (line 85) | sysICMPV6_FILTER_PASSONLY = 0x4
constant sysSOL_SOCKET (line 87) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 88) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 90) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 91) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 92) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 93) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6FlowlabelReq (line 94) | sizeofIPv6FlowlabelReq = 0x20
constant sizeofIPv6Mreq (line 96) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 97) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 98) | sizeofGroupSourceReq = 0x108
constant sizeofICMPv6Filter (line 100) | sizeofICMPv6Filter = 0x20
constant sizeofSockFprog (line 102) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 105) | type kernelSockaddrStorage struct
type sockaddrInet6 (line 110) | type sockaddrInet6 struct
type inet6Pktinfo (line 118) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 123) | type ipv6Mtuinfo struct
type ipv6FlowlabelReq (line 128) | type ipv6FlowlabelReq struct
type ipv6Mreq (line 139) | type ipv6Mreq struct
type groupReq (line 144) | type groupReq struct
type groupSourceReq (line 150) | type groupSourceReq struct
type icmpv6Filter (line 157) | type icmpv6Filter struct
type sockFProg (line 161) | type sockFProg struct
type sockFilter (line 167) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_linux_arm.go
constant sysIPV6_ADDRFORM (line 7) | sysIPV6_ADDRFORM = 0x1
constant sysIPV6_2292PKTINFO (line 8) | sysIPV6_2292PKTINFO = 0x2
constant sysIPV6_2292HOPOPTS (line 9) | sysIPV6_2292HOPOPTS = 0x3
constant sysIPV6_2292DSTOPTS (line 10) | sysIPV6_2292DSTOPTS = 0x4
constant sysIPV6_2292RTHDR (line 11) | sysIPV6_2292RTHDR = 0x5
constant sysIPV6_2292PKTOPTIONS (line 12) | sysIPV6_2292PKTOPTIONS = 0x6
constant sysIPV6_CHECKSUM (line 13) | sysIPV6_CHECKSUM = 0x7
constant sysIPV6_2292HOPLIMIT (line 14) | sysIPV6_2292HOPLIMIT = 0x8
constant sysIPV6_NEXTHOP (line 15) | sysIPV6_NEXTHOP = 0x9
constant sysIPV6_FLOWINFO (line 16) | sysIPV6_FLOWINFO = 0xb
constant sysIPV6_UNICAST_HOPS (line 18) | sysIPV6_UNICAST_HOPS = 0x10
constant sysIPV6_MULTICAST_IF (line 19) | sysIPV6_MULTICAST_IF = 0x11
constant sysIPV6_MULTICAST_HOPS (line 20) | sysIPV6_MULTICAST_HOPS = 0x12
constant sysIPV6_MULTICAST_LOOP (line 21) | sysIPV6_MULTICAST_LOOP = 0x13
constant sysIPV6_ADD_MEMBERSHIP (line 22) | sysIPV6_ADD_MEMBERSHIP = 0x14
constant sysIPV6_DROP_MEMBERSHIP (line 23) | sysIPV6_DROP_MEMBERSHIP = 0x15
constant sysMCAST_JOIN_GROUP (line 24) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 25) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 26) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 27) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 28) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 29) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 30) | sysMCAST_MSFILTER = 0x30
constant sysIPV6_ROUTER_ALERT (line 31) | sysIPV6_ROUTER_ALERT = 0x16
constant sysIPV6_MTU_DISCOVER (line 32) | sysIPV6_MTU_DISCOVER = 0x17
constant sysIPV6_MTU (line 33) | sysIPV6_MTU = 0x18
constant sysIPV6_RECVERR (line 34) | sysIPV6_RECVERR = 0x19
constant sysIPV6_V6ONLY (line 35) | sysIPV6_V6ONLY = 0x1a
constant sysIPV6_JOIN_ANYCAST (line 36) | sysIPV6_JOIN_ANYCAST = 0x1b
constant sysIPV6_LEAVE_ANYCAST (line 37) | sysIPV6_LEAVE_ANYCAST = 0x1c
constant sysIPV6_FLOWLABEL_MGR (line 39) | sysIPV6_FLOWLABEL_MGR = 0x20
constant sysIPV6_FLOWINFO_SEND (line 40) | sysIPV6_FLOWINFO_SEND = 0x21
constant sysIPV6_IPSEC_POLICY (line 42) | sysIPV6_IPSEC_POLICY = 0x22
constant sysIPV6_XFRM_POLICY (line 43) | sysIPV6_XFRM_POLICY = 0x23
constant sysIPV6_RECVPKTINFO (line 45) | sysIPV6_RECVPKTINFO = 0x31
constant sysIPV6_PKTINFO (line 46) | sysIPV6_PKTINFO = 0x32
constant sysIPV6_RECVHOPLIMIT (line 47) | sysIPV6_RECVHOPLIMIT = 0x33
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = 0x34
constant sysIPV6_RECVHOPOPTS (line 49) | sysIPV6_RECVHOPOPTS = 0x35
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = 0x36
constant sysIPV6_RTHDRDSTOPTS (line 51) | sysIPV6_RTHDRDSTOPTS = 0x37
constant sysIPV6_RECVRTHDR (line 52) | sysIPV6_RECVRTHDR = 0x38
constant sysIPV6_RTHDR (line 53) | sysIPV6_RTHDR = 0x39
constant sysIPV6_RECVDSTOPTS (line 54) | sysIPV6_RECVDSTOPTS = 0x3a
constant sysIPV6_DSTOPTS (line 55) | sysIPV6_DSTOPTS = 0x3b
constant sysIPV6_RECVPATHMTU (line 56) | sysIPV6_RECVPATHMTU = 0x3c
constant sysIPV6_PATHMTU (line 57) | sysIPV6_PATHMTU = 0x3d
constant sysIPV6_DONTFRAG (line 58) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_RECVTCLASS (line 60) | sysIPV6_RECVTCLASS = 0x42
constant sysIPV6_TCLASS (line 61) | sysIPV6_TCLASS = 0x43
constant sysIPV6_ADDR_PREFERENCES (line 63) | sysIPV6_ADDR_PREFERENCES = 0x48
constant sysIPV6_PREFER_SRC_TMP (line 65) | sysIPV6_PREFER_SRC_TMP = 0x1
constant sysIPV6_PREFER_SRC_PUBLIC (line 66) | sysIPV6_PREFER_SRC_PUBLIC = 0x2
constant sysIPV6_PREFER_SRC_PUBTMP_DEFAULT (line 67) | sysIPV6_PREFER_SRC_PUBTMP_DEFAULT = 0x100
constant sysIPV6_PREFER_SRC_COA (line 68) | sysIPV6_PREFER_SRC_COA = 0x4
constant sysIPV6_PREFER_SRC_HOME (line 69) | sysIPV6_PREFER_SRC_HOME = 0x400
constant sysIPV6_PREFER_SRC_CGA (line 70) | sysIPV6_PREFER_SRC_CGA = 0x8
constant sysIPV6_PREFER_SRC_NONCGA (line 71) | sysIPV6_PREFER_SRC_NONCGA = 0x800
constant sysIPV6_MINHOPCOUNT (line 73) | sysIPV6_MINHOPCOUNT = 0x49
constant sysIPV6_ORIGDSTADDR (line 75) | sysIPV6_ORIGDSTADDR = 0x4a
constant sysIPV6_RECVORIGDSTADDR (line 76) | sysIPV6_RECVORIGDSTADDR = 0x4a
constant sysIPV6_TRANSPARENT (line 77) | sysIPV6_TRANSPARENT = 0x4b
constant sysIPV6_UNICAST_IF (line 78) | sysIPV6_UNICAST_IF = 0x4c
constant sysICMPV6_FILTER (line 80) | sysICMPV6_FILTER = 0x1
constant sysICMPV6_FILTER_BLOCK (line 82) | sysICMPV6_FILTER_BLOCK = 0x1
constant sysICMPV6_FILTER_PASS (line 83) | sysICMPV6_FILTER_PASS = 0x2
constant sysICMPV6_FILTER_BLOCKOTHERS (line 84) | sysICMPV6_FILTER_BLOCKOTHERS = 0x3
constant sysICMPV6_FILTER_PASSONLY (line 85) | sysICMPV6_FILTER_PASSONLY = 0x4
constant sysSOL_SOCKET (line 87) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 88) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 90) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 91) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 92) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 93) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6FlowlabelReq (line 94) | sizeofIPv6FlowlabelReq = 0x20
constant sizeofIPv6Mreq (line 96) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 97) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 98) | sizeofGroupSourceReq = 0x104
constant sizeofICMPv6Filter (line 100) | sizeofICMPv6Filter = 0x20
constant sizeofSockFprog (line 102) | sizeofSockFprog = 0x8
type kernelSockaddrStorage (line 105) | type kernelSockaddrStorage struct
type sockaddrInet6 (line 110) | type sockaddrInet6 struct
type inet6Pktinfo (line 118) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 123) | type ipv6Mtuinfo struct
type ipv6FlowlabelReq (line 128) | type ipv6FlowlabelReq struct
type ipv6Mreq (line 139) | type ipv6Mreq struct
type groupReq (line 144) | type groupReq struct
type groupSourceReq (line 149) | type groupSourceReq struct
type icmpv6Filter (line 155) | type icmpv6Filter struct
type sockFProg (line 159) | type sockFProg struct
type sockFilter (line 165) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_linux_arm64.go
constant sysIPV6_ADDRFORM (line 7) | sysIPV6_ADDRFORM = 0x1
constant sysIPV6_2292PKTINFO (line 8) | sysIPV6_2292PKTINFO = 0x2
constant sysIPV6_2292HOPOPTS (line 9) | sysIPV6_2292HOPOPTS = 0x3
constant sysIPV6_2292DSTOPTS (line 10) | sysIPV6_2292DSTOPTS = 0x4
constant sysIPV6_2292RTHDR (line 11) | sysIPV6_2292RTHDR = 0x5
constant sysIPV6_2292PKTOPTIONS (line 12) | sysIPV6_2292PKTOPTIONS = 0x6
constant sysIPV6_CHECKSUM (line 13) | sysIPV6_CHECKSUM = 0x7
constant sysIPV6_2292HOPLIMIT (line 14) | sysIPV6_2292HOPLIMIT = 0x8
constant sysIPV6_NEXTHOP (line 15) | sysIPV6_NEXTHOP = 0x9
constant sysIPV6_FLOWINFO (line 16) | sysIPV6_FLOWINFO = 0xb
constant sysIPV6_UNICAST_HOPS (line 18) | sysIPV6_UNICAST_HOPS = 0x10
constant sysIPV6_MULTICAST_IF (line 19) | sysIPV6_MULTICAST_IF = 0x11
constant sysIPV6_MULTICAST_HOPS (line 20) | sysIPV6_MULTICAST_HOPS = 0x12
constant sysIPV6_MULTICAST_LOOP (line 21) | sysIPV6_MULTICAST_LOOP = 0x13
constant sysIPV6_ADD_MEMBERSHIP (line 22) | sysIPV6_ADD_MEMBERSHIP = 0x14
constant sysIPV6_DROP_MEMBERSHIP (line 23) | sysIPV6_DROP_MEMBERSHIP = 0x15
constant sysMCAST_JOIN_GROUP (line 24) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 25) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 26) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 27) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 28) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 29) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 30) | sysMCAST_MSFILTER = 0x30
constant sysIPV6_ROUTER_ALERT (line 31) | sysIPV6_ROUTER_ALERT = 0x16
constant sysIPV6_MTU_DISCOVER (line 32) | sysIPV6_MTU_DISCOVER = 0x17
constant sysIPV6_MTU (line 33) | sysIPV6_MTU = 0x18
constant sysIPV6_RECVERR (line 34) | sysIPV6_RECVERR = 0x19
constant sysIPV6_V6ONLY (line 35) | sysIPV6_V6ONLY = 0x1a
constant sysIPV6_JOIN_ANYCAST (line 36) | sysIPV6_JOIN_ANYCAST = 0x1b
constant sysIPV6_LEAVE_ANYCAST (line 37) | sysIPV6_LEAVE_ANYCAST = 0x1c
constant sysIPV6_FLOWLABEL_MGR (line 39) | sysIPV6_FLOWLABEL_MGR = 0x20
constant sysIPV6_FLOWINFO_SEND (line 40) | sysIPV6_FLOWINFO_SEND = 0x21
constant sysIPV6_IPSEC_POLICY (line 42) | sysIPV6_IPSEC_POLICY = 0x22
constant sysIPV6_XFRM_POLICY (line 43) | sysIPV6_XFRM_POLICY = 0x23
constant sysIPV6_RECVPKTINFO (line 45) | sysIPV6_RECVPKTINFO = 0x31
constant sysIPV6_PKTINFO (line 46) | sysIPV6_PKTINFO = 0x32
constant sysIPV6_RECVHOPLIMIT (line 47) | sysIPV6_RECVHOPLIMIT = 0x33
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = 0x34
constant sysIPV6_RECVHOPOPTS (line 49) | sysIPV6_RECVHOPOPTS = 0x35
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = 0x36
constant sysIPV6_RTHDRDSTOPTS (line 51) | sysIPV6_RTHDRDSTOPTS = 0x37
constant sysIPV6_RECVRTHDR (line 52) | sysIPV6_RECVRTHDR = 0x38
constant sysIPV6_RTHDR (line 53) | sysIPV6_RTHDR = 0x39
constant sysIPV6_RECVDSTOPTS (line 54) | sysIPV6_RECVDSTOPTS = 0x3a
constant sysIPV6_DSTOPTS (line 55) | sysIPV6_DSTOPTS = 0x3b
constant sysIPV6_RECVPATHMTU (line 56) | sysIPV6_RECVPATHMTU = 0x3c
constant sysIPV6_PATHMTU (line 57) | sysIPV6_PATHMTU = 0x3d
constant sysIPV6_DONTFRAG (line 58) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_RECVTCLASS (line 60) | sysIPV6_RECVTCLASS = 0x42
constant sysIPV6_TCLASS (line 61) | sysIPV6_TCLASS = 0x43
constant sysIPV6_ADDR_PREFERENCES (line 63) | sysIPV6_ADDR_PREFERENCES = 0x48
constant sysIPV6_PREFER_SRC_TMP (line 65) | sysIPV6_PREFER_SRC_TMP = 0x1
constant sysIPV6_PREFER_SRC_PUBLIC (line 66) | sysIPV6_PREFER_SRC_PUBLIC = 0x2
constant sysIPV6_PREFER_SRC_PUBTMP_DEFAULT (line 67) | sysIPV6_PREFER_SRC_PUBTMP_DEFAULT = 0x100
constant sysIPV6_PREFER_SRC_COA (line 68) | sysIPV6_PREFER_SRC_COA = 0x4
constant sysIPV6_PREFER_SRC_HOME (line 69) | sysIPV6_PREFER_SRC_HOME = 0x400
constant sysIPV6_PREFER_SRC_CGA (line 70) | sysIPV6_PREFER_SRC_CGA = 0x8
constant sysIPV6_PREFER_SRC_NONCGA (line 71) | sysIPV6_PREFER_SRC_NONCGA = 0x800
constant sysIPV6_MINHOPCOUNT (line 73) | sysIPV6_MINHOPCOUNT = 0x49
constant sysIPV6_ORIGDSTADDR (line 75) | sysIPV6_ORIGDSTADDR = 0x4a
constant sysIPV6_RECVORIGDSTADDR (line 76) | sysIPV6_RECVORIGDSTADDR = 0x4a
constant sysIPV6_TRANSPARENT (line 77) | sysIPV6_TRANSPARENT = 0x4b
constant sysIPV6_UNICAST_IF (line 78) | sysIPV6_UNICAST_IF = 0x4c
constant sysICMPV6_FILTER (line 80) | sysICMPV6_FILTER = 0x1
constant sysICMPV6_FILTER_BLOCK (line 82) | sysICMPV6_FILTER_BLOCK = 0x1
constant sysICMPV6_FILTER_PASS (line 83) | sysICMPV6_FILTER_PASS = 0x2
constant sysICMPV6_FILTER_BLOCKOTHERS (line 84) | sysICMPV6_FILTER_BLOCKOTHERS = 0x3
constant sysICMPV6_FILTER_PASSONLY (line 85) | sysICMPV6_FILTER_PASSONLY = 0x4
constant sysSOL_SOCKET (line 87) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 88) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 90) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 91) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 92) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 93) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6FlowlabelReq (line 94) | sizeofIPv6FlowlabelReq = 0x20
constant sizeofIPv6Mreq (line 96) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 97) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 98) | sizeofGroupSourceReq = 0x108
constant sizeofICMPv6Filter (line 100) | sizeofICMPv6Filter = 0x20
constant sizeofSockFprog (line 102) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 105) | type kernelSockaddrStorage struct
type sockaddrInet6 (line 110) | type sockaddrInet6 struct
type inet6Pktinfo (line 118) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 123) | type ipv6Mtuinfo struct
type ipv6FlowlabelReq (line 128) | type ipv6FlowlabelReq struct
type ipv6Mreq (line 139) | type ipv6Mreq struct
type groupReq (line 144) | type groupReq struct
type groupSourceReq (line 150) | type groupSourceReq struct
type icmpv6Filter (line 157) | type icmpv6Filter struct
type sockFProg (line 161) | type sockFProg struct
type sockFilter (line 167) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_linux_mips.go
constant sysIPV6_ADDRFORM (line 7) | sysIPV6_ADDRFORM = 0x1
constant sysIPV6_2292PKTINFO (line 8) | sysIPV6_2292PKTINFO = 0x2
constant sysIPV6_2292HOPOPTS (line 9) | sysIPV6_2292HOPOPTS = 0x3
constant sysIPV6_2292DSTOPTS (line 10) | sysIPV6_2292DSTOPTS = 0x4
constant sysIPV6_2292RTHDR (line 11) | sysIPV6_2292RTHDR = 0x5
constant sysIPV6_2292PKTOPTIONS (line 12) | sysIPV6_2292PKTOPTIONS = 0x6
constant sysIPV6_CHECKSUM (line 13) | sysIPV6_CHECKSUM = 0x7
constant sysIPV6_2292HOPLIMIT (line 14) | sysIPV6_2292HOPLIMIT = 0x8
constant sysIPV6_NEXTHOP (line 15) | sysIPV6_NEXTHOP = 0x9
constant sysIPV6_FLOWINFO (line 16) | sysIPV6_FLOWINFO = 0xb
constant sysIPV6_UNICAST_HOPS (line 18) | sysIPV6_UNICAST_HOPS = 0x10
constant sysIPV6_MULTICAST_IF (line 19) | sysIPV6_MULTICAST_IF = 0x11
constant sysIPV6_MULTICAST_HOPS (line 20) | sysIPV6_MULTICAST_HOPS = 0x12
constant sysIPV6_MULTICAST_LOOP (line 21) | sysIPV6_MULTICAST_LOOP = 0x13
constant sysIPV6_ADD_MEMBERSHIP (line 22) | sysIPV6_ADD_MEMBERSHIP = 0x14
constant sysIPV6_DROP_MEMBERSHIP (line 23) | sysIPV6_DROP_MEMBERSHIP = 0x15
constant sysMCAST_JOIN_GROUP (line 24) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 25) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 26) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 27) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 28) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 29) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 30) | sysMCAST_MSFILTER = 0x30
constant sysIPV6_ROUTER_ALERT (line 31) | sysIPV6_ROUTER_ALERT = 0x16
constant sysIPV6_MTU_DISCOVER (line 32) | sysIPV6_MTU_DISCOVER = 0x17
constant sysIPV6_MTU (line 33) | sysIPV6_MTU = 0x18
constant sysIPV6_RECVERR (line 34) | sysIPV6_RECVERR = 0x19
constant sysIPV6_V6ONLY (line 35) | sysIPV6_V6ONLY = 0x1a
constant sysIPV6_JOIN_ANYCAST (line 36) | sysIPV6_JOIN_ANYCAST = 0x1b
constant sysIPV6_LEAVE_ANYCAST (line 37) | sysIPV6_LEAVE_ANYCAST = 0x1c
constant sysIPV6_FLOWLABEL_MGR (line 39) | sysIPV6_FLOWLABEL_MGR = 0x20
constant sysIPV6_FLOWINFO_SEND (line 40) | sysIPV6_FLOWINFO_SEND = 0x21
constant sysIPV6_IPSEC_POLICY (line 42) | sysIPV6_IPSEC_POLICY = 0x22
constant sysIPV6_XFRM_POLICY (line 43) | sysIPV6_XFRM_POLICY = 0x23
constant sysIPV6_RECVPKTINFO (line 45) | sysIPV6_RECVPKTINFO = 0x31
constant sysIPV6_PKTINFO (line 46) | sysIPV6_PKTINFO = 0x32
constant sysIPV6_RECVHOPLIMIT (line 47) | sysIPV6_RECVHOPLIMIT = 0x33
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = 0x34
constant sysIPV6_RECVHOPOPTS (line 49) | sysIPV6_RECVHOPOPTS = 0x35
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = 0x36
constant sysIPV6_RTHDRDSTOPTS (line 51) | sysIPV6_RTHDRDSTOPTS = 0x37
constant sysIPV6_RECVRTHDR (line 52) | sysIPV6_RECVRTHDR = 0x38
constant sysIPV6_RTHDR (line 53) | sysIPV6_RTHDR = 0x39
constant sysIPV6_RECVDSTOPTS (line 54) | sysIPV6_RECVDSTOPTS = 0x3a
constant sysIPV6_DSTOPTS (line 55) | sysIPV6_DSTOPTS = 0x3b
constant sysIPV6_RECVPATHMTU (line 56) | sysIPV6_RECVPATHMTU = 0x3c
constant sysIPV6_PATHMTU (line 57) | sysIPV6_PATHMTU = 0x3d
constant sysIPV6_DONTFRAG (line 58) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_RECVTCLASS (line 60) | sysIPV6_RECVTCLASS = 0x42
constant sysIPV6_TCLASS (line 61) | sysIPV6_TCLASS = 0x43
constant sysIPV6_ADDR_PREFERENCES (line 63) | sysIPV6_ADDR_PREFERENCES = 0x48
constant sysIPV6_PREFER_SRC_TMP (line 65) | sysIPV6_PREFER_SRC_TMP = 0x1
constant sysIPV6_PREFER_SRC_PUBLIC (line 66) | sysIPV6_PREFER_SRC_PUBLIC = 0x2
constant sysIPV6_PREFER_SRC_PUBTMP_DEFAULT (line 67) | sysIPV6_PREFER_SRC_PUBTMP_DEFAULT = 0x100
constant sysIPV6_PREFER_SRC_COA (line 68) | sysIPV6_PREFER_SRC_COA = 0x4
constant sysIPV6_PREFER_SRC_HOME (line 69) | sysIPV6_PREFER_SRC_HOME = 0x400
constant sysIPV6_PREFER_SRC_CGA (line 70) | sysIPV6_PREFER_SRC_CGA = 0x8
constant sysIPV6_PREFER_SRC_NONCGA (line 71) | sysIPV6_PREFER_SRC_NONCGA = 0x800
constant sysIPV6_MINHOPCOUNT (line 73) | sysIPV6_MINHOPCOUNT = 0x49
constant sysIPV6_ORIGDSTADDR (line 75) | sysIPV6_ORIGDSTADDR = 0x4a
constant sysIPV6_RECVORIGDSTADDR (line 76) | sysIPV6_RECVORIGDSTADDR = 0x4a
constant sysIPV6_TRANSPARENT (line 77) | sysIPV6_TRANSPARENT = 0x4b
constant sysIPV6_UNICAST_IF (line 78) | sysIPV6_UNICAST_IF = 0x4c
constant sysICMPV6_FILTER (line 80) | sysICMPV6_FILTER = 0x1
constant sysICMPV6_FILTER_BLOCK (line 82) | sysICMPV6_FILTER_BLOCK = 0x1
constant sysICMPV6_FILTER_PASS (line 83) | sysICMPV6_FILTER_PASS = 0x2
constant sysICMPV6_FILTER_BLOCKOTHERS (line 84) | sysICMPV6_FILTER_BLOCKOTHERS = 0x3
constant sysICMPV6_FILTER_PASSONLY (line 85) | sysICMPV6_FILTER_PASSONLY = 0x4
constant sysSOL_SOCKET (line 87) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 88) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 90) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 91) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 92) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 93) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6FlowlabelReq (line 94) | sizeofIPv6FlowlabelReq = 0x20
constant sizeofIPv6Mreq (line 96) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 97) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 98) | sizeofGroupSourceReq = 0x104
constant sizeofICMPv6Filter (line 100) | sizeofICMPv6Filter = 0x20
constant sizeofSockFprog (line 102) | sizeofSockFprog = 0x8
type kernelSockaddrStorage (line 105) | type kernelSockaddrStorage struct
type sockaddrInet6 (line 110) | type sockaddrInet6 struct
type inet6Pktinfo (line 118) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 123) | type ipv6Mtuinfo struct
type ipv6FlowlabelReq (line 128) | type ipv6FlowlabelReq struct
type ipv6Mreq (line 139) | type ipv6Mreq struct
type groupReq (line 144) | type groupReq struct
type groupSourceReq (line 149) | type groupSourceReq struct
type icmpv6Filter (line 155) | type icmpv6Filter struct
type sockFProg (line 159) | type sockFProg struct
type sockFilter (line 165) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_linux_mips64.go
constant sysIPV6_ADDRFORM (line 7) | sysIPV6_ADDRFORM = 0x1
constant sysIPV6_2292PKTINFO (line 8) | sysIPV6_2292PKTINFO = 0x2
constant sysIPV6_2292HOPOPTS (line 9) | sysIPV6_2292HOPOPTS = 0x3
constant sysIPV6_2292DSTOPTS (line 10) | sysIPV6_2292DSTOPTS = 0x4
constant sysIPV6_2292RTHDR (line 11) | sysIPV6_2292RTHDR = 0x5
constant sysIPV6_2292PKTOPTIONS (line 12) | sysIPV6_2292PKTOPTIONS = 0x6
constant sysIPV6_CHECKSUM (line 13) | sysIPV6_CHECKSUM = 0x7
constant sysIPV6_2292HOPLIMIT (line 14) | sysIPV6_2292HOPLIMIT = 0x8
constant sysIPV6_NEXTHOP (line 15) | sysIPV6_NEXTHOP = 0x9
constant sysIPV6_FLOWINFO (line 16) | sysIPV6_FLOWINFO = 0xb
constant sysIPV6_UNICAST_HOPS (line 18) | sysIPV6_UNICAST_HOPS = 0x10
constant sysIPV6_MULTICAST_IF (line 19) | sysIPV6_MULTICAST_IF = 0x11
constant sysIPV6_MULTICAST_HOPS (line 20) | sysIPV6_MULTICAST_HOPS = 0x12
constant sysIPV6_MULTICAST_LOOP (line 21) | sysIPV6_MULTICAST_LOOP = 0x13
constant sysIPV6_ADD_MEMBERSHIP (line 22) | sysIPV6_ADD_MEMBERSHIP = 0x14
constant sysIPV6_DROP_MEMBERSHIP (line 23) | sysIPV6_DROP_MEMBERSHIP = 0x15
constant sysMCAST_JOIN_GROUP (line 24) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 25) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 26) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 27) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 28) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 29) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 30) | sysMCAST_MSFILTER = 0x30
constant sysIPV6_ROUTER_ALERT (line 31) | sysIPV6_ROUTER_ALERT = 0x16
constant sysIPV6_MTU_DISCOVER (line 32) | sysIPV6_MTU_DISCOVER = 0x17
constant sysIPV6_MTU (line 33) | sysIPV6_MTU = 0x18
constant sysIPV6_RECVERR (line 34) | sysIPV6_RECVERR = 0x19
constant sysIPV6_V6ONLY (line 35) | sysIPV6_V6ONLY = 0x1a
constant sysIPV6_JOIN_ANYCAST (line 36) | sysIPV6_JOIN_ANYCAST = 0x1b
constant sysIPV6_LEAVE_ANYCAST (line 37) | sysIPV6_LEAVE_ANYCAST = 0x1c
constant sysIPV6_FLOWLABEL_MGR (line 39) | sysIPV6_FLOWLABEL_MGR = 0x20
constant sysIPV6_FLOWINFO_SEND (line 40) | sysIPV6_FLOWINFO_SEND = 0x21
constant sysIPV6_IPSEC_POLICY (line 42) | sysIPV6_IPSEC_POLICY = 0x22
constant sysIPV6_XFRM_POLICY (line 43) | sysIPV6_XFRM_POLICY = 0x23
constant sysIPV6_RECVPKTINFO (line 45) | sysIPV6_RECVPKTINFO = 0x31
constant sysIPV6_PKTINFO (line 46) | sysIPV6_PKTINFO = 0x32
constant sysIPV6_RECVHOPLIMIT (line 47) | sysIPV6_RECVHOPLIMIT = 0x33
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = 0x34
constant sysIPV6_RECVHOPOPTS (line 49) | sysIPV6_RECVHOPOPTS = 0x35
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = 0x36
constant sysIPV6_RTHDRDSTOPTS (line 51) | sysIPV6_RTHDRDSTOPTS = 0x37
constant sysIPV6_RECVRTHDR (line 52) | sysIPV6_RECVRTHDR = 0x38
constant sysIPV6_RTHDR (line 53) | sysIPV6_RTHDR = 0x39
constant sysIPV6_RECVDSTOPTS (line 54) | sysIPV6_RECVDSTOPTS = 0x3a
constant sysIPV6_DSTOPTS (line 55) | sysIPV6_DSTOPTS = 0x3b
constant sysIPV6_RECVPATHMTU (line 56) | sysIPV6_RECVPATHMTU = 0x3c
constant sysIPV6_PATHMTU (line 57) | sysIPV6_PATHMTU = 0x3d
constant sysIPV6_DONTFRAG (line 58) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_RECVTCLASS (line 60) | sysIPV6_RECVTCLASS = 0x42
constant sysIPV6_TCLASS (line 61) | sysIPV6_TCLASS = 0x43
constant sysIPV6_ADDR_PREFERENCES (line 63) | sysIPV6_ADDR_PREFERENCES = 0x48
constant sysIPV6_PREFER_SRC_TMP (line 65) | sysIPV6_PREFER_SRC_TMP = 0x1
constant sysIPV6_PREFER_SRC_PUBLIC (line 66) | sysIPV6_PREFER_SRC_PUBLIC = 0x2
constant sysIPV6_PREFER_SRC_PUBTMP_DEFAULT (line 67) | sysIPV6_PREFER_SRC_PUBTMP_DEFAULT = 0x100
constant sysIPV6_PREFER_SRC_COA (line 68) | sysIPV6_PREFER_SRC_COA = 0x4
constant sysIPV6_PREFER_SRC_HOME (line 69) | sysIPV6_PREFER_SRC_HOME = 0x400
constant sysIPV6_PREFER_SRC_CGA (line 70) | sysIPV6_PREFER_SRC_CGA = 0x8
constant sysIPV6_PREFER_SRC_NONCGA (line 71) | sysIPV6_PREFER_SRC_NONCGA = 0x800
constant sysIPV6_MINHOPCOUNT (line 73) | sysIPV6_MINHOPCOUNT = 0x49
constant sysIPV6_ORIGDSTADDR (line 75) | sysIPV6_ORIGDSTADDR = 0x4a
constant sysIPV6_RECVORIGDSTADDR (line 76) | sysIPV6_RECVORIGDSTADDR = 0x4a
constant sysIPV6_TRANSPARENT (line 77) | sysIPV6_TRANSPARENT = 0x4b
constant sysIPV6_UNICAST_IF (line 78) | sysIPV6_UNICAST_IF = 0x4c
constant sysICMPV6_FILTER (line 80) | sysICMPV6_FILTER = 0x1
constant sysICMPV6_FILTER_BLOCK (line 82) | sysICMPV6_FILTER_BLOCK = 0x1
constant sysICMPV6_FILTER_PASS (line 83) | sysICMPV6_FILTER_PASS = 0x2
constant sysICMPV6_FILTER_BLOCKOTHERS (line 84) | sysICMPV6_FILTER_BLOCKOTHERS = 0x3
constant sysICMPV6_FILTER_PASSONLY (line 85) | sysICMPV6_FILTER_PASSONLY = 0x4
constant sysSOL_SOCKET (line 87) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 88) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 90) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 91) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 92) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 93) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6FlowlabelReq (line 94) | sizeofIPv6FlowlabelReq = 0x20
constant sizeofIPv6Mreq (line 96) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 97) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 98) | sizeofGroupSourceReq = 0x108
constant sizeofICMPv6Filter (line 100) | sizeofICMPv6Filter = 0x20
constant sizeofSockFprog (line 102) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 105) | type kernelSockaddrStorage struct
type sockaddrInet6 (line 110) | type sockaddrInet6 struct
type inet6Pktinfo (line 118) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 123) | type ipv6Mtuinfo struct
type ipv6FlowlabelReq (line 128) | type ipv6FlowlabelReq struct
type ipv6Mreq (line 139) | type ipv6Mreq struct
type groupReq (line 144) | type groupReq struct
type groupSourceReq (line 150) | type groupSourceReq struct
type icmpv6Filter (line 157) | type icmpv6Filter struct
type sockFProg (line 161) | type sockFProg struct
type sockFilter (line 167) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_linux_mips64le.go
constant sysIPV6_ADDRFORM (line 7) | sysIPV6_ADDRFORM = 0x1
constant sysIPV6_2292PKTINFO (line 8) | sysIPV6_2292PKTINFO = 0x2
constant sysIPV6_2292HOPOPTS (line 9) | sysIPV6_2292HOPOPTS = 0x3
constant sysIPV6_2292DSTOPTS (line 10) | sysIPV6_2292DSTOPTS = 0x4
constant sysIPV6_2292RTHDR (line 11) | sysIPV6_2292RTHDR = 0x5
constant sysIPV6_2292PKTOPTIONS (line 12) | sysIPV6_2292PKTOPTIONS = 0x6
constant sysIPV6_CHECKSUM (line 13) | sysIPV6_CHECKSUM = 0x7
constant sysIPV6_2292HOPLIMIT (line 14) | sysIPV6_2292HOPLIMIT = 0x8
constant sysIPV6_NEXTHOP (line 15) | sysIPV6_NEXTHOP = 0x9
constant sysIPV6_FLOWINFO (line 16) | sysIPV6_FLOWINFO = 0xb
constant sysIPV6_UNICAST_HOPS (line 18) | sysIPV6_UNICAST_HOPS = 0x10
constant sysIPV6_MULTICAST_IF (line 19) | sysIPV6_MULTICAST_IF = 0x11
constant sysIPV6_MULTICAST_HOPS (line 20) | sysIPV6_MULTICAST_HOPS = 0x12
constant sysIPV6_MULTICAST_LOOP (line 21) | sysIPV6_MULTICAST_LOOP = 0x13
constant sysIPV6_ADD_MEMBERSHIP (line 22) | sysIPV6_ADD_MEMBERSHIP = 0x14
constant sysIPV6_DROP_MEMBERSHIP (line 23) | sysIPV6_DROP_MEMBERSHIP = 0x15
constant sysMCAST_JOIN_GROUP (line 24) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 25) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 26) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 27) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 28) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 29) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 30) | sysMCAST_MSFILTER = 0x30
constant sysIPV6_ROUTER_ALERT (line 31) | sysIPV6_ROUTER_ALERT = 0x16
constant sysIPV6_MTU_DISCOVER (line 32) | sysIPV6_MTU_DISCOVER = 0x17
constant sysIPV6_MTU (line 33) | sysIPV6_MTU = 0x18
constant sysIPV6_RECVERR (line 34) | sysIPV6_RECVERR = 0x19
constant sysIPV6_V6ONLY (line 35) | sysIPV6_V6ONLY = 0x1a
constant sysIPV6_JOIN_ANYCAST (line 36) | sysIPV6_JOIN_ANYCAST = 0x1b
constant sysIPV6_LEAVE_ANYCAST (line 37) | sysIPV6_LEAVE_ANYCAST = 0x1c
constant sysIPV6_FLOWLABEL_MGR (line 39) | sysIPV6_FLOWLABEL_MGR = 0x20
constant sysIPV6_FLOWINFO_SEND (line 40) | sysIPV6_FLOWINFO_SEND = 0x21
constant sysIPV6_IPSEC_POLICY (line 42) | sysIPV6_IPSEC_POLICY = 0x22
constant sysIPV6_XFRM_POLICY (line 43) | sysIPV6_XFRM_POLICY = 0x23
constant sysIPV6_RECVPKTINFO (line 45) | sysIPV6_RECVPKTINFO = 0x31
constant sysIPV6_PKTINFO (line 46) | sysIPV6_PKTINFO = 0x32
constant sysIPV6_RECVHOPLIMIT (line 47) | sysIPV6_RECVHOPLIMIT = 0x33
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = 0x34
constant sysIPV6_RECVHOPOPTS (line 49) | sysIPV6_RECVHOPOPTS = 0x35
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = 0x36
constant sysIPV6_RTHDRDSTOPTS (line 51) | sysIPV6_RTHDRDSTOPTS = 0x37
constant sysIPV6_RECVRTHDR (line 52) | sysIPV6_RECVRTHDR = 0x38
constant sysIPV6_RTHDR (line 53) | sysIPV6_RTHDR = 0x39
constant sysIPV6_RECVDSTOPTS (line 54) | sysIPV6_RECVDSTOPTS = 0x3a
constant sysIPV6_DSTOPTS (line 55) | sysIPV6_DSTOPTS = 0x3b
constant sysIPV6_RECVPATHMTU (line 56) | sysIPV6_RECVPATHMTU = 0x3c
constant sysIPV6_PATHMTU (line 57) | sysIPV6_PATHMTU = 0x3d
constant sysIPV6_DONTFRAG (line 58) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_RECVTCLASS (line 60) | sysIPV6_RECVTCLASS = 0x42
constant sysIPV6_TCLASS (line 61) | sysIPV6_TCLASS = 0x43
constant sysIPV6_ADDR_PREFERENCES (line 63) | sysIPV6_ADDR_PREFERENCES = 0x48
constant sysIPV6_PREFER_SRC_TMP (line 65) | sysIPV6_PREFER_SRC_TMP = 0x1
constant sysIPV6_PREFER_SRC_PUBLIC (line 66) | sysIPV6_PREFER_SRC_PUBLIC = 0x2
constant sysIPV6_PREFER_SRC_PUBTMP_DEFAULT (line 67) | sysIPV6_PREFER_SRC_PUBTMP_DEFAULT = 0x100
constant sysIPV6_PREFER_SRC_COA (line 68) | sysIPV6_PREFER_SRC_COA = 0x4
constant sysIPV6_PREFER_SRC_HOME (line 69) | sysIPV6_PREFER_SRC_HOME = 0x400
constant sysIPV6_PREFER_SRC_CGA (line 70) | sysIPV6_PREFER_SRC_CGA = 0x8
constant sysIPV6_PREFER_SRC_NONCGA (line 71) | sysIPV6_PREFER_SRC_NONCGA = 0x800
constant sysIPV6_MINHOPCOUNT (line 73) | sysIPV6_MINHOPCOUNT = 0x49
constant sysIPV6_ORIGDSTADDR (line 75) | sysIPV6_ORIGDSTADDR = 0x4a
constant sysIPV6_RECVORIGDSTADDR (line 76) | sysIPV6_RECVORIGDSTADDR = 0x4a
constant sysIPV6_TRANSPARENT (line 77) | sysIPV6_TRANSPARENT = 0x4b
constant sysIPV6_UNICAST_IF (line 78) | sysIPV6_UNICAST_IF = 0x4c
constant sysICMPV6_FILTER (line 80) | sysICMPV6_FILTER = 0x1
constant sysICMPV6_FILTER_BLOCK (line 82) | sysICMPV6_FILTER_BLOCK = 0x1
constant sysICMPV6_FILTER_PASS (line 83) | sysICMPV6_FILTER_PASS = 0x2
constant sysICMPV6_FILTER_BLOCKOTHERS (line 84) | sysICMPV6_FILTER_BLOCKOTHERS = 0x3
constant sysICMPV6_FILTER_PASSONLY (line 85) | sysICMPV6_FILTER_PASSONLY = 0x4
constant sysSOL_SOCKET (line 87) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 88) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 90) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 91) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 92) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 93) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6FlowlabelReq (line 94) | sizeofIPv6FlowlabelReq = 0x20
constant sizeofIPv6Mreq (line 96) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 97) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 98) | sizeofGroupSourceReq = 0x108
constant sizeofICMPv6Filter (line 100) | sizeofICMPv6Filter = 0x20
constant sizeofSockFprog (line 102) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 105) | type kernelSockaddrStorage struct
type sockaddrInet6 (line 110) | type sockaddrInet6 struct
type inet6Pktinfo (line 118) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 123) | type ipv6Mtuinfo struct
type ipv6FlowlabelReq (line 128) | type ipv6FlowlabelReq struct
type ipv6Mreq (line 139) | type ipv6Mreq struct
type groupReq (line 144) | type groupReq struct
type groupSourceReq (line 150) | type groupSourceReq struct
type icmpv6Filter (line 157) | type icmpv6Filter struct
type sockFProg (line 161) | type sockFProg struct
type sockFilter (line 167) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_linux_mipsle.go
constant sysIPV6_ADDRFORM (line 7) | sysIPV6_ADDRFORM = 0x1
constant sysIPV6_2292PKTINFO (line 8) | sysIPV6_2292PKTINFO = 0x2
constant sysIPV6_2292HOPOPTS (line 9) | sysIPV6_2292HOPOPTS = 0x3
constant sysIPV6_2292DSTOPTS (line 10) | sysIPV6_2292DSTOPTS = 0x4
constant sysIPV6_2292RTHDR (line 11) | sysIPV6_2292RTHDR = 0x5
constant sysIPV6_2292PKTOPTIONS (line 12) | sysIPV6_2292PKTOPTIONS = 0x6
constant sysIPV6_CHECKSUM (line 13) | sysIPV6_CHECKSUM = 0x7
constant sysIPV6_2292HOPLIMIT (line 14) | sysIPV6_2292HOPLIMIT = 0x8
constant sysIPV6_NEXTHOP (line 15) | sysIPV6_NEXTHOP = 0x9
constant sysIPV6_FLOWINFO (line 16) | sysIPV6_FLOWINFO = 0xb
constant sysIPV6_UNICAST_HOPS (line 18) | sysIPV6_UNICAST_HOPS = 0x10
constant sysIPV6_MULTICAST_IF (line 19) | sysIPV6_MULTICAST_IF = 0x11
constant sysIPV6_MULTICAST_HOPS (line 20) | sysIPV6_MULTICAST_HOPS = 0x12
constant sysIPV6_MULTICAST_LOOP (line 21) | sysIPV6_MULTICAST_LOOP = 0x13
constant sysIPV6_ADD_MEMBERSHIP (line 22) | sysIPV6_ADD_MEMBERSHIP = 0x14
constant sysIPV6_DROP_MEMBERSHIP (line 23) | sysIPV6_DROP_MEMBERSHIP = 0x15
constant sysMCAST_JOIN_GROUP (line 24) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 25) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 26) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 27) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 28) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 29) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 30) | sysMCAST_MSFILTER = 0x30
constant sysIPV6_ROUTER_ALERT (line 31) | sysIPV6_ROUTER_ALERT = 0x16
constant sysIPV6_MTU_DISCOVER (line 32) | sysIPV6_MTU_DISCOVER = 0x17
constant sysIPV6_MTU (line 33) | sysIPV6_MTU = 0x18
constant sysIPV6_RECVERR (line 34) | sysIPV6_RECVERR = 0x19
constant sysIPV6_V6ONLY (line 35) | sysIPV6_V6ONLY = 0x1a
constant sysIPV6_JOIN_ANYCAST (line 36) | sysIPV6_JOIN_ANYCAST = 0x1b
constant sysIPV6_LEAVE_ANYCAST (line 37) | sysIPV6_LEAVE_ANYCAST = 0x1c
constant sysIPV6_FLOWLABEL_MGR (line 39) | sysIPV6_FLOWLABEL_MGR = 0x20
constant sysIPV6_FLOWINFO_SEND (line 40) | sysIPV6_FLOWINFO_SEND = 0x21
constant sysIPV6_IPSEC_POLICY (line 42) | sysIPV6_IPSEC_POLICY = 0x22
constant sysIPV6_XFRM_POLICY (line 43) | sysIPV6_XFRM_POLICY = 0x23
constant sysIPV6_RECVPKTINFO (line 45) | sysIPV6_RECVPKTINFO = 0x31
constant sysIPV6_PKTINFO (line 46) | sysIPV6_PKTINFO = 0x32
constant sysIPV6_RECVHOPLIMIT (line 47) | sysIPV6_RECVHOPLIMIT = 0x33
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = 0x34
constant sysIPV6_RECVHOPOPTS (line 49) | sysIPV6_RECVHOPOPTS = 0x35
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = 0x36
constant sysIPV6_RTHDRDSTOPTS (line 51) | sysIPV6_RTHDRDSTOPTS = 0x37
constant sysIPV6_RECVRTHDR (line 52) | sysIPV6_RECVRTHDR = 0x38
constant sysIPV6_RTHDR (line 53) | sysIPV6_RTHDR = 0x39
constant sysIPV6_RECVDSTOPTS (line 54) | sysIPV6_RECVDSTOPTS = 0x3a
constant sysIPV6_DSTOPTS (line 55) | sysIPV6_DSTOPTS = 0x3b
constant sysIPV6_RECVPATHMTU (line 56) | sysIPV6_RECVPATHMTU = 0x3c
constant sysIPV6_PATHMTU (line 57) | sysIPV6_PATHMTU = 0x3d
constant sysIPV6_DONTFRAG (line 58) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_RECVTCLASS (line 60) | sysIPV6_RECVTCLASS = 0x42
constant sysIPV6_TCLASS (line 61) | sysIPV6_TCLASS = 0x43
constant sysIPV6_ADDR_PREFERENCES (line 63) | sysIPV6_ADDR_PREFERENCES = 0x48
constant sysIPV6_PREFER_SRC_TMP (line 65) | sysIPV6_PREFER_SRC_TMP = 0x1
constant sysIPV6_PREFER_SRC_PUBLIC (line 66) | sysIPV6_PREFER_SRC_PUBLIC = 0x2
constant sysIPV6_PREFER_SRC_PUBTMP_DEFAULT (line 67) | sysIPV6_PREFER_SRC_PUBTMP_DEFAULT = 0x100
constant sysIPV6_PREFER_SRC_COA (line 68) | sysIPV6_PREFER_SRC_COA = 0x4
constant sysIPV6_PREFER_SRC_HOME (line 69) | sysIPV6_PREFER_SRC_HOME = 0x400
constant sysIPV6_PREFER_SRC_CGA (line 70) | sysIPV6_PREFER_SRC_CGA = 0x8
constant sysIPV6_PREFER_SRC_NONCGA (line 71) | sysIPV6_PREFER_SRC_NONCGA = 0x800
constant sysIPV6_MINHOPCOUNT (line 73) | sysIPV6_MINHOPCOUNT = 0x49
constant sysIPV6_ORIGDSTADDR (line 75) | sysIPV6_ORIGDSTADDR = 0x4a
constant sysIPV6_RECVORIGDSTADDR (line 76) | sysIPV6_RECVORIGDSTADDR = 0x4a
constant sysIPV6_TRANSPARENT (line 77) | sysIPV6_TRANSPARENT = 0x4b
constant sysIPV6_UNICAST_IF (line 78) | sysIPV6_UNICAST_IF = 0x4c
constant sysICMPV6_FILTER (line 80) | sysICMPV6_FILTER = 0x1
constant sysICMPV6_FILTER_BLOCK (line 82) | sysICMPV6_FILTER_BLOCK = 0x1
constant sysICMPV6_FILTER_PASS (line 83) | sysICMPV6_FILTER_PASS = 0x2
constant sysICMPV6_FILTER_BLOCKOTHERS (line 84) | sysICMPV6_FILTER_BLOCKOTHERS = 0x3
constant sysICMPV6_FILTER_PASSONLY (line 85) | sysICMPV6_FILTER_PASSONLY = 0x4
constant sysSOL_SOCKET (line 87) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 88) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 90) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 91) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 92) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 93) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6FlowlabelReq (line 94) | sizeofIPv6FlowlabelReq = 0x20
constant sizeofIPv6Mreq (line 96) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 97) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 98) | sizeofGroupSourceReq = 0x104
constant sizeofICMPv6Filter (line 100) | sizeofICMPv6Filter = 0x20
constant sizeofSockFprog (line 102) | sizeofSockFprog = 0x8
type kernelSockaddrStorage (line 105) | type kernelSockaddrStorage struct
type sockaddrInet6 (line 110) | type sockaddrInet6 struct
type inet6Pktinfo (line 118) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 123) | type ipv6Mtuinfo struct
type ipv6FlowlabelReq (line 128) | type ipv6FlowlabelReq struct
type ipv6Mreq (line 139) | type ipv6Mreq struct
type groupReq (line 144) | type groupReq struct
type groupSourceReq (line 149) | type groupSourceReq struct
type icmpv6Filter (line 155) | type icmpv6Filter struct
type sockFProg (line 159) | type sockFProg struct
type sockFilter (line 165) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_linux_ppc.go
constant sysIPV6_ADDRFORM (line 7) | sysIPV6_ADDRFORM = 0x1
constant sysIPV6_2292PKTINFO (line 8) | sysIPV6_2292PKTINFO = 0x2
constant sysIPV6_2292HOPOPTS (line 9) | sysIPV6_2292HOPOPTS = 0x3
constant sysIPV6_2292DSTOPTS (line 10) | sysIPV6_2292DSTOPTS = 0x4
constant sysIPV6_2292RTHDR (line 11) | sysIPV6_2292RTHDR = 0x5
constant sysIPV6_2292PKTOPTIONS (line 12) | sysIPV6_2292PKTOPTIONS = 0x6
constant sysIPV6_CHECKSUM (line 13) | sysIPV6_CHECKSUM = 0x7
constant sysIPV6_2292HOPLIMIT (line 14) | sysIPV6_2292HOPLIMIT = 0x8
constant sysIPV6_NEXTHOP (line 15) | sysIPV6_NEXTHOP = 0x9
constant sysIPV6_FLOWINFO (line 16) | sysIPV6_FLOWINFO = 0xb
constant sysIPV6_UNICAST_HOPS (line 18) | sysIPV6_UNICAST_HOPS = 0x10
constant sysIPV6_MULTICAST_IF (line 19) | sysIPV6_MULTICAST_IF = 0x11
constant sysIPV6_MULTICAST_HOPS (line 20) | sysIPV6_MULTICAST_HOPS = 0x12
constant sysIPV6_MULTICAST_LOOP (line 21) | sysIPV6_MULTICAST_LOOP = 0x13
constant sysIPV6_ADD_MEMBERSHIP (line 22) | sysIPV6_ADD_MEMBERSHIP = 0x14
constant sysIPV6_DROP_MEMBERSHIP (line 23) | sysIPV6_DROP_MEMBERSHIP = 0x15
constant sysMCAST_JOIN_GROUP (line 24) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 25) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 26) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 27) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 28) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 29) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 30) | sysMCAST_MSFILTER = 0x30
constant sysIPV6_ROUTER_ALERT (line 31) | sysIPV6_ROUTER_ALERT = 0x16
constant sysIPV6_MTU_DISCOVER (line 32) | sysIPV6_MTU_DISCOVER = 0x17
constant sysIPV6_MTU (line 33) | sysIPV6_MTU = 0x18
constant sysIPV6_RECVERR (line 34) | sysIPV6_RECVERR = 0x19
constant sysIPV6_V6ONLY (line 35) | sysIPV6_V6ONLY = 0x1a
constant sysIPV6_JOIN_ANYCAST (line 36) | sysIPV6_JOIN_ANYCAST = 0x1b
constant sysIPV6_LEAVE_ANYCAST (line 37) | sysIPV6_LEAVE_ANYCAST = 0x1c
constant sysIPV6_FLOWLABEL_MGR (line 39) | sysIPV6_FLOWLABEL_MGR = 0x20
constant sysIPV6_FLOWINFO_SEND (line 40) | sysIPV6_FLOWINFO_SEND = 0x21
constant sysIPV6_IPSEC_POLICY (line 42) | sysIPV6_IPSEC_POLICY = 0x22
constant sysIPV6_XFRM_POLICY (line 43) | sysIPV6_XFRM_POLICY = 0x23
constant sysIPV6_RECVPKTINFO (line 45) | sysIPV6_RECVPKTINFO = 0x31
constant sysIPV6_PKTINFO (line 46) | sysIPV6_PKTINFO = 0x32
constant sysIPV6_RECVHOPLIMIT (line 47) | sysIPV6_RECVHOPLIMIT = 0x33
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = 0x34
constant sysIPV6_RECVHOPOPTS (line 49) | sysIPV6_RECVHOPOPTS = 0x35
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = 0x36
constant sysIPV6_RTHDRDSTOPTS (line 51) | sysIPV6_RTHDRDSTOPTS = 0x37
constant sysIPV6_RECVRTHDR (line 52) | sysIPV6_RECVRTHDR = 0x38
constant sysIPV6_RTHDR (line 53) | sysIPV6_RTHDR = 0x39
constant sysIPV6_RECVDSTOPTS (line 54) | sysIPV6_RECVDSTOPTS = 0x3a
constant sysIPV6_DSTOPTS (line 55) | sysIPV6_DSTOPTS = 0x3b
constant sysIPV6_RECVPATHMTU (line 56) | sysIPV6_RECVPATHMTU = 0x3c
constant sysIPV6_PATHMTU (line 57) | sysIPV6_PATHMTU = 0x3d
constant sysIPV6_DONTFRAG (line 58) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_RECVTCLASS (line 60) | sysIPV6_RECVTCLASS = 0x42
constant sysIPV6_TCLASS (line 61) | sysIPV6_TCLASS = 0x43
constant sysIPV6_ADDR_PREFERENCES (line 63) | sysIPV6_ADDR_PREFERENCES = 0x48
constant sysIPV6_PREFER_SRC_TMP (line 65) | sysIPV6_PREFER_SRC_TMP = 0x1
constant sysIPV6_PREFER_SRC_PUBLIC (line 66) | sysIPV6_PREFER_SRC_PUBLIC = 0x2
constant sysIPV6_PREFER_SRC_PUBTMP_DEFAULT (line 67) | sysIPV6_PREFER_SRC_PUBTMP_DEFAULT = 0x100
constant sysIPV6_PREFER_SRC_COA (line 68) | sysIPV6_PREFER_SRC_COA = 0x4
constant sysIPV6_PREFER_SRC_HOME (line 69) | sysIPV6_PREFER_SRC_HOME = 0x400
constant sysIPV6_PREFER_SRC_CGA (line 70) | sysIPV6_PREFER_SRC_CGA = 0x8
constant sysIPV6_PREFER_SRC_NONCGA (line 71) | sysIPV6_PREFER_SRC_NONCGA = 0x800
constant sysIPV6_MINHOPCOUNT (line 73) | sysIPV6_MINHOPCOUNT = 0x49
constant sysIPV6_ORIGDSTADDR (line 75) | sysIPV6_ORIGDSTADDR = 0x4a
constant sysIPV6_RECVORIGDSTADDR (line 76) | sysIPV6_RECVORIGDSTADDR = 0x4a
constant sysIPV6_TRANSPARENT (line 77) | sysIPV6_TRANSPARENT = 0x4b
constant sysIPV6_UNICAST_IF (line 78) | sysIPV6_UNICAST_IF = 0x4c
constant sysICMPV6_FILTER (line 80) | sysICMPV6_FILTER = 0x1
constant sysICMPV6_FILTER_BLOCK (line 82) | sysICMPV6_FILTER_BLOCK = 0x1
constant sysICMPV6_FILTER_PASS (line 83) | sysICMPV6_FILTER_PASS = 0x2
constant sysICMPV6_FILTER_BLOCKOTHERS (line 84) | sysICMPV6_FILTER_BLOCKOTHERS = 0x3
constant sysICMPV6_FILTER_PASSONLY (line 85) | sysICMPV6_FILTER_PASSONLY = 0x4
constant sysSOL_SOCKET (line 87) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 88) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 90) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 91) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 92) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 93) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6FlowlabelReq (line 94) | sizeofIPv6FlowlabelReq = 0x20
constant sizeofIPv6Mreq (line 96) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 97) | sizeofGroupReq = 0x84
constant sizeofGroupSourceReq (line 98) | sizeofGroupSourceReq = 0x104
constant sizeofICMPv6Filter (line 100) | sizeofICMPv6Filter = 0x20
constant sizeofSockFprog (line 102) | sizeofSockFprog = 0x8
type kernelSockaddrStorage (line 105) | type kernelSockaddrStorage struct
type sockaddrInet6 (line 110) | type sockaddrInet6 struct
type inet6Pktinfo (line 118) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 123) | type ipv6Mtuinfo struct
type ipv6FlowlabelReq (line 128) | type ipv6FlowlabelReq struct
type ipv6Mreq (line 139) | type ipv6Mreq struct
type groupReq (line 144) | type groupReq struct
type groupSourceReq (line 149) | type groupSourceReq struct
type icmpv6Filter (line 155) | type icmpv6Filter struct
type sockFProg (line 159) | type sockFProg struct
type sockFilter (line 165) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_linux_ppc64.go
constant sysIPV6_ADDRFORM (line 7) | sysIPV6_ADDRFORM = 0x1
constant sysIPV6_2292PKTINFO (line 8) | sysIPV6_2292PKTINFO = 0x2
constant sysIPV6_2292HOPOPTS (line 9) | sysIPV6_2292HOPOPTS = 0x3
constant sysIPV6_2292DSTOPTS (line 10) | sysIPV6_2292DSTOPTS = 0x4
constant sysIPV6_2292RTHDR (line 11) | sysIPV6_2292RTHDR = 0x5
constant sysIPV6_2292PKTOPTIONS (line 12) | sysIPV6_2292PKTOPTIONS = 0x6
constant sysIPV6_CHECKSUM (line 13) | sysIPV6_CHECKSUM = 0x7
constant sysIPV6_2292HOPLIMIT (line 14) | sysIPV6_2292HOPLIMIT = 0x8
constant sysIPV6_NEXTHOP (line 15) | sysIPV6_NEXTHOP = 0x9
constant sysIPV6_FLOWINFO (line 16) | sysIPV6_FLOWINFO = 0xb
constant sysIPV6_UNICAST_HOPS (line 18) | sysIPV6_UNICAST_HOPS = 0x10
constant sysIPV6_MULTICAST_IF (line 19) | sysIPV6_MULTICAST_IF = 0x11
constant sysIPV6_MULTICAST_HOPS (line 20) | sysIPV6_MULTICAST_HOPS = 0x12
constant sysIPV6_MULTICAST_LOOP (line 21) | sysIPV6_MULTICAST_LOOP = 0x13
constant sysIPV6_ADD_MEMBERSHIP (line 22) | sysIPV6_ADD_MEMBERSHIP = 0x14
constant sysIPV6_DROP_MEMBERSHIP (line 23) | sysIPV6_DROP_MEMBERSHIP = 0x15
constant sysMCAST_JOIN_GROUP (line 24) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 25) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 26) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 27) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 28) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 29) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 30) | sysMCAST_MSFILTER = 0x30
constant sysIPV6_ROUTER_ALERT (line 31) | sysIPV6_ROUTER_ALERT = 0x16
constant sysIPV6_MTU_DISCOVER (line 32) | sysIPV6_MTU_DISCOVER = 0x17
constant sysIPV6_MTU (line 33) | sysIPV6_MTU = 0x18
constant sysIPV6_RECVERR (line 34) | sysIPV6_RECVERR = 0x19
constant sysIPV6_V6ONLY (line 35) | sysIPV6_V6ONLY = 0x1a
constant sysIPV6_JOIN_ANYCAST (line 36) | sysIPV6_JOIN_ANYCAST = 0x1b
constant sysIPV6_LEAVE_ANYCAST (line 37) | sysIPV6_LEAVE_ANYCAST = 0x1c
constant sysIPV6_FLOWLABEL_MGR (line 39) | sysIPV6_FLOWLABEL_MGR = 0x20
constant sysIPV6_FLOWINFO_SEND (line 40) | sysIPV6_FLOWINFO_SEND = 0x21
constant sysIPV6_IPSEC_POLICY (line 42) | sysIPV6_IPSEC_POLICY = 0x22
constant sysIPV6_XFRM_POLICY (line 43) | sysIPV6_XFRM_POLICY = 0x23
constant sysIPV6_RECVPKTINFO (line 45) | sysIPV6_RECVPKTINFO = 0x31
constant sysIPV6_PKTINFO (line 46) | sysIPV6_PKTINFO = 0x32
constant sysIPV6_RECVHOPLIMIT (line 47) | sysIPV6_RECVHOPLIMIT = 0x33
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = 0x34
constant sysIPV6_RECVHOPOPTS (line 49) | sysIPV6_RECVHOPOPTS = 0x35
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = 0x36
constant sysIPV6_RTHDRDSTOPTS (line 51) | sysIPV6_RTHDRDSTOPTS = 0x37
constant sysIPV6_RECVRTHDR (line 52) | sysIPV6_RECVRTHDR = 0x38
constant sysIPV6_RTHDR (line 53) | sysIPV6_RTHDR = 0x39
constant sysIPV6_RECVDSTOPTS (line 54) | sysIPV6_RECVDSTOPTS = 0x3a
constant sysIPV6_DSTOPTS (line 55) | sysIPV6_DSTOPTS = 0x3b
constant sysIPV6_RECVPATHMTU (line 56) | sysIPV6_RECVPATHMTU = 0x3c
constant sysIPV6_PATHMTU (line 57) | sysIPV6_PATHMTU = 0x3d
constant sysIPV6_DONTFRAG (line 58) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_RECVTCLASS (line 60) | sysIPV6_RECVTCLASS = 0x42
constant sysIPV6_TCLASS (line 61) | sysIPV6_TCLASS = 0x43
constant sysIPV6_ADDR_PREFERENCES (line 63) | sysIPV6_ADDR_PREFERENCES = 0x48
constant sysIPV6_PREFER_SRC_TMP (line 65) | sysIPV6_PREFER_SRC_TMP = 0x1
constant sysIPV6_PREFER_SRC_PUBLIC (line 66) | sysIPV6_PREFER_SRC_PUBLIC = 0x2
constant sysIPV6_PREFER_SRC_PUBTMP_DEFAULT (line 67) | sysIPV6_PREFER_SRC_PUBTMP_DEFAULT = 0x100
constant sysIPV6_PREFER_SRC_COA (line 68) | sysIPV6_PREFER_SRC_COA = 0x4
constant sysIPV6_PREFER_SRC_HOME (line 69) | sysIPV6_PREFER_SRC_HOME = 0x400
constant sysIPV6_PREFER_SRC_CGA (line 70) | sysIPV6_PREFER_SRC_CGA = 0x8
constant sysIPV6_PREFER_SRC_NONCGA (line 71) | sysIPV6_PREFER_SRC_NONCGA = 0x800
constant sysIPV6_MINHOPCOUNT (line 73) | sysIPV6_MINHOPCOUNT = 0x49
constant sysIPV6_ORIGDSTADDR (line 75) | sysIPV6_ORIGDSTADDR = 0x4a
constant sysIPV6_RECVORIGDSTADDR (line 76) | sysIPV6_RECVORIGDSTADDR = 0x4a
constant sysIPV6_TRANSPARENT (line 77) | sysIPV6_TRANSPARENT = 0x4b
constant sysIPV6_UNICAST_IF (line 78) | sysIPV6_UNICAST_IF = 0x4c
constant sysICMPV6_FILTER (line 80) | sysICMPV6_FILTER = 0x1
constant sysICMPV6_FILTER_BLOCK (line 82) | sysICMPV6_FILTER_BLOCK = 0x1
constant sysICMPV6_FILTER_PASS (line 83) | sysICMPV6_FILTER_PASS = 0x2
constant sysICMPV6_FILTER_BLOCKOTHERS (line 84) | sysICMPV6_FILTER_BLOCKOTHERS = 0x3
constant sysICMPV6_FILTER_PASSONLY (line 85) | sysICMPV6_FILTER_PASSONLY = 0x4
constant sysSOL_SOCKET (line 87) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 88) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 90) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 91) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 92) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 93) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6FlowlabelReq (line 94) | sizeofIPv6FlowlabelReq = 0x20
constant sizeofIPv6Mreq (line 96) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 97) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 98) | sizeofGroupSourceReq = 0x108
constant sizeofICMPv6Filter (line 100) | sizeofICMPv6Filter = 0x20
constant sizeofSockFprog (line 102) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 105) | type kernelSockaddrStorage struct
type sockaddrInet6 (line 110) | type sockaddrInet6 struct
type inet6Pktinfo (line 118) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 123) | type ipv6Mtuinfo struct
type ipv6FlowlabelReq (line 128) | type ipv6FlowlabelReq struct
type ipv6Mreq (line 139) | type ipv6Mreq struct
type groupReq (line 144) | type groupReq struct
type groupSourceReq (line 150) | type groupSourceReq struct
type icmpv6Filter (line 157) | type icmpv6Filter struct
type sockFProg (line 161) | type sockFProg struct
type sockFilter (line 167) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_linux_ppc64le.go
constant sysIPV6_ADDRFORM (line 7) | sysIPV6_ADDRFORM = 0x1
constant sysIPV6_2292PKTINFO (line 8) | sysIPV6_2292PKTINFO = 0x2
constant sysIPV6_2292HOPOPTS (line 9) | sysIPV6_2292HOPOPTS = 0x3
constant sysIPV6_2292DSTOPTS (line 10) | sysIPV6_2292DSTOPTS = 0x4
constant sysIPV6_2292RTHDR (line 11) | sysIPV6_2292RTHDR = 0x5
constant sysIPV6_2292PKTOPTIONS (line 12) | sysIPV6_2292PKTOPTIONS = 0x6
constant sysIPV6_CHECKSUM (line 13) | sysIPV6_CHECKSUM = 0x7
constant sysIPV6_2292HOPLIMIT (line 14) | sysIPV6_2292HOPLIMIT = 0x8
constant sysIPV6_NEXTHOP (line 15) | sysIPV6_NEXTHOP = 0x9
constant sysIPV6_FLOWINFO (line 16) | sysIPV6_FLOWINFO = 0xb
constant sysIPV6_UNICAST_HOPS (line 18) | sysIPV6_UNICAST_HOPS = 0x10
constant sysIPV6_MULTICAST_IF (line 19) | sysIPV6_MULTICAST_IF = 0x11
constant sysIPV6_MULTICAST_HOPS (line 20) | sysIPV6_MULTICAST_HOPS = 0x12
constant sysIPV6_MULTICAST_LOOP (line 21) | sysIPV6_MULTICAST_LOOP = 0x13
constant sysIPV6_ADD_MEMBERSHIP (line 22) | sysIPV6_ADD_MEMBERSHIP = 0x14
constant sysIPV6_DROP_MEMBERSHIP (line 23) | sysIPV6_DROP_MEMBERSHIP = 0x15
constant sysMCAST_JOIN_GROUP (line 24) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 25) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 26) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 27) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 28) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 29) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 30) | sysMCAST_MSFILTER = 0x30
constant sysIPV6_ROUTER_ALERT (line 31) | sysIPV6_ROUTER_ALERT = 0x16
constant sysIPV6_MTU_DISCOVER (line 32) | sysIPV6_MTU_DISCOVER = 0x17
constant sysIPV6_MTU (line 33) | sysIPV6_MTU = 0x18
constant sysIPV6_RECVERR (line 34) | sysIPV6_RECVERR = 0x19
constant sysIPV6_V6ONLY (line 35) | sysIPV6_V6ONLY = 0x1a
constant sysIPV6_JOIN_ANYCAST (line 36) | sysIPV6_JOIN_ANYCAST = 0x1b
constant sysIPV6_LEAVE_ANYCAST (line 37) | sysIPV6_LEAVE_ANYCAST = 0x1c
constant sysIPV6_FLOWLABEL_MGR (line 39) | sysIPV6_FLOWLABEL_MGR = 0x20
constant sysIPV6_FLOWINFO_SEND (line 40) | sysIPV6_FLOWINFO_SEND = 0x21
constant sysIPV6_IPSEC_POLICY (line 42) | sysIPV6_IPSEC_POLICY = 0x22
constant sysIPV6_XFRM_POLICY (line 43) | sysIPV6_XFRM_POLICY = 0x23
constant sysIPV6_RECVPKTINFO (line 45) | sysIPV6_RECVPKTINFO = 0x31
constant sysIPV6_PKTINFO (line 46) | sysIPV6_PKTINFO = 0x32
constant sysIPV6_RECVHOPLIMIT (line 47) | sysIPV6_RECVHOPLIMIT = 0x33
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = 0x34
constant sysIPV6_RECVHOPOPTS (line 49) | sysIPV6_RECVHOPOPTS = 0x35
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = 0x36
constant sysIPV6_RTHDRDSTOPTS (line 51) | sysIPV6_RTHDRDSTOPTS = 0x37
constant sysIPV6_RECVRTHDR (line 52) | sysIPV6_RECVRTHDR = 0x38
constant sysIPV6_RTHDR (line 53) | sysIPV6_RTHDR = 0x39
constant sysIPV6_RECVDSTOPTS (line 54) | sysIPV6_RECVDSTOPTS = 0x3a
constant sysIPV6_DSTOPTS (line 55) | sysIPV6_DSTOPTS = 0x3b
constant sysIPV6_RECVPATHMTU (line 56) | sysIPV6_RECVPATHMTU = 0x3c
constant sysIPV6_PATHMTU (line 57) | sysIPV6_PATHMTU = 0x3d
constant sysIPV6_DONTFRAG (line 58) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_RECVTCLASS (line 60) | sysIPV6_RECVTCLASS = 0x42
constant sysIPV6_TCLASS (line 61) | sysIPV6_TCLASS = 0x43
constant sysIPV6_ADDR_PREFERENCES (line 63) | sysIPV6_ADDR_PREFERENCES = 0x48
constant sysIPV6_PREFER_SRC_TMP (line 65) | sysIPV6_PREFER_SRC_TMP = 0x1
constant sysIPV6_PREFER_SRC_PUBLIC (line 66) | sysIPV6_PREFER_SRC_PUBLIC = 0x2
constant sysIPV6_PREFER_SRC_PUBTMP_DEFAULT (line 67) | sysIPV6_PREFER_SRC_PUBTMP_DEFAULT = 0x100
constant sysIPV6_PREFER_SRC_COA (line 68) | sysIPV6_PREFER_SRC_COA = 0x4
constant sysIPV6_PREFER_SRC_HOME (line 69) | sysIPV6_PREFER_SRC_HOME = 0x400
constant sysIPV6_PREFER_SRC_CGA (line 70) | sysIPV6_PREFER_SRC_CGA = 0x8
constant sysIPV6_PREFER_SRC_NONCGA (line 71) | sysIPV6_PREFER_SRC_NONCGA = 0x800
constant sysIPV6_MINHOPCOUNT (line 73) | sysIPV6_MINHOPCOUNT = 0x49
constant sysIPV6_ORIGDSTADDR (line 75) | sysIPV6_ORIGDSTADDR = 0x4a
constant sysIPV6_RECVORIGDSTADDR (line 76) | sysIPV6_RECVORIGDSTADDR = 0x4a
constant sysIPV6_TRANSPARENT (line 77) | sysIPV6_TRANSPARENT = 0x4b
constant sysIPV6_UNICAST_IF (line 78) | sysIPV6_UNICAST_IF = 0x4c
constant sysICMPV6_FILTER (line 80) | sysICMPV6_FILTER = 0x1
constant sysICMPV6_FILTER_BLOCK (line 82) | sysICMPV6_FILTER_BLOCK = 0x1
constant sysICMPV6_FILTER_PASS (line 83) | sysICMPV6_FILTER_PASS = 0x2
constant sysICMPV6_FILTER_BLOCKOTHERS (line 84) | sysICMPV6_FILTER_BLOCKOTHERS = 0x3
constant sysICMPV6_FILTER_PASSONLY (line 85) | sysICMPV6_FILTER_PASSONLY = 0x4
constant sysSOL_SOCKET (line 87) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 88) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 90) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 91) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 92) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 93) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6FlowlabelReq (line 94) | sizeofIPv6FlowlabelReq = 0x20
constant sizeofIPv6Mreq (line 96) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 97) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 98) | sizeofGroupSourceReq = 0x108
constant sizeofICMPv6Filter (line 100) | sizeofICMPv6Filter = 0x20
constant sizeofSockFprog (line 102) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 105) | type kernelSockaddrStorage struct
type sockaddrInet6 (line 110) | type sockaddrInet6 struct
type inet6Pktinfo (line 118) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 123) | type ipv6Mtuinfo struct
type ipv6FlowlabelReq (line 128) | type ipv6FlowlabelReq struct
type ipv6Mreq (line 139) | type ipv6Mreq struct
type groupReq (line 144) | type groupReq struct
type groupSourceReq (line 150) | type groupSourceReq struct
type icmpv6Filter (line 157) | type icmpv6Filter struct
type sockFProg (line 161) | type sockFProg struct
type sockFilter (line 167) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_linux_s390x.go
constant sysIPV6_ADDRFORM (line 7) | sysIPV6_ADDRFORM = 0x1
constant sysIPV6_2292PKTINFO (line 8) | sysIPV6_2292PKTINFO = 0x2
constant sysIPV6_2292HOPOPTS (line 9) | sysIPV6_2292HOPOPTS = 0x3
constant sysIPV6_2292DSTOPTS (line 10) | sysIPV6_2292DSTOPTS = 0x4
constant sysIPV6_2292RTHDR (line 11) | sysIPV6_2292RTHDR = 0x5
constant sysIPV6_2292PKTOPTIONS (line 12) | sysIPV6_2292PKTOPTIONS = 0x6
constant sysIPV6_CHECKSUM (line 13) | sysIPV6_CHECKSUM = 0x7
constant sysIPV6_2292HOPLIMIT (line 14) | sysIPV6_2292HOPLIMIT = 0x8
constant sysIPV6_NEXTHOP (line 15) | sysIPV6_NEXTHOP = 0x9
constant sysIPV6_FLOWINFO (line 16) | sysIPV6_FLOWINFO = 0xb
constant sysIPV6_UNICAST_HOPS (line 18) | sysIPV6_UNICAST_HOPS = 0x10
constant sysIPV6_MULTICAST_IF (line 19) | sysIPV6_MULTICAST_IF = 0x11
constant sysIPV6_MULTICAST_HOPS (line 20) | sysIPV6_MULTICAST_HOPS = 0x12
constant sysIPV6_MULTICAST_LOOP (line 21) | sysIPV6_MULTICAST_LOOP = 0x13
constant sysIPV6_ADD_MEMBERSHIP (line 22) | sysIPV6_ADD_MEMBERSHIP = 0x14
constant sysIPV6_DROP_MEMBERSHIP (line 23) | sysIPV6_DROP_MEMBERSHIP = 0x15
constant sysMCAST_JOIN_GROUP (line 24) | sysMCAST_JOIN_GROUP = 0x2a
constant sysMCAST_LEAVE_GROUP (line 25) | sysMCAST_LEAVE_GROUP = 0x2d
constant sysMCAST_JOIN_SOURCE_GROUP (line 26) | sysMCAST_JOIN_SOURCE_GROUP = 0x2e
constant sysMCAST_LEAVE_SOURCE_GROUP (line 27) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2f
constant sysMCAST_BLOCK_SOURCE (line 28) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 29) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_MSFILTER (line 30) | sysMCAST_MSFILTER = 0x30
constant sysIPV6_ROUTER_ALERT (line 31) | sysIPV6_ROUTER_ALERT = 0x16
constant sysIPV6_MTU_DISCOVER (line 32) | sysIPV6_MTU_DISCOVER = 0x17
constant sysIPV6_MTU (line 33) | sysIPV6_MTU = 0x18
constant sysIPV6_RECVERR (line 34) | sysIPV6_RECVERR = 0x19
constant sysIPV6_V6ONLY (line 35) | sysIPV6_V6ONLY = 0x1a
constant sysIPV6_JOIN_ANYCAST (line 36) | sysIPV6_JOIN_ANYCAST = 0x1b
constant sysIPV6_LEAVE_ANYCAST (line 37) | sysIPV6_LEAVE_ANYCAST = 0x1c
constant sysIPV6_FLOWLABEL_MGR (line 39) | sysIPV6_FLOWLABEL_MGR = 0x20
constant sysIPV6_FLOWINFO_SEND (line 40) | sysIPV6_FLOWINFO_SEND = 0x21
constant sysIPV6_IPSEC_POLICY (line 42) | sysIPV6_IPSEC_POLICY = 0x22
constant sysIPV6_XFRM_POLICY (line 43) | sysIPV6_XFRM_POLICY = 0x23
constant sysIPV6_RECVPKTINFO (line 45) | sysIPV6_RECVPKTINFO = 0x31
constant sysIPV6_PKTINFO (line 46) | sysIPV6_PKTINFO = 0x32
constant sysIPV6_RECVHOPLIMIT (line 47) | sysIPV6_RECVHOPLIMIT = 0x33
constant sysIPV6_HOPLIMIT (line 48) | sysIPV6_HOPLIMIT = 0x34
constant sysIPV6_RECVHOPOPTS (line 49) | sysIPV6_RECVHOPOPTS = 0x35
constant sysIPV6_HOPOPTS (line 50) | sysIPV6_HOPOPTS = 0x36
constant sysIPV6_RTHDRDSTOPTS (line 51) | sysIPV6_RTHDRDSTOPTS = 0x37
constant sysIPV6_RECVRTHDR (line 52) | sysIPV6_RECVRTHDR = 0x38
constant sysIPV6_RTHDR (line 53) | sysIPV6_RTHDR = 0x39
constant sysIPV6_RECVDSTOPTS (line 54) | sysIPV6_RECVDSTOPTS = 0x3a
constant sysIPV6_DSTOPTS (line 55) | sysIPV6_DSTOPTS = 0x3b
constant sysIPV6_RECVPATHMTU (line 56) | sysIPV6_RECVPATHMTU = 0x3c
constant sysIPV6_PATHMTU (line 57) | sysIPV6_PATHMTU = 0x3d
constant sysIPV6_DONTFRAG (line 58) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_RECVTCLASS (line 60) | sysIPV6_RECVTCLASS = 0x42
constant sysIPV6_TCLASS (line 61) | sysIPV6_TCLASS = 0x43
constant sysIPV6_ADDR_PREFERENCES (line 63) | sysIPV6_ADDR_PREFERENCES = 0x48
constant sysIPV6_PREFER_SRC_TMP (line 65) | sysIPV6_PREFER_SRC_TMP = 0x1
constant sysIPV6_PREFER_SRC_PUBLIC (line 66) | sysIPV6_PREFER_SRC_PUBLIC = 0x2
constant sysIPV6_PREFER_SRC_PUBTMP_DEFAULT (line 67) | sysIPV6_PREFER_SRC_PUBTMP_DEFAULT = 0x100
constant sysIPV6_PREFER_SRC_COA (line 68) | sysIPV6_PREFER_SRC_COA = 0x4
constant sysIPV6_PREFER_SRC_HOME (line 69) | sysIPV6_PREFER_SRC_HOME = 0x400
constant sysIPV6_PREFER_SRC_CGA (line 70) | sysIPV6_PREFER_SRC_CGA = 0x8
constant sysIPV6_PREFER_SRC_NONCGA (line 71) | sysIPV6_PREFER_SRC_NONCGA = 0x800
constant sysIPV6_MINHOPCOUNT (line 73) | sysIPV6_MINHOPCOUNT = 0x49
constant sysIPV6_ORIGDSTADDR (line 75) | sysIPV6_ORIGDSTADDR = 0x4a
constant sysIPV6_RECVORIGDSTADDR (line 76) | sysIPV6_RECVORIGDSTADDR = 0x4a
constant sysIPV6_TRANSPARENT (line 77) | sysIPV6_TRANSPARENT = 0x4b
constant sysIPV6_UNICAST_IF (line 78) | sysIPV6_UNICAST_IF = 0x4c
constant sysICMPV6_FILTER (line 80) | sysICMPV6_FILTER = 0x1
constant sysICMPV6_FILTER_BLOCK (line 82) | sysICMPV6_FILTER_BLOCK = 0x1
constant sysICMPV6_FILTER_PASS (line 83) | sysICMPV6_FILTER_PASS = 0x2
constant sysICMPV6_FILTER_BLOCKOTHERS (line 84) | sysICMPV6_FILTER_BLOCKOTHERS = 0x3
constant sysICMPV6_FILTER_PASSONLY (line 85) | sysICMPV6_FILTER_PASSONLY = 0x4
constant sysSOL_SOCKET (line 87) | sysSOL_SOCKET = 0x1
constant sysSO_ATTACH_FILTER (line 88) | sysSO_ATTACH_FILTER = 0x1a
constant sizeofKernelSockaddrStorage (line 90) | sizeofKernelSockaddrStorage = 0x80
constant sizeofSockaddrInet6 (line 91) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 92) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 93) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6FlowlabelReq (line 94) | sizeofIPv6FlowlabelReq = 0x20
constant sizeofIPv6Mreq (line 96) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 97) | sizeofGroupReq = 0x88
constant sizeofGroupSourceReq (line 98) | sizeofGroupSourceReq = 0x108
constant sizeofICMPv6Filter (line 100) | sizeofICMPv6Filter = 0x20
constant sizeofSockFprog (line 102) | sizeofSockFprog = 0x10
type kernelSockaddrStorage (line 105) | type kernelSockaddrStorage struct
type sockaddrInet6 (line 110) | type sockaddrInet6 struct
type inet6Pktinfo (line 118) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 123) | type ipv6Mtuinfo struct
type ipv6FlowlabelReq (line 128) | type ipv6FlowlabelReq struct
type ipv6Mreq (line 139) | type ipv6Mreq struct
type groupReq (line 144) | type groupReq struct
type groupSourceReq (line 150) | type groupSourceReq struct
type icmpv6Filter (line 157) | type icmpv6Filter struct
type sockFProg (line 161) | type sockFProg struct
type sockFilter (line 167) | type sockFilter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_netbsd.go
constant sysIPV6_UNICAST_HOPS (line 7) | sysIPV6_UNICAST_HOPS = 0x4
constant sysIPV6_MULTICAST_IF (line 8) | sysIPV6_MULTICAST_IF = 0x9
constant sysIPV6_MULTICAST_HOPS (line 9) | sysIPV6_MULTICAST_HOPS = 0xa
constant sysIPV6_MULTICAST_LOOP (line 10) | sysIPV6_MULTICAST_LOOP = 0xb
constant sysIPV6_JOIN_GROUP (line 11) | sysIPV6_JOIN_GROUP = 0xc
constant sysIPV6_LEAVE_GROUP (line 12) | sysIPV6_LEAVE_GROUP = 0xd
constant sysIPV6_PORTRANGE (line 13) | sysIPV6_PORTRANGE = 0xe
constant sysICMP6_FILTER (line 14) | sysICMP6_FILTER = 0x12
constant sysIPV6_CHECKSUM (line 16) | sysIPV6_CHECKSUM = 0x1a
constant sysIPV6_V6ONLY (line 17) | sysIPV6_V6ONLY = 0x1b
constant sysIPV6_IPSEC_POLICY (line 19) | sysIPV6_IPSEC_POLICY = 0x1c
constant sysIPV6_RTHDRDSTOPTS (line 21) | sysIPV6_RTHDRDSTOPTS = 0x23
constant sysIPV6_RECVPKTINFO (line 23) | sysIPV6_RECVPKTINFO = 0x24
constant sysIPV6_RECVHOPLIMIT (line 24) | sysIPV6_RECVHOPLIMIT = 0x25
constant sysIPV6_RECVRTHDR (line 25) | sysIPV6_RECVRTHDR = 0x26
constant sysIPV6_RECVHOPOPTS (line 26) | sysIPV6_RECVHOPOPTS = 0x27
constant sysIPV6_RECVDSTOPTS (line 27) | sysIPV6_RECVDSTOPTS = 0x28
constant sysIPV6_USE_MIN_MTU (line 29) | sysIPV6_USE_MIN_MTU = 0x2a
constant sysIPV6_RECVPATHMTU (line 30) | sysIPV6_RECVPATHMTU = 0x2b
constant sysIPV6_PATHMTU (line 31) | sysIPV6_PATHMTU = 0x2c
constant sysIPV6_PKTINFO (line 33) | sysIPV6_PKTINFO = 0x2e
constant sysIPV6_HOPLIMIT (line 34) | sysIPV6_HOPLIMIT = 0x2f
constant sysIPV6_NEXTHOP (line 35) | sysIPV6_NEXTHOP = 0x30
constant sysIPV6_HOPOPTS (line 36) | sysIPV6_HOPOPTS = 0x31
constant sysIPV6_DSTOPTS (line 37) | sysIPV6_DSTOPTS = 0x32
constant sysIPV6_RTHDR (line 38) | sysIPV6_RTHDR = 0x33
constant sysIPV6_RECVTCLASS (line 40) | sysIPV6_RECVTCLASS = 0x39
constant sysIPV6_TCLASS (line 42) | sysIPV6_TCLASS = 0x3d
constant sysIPV6_DONTFRAG (line 43) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_PORTRANGE_DEFAULT (line 45) | sysIPV6_PORTRANGE_DEFAULT = 0x0
constant sysIPV6_PORTRANGE_HIGH (line 46) | sysIPV6_PORTRANGE_HIGH = 0x1
constant sysIPV6_PORTRANGE_LOW (line 47) | sysIPV6_PORTRANGE_LOW = 0x2
constant sizeofSockaddrInet6 (line 49) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 50) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 51) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6Mreq (line 53) | sizeofIPv6Mreq = 0x14
constant sizeofICMPv6Filter (line 55) | sizeofICMPv6Filter = 0x20
type sockaddrInet6 (line 58) | type sockaddrInet6 struct
type inet6Pktinfo (line 67) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 72) | type ipv6Mtuinfo struct
type ipv6Mreq (line 77) | type ipv6Mreq struct
type icmpv6Filter (line 82) | type icmpv6Filter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_openbsd.go
constant sysIPV6_UNICAST_HOPS (line 7) | sysIPV6_UNICAST_HOPS = 0x4
constant sysIPV6_MULTICAST_IF (line 8) | sysIPV6_MULTICAST_IF = 0x9
constant sysIPV6_MULTICAST_HOPS (line 9) | sysIPV6_MULTICAST_HOPS = 0xa
constant sysIPV6_MULTICAST_LOOP (line 10) | sysIPV6_MULTICAST_LOOP = 0xb
constant sysIPV6_JOIN_GROUP (line 11) | sysIPV6_JOIN_GROUP = 0xc
constant sysIPV6_LEAVE_GROUP (line 12) | sysIPV6_LEAVE_GROUP = 0xd
constant sysIPV6_PORTRANGE (line 13) | sysIPV6_PORTRANGE = 0xe
constant sysICMP6_FILTER (line 14) | sysICMP6_FILTER = 0x12
constant sysIPV6_CHECKSUM (line 16) | sysIPV6_CHECKSUM = 0x1a
constant sysIPV6_V6ONLY (line 17) | sysIPV6_V6ONLY = 0x1b
constant sysIPV6_RTHDRDSTOPTS (line 19) | sysIPV6_RTHDRDSTOPTS = 0x23
constant sysIPV6_RECVPKTINFO (line 21) | sysIPV6_RECVPKTINFO = 0x24
constant sysIPV6_RECVHOPLIMIT (line 22) | sysIPV6_RECVHOPLIMIT = 0x25
constant sysIPV6_RECVRTHDR (line 23) | sysIPV6_RECVRTHDR = 0x26
constant sysIPV6_RECVHOPOPTS (line 24) | sysIPV6_RECVHOPOPTS = 0x27
constant sysIPV6_RECVDSTOPTS (line 25) | sysIPV6_RECVDSTOPTS = 0x28
constant sysIPV6_USE_MIN_MTU (line 27) | sysIPV6_USE_MIN_MTU = 0x2a
constant sysIPV6_RECVPATHMTU (line 28) | sysIPV6_RECVPATHMTU = 0x2b
constant sysIPV6_PATHMTU (line 30) | sysIPV6_PATHMTU = 0x2c
constant sysIPV6_PKTINFO (line 32) | sysIPV6_PKTINFO = 0x2e
constant sysIPV6_HOPLIMIT (line 33) | sysIPV6_HOPLIMIT = 0x2f
constant sysIPV6_NEXTHOP (line 34) | sysIPV6_NEXTHOP = 0x30
constant sysIPV6_HOPOPTS (line 35) | sysIPV6_HOPOPTS = 0x31
constant sysIPV6_DSTOPTS (line 36) | sysIPV6_DSTOPTS = 0x32
constant sysIPV6_RTHDR (line 37) | sysIPV6_RTHDR = 0x33
constant sysIPV6_AUTH_LEVEL (line 39) | sysIPV6_AUTH_LEVEL = 0x35
constant sysIPV6_ESP_TRANS_LEVEL (line 40) | sysIPV6_ESP_TRANS_LEVEL = 0x36
constant sysIPV6_ESP_NETWORK_LEVEL (line 41) | sysIPV6_ESP_NETWORK_LEVEL = 0x37
constant sysIPSEC6_OUTSA (line 42) | sysIPSEC6_OUTSA = 0x38
constant sysIPV6_RECVTCLASS (line 43) | sysIPV6_RECVTCLASS = 0x39
constant sysIPV6_AUTOFLOWLABEL (line 45) | sysIPV6_AUTOFLOWLABEL = 0x3b
constant sysIPV6_IPCOMP_LEVEL (line 46) | sysIPV6_IPCOMP_LEVEL = 0x3c
constant sysIPV6_TCLASS (line 48) | sysIPV6_TCLASS = 0x3d
constant sysIPV6_DONTFRAG (line 49) | sysIPV6_DONTFRAG = 0x3e
constant sysIPV6_PIPEX (line 50) | sysIPV6_PIPEX = 0x3f
constant sysIPV6_RTABLE (line 52) | sysIPV6_RTABLE = 0x1021
constant sysIPV6_PORTRANGE_DEFAULT (line 54) | sysIPV6_PORTRANGE_DEFAULT = 0x0
constant sysIPV6_PORTRANGE_HIGH (line 55) | sysIPV6_PORTRANGE_HIGH = 0x1
constant sysIPV6_PORTRANGE_LOW (line 56) | sysIPV6_PORTRANGE_LOW = 0x2
constant sizeofSockaddrInet6 (line 58) | sizeofSockaddrInet6 = 0x1c
constant sizeofInet6Pktinfo (line 59) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 60) | sizeofIPv6Mtuinfo = 0x20
constant sizeofIPv6Mreq (line 62) | sizeofIPv6Mreq = 0x14
constant sizeofICMPv6Filter (line 64) | sizeofICMPv6Filter = 0x20
type sockaddrInet6 (line 67) | type sockaddrInet6 struct
type inet6Pktinfo (line 76) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 81) | type ipv6Mtuinfo struct
type ipv6Mreq (line 86) | type ipv6Mreq struct
type icmpv6Filter (line 91) | type icmpv6Filter struct
FILE: vendor/golang.org/x/net/ipv6/zsys_solaris.go
constant sysIPV6_UNICAST_HOPS (line 7) | sysIPV6_UNICAST_HOPS = 0x5
constant sysIPV6_MULTICAST_IF (line 8) | sysIPV6_MULTICAST_IF = 0x6
constant sysIPV6_MULTICAST_HOPS (line 9) | sysIPV6_MULTICAST_HOPS = 0x7
constant sysIPV6_MULTICAST_LOOP (line 10) | sysIPV6_MULTICAST_LOOP = 0x8
constant sysIPV6_JOIN_GROUP (line 11) | sysIPV6_JOIN_GROUP = 0x9
constant sysIPV6_LEAVE_GROUP (line 12) | sysIPV6_LEAVE_GROUP = 0xa
constant sysIPV6_PKTINFO (line 14) | sysIPV6_PKTINFO = 0xb
constant sysIPV6_HOPLIMIT (line 16) | sysIPV6_HOPLIMIT = 0xc
constant sysIPV6_NEXTHOP (line 17) | sysIPV6_NEXTHOP = 0xd
constant sysIPV6_HOPOPTS (line 18) | sysIPV6_HOPOPTS = 0xe
constant sysIPV6_DSTOPTS (line 19) | sysIPV6_DSTOPTS = 0xf
constant sysIPV6_RTHDR (line 21) | sysIPV6_RTHDR = 0x10
constant sysIPV6_RTHDRDSTOPTS (line 22) | sysIPV6_RTHDRDSTOPTS = 0x11
constant sysIPV6_RECVPKTINFO (line 24) | sysIPV6_RECVPKTINFO = 0x12
constant sysIPV6_RECVHOPLIMIT (line 25) | sysIPV6_RECVHOPLIMIT = 0x13
constant sysIPV6_RECVHOPOPTS (line 26) | sysIPV6_RECVHOPOPTS = 0x14
constant sysIPV6_RECVRTHDR (line 28) | sysIPV6_RECVRTHDR = 0x16
constant sysIPV6_RECVRTHDRDSTOPTS (line 30) | sysIPV6_RECVRTHDRDSTOPTS = 0x17
constant sysIPV6_CHECKSUM (line 32) | sysIPV6_CHECKSUM = 0x18
constant sysIPV6_RECVTCLASS (line 33) | sysIPV6_RECVTCLASS = 0x19
constant sysIPV6_USE_MIN_MTU (line 34) | sysIPV6_USE_MIN_MTU = 0x20
constant sysIPV6_DONTFRAG (line 35) | sysIPV6_DONTFRAG = 0x21
constant sysIPV6_SEC_OPT (line 36) | sysIPV6_SEC_OPT = 0x22
constant sysIPV6_SRC_PREFERENCES (line 37) | sysIPV6_SRC_PREFERENCES = 0x23
constant sysIPV6_RECVPATHMTU (line 38) | sysIPV6_RECVPATHMTU = 0x24
constant sysIPV6_PATHMTU (line 39) | sysIPV6_PATHMTU = 0x25
constant sysIPV6_TCLASS (line 40) | sysIPV6_TCLASS = 0x26
constant sysIPV6_V6ONLY (line 41) | sysIPV6_V6ONLY = 0x27
constant sysIPV6_RECVDSTOPTS (line 43) | sysIPV6_RECVDSTOPTS = 0x28
constant sysMCAST_JOIN_GROUP (line 45) | sysMCAST_JOIN_GROUP = 0x29
constant sysMCAST_LEAVE_GROUP (line 46) | sysMCAST_LEAVE_GROUP = 0x2a
constant sysMCAST_BLOCK_SOURCE (line 47) | sysMCAST_BLOCK_SOURCE = 0x2b
constant sysMCAST_UNBLOCK_SOURCE (line 48) | sysMCAST_UNBLOCK_SOURCE = 0x2c
constant sysMCAST_JOIN_SOURCE_GROUP (line 49) | sysMCAST_JOIN_SOURCE_GROUP = 0x2d
constant sysMCAST_LEAVE_SOURCE_GROUP (line 50) | sysMCAST_LEAVE_SOURCE_GROUP = 0x2e
constant sysIPV6_PREFER_SRC_HOME (line 52) | sysIPV6_PREFER_SRC_HOME = 0x1
constant sysIPV6_PREFER_SRC_COA (line 53) | sysIPV6_PREFER_SRC_COA = 0x2
constant sysIPV6_PREFER_SRC_PUBLIC (line 54) | sysIPV6_PREFER_SRC_PUBLIC = 0x4
constant sysIPV6_PREFER_SRC_TMP (line 55) | sysIPV6_PREFER_SRC_TMP = 0x8
constant sysIPV6_PREFER_SRC_NONCGA (line 56) | sysIPV6_PREFER_SRC_NONCGA = 0x10
constant sysIPV6_PREFER_SRC_CGA (line 57) | sysIPV6_PREFER_SRC_CGA = 0x20
constant sysIPV6_PREFER_SRC_MIPMASK (line 59) | sysIPV6_PREFER_SRC_MIPMASK = 0x3
constant sysIPV6_PREFER_SRC_MIPDEFAULT (line 60) | sysIPV6_PREFER_SRC_MIPDEFAULT = 0x1
constant sysIPV6_PREFER_SRC_TMPMASK (line 61) | sysIPV6_PREFER_SRC_TMPMASK = 0xc
constant sysIPV6_PREFER_SRC_TMPDEFAULT (line 62) | sysIPV6_PREFER_SRC_TMPDEFAULT = 0x4
constant sysIPV6_PREFER_SRC_CGAMASK (line 63) | sysIPV6_PREFER_SRC_CGAMASK = 0x30
constant sysIPV6_PREFER_SRC_CGADEFAULT (line 64) | sysIPV6_PREFER_SRC_CGADEFAULT = 0x10
constant sysIPV6_PREFER_SRC_MASK (line 66) | sysIPV6_PREFER_SRC_MASK = 0x3f
constant sysIPV6_PREFER_SRC_DEFAULT (line 68) | sysIPV6_PREFER_SRC_DEFAULT = 0x15
constant sysIPV6_BOUND_IF (line 70) | sysIPV6_BOUND_IF = 0x41
constant sysIPV6_UNSPEC_SRC (line 71) | sysIPV6_UNSPEC_SRC = 0x42
constant sysICMP6_FILTER (line 73) | sysICMP6_FILTER = 0x1
constant sizeofSockaddrStorage (line 75) | sizeofSockaddrStorage = 0x100
constant sizeofSockaddrInet6 (line 76) | sizeofSockaddrInet6 = 0x20
constant sizeofInet6Pktinfo (line 77) | sizeofInet6Pktinfo = 0x14
constant sizeofIPv6Mtuinfo (line 78) | sizeofIPv6Mtuinfo = 0x24
constant sizeofIPv6Mreq (line 80) | sizeofIPv6Mreq = 0x14
constant sizeofGroupReq (line 81) | sizeofGroupReq = 0x104
constant sizeofGroupSourceReq (line 82) | sizeofGroupSourceReq = 0x204
constant sizeofICMPv6Filter (line 84) | sizeofICMPv6Filter = 0x20
type sockaddrStorage (line 87) | type sockaddrStorage struct
type sockaddrInet6 (line 94) | type sockaddrInet6 struct
type inet6Pktinfo (line 103) | type inet6Pktinfo struct
type ipv6Mtuinfo (line 108) | type ipv6Mtuinfo struct
type ipv6Mreq (line 113) | type ipv6Mreq struct
type groupReq (line 118) | type groupReq struct
type groupSourceReq (line 123) | type groupSourceReq struct
type icmpv6Filter (line 129) | type icmpv6Filter struct
FILE: vendor/golang.org/x/net/lex/httplex/httplex.go
function IsTokenRune (line 100) | func IsTokenRune(r rune) bool {
function isNotToken (line 105) | func isNotToken(r rune) bool {
function HeaderValuesContainsToken (line 111) | func HeaderValuesContainsToken(values []string, token string) bool {
function isOWS (line 122) | func isOWS(b byte) bool { return b == ' ' || b == '\t' }
function trimOWS (line 126) | func trimOWS(x string) string {
function headerValueContainsToken (line 144) | func headerValueContainsToken(v string, token string) bool {
function lowerASCII (line 153) | func lowerASCII(b byte) byte {
function tokenEqual (line 161) | func tokenEqual(t1, t2 string) bool {
function isLWS (line 180) | func isLWS(b byte) bool { return b == ' ' || b == '\t' }
function isCTL (line 186) | func isCTL(b byte) bool {
function ValidHeaderFieldName (line 201) | func ValidHeaderFieldName(v string) bool {
function ValidHostHeader (line 214) | func ValidHostHeader(h string) bool {
function ValidHeaderFieldValue (line 307) | func ValidHeaderFieldValue(v string) bool {
function isASCII (line 317) | func isASCII(s string) bool {
function PunycodeHostPort (line 328) | func PunycodeHostPort(v string) (string, error) {
FILE: vendor/golang.org/x/net/lex/httplex/httplex_test.go
function isChar (line 11) | func isChar(c rune) bool { return c <= 127 }
function isCtl (line 13) | func isCtl(c rune) bool { return c <= 31 || c == 127 }
function isSeparator (line 15) | func isSeparator(c rune) bool {
function TestIsToken (line 23) | func TestIsToken(t *testing.T) {
function TestHeaderValuesContainsToken (line 33) | func TestHeaderValuesContainsToken(t *testing.T) {
function TestPunycodeHostPort (line 103) | func TestPunycodeHostPort(t *testing.T) {
FILE: vendor/golang.org/x/net/lif/address.go
type Addr (line 15) | type Addr interface
type Inet4Addr (line 21) | type Inet4Addr struct
method Family (line 27) | func (a *Inet4Addr) Family() int { return sysAF_INET }
type Inet6Addr (line 30) | type Inet6Addr struct
method Family (line 37) | func (a *Inet6Addr) Family() int { return sysAF_INET6 }
function Addrs (line 43) | func Addrs(af int, name string) ([]Addr, error) {
function parseLinkAddr (line 89) | func parseLinkAddr(b []byte) ([]byte, error) {
FILE: vendor/golang.org/x/net/lif/address_test.go
type addrFamily (line 14) | type addrFamily
method String (line 16) | func (af addrFamily) String() string {
constant hexDigit (line 29) | hexDigit = "0123456789abcdef"
type llAddr (line 31) | type llAddr
method String (line 33) | func (a llAddr) String() string {
type ipAddr (line 48) | type ipAddr
method String (line 50) | func (a ipAddr) String() string {
method String (line 67) | func (a *Inet4Addr) String() string {
method String (line 71) | func (a *Inet6Addr) String() string {
type addrPack (line 75) | type addrPack struct
function addrPacks (line 80) | func addrPacks() ([]addrPack, error) {
function TestAddrs (line 94) | func TestAddrs(t *testing.T) {
FILE: vendor/golang.org/x/net/lif/binary.go
type binaryByteOrder (line 20) | type binaryByteOrder interface
type binaryLittleEndian (line 29) | type binaryLittleEndian struct
method Uint16 (line 31) | func (binaryLittleEndian) Uint16(b []byte) uint16 {
method PutUint16 (line 36) | func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
method Uint32 (line 42) | func (binaryLittleEndian) Uint32(b []byte) uint32 {
method PutUint32 (line 47) | func (binaryLittleEndian) PutUint32(b []byte, v uint32) {
method Uint64 (line 55) | func (binaryLittleEndian) Uint64(b []byte) uint64 {
method PutUint64 (line 61) | func (binaryLittleEndian) PutUint64(b []byte, v uint64) {
type binaryBigEndian (line 73) | type binaryBigEndian struct
method Uint16 (line 75) | func (binaryBigEndian) Uint16(b []byte) uint16 {
method PutUint16 (line 80) | func (binaryBigEndian) PutUint16(b []byte, v uint16) {
method Uint32 (line 86) | func (binaryBigEndian) Uint32(b []byte) uint32 {
method PutUint32 (line 91) | func (binaryBigEndian) PutUint32(b []byte, v uint32) {
method Uint64 (line 99) | func (binaryBigEndian) Uint64(b []byte) uint64 {
method PutUint64 (line 105) | func (binaryBigEndian) PutUint64(b []byte, v uint64) {
FILE: vendor/golang.org/x/net/lif/defs_solaris.go
constant sysAF_UNSPEC (line 22) | sysAF_UNSPEC = C.AF_UNSPEC
constant sysAF_INET (line 23) | sysAF_INET = C.AF_INET
constant sysAF_INET6 (line 24) | sysAF_INET6 = C.AF_INET6
constant sysSOCK_DGRAM (line 26) | sysSOCK_DGRAM = C.SOCK_DGRAM
type sockaddrStorage (line 29) | type sockaddrStorage
constant sysLIFC_NOXMIT (line 32) | sysLIFC_NOXMIT = C.LIFC_NOXMIT
constant sysLIFC_EXTERNAL_SOURCE (line 33) | sysLIFC_EXTERNAL_SOURCE = C.LIFC_EXTERNAL_SOURCE
constant sysLIFC_TEMPORARY (line 34) | sysLIFC_TEMPORARY = C.LIFC_TEMPORARY
constant sysLIFC_ALLZONES (line 35) | sysLIFC_ALLZONES = C.LIFC_ALLZONES
constant sysLIFC_UNDER_IPMP (line 36) | sysLIFC_UNDER_IPMP = C.LIFC_UNDER_IPMP
constant sysLIFC_ENABLED (line 37) | sysLIFC_ENABLED = C.LIFC_ENABLED
constant sysSIOCGLIFADDR (line 39) | sysSIOCGLIFADDR = C.SIOCGLIFADDR
constant sysSIOCGLIFDSTADDR (line 40) | sysSIOCGLIFDSTADDR = C.SIOCGLIFDSTADDR
constant sysSIOCGLIFFLAGS (line 41) | sysSIOCGLIFFLAGS = C.SIOCGLIFFLAGS
constant sysSIOCGLIFMTU (line 42) | sysSIOCGLIFMTU = C.SIOCGLIFMTU
constant sysSIOCGLIFNETMASK (line 43) | sysSIOCGLIFNETMASK = C.SIOCGLIFNETMASK
constant sysSIOCGLIFMETRIC (line 44) | sysSIOCGLIFMETRIC = C.SIOCGLIFMETRIC
constant sysSIOCGLIFNUM (line 45) | sysSIOCGLIFNUM = C.SIOCGLIFNUM
constant sysSIOCGLIFINDEX (line 46) | sysSIOCGLIFINDEX = C.SIOCGLIFINDEX
constant sysSIOCGLIFSUBNET (line 47) | sysSIOCGLIFSUBNET = C.SIOCGLIFSUBNET
constant sysSIOCGLIFLNKINFO (line 48) | sysSIOCGLIFLNKINFO = C.SIOCGLIFLNKINFO
constant sysSIOCGLIFCONF (line 49) | sysSIOCGLIFCONF = C.SIOCGLIFCONF
constant sysSIOCGLIFHWADDR (line 50) | sysSIOCGLIFHWADDR = C.SIOCGLIFHWADDR
constant sysIFF_UP (line 54) | sysIFF_UP = C.IFF_UP
constant sysIFF_BROADCAST (line 55) | sysIFF_BROADCAST = C.IFF_BROADCAST
constant sysIFF_DEBUG (line 56) | sysIFF_DEBUG = C.IFF_DEBUG
constant sysIFF_LOOPBACK (line 57) | sysIFF_LOOPBACK = C.IFF_LOOPBACK
constant sysIFF_POINTOPOINT (line 58) | sysIFF_POINTOPOINT = C.IFF_POINTOPOINT
constant sysIFF_NOTRAILERS (line 59) | sysIFF_NOTRAILERS = C.IFF_NOTRAILERS
constant sysIFF_RUNNING (line 60) | sysIFF_RUNNING = C.IFF_RUNNING
constant sysIFF_NOARP (line 61) | sysIFF_NOARP = C.IFF_NOARP
constant sysIFF_PROMISC (line 62) | sysIFF_PROMISC = C.IFF_PROMISC
constant sysIFF_ALLMULTI (line 63) | sysIFF_ALLMULTI = C.IFF_ALLMULTI
constant sysIFF_INTELLIGENT (line 64) | sysIFF_INTELLIGENT = C.IFF_INTELLIGENT
constant sysIFF_MULTICAST (line 65) | sysIFF_MULTICAST = C.IFF_MULTICAST
constant sysIFF_MULTI_BCAST (line 66) | sysIFF_MULTI_BCAST = C.IFF_MULTI_BCAST
constant sysIFF_UNNUMBERED (line 67) | sysIFF_UNNUMBERED = C.IFF_UNNUMBERED
constant sysIFF_PRIVATE (line 68) | sysIFF_PRIVATE = C.IFF_PRIVATE
constant sizeofLifnum (line 72) | sizeofLifnum = C.sizeof_struct_lifnum
constant sizeofLifreq (line 73) | sizeofLifreq = C.sizeof_struct_lifreq
constant sizeofLifconf (line 74) | sizeofLifconf = C.sizeof_struct_lifconf
constant sizeofLifIfinfoReq (line 75) | sizeofLifIfinfoReq = C.sizeof_struct_lif_ifinfo_req
type lifnum (line 78) | type lifnum
type lifreq (line 80) | type lifreq
type lifconf (line 82) | type lifconf
type lifIfinfoReq (line 84) | type lifIfinfoReq
constant sysIFT_IPV4 (line 87) | sysIFT_IPV4 = C.IFT_IPV4
constant sysIFT_IPV6 (line 88) | sysIFT_IPV6 = C.IFT_IPV6
constant sysIFT_6TO4 (line 89) | sysIFT_6TO4 = C.IFT_6TO4
FILE: vendor/golang.org/x/net/lif/lif.go
type endpoint (line 15) | type endpoint struct
method close (line 20) | func (ep *endpoint) close() error {
function newEndpoints (line 24) | func newEndpoints(af int) ([]endpoint, error) {
FILE: vendor/golang.org/x/net/lif/link.go
type Link (line 18) | type Link struct
method fetch (line 27) | func (ll *Link) fetch(s uintptr) {
function Links (line 58) | func Links(af int, name string) ([]Link, error) {
function links (line 71) | func links(eps []endpoint, name string) ([]Link, error) {
function isDupLink (line 119) | func isDupLink(lls []Link, name string) bool {
FILE: vendor/golang.org/x/net/lif/link_test.go
method String (line 14) | func (ll *Link) String() string {
type linkPack (line 18) | type linkPack struct
function linkPacks (line 23) | func linkPacks() ([]linkPack, error) {
function TestLinks (line 37) | func TestLinks(t *testing.T) {
FILE: vendor/golang.org/x/net/lif/sys.go
function init (line 13) | func init() {
FILE: vendor/golang.org/x/net/lif/syscall.go
function sysvicall6 (line 20) | func sysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (uintptr, u...
function ioctl (line 22) | func ioctl(s, ioc uintptr, arg unsafe.Pointer) error {
FILE: vendor/golang.org/x/net/lif/zsys_solaris_amd64.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_INET6 (line 9) | sysAF_INET6 = 0x1a
constant sysSOCK_DGRAM (line 11) | sysSOCK_DGRAM = 0x1
type sockaddrStorage (line 14) | type sockaddrStorage struct
constant sysLIFC_NOXMIT (line 22) | sysLIFC_NOXMIT = 0x1
constant sysLIFC_EXTERNAL_SOURCE (line 23) | sysLIFC_EXTERNAL_SOURCE = 0x2
constant sysLIFC_TEMPORARY (line 24) | sysLIFC_TEMPORARY = 0x4
constant sysLIFC_ALLZONES (line 25) | sysLIFC_ALLZONES = 0x8
constant sysLIFC_UNDER_IPMP (line 26) | sysLIFC_UNDER_IPMP = 0x10
constant sysLIFC_ENABLED (line 27) | sysLIFC_ENABLED = 0x20
constant sysSIOCGLIFADDR (line 29) | sysSIOCGLIFADDR = -0x3f87968f
constant sysSIOCGLIFDSTADDR (line 30) | sysSIOCGLIFDSTADDR = -0x3f87968d
constant sysSIOCGLIFFLAGS (line 31) | sysSIOCGLIFFLAGS = -0x3f87968b
constant sysSIOCGLIFMTU (line 32) | sysSIOCGLIFMTU = -0x3f879686
constant sysSIOCGLIFNETMASK (line 33) | sysSIOCGLIFNETMASK = -0x3f879683
constant sysSIOCGLIFMETRIC (line 34) | sysSIOCGLIFMETRIC = -0x3f879681
constant sysSIOCGLIFNUM (line 35) | sysSIOCGLIFNUM = -0x3ff3967e
constant sysSIOCGLIFINDEX (line 36) | sysSIOCGLIFINDEX = -0x3f87967b
constant sysSIOCGLIFSUBNET (line 37) | sysSIOCGLIFSUBNET = -0x3f879676
constant sysSIOCGLIFLNKINFO (line 38) | sysSIOCGLIFLNKINFO = -0x3f879674
constant sysSIOCGLIFCONF (line 39) | sysSIOCGLIFCONF = -0x3fef965b
constant sysSIOCGLIFHWADDR (line 40) | sysSIOCGLIFHWADDR = -0x3f879640
constant sysIFF_UP (line 44) | sysIFF_UP = 0x1
constant sysIFF_BROADCAST (line 45) | sysIFF_BROADCAST = 0x2
constant sysIFF_DEBUG (line 46) | sysIFF_DEBUG = 0x4
constant sysIFF_LOOPBACK (line 47) | sysIFF_LOOPBACK = 0x8
constant sysIFF_POINTOPOINT (line 48) | sysIFF_POINTOPOINT = 0x10
constant sysIFF_NOTRAILERS (line 49) | sysIFF_NOTRAILERS = 0x20
constant sysIFF_RUNNING (line 50) | sysIFF_RUNNING = 0x40
constant sysIFF_NOARP (line 51) | sysIFF_NOARP = 0x80
constant sysIFF_PROMISC (line 52) | sysIFF_PROMISC = 0x100
constant sysIFF_ALLMULTI (line 53) | sysIFF_ALLMULTI = 0x200
constant sysIFF_INTELLIGENT (line 54) | sysIFF_INTELLIGENT = 0x400
constant sysIFF_MULTICAST (line 55) | sysIFF_MULTICAST = 0x800
constant sysIFF_MULTI_BCAST (line 56) | sysIFF_MULTI_BCAST = 0x1000
constant sysIFF_UNNUMBERED (line 57) | sysIFF_UNNUMBERED = 0x2000
constant sysIFF_PRIVATE (line 58) | sysIFF_PRIVATE = 0x8000
constant sizeofLifnum (line 62) | sizeofLifnum = 0xc
constant sizeofLifreq (line 63) | sizeofLifreq = 0x178
constant sizeofLifconf (line 64) | sizeofLifconf = 0x18
constant sizeofLifIfinfoReq (line 65) | sizeofLifIfinfoReq = 0x10
type lifnum (line 68) | type lifnum struct
type lifreq (line 75) | type lifreq struct
type lifconf (line 82) | type lifconf struct
type lifIfinfoReq (line 91) | type lifIfinfoReq struct
constant sysIFT_IPV4 (line 100) | sysIFT_IPV4 = 0xc8
constant sysIFT_IPV6 (line 101) | sysIFT_IPV6 = 0xc9
constant sysIFT_6TO4 (line 102) | sysIFT_6TO4 = 0xca
FILE: vendor/golang.org/x/net/nettest/conntest.go
type MakePipe (line 30) | type MakePipe
function TestConn (line 37) | func TestConn(t *testing.T, mp MakePipe) {
type connTester (line 41) | type connTester
function timeoutWrapper (line 43) | func timeoutWrapper(t *testing.T, mp MakePipe, f connTester) {
function testBasicIO (line 61) | func testBasicIO(t *testing.T, c1, c2 net.Conn) {
function testPingPong (line 94) | func testPingPong(t *testing.T, c1, c2 net.Conn) {
function testRacyRead (line 142) | func testRacyRead(t *testing.T, c1, c2 net.Conn) {
function testRacyWrite (line 170) | func testRacyWrite(t *testing.T, c1, c2 net.Conn) {
function testReadTimeout (line 197) | func testReadTimeout(t *testing.T, c1, c2 net.Conn) {
function testWriteTimeout (line 209) | func testWriteTimeout(t *testing.T, c1, c2 net.Conn) {
function testPastTimeout (line 222) | func testPastTimeout(t *testing.T, c1, c2 net.Conn) {
function testPresentTimeout (line 244) | func testPresentTimeout(t *testing.T, c1, c2 net.Conn) {
function testFutureTimeout (line 283) | func testFutureTimeout(t *testing.T, c1, c2 net.Conn) {
function testCloseTimeout (line 310) | func testCloseTimeout(t *testing.T, c1, c2 net.Conn) {
function testConcurrentMethods (line 344) | func testConcurrentMethods(t *testing.T, c1, c2 net.Conn) {
function checkForTimeoutError (line 392) | func checkForTimeoutError(t *testing.T, err error) {
function testRoundtrip (line 404) | func testRoundtrip(t *testing.T, c net.Conn) {
function resyncConn (line 425) | func resyncConn(t *testing.T, c net.Conn) {
function chunkedCopy (line 452) | func chunkedCopy(w io.Writer, r io.Reader) error {
FILE: vendor/golang.org/x/net/nettest/conntest_go16.go
function testConn (line 11) | func testConn(t *testing.T, mp MakePipe) {
FILE: vendor/golang.org/x/net/nettest/conntest_go17.go
function testConn (line 11) | func testConn(t *testing.T, mp MakePipe) {
FILE: vendor/golang.org/x/net/nettest/conntest_test.go
function TestTestConn (line 18) | func TestTestConn(t *testing.T) {
FILE: vendor/golang.org/x/net/netutil/listen.go
function LimitListener (line 16) | func LimitListener(l net.Listener, n int) net.Listener {
type limitListener (line 20) | type limitListener struct
method acquire (line 25) | func (l *limitListener) acquire() { l.sem <- struct{}{} }
method release (line 26) | func (l *limitListener) release() { <-l.sem }
method Accept (line 28) | func (l *limitListener) Accept() (net.Conn, error) {
type limitListenerConn (line 38) | type limitListenerConn struct
method Close (line 44) | func (l *limitListenerConn) Close() error {
FILE: vendor/golang.org/x/net/netutil/listen_test.go
function TestLimitListener (line 22) | func TestLimitListener(t *testing.T) {
type errorListener (line 72) | type errorListener struct
method Accept (line 76) | func (errorListener) Accept() (net.Conn, error) {
function TestLimitListenerError (line 83) | func TestLimitListenerError(t *testing.T) {
FILE: vendor/golang.org/x/net/proxy/direct.go
type direct (line 11) | type direct struct
method Dial (line 16) | func (direct) Dial(network, addr string) (net.Conn, error) {
FILE: vendor/golang.org/x/net/proxy/per_host.go
type PerHost (line 14) | type PerHost struct
method Dial (line 35) | func (p *PerHost) Dial(network, addr string) (c net.Conn, err error) {
method dialerForRequest (line 44) | func (p *PerHost) dialerForRequest(host string) Dialer {
method AddFromString (line 82) | func (p *PerHost) AddFromString(s string) {
method AddIP (line 111) | func (p *PerHost) AddIP(ip net.IP) {
method AddNetwork (line 118) | func (p *PerHost) AddNetwork(net *net.IPNet) {
method AddZone (line 124) | func (p *PerHost) AddZone(zone string) {
method AddHost (line 135) | func (p *PerHost) AddHost(host string) {
function NewPerHost (line 26) | func NewPerHost(defaultDialer, bypass Dialer) *PerHost {
FILE: vendor/golang.org/x/net/proxy/per_host_test.go
type recordingProxy (line 14) | type recordingProxy struct
method Dial (line 18) | func (r *recordingProxy) Dial(network, addr string) (net.Conn, error) {
function TestPerHost (line 23) | func TestPerHost(t *testing.T) {
FILE: vendor/golang.org/x/net/proxy/proxy.go
type Dialer (line 18) | type Dialer interface
type Auth (line 24) | type Auth struct
function FromEnvironment (line 30) | func FromEnvironment() Dialer {
function RegisterDialerType (line 62) | func RegisterDialerType(scheme string, f func(*url.URL, Dialer) (Dialer,...
function FromURL (line 71) | func FromURL(u *url.URL, forward Dialer) (Dialer, error) {
type envOnce (line 110) | type envOnce struct
method Get (line 116) | func (e *envOnce) Get() string {
method init (line 121) | func (e *envOnce) init() {
method reset (line 131) | func (e *envOnce) reset() {
FILE: vendor/golang.org/x/net/proxy/proxy_test.go
type proxyFromEnvTest (line 20) | type proxyFromEnvTest struct
method String (line 26) | func (t proxyFromEnvTest) String() string {
function TestFromEnvironment (line 43) | func TestFromEnvironment(t *testing.T) {
function TestFromURL (line 75) | func TestFromURL(t *testing.T) {
function TestSOCKS5 (line 112) | func TestSOCKS5(t *testing.T) {
function socks5Gateway (line 141) | func socks5Gateway(t *testing.T, gateway, endSystem net.Listener, typ by...
function ResetProxyEnv (line 203) | func ResetProxyEnv() {
function ResetCachedEnvironment (line 212) | func ResetCachedEnvironment() {
FILE: vendor/golang.org/x/net/proxy/socks5.go
function SOCKS5 (line 16) | func SOCKS5(network, addr string, auth *Auth, forward Dialer) (Dialer, e...
type socks5 (line 30) | type socks5 struct
method Dial (line 64) | func (s *socks5) Dial(network, addr string) (net.Conn, error) {
method connect (line 85) | func (s *socks5) connect(conn net.Conn, target string) error {
constant socks5Version (line 36) | socks5Version = 5
constant socks5AuthNone (line 39) | socks5AuthNone = 0
constant socks5AuthPassword (line 40) | socks5AuthPassword = 2
constant socks5Connect (line 43) | socks5Connect = 1
constant socks5IP4 (line 46) | socks5IP4 = 1
constant socks5Domain (line 47) | socks5Domain = 3
constant socks5IP6 (line 48) | socks5IP6 = 4
FILE: vendor/golang.org/x/net/publicsuffix/gen.go
constant nodesBitsChildren (line 40) | nodesBitsChildren = 10
constant nodesBitsICANN (line 41) | nodesBitsICANN = 1
constant nodesBitsTextOffset (line 42) | nodesBitsTextOffset = 15
constant nodesBitsTextLength (line 43) | nodesBitsTextLength = 6
constant childrenBitsWildcard (line 46) | childrenBitsWildcard = 1
constant childrenBitsNodeType (line 47) | childrenBitsNodeType = 2
constant childrenBitsHi (line 48) | childrenBitsHi = 14
constant childrenBitsLo (line 49) | childrenBitsLo = 14
function max (line 60) | func max(a, b int) int {
function u32max (line 67) | func u32max(a, b uint32) uint32 {
constant nodeTypeNormal (line 75) | nodeTypeNormal = 0
constant nodeTypeException (line 76) | nodeTypeException = 1
constant nodeTypeParentOnly (line 77) | nodeTypeParentOnly = 2
constant numNodeType (line 78) | numNodeType = 3
function nodeTypeStr (line 81) | func nodeTypeStr(n int) string {
constant defaultURL (line 94) | defaultURL = "https://publicsuffix.org/list/effective_tld_names.dat"
constant gitCommitURL (line 95) | gitCommitURL = "https://api.github.com/repos/publicsuffix/list/commits?p...
function main (line 119) | func main() {
function main1 (line 126) | func main1() error {
function generate (line 251) | func generate(p func(io.Writer, *node) error, root *node, filename strin...
function gitCommit (line 263) | func gitCommit() (sha, date string, retErr error) {
function printTest (line 288) | func printTest(w io.Writer, n *node) error {
function printReal (line 302) | func printReal(w io.Writer, n *node) error {
type node (line 435) | type node struct
method walk (line 450) | func (n *node) walk(w io.Writer, f func(w1 io.Writer, n1 *node) error)...
method child (line 464) | func (n *node) child(label string) *node {
type byLabel (line 480) | type byLabel
method Len (line 482) | func (b byLabel) Len() int { return len(b) }
method Swap (line 483) | func (b byLabel) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
method Less (line 484) | func (b byLabel) Less(i, j int) bool { return b[i].label < b[j].label }
function assignIndexes (line 501) | func assignIndexes(w io.Writer, n *node) error {
function printNode (line 546) | func printNode(w io.Writer, n *node) error {
function printNodeLabel (line 569) | func printNodeLabel(w io.Writer, n *node) error {
function icannStr (line 576) | func icannStr(icann bool) string {
function wildcardStr (line 583) | func wildcardStr(wildcard bool) string {
function combineText (line 593) | func combineText(labelsList []string) string {
type byLength (line 606) | type byLength
method Len (line 608) | func (s byLength) Len() int { return len(s) }
method Swap (line 609) | func (s byLength) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
method Less (line 610) | func (s byLength) Less(i, j int) bool { return len(s[i]) < len(s[j]) }
function removeSubstrings (line 614) | func removeSubstrings(input []string) []string {
function crush (line 640) | func crush(ss []string) string {
function mergeLabel (line 666) | func mergeLabel(ss []string, i, prefixLen int, prefixes prefixMap) {
type prefixMap (line 697) | type prefixMap
function makePrefixMap (line 700) | func makePrefixMap(ss []string, prefixLen int) prefixMap {
FILE: vendor/golang.org/x/net/publicsuffix/list.go
type list (line 25) | type list struct
method PublicSuffix (line 27) | func (list) PublicSuffix(domain string) string {
method String (line 32) | func (list) String() string {
function PublicSuffix (line 47) | func PublicSuffix(domain string) (publicSuffix string, icann bool) {
constant notFound (line 94) | notFound uint32 = 1<<32 - 1
function find (line 99) | func find(label string, lo, hi uint32) uint32 {
function nodeLabel (line 115) | func nodeLabel(i uint32) string {
function EffectiveTLDPlusOne (line 125) | func EffectiveTLDPlusOne(domain string) (string, error) {
FILE: vendor/golang.org/x/net/publicsuffix/list_test.go
function TestNodeLabel (line 13) | func TestNodeLabel(t *testing.T) {
function TestFind (line 22) | func TestFind(t *testing.T) {
function TestICANN (line 64) | func TestICANN(t *testing.T) {
function BenchmarkPublicSuffix (line 233) | func BenchmarkPublicSuffix(b *testing.B) {
function TestPublicSuffix (line 241) | func TestPublicSuffix(t *testing.T) {
function TestSlowPublicSuffix (line 250) | func TestSlowPublicSuffix(t *testing.T) {
function slowPublicSuffix (line 272) | func slowPublicSuffix(domain string) string {
type byPriority (line 317) | type byPriority
method Len (line 319) | func (b byPriority) Len() int { return len(b) }
method Swap (line 320) | func (b byPriority) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
method Less (line 321) | func (b byPriority) Less(i, j int) bool {
function TestEffectiveTLDPlusOne (line 409) | func TestEffectiveTLDPlusOne(t *testing.T) {
FILE: vendor/golang.org/x/net/publicsuffix/table.go
constant version (line 5) | version = "publicsuffix.org's public_suffix_list.dat, git revision 38b23...
constant nodesBitsChildren (line 8) | nodesBitsChildren = 10
constant nodesBitsICANN (line 9) | nodesBitsICANN = 1
constant nodesBitsTextOffset (line 10) | nodesBitsTextOffset = 15
constant nodesBitsTextLength (line 11) | nodesBitsTextLength = 6
constant childrenBitsWildcard (line 13) | childrenBitsWildcard = 1
constant childrenBitsNodeType (line 14) | childrenBitsNodeType = 2
constant childrenBitsHi (line 15) | childrenBitsHi = 14
constant childrenBitsLo (line 16) | childrenBitsLo = 14
constant nodeTypeNormal (line 20) | nodeTypeNormal = 0
constant nodeTypeException (line 21) | nodeTypeException = 1
constant nodeTypeParentOnly (line 22) | nodeTypeParentOnly = 2
constant numTLD (line 26) | numTLD = 1557
constant text (line 29) | text = "bifukagawalterbihorologyukuhashimoichinosekigaharaxastronomy-gat" +
FILE: vendor/golang.org/x/net/route/address.go
type Addr (line 12) | type Addr interface
type LinkAddr (line 18) | type LinkAddr struct
method Family (line 25) | func (a *LinkAddr) Family() int { return sysAF_LINK }
method lenAndSpace (line 27) | func (a *LinkAddr) lenAndSpace() (int, int) {
method marshal (line 32) | func (a *LinkAddr) marshal(b []byte) (int, error) {
function parseLinkAddr (line 60) | func parseLinkAddr(b []byte) (Addr, error) {
function parseKernelLinkAddr (line 74) | func parseKernelLinkAddr(_ int, b []byte) (int, Addr, error) {
type Inet4Addr (line 119) | type Inet4Addr struct
method Family (line 124) | func (a *Inet4Addr) Family() int { return sysAF_INET }
method lenAndSpace (line 126) | func (a *Inet4Addr) lenAndSpace() (int, int) {
method marshal (line 130) | func (a *Inet4Addr) marshal(b []byte) (int, error) {
type Inet6Addr (line 142) | type Inet6Addr struct
method Family (line 148) | func (a *Inet6Addr) Family() int { return sysAF_INET6 }
method lenAndSpace (line 150) | func (a *Inet6Addr) lenAndSpace() (int, int) {
method marshal (line 154) | func (a *Inet6Addr) marshal(b []byte) (int, error) {
function parseInetAddr (line 169) | func parseInetAddr(af int, b []byte) (Addr, error) {
function parseKernelInetAddr (line 203) | func parseKernelInetAddr(af int, b []byte) (int, Addr, error) {
type DefaultAddr (line 272) | type DefaultAddr struct
method Family (line 278) | func (a *DefaultAddr) Family() int { return a.af }
method lenAndSpace (line 280) | func (a *DefaultAddr) lenAndSpace() (int, int) {
method marshal (line 285) | func (a *DefaultAddr) marshal(b []byte) (int, error) {
function parseDefaultAddr (line 298) | func parseDefaultAddr(b []byte) (Addr, error) {
function addrsSpace (line 306) | func addrsSpace(as []Addr) int {
function marshalAddrs (line 329) | func marshalAddrs(b []byte, as []Addr) (uint, error) {
function parseAddrs (line 366) | func parseAddrs(attrs uint, fn func(int, []byte) (int, Addr, error), b [...
FILE: vendor/golang.org/x/net/route/address_darwin_test.go
type parseAddrsOnDarwinTest (line 12) | type parseAddrsOnDarwinTest struct
function TestParseAddrsOnDarwin (line 46) | func TestParseAddrsOnDarwin(t *testing.T) {
FILE: vendor/golang.org/x/net/route/address_test.go
type parseAddrsTest (line 14) | type parseAddrsTest struct
function TestParseAddrs (line 85) | func TestParseAddrs(t *testing.T) {
FILE: vendor/golang.org/x/net/route/binary.go
type binaryByteOrder (line 20) | type binaryByteOrder interface
type binaryLittleEndian (line 28) | type binaryLittleEndian struct
method Uint16 (line 30) | func (binaryLittleEndian) Uint16(b []byte) uint16 {
method PutUint16 (line 35) | func (binaryLittleEndian) PutUint16(b []byte, v uint16) {
method Uint32 (line 41) | func (binaryLittleEndian) Uint32(b []byte) uint32 {
method PutUint32 (line 46) | func (binaryLittleEndian) PutUint32(b []byte, v uint32) {
method Uint64 (line 54) | func (binaryLittleEndian) Uint64(b []byte) uint64 {
type binaryBigEndian (line 60) | type binaryBigEndian struct
method Uint16 (line 62) | func (binaryBigEndian) Uint16(b []byte) uint16 {
method PutUint16 (line 67) | func (binaryBigEndian) PutUint16(b []byte, v uint16) {
method Uint32 (line 73) | func (binaryBigEndian) Uint32(b []byte) uint32 {
method PutUint32 (line 78) | func (binaryBigEndian) PutUint32(b []byte, v uint32) {
method Uint64 (line 86) | func (binaryBigEndian) Uint64(b []byte) uint64 {
FILE: vendor/golang.org/x/net/route/defs_darwin.go
constant sysAF_UNSPEC (line 22) | sysAF_UNSPEC = C.AF_UNSPEC
constant sysAF_INET (line 23) | sysAF_INET = C.AF_INET
constant sysAF_ROUTE (line 24) | sysAF_ROUTE = C.AF_ROUTE
constant sysAF_LINK (line 25) | sysAF_LINK = C.AF_LINK
constant sysAF_INET6 (line 26) | sysAF_INET6 = C.AF_INET6
constant sysSOCK_RAW (line 28) | sysSOCK_RAW = C.SOCK_RAW
constant sysNET_RT_DUMP (line 30) | sysNET_RT_DUMP = C.NET_RT_DUMP
constant sysNET_RT_FLAGS (line 31) | sysNET_RT_FLAGS = C.NET_RT_FLAGS
constant sysNET_RT_IFLIST (line 32) | sysNET_RT_IFLIST = C.NET_RT_IFLIST
constant sysNET_RT_STAT (line 33) | sysNET_RT_STAT = C.NET_RT_STAT
constant sysNET_RT_TRASH (line 34) | sysNET_RT_TRASH = C.NET_RT_TRASH
constant sysNET_RT_IFLIST2 (line 35) | sysNET_RT_IFLIST2 = C.NET_RT_IFLIST2
constant sysNET_RT_DUMP2 (line 36) | sysNET_RT_DUMP2 = C.NET_RT_DUMP2
constant sysNET_RT_MAXID (line 37) | sysNET_RT_MAXID = C.NET_RT_MAXID
constant sysCTL_MAXNAME (line 41) | sysCTL_MAXNAME = C.CTL_MAXNAME
constant sysCTL_UNSPEC (line 43) | sysCTL_UNSPEC = C.CTL_UNSPEC
constant sysCTL_KERN (line 44) | sysCTL_KERN = C.CTL_KERN
constant sysCTL_VM (line 45) | sysCTL_VM = C.CTL_VM
constant sysCTL_VFS (line 46) | sysCTL_VFS = C.CTL_VFS
constant sysCTL_NET (line 47) | sysCTL_NET = C.CTL_NET
constant sysCTL_DEBUG (line 48) | sysCTL_DEBUG = C.CTL_DEBUG
constant sysCTL_HW (line 49) | sysCTL_HW = C.CTL_HW
constant sysCTL_MACHDEP (line 50) | sysCTL_MACHDEP = C.CTL_MACHDEP
constant sysCTL_USER (line 51) | sysCTL_USER = C.CTL_USER
constant sysCTL_MAXID (line 52) | sysCTL_MAXID = C.CTL_MAXID
constant sysRTM_VERSION (line 56) | sysRTM_VERSION = C.RTM_VERSION
constant sysRTM_ADD (line 58) | sysRTM_ADD = C.RTM_ADD
constant sysRTM_DELETE (line 59) | sysRTM_DELETE = C.RTM_DELETE
constant sysRTM_CHANGE (line 60) | sysRTM_CHANGE = C.RTM_CHANGE
constant sysRTM_GET (line 61) | sysRTM_GET = C.RTM_GET
constant sysRTM_LOSING (line 62) | sysRTM_LOSING = C.RTM_LOSING
constant sysRTM_REDIRECT (line 63) | sysRTM_REDIRECT = C.RTM_REDIRECT
constant sysRTM_MISS (line 64) | sysRTM_MISS = C.RTM_MISS
constant sysRTM_LOCK (line 65) | sysRTM_LOCK = C.RTM_LOCK
constant sysRTM_OLDADD (line 66) | sysRTM_OLDADD = C.RTM_OLDADD
constant sysRTM_OLDDEL (line 67) | sysRTM_OLDDEL = C.RTM_OLDDEL
constant sysRTM_RESOLVE (line 68) | sysRTM_RESOLVE = C.RTM_RESOLVE
constant sysRTM_NEWADDR (line 69) | sysRTM_NEWADDR = C.RTM_NEWADDR
constant sysRTM_DELADDR (line 70) | sysRTM_DELADDR = C.RTM_DELADDR
constant sysRTM_IFINFO (line 71) | sysRTM_IFINFO = C.RTM_IFINFO
constant sysRTM_NEWMADDR (line 72) | sysRTM_NEWMADDR = C.RTM_NEWMADDR
constant sysRTM_DELMADDR (line 73) | sysRTM_DELMADDR = C.RTM_DELMADDR
constant sysRTM_IFINFO2 (line 74) | sysRTM_IFINFO2 = C.RTM_IFINFO2
constant sysRTM_NEWMADDR2 (line 75) | sysRTM_NEWMADDR2 = C.RTM_NEWMADDR2
constant sysRTM_GET2 (line 76) | sysRTM_GET2 = C.RTM_GET2
constant sysRTA_DST (line 78) | sysRTA_DST = C.RTA_DST
constant sysRTA_GATEWAY (line 79) | sysRTA_GATEWAY = C.RTA_GATEWAY
constant sysRTA_NETMASK (line 80) | sysRTA_NETMASK = C.RTA_NETMASK
constant sysRTA_GENMASK (line 81) | sysRTA_GENMASK = C.RTA_GENMASK
constant sysRTA_IFP (line 82) | sysRTA_IFP = C.RTA_IFP
constant sysRTA_IFA (line 83) | sysRTA_IFA = C.RTA_IFA
constant sysRTA_AUTHOR (line 84) | sysRTA_AUTHOR = C.RTA_AUTHOR
constant sysRTA_BRD (line 85) | sysRTA_BRD = C.RTA_BRD
constant sysRTAX_DST (line 87) | sysRTAX_DST = C.RTAX_DST
constant sysRTAX_GATEWAY (line 88) | sysRTAX_GATEWAY = C.RTAX_GATEWAY
constant sysRTAX_NETMASK (line 89) | sysRTAX_NETMASK = C.RTAX_NETMASK
constant sysRTAX_GENMASK (line 90) | sysRTAX_GENMASK = C.RTAX_GENMASK
constant sysRTAX_IFP (line 91) | sysRTAX_IFP = C.RTAX_IFP
constant sysRTAX_IFA (line 92) | sysRTAX_IFA = C.RTAX_IFA
constant sysRTAX_AUTHOR (line 93) | sysRTAX_AUTHOR = C.RTAX_AUTHOR
constant sysRTAX_BRD (line 94) | sysRTAX_BRD = C.RTAX_BRD
constant sysRTAX_MAX (line 95) | sysRTAX_MAX = C.RTAX_MAX
constant sizeofIfMsghdrDarwin15 (line 99) | sizeofIfMsghdrDarwin15 = C.sizeof_struct_if_msghdr
constant sizeofIfaMsghdrDarwin15 (line 100) | sizeofIfaMsghdrDarwin15 = C.sizeof_struct_ifa_msghdr
constant sizeofIfmaMsghdrDarwin15 (line 101) | sizeofIfmaMsghdrDarwin15 = C.sizeof_struct_ifma_msghdr
constant sizeofIfMsghdr2Darwin15 (line 102) | sizeofIfMsghdr2Darwin15 = C.sizeof_struct_if_msghdr2
constant sizeofIfmaMsghdr2Darwin15 (line 103) | sizeofIfmaMsghdr2Darwin15 = C.sizeof_struct_ifma_msghdr2
constant sizeofIfDataDarwin15 (line 104) | sizeofIfDataDarwin15 = C.sizeof_struct_if_data
constant sizeofIfData64Darwin15 (line 105) | sizeofIfData64Darwin15 = C.sizeof_struct_if_data64
constant sizeofRtMsghdrDarwin15 (line 107) | sizeofRtMsghdrDarwin15 = C.sizeof_struct_rt_msghdr
constant sizeofRtMsghdr2Darwin15 (line 108) | sizeofRtMsghdr2Darwin15 = C.sizeof_struct_rt_msghdr2
constant sizeofRtMetricsDarwin15 (line 109) | sizeofRtMetricsDarwin15 = C.sizeof_struct_rt_metrics
constant sizeofSockaddrStorage (line 111) | sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage
constant sizeofSockaddrInet (line 112) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofSockaddrInet6 (line 113) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
FILE: vendor/golang.org/x/net/route/defs_dragonfly.go
constant sysAF_UNSPEC (line 22) | sysAF_UNSPEC = C.AF_UNSPEC
constant sysAF_INET (line 23) | sysAF_INET = C.AF_INET
constant sysAF_ROUTE (line 24) | sysAF_ROUTE = C.AF_ROUTE
constant sysAF_LINK (line 25) | sysAF_LINK = C.AF_LINK
constant sysAF_INET6 (line 26) | sysAF_INET6 = C.AF_INET6
constant sysSOCK_RAW (line 28) | sysSOCK_RAW = C.SOCK_RAW
constant sysNET_RT_DUMP (line 30) | sysNET_RT_DUMP = C.NET_RT_DUMP
constant sysNET_RT_FLAGS (line 31) | sysNET_RT_FLAGS = C.NET_RT_FLAGS
constant sysNET_RT_IFLIST (line 32) | sysNET_RT_IFLIST = C.NET_RT_IFLIST
constant sysNET_RT_MAXID (line 33) | sysNET_RT_MAXID = C.NET_RT_MAXID
constant sysCTL_MAXNAME (line 37) | sysCTL_MAXNAME = C.CTL_MAXNAME
constant sysCTL_UNSPEC (line 39) | sysCTL_UNSPEC = C.CTL_UNSPEC
constant sysCTL_KERN (line 40) | sysCTL_KERN = C.CTL_KERN
constant sysCTL_VM (line 41) | sysCTL_VM = C.CTL_VM
constant sysCTL_VFS (line 42) | sysCTL_VFS = C.CTL_VFS
constant sysCTL_NET (line 43) | sysCTL_NET = C.CTL_NET
constant sysCTL_DEBUG (line 44) | sysCTL_DEBUG = C.CTL_DEBUG
constant sysCTL_HW (line 45) | sysCTL_HW = C.CTL_HW
constant sysCTL_MACHDEP (line 46) | sysCTL_MACHDEP = C.CTL_MACHDEP
constant sysCTL_USER (line 47) | sysCTL_USER = C.CTL_USER
constant sysCTL_P1003_1B (line 48) | sysCTL_P1003_1B = C.CTL_P1003_1B
constant sysCTL_LWKT (line 49) | sysCTL_LWKT = C.CTL_LWKT
constant sysCTL_MAXID (line 50) | sysCTL_MAXID = C.CTL_MAXID
constant sysRTM_VERSION (line 54) | sysRTM_VERSION = C.RTM_VERSION
constant sysRTM_ADD (line 56) | sysRTM_ADD = C.RTM_ADD
constant sysRTM_DELETE (line 57) | sysRTM_DELETE = C.RTM_DELETE
constant sysRTM_CHANGE (line 58) | sysRTM_CHANGE = C.RTM_CHANGE
constant sysRTM_GET (line 59) | sysRTM_GET = C.RTM_GET
constant sysRTM_LOSING (line 60) | sysRTM_LOSING = C.RTM_LOSING
constant sysRTM_REDIRECT (line 61) | sysRTM_REDIRECT = C.RTM_REDIRECT
constant sysRTM_MISS (line 62) | sysRTM_MISS = C.RTM_MISS
constant sysRTM_LOCK (line 63) | sysRTM_LOCK = C.RTM_LOCK
constant sysRTM_OLDADD (line 64) | sysRTM_OLDADD = C.RTM_OLDADD
constant sysRTM_OLDDEL (line 65) | sysRTM_OLDDEL = C.RTM_OLDDEL
constant sysRTM_RESOLVE (line 66) | sysRTM_RESOLVE = C.RTM_RESOLVE
constant sysRTM_NEWADDR (line 67) | sysRTM_NEWADDR = C.RTM_NEWADDR
constant sysRTM_DELADDR (line 68) | sysRTM_DELADDR = C.RTM_DELADDR
constant sysRTM_IFINFO (line 69) | sysRTM_IFINFO = C.RTM_IFINFO
constant sysRTM_NEWMADDR (line 70) | sysRTM_NEWMADDR = C.RTM_NEWMADDR
constant sysRTM_DELMADDR (line 71) | sysRTM_DELMADDR = C.RTM_DELMADDR
constant sysRTM_IFANNOUNCE (line 72) | sysRTM_IFANNOUNCE = C.RTM_IFANNOUNCE
constant sysRTM_IEEE80211 (line 73) | sysRTM_IEEE80211 = C.RTM_IEEE80211
constant sysRTA_DST (line 75) | sysRTA_DST = C.RTA_DST
constant sysRTA_GATEWAY (line 76) | sysRTA_GATEWAY = C.RTA_GATEWAY
constant sysRTA_NETMASK (line 77) | sysRTA_NETMASK = C.RTA_NETMASK
constant sysRTA_GENMASK (line 78) | sysRTA_GENMASK = C.RTA_GENMASK
constant sysRTA_IFP (line 79) | sysRTA_IFP = C.RTA_IFP
constant sysRTA_IFA (line 80) | sysRTA_IFA = C.RTA_IFA
constant sysRTA_AUTHOR (line 81) | sysRTA_AUTHOR = C.RTA_AUTHOR
constant sysRTA_BRD (line 82) | sysRTA_BRD = C.RTA_BRD
constant sysRTA_MPLS1 (line 83) | sysRTA_MPLS1 = C.RTA_MPLS1
constant sysRTA_MPLS2 (line 84) | sysRTA_MPLS2 = C.RTA_MPLS2
constant sysRTA_MPLS3 (line 85) | sysRTA_MPLS3 = C.RTA_MPLS3
constant sysRTAX_DST (line 87) | sysRTAX_DST = C.RTAX_DST
constant sysRTAX_GATEWAY (line 88) | sysRTAX_GATEWAY = C.RTAX_GATEWAY
constant sysRTAX_NETMASK (line 89) | sysRTAX_NETMASK = C.RTAX_NETMASK
constant sysRTAX_GENMASK (line 90) | sysRTAX_GENMASK = C.RTAX_GENMASK
constant sysRTAX_IFP (line 91) | sysRTAX_IFP = C.RTAX_IFP
constant sysRTAX_IFA (line 92) | sysRTAX_IFA = C.RTAX_IFA
constant sysRTAX_AUTHOR (line 93) | sysRTAX_AUTHOR = C.RTAX_AUTHOR
constant sysRTAX_BRD (line 94) | sysRTAX_BRD = C.RTAX_BRD
constant sysRTAX_MPLS1 (line 95) | sysRTAX_MPLS1 = C.RTAX_MPLS1
constant sysRTAX_MPLS2 (line 96) | sysRTAX_MPLS2 = C.RTAX_MPLS2
constant sysRTAX_MPLS3 (line 97) | sysRTAX_MPLS3 = C.RTAX_MPLS3
constant sysRTAX_MAX (line 98) | sysRTAX_MAX = C.RTAX_MAX
constant sizeofIfMsghdrDragonFlyBSD4 (line 102) | sizeofIfMsghdrDragonFlyBSD4 = C.sizeof_struct_if_msghdr
constant sizeofIfaMsghdrDragonFlyBSD4 (line 103) | sizeofIfaMsghdrDragonFlyBSD4 = C.sizeof_struct_ifa_msghdr
constant sizeofIfmaMsghdrDragonFlyBSD4 (line 104) | sizeofIfmaMsghdrDragonFlyBSD4 = C.sizeof_struct_ifma_msghdr
constant sizeofIfAnnouncemsghdrDragonFlyBSD4 (line 105) | sizeofIfAnnouncemsghdrDragonFlyBSD4 = C.sizeof_struct_if_announcemsghdr
constant sizeofRtMsghdrDragonFlyBSD4 (line 107) | sizeofRtMsghdrDragonFlyBSD4 = C.sizeof_struct_rt_msghdr
constant sizeofRtMetricsDragonFlyBSD4 (line 108) | sizeofRtMetricsDragonFlyBSD4 = C.sizeof_struct_rt_metrics
constant sizeofSockaddrStorage (line 110) | sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage
constant sizeofSockaddrInet (line 111) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofSockaddrInet6 (line 112) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
FILE: vendor/golang.org/x/net/route/defs_freebsd.go
constant sysAF_UNSPEC (line 221) | sysAF_UNSPEC = C.AF_UNSPEC
constant sysAF_INET (line 222) | sysAF_INET = C.AF_INET
constant sysAF_ROUTE (line 223) | sysAF_ROUTE = C.AF_ROUTE
constant sysAF_LINK (line 224) | sysAF_LINK = C.AF_LINK
constant sysAF_INET6 (line 225) | sysAF_INET6 = C.AF_INET6
constant sysSOCK_RAW (line 227) | sysSOCK_RAW = C.SOCK_RAW
constant sysNET_RT_DUMP (line 229) | sysNET_RT_DUMP = C.NET_RT_DUMP
constant sysNET_RT_FLAGS (line 230) | sysNET_RT_FLAGS = C.NET_RT_FLAGS
constant sysNET_RT_IFLIST (line 231) | sysNET_RT_IFLIST = C.NET_RT_IFLIST
constant sysNET_RT_IFMALIST (line 232) | sysNET_RT_IFMALIST = C.NET_RT_IFMALIST
constant sysNET_RT_IFLISTL (line 233) | sysNET_RT_IFLISTL = C.NET_RT_IFLISTL
constant sysCTL_MAXNAME (line 237) | sysCTL_MAXNAME = C.CTL_MAXNAME
constant sysCTL_UNSPEC (line 239) | sysCTL_UNSPEC = C.CTL_UNSPEC
constant sysCTL_KERN (line 240) | sysCTL_KERN = C.CTL_KERN
constant sysCTL_VM (line 241) | sysCTL_VM = C.CTL_VM
constant sysCTL_VFS (line 242) | sysCTL_VFS = C.CTL_VFS
constant sysCTL_NET (line 243) | sysCTL_NET = C.CTL_NET
constant sysCTL_DEBUG (line 244) | sysCTL_DEBUG = C.CTL_DEBUG
constant sysCTL_HW (line 245) | sysCTL_HW = C.CTL_HW
constant sysCTL_MACHDEP (line 246) | sysCTL_MACHDEP = C.CTL_MACHDEP
constant sysCTL_USER (line 247) | sysCTL_USER = C.CTL_USER
constant sysCTL_P1003_1B (line 248) | sysCTL_P1003_1B = C.CTL_P1003_1B
constant sysRTM_VERSION (line 252) | sysRTM_VERSION = C.RTM_VERSION
constant sysRTM_ADD (line 254) | sysRTM_ADD = C.RTM_ADD
constant sysRTM_DELETE (line 255) | sysRTM_DELETE = C.RTM_DELETE
constant sysRTM_CHANGE (line 256) | sysRTM_CHANGE = C.RTM_CHANGE
constant sysRTM_GET (line 257) | sysRTM_GET = C.RTM_GET
constant sysRTM_LOSING (line 258) | sysRTM_LOSING = C.RTM_LOSING
constant sysRTM_REDIRECT (line 259) | sysRTM_REDIRECT = C.RTM_REDIRECT
constant sysRTM_MISS (line 260) | sysRTM_MISS = C.RTM_MISS
constant sysRTM_LOCK (line 261) | sysRTM_LOCK = C.RTM_LOCK
constant sysRTM_RESOLVE (line 262) | sysRTM_RESOLVE = C.RTM_RESOLVE
constant sysRTM_NEWADDR (line 263) | sysRTM_NEWADDR = C.RTM_NEWADDR
constant sysRTM_DELADDR (line 264) | sysRTM_DELADDR = C.RTM_DELADDR
constant sysRTM_IFINFO (line 265) | sysRTM_IFINFO = C.RTM_IFINFO
constant sysRTM_NEWMADDR (line 266) | sysRTM_NEWMADDR = C.RTM_NEWMADDR
constant sysRTM_DELMADDR (line 267) | sysRTM_DELMADDR = C.RTM_DELMADDR
constant sysRTM_IFANNOUNCE (line 268) | sysRTM_IFANNOUNCE = C.RTM_IFANNOUNCE
constant sysRTM_IEEE80211 (line 269) | sysRTM_IEEE80211 = C.RTM_IEEE80211
constant sysRTA_DST (line 271) | sysRTA_DST = C.RTA_DST
constant sysRTA_GATEWAY (line 272) | sysRTA_GATEWAY = C.RTA_GATEWAY
constant sysRTA_NETMASK (line 273) | sysRTA_NETMASK = C.RTA_NETMASK
constant sysRTA_GENMASK (line 274) | sysRTA_GENMASK = C.RTA_GENMASK
constant sysRTA_IFP (line 275) | sysRTA_IFP = C.RTA_IFP
constant sysRTA_IFA (line 276) | sysRTA_IFA = C.RTA_IFA
constant sysRTA_AUTHOR (line 277) | sysRTA_AUTHOR = C.RTA_AUTHOR
constant sysRTA_BRD (line 278) | sysRTA_BRD = C.RTA_BRD
constant sysRTAX_DST (line 280) | sysRTAX_DST = C.RTAX_DST
constant sysRTAX_GATEWAY (line 281) | sysRTAX_GATEWAY = C.RTAX_GATEWAY
constant sysRTAX_NETMASK (line 282) | sysRTAX_NETMASK = C.RTAX_NETMASK
constant sysRTAX_GENMASK (line 283) | sysRTAX_GENMASK = C.RTAX_GENMASK
constant sysRTAX_IFP (line 284) | sysRTAX_IFP = C.RTAX_IFP
constant sysRTAX_IFA (line 285) | sysRTAX_IFA = C.RTAX_IFA
constant sysRTAX_AUTHOR (line 286) | sysRTAX_AUTHOR = C.RTAX_AUTHOR
constant sysRTAX_BRD (line 287) | sysRTAX_BRD = C.RTAX_BRD
constant sysRTAX_MAX (line 288) | sysRTAX_MAX = C.RTAX_MAX
constant sizeofIfMsghdrlFreeBSD10 (line 292) | sizeofIfMsghdrlFreeBSD10 = C.sizeof_struct_if_msghdrl
constant sizeofIfaMsghdrFreeBSD10 (line 293) | sizeofIfaMsghdrFreeBSD10 = C.sizeof_struct_ifa_msghdr
constant sizeofIfaMsghdrlFreeBSD10 (line 294) | sizeofIfaMsghdrlFreeBSD10 = C.sizeof_struct_ifa_msghdrl
constant sizeofIfmaMsghdrFreeBSD10 (line 295) | sizeofIfmaMsghdrFreeBSD10 = C.sizeof_struct_ifma_msghdr
constant sizeofIfAnnouncemsghdrFreeBSD10 (line 296) | sizeofIfAnnouncemsghdrFreeBSD10 = C.sizeof_struct_if_announcemsghdr
constant sizeofRtMsghdrFreeBSD10 (line 298) | sizeofRtMsghdrFreeBSD10 = C.sizeof_struct_rt_msghdr
constant sizeofRtMetricsFreeBSD10 (line 299) | sizeofRtMetricsFreeBSD10 = C.sizeof_struct_rt_metrics
constant sizeofIfMsghdrFreeBSD7 (line 301) | sizeofIfMsghdrFreeBSD7 = C.sizeof_struct_if_msghdr_freebsd7
constant sizeofIfMsghdrFreeBSD8 (line 302) | sizeofIfMsghdrFreeBSD8 = C.sizeof_struct_if_msghdr_freebsd8
constant sizeofIfMsghdrFreeBSD9 (line 303) | sizeofIfMsghdrFreeBSD9 = C.sizeof_struct_if_msghdr_freebsd9
constant sizeofIfMsghdrFreeBSD10 (line 304) | sizeofIfMsghdrFreeBSD10 = C.sizeof_struct_if_msghdr_freebsd10
constant sizeofIfMsghdrFreeBSD11 (line 305) | sizeofIfMsghdrFreeBSD11 = C.sizeof_struct_if_msghdr_freebsd11
constant sizeofIfDataFreeBSD7 (line 307) | sizeofIfDataFreeBSD7 = C.sizeof_struct_if_data_freebsd7
constant sizeofIfDataFreeBSD8 (line 308) | sizeofIfDataFreeBSD8 = C.sizeof_struct_if_data_freebsd8
constant sizeofIfDataFreeBSD9 (line 309) | sizeofIfDataFreeBSD9 = C.sizeof_struct_if_data_freebsd9
constant sizeofIfDataFreeBSD10 (line 310) | sizeofIfDataFreeBSD10 = C.sizeof_struct_if_data_freebsd10
constant sizeofIfDataFreeBSD11 (line 311) | sizeofIfDataFreeBSD11 = C.sizeof_struct_if_data_freebsd11
constant sizeofIfMsghdrlFreeBSD10Emu (line 313) | sizeofIfMsghdrlFreeBSD10Emu = C.sizeof_struct_if_msghdrl
constant sizeofIfaMsghdrFreeBSD10Emu (line 314) | sizeofIfaMsghdrFreeBSD10Emu = C.sizeof_struct_ifa_msghdr
constant sizeofIfaMsghdrlFreeBSD10Emu (line 315) | sizeofIfaMsghdrlFreeBSD10Emu = C.sizeof_struct_ifa_msghdrl
constant sizeofIfmaMsghdrFreeBSD10Emu (line 316) | sizeofIfmaMsghdrFreeBSD10Emu = C.sizeof_struct_ifma_msghdr
constant sizeofIfAnnouncemsghdrFreeBSD10Emu (line 317) | sizeofIfAnnouncemsghdrFreeBSD10Emu = C.sizeof_struct_if_announcemsghdr
constant sizeofRtMsghdrFreeBSD10Emu (line 319) | sizeofRtMsghdrFreeBSD10Emu = C.sizeof_struct_rt_msghdr
constant sizeofRtMetricsFreeBSD10Emu (line 320) | sizeofRtMetricsFreeBSD10Emu = C.sizeof_struct_rt_metrics
constant sizeofIfMsghdrFreeBSD7Emu (line 322) | sizeofIfMsghdrFreeBSD7Emu = C.sizeof_struct_if_msghdr_freebsd7
constant sizeofIfMsghdrFreeBSD8Emu (line 323) | sizeofIfMsghdrFreeBSD8Emu = C.sizeof_struct_if_msghdr_freebsd8
constant sizeofIfMsghdrFreeBSD9Emu (line 324) | sizeofIfMsghdrFreeBSD9Emu = C.sizeof_struct_if_msghdr_freebsd9
constant sizeofIfMsghdrFreeBSD10Emu (line 325) | sizeofIfMsghdrFreeBSD10Emu = C.sizeof_struct_if_msghdr_freebsd10
constant sizeofIfMsghdrFreeBSD11Emu (line 326) | sizeofIfMsghdrFreeBSD11Emu = C.sizeof_struct_if_msghdr_freebsd11
constant sizeofIfDataFreeBSD7Emu (line 328) | sizeofIfDataFreeBSD7Emu = C.sizeof_struct_if_data_freebsd7
constant sizeofIfDataFreeBSD8Emu (line 329) | sizeofIfDataFreeBSD8Emu = C.sizeof_struct_if_data_freebsd8
constant sizeofIfDataFreeBSD9Emu (line 330) | sizeofIfDataFreeBSD9Emu = C.sizeof_struct_if_data_freebsd9
constant sizeofIfDataFreeBSD10Emu (line 331) | sizeofIfDataFreeBSD10Emu = C.sizeof_struct_if_data_freebsd10
constant sizeofIfDataFreeBSD11Emu (line 332) | sizeofIfDataFreeBSD11Emu = C.sizeof_struct_if_data_freebsd11
constant sizeofSockaddrStorage (line 334) | sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage
constant sizeofSockaddrInet (line 335) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofSockaddrInet6 (line 336) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
FILE: vendor/golang.org/x/net/route/defs_netbsd.go
constant sysAF_UNSPEC (line 22) | sysAF_UNSPEC = C.AF_UNSPEC
constant sysAF_INET (line 23) | sysAF_INET = C.AF_INET
constant sysAF_ROUTE (line 24) | sysAF_ROUTE = C.AF_ROUTE
constant sysAF_LINK (line 25) | sysAF_LINK = C.AF_LINK
constant sysAF_INET6 (line 26) | sysAF_INET6 = C.AF_INET6
constant sysSOCK_RAW (line 28) | sysSOCK_RAW = C.SOCK_RAW
constant sysNET_RT_DUMP (line 30) | sysNET_RT_DUMP = C.NET_RT_DUMP
constant sysNET_RT_FLAGS (line 31) | sysNET_RT_FLAGS = C.NET_RT_FLAGS
constant sysNET_RT_IFLIST (line 32) | sysNET_RT_IFLIST = C.NET_RT_IFLIST
constant sysNET_RT_MAXID (line 33) | sysNET_RT_MAXID = C.NET_RT_MAXID
constant sysCTL_MAXNAME (line 37) | sysCTL_MAXNAME = C.CTL_MAXNAME
constant sysCTL_UNSPEC (line 39) | sysCTL_UNSPEC = C.CTL_UNSPEC
constant sysCTL_KERN (line 40) | sysCTL_KERN = C.CTL_KERN
constant sysCTL_VM (line 41) | sysCTL_VM = C.CTL_VM
constant sysCTL_VFS (line 42) | sysCTL_VFS = C.CTL_VFS
constant sysCTL_NET (line 43) | sysCTL_NET = C.CTL_NET
constant sysCTL_DEBUG (line 44) | sysCTL_DEBUG = C.CTL_DEBUG
constant sysCTL_HW (line 45) | sysCTL_HW = C.CTL_HW
constant sysCTL_MACHDEP (line 46) | sysCTL_MACHDEP = C.CTL_MACHDEP
constant sysCTL_USER (line 47) | sysCTL_USER = C.CTL_USER
constant sysCTL_DDB (line 48) | sysCTL_DDB = C.CTL_DDB
constant sysCTL_PROC (line 49) | sysCTL_PROC = C.CTL_PROC
constant sysCTL_VENDOR (line 50) | sysCTL_VENDOR = C.CTL_VENDOR
constant sysCTL_EMUL (line 51) | sysCTL_EMUL = C.CTL_EMUL
constant sysCTL_SECURITY (line 52) | sysCTL_SECURITY = C.CTL_SECURITY
constant sysCTL_MAXID (line 53) | sysCTL_MAXID = C.CTL_MAXID
constant sysRTM_VERSION (line 57) | sysRTM_VERSION = C.RTM_VERSION
constant sysRTM_ADD (line 59) | sysRTM_ADD = C.RTM_ADD
constant sysRTM_DELETE (line 60) | sysRTM_DELETE = C.RTM_DELETE
constant sysRTM_CHANGE (line 61) | sysRTM_CHANGE = C.RTM_CHANGE
constant sysRTM_GET (line 62) | sysRTM_GET = C.RTM_GET
constant sysRTM_LOSING (line 63) | sysRTM_LOSING = C.RTM_LOSING
constant sysRTM_REDIRECT (line 64) | sysRTM_REDIRECT = C.RTM_REDIRECT
constant sysRTM_MISS (line 65) | sysRTM_MISS = C.RTM_MISS
constant sysRTM_LOCK (line 66) | sysRTM_LOCK = C.RTM_LOCK
constant sysRTM_OLDADD (line 67) | sysRTM_OLDADD = C.RTM_OLDADD
constant sysRTM_OLDDEL (line 68) | sysRTM_OLDDEL = C.RTM_OLDDEL
constant sysRTM_RESOLVE (line 69) | sysRTM_RESOLVE = C.RTM_RESOLVE
constant sysRTM_NEWADDR (line 70) | sysRTM_NEWADDR = C.RTM_NEWADDR
constant sysRTM_DELADDR (line 71) | sysRTM_DELADDR = C.RTM_DELADDR
constant sysRTM_IFANNOUNCE (line 72) | sysRTM_IFANNOUNCE = C.RTM_IFANNOUNCE
constant sysRTM_IEEE80211 (line 73) | sysRTM_IEEE80211 = C.RTM_IEEE80211
constant sysRTM_SETGATE (line 74) | sysRTM_SETGATE = C.RTM_SETGATE
constant sysRTM_LLINFO_UPD (line 75) | sysRTM_LLINFO_UPD = C.RTM_LLINFO_UPD
constant sysRTM_IFINFO (line 76) | sysRTM_IFINFO = C.RTM_IFINFO
constant sysRTM_CHGADDR (line 77) | sysRTM_CHGADDR = C.RTM_CHGADDR
constant sysRTA_DST (line 79) | sysRTA_DST = C.RTA_DST
constant sysRTA_GATEWAY (line 80) | sysRTA_GATEWAY = C.RTA_GATEWAY
constant sysRTA_NETMASK (line 81) | sysRTA_NETMASK = C.RTA_NETMASK
constant sysRTA_GENMASK (line 82) | sysRTA_GENMASK = C.RTA_GENMASK
constant sysRTA_IFP (line 83) | sysRTA_IFP = C.RTA_IFP
constant sysRTA_IFA (line 84) | sysRTA_IFA = C.RTA_IFA
constant sysRTA_AUTHOR (line 85) | sysRTA_AUTHOR = C.RTA_AUTHOR
constant sysRTA_BRD (line 86) | sysRTA_BRD = C.RTA_BRD
constant sysRTA_TAG (line 87) | sysRTA_TAG = C.RTA_TAG
constant sysRTAX_DST (line 89) | sysRTAX_DST = C.RTAX_DST
constant sysRTAX_GATEWAY (line 90) | sysRTAX_GATEWAY = C.RTAX_GATEWAY
constant sysRTAX_NETMASK (line 91) | sysRTAX_NETMASK = C.RTAX_NETMASK
constant sysRTAX_GENMASK (line 92) | sysRTAX_GENMASK = C.RTAX_GENMASK
constant sysRTAX_IFP (line 93) | sysRTAX_IFP = C.RTAX_IFP
constant sysRTAX_IFA (line 94) | sysRTAX_IFA = C.RTAX_IFA
constant sysRTAX_AUTHOR (line 95) | sysRTAX_AUTHOR = C.RTAX_AUTHOR
constant sysRTAX_BRD (line 96) | sysRTAX_BRD = C.RTAX_BRD
constant sysRTAX_TAG (line 97) | sysRTAX_TAG = C.RTAX_TAG
constant sysRTAX_MAX (line 98) | sysRTAX_MAX = C.RTAX_MAX
constant sizeofIfMsghdrNetBSD7 (line 102) | sizeofIfMsghdrNetBSD7 = C.sizeof_struct_if_msghdr
constant sizeofIfaMsghdrNetBSD7 (line 103) | sizeofIfaMsghdrNetBSD7 = C.sizeof_struct_ifa_msghdr
constant sizeofIfAnnouncemsghdrNetBSD7 (line 104) | sizeofIfAnnouncemsghdrNetBSD7 = C.sizeof_struct_if_announcemsghdr
constant sizeofRtMsghdrNetBSD7 (line 106) | sizeofRtMsghdrNetBSD7 = C.sizeof_struct_rt_msghdr
constant sizeofRtMetricsNetBSD7 (line 107) | sizeofRtMetricsNetBSD7 = C.sizeof_struct_rt_metrics
constant sizeofSockaddrStorage (line 109) | sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage
constant sizeofSockaddrInet (line 110) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofSockaddrInet6 (line 111) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
FILE: vendor/golang.org/x/net/route/defs_openbsd.go
constant sysAF_UNSPEC (line 22) | sysAF_UNSPEC = C.AF_UNSPEC
constant sysAF_INET (line 23) | sysAF_INET = C.AF_INET
constant sysAF_ROUTE (line 24) | sysAF_ROUTE = C.AF_ROUTE
constant sysAF_LINK (line 25) | sysAF_LINK = C.AF_LINK
constant sysAF_INET6 (line 26) | sysAF_INET6 = C.AF_INET6
constant sysSOCK_RAW (line 28) | sysSOCK_RAW = C.SOCK_RAW
constant sysNET_RT_DUMP (line 30) | sysNET_RT_DUMP = C.NET_RT_DUMP
constant sysNET_RT_FLAGS (line 31) | sysNET_RT_FLAGS = C.NET_RT_FLAGS
constant sysNET_RT_IFLIST (line 32) | sysNET_RT_IFLIST = C.NET_RT_IFLIST
constant sysNET_RT_STATS (line 33) | sysNET_RT_STATS = C.NET_RT_STATS
constant sysNET_RT_TABLE (line 34) | sysNET_RT_TABLE = C.NET_RT_TABLE
constant sysNET_RT_IFNAMES (line 35) | sysNET_RT_IFNAMES = C.NET_RT_IFNAMES
constant sysNET_RT_MAXID (line 36) | sysNET_RT_MAXID = C.NET_RT_MAXID
constant sysCTL_MAXNAME (line 40) | sysCTL_MAXNAME = C.CTL_MAXNAME
constant sysCTL_UNSPEC (line 42) | sysCTL_UNSPEC = C.CTL_UNSPEC
constant sysCTL_KERN (line 43) | sysCTL_KERN = C.CTL_KERN
constant sysCTL_VM (line 44) | sysCTL_VM = C.CTL_VM
constant sysCTL_FS (line 45) | sysCTL_FS = C.CTL_FS
constant sysCTL_NET (line 46) | sysCTL_NET = C.CTL_NET
constant sysCTL_DEBUG (line 47) | sysCTL_DEBUG = C.CTL_DEBUG
constant sysCTL_HW (line 48) | sysCTL_HW = C.CTL_HW
constant sysCTL_MACHDEP (line 49) | sysCTL_MACHDEP = C.CTL_MACHDEP
constant sysCTL_DDB (line 50) | sysCTL_DDB = C.CTL_DDB
constant sysCTL_VFS (line 51) | sysCTL_VFS = C.CTL_VFS
constant sysCTL_MAXID (line 52) | sysCTL_MAXID = C.CTL_MAXID
constant sysRTM_VERSION (line 56) | sysRTM_VERSION = C.RTM_VERSION
constant sysRTM_ADD (line 58) | sysRTM_ADD = C.RTM_ADD
constant sysRTM_DELETE (line 59) | sysRTM_DELETE = C.RTM_DELETE
constant sysRTM_CHANGE (line 60) | sysRTM_CHANGE = C.RTM_CHANGE
constant sysRTM_GET (line 61) | sysRTM_GET = C.RTM_GET
constant sysRTM_LOSING (line 62) | sysRTM_LOSING = C.RTM_LOSING
constant sysRTM_REDIRECT (line 63) | sysRTM_REDIRECT = C.RTM_REDIRECT
constant sysRTM_MISS (line 64) | sysRTM_MISS = C.RTM_MISS
constant sysRTM_LOCK (line 65) | sysRTM_LOCK = C.RTM_LOCK
constant sysRTM_RESOLVE (line 66) | sysRTM_RESOLVE = C.RTM_RESOLVE
constant sysRTM_NEWADDR (line 67) | sysRTM_NEWADDR = C.RTM_NEWADDR
constant sysRTM_DELADDR (line 68) | sysRTM_DELADDR = C.RTM_DELADDR
constant sysRTM_IFINFO (line 69) | sysRTM_IFINFO = C.RTM_IFINFO
constant sysRTM_IFANNOUNCE (line 70) | sysRTM_IFANNOUNCE = C.RTM_IFANNOUNCE
constant sysRTM_DESYNC (line 71) | sysRTM_DESYNC = C.RTM_DESYNC
constant sysRTM_INVALIDATE (line 72) | sysRTM_INVALIDATE = C.RTM_INVALIDATE
constant sysRTM_BFD (line 73) | sysRTM_BFD = C.RTM_BFD
constant sysRTM_PROPOSAL (line 74) | sysRTM_PROPOSAL = C.RTM_PROPOSAL
constant sysRTA_DST (line 76) | sysRTA_DST = C.RTA_DST
constant sysRTA_GATEWAY (line 77) | sysRTA_GATEWAY = C.RTA_GATEWAY
constant sysRTA_NETMASK (line 78) | sysRTA_NETMASK = C.RTA_NETMASK
constant sysRTA_GENMASK (line 79) | sysRTA_GENMASK = C.RTA_GENMASK
constant sysRTA_IFP (line 80) | sysRTA_IFP = C.RTA_IFP
constant sysRTA_IFA (line 81) | sysRTA_IFA = C.RTA_IFA
constant sysRTA_AUTHOR (line 82) | sysRTA_AUTHOR = C.RTA_AUTHOR
constant sysRTA_BRD (line 83) | sysRTA_BRD = C.RTA_BRD
constant sysRTA_SRC (line 84) | sysRTA_SRC = C.RTA_SRC
constant sysRTA_SRCMASK (line 85) | sysRTA_SRCMASK = C.RTA_SRCMASK
constant sysRTA_LABEL (line 86) | sysRTA_LABEL = C.RTA_LABEL
constant sysRTA_BFD (line 87) | sysRTA_BFD = C.RTA_BFD
constant sysRTA_DNS (line 88) | sysRTA_DNS = C.RTA_DNS
constant sysRTA_STATIC (line 89) | sysRTA_STATIC = C.RTA_STATIC
constant sysRTA_SEARCH (line 90) | sysRTA_SEARCH = C.RTA_SEARCH
constant sysRTAX_DST (line 92) | sysRTAX_DST = C.RTAX_DST
constant sysRTAX_GATEWAY (line 93) | sysRTAX_GATEWAY = C.RTAX_GATEWAY
constant sysRTAX_NETMASK (line 94) | sysRTAX_NETMASK = C.RTAX_NETMASK
constant sysRTAX_GENMASK (line 95) | sysRTAX_GENMASK = C.RTAX_GENMASK
constant sysRTAX_IFP (line 96) | sysRTAX_IFP = C.RTAX_IFP
constant sysRTAX_IFA (line 97) | sysRTAX_IFA = C.RTAX_IFA
constant sysRTAX_AUTHOR (line 98) | sysRTAX_AUTHOR = C.RTAX_AUTHOR
constant sysRTAX_BRD (line 99) | sysRTAX_BRD = C.RTAX_BRD
constant sysRTAX_SRC (line 100) | sysRTAX_SRC = C.RTAX_SRC
constant sysRTAX_SRCMASK (line 101) | sysRTAX_SRCMASK = C.RTAX_SRCMASK
constant sysRTAX_LABEL (line 102) | sysRTAX_LABEL = C.RTAX_LABEL
constant sysRTAX_BFD (line 103) | sysRTAX_BFD = C.RTAX_BFD
constant sysRTAX_DNS (line 104) | sysRTAX_DNS = C.RTAX_DNS
constant sysRTAX_STATIC (line 105) | sysRTAX_STATIC = C.RTAX_STATIC
constant sysRTAX_SEARCH (line 106) | sysRTAX_SEARCH = C.RTAX_SEARCH
constant sysRTAX_MAX (line 107) | sysRTAX_MAX = C.RTAX_MAX
constant sizeofRtMsghdr (line 111) | sizeofRtMsghdr = C.sizeof_struct_rt_msghdr
constant sizeofSockaddrStorage (line 113) | sizeofSockaddrStorage = C.sizeof_struct_sockaddr_storage
constant sizeofSockaddrInet (line 114) | sizeofSockaddrInet = C.sizeof_struct_sockaddr_in
constant sizeofSockaddrInet6 (line 115) | sizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6
FILE: vendor/golang.org/x/net/route/interface.go
type InterfaceMessage (line 10) | type InterfaceMessage struct
type InterfaceAddrMessage (line 23) | type InterfaceAddrMessage struct
method Sys (line 34) | func (m *InterfaceAddrMessage) Sys() []Sys { return nil }
type InterfaceMulticastAddrMessage (line 38) | type InterfaceMulticastAddrMessage struct
method Sys (line 49) | func (m *InterfaceMulticastAddrMessage) Sys() []Sys { return nil }
type InterfaceAnnounceMessage (line 53) | type InterfaceAnnounceMessage struct
method Sys (line 64) | func (m *InterfaceAnnounceMessage) Sys() []Sys { return nil }
FILE: vendor/golang.org/x/net/route/interface_announce.go
method parseInterfaceAnnounceMessage (line 9) | func (w *wireFormat) parseInterfaceAnnounceMessage(_ RIBType, b []byte) ...
FILE: vendor/golang.org/x/net/route/interface_classic.go
method parseInterfaceMessage (line 11) | func (w *wireFormat) parseInterfaceMessage(_ RIBType, b []byte) (Message...
method parseInterfaceAddrMessage (line 41) | func (w *wireFormat) parseInterfaceAddrMessage(_ RIBType, b []byte) (Mes...
FILE: vendor/golang.org/x/net/route/interface_freebsd.go
method parseInterfaceMessage (line 7) | func (w *wireFormat) parseInterfaceMessage(typ RIBType, b []byte) (Messa...
method parseInterfaceAddrMessage (line 48) | func (w *wireFormat) parseInterfaceAddrMessage(typ RIBType, b []byte) (M...
FILE: vendor/golang.org/x/net/route/interface_multicast.go
method parseInterfaceMulticastAddrMessage (line 9) | func (w *wireFormat) parseInterfaceMulticastAddrMessage(_ RIBType, b []b...
FILE: vendor/golang.org/x/net/route/interface_openbsd.go
method parseInterfaceMessage (line 7) | func (*wireFormat) parseInterfaceMessage(_ RIBType, b []byte) (Message, ...
method parseInterfaceAddrMessage (line 40) | func (*wireFormat) parseInterfaceAddrMessage(_ RIBType, b []byte) (Messa...
method parseInterfaceAnnounceMessage (line 67) | func (*wireFormat) parseInterfaceAnnounceMessage(_ RIBType, b []byte) (M...
FILE: vendor/golang.org/x/net/route/message.go
type Message (line 10) | type Message interface
type Sys (line 16) | type Sys interface
type SysType (line 24) | type SysType
constant SysMetrics (line 27) | SysMetrics SysType = iota
constant SysStats (line 28) | SysStats
function ParseRIB (line 33) | func ParseRIB(typ RIBType, b []byte) ([]Message, error) {
FILE: vendor/golang.org/x/net/route/message_darwin_test.go
function TestFetchAndParseRIBOnDarwin (line 9) | func TestFetchAndParseRIBOnDarwin(t *testing.T) {
FILE: vendor/golang.org/x/net/route/message_freebsd_test.go
function TestFetchAndParseRIBOnFreeBSD (line 12) | func TestFetchAndParseRIBOnFreeBSD(t *testing.T) {
function TestFetchAndParseRIBOnFreeBSD10AndAbove (line 39) | func TestFetchAndParseRIBOnFreeBSD10AndAbove(t *testing.T) {
FILE: vendor/golang.org/x/net/route/message_test.go
function TestFetchAndParseRIB (line 16) | func TestFetchAndParseRIB(t *testing.T) {
function init (line 48) | func init() {
function TestMonitorAndParseRIB (line 56) | func TestMonitorAndParseRIB(t *testing.T) {
function TestParseRIBWithFuzz (line 123) | func TestParseRIBWithFuzz(t *testing.T) {
function TestRouteMessage (line 146) | func TestRouteMessage(t *testing.T) {
FILE: vendor/golang.org/x/net/route/route.go
type RouteMessage (line 72) | type RouteMessage struct
method Marshal (line 87) | func (m *RouteMessage) Marshal() ([]byte, error) {
type RIBType (line 92) | type RIBType
constant RIBTypeRoute (line 95) | RIBTypeRoute RIBType = syscall.NET_RT_DUMP
constant RIBTypeInterface (line 96) | RIBTypeInterface RIBType = syscall.NET_RT_IFLIST
function FetchRIB (line 109) | func FetchRIB(af int, typ RIBType, arg int) ([]byte, error) {
FILE: vendor/golang.org/x/net/route/route_classic.go
method marshal (line 11) | func (m *RouteMessage) marshal() ([]byte, error) {
method parseRouteMessage (line 39) | func (w *wireFormat) parseRouteMessage(typ RIBType, b []byte) (Message, ...
FILE: vendor/golang.org/x/net/route/route_openbsd.go
method marshal (line 9) | func (m *RouteMessage) marshal() ([]byte, error) {
method parseRouteMessage (line 34) | func (*wireFormat) parseRouteMessage(_ RIBType, b []byte) (Message, erro...
FILE: vendor/golang.org/x/net/route/route_test.go
method String (line 16) | func (m *RouteMessage) String() string {
method String (line 20) | func (m *InterfaceMessage) String() string {
method String (line 30) | func (m *InterfaceAddrMessage) String() string {
method String (line 40) | func (m *InterfaceMulticastAddrMessage) String() string {
method String (line 44) | func (m *InterfaceAnnounceMessage) String() string {
method String (line 55) | func (m *InterfaceMetrics) String() string {
method String (line 59) | func (m *RouteMetrics) String() string {
type addrAttrs (line 63) | type addrAttrs
method String (line 83) | func (attrs addrAttrs) String() string {
type msgs (line 99) | type msgs
method validate (line 101) | func (ms msgs) validate() ([]string, error) {
type syss (line 154) | type syss
method String (line 156) | func (sys syss) String() string {
type addrFamily (line 175) | type addrFamily
method String (line 177) | func (af addrFamily) String() string {
constant hexDigit (line 192) | hexDigit = "0123456789abcdef"
type llAddr (line 194) | type llAddr
method String (line 196) | func (a llAddr) String() string {
type ipAddr (line 211) | type ipAddr
method String (line 213) | func (a ipAddr) String() string {
method String (line 230) | func (a *LinkAddr) String() string {
method String (line 242) | func (a *Inet4Addr) String() string {
method String (line 246) | func (a *Inet6Addr) String() string {
method String (line 250) | func (a *DefaultAddr) String() string {
type addrs (line 254) | type addrs
method String (line 256) | func (as addrs) String() string {
method match (line 282) | func (as addrs) match(attrs addrAttrs) error {
function fetchAndParseRIB (line 312) | func fetchAndParseRIB(af int, typ RIBType) ([]Message, error) {
type propVirtual (line 333) | type propVirtual struct
method setup (line 340) | func (pv *propVirtual) setup() error {
method teardown (line 350) | func (pv *propVirtual) teardown() error {
method configure (line 359) | func (pv *propVirtual) configure(suffix int) error {
FILE: vendor/golang.org/x/net/route/sys.go
function init (line 17) | func init() {
function roundup (line 28) | func roundup(l int) int {
type wireFormat (line 35) | type wireFormat struct
FILE: vendor/golang.org/x/net/route/sys_darwin.go
method parseable (line 7) | func (typ RIBType) parseable() bool {
type RouteMetrics (line 17) | type RouteMetrics struct
method SysType (line 22) | func (rmx *RouteMetrics) SysType() SysType { return SysMetrics }
method Sys (line 25) | func (m *RouteMessage) Sys() []Sys {
type InterfaceMetrics (line 34) | type InterfaceMetrics struct
method SysType (line 40) | func (imx *InterfaceMetrics) SysType() SysType { return SysMetrics }
method Sys (line 43) | func (m *InterfaceMessage) Sys() []Sys {
function probeRoutingStack (line 52) | func probeRoutingStack() (int, map[int]*wireFormat) {
FILE: vendor/golang.org/x/net/route/sys_dragonfly.go
method parseable (line 9) | func (typ RIBType) parseable() bool { return true }
type RouteMetrics (line 12) | type RouteMetrics struct
method SysType (line 17) | func (rmx *RouteMetrics) SysType() SysType { return SysMetrics }
method Sys (line 20) | func (m *RouteMessage) Sys() []Sys {
type InterfaceMetrics (line 29) | type InterfaceMetrics struct
method SysType (line 35) | func (imx *InterfaceMetrics) SysType() SysType { return SysMetrics }
method Sys (line 38) | func (m *InterfaceMessage) Sys() []Sys {
function probeRoutingStack (line 47) | func probeRoutingStack() (int, map[int]*wireFormat) {
FILE: vendor/golang.org/x/net/route/sys_freebsd.go
method parseable (line 12) | func (typ RIBType) parseable() bool { return true }
type RouteMetrics (line 15) | type RouteMetrics struct
method SysType (line 20) | func (rmx *RouteMetrics) SysType() SysType { return SysMetrics }
method Sys (line 23) | func (m *RouteMessage) Sys() []Sys {
type InterfaceMetrics (line 39) | type InterfaceMetrics struct
method SysType (line 45) | func (imx *InterfaceMetrics) SysType() SysType { return SysMetrics }
method Sys (line 48) | func (m *InterfaceMessage) Sys() []Sys {
function probeRoutingStack (line 57) | func probeRoutingStack() (int, map[int]*wireFormat) {
FILE: vendor/golang.org/x/net/route/sys_netbsd.go
method parseable (line 7) | func (typ RIBType) parseable() bool { return true }
type RouteMetrics (line 10) | type RouteMetrics struct
method SysType (line 15) | func (rmx *RouteMetrics) SysType() SysType { return SysMetrics }
method Sys (line 18) | func (m *RouteMessage) Sys() []Sys {
type InterfaceMetrics (line 27) | type InterfaceMetrics struct
method SysType (line 33) | func (imx *InterfaceMetrics) SysType() SysType { return SysMetrics }
method Sys (line 36) | func (m *InterfaceMessage) Sys() []Sys {
function probeRoutingStack (line 45) | func probeRoutingStack() (int, map[int]*wireFormat) {
FILE: vendor/golang.org/x/net/route/sys_openbsd.go
method parseable (line 9) | func (typ RIBType) parseable() bool {
type RouteMetrics (line 19) | type RouteMetrics struct
method SysType (line 24) | func (rmx *RouteMetrics) SysType() SysType { return SysMetrics }
method Sys (line 27) | func (m *RouteMessage) Sys() []Sys {
type InterfaceMetrics (line 36) | type InterfaceMetrics struct
method SysType (line 42) | func (imx *InterfaceMetrics) SysType() SysType { return SysMetrics }
method Sys (line 45) | func (m *InterfaceMessage) Sys() []Sys {
function probeRoutingStack (line 54) | func probeRoutingStack() (int, map[int]*wireFormat) {
FILE: vendor/golang.org/x/net/route/syscall.go
function sysctl (line 16) | func sysctl(mib []int32, old *byte, oldlen *uintptr, new *byte, newlen u...
FILE: vendor/golang.org/x/net/route/zsys_darwin.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_ROUTE (line 9) | sysAF_ROUTE = 0x11
constant sysAF_LINK (line 10) | sysAF_LINK = 0x12
constant sysAF_INET6 (line 11) | sysAF_INET6 = 0x1e
constant sysSOCK_RAW (line 13) | sysSOCK_RAW = 0x3
constant sysNET_RT_DUMP (line 15) | sysNET_RT_DUMP = 0x1
constant sysNET_RT_FLAGS (line 16) | sysNET_RT_FLAGS = 0x2
constant sysNET_RT_IFLIST (line 17) | sysNET_RT_IFLIST = 0x3
constant sysNET_RT_STAT (line 18) | sysNET_RT_STAT = 0x4
constant sysNET_RT_TRASH (line 19) | sysNET_RT_TRASH = 0x5
constant sysNET_RT_IFLIST2 (line 20) | sysNET_RT_IFLIST2 = 0x6
constant sysNET_RT_DUMP2 (line 21) | sysNET_RT_DUMP2 = 0x7
constant sysNET_RT_MAXID (line 22) | sysNET_RT_MAXID = 0xa
constant sysCTL_MAXNAME (line 26) | sysCTL_MAXNAME = 0xc
constant sysCTL_UNSPEC (line 28) | sysCTL_UNSPEC = 0x0
constant sysCTL_KERN (line 29) | sysCTL_KERN = 0x1
constant sysCTL_VM (line 30) | sysCTL_VM = 0x2
constant sysCTL_VFS (line 31) | sysCTL_VFS = 0x3
constant sysCTL_NET (line 32) | sysCTL_NET = 0x4
constant sysCTL_DEBUG (line 33) | sysCTL_DEBUG = 0x5
constant sysCTL_HW (line 34) | sysCTL_HW = 0x6
constant sysCTL_MACHDEP (line 35) | sysCTL_MACHDEP = 0x7
constant sysCTL_USER (line 36) | sysCTL_USER = 0x8
constant sysCTL_MAXID (line 37) | sysCTL_MAXID = 0x9
constant sysRTM_VERSION (line 41) | sysRTM_VERSION = 0x5
constant sysRTM_ADD (line 43) | sysRTM_ADD = 0x1
constant sysRTM_DELETE (line 44) | sysRTM_DELETE = 0x2
constant sysRTM_CHANGE (line 45) | sysRTM_CHANGE = 0x3
constant sysRTM_GET (line 46) | sysRTM_GET = 0x4
constant sysRTM_LOSING (line 47) | sysRTM_LOSING = 0x5
constant sysRTM_REDIRECT (line 48) | sysRTM_REDIRECT = 0x6
constant sysRTM_MISS (line 49) | sysRTM_MISS = 0x7
constant sysRTM_LOCK (line 50) | sysRTM_LOCK = 0x8
constant sysRTM_OLDADD (line 51) | sysRTM_OLDADD = 0x9
constant sysRTM_OLDDEL (line 52) | sysRTM_OLDDEL = 0xa
constant sysRTM_RESOLVE (line 53) | sysRTM_RESOLVE = 0xb
constant sysRTM_NEWADDR (line 54) | sysRTM_NEWADDR = 0xc
constant sysRTM_DELADDR (line 55) | sysRTM_DELADDR = 0xd
constant sysRTM_IFINFO (line 56) | sysRTM_IFINFO = 0xe
constant sysRTM_NEWMADDR (line 57) | sysRTM_NEWMADDR = 0xf
constant sysRTM_DELMADDR (line 58) | sysRTM_DELMADDR = 0x10
constant sysRTM_IFINFO2 (line 59) | sysRTM_IFINFO2 = 0x12
constant sysRTM_NEWMADDR2 (line 60) | sysRTM_NEWMADDR2 = 0x13
constant sysRTM_GET2 (line 61) | sysRTM_GET2 = 0x14
constant sysRTA_DST (line 63) | sysRTA_DST = 0x1
constant sysRTA_GATEWAY (line 64) | sysRTA_GATEWAY = 0x2
constant sysRTA_NETMASK (line 65) | sysRTA_NETMASK = 0x4
constant sysRTA_GENMASK (line 66) | sysRTA_GENMASK = 0x8
constant sysRTA_IFP (line 67) | sysRTA_IFP = 0x10
constant sysRTA_IFA (line 68) | sysRTA_IFA = 0x20
constant sysRTA_AUTHOR (line 69) | sysRTA_AUTHOR = 0x40
constant sysRTA_BRD (line 70) | sysRTA_BRD = 0x80
constant sysRTAX_DST (line 72) | sysRTAX_DST = 0x0
constant sysRTAX_GATEWAY (line 73) | sysRTAX_GATEWAY = 0x1
constant sysRTAX_NETMASK (line 74) | sysRTAX_NETMASK = 0x2
constant sysRTAX_GENMASK (line 75) | sysRTAX_GENMASK = 0x3
constant sysRTAX_IFP (line 76) | sysRTAX_IFP = 0x4
constant sysRTAX_IFA (line 77) | sysRTAX_IFA = 0x5
constant sysRTAX_AUTHOR (line 78) | sysRTAX_AUTHOR = 0x6
constant sysRTAX_BRD (line 79) | sysRTAX_BRD = 0x7
constant sysRTAX_MAX (line 80) | sysRTAX_MAX = 0x8
constant sizeofIfMsghdrDarwin15 (line 84) | sizeofIfMsghdrDarwin15 = 0x70
constant sizeofIfaMsghdrDarwin15 (line 85) | sizeofIfaMsghdrDarwin15 = 0x14
constant sizeofIfmaMsghdrDarwin15 (line 86) | sizeofIfmaMsghdrDarwin15 = 0x10
constant sizeofIfMsghdr2Darwin15 (line 87) | sizeofIfMsghdr2Darwin15 = 0xa0
constant sizeofIfmaMsghdr2Darwin15 (line 88) | sizeofIfmaMsghdr2Darwin15 = 0x14
constant sizeofIfDataDarwin15 (line 89) | sizeofIfDataDarwin15 = 0x60
constant sizeofIfData64Darwin15 (line 90) | sizeofIfData64Darwin15 = 0x80
constant sizeofRtMsghdrDarwin15 (line 92) | sizeofRtMsghdrDarwin15 = 0x5c
constant sizeofRtMsghdr2Darwin15 (line 93) | sizeofRtMsghdr2Darwin15 = 0x5c
constant sizeofRtMetricsDarwin15 (line 94) | sizeofRtMetricsDarwin15 = 0x38
constant sizeofSockaddrStorage (line 96) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 97) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 98) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/route/zsys_dragonfly.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_ROUTE (line 9) | sysAF_ROUTE = 0x11
constant sysAF_LINK (line 10) | sysAF_LINK = 0x12
constant sysAF_INET6 (line 11) | sysAF_INET6 = 0x1c
constant sysSOCK_RAW (line 13) | sysSOCK_RAW = 0x3
constant sysNET_RT_DUMP (line 15) | sysNET_RT_DUMP = 0x1
constant sysNET_RT_FLAGS (line 16) | sysNET_RT_FLAGS = 0x2
constant sysNET_RT_IFLIST (line 17) | sysNET_RT_IFLIST = 0x3
constant sysNET_RT_MAXID (line 18) | sysNET_RT_MAXID = 0x4
constant sysCTL_MAXNAME (line 22) | sysCTL_MAXNAME = 0xc
constant sysCTL_UNSPEC (line 24) | sysCTL_UNSPEC = 0x0
constant sysCTL_KERN (line 25) | sysCTL_KERN = 0x1
constant sysCTL_VM (line 26) | sysCTL_VM = 0x2
constant sysCTL_VFS (line 27) | sysCTL_VFS = 0x3
constant sysCTL_NET (line 28) | sysCTL_NET = 0x4
constant sysCTL_DEBUG (line 29) | sysCTL_DEBUG = 0x5
constant sysCTL_HW (line 30) | sysCTL_HW = 0x6
constant sysCTL_MACHDEP (line 31) | sysCTL_MACHDEP = 0x7
constant sysCTL_USER (line 32) | sysCTL_USER = 0x8
constant sysCTL_P1003_1B (line 33) | sysCTL_P1003_1B = 0x9
constant sysCTL_LWKT (line 34) | sysCTL_LWKT = 0xa
constant sysCTL_MAXID (line 35) | sysCTL_MAXID = 0xb
constant sysRTM_VERSION (line 39) | sysRTM_VERSION = 0x6
constant sysRTM_ADD (line 41) | sysRTM_ADD = 0x1
constant sysRTM_DELETE (line 42) | sysRTM_DELETE = 0x2
constant sysRTM_CHANGE (line 43) | sysRTM_CHANGE = 0x3
constant sysRTM_GET (line 44) | sysRTM_GET = 0x4
constant sysRTM_LOSING (line 45) | sysRTM_LOSING = 0x5
constant sysRTM_REDIRECT (line 46) | sysRTM_REDIRECT = 0x6
constant sysRTM_MISS (line 47) | sysRTM_MISS = 0x7
constant sysRTM_LOCK (line 48) | sysRTM_LOCK = 0x8
constant sysRTM_OLDADD (line 49) | sysRTM_OLDADD = 0x9
constant sysRTM_OLDDEL (line 50) | sysRTM_OLDDEL = 0xa
constant sysRTM_RESOLVE (line 51) | sysRTM_RESOLVE = 0xb
constant sysRTM_NEWADDR (line 52) | sysRTM_NEWADDR = 0xc
constant sysRTM_DELADDR (line 53) | sysRTM_DELADDR = 0xd
constant sysRTM_IFINFO (line 54) | sysRTM_IFINFO = 0xe
constant sysRTM_NEWMADDR (line 55) | sysRTM_NEWMADDR = 0xf
constant sysRTM_DELMADDR (line 56) | sysRTM_DELMADDR = 0x10
constant sysRTM_IFANNOUNCE (line 57) | sysRTM_IFANNOUNCE = 0x11
constant sysRTM_IEEE80211 (line 58) | sysRTM_IEEE80211 = 0x12
constant sysRTA_DST (line 60) | sysRTA_DST = 0x1
constant sysRTA_GATEWAY (line 61) | sysRTA_GATEWAY = 0x2
constant sysRTA_NETMASK (line 62) | sysRTA_NETMASK = 0x4
constant sysRTA_GENMASK (line 63) | sysRTA_GENMASK = 0x8
constant sysRTA_IFP (line 64) | sysRTA_IFP = 0x10
constant sysRTA_IFA (line 65) | sysRTA_IFA = 0x20
constant sysRTA_AUTHOR (line 66) | sysRTA_AUTHOR = 0x40
constant sysRTA_BRD (line 67) | sysRTA_BRD = 0x80
constant sysRTA_MPLS1 (line 68) | sysRTA_MPLS1 = 0x100
constant sysRTA_MPLS2 (line 69) | sysRTA_MPLS2 = 0x200
constant sysRTA_MPLS3 (line 70) | sysRTA_MPLS3 = 0x400
constant sysRTAX_DST (line 72) | sysRTAX_DST = 0x0
constant sysRTAX_GATEWAY (line 73) | sysRTAX_GATEWAY = 0x1
constant sysRTAX_NETMASK (line 74) | sysRTAX_NETMASK = 0x2
constant sysRTAX_GENMASK (line 75) | sysRTAX_GENMASK = 0x3
constant sysRTAX_IFP (line 76) | sysRTAX_IFP = 0x4
constant sysRTAX_IFA (line 77) | sysRTAX_IFA = 0x5
constant sysRTAX_AUTHOR (line 78) | sysRTAX_AUTHOR = 0x6
constant sysRTAX_BRD (line 79) | sysRTAX_BRD = 0x7
constant sysRTAX_MPLS1 (line 80) | sysRTAX_MPLS1 = 0x8
constant sysRTAX_MPLS2 (line 81) | sysRTAX_MPLS2 = 0x9
constant sysRTAX_MPLS3 (line 82) | sysRTAX_MPLS3 = 0xa
constant sysRTAX_MAX (line 83) | sysRTAX_MAX = 0xb
constant sizeofIfMsghdrDragonFlyBSD4 (line 87) | sizeofIfMsghdrDragonFlyBSD4 = 0xb0
constant sizeofIfaMsghdrDragonFlyBSD4 (line 88) | sizeofIfaMsghdrDragonFlyBSD4 = 0x14
constant sizeofIfmaMsghdrDragonFlyBSD4 (line 89) | sizeofIfmaMsghdrDragonFlyBSD4 = 0x10
constant sizeofIfAnnouncemsghdrDragonFlyBSD4 (line 90) | sizeofIfAnnouncemsghdrDragonFlyBSD4 = 0x18
constant sizeofRtMsghdrDragonFlyBSD4 (line 92) | sizeofRtMsghdrDragonFlyBSD4 = 0x98
constant sizeofRtMetricsDragonFlyBSD4 (line 93) | sizeofRtMetricsDragonFlyBSD4 = 0x70
constant sizeofSockaddrStorage (line 95) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 96) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 97) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/route/zsys_freebsd_386.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_ROUTE (line 9) | sysAF_ROUTE = 0x11
constant sysAF_LINK (line 10) | sysAF_LINK = 0x12
constant sysAF_INET6 (line 11) | sysAF_INET6 = 0x1c
constant sysSOCK_RAW (line 13) | sysSOCK_RAW = 0x3
constant sysNET_RT_DUMP (line 15) | sysNET_RT_DUMP = 0x1
constant sysNET_RT_FLAGS (line 16) | sysNET_RT_FLAGS = 0x2
constant sysNET_RT_IFLIST (line 17) | sysNET_RT_IFLIST = 0x3
constant sysNET_RT_IFMALIST (line 18) | sysNET_RT_IFMALIST = 0x4
constant sysNET_RT_IFLISTL (line 19) | sysNET_RT_IFLISTL = 0x5
constant sysCTL_MAXNAME (line 23) | sysCTL_MAXNAME = 0x18
constant sysCTL_UNSPEC (line 25) | sysCTL_UNSPEC = 0x0
constant sysCTL_KERN (line 26) | sysCTL_KERN = 0x1
constant sysCTL_VM (line 27) | sysCTL_VM = 0x2
constant sysCTL_VFS (line 28) | sysCTL_VFS = 0x3
constant sysCTL_NET (line 29) | sysCTL_NET = 0x4
constant sysCTL_DEBUG (line 30) | sysCTL_DEBUG = 0x5
constant sysCTL_HW (line 31) | sysCTL_HW = 0x6
constant sysCTL_MACHDEP (line 32) | sysCTL_MACHDEP = 0x7
constant sysCTL_USER (line 33) | sysCTL_USER = 0x8
constant sysCTL_P1003_1B (line 34) | sysCTL_P1003_1B = 0x9
constant sysRTM_VERSION (line 38) | sysRTM_VERSION = 0x5
constant sysRTM_ADD (line 40) | sysRTM_ADD = 0x1
constant sysRTM_DELETE (line 41) | sysRTM_DELETE = 0x2
constant sysRTM_CHANGE (line 42) | sysRTM_CHANGE = 0x3
constant sysRTM_GET (line 43) | sysRTM_GET = 0x4
constant sysRTM_LOSING (line 44) | sysRTM_LOSING = 0x5
constant sysRTM_REDIRECT (line 45) | sysRTM_REDIRECT = 0x6
constant sysRTM_MISS (line 46) | sysRTM_MISS = 0x7
constant sysRTM_LOCK (line 47) | sysRTM_LOCK = 0x8
constant sysRTM_RESOLVE (line 48) | sysRTM_RESOLVE = 0xb
constant sysRTM_NEWADDR (line 49) | sysRTM_NEWADDR = 0xc
constant sysRTM_DELADDR (line 50) | sysRTM_DELADDR = 0xd
constant sysRTM_IFINFO (line 51) | sysRTM_IFINFO = 0xe
constant sysRTM_NEWMADDR (line 52) | sysRTM_NEWMADDR = 0xf
constant sysRTM_DELMADDR (line 53) | sysRTM_DELMADDR = 0x10
constant sysRTM_IFANNOUNCE (line 54) | sysRTM_IFANNOUNCE = 0x11
constant sysRTM_IEEE80211 (line 55) | sysRTM_IEEE80211 = 0x12
constant sysRTA_DST (line 57) | sysRTA_DST = 0x1
constant sysRTA_GATEWAY (line 58) | sysRTA_GATEWAY = 0x2
constant sysRTA_NETMASK (line 59) | sysRTA_NETMASK = 0x4
constant sysRTA_GENMASK (line 60) | sysRTA_GENMASK = 0x8
constant sysRTA_IFP (line 61) | sysRTA_IFP = 0x10
constant sysRTA_IFA (line 62) | sysRTA_IFA = 0x20
constant sysRTA_AUTHOR (line 63) | sysRTA_AUTHOR = 0x40
constant sysRTA_BRD (line 64) | sysRTA_BRD = 0x80
constant sysRTAX_DST (line 66) | sysRTAX_DST = 0x0
constant sysRTAX_GATEWAY (line 67) | sysRTAX_GATEWAY = 0x1
constant sysRTAX_NETMASK (line 68) | sysRTAX_NETMASK = 0x2
constant sysRTAX_GENMASK (line 69) | sysRTAX_GENMASK = 0x3
constant sysRTAX_IFP (line 70) | sysRTAX_IFP = 0x4
constant sysRTAX_IFA (line 71) | sysRTAX_IFA = 0x5
constant sysRTAX_AUTHOR (line 72) | sysRTAX_AUTHOR = 0x6
constant sysRTAX_BRD (line 73) | sysRTAX_BRD = 0x7
constant sysRTAX_MAX (line 74) | sysRTAX_MAX = 0x8
constant sizeofIfMsghdrlFreeBSD10 (line 78) | sizeofIfMsghdrlFreeBSD10 = 0x68
constant sizeofIfaMsghdrFreeBSD10 (line 79) | sizeofIfaMsghdrFreeBSD10 = 0x14
constant sizeofIfaMsghdrlFreeBSD10 (line 80) | sizeofIfaMsghdrlFreeBSD10 = 0x6c
constant sizeofIfmaMsghdrFreeBSD10 (line 81) | sizeofIfmaMsghdrFreeBSD10 = 0x10
constant sizeofIfAnnouncemsghdrFreeBSD10 (line 82) | sizeofIfAnnouncemsghdrFreeBSD10 = 0x18
constant sizeofRtMsghdrFreeBSD10 (line 84) | sizeofRtMsghdrFreeBSD10 = 0x5c
constant sizeofRtMetricsFreeBSD10 (line 85) | sizeofRtMetricsFreeBSD10 = 0x38
constant sizeofIfMsghdrFreeBSD7 (line 87) | sizeofIfMsghdrFreeBSD7 = 0x60
constant sizeofIfMsghdrFreeBSD8 (line 88) | sizeofIfMsghdrFreeBSD8 = 0x60
constant sizeofIfMsghdrFreeBSD9 (line 89) | sizeofIfMsghdrFreeBSD9 = 0x60
constant sizeofIfMsghdrFreeBSD10 (line 90) | sizeofIfMsghdrFreeBSD10 = 0x64
constant sizeofIfMsghdrFreeBSD11 (line 91) | sizeofIfMsghdrFreeBSD11 = 0xa8
constant sizeofIfDataFreeBSD7 (line 93) | sizeofIfDataFreeBSD7 = 0x50
constant sizeofIfDataFreeBSD8 (line 94) | sizeofIfDataFreeBSD8 = 0x50
constant sizeofIfDataFreeBSD9 (line 95) | sizeofIfDataFreeBSD9 = 0x50
constant sizeofIfDataFreeBSD10 (line 96) | sizeofIfDataFreeBSD10 = 0x54
constant sizeofIfDataFreeBSD11 (line 97) | sizeofIfDataFreeBSD11 = 0x98
constant sizeofIfMsghdrlFreeBSD10Emu (line 102) | sizeofIfMsghdrlFreeBSD10Emu = 0xb0
constant sizeofIfaMsghdrFreeBSD10Emu (line 103) | sizeofIfaMsghdrFreeBSD10Emu = 0x14
constant sizeofIfaMsghdrlFreeBSD10Emu (line 104) | sizeofIfaMsghdrlFreeBSD10Emu = 0xb0
constant sizeofIfmaMsghdrFreeBSD10Emu (line 105) | sizeofIfmaMsghdrFreeBSD10Emu = 0x10
constant sizeofIfAnnouncemsghdrFreeBSD10Emu (line 106) | sizeofIfAnnouncemsghdrFreeBSD10Emu = 0x18
constant sizeofRtMsghdrFreeBSD10Emu (line 108) | sizeofRtMsghdrFreeBSD10Emu = 0x98
constant sizeofRtMetricsFreeBSD10Emu (line 109) | sizeofRtMetricsFreeBSD10Emu = 0x70
constant sizeofIfMsghdrFreeBSD7Emu (line 111) | sizeofIfMsghdrFreeBSD7Emu = 0xa8
constant sizeofIfMsghdrFreeBSD8Emu (line 112) | sizeofIfMsghdrFreeBSD8Emu = 0xa8
constant sizeofIfMsghdrFreeBSD9Emu (line 113) | sizeofIfMsghdrFreeBSD9Emu = 0xa8
constant sizeofIfMsghdrFreeBSD10Emu (line 114) | sizeofIfMsghdrFreeBSD10Emu = 0xa8
constant sizeofIfMsghdrFreeBSD11Emu (line 115) | sizeofIfMsghdrFreeBSD11Emu = 0xa8
constant sizeofIfDataFreeBSD7Emu (line 117) | sizeofIfDataFreeBSD7Emu = 0x98
constant sizeofIfDataFreeBSD8Emu (line 118) | sizeofIfDataFreeBSD8Emu = 0x98
constant sizeofIfDataFreeBSD9Emu (line 119) | sizeofIfDataFreeBSD9Emu = 0x98
constant sizeofIfDataFreeBSD10Emu (line 120) | sizeofIfDataFreeBSD10Emu = 0x98
constant sizeofIfDataFreeBSD11Emu (line 121) | sizeofIfDataFreeBSD11Emu = 0x98
constant sizeofSockaddrStorage (line 123) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 124) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 125) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/route/zsys_freebsd_amd64.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_ROUTE (line 9) | sysAF_ROUTE = 0x11
constant sysAF_LINK (line 10) | sysAF_LINK = 0x12
constant sysAF_INET6 (line 11) | sysAF_INET6 = 0x1c
constant sysSOCK_RAW (line 13) | sysSOCK_RAW = 0x3
constant sysNET_RT_DUMP (line 15) | sysNET_RT_DUMP = 0x1
constant sysNET_RT_FLAGS (line 16) | sysNET_RT_FLAGS = 0x2
constant sysNET_RT_IFLIST (line 17) | sysNET_RT_IFLIST = 0x3
constant sysNET_RT_IFMALIST (line 18) | sysNET_RT_IFMALIST = 0x4
constant sysNET_RT_IFLISTL (line 19) | sysNET_RT_IFLISTL = 0x5
constant sysCTL_MAXNAME (line 23) | sysCTL_MAXNAME = 0x18
constant sysCTL_UNSPEC (line 25) | sysCTL_UNSPEC = 0x0
constant sysCTL_KERN (line 26) | sysCTL_KERN = 0x1
constant sysCTL_VM (line 27) | sysCTL_VM = 0x2
constant sysCTL_VFS (line 28) | sysCTL_VFS = 0x3
constant sysCTL_NET (line 29) | sysCTL_NET = 0x4
constant sysCTL_DEBUG (line 30) | sysCTL_DEBUG = 0x5
constant sysCTL_HW (line 31) | sysCTL_HW = 0x6
constant sysCTL_MACHDEP (line 32) | sysCTL_MACHDEP = 0x7
constant sysCTL_USER (line 33) | sysCTL_USER = 0x8
constant sysCTL_P1003_1B (line 34) | sysCTL_P1003_1B = 0x9
constant sysRTM_VERSION (line 38) | sysRTM_VERSION = 0x5
constant sysRTM_ADD (line 40) | sysRTM_ADD = 0x1
constant sysRTM_DELETE (line 41) | sysRTM_DELETE = 0x2
constant sysRTM_CHANGE (line 42) | sysRTM_CHANGE = 0x3
constant sysRTM_GET (line 43) | sysRTM_GET = 0x4
constant sysRTM_LOSING (line 44) | sysRTM_LOSING = 0x5
constant sysRTM_REDIRECT (line 45) | sysRTM_REDIRECT = 0x6
constant sysRTM_MISS (line 46) | sysRTM_MISS = 0x7
constant sysRTM_LOCK (line 47) | sysRTM_LOCK = 0x8
constant sysRTM_RESOLVE (line 48) | sysRTM_RESOLVE = 0xb
constant sysRTM_NEWADDR (line 49) | sysRTM_NEWADDR = 0xc
constant sysRTM_DELADDR (line 50) | sysRTM_DELADDR = 0xd
constant sysRTM_IFINFO (line 51) | sysRTM_IFINFO = 0xe
constant sysRTM_NEWMADDR (line 52) | sysRTM_NEWMADDR = 0xf
constant sysRTM_DELMADDR (line 53) | sysRTM_DELMADDR = 0x10
constant sysRTM_IFANNOUNCE (line 54) | sysRTM_IFANNOUNCE = 0x11
constant sysRTM_IEEE80211 (line 55) | sysRTM_IEEE80211 = 0x12
constant sysRTA_DST (line 57) | sysRTA_DST = 0x1
constant sysRTA_GATEWAY (line 58) | sysRTA_GATEWAY = 0x2
constant sysRTA_NETMASK (line 59) | sysRTA_NETMASK = 0x4
constant sysRTA_GENMASK (line 60) | sysRTA_GENMASK = 0x8
constant sysRTA_IFP (line 61) | sysRTA_IFP = 0x10
constant sysRTA_IFA (line 62) | sysRTA_IFA = 0x20
constant sysRTA_AUTHOR (line 63) | sysRTA_AUTHOR = 0x40
constant sysRTA_BRD (line 64) | sysRTA_BRD = 0x80
constant sysRTAX_DST (line 66) | sysRTAX_DST = 0x0
constant sysRTAX_GATEWAY (line 67) | sysRTAX_GATEWAY = 0x1
constant sysRTAX_NETMASK (line 68) | sysRTAX_NETMASK = 0x2
constant sysRTAX_GENMASK (line 69) | sysRTAX_GENMASK = 0x3
constant sysRTAX_IFP (line 70) | sysRTAX_IFP = 0x4
constant sysRTAX_IFA (line 71) | sysRTAX_IFA = 0x5
constant sysRTAX_AUTHOR (line 72) | sysRTAX_AUTHOR = 0x6
constant sysRTAX_BRD (line 73) | sysRTAX_BRD = 0x7
constant sysRTAX_MAX (line 74) | sysRTAX_MAX = 0x8
constant sizeofIfMsghdrlFreeBSD10 (line 78) | sizeofIfMsghdrlFreeBSD10 = 0xb0
constant sizeofIfaMsghdrFreeBSD10 (line 79) | sizeofIfaMsghdrFreeBSD10 = 0x14
constant sizeofIfaMsghdrlFreeBSD10 (line 80) | sizeofIfaMsghdrlFreeBSD10 = 0xb0
constant sizeofIfmaMsghdrFreeBSD10 (line 81) | sizeofIfmaMsghdrFreeBSD10 = 0x10
constant sizeofIfAnnouncemsghdrFreeBSD10 (line 82) | sizeofIfAnnouncemsghdrFreeBSD10 = 0x18
constant sizeofRtMsghdrFreeBSD10 (line 84) | sizeofRtMsghdrFreeBSD10 = 0x98
constant sizeofRtMetricsFreeBSD10 (line 85) | sizeofRtMetricsFreeBSD10 = 0x70
constant sizeofIfMsghdrFreeBSD7 (line 87) | sizeofIfMsghdrFreeBSD7 = 0xa8
constant sizeofIfMsghdrFreeBSD8 (line 88) | sizeofIfMsghdrFreeBSD8 = 0xa8
constant sizeofIfMsghdrFreeBSD9 (line 89) | sizeofIfMsghdrFreeBSD9 = 0xa8
constant sizeofIfMsghdrFreeBSD10 (line 90) | sizeofIfMsghdrFreeBSD10 = 0xa8
constant sizeofIfMsghdrFreeBSD11 (line 91) | sizeofIfMsghdrFreeBSD11 = 0xa8
constant sizeofIfDataFreeBSD7 (line 93) | sizeofIfDataFreeBSD7 = 0x98
constant sizeofIfDataFreeBSD8 (line 94) | sizeofIfDataFreeBSD8 = 0x98
constant sizeofIfDataFreeBSD9 (line 95) | sizeofIfDataFreeBSD9 = 0x98
constant sizeofIfDataFreeBSD10 (line 96) | sizeofIfDataFreeBSD10 = 0x98
constant sizeofIfDataFreeBSD11 (line 97) | sizeofIfDataFreeBSD11 = 0x98
constant sizeofIfMsghdrlFreeBSD10Emu (line 99) | sizeofIfMsghdrlFreeBSD10Emu = 0xb0
constant sizeofIfaMsghdrFreeBSD10Emu (line 100) | sizeofIfaMsghdrFreeBSD10Emu = 0x14
constant sizeofIfaMsghdrlFreeBSD10Emu (line 101) | sizeofIfaMsghdrlFreeBSD10Emu = 0xb0
constant sizeofIfmaMsghdrFreeBSD10Emu (line 102) | sizeofIfmaMsghdrFreeBSD10Emu = 0x10
constant sizeofIfAnnouncemsghdrFreeBSD10Emu (line 103) | sizeofIfAnnouncemsghdrFreeBSD10Emu = 0x18
constant sizeofRtMsghdrFreeBSD10Emu (line 105) | sizeofRtMsghdrFreeBSD10Emu = 0x98
constant sizeofRtMetricsFreeBSD10Emu (line 106) | sizeofRtMetricsFreeBSD10Emu = 0x70
constant sizeofIfMsghdrFreeBSD7Emu (line 108) | sizeofIfMsghdrFreeBSD7Emu = 0xa8
constant sizeofIfMsghdrFreeBSD8Emu (line 109) | sizeofIfMsghdrFreeBSD8Emu = 0xa8
constant sizeofIfMsghdrFreeBSD9Emu (line 110) | sizeofIfMsghdrFreeBSD9Emu = 0xa8
constant sizeofIfMsghdrFreeBSD10Emu (line 111) | sizeofIfMsghdrFreeBSD10Emu = 0xa8
constant sizeofIfMsghdrFreeBSD11Emu (line 112) | sizeofIfMsghdrFreeBSD11Emu = 0xa8
constant sizeofIfDataFreeBSD7Emu (line 114) | sizeofIfDataFreeBSD7Emu = 0x98
constant sizeofIfDataFreeBSD8Emu (line 115) | sizeofIfDataFreeBSD8Emu = 0x98
constant sizeofIfDataFreeBSD9Emu (line 116) | sizeofIfDataFreeBSD9Emu = 0x98
constant sizeofIfDataFreeBSD10Emu (line 117) | sizeofIfDataFreeBSD10Emu = 0x98
constant sizeofIfDataFreeBSD11Emu (line 118) | sizeofIfDataFreeBSD11Emu = 0x98
constant sizeofSockaddrStorage (line 120) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 121) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 122) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/route/zsys_freebsd_arm.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_ROUTE (line 9) | sysAF_ROUTE = 0x11
constant sysAF_LINK (line 10) | sysAF_LINK = 0x12
constant sysAF_INET6 (line 11) | sysAF_INET6 = 0x1c
constant sysSOCK_RAW (line 13) | sysSOCK_RAW = 0x3
constant sysNET_RT_DUMP (line 15) | sysNET_RT_DUMP = 0x1
constant sysNET_RT_FLAGS (line 16) | sysNET_RT_FLAGS = 0x2
constant sysNET_RT_IFLIST (line 17) | sysNET_RT_IFLIST = 0x3
constant sysNET_RT_IFMALIST (line 18) | sysNET_RT_IFMALIST = 0x4
constant sysNET_RT_IFLISTL (line 19) | sysNET_RT_IFLISTL = 0x5
constant sysCTL_MAXNAME (line 23) | sysCTL_MAXNAME = 0x18
constant sysCTL_UNSPEC (line 25) | sysCTL_UNSPEC = 0x0
constant sysCTL_KERN (line 26) | sysCTL_KERN = 0x1
constant sysCTL_VM (line 27) | sysCTL_VM = 0x2
constant sysCTL_VFS (line 28) | sysCTL_VFS = 0x3
constant sysCTL_NET (line 29) | sysCTL_NET = 0x4
constant sysCTL_DEBUG (line 30) | sysCTL_DEBUG = 0x5
constant sysCTL_HW (line 31) | sysCTL_HW = 0x6
constant sysCTL_MACHDEP (line 32) | sysCTL_MACHDEP = 0x7
constant sysCTL_USER (line 33) | sysCTL_USER = 0x8
constant sysCTL_P1003_1B (line 34) | sysCTL_P1003_1B = 0x9
constant sysRTM_VERSION (line 38) | sysRTM_VERSION = 0x5
constant sysRTM_ADD (line 40) | sysRTM_ADD = 0x1
constant sysRTM_DELETE (line 41) | sysRTM_DELETE = 0x2
constant sysRTM_CHANGE (line 42) | sysRTM_CHANGE = 0x3
constant sysRTM_GET (line 43) | sysRTM_GET = 0x4
constant sysRTM_LOSING (line 44) | sysRTM_LOSING = 0x5
constant sysRTM_REDIRECT (line 45) | sysRTM_REDIRECT = 0x6
constant sysRTM_MISS (line 46) | sysRTM_MISS = 0x7
constant sysRTM_LOCK (line 47) | sysRTM_LOCK = 0x8
constant sysRTM_RESOLVE (line 48) | sysRTM_RESOLVE = 0xb
constant sysRTM_NEWADDR (line 49) | sysRTM_NEWADDR = 0xc
constant sysRTM_DELADDR (line 50) | sysRTM_DELADDR = 0xd
constant sysRTM_IFINFO (line 51) | sysRTM_IFINFO = 0xe
constant sysRTM_NEWMADDR (line 52) | sysRTM_NEWMADDR = 0xf
constant sysRTM_DELMADDR (line 53) | sysRTM_DELMADDR = 0x10
constant sysRTM_IFANNOUNCE (line 54) | sysRTM_IFANNOUNCE = 0x11
constant sysRTM_IEEE80211 (line 55) | sysRTM_IEEE80211 = 0x12
constant sysRTA_DST (line 57) | sysRTA_DST = 0x1
constant sysRTA_GATEWAY (line 58) | sysRTA_GATEWAY = 0x2
constant sysRTA_NETMASK (line 59) | sysRTA_NETMASK = 0x4
constant sysRTA_GENMASK (line 60) | sysRTA_GENMASK = 0x8
constant sysRTA_IFP (line 61) | sysRTA_IFP = 0x10
constant sysRTA_IFA (line 62) | sysRTA_IFA = 0x20
constant sysRTA_AUTHOR (line 63) | sysRTA_AUTHOR = 0x40
constant sysRTA_BRD (line 64) | sysRTA_BRD = 0x80
constant sysRTAX_DST (line 66) | sysRTAX_DST = 0x0
constant sysRTAX_GATEWAY (line 67) | sysRTAX_GATEWAY = 0x1
constant sysRTAX_NETMASK (line 68) | sysRTAX_NETMASK = 0x2
constant sysRTAX_GENMASK (line 69) | sysRTAX_GENMASK = 0x3
constant sysRTAX_IFP (line 70) | sysRTAX_IFP = 0x4
constant sysRTAX_IFA (line 71) | sysRTAX_IFA = 0x5
constant sysRTAX_AUTHOR (line 72) | sysRTAX_AUTHOR = 0x6
constant sysRTAX_BRD (line 73) | sysRTAX_BRD = 0x7
constant sysRTAX_MAX (line 74) | sysRTAX_MAX = 0x8
constant sizeofIfMsghdrlFreeBSD10 (line 78) | sizeofIfMsghdrlFreeBSD10 = 0x68
constant sizeofIfaMsghdrFreeBSD10 (line 79) | sizeofIfaMsghdrFreeBSD10 = 0x14
constant sizeofIfaMsghdrlFreeBSD10 (line 80) | sizeofIfaMsghdrlFreeBSD10 = 0x6c
constant sizeofIfmaMsghdrFreeBSD10 (line 81) | sizeofIfmaMsghdrFreeBSD10 = 0x10
constant sizeofIfAnnouncemsghdrFreeBSD10 (line 82) | sizeofIfAnnouncemsghdrFreeBSD10 = 0x18
constant sizeofRtMsghdrFreeBSD10 (line 84) | sizeofRtMsghdrFreeBSD10 = 0x5c
constant sizeofRtMetricsFreeBSD10 (line 85) | sizeofRtMetricsFreeBSD10 = 0x38
constant sizeofIfMsghdrFreeBSD7 (line 87) | sizeofIfMsghdrFreeBSD7 = 0x70
constant sizeofIfMsghdrFreeBSD8 (line 88) | sizeofIfMsghdrFreeBSD8 = 0x70
constant sizeofIfMsghdrFreeBSD9 (line 89) | sizeofIfMsghdrFreeBSD9 = 0x70
constant sizeofIfMsghdrFreeBSD10 (line 90) | sizeofIfMsghdrFreeBSD10 = 0x70
constant sizeofIfMsghdrFreeBSD11 (line 91) | sizeofIfMsghdrFreeBSD11 = 0xa8
constant sizeofIfDataFreeBSD7 (line 93) | sizeofIfDataFreeBSD7 = 0x60
constant sizeofIfDataFreeBSD8 (line 94) | sizeofIfDataFreeBSD8 = 0x60
constant sizeofIfDataFreeBSD9 (line 95) | sizeofIfDataFreeBSD9 = 0x60
constant sizeofIfDataFreeBSD10 (line 96) | sizeofIfDataFreeBSD10 = 0x60
constant sizeofIfDataFreeBSD11 (line 97) | sizeofIfDataFreeBSD11 = 0x98
constant sizeofIfMsghdrlFreeBSD10Emu (line 99) | sizeofIfMsghdrlFreeBSD10Emu = 0x68
constant sizeofIfaMsghdrFreeBSD10Emu (line 100) | sizeofIfaMsghdrFreeBSD10Emu = 0x14
constant sizeofIfaMsghdrlFreeBSD10Emu (line 101) | sizeofIfaMsghdrlFreeBSD10Emu = 0x6c
constant sizeofIfmaMsghdrFreeBSD10Emu (line 102) | sizeofIfmaMsghdrFreeBSD10Emu = 0x10
constant sizeofIfAnnouncemsghdrFreeBSD10Emu (line 103) | sizeofIfAnnouncemsghdrFreeBSD10Emu = 0x18
constant sizeofRtMsghdrFreeBSD10Emu (line 105) | sizeofRtMsghdrFreeBSD10Emu = 0x5c
constant sizeofRtMetricsFreeBSD10Emu (line 106) | sizeofRtMetricsFreeBSD10Emu = 0x38
constant sizeofIfMsghdrFreeBSD7Emu (line 108) | sizeofIfMsghdrFreeBSD7Emu = 0x70
constant sizeofIfMsghdrFreeBSD8Emu (line 109) | sizeofIfMsghdrFreeBSD8Emu = 0x70
constant sizeofIfMsghdrFreeBSD9Emu (line 110) | sizeofIfMsghdrFreeBSD9Emu = 0x70
constant sizeofIfMsghdrFreeBSD10Emu (line 111) | sizeofIfMsghdrFreeBSD10Emu = 0x70
constant sizeofIfMsghdrFreeBSD11Emu (line 112) | sizeofIfMsghdrFreeBSD11Emu = 0xa8
constant sizeofIfDataFreeBSD7Emu (line 114) | sizeofIfDataFreeBSD7Emu = 0x60
constant sizeofIfDataFreeBSD8Emu (line 115) | sizeofIfDataFreeBSD8Emu = 0x60
constant sizeofIfDataFreeBSD9Emu (line 116) | sizeofIfDataFreeBSD9Emu = 0x60
constant sizeofIfDataFreeBSD10Emu (line 117) | sizeofIfDataFreeBSD10Emu = 0x60
constant sizeofIfDataFreeBSD11Emu (line 118) | sizeofIfDataFreeBSD11Emu = 0x98
constant sizeofSockaddrStorage (line 120) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 121) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 122) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/route/zsys_netbsd.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_ROUTE (line 9) | sysAF_ROUTE = 0x22
constant sysAF_LINK (line 10) | sysAF_LINK = 0x12
constant sysAF_INET6 (line 11) | sysAF_INET6 = 0x18
constant sysSOCK_RAW (line 13) | sysSOCK_RAW = 0x3
constant sysNET_RT_DUMP (line 15) | sysNET_RT_DUMP = 0x1
constant sysNET_RT_FLAGS (line 16) | sysNET_RT_FLAGS = 0x2
constant sysNET_RT_IFLIST (line 17) | sysNET_RT_IFLIST = 0x5
constant sysNET_RT_MAXID (line 18) | sysNET_RT_MAXID = 0x6
constant sysCTL_MAXNAME (line 22) | sysCTL_MAXNAME = 0xc
constant sysCTL_UNSPEC (line 24) | sysCTL_UNSPEC = 0x0
constant sysCTL_KERN (line 25) | sysCTL_KERN = 0x1
constant sysCTL_VM (line 26) | sysCTL_VM = 0x2
constant sysCTL_VFS (line 27) | sysCTL_VFS = 0x3
constant sysCTL_NET (line 28) | sysCTL_NET = 0x4
constant sysCTL_DEBUG (line 29) | sysCTL_DEBUG = 0x5
constant sysCTL_HW (line 30) | sysCTL_HW = 0x6
constant sysCTL_MACHDEP (line 31) | sysCTL_MACHDEP = 0x7
constant sysCTL_USER (line 32) | sysCTL_USER = 0x8
constant sysCTL_DDB (line 33) | sysCTL_DDB = 0x9
constant sysCTL_PROC (line 34) | sysCTL_PROC = 0xa
constant sysCTL_VENDOR (line 35) | sysCTL_VENDOR = 0xb
constant sysCTL_EMUL (line 36) | sysCTL_EMUL = 0xc
constant sysCTL_SECURITY (line 37) | sysCTL_SECURITY = 0xd
constant sysCTL_MAXID (line 38) | sysCTL_MAXID = 0xe
constant sysRTM_VERSION (line 42) | sysRTM_VERSION = 0x4
constant sysRTM_ADD (line 44) | sysRTM_ADD = 0x1
constant sysRTM_DELETE (line 45) | sysRTM_DELETE = 0x2
constant sysRTM_CHANGE (line 46) | sysRTM_CHANGE = 0x3
constant sysRTM_GET (line 47) | sysRTM_GET = 0x4
constant sysRTM_LOSING (line 48) | sysRTM_LOSING = 0x5
constant sysRTM_REDIRECT (line 49) | sysRTM_REDIRECT = 0x6
constant sysRTM_MISS (line 50) | sysRTM_MISS = 0x7
constant sysRTM_LOCK (line 51) | sysRTM_LOCK = 0x8
constant sysRTM_OLDADD (line 52) | sysRTM_OLDADD = 0x9
constant sysRTM_OLDDEL (line 53) | sysRTM_OLDDEL = 0xa
constant sysRTM_RESOLVE (line 54) | sysRTM_RESOLVE = 0xb
constant sysRTM_NEWADDR (line 55) | sysRTM_NEWADDR = 0xc
constant sysRTM_DELADDR (line 56) | sysRTM_DELADDR = 0xd
constant sysRTM_IFANNOUNCE (line 57) | sysRTM_IFANNOUNCE = 0x10
constant sysRTM_IEEE80211 (line 58) | sysRTM_IEEE80211 = 0x11
constant sysRTM_SETGATE (line 59) | sysRTM_SETGATE = 0x12
constant sysRTM_LLINFO_UPD (line 60) | sysRTM_LLINFO_UPD = 0x13
constant sysRTM_IFINFO (line 61) | sysRTM_IFINFO = 0x14
constant sysRTM_CHGADDR (line 62) | sysRTM_CHGADDR = 0x15
constant sysRTA_DST (line 64) | sysRTA_DST = 0x1
constant sysRTA_GATEWAY (line 65) | sysRTA_GATEWAY = 0x2
constant sysRTA_NETMASK (line 66) | sysRTA_NETMASK = 0x4
constant sysRTA_GENMASK (line 67) | sysRTA_GENMASK = 0x8
constant sysRTA_IFP (line 68) | sysRTA_IFP = 0x10
constant sysRTA_IFA (line 69) | sysRTA_IFA = 0x20
constant sysRTA_AUTHOR (line 70) | sysRTA_AUTHOR = 0x40
constant sysRTA_BRD (line 71) | sysRTA_BRD = 0x80
constant sysRTA_TAG (line 72) | sysRTA_TAG = 0x100
constant sysRTAX_DST (line 74) | sysRTAX_DST = 0x0
constant sysRTAX_GATEWAY (line 75) | sysRTAX_GATEWAY = 0x1
constant sysRTAX_NETMASK (line 76) | sysRTAX_NETMASK = 0x2
constant sysRTAX_GENMASK (line 77) | sysRTAX_GENMASK = 0x3
constant sysRTAX_IFP (line 78) | sysRTAX_IFP = 0x4
constant sysRTAX_IFA (line 79) | sysRTAX_IFA = 0x5
constant sysRTAX_AUTHOR (line 80) | sysRTAX_AUTHOR = 0x6
constant sysRTAX_BRD (line 81) | sysRTAX_BRD = 0x7
constant sysRTAX_TAG (line 82) | sysRTAX_TAG = 0x8
constant sysRTAX_MAX (line 83) | sysRTAX_MAX = 0x9
constant sizeofIfMsghdrNetBSD7 (line 87) | sizeofIfMsghdrNetBSD7 = 0x98
constant sizeofIfaMsghdrNetBSD7 (line 88) | sizeofIfaMsghdrNetBSD7 = 0x18
constant sizeofIfAnnouncemsghdrNetBSD7 (line 89) | sizeofIfAnnouncemsghdrNetBSD7 = 0x18
constant sizeofRtMsghdrNetBSD7 (line 91) | sizeofRtMsghdrNetBSD7 = 0x78
constant sizeofRtMetricsNetBSD7 (line 92) | sizeofRtMetricsNetBSD7 = 0x50
constant sizeofSockaddrStorage (line 94) | sizeofSockaddrStorage = 0x80
constant sizeofSockaddrInet (line 95) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 96) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/route/zsys_openbsd.go
constant sysAF_UNSPEC (line 7) | sysAF_UNSPEC = 0x0
constant sysAF_INET (line 8) | sysAF_INET = 0x2
constant sysAF_ROUTE (line 9) | sysAF_ROUTE = 0x11
constant sysAF_LINK (line 10) | sysAF_LINK = 0x12
constant sysAF_INET6 (line 11) | sysAF_INET6 = 0x18
constant sysSOCK_RAW (line 13) | sysSOCK_RAW = 0x3
constant sysNET_RT_DUMP (line 15) | sysNET_RT_DUMP = 0x1
constant sysNET_RT_FLAGS (line 16) | sysNET_RT_FLAGS = 0x2
constant sysNET_RT_IFLIST (line 17) | sysNET_RT_IFLIST = 0x3
constant sysNET_RT_STATS (line 18) | sysNET_RT_STATS = 0x4
constant sysNET_RT_TABLE (line 19) | sysNET_RT_TABLE = 0x5
constant sysNET_RT_IFNAMES (line 20) | sysNET_RT_IFNAMES = 0x6
constant sysNET_RT_MAXID (line 21) | sysNET_RT_MAXID = 0x7
constant sysCTL_MAXNAME (line 25) | sysCTL_MAXNAME = 0xc
constant sysCTL_UNSPEC (line 27) | sysCTL_UNSPEC = 0x0
constant sysCTL_KERN (line 28) | sysCTL_KERN = 0x1
constant sysCTL_VM (line 29) | sysCTL_VM = 0x2
constant sysCTL_FS (line 30) | sysCTL_FS = 0x3
constant sysCTL_NET (line 31) | sysCTL_NET = 0x4
constant sysCTL_DEBUG (line 32) | sysCTL_DEBUG = 0x5
constant sysCTL_HW (line 33) | sysCTL_HW = 0x6
constant sysCTL_MACHDEP (line 34) | sysCTL_MACHDEP = 0x7
constant sysCTL_DDB (line 35) | sysCTL_DDB = 0x9
constant sysCTL_VFS (line 36) | sysCTL_VFS = 0xa
constant sysCTL_MAXID (line 37) | sysCTL_MAXID = 0xb
constant sysRTM_VERSION (line 41) | sysRTM_VERSION = 0x5
constant sysRTM_ADD (line 43) | sysRTM_ADD = 0x1
constant sysRTM_DELETE (line 44) | sysRTM_DELETE = 0x2
constant sysRTM_CHANGE (line 45) | sysRTM_CHANGE = 0x3
constant sysRTM_GET (line 46) | sysRTM_GET = 0x4
constant sysRTM_LOSING (line 47) | sysRTM_LOSING = 0x5
constant sysRTM_REDIRECT (line 48) | sysRTM_REDIRECT = 0x6
constant sysRTM_MISS (line 49) | sysRTM_MISS = 0x7
constant sysRTM_LOCK (line 50) | sysRTM_LOCK = 0x8
constant sysRTM_RESOLVE (line 51) | sysRTM_RESOLVE = 0xb
constant sysRTM_NEWADDR (line 52) | sysRTM_NEWADDR = 0xc
constant sysRTM_DELADDR (line 53) | sysRTM_DELADDR = 0xd
constant sysRTM_IFINFO (line 54) | sysRTM_IFINFO = 0xe
constant sysRTM_IFANNOUNCE (line 55) | sysRTM_IFANNOUNCE = 0xf
constant sysRTM_DESYNC (line 56) | sysRTM_DESYNC = 0x10
constant sysRTM_INVALIDATE (line 57) | sysRTM_INVALIDATE = 0x11
constant sysRTM_BFD (line 58) | sysRTM_BFD = 0x12
constant sysRTM_PROPOSAL (line 59) | sysRTM_PROPOSAL = 0x13
constant sysRTA_DST (line 61) | sysRTA_DST = 0x1
constant sysRTA_GATEWAY (line 62) | sysRTA_GATEWAY = 0x2
constant sysRTA_NETMASK (line 63) | sysRTA_NETMASK = 0x4
constant sysRTA_GENMASK (line 64) | sysRTA_GENMASK = 0x8
constant sysRTA_IFP (line 65) | sysRTA_IFP = 0x10
constant sysRTA_IFA (line 66) | sysRTA_IFA = 0x20
constant sysRTA_AUTHOR (line 67) | sysRTA_AUTHOR = 0x40
constant sysRTA_BRD (line 68) | sysRTA_BRD = 0x80
constant sysRTA_SRC (line 69) | sysRTA_SRC = 0x100
constant sysRTA_SRCMASK (line 70) | sysRTA_SRCMASK = 0x200
constant sysRTA_LABEL (line 71) | sysRTA_LABEL = 0x400
constant sysRTA_BFD (line 72) | sysRTA_BFD = 0x800
constant sysRTA_DNS (line 73) | sysRTA_DNS = 0x1000
constant sysRTA_STATIC (line 74) | sysRTA_STATIC = 0x2000
constant sysRTA_SEARCH (line 75) | sysRTA_SEARCH = 0x4000
constant sysRTAX_DST (line 77) | sysRTAX_DST = 0x0
constant sysRTAX_GATEWAY (line 78) | sysRTAX_GATEWAY = 0x1
constant sysRTAX_NETMASK (line 79) | sysRTAX_NETMASK = 0x2
constant sysRTAX_GENMASK (line 80) | sysRTAX_GENMASK = 0x3
constant sysRTAX_IFP (line 81) | sysRTAX_IFP = 0x4
constant sysRTAX_IFA (line 82) | sysRTAX_IFA = 0x5
constant sysRTAX_AUTHOR (line 83) | sysRTAX_AUTHOR = 0x6
constant sysRTAX_BRD (line 84) | sysRTAX_BRD = 0x7
constant sysRTAX_SRC (line 85) | sysRTAX_SRC = 0x8
constant sysRTAX_SRCMASK (line 86) | sysRTAX_SRCMASK = 0x9
constant sysRTAX_LABEL (line 87) | sysRTAX_LABEL = 0xa
constant sysRTAX_BFD (line 88) | sysRTAX_BFD = 0xb
constant sysRTAX_DNS (line 89) | sysRTAX_DNS = 0xc
constant sysRTAX_STATIC (line 90) | sysRTAX_STATIC = 0xd
constant sysRTAX_SEARCH (line 91) | sysRTAX_SEARCH = 0xe
constant sysRTAX_MAX (line 92) | sysRTAX_MAX = 0xf
constant sizeofRtMsghdr (line 96) | sizeofRtMsghdr = 0x60
constant sizeofSockaddrStorage (line 98) | sizeofSockaddrStorage = 0x100
constant sizeofSockaddrInet (line 99) | sizeofSockaddrInet = 0x10
constant sizeofSockaddrInet6 (line 100) | sizeofSockaddrInet6 = 0x1c
FILE: vendor/golang.org/x/net/trace/events.go
constant maxEventsPerLog (line 24) | maxEventsPerLog = 100
type bucket (line 26) | type bucket struct
function RenderEvents (line 45) | func RenderEvents(w http.ResponseWriter, req *http.Request, sensitive bo...
function parseEventsArgs (line 104) | func parseEventsArgs(req *http.Request) (fam string, b int, ok bool) {
type EventLog (line 117) | type EventLog interface
function NewEventLog (line 132) | func NewEventLog(family, title string) EventLog {
function getEventFamily (line 156) | func getEventFamily(fam string) *eventFamily {
type eventFamily (line 167) | type eventFamily struct
method add (line 172) | func (f *eventFamily) add(el *eventLog) {
method remove (line 178) | func (f *eventFamily) remove(el *eventLog) {
method Count (line 190) | func (f *eventFamily) Count(now time.Time, maxErrAge time.Duration) (n...
method Copy (line 201) | func (f *eventFamily) Copy(now time.Time, maxErrAge time.Duration) (el...
type eventLogs (line 214) | type eventLogs
method Free (line 217) | func (els eventLogs) Free() {
method Len (line 224) | func (els eventLogs) Len() int { return len(els) }
method Less (line 225) | func (els eventLogs) Less(i, j int) bool { return els[i].Start.After(e...
method Swap (line 226) | func (els eventLogs) Swap(i, j int) { els[i], els[j] = els[j], el...
type logEntry (line 229) | type logEntry struct
method WhenString (line 239) | func (e logEntry) WhenString() string {
type eventLog (line 247) | type eventLog struct
method Finish (line 146) | func (el *eventLog) Finish() {
method reset (line 272) | func (el *eventLog) reset() {
method hasRecentError (line 284) | func (el *eventLog) hasRecentError(now time.Time, maxErrAge time.Durat...
method delta (line 296) | func (el *eventLog) delta(t time.Time) (time.Duration, bool) {
method Printf (line 305) | func (el *eventLog) Printf(format string, a ...interface{}) {
method Errorf (line 309) | func (el *eventLog) Errorf(format string, a ...interface{}) {
method printf (line 313) | func (el *eventLog) printf(isErr bool, format string, a ...interface{}) {
method ref (line 344) | func (el *eventLog) ref() {
method unref (line 348) | func (el *eventLog) unref() {
method When (line 354) | func (el *eventLog) When() string {
method ElapsedTime (line 358) | func (el *eventLog) ElapsedTime() string {
method Stack (line 363) | func (el *eventLog) Stack() string {
method Events (line 390) | func (el *eventLog) Events() []logEntry {
function printStackRecord (line 374) | func printStackRecord(w io.Writer, stk []uintptr) {
function newEventLog (line 400) | func newEventLog() *eventLog {
function freeEventLog (line 411) | func freeEventLog(el *eventLog) {
function eventsTmpl (line 422) | func eventsTmpl() *template.Template {
constant eventsHTML (line 432) | eventsHTML = `
FILE: vendor/golang.org/x/net/trace/histogram.go
constant bucketCount (line 21) | bucketCount = 38
type histogram (line 27) | type histogram struct
method addMeasurement (line 36) | func (h *histogram) addMeasurement(value int64) {
method allocateBuckets (line 52) | func (h *histogram) allocateBuckets() {
method total (line 84) | func (h *histogram) total() (total int64) {
method average (line 95) | func (h *histogram) average() float64 {
method variance (line 104) | func (h *histogram) variance() float64 {
method standardDeviation (line 114) | func (h *histogram) standardDeviation() float64 {
method percentileBoundary (line 120) | func (h *histogram) percentileBoundary(percentile float64) int64 {
method median (line 165) | func (h *histogram) median() int64 {
method Add (line 170) | func (h *histogram) Add(other timeseries.Observable) {
method Clear (line 193) | func (h *histogram) Clear() {
method CopyFrom (line 202) | func (h *histogram) CopyFrom(other timeseries.Observable) {
method Multiply (line 215) | func (h *histogram) Multiply(ratio float64) {
method New (line 228) | func (h *histogram) New() timeseries.Observable {
method String (line 234) | func (h *histogram) String() string {
method newData (line 271) | func (h *histogram) newData() *data {
method html (line 322) | func (h *histogram) html() template.HTML {
function log2 (line 61) | func log2(i int64) int {
function getBucket (line 72) | func getBucket(i int64) (index int) {
function round (line 240) | func round(in float64) int64 {
function bucketBoundary (line 245) | func bucketBoundary(bucket uint8) int64 {
type bucketData (line 253) | type bucketData struct
type data (line 261) | type data struct
constant maxHTMLBarWidth (line 268) | maxHTMLBarWidth = 350.0
function distTmpl (line 334) | func distTmpl() *template.Template {
FILE: vendor/golang.org/x/net/trace/histogram_test.go
type sumTest (line 12) | type sumTest struct
type bucketingTest (line 26) | type bucketingTest struct
type multiplyTest (line 44) | type multiplyTest struct
type percentileTest (line 57) | type percentileTest struct
function TestSum (line 72) | func TestSum(t *testing.T) {
function TestMultiply (line 94) | func TestMultiply(t *testing.T) {
function TestBucketingFunctions (line 111) | func TestBucketingFunctions(t *testing.T) {
function TestAverage (line 125) | func TestAverage(t *testing.T) {
function TestStandardDeviation (line 143) | func TestStandardDeviation(t *testing.T) {
function TestPercentileBoundary (line 174) | func TestPercentileBoundary(t *testing.T) {
function TestCopyFrom (line 188) | func TestCopyFrom(t *testing.T) {
function TestClear (line 201) | func TestClear(t *testing.T) {
function TestNew (line 213) | func TestNew(t *testing.T) {
function TestAdd (line 224) | func TestAdd(t *testing.T) {
function add (line 317) | func add(h *histogram, times int, val int64) {
function isApproximate (line 323) | func isApproximate(x, y float64) bool {
FILE: vendor/golang.org/x/net/trace/trace.go
function init (line 112) | func init() {
function Traces (line 124) | func Traces(w http.ResponseWriter, req *http.Request) {
function Events (line 139) | func Events(w http.ResponseWriter, req *http.Request) {
function Render (line 153) | func Render(w io.Writer, req *http.Request, sensitive bool) {
function parseArgs (line 261) | func parseArgs(req *http.Request) (fam string, b int, ok bool) {
function lookupBucket (line 277) | func lookupBucket(fam string, b int) *traceBucket {
type contextKeyT (line 285) | type contextKeyT
type Trace (line 290) | type Trace interface
type lazySprintf (line 324) | type lazySprintf struct
method String (line 329) | func (l *lazySprintf) String() string {
function New (line 334) | func New(family, title string) Trace {
constant bucketsPerFamily (line 400) | bucketsPerFamily = 9
constant tracesPerBucket (line 401) | tracesPerBucket = 10
constant maxActiveTraces (line 402) | maxActiveTraces = 20
constant maxEventsPerTrace (line 403) | maxEventsPerTrace = 10
constant numHistogramBuckets (line 404) | numHistogramBuckets = 38
type traceSet (line 417) | type traceSet struct
method Len (line 428) | func (ts *traceSet) Len() int {
method Add (line 434) | func (ts *traceSet) Add(tr *trace) {
method Remove (line 443) | func (ts *traceSet) Remove(tr *trace) {
method FirstN (line 450) | func (ts *traceSet) FirstN(n int) traceList {
function getActiveTraces (line 498) | func getActiveTraces(fam string) traceList {
function getFamily (line 508) | func getFamily(fam string, allocNew bool) *family {
function allocFamily (line 518) | func allocFamily(fam string) *family {
type family (line 530) | type family struct
function newFamily (line 539) | func newFamily() *family {
type traceBucket (line 558) | type traceBucket struct
method Add (line 568) | func (b *traceBucket) Add(tr *trace) {
method Copy (line 596) | func (b *traceBucket) Copy(tracedOnly bool) traceList {
method Empty (line 615) | func (b *traceBucket) Empty() bool {
type cond (line 622) | type cond interface
type minCond (line 627) | type minCond
method match (line 629) | func (m minCond) match(t *trace) bool { return t.Elapsed >= time.Durat...
method String (line 630) | func (m minCond) String() string { return fmt.Sprintf("≥%gs", tim...
type errorCond (line 632) | type errorCond struct
method match (line 634) | func (e errorCond) match(t *trace) bool { return t.IsError }
method String (line 635) | func (e errorCond) String() string { return "errors" }
type traceList (line 637) | type traceList
method Free (line 640) | func (trl traceList) Free() {
method Len (line 647) | func (trl traceList) Len() int { return len(trl) }
method Less (line 648) | func (trl traceList) Less(i, j int) bool { return trl[i].Start.After(t...
method Swap (line 649) | func (trl traceList) Swap(i, j int) { trl[i], trl[j] = trl[j], tr...
type event (line 652) | type event struct
method WhenString (line 663) | func (e event) WhenString() string {
type discarded (line 672) | type discarded
method String (line 674) | func (d *discarded) String() string {
type trace (line 680) | type trace struct
method Finish (line 370) | func (tr *trace) Finish() {
method reset (line 712) | func (tr *trace) reset() {
method delta (line 735) | func (tr *trace) delta(t time.Time) (time.Duration, bool) {
method addEvent (line 743) | func (tr *trace) addEvent(x interface{}, recyclable, sensitive bool) {
method LazyLog (line 796) | func (tr *trace) LazyLog(x fmt.Stringer, sensitive bool) {
method LazyPrintf (line 800) | func (tr *trace) LazyPrintf(format string, a ...interface{}) {
method SetError (line 804) | func (tr *trace) SetError() { tr.IsError = true }
method SetRecycler (line 806) | func (tr *trace) SetRecycler(f func(interface{})) {
method SetTraceInfo (line 810) | func (tr *trace) SetTraceInfo(traceID, spanID uint64) {
method SetMaxEvents (line 814) | func (tr *trace) SetMaxEvents(m int) {
method ref (line 821) | func (tr *trace) ref() {
method unref (line 825) | func (tr *trace) unref() {
method When (line 842) | func (tr *trace) When() string {
method ElapsedTime (line 846) | func (tr *trace) ElapsedTime() string {
method Events (line 855) | func (tr *trace) Events() []event {
function newTrace (line 864) | func newTrace() *trace {
function freeTrace (line 875) | func freeTrace(tr *trace) {
function elapsed (line 886) | func elapsed(d time.Duration) string {
function pageTmpl (line 911) | func pageTmpl() *template.Template {
constant pageHTML (line 921) | pageHTML = `
FILE: vendor/golang.org/x/net/trace/trace_go16.go
function NewContext (line 13) | func NewContext(ctx context.Context, tr Trace) context.Context {
function FromContext (line 18) | func FromContext(ctx context.Context) (tr Trace, ok bool) {
FILE: vendor/golang.org/x/net/trace/trace_go17.go
function NewContext (line 13) | func NewContext(ctx context.Context, tr Trace) context.Context {
function FromContext (line 18) | func FromContext(ctx context.Context) (tr Trace, ok bool) {
FILE: vendor/golang.org/x/net/trace/trace_test.go
type s (line 13) | type s struct
method String (line 15) | func (s) String() string { return "lazy string" }
function TestReset (line 18) | func TestReset(t *testing.T) {
function TestResetLog (line 36) | func TestResetLog(t *testing.T) {
function TestAuthRequest (line 49) | func TestAuthRequest(t *testing.T) {
function TestParseTemplate (line 75) | func TestParseTemplate(t *testing.T) {
function benchmarkTrace (line 87) | func benchmarkTrace(b *testing.B, maxEvents, numEvents int) {
function BenchmarkTrace_Default_2 (line 100) | func BenchmarkTrace_Default_2(b *testing.B) {
function BenchmarkTrace_Default_10 (line 104) | func BenchmarkTrace_Default_10(b *testing.B) {
function BenchmarkTrace_Default_100 (line 108) | func BenchmarkTrace_Default_100(b *testing.B) {
function BenchmarkTrace_Default_1000 (line 112) | func BenchmarkTrace_Default_1000(b *testing.B) {
function BenchmarkTrace_Default_10000 (line 116) | func BenchmarkTrace_Default_10000(b *testing.B) {
function BenchmarkTrace_10_2 (line 120) | func BenchmarkTrace_10_2(b *testing.B) {
function BenchmarkTrace_10_10 (line 124) | func BenchmarkTrace_10_10(b *testing.B) {
function BenchmarkTrace_10_100 (line 128) | func BenchmarkTrace_10_100(b *testing.B) {
function BenchmarkTrace_10_1000 (line 132) | func BenchmarkTrace_10_1000(b *testing.B) {
function BenchmarkTrace_10_10000 (line 136) | func BenchmarkTrace_10_10000(b *testing.B) {
function BenchmarkTrace_100_2 (line 140) | func BenchmarkTrace_100_2(b *testing.B) {
function BenchmarkTrace_100_10 (line 144) | func BenchmarkTrace_100_10(b *testing.B) {
function BenchmarkTrace_100_100 (line 148) | func BenchmarkTrace_100_100(b *testing.B) {
function BenchmarkTrace_100_1000 (line 152) | func BenchmarkTrace_100_1000(b *testing.B) {
function BenchmarkTrace_100_10000 (line 156) | func BenchmarkTrace_100_10000(b *testing.B) {
function BenchmarkTrace_1000_2 (line 160) | func BenchmarkTrace_1000_2(b *testing.B) {
function BenchmarkTrace_1000_10 (line 164) | func BenchmarkTrace_1000_10(b *testing.B) {
function BenchmarkTrace_1000_100 (line 168) | func BenchmarkTrace_1000_100(b *testing.B) {
function BenchmarkTrace_1000_1000 (line 172) | func BenchmarkTrace_1000_1000(b *testing.B) {
function BenchmarkTrace_1000_10000 (line 176) | func BenchmarkTrace_1000_10000(b *testing.B) {
FILE: vendor/golang.org/x/net/webdav/file.go
function slashClean (line 23) | func slashClean(name string) string {
type FileSystem (line 40) | type FileSystem interface
type File (line 53) | type File interface
type Dir (line 66) | type Dir
method resolve (line 68) | func (d Dir) resolve(name string) string {
method Mkdir (line 81) | func (d Dir) Mkdir(ctx context.Context, name string, perm os.FileMode)...
method OpenFile (line 88) | func (d Dir) OpenFile(ctx context.Context, name string, flag int, perm...
method RemoveAll (line 99) | func (d Dir) RemoveAll(ctx context.Context, name string) error {
method Rename (line 110) | func (d Dir) Rename(ctx context.Context, oldName, newName string) error {
method Stat (line 124) | func (d Dir) Stat(ctx context.Context, name string) (os.FileInfo, erro...
function NewMemFS (line 132) | func NewMemFS() FileSystem {
type memFS (line 150) | type memFS struct
method walk (line 168) | func (fs *memFS) walk(op, fullname string, f func(dir *memFSNode, frag...
method find (line 229) | func (fs *memFS) find(op, fullname string) (parent *memFSNode, frag st...
method Mkdir (line 242) | func (fs *memFS) Mkdir(ctx context.Context, name string, perm os.FileM...
method OpenFile (line 265) | func (fs *memFS) OpenFile(ctx context.Context, name string, flag int, ...
method RemoveAll (line 319) | func (fs *memFS) RemoveAll(ctx context.Context, name string) error {
method Rename (line 335) | func (fs *memFS) Rename(ctx context.Context, oldName, newName string) ...
method Stat (line 386) | func (fs *memFS) Stat(ctx context.Context, name string) (os.FileInfo, ...
type memFSNode (line 406) | type memFSNode struct
method stat (line 417) | func (n *memFSNode) stat(name string) *memFileInfo {
method DeadProps (line 428) | func (n *memFSNode) DeadProps() (map[xml.Name]Property, error) {
method Patch (line 441) | func (n *memFSNode) Patch(patches []Proppatch) ([]Propstat, error) {
type memFileInfo (line 461) | type memFileInfo struct
method Name (line 468) | func (f *memFileInfo) Name() string { return f.name }
method Size (line 469) | func (f *memFileInfo) Size() int64 { return f.size }
method Mode (line 470) | func (f *memFileInfo) Mode() os.FileMode { return f.mode }
method ModTime (line 471) | func (f *memFileInfo) ModTime() time.Time { return f.modTime }
method IsDir (line 472) | func (f *memFileInfo) IsDir() bool { return f.mode.IsDir() }
method Sys (line 473) | func (f *memFileInfo) Sys() interface{} { return nil }
type memFile (line 478) | type memFile struct
method DeadProps (line 489) | func (f *memFile) DeadProps() (map[xml.Name]Property, error) { ret...
method Patch (line 490) | func (f *memFile) Patch(patches []Proppatch) ([]Propstat, error) { ret...
method Close (line 492) | func (f *memFile) Close() error {
method Read (line 496) | func (f *memFile) Read(p []byte) (int, error) {
method Readdir (line 510) | func (f *memFile) Readdir(count int) ([]os.FileInfo, error) {
method Seek (line 537) | func (f *memFile) Seek(offset int64, whence int) (int64, error) {
method Stat (line 559) | func (f *memFile) Stat() (os.FileInfo, error) {
method Write (line 563) | func (f *memFile) Write(p []byte) (int, error) {
function moveFiles (line 604) | func moveFiles(ctx context.Context, fs FileSystem, src, dst string, over...
function copyProps (line 631) | func copyProps(dst, src File) error {
function copyFiles (line 655) | func copyFiles(ctx context.Context, fs FileSystem, src, dst string, over...
function walkFS (line 752) | func walkFS(ctx context.Context, fs FileSystem, depth int, name string, ...
FILE: vendor/golang.org/x/net/webdav/file_go1.6.go
function getContext (line 15) | func getContext(r *http.Request) context.Context {
FILE: vendor/golang.org/x/net/webdav/file_go1.7.go
function getContext (line 14) | func getContext(r *http.Request) context.Context {
FILE: vendor/golang.org/x/net/webdav/file_test.go
function TestSlashClean (line 25) | func TestSlashClean(t *testing.T) {
function TestDirResolve (line 49) | func TestDirResolve(t *testing.T) {
function TestWalk (line 156) | func TestWalk(t *testing.T) {
function find (line 238) | func find(ctx context.Context, ss []string, fs FileSystem, name string) ...
function testFS (line 264) | func testFS(t *testing.T, fs FileSystem) {
function TestDir (line 514) | func TestDir(t *testing.T) {
function TestMemFS (line 530) | func TestMemFS(t *testing.T) {
function TestMemFSRoot (line 534) | func TestMemFSRoot(t *testing.T) {
function TestMemFileReaddir (line 569) | func TestMemFileReaddir(t *testing.T) {
function TestMemFile (line 591) | func TestMemFile(t *testing.T) {
function TestMemFileWriteAllocs (line 798) | func TestMemFileWriteAllocs(t *testing.T) {
function BenchmarkMemFileWrite (line 825) | func BenchmarkMemFileWrite(b *testing.B) {
function TestCopyMoveProps (line 851) | func TestCopyMoveProps(t *testing.T) {
function TestWalkFS (line 961) | func TestWalkFS(t *testing.T) {
function buildTestFS (line 1150) | func buildTestFS(buildfs []string) (FileSystem, error) {
FILE: vendor/golang.org/x/net/webdav/if.go
type ifHeader (line 15) | type ifHeader struct
type ifList (line 20) | type ifList struct
function parseIfHeader (line 28) | func parseIfHeader(httpHeader string) (h ifHeader, ok bool) {
function parseNoTagLists (line 40) | func parseNoTagLists(s string) (h ifHeader, ok bool) {
function parseTaggedLists (line 54) | func parseTaggedLists(s string) (h ifHeader, ok bool) {
function parseList (line 83) | func parseList(s string) (l ifList, remaining string, ok bool) {
function parseCondition (line 105) | func parseCondition(s string) (c Condition, remaining string, ok bool) {
constant errTokenType (line 125) | errTokenType = rune(-1)
constant eofTokenType (line 126) | eofTokenType = rune(-2)
constant strTokenType (line 127) | strTokenType = rune(-3)
constant notTokenType (line 128) | notTokenType = rune(-4)
constant angleTokenType (line 129) | angleTokenType = rune(-5)
constant squareTokenType (line 130) | squareTokenType = rune(-6)
function lex (line 133) | func lex(s string) (tokenType rune, tokenStr string, remaining string) {
FILE: vendor/golang.org/x/net/webdav/if_test.go
function TestParseIfHeader (line 13) | func TestParseIfHeader(t *testing.T) {
FILE: vendor/golang.org/x/net/webdav/internal/xml/atom_test.go
function ParseTime (line 44) | func ParseTime(str string) time.Time {
function NewText (line 52) | func NewText(text string) Text {
FILE: vendor/golang.org/x/net/webdav/internal/xml/example_test.go
function ExampleMarshalIndent (line 13) | func ExampleMarshalIndent() {
function ExampleEncoder (line 53) | func ExampleEncoder() {
function ExampleUnmarshal (line 97) | func ExampleUnmarshal() {
FILE: vendor/golang.org/x/net/webdav/internal/xml/marshal.go
constant Header (line 22) | Header = `` + "\n"
function Marshal (line 70) | func Marshal(v interface{}) ([]byte, error) {
type Marshaler (line 94) | type Marshaler interface
type MarshalerAttr (line 109) | type MarshalerAttr interface
function MarshalIndent (line 116) | func MarshalIndent(v interface{}, prefix, indent string) ([]byte, error) {
type Encoder (line 127) | type Encoder struct
method Indent (line 141) | func (enc *Encoder) Indent(prefix, indent string) {
method Encode (line 152) | func (enc *Encoder) Encode(v interface{}) error {
method EncodeElement (line 167) | func (enc *Encoder) EncodeElement(v interface{}, start StartElement) e...
method EncodeToken (line 201) | func (enc *Encoder) EncodeToken(t Token) error {
method Flush (line 298) | func (enc *Encoder) Flush() error {
function NewEncoder (line 132) | func NewEncoder(w io.Writer) *Encoder {
function isValidDirective (line 258) | func isValidDirective(dir Directive) bool {
type printer (line 302) | type printer struct
method prefixForNS (line 331) | func (p *printer) prefixForNS(url string, isAttr bool) string {
method defineNS (line 349) | func (p *printer) defineNS(attr Attr, ignoreNonEmptyDefault bool) error {
method createNSPrefix (line 403) | func (p *printer) createNSPrefix(url string, isAttr bool) {
method writeNamespaces (line 460) | func (p *printer) writeNamespaces() {
method pushPrefix (line 482) | func (p *printer) pushPrefix(prefix, url string) {
method nsForPrefix (line 494) | func (p *printer) nsForPrefix(prefix string) string {
method markPrefix (line 503) | func (p *printer) markPrefix() {
method popPrefix (line 511) | func (p *printer) popPrefix() {
method setAttrPrefix (line 525) | func (p *printer) setAttrPrefix(prefix, url string) {
method marshalValue (line 556) | func (p *printer) marshalValue(val reflect.Value, finfo *fieldInfo, st...
method fieldAttr (line 722) | func (p *printer) fieldAttr(finfo *fieldInfo, val reflect.Value) (Attr...
method defaultStart (line 779) | func (p *printer) defaultStart(typ reflect.Type, finfo *fieldInfo, sta...
method marshalInterface (line 806) | func (p *printer) marshalInterface(val Marshaler, start StartElement) ...
method marshalTextInterface (line 826) | func (p *printer) marshalTextInterface(val encoding.TextMarshaler, sta...
method writeStart (line 839) | func (p *printer) writeStart(start *StartElement) error {
method writeName (line 894) | func (p *printer) writeName(name Name, isAttr bool) {
method writeEnd (line 902) | func (p *printer) writeEnd(name Name) error {
method marshalSimple (line 926) | func (p *printer) marshalSimple(typ reflect.Type, val reflect.Value) (...
method marshalStruct (line 963) | func (p *printer) marshalStruct(tinfo *typeInfo, val reflect.Value) er...
method cachedWriteError (line 1099) | func (p *printer) cachedWriteError() error {
method writeIndent (line 1104) | func (p *printer) writeIndent(depthDelta int) {
type printerPrefix (line 325) | type printerPrefix struct
type parentStack (line 1135) | type parentStack struct
method setParents (line 1144) | func (s *parentStack) setParents(finfo *fieldInfo, vf reflect.Value) e...
type UnsupportedTypeError (line 1199) | type UnsupportedTypeError struct
method Error (line 1203) | func (e *UnsupportedTypeError) Error() string {
function isEmptyValue (line 1207) | func isEmptyValue(v reflect.Value) bool {
FILE: vendor/golang.org/x/net/webdav/internal/xml/marshal_test.go
type DriveType (line 20) | type DriveType
constant HyperDrive (line 23) | HyperDrive DriveType = iota
constant ImprobabilityDrive (line 24) | ImprobabilityDrive
type Passenger (line 27) | type Passenger struct
type Ship (line 32) | type Ship struct
type NamedType (line 43) | type NamedType
type Port (line 45) | type Port struct
type Domain (line 52) | type Domain struct
type Book (line 59) | type Book struct
type Event (line 64) | type Event struct
type Movie (line 69) | type Movie struct
type Pi (line 74) | type Pi struct
type Universe (line 79) | type Universe struct
type Particle (line 84) | type Particle struct
type Departure (line 89) | type Departure struct
type SecretAgent (line 94) | type SecretAgent struct
type NestedItems (line 101) | type NestedItems struct
type NestedOrder (line 107) | type NestedOrder struct
type MixedNested (line 114) | type MixedNested struct
type NilTest (line 122) | type NilTest struct
type Service (line 128) | type Service struct
type EmbedA (line 138) | type EmbedA struct
type EmbedB (line 144) | type EmbedB struct
type EmbedC (line 149) | type EmbedC struct
type NameCasing (line 156) | type NameCasing struct
type NamePrecedence (line 164) | type NamePrecedence struct
type XMLNameWithTag (line 172) | type XMLNameWithTag struct
type XMLNameWithNSTag (line 177) | type XMLNameWithNSTag struct
type XMLNameWithoutTag (line 182) | type XMLNameWithoutTag struct
type NameInField (line 187) | type NameInField struct
type AttrTest (line 191) | type AttrTest struct
type OmitAttrTest (line 201) | type OmitAttrTest struct
type OmitFieldTest (line 211) | type OmitFieldTest struct
type AnyTest (line 222) | type AnyTest struct
type AnyOmitTest (line 228) | type AnyOmitTest struct
type AnySliceTest (line 234) | type AnySliceTest struct
type AnyHolder (line 240) | type AnyHolder struct
type RecurseA (line 245) | type RecurseA struct
type RecurseB (line 250) | type RecurseB struct
type PresenceTest (line 255) | type PresenceTest struct
type IgnoreTest (line 259) | type IgnoreTest struct
type MyBytes (line 263) | type MyBytes
type Data (line 265) | type Data struct
type Plain (line 271) | type Plain struct
type MyInt (line 275) | type MyInt
type EmbedInt (line 277) | type EmbedInt struct
type Strings (line 281) | type Strings struct
type PointerFieldsTest (line 285) | type PointerFieldsTest struct
type ChardataEmptyTest (line 293) | type ChardataEmptyTest struct
type MyMarshalerTest (line 298) | type MyMarshalerTest struct
method MarshalXML (line 303) | func (m *MyMarshalerTest) MarshalXML(e *Encoder, start StartElement) e...
type MyMarshalerAttrTest (line 310) | type MyMarshalerAttrTest struct
method MarshalXMLAttr (line 314) | func (m *MyMarshalerAttrTest) MarshalXMLAttr(name Name) (Attr, error) {
type MyMarshalerValueAttrTest (line 318) | type MyMarshalerValueAttrTest struct
method MarshalXMLAttr (line 322) | func (m MyMarshalerValueAttrTest) MarshalXMLAttr(name Name) (Attr, err...
type MarshalerStruct (line 326) | type MarshalerStruct struct
type MarshalerValueStruct (line 330) | type MarshalerValueStruct struct
type InnerStruct (line 334) | type InnerStruct struct
type OuterStruct (line 338) | type OuterStruct struct
type OuterNamedStruct (line 343) | type OuterNamedStruct struct
type OuterNamedOrderedStruct (line 349) | type OuterNamedOrderedStruct struct
type OuterOuterStruct (line 355) | type OuterOuterStruct struct
type NestedAndChardata (line 359) | type NestedAndChardata struct
type NestedAndComment (line 364) | type NestedAndComment struct
type XMLNSFieldStruct (line 369) | type XMLNSFieldStruct struct
type NamedXMLNSFieldStruct (line 374) | type NamedXMLNSFieldStruct struct
type XMLNSFieldStructWithOmitEmpty (line 380) | type XMLNSFieldStructWithOmitEmpty struct
type NamedXMLNSFieldStructWithEmptyNamespace (line 385) | type NamedXMLNSFieldStructWithEmptyNamespace struct
type RecursiveXMLNSFieldStruct (line 391) | type RecursiveXMLNSFieldStruct struct
function ifaceptr (line 397) | func ifaceptr(x interface{}) interface{} {
function TestMarshal (line 1099) | func TestMarshal(t *testing.T) {
type AttrParent (line 1119) | type AttrParent struct
type BadAttr (line 1123) | type BadAttr struct
function TestMarshalErrors (line 1183) | func TestMarshalErrors(t *testing.T) {
function TestUnmarshal (line 1202) | func TestUnmarshal(t *testing.T) {
function TestMarshalIndent (line 1230) | func TestMarshalIndent(t *testing.T) {
type limitedBytesWriter (line 1243) | type limitedBytesWriter struct
method Write (line 1248) | func (lw *limitedBytesWriter) Write(p []byte) (n int, err error) {
function TestMarshalWriteErrors (line 1264) | func TestMarshalWriteErrors(t *testing.T) {
function TestMarshalWriteIOErrors (line 1292) | func TestMarshalWriteIOErrors(t *testing.T) {
function TestMarshalFlush (line 1302) | func TestMarshalFlush(t *testing.T) {
function TestEncodeElement (line 1395) | func TestEncodeElement(t *testing.T) {
function BenchmarkMarshal (line 1413) | func BenchmarkMarshal(b *testing.B) {
function BenchmarkUnmarshal (line 1420) | func BenchmarkUnmarshal(b *testing.B) {
function TestStructPointerMarshal (line 1429) | func TestStructPointerMarshal(t *testing.T) {
function TestEncodeToken (line 1789) | func TestEncodeToken(t *testing.T) {
function TestProcInstEncodeToken (line 1827) | func TestProcInstEncodeToken(t *testing.T) {
function TestDecodeEncode (line 1844) | func TestDecodeEncode(t *testing.T) {
function TestRace9796 (line 1862) | func TestRace9796(t *testing.T) {
function TestIsValidDirective (line 1878) | func TestIsValidDirective(t *testing.T) {
function TestSimpleUseOfEncodeToken (line 1911) | func TestSimpleUseOfEncodeToken(t *testing.T) {
FILE: vendor/golang.org/x/net/webdav/internal/xml/read.go
function Unmarshal (line 114) | func Unmarshal(data []byte, v interface{}) error {
method Decode (line 120) | func (d *Decoder) Decode(v interface{}) error {
method DecodeElement (line 128) | func (d *Decoder) DecodeElement(v interface{}, start *StartElement) error {
type UnmarshalError (line 137) | type UnmarshalError
method Error (line 139) | func (e UnmarshalError) Error() string { return string(e) }
type Unmarshaler (line 156) | type Unmarshaler interface
type UnmarshalerAttr (line 168) | type UnmarshalerAttr interface
function receiverType (line 173) | func receiverType(val interface{}) string {
method unmarshalInterface (line 183) | func (p *Decoder) unmarshalInterface(val Unmarshaler, start *StartElemen...
method unmarshalTextInterface (line 205) | func (p *Decoder) unmarshalTextInterface(val encoding.TextUnmarshaler, s...
method unmarshalAttr (line 228) | func (p *Decoder) unmarshalAttr(val reflect.Value, attr Attr) error {
method unmarshal (line 272) | func (p *Decoder) unmarshal(val reflect.Value, start *StartElement) error {
function copyValue (line 555) | func copyValue(dst reflect.Value, src []byte) (err error) {
method unmarshalPath (line 612) | func (p *Decoder) unmarshalPath(tinfo *typeInfo, sv reflect.Value, paren...
method Skip (line 677) | func (d *Decoder) Skip() error {
FILE: vendor/golang.org/x/net/webdav/internal/xml/read_test.go
function TestUnmarshalFeed (line 19) | func TestUnmarshalFeed(t *testing.T) {
constant atomFeedString (line 30) | atomFeedString = `
type Feed (line 85) | type Feed struct
type Entry (line 95) | type Entry struct
type Link (line 104) | type Link struct
type Person (line 109) | type Person struct
type Text (line 116) | type Text struct
constant pathTestString (line 219) | pathTestString = `
type PathTestItem (line 241) | type PathTestItem struct
type PathTestA (line 245) | type PathTestA struct
type PathTestB (line 250) | type PathTestB struct
type PathTestC (line 255) | type PathTestC struct
type PathTestSet (line 261) | type PathTestSet struct
type PathTestD (line 265) | type PathTestD struct
type PathTestE (line 270) | type PathTestE struct
function TestUnmarshalPaths (line 283) | func TestUnmarshalPaths(t *testing.T) {
type BadPathTestA (line 295) | type BadPathTestA struct
type BadPathTestB (line 301) | type BadPathTestB struct
type BadPathTestC (line 307) | type BadPathTestC struct
type BadPathTestD (line 312) | type BadPathTestD struct
type BadPathEmbeddedA (line 317) | type BadPathEmbeddedA struct
type BadPathEmbeddedB (line 321) | type BadPathEmbeddedB struct
function TestUnmarshalBadPaths (line 334) | func TestUnmarshalBadPaths(t *testing.T) {
constant OK (line 343) | OK = "OK"
constant withoutNameTypeData (line 344) | withoutNameTypeData = `
type TestThree (line 348) | type TestThree struct
function TestUnmarshalWithoutNameType (line 353) | func TestUnmarshalWithoutNameType(t *testing.T) {
function TestUnmarshalAttr (line 363) | func TestUnmarshalAttr(t *testing.T) {
type Tables (line 407) | type Tables struct
function TestUnmarshalNS (line 467) | func TestUnmarshalNS(t *testing.T) {
function TestRoundTrip (line 489) | func TestRoundTrip(t *testing.T) {
function TestMarshalNS (line 517) | func TestMarshalNS(t *testing.T) {
type TableAttrs (line 530) | type TableAttrs struct
type TAttr (line 534) | type TAttr struct
function TestUnmarshalNSAttr (line 612) | func TestUnmarshalNSAttr(t *testing.T) {
function TestMarshalNSAttr (line 634) | func TestMarshalNSAttr(t *testing.T) {
type MyCharData (line 656) | type MyCharData struct
method UnmarshalXML (line 660) | func (m *MyCharData) UnmarshalXML(d *Decoder, start StartElement) error {
method UnmarshalXMLAttr (line 678) | func (m *MyCharData) UnmarshalXMLAttr(attr Attr) error {
type MyAttr (line 682) | type MyAttr struct
method UnmarshalXMLAttr (line 686) | func (m *MyAttr) UnmarshalXMLAttr(attr Attr) error {
type MyStruct (line 693) | type MyStruct struct
function TestUnmarshaler (line 701) | func TestUnmarshaler(t *testing.T) {
type Pea (line 719) | type Pea struct
type Pod (line 723) | type Pod struct
function TestUnmarshalIntoInterface (line 728) | func TestUnmarshalIntoInterface(t *testing.T) {
FILE: vendor/golang.org/x/net/webdav/internal/xml/typeinfo.go
type typeInfo (line 15) | type typeInfo struct
type fieldInfo (line 21) | type fieldInfo struct
method value (line 357) | func (finfo *fieldInfo) value(v reflect.Value) reflect.Value {
type fieldFlags (line 29) | type fieldFlags
constant fElement (line 32) | fElement fieldFlags = 1 << iota
constant fAttr (line 33) | fAttr
constant fCharData (line 34) | fCharData
constant fInnerXml (line 35) | fInnerXml
constant fComment (line 36) | fComment
constant fAny (line 37) | fAny
constant fOmitEmpty (line 39) | fOmitEmpty
constant fMode (line 41) | fMode = fElement | fAttr | fCharData | fInnerXml | fComment | fAny
function getTypeInfo (line 51) | func getTypeInfo(typ reflect.Type) (*typeInfo, error) {
function structFieldInfo (line 114) | func structFieldInfo(typ reflect.Type, f *reflect.StructField) (*fieldIn...
function lookupXMLName (line 238) | func lookupXMLName(typ reflect.Type) (xmlname *fieldInfo) {
function min (line 261) | func min(a, b int) int {
function addFieldInfo (line 275) | func addFieldInfo(typ reflect.Type, tinfo *typeInfo, newf *fieldInfo) er...
type TagPathError (line 344) | type TagPathError struct
method Error (line 350) | func (e *TagPathError) Error() string {
FILE: vendor/golang.org/x/net/webdav/internal/xml/xml.go
type SyntaxError (line 29) | type SyntaxError struct
method Error (line 34) | func (e *SyntaxError) Error() string {
type Name (line 47) | type Name struct
method isNamespace (line 52) | func (name Name) isNamespace() bool {
type Attr (line 57) | type Attr struct
type Token (line 64) | type Token interface
type StartElement (line 67) | type StartElement struct
method Copy (line 72) | func (e StartElement) Copy() StartElement {
method End (line 80) | func (e StartElement) End() EndElement {
method setDefaultNamespace (line 86) | func (e *StartElement) setDefaultNamespace() {
type EndElement (line 109) | type EndElement struct
type CharData (line 116) | type CharData
method Copy (line 124) | func (c CharData) Copy() CharData { return CharData(makeCopy(c)) }
function makeCopy (line 118) | func makeCopy(b []byte) []byte {
type Comment (line 128) | type Comment
method Copy (line 130) | func (c Comment) Copy() Comment { return Comment(makeCopy(c)) }
type ProcInst (line 133) | type ProcInst struct
method Copy (line 138) | func (p ProcInst) Copy() ProcInst {
type Directive (line 145) | type Directive
method Copy (line 147) | func (d Directive) Copy() Directive { return Directive(makeCopy(d)) }
function CopyToken (line 150) | func CopyToken(t Token) Token {
type Decoder (line 168) | type Decoder struct
method Token (line 272) | func (d *Decoder) Token() (t Token, err error) {
method translate (line 332) | func (d *Decoder) translate(n *Name, isElementName bool) {
method switchToReader (line 350) | func (d *Decoder) switchToReader(r io.Reader) {
method push (line 379) | func (d *Decoder) push(kind int) *stack {
method pop (line 392) | func (d *Decoder) pop() *stack {
method pushEOF (line 405) | func (d *Decoder) pushEOF() {
method popEOF (line 431) | func (d *Decoder) popEOF() bool {
method pushElement (line 440) | func (d *Decoder) pushElement(name Name) {
method pushNs (line 447) | func (d *Decoder) pushNs(local string, url string, ok bool) {
method syntaxError (line 455) | func (d *Decoder) syntaxError(msg string) error {
method popElement (line 465) | func (d *Decoder) popElement(t *EndElement) bool {
method autoClose (line 503) | func (d *Decoder) autoClose(t Token) (Token, bool) {
method RawToken (line 526) | func (d *Decoder) RawToken() (Token, error) {
method rawToken (line 533) | func (d *Decoder) rawToken() (Token, error) {
method attrval (line 832) | func (d *Decoder) attrval() []byte {
method space (line 867) | func (d *Decoder) space() {
method getc (line 886) | func (d *Decoder) getc() (b byte, ok bool) {
method InputOffset (line 912) | func (d *Decoder) InputOffset() int64 {
method savedOffset (line 918) | func (d *Decoder) savedOffset() int {
method mustgetc (line 930) | func (d *Decoder) mustgetc() (b byte, ok bool) {
method ungetc (line 940) | func (d *Decoder) ungetc(b byte) {
method text (line 960) | func (d *Decoder) text(quote int, cdata bool) []byte {
method nsname (line 1139) | func (d *Decoder) nsname() (name Name, ok bool) {
method name (line 1157) | func (d *Decoder) name() (s string, ok bool) {
method readName (line 1175) | func (d *Decoder) readName() (ok bool) {
function NewDecoder (line 239) | func NewDecoder(r io.Reader) *Decoder {
constant xmlURL (line 327) | xmlURL = "http://www.w3.org/XML/1998/namespace"
type stack (line 366) | type stack struct
constant stkStart (line 374) | stkStart = iota
constant stkNs (line 375) | stkNs
constant stkEOF (line 376) | stkEOF
function isInCharacterRange (line 1128) | func isInCharacterRange(r rune) (inrange bool) {
function isNameByte (line 1199) | func isNameByte(c byte) bool {
function isName (line 1206) | func isName(s []byte) bool {
function isNameString (line 1230) | func isNameString(s string) bool {
function EscapeText (line 1876) | func EscapeText(w io.Writer, s []byte) error {
function escapeText (line 1883) | func escapeText(w io.Writer, s []byte, escapeNewline bool) error {
method EscapeString (line 1932) | func (p *printer) EscapeString(s string) {
function Escape (line 1972) | func Escape(w io.Writer, s []byte) {
function procInst (line 1978) | func procInst(param, s string) string {
FILE: vendor/golang.org/x/net/webdav/internal/xml/xml_test.go
constant testInput (line 17) | testInput = `
constant testInputAltEncoding (line 110) | testInputAltEncoding = `
function TestRawToken (line 170) | func TestRawToken(t *testing.T) {
constant nonStrictInput (line 176) | nonStrictInput = `
function TestNonStrictRawToken (line 225) | func TestNonStrictRawToken(t *testing.T) {
type downCaser (line 231) | type downCaser struct
method ReadByte (line 236) | func (d *downCaser) ReadByte() (c byte, err error) {
method Read (line 244) | func (d *downCaser) Read(p []byte) (int, error) {
function TestRawTokenAltEncoding (line 249) | func TestRawTokenAltEncoding(t *testing.T) {
function TestRawTokenAltEncodingNoConverter (line 260) | func TestRawTokenAltEncodingNoConverter(t *testing.T) {
function testRawToken (line 283) | func testRawToken(t *testing.T, d *Decoder, raw string, rawTokens []Toke...
function TestNestedDirectives (line 361) | func TestNestedDirectives(t *testing.T) {
function TestToken (line 375) | func TestToken(t *testing.T) {
function TestSyntax (line 390) | func TestSyntax(t *testing.T) {
type allScalars (line 402) | type allScalars struct
constant testScalarsInput (line 448) | testScalarsInput = `
function TestAllScalars (line 471) | func TestAllScalars(t *testing.T) {
type item (line 483) | type item struct
function TestIssue569 (line 487) | func TestIssue569(t *testing.T) {
function TestUnquotedAttrs (line 497) | func TestUnquotedAttrs(t *testing.T) {
function TestValuelessAttrs (line 517) | func TestValuelessAttrs(t *testing.T) {
function TestCopyTokenCharData (line 544) | func TestCopyTokenCharData(t *testing.T) {
function TestCopyTokenStartElement (line 557) | func TestCopyTokenStartElement(t *testing.T) {
function TestSyntaxErrorLineNum (line 573) | func TestSyntaxErrorLineNum(t *testing.T) {
function TestTrailingRawToken (line 588) | func TestTrailingRawToken(t *testing.T) {
function TestTrailingToken (line 599) | func TestTrailingToken(t *testing.T) {
function TestEntityInsideCDATA (line 610) | func TestEntityInsideCDATA(t *testing.T) {
function TestDisallowedCharacters (line 636) | func TestDisallowedCharacters(t *testing.T) {
type procInstEncodingTest (line 655) | type procInstEncodingTest struct
function TestProcInstEncoding (line 670) | func TestProcInstEncoding(t *testing.T) {
function TestDirectivesWithComments (line 700) | func TestDirectivesWithComments(t *testing.T) {
type errWriter (line 715) | type errWriter struct
method Write (line 717) | func (errWriter) Write(p []byte) (n int, err error) { return 0, fmt.Er...
function TestEscapeTextIOErrors (line 719) | func TestEscapeTextIOErrors(t *testing.T) {
function TestEscapeTextInvalidChar (line 728) | func TestEscapeTextInvalidChar(t *testing.T) {
function TestIssue5880 (line 743) | func TestIssue5880(t *testing.T) {
FILE: vendor/golang.org/x/net/webdav/litmus_test_server.go
function main (line 32) | func main() {
FILE: vendor/golang.org/x/net/webdav/lock.go
type Condition (line 29) | type Condition struct
type LockSystem (line 38) | type LockSystem interface
type LockDetails (line 97) | type LockDetails struct
function NewMemLS (line 115) | func NewMemLS() LockSystem {
type memLS (line 123) | type memLS struct
method nextToken (line 133) | func (m *memLS) nextToken() string {
method collectExpiredNodes (line 138) | func (m *memLS) collectExpiredNodes(now time.Time) {
method Confirm (line 147) | func (m *memLS) Confirm(now time.Time, name0, name1 string, conditions...
method lookup (line 192) | func (m *memLS) lookup(name string, conditions ...Condition) (n *memLS...
method hold (line 212) | func (m *memLS) hold(n *memLSNode) {
method unhold (line 222) | func (m *memLS) unhold(n *memLSNode) {
method Create (line 232) | func (m *memLS) Create(now time.Time, details LockDetails) (string, er...
method Refresh (line 252) | func (m *memLS) Refresh(now time.Time, token string, duration time.Dur...
method Unlock (line 275) | func (m *memLS) Unlock(now time.Time, token string) error {
method canCreate (line 291) | func (m *memLS) canCreate(name string, zeroDepth bool) bool {
method create (line 315) | func (m *memLS) create(name string) (ret *memLSNode) {
method remove (line 336) | func (m *memLS) remove(n *memLSNode) {
function walkToRoot (line 352) | func walkToRoot(name string, f func(name0 string, first bool) bool) bool {
type memLSNode (line 368) | type memLSNode struct
type byExpiry (line 386) | type byExpiry
method Len (line 388) | func (b *byExpiry) Len() int {
method Less (line 392) | func (b *byExpiry) Less(i, j int) bool {
method Swap (line 396) | func (b *byExpiry) Swap(i, j int) {
method Push (line 402) | func (b *byExpiry) Push(x interface{}) {
method Pop (line 408) | func (b *byExpiry) Pop() interface{} {
constant infiniteTimeout (line 417) | infiniteTimeout = -1
function parseTimeout (line 421) | func parseTimeout(s string) (time.Duration, error) {
FILE: vendor/golang.org/x/net/webdav/lock_test.go
function TestWalkToRoot (line 19) | func TestWalkToRoot(t *testing.T) {
function lockTestZeroDepth (line 88) | func lockTestZeroDepth(name string) bool {
function TestMemLSCanCreate (line 98) | func TestMemLSCanCreate(t *testing.T) {
function TestMemLSLookup (line 158) | func TestMemLSLookup(t *testing.T) {
function TestMemLSConfirm (line 207) | func TestMemLSConfirm(t *testing.T) {
function TestMemLSNonCanonicalRoot (line 299) | func TestMemLSNonCanonicalRoot(t *testing.T) {
function TestMemLSExpiry (line 320) | func TestMemLSExpiry(t *testing.T) {
function TestMemLS (line 448) | func TestMemLS(t *testing.T) {
method consistent (line 534) | func (m *memLS) consistent() error {
function TestParseTimeout (line 636) | func TestParseTimeout(t *testing.T) {
FILE: vendor/golang.org/x/net/webdav/prop.go
type Proppatch (line 23) | type Proppatch struct
type Propstat (line 33) | type Propstat struct
function makePropstats (line 57) | func makePropstats(x, y Propstat) []Propstat {
type DeadPropsHolder (line 84) | type DeadPropsHolder interface
function props (line 169) | func props(ctx context.Context, fs FileSystem, ls LockSystem, name strin...
function propnames (line 217) | func propnames(ctx context.Context, fs FileSystem, ls LockSystem, name s...
function allprop (line 257) | func allprop(ctx context.Context, fs FileSystem, ls LockSystem, name str...
function patch (line 277) | func patch(ctx context.Context, fs FileSystem, ls LockSystem, name strin...
function escapeXML (line 339) | func escapeXML(s string) string {
function findResourceType (line 359) | func findResourceType(ctx context.Context, fs FileSystem, ls LockSystem,...
function findDisplayName (line 366) | func findDisplayName(ctx context.Context, fs FileSystem, ls LockSystem, ...
function findContentLength (line 374) | func findContentLength(ctx context.Context, fs FileSystem, ls LockSystem...
function findLastModified (line 378) | func findLastModified(ctx context.Context, fs FileSystem, ls LockSystem,...
function findContentType (line 382) | func findContentType(ctx context.Context, fs FileSystem, ls LockSystem, ...
function findETag (line 405) | func findETag(ctx context.Context, fs FileSystem, ls LockSystem, name st...
function findSupportedLock (line 412) | func findSupportedLock(ctx context.Context, fs FileSystem, ls LockSystem...
FILE: vendor/golang.org/x/net/webdav/prop_test.go
function TestMemPS (line 19) | func TestMemPS(t *testing.T) {
function cmpXMLName (line 565) | func cmpXMLName(a, b xml.Name) bool {
type byXMLName (line 572) | type byXMLName
method Len (line 574) | func (b byXMLName) Len() int { return len(b) }
method Swap (line 575) | func (b byXMLName) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
method Less (line 576) | func (b byXMLName) Less(i, j int) bool { return cmpXMLName(b[i], b[j]) }
type byPropname (line 578) | type byPropname
method Len (line 580) | func (b byPropname) Len() int { return len(b) }
method Swap (line 581) | func (b byPropname) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
method Less (line 582) | func (b byPropname) Less(i, j int) bool { return cmpXMLName(b[i].XMLNa...
type byStatus (line 584) | type byStatus
method Len (line 586) | func (b byStatus) Len() int { return len(b) }
method Swap (line 587) | func (b byStatus) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
method Less (line 588) | func (b byStatus) Less(i, j int) bool { return b[i].Status < b[j].Stat...
type noDeadPropsFS (line 590) | type noDeadPropsFS struct
method OpenFile (line 594) | func (fs noDeadPropsFS) OpenFile(ctx context.Context, name string, fla...
type noDeadPropsFile (line 604) | type noDeadPropsFile struct
method Close (line 608) | func (f noDeadPropsFile) Close() error { ...
method Read (line 609) | func (f noDeadPropsFile) Read(p []byte) (int, error) { ...
method Readdir (line 610) | func (f noDeadPropsFile) Readdir(count int) ([]os.FileInfo, error) { ...
method Seek (line 611) | func (f noDeadPropsFile) Seek(off int64, whence int) (int64, error) { ...
method Stat (line 612) | func (f noDeadPropsFile) Stat() (os.FileInfo, error) { ...
method Write (line 613) | func (f noDeadPropsFile) Write(p []byte) (int, error) { ...
FILE: vendor/golang.org/x/net/webdav/webdav.go
type Handler (line 20) | type Handler struct
method stripPrefix (line 32) | func (h *Handler) stripPrefix(p string) (string, int, error) {
method ServeHTTP (line 42) | func (h *Handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
method lock (line 84) | func (h *Handler) lock(now time.Time, root string) (token string, stat...
method confirmLocks (line 99) | func (h *Handler) confirmLocks(r *http.Request, src, dst string) (rele...
method handleOptions (line 172) | func (h *Handler) handleOptions(w http.ResponseWriter, r *http.Request...
method handleGetHeadPost (line 194) | func (h *Handler) handleGetHeadPost(w http.ResponseWriter, r *http.Req...
method handleDelete (line 223) | func (h *Handler) handleDelete(w http.ResponseWriter, r *http.Request)...
method handlePut (line 253) | func (h *Handler) handlePut(w http.ResponseWriter, r *http.Request) (s...
method handleMkcol (line 292) | func (h *Handler) handleMkcol(w http.ResponseWriter, r *http.Request) ...
method handleCopyMove (line 317) | func (h *Handler) handleCopyMove(w http.ResponseWriter, r *http.Reques...
method handleLock (line 392) | func (h *Handler) handleLock(w http.ResponseWriter, r *http.Request) (...
method handleUnlock (line 486) | func (h *Handler) handleUnlock(w http.ResponseWriter, r *http.Request)...
method handlePropfind (line 509) | func (h *Handler) handlePropfind(w http.ResponseWriter, r *http.Reques...
method handleProppatch (line 573) | func (h *Handler) handleProppatch(w http.ResponseWriter, r *http.Reque...
function makePropstatResponse (line 612) | func makePropstatResponse(href string, pstats []Propstat) *response {
constant infiniteDepth (line 633) | infiniteDepth = -1
constant invalidDepth (line 634) | invalidDepth = -2
function parseDepth (line 646) | func parseDepth(s string) int {
constant StatusMulti (line 660) | StatusMulti = 207
constant StatusUnprocessableEntity (line 661) | StatusUnprocessableEntity = 422
constant StatusLocked (line 662) | StatusLocked = 423
constant StatusFailedDependency (line 663) | StatusFailedDependency = 424
constant StatusInsufficientStorage (line 664) | StatusInsufficientStorage = 507
function StatusText (line 667) | func StatusText(code int) string {
FILE: vendor/golang.org/x/net/webdav/webdav_test.go
function TestPrefix (line 26) | func TestPrefix(t *testing.T) {
function TestEscapeXML (line 208) | func TestEscapeXML(t *testing.T) {
function TestFilenameEscape (line 246) | func TestFilenameEscape(t *testing.T) {
FILE: vendor/golang.org/x/net/webdav/xml.go
type lockInfo (line 39) | type lockInfo struct
type owner (line 48) | type owner struct
function readLockInfo (line 52) | func readLockInfo(r io.Reader) (li lockInfo, status int, err error) {
type countingReader (line 73) | type countingReader struct
method Read (line 78) | func (c *countingReader) Read(p []byte) (int, error) {
function writeLockInfo (line 84) | func writeLockInfo(w io.Writer, token string, ld LockDetails) (int, erro...
function escape (line 104) | func escape(s string) string {
function next (line 121) | func next(d *ixml.Decoder) (ixml.Token, error) {
type propfindProps (line 137) | type propfindProps
method UnmarshalXML (line 143) | func (pn *propfindProps) UnmarshalXML(d *ixml.Decoder, start ixml.Star...
type propfind (line 170) | type propfind struct
function readPropfind (line 178) | func readPropfind(r io.Reader) (pf propfind, status int, err error) {
type Property (line 209) | type Property struct
type ixmlProperty (line 229) | type ixmlProperty struct
type xmlError (line 237) | type xmlError struct
type propstat (line 244) | type propstat struct
method MarshalXML (line 262) | func (ps propstat) MarshalXML(e *ixml.Encoder, start ixml.StartElement...
type ixmlPropstat (line 253) | type ixmlPropstat struct
type response (line 291) | type response struct
type multistatusWriter (line 309) | type multistatusWriter struct
method write (line 328) | func (w *multistatusWriter) write(r *response) error {
method writeHeader (line 351) | func (w *multistatusWriter) writeHeader() error {
method close (line 378) | func (w *multistatusWriter) close() error {
function xmlLang (line 405) | func xmlLang(s ixml.StartElement, d string) string {
type xmlValue (line 414) | type xmlValue
method UnmarshalXML (line 416) | func (v *xmlValue) UnmarshalXML(d *ixml.Decoder, start ixml.StartEleme...
type proppatchProps (line 444) | type proppatchProps
method UnmarshalXML (line 454) | func (ps *proppatchProps) UnmarshalXML(d *ixml.Decoder, start ixml.Sta...
type setRemove (line 483) | type setRemove struct
type propertyupdate (line 490) | type propertyupdate struct
function readProppatch (line 496) | func readProppatch(r io.Reader) (patches []Proppatch, status int, err er...
FILE: vendor/golang.org/x/net/webdav/xml_test.go
function TestReadLockInfo (line 22) | func TestReadLockInfo(t *testing.T) {
function TestReadPropfind (line 138) | func TestReadPropfind(t *testing.T) {
function TestMultistatusWriter (line 351) | func TestMultistatusWriter(t *testing.T) {
function TestReadProppatch (line 607) | func TestReadProppatch(t *testing.T) {
function TestUnmarshalXMLValue (line 728) | func TestUnmarshalXMLValue(t *testing.T) {
type xmlNormalizer (line 820) | type xmlNormalizer struct
method normalize (line 839) | func (n *xmlNormalizer) normalize(w io.Writer, r io.Reader) error {
method equalXML (line 883) | func (n *xmlNormalizer) equalXML(a, b io.Reader) (bool, error) {
type byName (line 897) | type byName
method Len (line 899) | func (a byName) Len() int { return len(a) }
method Swap (line 900) | func (a byName) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
method Less (line 901) | func (a byName) Less(i, j int) bool {
FILE: vendor/golang.org/x/net/websocket/client.go
type DialError (line 16) | type DialError struct
method Error (line 21) | func (e *DialError) Error() string {
function NewConfig (line 26) | func NewConfig(server, origin string) (config *Config, err error) {
function NewClient (line 42) | func NewClient(config *Config, rwc io.ReadWriteCloser) (ws *Conn, err er...
function Dial (line 55) | func Dial(url_, protocol, origin string) (ws *Conn, err error) {
function parseAuthority (line 71) | func parseAuthority(location *url.URL) string {
function DialConfig (line 81) | func DialConfig(config *Config) (ws *Conn, err error) {
FILE: vendor/golang.org/x/net/websocket/dial.go
function dialWithDialer (line 12) | func dialWithDialer(dialer *net.Dialer, config *Config) (conn net.Conn, ...
FILE: vendor/golang.org/x/net/websocket/dial_test.go
function TestDialConfigTLSWithDialer (line 19) | func TestDialConfigTLSWithDialer(t *testing.T) {
FILE: vendor/golang.org/x/net/websocket/exampledial_test.go
function ExampleDial (line 15) | func ExampleDial() {
FILE: vendor/golang.org/x/net/websocket/examplehandler_test.go
function EchoServer (line 15) | func EchoServer(ws *websocket.Conn) {
function ExampleHandler (line 20) | func ExampleHandler() {
FILE: vendor/golang.org/x/net/websocket/hybi.go
constant websocketGUID (line 26) | websocketGUID = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"
constant closeStatusNormal (line 28) | closeStatusNormal = 1000
constant closeStatusGoingAway (line 29) | closeStatusGoingAway = 1001
constant closeStatusProtocolError (line 30) | closeStatusProtocolError = 1002
constant closeStatusUnsupportedData (line 31) | closeStatusUnsupportedData = 1003
constant closeStatusFrameTooLarge (line 32) | closeStatusFrameTooLarge = 1004
constant closeStatusNoStatusRcvd (line 33) | closeStatusNoStatusRcvd = 1005
constant closeStatusAbnormalClosure (line 34) | closeStatusAbnormalClosure = 1006
constant closeStatusBadMessageData (line 35) | closeStatusBadMessageData = 1007
constant closeStatusPolicyViolation (line 36) | closeStatusPolicyViolation = 1008
constant closeStatusTooBigData (line 37) | closeStatusTooBigData = 1009
constant closeStatusExtensionMismatch (line 38) | closeStatusExtensionMismatch = 1010
constant maxControlFramePayloadLength (line 40) | maxControlFramePayloadLength = 125
type hybiFrameHeader (line 63) | type hybiFrameHeader struct
type hybiFrameReader (line 74) | type hybiFrameReader struct
method Read (line 82) | func (frame *hybiFrameReader) Read(msg []byte) (n int, err error) {
method PayloadType (line 93) | func (frame *hybiFrameReader) PayloadType() byte { return frame.header...
method HeaderReader (line 95) | func (frame *hybiFrameReader) HeaderReader() io.Reader {
method TrailerReader (line 105) | func (frame *hybiFrameReader) TrailerReader() io.Reader { return nil }
method Len (line 107) | func (frame *hybiFrameReader) Len() (n int) { return frame.length }
type hybiFrameReaderFactory (line 110) | type hybiFrameReaderFactory struct
method NewFrameReader (line 117) | func (buf hybiFrameReaderFactory) NewFrameReader() (frame frameReader,...
type hybiFrameWriter (line 181) | type hybiFrameWriter struct
method Write (line 187) | func (frame *hybiFrameWriter) Write(msg []byte) (n int, err error) {
method Close (line 244) | func (frame *hybiFrameWriter) Close() error { return nil }
type hybiFrameWriterFactory (line 246) | type hybiFrameWriterFactory struct
method NewFrameWriter (line 251) | func (buf hybiFrameWriterFactory) NewFrameWriter(payloadType byte) (fr...
type hybiFrameHandler (line 262) | type hybiFrameHandler struct
method HandleFrame (line 267) | func (handler *hybiFrameHandler) HandleFrame(frame frameReader) (frame...
method WriteClose (line 308) | func (handler *hybiFrameHandler) WriteClose(status int) (err error) {
method WritePong (line 322) | func (handler *hybiFrameHandler) WritePong(msg []byte) (n int, err err...
function newHybiConn (line 335) | func newHybiConn(config *Config, buf *bufio.ReadWriter, rwc io.ReadWrite...
function generateMaskingKey (line 352) | func generateMaskingKey() (maskingKey []byte, err error) {
function generateNonce (line 362) | func generateNonce() (nonce []byte) {
function removeZone (line 374) | func removeZone(host string) string {
function getNonceAccept (line 391) | func getNonceAccept(nonce []byte) (expected []byte, err error) {
function hybiClientHandshake (line 405) | func hybiClientHandshake(config *Config, br *bufio.Reader, bw *bufio.Wri...
function newHybiClientConn (line 480) | func newHybiClientConn(config *Config, buf *bufio.ReadWriter, rwc io.Rea...
type hybiServerHandshaker (line 485) | type hybiServerHandshaker struct
method ReadHandshake (line 490) | func (c *hybiServerHandshaker) ReadHandshake(buf *bufio.Reader, req *h...
method AcceptHandshake (line 551) | func (c *hybiServerHandshaker) AcceptHandshake(buf *bufio.Writer) (err...
method NewServerConn (line 576) | func (c *hybiServerHandshaker) NewServerConn(buf *bufio.ReadWriter, rw...
function Origin (line 539) | func Origin(config *Config, req *http.Request) (*url.URL, error) {
function newHybiServerConn (line 581) | func newHybiServerConn(config *Config, buf *bufio.ReadWriter, rwc io.Rea...
FILE: vendor/golang.org/x/net/websocket/hybi_test.go
function TestSecWebSocketAccept (line 20) | func TestSecWebSocketAccept(t *testing.T) {
function TestHybiClientHandshake (line 33) | func TestHybiClientHandshake(t *testing.T) {
function TestHybiClientHandshakeWithHeader (line 106) | func TestHybiClientHandshakeWithHeader(t *testing.T) {
function TestHybiServerHandshake (line 171) | func TestHybiServerHandshake(t *testing.T) {
function TestHybiServerHandshakeNoSubProtocol (line 221) | func TestHybiServerHandshakeNoSubProtocol(t *testing.T) {
function TestHybiServerHandshakeHybiBadVersion (line 266) | func TestHybiServerHandshakeHybiBadVersion(t *testing.T) {
function testHybiFrame (line 292) | func testHybiFrame(t *testing.T, testHeader, testPayload, testMaskedPayl...
function TestHybiShortTextFrame (line 348) | func TestHybiShortTextFrame(t *testing.T) {
function TestHybiShortMaskedTextFrame (line 357) | func TestHybiShortMaskedTextFrame(t *testing.T) {
function TestHybiShortBinaryFrame (line 367) | func TestHybiShortBinaryFrame(t *testing.T) {
function TestHybiControlFrame (line 376) | func TestHybiControlFrame(t *testing.T) {
function TestHybiLongFrame (line 396) | func TestHybiLongFrame(t *testing.T) {
function TestHybiClientRead (line 408) | func TestHybiClientRead(t *testing.T) {
function TestHybiShortRead (line 446) | func TestHybiShortRead(t *testing.T) {
function TestHybiServerRead (line 486) | func TestHybiServerRead(t *testing.T) {
function TestHybiServerReadWithoutMasking (line 532) | func TestHybiServerReadWithoutMasking(t *testing.T) {
function TestHybiClientReadWithMasking (line 545) | func TestHybiClientReadWithMasking(t *testing.T) {
function TestHybiServerFirefoxHandshake (line 564) | func TestHybiServerFirefoxHandshake(t *testing.T) {
FILE: vendor/golang.org/x/net/websocket/server.go
function newServerConn (line 14) | func newServerConn(rwc io.ReadWriteCloser, buf *bufio.ReadWriter, req *h...
type Server (line 55) | type Server struct
method ServeHTTP (line 69) | func (s Server) ServeHTTP(w http.ResponseWriter, req *http.Request) {
method serveWebSocket (line 73) | func (s Server) serveWebSocket(w http.ResponseWriter, req *http.Reques...
type Handler (line 99) | type Handler
method ServeHTTP (line 110) | func (h Handler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
function checkOrigin (line 101) | func checkOrigin(config *Config, req *http.Request) (err error) {
FILE: vendor/golang.org/x/net/websocket/websocket.go
constant ProtocolVersionHybi13 (line 30) | ProtocolVersionHybi13 = 13
constant ProtocolVersionHybi (line 31) | ProtocolVersionHybi = ProtocolVersionHybi13
constant SupportedProtocolVersion (line 32) | SupportedProtocolVersion = "13"
constant ContinuationFrame (line 34) | ContinuationFrame = 0
constant TextFrame (line 35) | TextFrame = 1
constant BinaryFrame (line 36) | BinaryFrame = 2
constant CloseFrame (line 37) | CloseFrame = 8
constant PingFrame (line 38) | PingFrame = 9
constant PongFrame (line 39) | PongFrame = 10
constant UnknownFrame (line 40) | UnknownFrame = 255
constant DefaultMaxPayloadBytes (line 42) | DefaultMaxPayloadBytes = 32 << 20
type ProtocolError (line 46) | type ProtocolError struct
method Error (line 50) | func (err *ProtocolError) Error() string { return err.ErrorString }
type Addr (line 74) | type Addr struct
method Network (line 79) | func (addr *Addr) Network() string { return "websocket" }
type Config (line 82) | type Config struct
type serverHandshaker (line 108) | type serverHandshaker interface
type frameReader (line 122) | type frameReader interface
type frameReaderFactory (line 141) | type frameReaderFactory interface
type frameWriter (line 146) | type frameWriter interface
type frameWriterFactory (line 152) | type frameWriterFactory interface
type frameHandler (line 156) | type frameHandler interface
type Conn (line 164) | type Conn struct
method Read (line 192) | func (ws *Conn) Read(msg []byte) (n int, err error) {
method Write (line 222) | func (ws *Conn) Write(msg []byte) (n int, err error) {
method Close (line 235) | func (ws *Conn) Close() error {
method IsClientConn (line 244) | func (ws *Conn) IsClientConn() bool { return ws.request == nil }
method IsServerConn (line 245) | func (ws *Conn) IsServerConn() bool { return ws.request != nil }
method LocalAddr (line 249) | func (ws *Conn) LocalAddr() net.Addr {
method RemoteAddr (line 258) | func (ws *Conn) RemoteAddr() net.Addr {
method SetDeadline (line 268) | func (ws *Conn) SetDeadline(t time.Time) error {
method SetReadDeadline (line 276) | func (ws *Conn) SetReadDeadline(t time.Time) error {
method SetWriteDeadline (line 284) | func (ws *Conn) SetWriteDeadline(t time.Time) error {
method Config (line 292) | func (ws *Conn) Config() *Config { return ws.config }
method Request (line 296) | func (ws *Conn) Request() *http.Request { return ws.request }
type Codec (line 299) | type Codec struct
method Send (line 305) | func (cd Codec) Send(ws *Conn, v interface{}) (err error) {
method Receive (line 327) | func (cd Codec) Receive(ws *Conn, v interface{}) (err error) {
function marshal (line 370) | func marshal(v interface{}) (msg []byte, payloadType byte, err error) {
function unmarshal (line 380) | func unmarshal(msg []byte, payloadType byte, v interface{}) (err error) {
function jsonMarshal (line 420) | func jsonMarshal(v interface{}) (msg []byte, payloadType byte, err error) {
function jsonUnmarshal (line 425) | func jsonUnmarshal(msg []byte, payloadType byte, v interface{}) (err err...
FILE: vendor/golang.org/x/net/websocket/websocket_test.go
function echoServer (line 28) | func echoServer(ws *Conn) {
type Count (line 33) | type Count struct
function countServer (line 38) | func countServer(ws *Conn) {
type testCtrlAndDataHandler (line 55) | type testCtrlAndDataHandler struct
method WritePing (line 59) | func (h *testCtrlAndDataHandler) WritePing(b []byte) (int, error) {
function ctrlAndDataServer (line 71) | func ctrlAndDataServer(ws *Conn) {
function subProtocolHandshake (line 104) | func subProtocolHandshake(config *Config, req *http.Request) error {
function subProtoServer (line 114) | func subProtoServer(ws *Conn) {
function startServer (line 120) | func startServer() {
function newConfig (line 134) | func newConfig(t *testing.T, path string) *Config {
function TestEcho (line 139) | func TestEcho(t *testing.T) {
function TestAddr (line 169) | func TestAddr(t *testing.T) {
function TestCount (line 194) | func TestCount(t *testing.T) {
function TestWithQuery (line 237) | func TestWithQuery(t *testing.T) {
function testWithProtocol (line 259) | func testWithProtocol(t *testing.T, subproto []string) (string, error) {
function TestWithProtocol (line 283) | func TestWithProtocol(t *testing.T) {
function TestWithTwoProtocol (line 293) | func TestWithTwoProtocol(t *testing.T) {
function TestWithBadProtocol (line 303) | func TestWithBadProtocol(t *testing.T) {
function TestHTTP (line 310) | func TestHTTP(t *testing.T) {
function TestTrailingSpaces (line 330) | func TestTrailingSpaces(t *testing.T) {
function TestDialConfigBadVersion (line 347) | func TestDialConfigBadVersion(t *testing.T) {
function TestDialConfigWithDialer (line 361) | func TestDialConfigWithDialer(t *testing.T) {
function TestSmallBuffer (line 381) | func TestSmallBuffer(t *testing.T) {
function TestParseAuthority (line 485) | func TestParseAuthority(t *testing.T) {
type closerConn (line 494) | type closerConn struct
method Close (line 499) | func (c *closerConn) Close() error {
function TestClose (line 504) | func TestClose(t *testing.T) {
function TestOrigin (line 555) | func TestOrigin(t *testing.T) {
function TestCtrlAndData (line 571) | func TestCtrlAndData(t *testing.T) {
function TestCodec_ReceiveLimited (line 610) | func TestCodec_ReceiveLimited(t *testing.T) {
FILE: vendor/golang.org/x/net/xsrftoken/xsrf.go
constant Timeout (line 21) | Timeout = 24 * time.Hour
function clean (line 24) | func clean(s string) string {
function Generate (line 33) | func Generate(key, userID, actionID string) string {
function generateTokenAtTime (line 38) | func generateTokenAtTime(key, userID, actionID string, now time.Time) st...
function Valid (line 57) | func Valid(token, key, userID, actionID string) bool {
function validTokenAtTime (line 62) | func validTokenAtTime(token, key, userID, actionID string, now time.Time...
FILE: vendor/golang.org/x/net/xsrftoken/xsrf_test.go
constant key (line 14) | key = "quay"
constant userID (line 15) | userID = "12345678"
constant actionID (line 16) | actionID = "POST /form"
function TestValidToken (line 24) | func TestValidToken(t *testing.T) {
function TestSeparatorReplacement (line 38) | func TestSeparatorReplacement(t *testing.T) {
function TestInvalidToken (line 46) | func TestInvalidToken(t *testing.T) {
function TestValidateBadData (line 68) | func TestValidateBadData(t *testing.T) {
FILE: vsphere-influxdb.go
constant name (line 44) | name = "vsphere-influxdb"
constant description (line 45) | description = "send vsphere stats to influxdb"
type Configuration (line 49) | type Configuration struct
type InfluxDB (line 59) | type InfluxDB struct
type VCenter (line 68) | type VCenter struct
method Connect (line 108) | func (vcenter *VCenter) Connect() error {
method Disconnect (line 134) | func (vcenter *VCenter) Disconnect() error {
method Init (line 149) | func (vcenter *VCenter) Init(config Configuration) error {
method Query (line 205) | func (vcenter *VCenter) Query(config Configuration, InfluxDBClient inf...
type MetricDef (line 77) | type MetricDef struct
type Metric (line 84) | type Metric struct
type MetricGroup (line 90) | type MetricGroup struct
type EntityQuery (line 97) | type EntityQuery struct
function min (line 754) | func min(n ...int64) int64 {
function max (line 769) | func max(n ...int64) int64 {
function sum (line 785) | func sum(n ...int64) int64 {
function average (line 795) | func average(n ...int64) int64 {
function worker (line 808) | func worker(id int, config Configuration, influxDBClient influxclient.Cl...
function main (line 828) | func main() {