Home
last modified time | relevance | path

Searched defs:linkedMap (Results 1 – 1 of 1) sorted by relevance

/external/syzkaller/vendor/google.golang.org/grpc/
Dstickiness_linkedmap.go36 type linkedMap struct { struct
37 m map[string]*list.Element
38 l *list.List // Head of the list is the oldest element.
50 func (m *linkedMap) put(key string, value *stickyStoreEntry) {
60 func (m *linkedMap) get(key string) (*stickyStoreEntry, bool) {
71 func (m *linkedMap) remove(key string) (*stickyStoreEntry, bool) {
82 func (m *linkedMap) len() int {
87 func (m *linkedMap) clear() {
93 func (m *linkedMap) removeOldest() {