HomeSort by relevance Sort by last modified time
    Searched refs:Recv (Results 51 - 75 of 163) sorted by null

1 23 4 5 6 7

  /prebuilts/go/linux-x86/src/cmd/fix/
typecheck.go 151 if fn.Recv != nil {
153 rcvr := typeof[fn.Recv]
155 if len(fn.Recv.List) != 1 {
158 rcvr = mkType(gofmt(fn.Recv.List[0].Type))
159 typeof[fn.Recv.List[0].Type] = rcvr
fix.go 244 if n.Recv != nil {
245 walkBeforeAfter(&n.Recv, before, after)
506 if d.Recv == nil && d.Name.Name == old {
  /prebuilts/go/darwin-x86/src/go/types/
type.go 200 recv *Var // nil if not a method
210 func NewSignature(recv *Var, params, results *Tuple, variadic bool) *Signature {
220 return &Signature{nil, recv, params, results, variadic}
223 // Recv returns the receiver of signature s (if a method), or nil if a
226 // For an abstract method, Recv returns the enclosing interface either
229 func (s *Signature) Recv() *Var { return s.recv }
260 m.typ.(*Signature).recv = NewVar(m.pos, m.pkg, "", typ)
323 newmtyp.recv = NewVar(newm.pos, newm.pkg, "", t)
api_test.go 881 got := sig.Recv().Type()
882 want := sel.Recv()
884 t.Errorf("%s: Recv() = %s, want %s", syntax, got, want)
886 } else if sig != nil && sig.Recv() != nil {
887 t.Errorf("%s: signature has receiver %s", sig, sig.Recv().Type())
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
type.go 200 recv *Var // nil if not a method
210 func NewSignature(recv *Var, params, results *Tuple, variadic bool) *Signature {
220 return &Signature{nil, recv, params, results, variadic}
223 // Recv returns the receiver of signature s (if a method), or nil if a
226 // For an abstract method, Recv returns the enclosing interface either
229 func (s *Signature) Recv() *Var { return s.recv }
260 m.typ.(*Signature).recv = NewVar(m.pos, m.pkg, "", typ)
323 newmtyp.recv = NewVar(newm.pos, newm.pkg, "", t)
api_test.go 881 got := sig.Recv().Type()
882 want := sel.Recv()
884 t.Errorf("%s: Recv() = %s, want %s", syntax, got, want)
886 } else if sig != nil && sig.Recv() != nil {
887 t.Errorf("%s: signature has receiver %s", sig, sig.Recv().Type())
    [all...]
  /external/webrtc/webrtc/base/
natsocketfactory.cc 158 int Recv(void* data, size_t size) override {
281 socket_->Recv(&code, sizeof(code));
macasyncsocket.cc 191 int MacAsyncSocket::Recv(void* buffer, size_t length) {
192 int received = ::recv(native_socket_, reinterpret_cast<char*>(buffer),
196 // Recv should only be called when there is data to read
420 // 2. The remote end closed the connection (a recv will return 0).
422 // 4. The connection closed unhappily (recv will return -1).
428 amt = ::recv(this_socket->native_socket_, &ch, 1, MSG_PEEK);
socket_unittest.cc 539 EXPECT_EQ(1, client->Recv(buffer, sizeof(buffer)));
671 EXPECT_LT(0, accepted->Recv(buf, 1024));
751 // Receive as much as we can get in a single recv call.
752 int rcvd = client->Recv(recv_buffer.get() + recv_pos,
756 // The first Recv() after getting readability should succeed and receive
839 client->Recv(buf, arraysize(buf));
    [all...]
ssladapter_unittest.cc 104 int read = socket->Recv(buffer, sizeof(buffer) - 1);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mkbuiltin.go 67 if decl.Recv != nil {
151 case ast.RECV:
dcl.go 1024 return f.Recv().Type == thisT
1197 rf := t.Recv() // ptr to this structure
1256 if !eqtype(t, f.Type) || !eqtype(t.Recv().Type, f.Type.Recv().Type) {
  /prebuilts/go/darwin-x86/src/cmd/vet/
tests.go 172 if !ok || fn.Recv != nil {
copylock.go 31 checkCopyLocksFunc(f, node.Name.Name, node.Recv, node.Type)
113 func checkCopyLocksFunc(f *File, name string, recv *ast.FieldList, typ *ast.FuncType) {
114 if recv != nil && len(recv.List) > 0 {
115 expr := recv.List[0].Type
  /prebuilts/go/darwin-x86/src/syscall/
ztypes_netbsd_386.go 344 Recv uint64
ztypes_solaris_amd64.go 329 Recv uint64
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mkbuiltin.go 67 if decl.Recv != nil {
151 case ast.RECV:
  /prebuilts/go/linux-x86/src/cmd/vet/
tests.go 172 if !ok || fn.Recv != nil {
  /prebuilts/go/linux-x86/src/syscall/
ztypes_netbsd_386.go 344 Recv uint64
ztypes_solaris_amd64.go 329 Recv uint64
  /prebuilts/go/darwin-x86/src/cmd/fix/
fix.go 244 if n.Recv != nil {
245 walkBeforeAfter(&n.Recv, before, after)
506 if d.Recv == nil && d.Name.Name == old {
  /external/webrtc/webrtc/examples/peerconnection/client/
peer_connection_client.cc 299 int bytes = socket->Recv(buffer, sizeof(buffer));
  /prebuilts/go/darwin-x86/src/cmd/cgo/
ast.go 464 if n.Recv != nil {
465 f.walk(n.Recv, "param", visit)
  /prebuilts/go/linux-x86/src/cmd/cgo/
ast.go 464 if n.Recv != nil {
465 f.walk(n.Recv, "param", visit)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
nodes.go 100 Recv *Field // nil means regular function

Completed in 1709 milliseconds

1 23 4 5 6 7