go.etcd.io/bbolt.Tx.pages (field)

10 uses

	go.etcd.io/bbolt (current package)
		tx.go#L30: 	pages          map[pgid]*page
		tx.go#L46: 	tx.pages = nil
		tx.go#L59: 		tx.pages = make(map[pgid]*page)
		tx.go#L321: 	tx.pages = nil
		tx.go#L504: 	tx.pages[p.id] = p
		tx.go#L516: 	pages := make(pages, 0, len(tx.pages))
		tx.go#L517: 	for _, p := range tx.pages {
		tx.go#L521: 	tx.pages = make(map[pgid]*page)
		tx.go#L611: 	if tx.pages != nil {
		tx.go#L612: 		if p, ok := tx.pages[id]; ok {