Lines Matching refs:Dir
1270 if ChanDir(tt.dir)&RecvDir == 0 {
1303 if ChanDir(tt.dir)&SendDir == 0 {
1873 dir uintptr // 0, SendDir, or RecvDir
1899 // The kind of case depends on Dir, the communication direction.
1901 // If Dir is SelectDefault, the case represents a default case.
1904 // If Dir is SelectSend, the case represents a send operation.
1910 // If Dir is SelectRecv, the case represents a receive operation.
1916 Dir SelectDir // direction of case
1936 rc.dir = uintptr(c.Dir)
1937 switch c.Dir {
1939 panic("reflect.Select: invalid Dir")
1961 if ChanDir(tt.dir)&SendDir == 0 {
1989 if ChanDir(tt.dir)&RecvDir == 0 {
1999 if runcases[chosen].dir == uintptr(SelectRecv) {