HomeSort by relevance Sort by last modified time
    Searched refs:recv (Results 1 - 25 of 759) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/strace/tests/
unix-pair-send-recv.test 3 # Check decoding and dumping of send and recv syscalls.
7 run_prog ../unix-pair-send-recv abcdefghijklmnopqrstuvwxyz
8 run_strace -a32 -esignal=none -esend,recv -eread=0 -ewrite=0 $args
  /external/strace/tests-m32/
unix-pair-send-recv.test 3 # Check decoding and dumping of send and recv syscalls.
7 run_prog ../unix-pair-send-recv abcdefghijklmnopqrstuvwxyz
8 run_strace -a32 -esignal=none -esend,recv -eread=0 -ewrite=0 $args
  /external/strace/tests-mx32/
unix-pair-send-recv.test 3 # Check decoding and dumping of send and recv syscalls.
7 run_prog ../unix-pair-send-recv abcdefghijklmnopqrstuvwxyz
8 run_strace -a32 -esignal=none -esend,recv -eread=0 -ewrite=0 $args
  /external/v8/src/builtins/
builtins-callsite.cc 16 #define CHECK_CALLSITE(recv, method) \
17 CHECK_RECEIVER(JSObject, recv, method); \
19 recv, isolate->factory()->call_site_frame_array_symbol()) \
50 CHECK_CALLSITE(recv, "getColumnNumber");
51 FrameArrayIterator it(isolate, GetFrameArray(isolate, recv),
52 GetFrameIndex(isolate, recv));
58 CHECK_CALLSITE(recv, "getEvalOrigin");
59 FrameArrayIterator it(isolate, GetFrameArray(isolate, recv),
60 GetFrameIndex(isolate, recv));
66 CHECK_CALLSITE(recv, "getFileName")
    [all...]
  /external/v8/src/runtime/
runtime-error.cc 19 CONVERT_ARG_HANDLE_CHECKED(Object, recv, 0);
20 RETURN_RESULT_OR_FAILURE(isolate, ErrorUtils::ToString(isolate, recv));
  /bionic/libc/bionic/
recv.cpp 31 ssize_t recv(int socket, void *buf, size_t len, int flags) { function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
unixclient.py 10 data = s.recv(1024)
unixserver.py 18 data = conn.recv(1024)
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
recv.c 2 Implement the recv API.
21 The recv routine waits for receive data from a remote network
27 <a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/recv.html">POSIX</a>
44 recv ( function
  /external/python/cpython2/Demo/sockets/
unixclient.py 10 data = s.recv(1024)
unixserver.py 18 data = conn.recv(1024)
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
RubyEnum.java 51 public static IRubyObject lookup(ThreadContext context, IRubyObject recv, IRubyObject number) {
52 RubyEnumDescriptor rubyEnumDescriptorescriptor = (RubyEnumDescriptor) getDescriptor(context, recv);
67 public static IRubyObject resolve(ThreadContext context, IRubyObject recv, IRubyObject name) {
68 RubyEnumDescriptor rubyEnumDescriptorescriptor = (RubyEnumDescriptor) getDescriptor(context, recv);
83 public static IRubyObject getDescriptor(ThreadContext context, IRubyObject recv) {
84 return ((RubyModule) recv).getInstanceVariable(Utils.DESCRIPTOR_INSTANCE_VAR);
  /prebuilts/go/darwin-x86/test/chan/
select7.go 31 func send1(recv func(<-chan int)) {
33 go recv(c)
38 func send2(recv func(<-chan int)) {
40 go recv(c)
47 func send3(recv func(<-chan int)) {
49 go recv(c)
  /prebuilts/go/linux-x86/test/chan/
select7.go 31 func send1(recv func(<-chan int)) {
33 go recv(c)
38 func send2(recv func(<-chan int)) {
40 go recv(c)
47 func send3(recv func(<-chan int)) {
49 go recv(c)
  /prebuilts/go/darwin-x86/test/ken/
chan.go 26 sc, rc chan int // send and recv chan
27 sv, rv int // send and recv seq
103 func (c *Chan) recv(v int) bool { func
104 // print("recv ", v, "\n");
116 func recv(c *Chan) { func
124 if c.recv(v) {
168 if r0.recv(v) {
172 if r1.recv(v) {
176 if r2.recv(v) {
180 if r3.recv(v)
    [all...]
  /prebuilts/go/linux-x86/test/ken/
chan.go 26 sc, rc chan int // send and recv chan
27 sv, rv int // send and recv seq
103 func (c *Chan) recv(v int) bool { func
104 // print("recv ", v, "\n");
116 func recv(c *Chan) { func
124 if c.recv(v) {
168 if r0.recv(v) {
172 if r1.recv(v) {
176 if r2.recv(v) {
180 if r3.recv(v)
    [all...]
  /external/python/cpython2/Lib/test/
mp_fork_bomb.py 14 print(r.recv())
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
mp_fork_bomb.py 14 print(r.recv())
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
mp_fork_bomb.py 14 print(r.recv())
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug225.go 13 panic("BUG: recv should not");
20 panic("BUG: recv should");
  /prebuilts/go/linux-x86/test/fixedbugs/
bug225.go 13 panic("BUG: recv should not");
20 panic("BUG: recv should");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
mp_fork_bomb.py 14 print(r.recv())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
mp_fork_bomb.py 14 print(r.recv())
  /external/v8/src/regexp/
regexp-utils.cc 38 V8_INLINE bool HasInitialRegExpMap(Isolate* isolate, Handle<JSReceiver> recv) {
39 return recv->map() == isolate->regexp_function()->initial_map();
45 Handle<JSReceiver> recv,
47 if (HasInitialRegExpMap(isolate, recv)) {
48 JSRegExp::cast(*recv)->SetLastIndex(value);
49 return recv;
51 return Object::SetProperty(recv, isolate->factory()->lastIndex_string(),
57 Handle<JSReceiver> recv) {
58 if (HasInitialRegExpMap(isolate, recv)) {
59 return handle(JSRegExp::cast(*recv)->LastIndex(), isolate)
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
raw.h 72 raw_recv_fn recv; member in struct:raw_pcb
73 /* user-supplied argument for the recv callback */
84 void raw_recv (struct raw_pcb *pcb, raw_recv_fn recv, void *recv_arg);

Completed in 1038 milliseconds

1 2 3 4 5 6 7 8 91011>>