/external/srtp/test/ |
rtp.c | 126 rtp_receiver_init(rtp_receiver_t rcvr, 132 rcvr->message.header.ssrc = htonl(ssrc); 133 rcvr->message.header.ts = 0; 134 rcvr->message.header.seq = 0; 135 rcvr->message.header.m = 0; 136 rcvr->message.header.pt = 0x1; 137 rcvr->message.header.version = 2; 138 rcvr->message.header.p = 0; 139 rcvr->message.header.x = 0; 140 rcvr->message.header.cc = 0 [all...] |
rtpw.c | 446 rtp_receiver_t rcvr; local 458 rcvr = rtp_receiver_alloc(); 459 if (rcvr == NULL) { 463 rtp_receiver_init(rcvr, sock, name, ssrc); 464 status = rtp_receiver_init_srtp(rcvr, &policy); 475 if (rtp_recvfrom(rcvr, word, &len) > -1)
|
/cts/tests/tests/permission2/src/android/permission2/cts/ |
NoProcessOutgoingCallPermissionTest.java | 62 OutgoingCallBroadcastReceiver rcvr = new OutgoingCallBroadcastReceiver(); local 63 Intent ntnt = mContext.registerReceiver(rcvr, 72 synchronized(rcvr) { 74 rcvr.wait(WAIT_TIME); 80 assertFalse("Outgoing call processed without proper permissions", rcvr.callReceived);
|
/prebuilts/go/darwin-x86/src/reflect/ |
export_test.go | 24 func FuncLayout(t Type, rcvr Type) (frametype Type, argSize, retOffset uintptr, stack []byte, gc []byte, ptrs bool) { 27 if rcvr != nil { 28 ft, argSize, retOffset, s, _ = funcLayout(t.(*rtype), rcvr.(*rtype))
|
makefunc.go | 77 rcvr Value 80 // makeMethodValue converts v from the rcvr+method index representation 95 rcvr := Value{v.typ, v.ptr, fl} 113 rcvr: rcvr, 119 methodReceiver(op, fv.rcvr, fv.method)
|
/prebuilts/go/linux-x86/src/reflect/ |
export_test.go | 24 func FuncLayout(t Type, rcvr Type) (frametype Type, argSize, retOffset uintptr, stack []byte, gc []byte, ptrs bool) { 27 if rcvr != nil { 28 ft, argSize, retOffset, s, _ = funcLayout(t.(*rtype), rcvr.(*rtype))
|
makefunc.go | 77 rcvr Value 80 // makeMethodValue converts v from the rcvr+method index representation 95 rcvr := Value{v.typ, v.ptr, fl} 113 rcvr: rcvr, 119 methodReceiver(op, fv.rcvr, fv.method)
|
/prebuilts/go/darwin-x86/src/net/rpc/ |
server.go | 160 rcvr reflect.Value // receiver of methods for the service 228 func (server *Server) Register(rcvr interface{}) error { 229 return server.register(rcvr, "", false) 234 func (server *Server) RegisterName(name string, rcvr interface{}) error { 235 return server.register(rcvr, name, true) 238 func (server *Server) register(rcvr interface{}, name string, useName bool) error { 245 s.typ = reflect.TypeOf(rcvr) 246 s.rcvr = reflect.ValueOf(rcvr) 247 sname := reflect.Indirect(s.rcvr).Type().Name( [all...] |
/prebuilts/go/linux-x86/src/net/rpc/ |
server.go | 160 rcvr reflect.Value // receiver of methods for the service 228 func (server *Server) Register(rcvr interface{}) error { 229 return server.register(rcvr, "", false) 234 func (server *Server) RegisterName(name string, rcvr interface{}) error { 235 return server.register(rcvr, name, true) 238 func (server *Server) register(rcvr interface{}, name string, useName bool) error { 245 s.typ = reflect.TypeOf(rcvr) 246 s.rcvr = reflect.ValueOf(rcvr) 247 sname := reflect.Indirect(s.rcvr).Type().Name( [all...] |
/prebuilts/go/darwin-x86/src/cmd/fix/ |
typecheck.go | 153 rcvr := typeof[fn.Recv] 154 if !isType(rcvr) { 158 rcvr = mkType(gofmt(fn.Recv.List[0].Type)) 159 typeof[fn.Recv.List[0].Type] = rcvr 161 rcvr = getType(rcvr) 162 if rcvr != "" && rcvr[0] == '*' { 163 rcvr = rcvr[1: [all...] |
/prebuilts/go/linux-x86/src/cmd/fix/ |
typecheck.go | 153 rcvr := typeof[fn.Recv] 154 if !isType(rcvr) { 158 rcvr = mkType(gofmt(fn.Recv.List[0].Type)) 159 typeof[fn.Recv.List[0].Type] = rcvr 161 rcvr = getType(rcvr) 162 if rcvr != "" && rcvr[0] == '*' { 163 rcvr = rcvr[1: [all...] |
/art/runtime/interpreter/ |
interpreter.cc | 185 ScopedLocalRef<jobject> rcvr(soa.Env(), 190 jresult = fn(soa.Env(), rcvr.get()); 196 ScopedLocalRef<jobject> rcvr(soa.Env(), 199 fn(soa.Env(), rcvr.get()); 203 ScopedLocalRef<jobject> rcvr(soa.Env(), 211 jresult = fn(soa.Env(), rcvr.get(), arg0.get()); 218 ScopedLocalRef<jobject> rcvr(soa.Env(), 221 result->SetI(fn(soa.Env(), rcvr.get(), args[0], args[1]));
|
/art/runtime/entrypoints/ |
entrypoint_utils.cc | 207 mirror::Object* rcvr = soa.Decode<mirror::Object*>(rcvr_jobj); local 208 mirror::Class* proxy_class = rcvr->GetClass(); 210 ArtMethod* proxy_method = rcvr->GetClass()->FindVirtualMethodForInterface(
|
/external/srtp/include/ |
rtp.h | 76 rtp_receiver_init(rtp_receiver_t rcvr, int socket,
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
inl.go | 51 rcvr := getthisx(fn.Type).Type.Type 53 if Isptr[rcvr.Etype] { 54 rcvr = rcvr.Type 56 if rcvr.Sym == nil { 57 Fatal("receiver with no sym: [%v] %v (%v)", fn.Sym, Nconv(fn, obj.FmtLong), rcvr) 59 return rcvr.Sym.Pkg
|
subr.go | [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
inl.go | 51 rcvr := getthisx(fn.Type).Type.Type 53 if Isptr[rcvr.Etype] { 54 rcvr = rcvr.Type 56 if rcvr.Sym == nil { 57 Fatal("receiver with no sym: [%v] %v (%v)", fn.Sym, Nconv(fn, obj.FmtLong), rcvr) 59 return rcvr.Sym.Pkg
|
subr.go | [all...] |
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
subr.go | [all...] |
inl.go | 54 rcvr := getthisx(fn.Type).Type.Type 56 if Isptr[rcvr.Etype] { 57 rcvr = rcvr.Type 59 if rcvr.Sym == nil { 60 Fatal("receiver with no sym: [%v] %v (%v)", fn.Sym, Nconv(fn, obj.FmtLong), rcvr) 62 return rcvr.Sym.Pkg
|
dcl.go | 1195 rcvr := getthisx(f).Type 1196 if rcvr.Sym != nil { 1199 t := rcvr.Type 1217 var rcvr *NodeList 1219 rcvr = list1(this) 1221 t.Type = tofunargs(rcvr)
|
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
subr.go | [all...] |
inl.go | 54 rcvr := getthisx(fn.Type).Type.Type 56 if Isptr[rcvr.Etype] { 57 rcvr = rcvr.Type 59 if rcvr.Sym == nil { 60 Fatal("receiver with no sym: [%v] %v (%v)", fn.Sym, Nconv(fn, obj.FmtLong), rcvr) 62 return rcvr.Sym.Pkg
|
/prebuilts/go/darwin-x86/test/ |
escape_param.go | 87 // in -> rcvr 219 // &in -> rcvr 260 // in -> value rcvr
|
/prebuilts/go/linux-x86/test/ |
escape_param.go | 87 // in -> rcvr 219 // &in -> rcvr 260 // in -> value rcvr
|