runtime.special.kind (field)

13 uses

	runtime (current package)
		heapdump.go#L455: 				if sp.kind != _KindSpecialFinalizer {
		heapdump.go#L654: 			if sp.kind != _KindSpecialProfile {
		mgcmark.go#L361: 				if sp.kind != _KindSpecialFinalizer {
		mgcsweep.go#L372: 				if tmp.kind == _KindSpecialFinalizer {
		mgcsweep.go#L384: 				if special.kind == _KindSpecialFinalizer || !hasFin {
		mheap.go#L1653: 	kind   byte     // kind of special
		mheap.go#L1691: 	kind := s.kind
		mheap.go#L1702: 		if offset == uintptr(x.offset) && kind == x.kind {
		mheap.go#L1707: 		if offset < uintptr(x.offset) || (offset == uintptr(x.offset) && kind < x.kind) {
		mheap.go#L1751: 		if offset == uintptr(s.offset) && kind == s.kind {
		mheap.go#L1785: 	s.special.kind = _KindSpecialFinalizer
		mheap.go#L1841: 	s.special.kind = _KindSpecialProfile
		mheap.go#L1851: 	switch s.kind {