HomeSort by relevance Sort by last modified time
    Searched refs:linkedMap (Results 1 - 2 of 2) sorted by null

  /external/syzkaller/vendor/google.golang.org/grpc/
stickiness_linkedmap.go 30 // linkedMap is an implementation of a map that supports removing the oldest
33 // linkedMap is NOT thread safe.
36 type linkedMap struct {
41 // newLinkedMap returns a new LinkedMap.
42 func newLinkedMap() *linkedMap {
43 return &linkedMap{
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
    [all...]
picker_wrapper.go 248 store *linkedMap

Completed in 122 milliseconds