File: fileflags_string.go

package info (click to toggle)
delve 1.24.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,092 kB
  • sloc: ansic: 111,943; sh: 169; asm: 141; makefile: 43; python: 23
file content (154 lines) | stat: -rw-r--r-- 5,136 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
// Code generated by "stringer -type FileFlags,StreamType,Arch,MemoryState,MemoryType,MemoryProtection"; DO NOT EDIT.

package minidump

import "strconv"

const _FileFlags_name = "FileNormalFileWithDataSegsFileWithFullMemoryFileWithHandleDataFileFilterMemoryFileScanMemoryFileWithUnloadedModulesFileWithIncorrectlyReferencedMemoryFileFilterModulePathsFileWithProcessThreadDataFileWithPrivateReadWriteMemoryFileWithoutOptionalDataFileWithFullMemoryInfoFileWithThreadInfoFileWithCodeSegsFileWithoutAuxilliarySegsFileWithFullAuxilliaryStateFileWithPrivateCopyMemoryFileIgnoreInaccessibleMemoryFileWithTokenInformation"

var _FileFlags_map = map[FileFlags]string{
	0:      _FileFlags_name[0:10],
	1:      _FileFlags_name[10:26],
	2:      _FileFlags_name[26:44],
	4:      _FileFlags_name[44:62],
	8:      _FileFlags_name[62:78],
	16:     _FileFlags_name[78:92],
	32:     _FileFlags_name[92:115],
	64:     _FileFlags_name[115:150],
	128:    _FileFlags_name[150:171],
	256:    _FileFlags_name[171:196],
	512:    _FileFlags_name[196:226],
	1024:   _FileFlags_name[226:249],
	2048:   _FileFlags_name[249:271],
	4096:   _FileFlags_name[271:289],
	8192:   _FileFlags_name[289:305],
	16384:  _FileFlags_name[305:330],
	32768:  _FileFlags_name[330:357],
	65536:  _FileFlags_name[357:382],
	131072: _FileFlags_name[382:410],
	262144: _FileFlags_name[410:434],
}

func (i FileFlags) String() string {
	if str, ok := _FileFlags_map[i]; ok {
		return str
	}
	return "FileFlags(" + strconv.FormatInt(int64(i), 10) + ")"
}

const _StreamType_name = "UnusedStreamReservedStream0ReservedStream1ThreadListStreamModuleListStreamMemoryListStreamExceptionStreamSystemInfoStreamThreadExListStreamMemory64ListStreamCommentStreamACommentStreamWHandleDataStreamFunctionTableStreamUnloadedModuleStreamMiscInfoStreamMemoryInfoListStreamThreadInfoListStreamHandleOperationListStreamTokenStreamJavascriptDataStreamSystemMemoryInfoStreamProcessVMCounterStream"

var _StreamType_index = [...]uint16{0, 12, 27, 42, 58, 74, 90, 105, 121, 139, 157, 171, 185, 201, 220, 240, 254, 274, 294, 319, 330, 350, 372, 394}

func (i StreamType) String() string {
	if i >= StreamType(len(_StreamType_index)-1) {
		return "StreamType(" + strconv.FormatInt(int64(i), 10) + ")"
	}
	return _StreamType_name[_StreamType_index[i]:_StreamType_index[i+1]]
}

const (
	_Arch_name_0 = "CpuArchitectureX86CpuArchitectureMipsCpuArchitectureAlphaCpuArchitecturePPCCpuArchitectureSHXCpuArchitectureARMCpuArchitectureIA64CpuArchitectureAlpha64CpuArchitectureMSILCpuArchitectureAMD64CpuArchitectureWoW64"
	_Arch_name_1 = "CpuArchitectureARM64"
	_Arch_name_2 = "CpuArchitectureUnknown"
)

var (
	_Arch_index_0 = [...]uint8{0, 18, 37, 57, 75, 93, 111, 130, 152, 171, 191, 211}
)

func (i Arch) String() string {
	switch {
	case i <= 10:
		return _Arch_name_0[_Arch_index_0[i]:_Arch_index_0[i+1]]
	case i == 12:
		return _Arch_name_1
	case i == 65535:
		return _Arch_name_2
	default:
		return "Arch(" + strconv.FormatInt(int64(i), 10) + ")"
	}
}

const (
	_MemoryState_name_0 = "MemoryStateCommit"
	_MemoryState_name_1 = "MemoryStateReserve"
	_MemoryState_name_2 = "MemoryStateFree"
)

func (i MemoryState) String() string {
	switch {
	case i == 4096:
		return _MemoryState_name_0
	case i == 8192:
		return _MemoryState_name_1
	case i == 65536:
		return _MemoryState_name_2
	default:
		return "MemoryState(" + strconv.FormatInt(int64(i), 10) + ")"
	}
}

const (
	_MemoryType_name_0 = "MemoryTypePrivate"
	_MemoryType_name_1 = "MemoryTypeMapped"
	_MemoryType_name_2 = "MemoryTypeImage"
)

func (i MemoryType) String() string {
	switch {
	case i == 131072:
		return _MemoryType_name_0
	case i == 262144:
		return _MemoryType_name_1
	case i == 16777216:
		return _MemoryType_name_2
	default:
		return "MemoryType(" + strconv.FormatInt(int64(i), 10) + ")"
	}
}

const (
	_MemoryProtection_name_0 = "MemoryProtectNoAccessMemoryProtectReadOnly"
	_MemoryProtection_name_1 = "MemoryProtectReadWrite"
	_MemoryProtection_name_2 = "MemoryProtectWriteCopy"
	_MemoryProtection_name_3 = "MemoryProtectExecute"
	_MemoryProtection_name_4 = "MemoryProtectExecuteRead"
	_MemoryProtection_name_5 = "MemoryProtectExecuteReadWrite"
	_MemoryProtection_name_6 = "MemoryProtectExecuteWriteCopy"
	_MemoryProtection_name_7 = "MemoryProtectPageGuard"
	_MemoryProtection_name_8 = "MemoryProtectNoCache"
	_MemoryProtection_name_9 = "MemoryProtectWriteCombine"
)

var (
	_MemoryProtection_index_0 = [...]uint8{0, 21, 42}
)

func (i MemoryProtection) String() string {
	switch {
	case 1 <= i && i <= 2:
		i -= 1
		return _MemoryProtection_name_0[_MemoryProtection_index_0[i]:_MemoryProtection_index_0[i+1]]
	case i == 4:
		return _MemoryProtection_name_1
	case i == 8:
		return _MemoryProtection_name_2
	case i == 16:
		return _MemoryProtection_name_3
	case i == 32:
		return _MemoryProtection_name_4
	case i == 64:
		return _MemoryProtection_name_5
	case i == 128:
		return _MemoryProtection_name_6
	case i == 256:
		return _MemoryProtection_name_7
	case i == 512:
		return _MemoryProtection_name_8
	case i == 1024:
		return _MemoryProtection_name_9
	default:
		return "MemoryProtection(" + strconv.FormatInt(int64(i), 10) + ")"
	}
}