HomeSort by relevance Sort by last modified time
    Searched defs:recv (Results 26 - 50 of 129) sorted by null

12 3 4 5 6

  /external/scapy/scapy/arch/
pcapdnet.py 208 def recv(self, x=MTU): member in class:L2pcapListenSocket
284 def recv(self,x=MTU): member in class:L2pcapSocket
311 p = self.recv(MTU)
327 def recv(self, x = MTU): member in class:L3pcapSocket
328 r = L2pcapSocket.recv(self, x)
466 def recv(self, x=MTU): member in class:L3pcapSocket.send.L2pcapListenSocket
633 def recv(self,x=MTU): member in class:L3pcapSocket.L3dnetSocket
660 p = self.recv()
705 def recv(self,x=MTU): member in class:L3pcapSocket.L2dnetSocket
732 p = self.recv(MTU
    [all...]
linux.py 435 def recv(self, x=MTU): member in class:L3PacketSocket
529 def recv(self, x=MTU): member in class:L2Socket
593 def recv(self, x=MTU): member in class:L2ListenSocket
  /external/scapy/scapy/
sendrecv.py 40 recv=[] variable in class:debug
90 return pks.recv(MTU)
95 return pks.recv()
113 return pks.recv(MTU)
150 debug.recv.append(r)
180 debug.recv = plist.PacketList([],"Unanswered")
429 # SEND/RECV LOOP METHODS
457 msg = "RECV %i:" % len(res[0])
469 print("recv:%i fail:%i" % tuple(map(len, res[:2])))
495 # SEND/RECV FLOOD METHOD
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
while_loop_simplifier_test.cc 140 // Loops that contain send/recv nodes can't be simplified; the loop structure
141 // around send/recv nodes must be preserved.
160 auto* recv = while_body->AddInstruction( local
163 while_body->AddInstruction(HloInstruction::CreateRecvDone(recv));
buffer_liveness_test.cc 321 // recv --> recv-done --> send --> send-done
324 // param, add (root), recv, recv-done, send, send-done
330 auto recv = builder.AddInstruction( local
332 auto recv_done = builder.AddInstruction(HloInstruction::CreateRecvDone(recv));
341 std::vector<const HloInstruction*> order = {param, add, recv,
350 // Check the root instruction (add) buffer interferes with the recv buffer.
353 GetBuffer(*liveness, recv, /*index=*/{0})));
    [all...]
  /external/v8/src/debug/
debug-evaluate.cc 247 Handle<Object> recv = isolate_->factory()->undefined_value(); local
255 recv = handle(frame_->receiver(), isolate_);
257 JSObject::SetOwnPropertyIgnoreAttributes(target, name, recv, NONE).Check();
  /frameworks/native/libs/vr/libpdx/
client_tests.cpp 485 iovec recv[4] = {}; local
495 EXPECT_CALL(*mock_channel(), SendWithInt(nullptr, 2, send, 3, recv, 4))
497 EXPECT_TRUE(transaction_.SendVector<void>(2, send, 3, recv, 4));
503 EXPECT_CALL(*mock_channel(), SendWithInt(nullptr, 4, nullptr, 0, recv, 4))
505 EXPECT_TRUE(transaction_.SendVector<void>(4, nullptr, recv));
507 EXPECT_CALL(*mock_channel(), SendWithInt(nullptr, 5, send, 3, recv, 4))
509 EXPECT_TRUE(transaction_.SendVector<void>(5, send, recv));
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
connection.py 444 def recv(self): member in class:ConnectionWrapper
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ssl.py 112 # The initializer for socket overrides the methods send(), recv(), etc.
235 def recv(self, buflen=1024, flags=0): member in class:SSLSocket
239 "non-zero flags not allowed in calls to recv() on %s" %
243 return self._sock.recv(buflen, flags)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
connection.py 444 def recv(self): member in class:ConnectionWrapper
  /prebuilts/gdb/linux-x86/lib/python2.7/
ssl.py 112 # The initializer for socket overrides the methods send(), recv(), etc.
235 def recv(self, buflen=1024, flags=0): member in class:SSLSocket
239 "non-zero flags not allowed in calls to recv() on %s" %
243 return self._sock.recv(buflen, flags)
  /prebuilts/go/darwin-x86/src/runtime/
chan.go 40 recvq waitq // list of recv waiters
129 * generic single channel send/recv
472 recv(c, sg, ep, func() { unlock(&c.lock) }, 3)
535 // recv processes a receive operation on a full channel c.
545 // Channel c must be full and locked. recv unlocks c with unlockf.
548 func recv(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) { func
  /prebuilts/go/linux-x86/src/runtime/
chan.go 40 recvq waitq // list of recv waiters
129 * generic single channel send/recv
472 recv(c, sg, ep, func() { unlock(&c.lock) }, 3)
535 // recv processes a receive operation on a full channel c.
545 // Channel c must be full and locked. recv unlocks c with unlockf.
548 func recv(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) { func
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 444 def recv(self): member in class:ConnectionWrapper
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ssl.py 112 # The initializer for socket overrides the methods send(), recv(), etc.
235 def recv(self, buflen=1024, flags=0): member in class:SSLSocket
239 "non-zero flags not allowed in calls to recv() on %s" %
243 return self._sock.recv(buflen, flags)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 444 def recv(self): member in class:ConnectionWrapper
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ssl.py 112 # The initializer for socket overrides the methods send(), recv(), etc.
235 def recv(self, buflen=1024, flags=0): member in class:SSLSocket
239 "non-zero flags not allowed in calls to recv() on %s" %
243 return self._sock.recv(buflen, flags)
  /system/libhwbinder/vts/performance/
PerfTest.h 32 // Both parent and child hold a object. Each recv() on one side requires
45 recv(val);
55 int recv(T& v) { function in class:Pipe
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
asyncore.py 380 def recv(self, buffer_size): member in class:dispatcher
382 data = self.socket.recv(buffer_size)
385 # a read condition, and having recv() return 0.
614 def recv(self, *args): member in class:.file_wrapper
628 read = recv
  /external/curl/tests/
negtelnetserver.py 68 data = neg.recv(1024)
98 def recv(self, bytes): member in class:Negotiator
111 data = self.tcp.recv(bytes)
  /external/python/cpython2/Lib/
asyncore.py 385 def recv(self, buffer_size): member in class:dispatcher
387 data = self.socket.recv(buffer_size)
390 # a read condition, and having recv() return 0.
618 def recv(self, *args): member in class:.file_wrapper
632 read = recv
  /external/python/cpython2/Lib/test/
test_asynchat.py 41 data = conn.recv(1)
251 def recv(self, size): member in class:TestAsynchatMocked.test_blockingioerror.fake_socket
  /external/python/cpython3/Lib/
asyncore.py 372 def recv(self, buffer_size): member in class:dispatcher
374 data = self.socket.recv(buffer_size)
377 # a read condition, and having recv() return 0.
602 def recv(self, *args): member in class:.file_wrapper
616 read = recv
  /external/python/cpython3/Lib/test/
test_telnetlib.py 97 def recv(self, size): member in class:SocketStub
355 (b'a', ": recv b''\n"),
  /external/v8/src/
execution.cc 139 Object* recv = *receiver; local
145 value = CALL_GENERATED_CODE(isolate, stub_entry, orig_func, func, recv,

Completed in 720 milliseconds

12 3 4 5 6