sync.readOnly.m (field)

18 uses

	sync (current package)
		map.go#L64: 	m       map[interface{}]*entry
		map.go#L104: 	e, ok := read.m[key]
		map.go#L111: 		e, ok = read.m[key]
		map.go#L138: 	if e, ok := read.m[key]; ok && e.tryStore(&value) {
		map.go#L144: 	if e, ok := read.m[key]; ok {
		map.go#L158: 			m.read.Store(readOnly{m: read.m, amended: true})
		map.go#L202: 	if e, ok := read.m[key]; ok {
		map.go#L211: 	if e, ok := read.m[key]; ok {
		map.go#L224: 			m.read.Store(readOnly{m: read.m, amended: true})
		map.go#L270: 	e, ok := read.m[key]
		map.go#L274: 		e, ok = read.m[key]
		map.go#L332: 			read = readOnly{m: m.dirty}
		map.go#L340: 	for k, e := range read.m {
		map.go#L356: 	m.read.Store(readOnly{m: m.dirty})
		map.go#L367: 	m.dirty = make(map[interface{}]*entry, len(read.m))
		map.go#L368: 	for k, e := range read.m {