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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
inspector_websocket_unittest.py 14 + Receives first package of data after 10 second in the first recv().
15 + Receives second package of data after 10 second in the second recv().
17 third recv().
19 fourth recv().
20 + Receives third package of data after 10 second in the fifth recv().
22 in the last recv().
28 def recv(self): member in class:FakeSocket
74 # The third call to socket.recv() will take 15 seconds without any data
86 # The third and forth calls to socket.recv() will take 30 seconds without
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
recv.c 10 ssize_t recv(int fd, void* buf, size_t len, int flags) { function
  /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/lldb/test/pexpect-2.4/examples/
bd_client.py 13 #cols = int(s.recv(4))
14 #rows = int(s.recv(4))
18 return s.recv(packet_size)
  /external/fio/examples/
netio.fio 1 # Example network job, just defines two clients that send/recv data
  /external/lldb/test/functionalities/connect_remote/
EchoServer.py 19 data = conn.recv(1024)
  /external/netperf/
nettest_sdp.h 33 /* should be made dirty before calling recv? */
35 /* recv buffer before calling recv? */
36 int port; /* the to port to which recv side should bind
82 int port; /* the to port to which recv side should bind
131 /* should be made dirty before calling recv? */
133 /* recv buffer before calling recv? */
134 int port; /* the port to which the recv side should bind
nettest_sctp.h 28 /* should be made dirty before calling recv? */
30 /* recv buffer before calling recv? */
31 int port; /* the to port to which recv side should bind
77 int port; /* the to port to which recv side should bind
nettest_bsd.h 37 /* should be made dirty before calling recv? */
39 /* recv buffer before calling recv? */
40 int port; /* the port to which the recv side should bind
88 /* should be made dirty before calling recv? */
90 /* recv buffer before calling recv? */
91 int port; /* the port to which the recv side should bind
136 int port; /* the port to which the recv side should bind
181 int port; /* the port to which the recv side should bin
    [all...]
  /external/libpcap/
pcap-dos.h 150 DWORD rmem_start; /* shmem "recv" start */
151 DWORD rmem_end; /* shared "recv" end */
189 DWORD rx_over_errors; /* recv'r overrun error */
190 DWORD rx_osize_errors; /* recv'r over-size error */
191 DWORD rx_crc_errors; /* recv'd pkt with crc error */
192 DWORD rx_frame_errors; /* recv'd frame alignment error */
193 DWORD rx_fifo_errors; /* recv'r fifo overrun */
194 DWORD rx_missed_errors; /* recv'r missed packet */
  /packages/apps/Email/tests/src/com/android/email/provider/
AccountBackupRestoreTests.java 86 ProviderTestUtils.setupHostAuth("legacy-recv", 0, false, mMockContext);
93 ProviderTestUtils.setupHostAuth("legacy-recv", 0, false, mMockContext);
130 HostAuth recv = HostAuth.restoreHostAuthWithId(mMockContext, restored.mHostAuthKeyRecv); local
131 assertNotNull(recv);
135 ProviderTestUtils.assertHostAuthEqual("backup", saved1.mHostAuthRecv, recv, false);
144 recv = HostAuth.restoreHostAuthWithId(mMockContext, restored.mHostAuthKeyRecv);
145 assertNotNull(recv);
149 ProviderTestUtils.assertHostAuthEqual("backup", saved2.mHostAuthRecv, recv, false);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/socket/
socket_node.h 24 * should be looping on Send/Recv size. */
40 // Normal read/write operations on a file (recv/send).
74 virtual Error Recv(const HandleAttr& attr,
122 // Wraps common error checks, timeouts, work pump for recv.
130 // Per socket type send and recv
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
socket2.h 27 int __flags), recv);
31 __warnattr ("recv called with bigger length than size of destination "
35 recv (int __fd, void *__buf, size_t __n, int __flags) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/
socket2.h 27 int __flags), recv);
31 __warnattr ("recv called with bigger length than size of destination "
35 recv (int __fd, void *__buf, size_t __n, int __flags) function
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
SocketStream.cpp 122 ssize_t stat = ::recv(m_sock, (char *)(buf) + len - res, res, 0);
143 n = recv(buf, *inout_len);
154 int SocketStream::recv(void *buf, size_t len) function in class:SocketStream
159 res = ::recv(m_sock, (char *)buf, len, 0);
  /external/nanopb-c/examples/network_server/
common.c 22 result = recv(fd, buf, count, MSG_WAITALL);
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
SocketStream.cpp 121 ssize_t stat = ::recv(m_sock, (char *)(buf) + len - res, res, 0);
142 n = this->recv(buf, *inout_len);
153 int SocketStream::recv(void *buf, size_t len) function in class:SocketStream
158 res = ::recv(m_sock, (char *)buf, len, 0);
  /hardware/intel/bootstub/
spi-uart.h 73 #define TMOD_TR 0x0 /* xmit & recv */
75 #define TMOD_RO 0x2 /* recv only */
  /external/chromium_org/v8/tools/
generate-builtins-tests.py 60 "var recv = new %s(%s);" % (full_name, GetVars(result, length)),
61 "var recv = new Object();")
70 result.append("recv.__defineGetter__(\"%s\", "
74 result.append("recv.__defineGetter__(\"%s\", "
82 result.append("print(recv.%s);" % getter["name"])
86 args = GetVars(result, method["length"], ["recv"])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
socket.py 164 _delegate_methods = ("recv", "recvfrom", "recv_into", "recvfrom_into",
172 send = recv = recv_into = sendto = recvfrom = recvfrom_into = _dummy
253 # _rbufsize is the suggested recv buffer size. It is *strictly*
254 # obeyed within readline() for recv calls. If it is larger than
255 # default_bufsize it will be used for recv calls within read().
338 # We never leave read() with any leftover data from a new recv() call
342 # recv() minimizes memory usage and fragmentation that occurs when
343 # rbufsize is large compared to the typical return value of recv().
351 data = self._sock.recv(rbufsize)
374 # recv() will malloc the amount of memory given as it
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
socket.py 164 _delegate_methods = ("recv", "recvfrom", "recv_into", "recvfrom_into",
172 send = recv = recv_into = sendto = recvfrom = recvfrom_into = _dummy
253 # _rbufsize is the suggested recv buffer size. It is *strictly*
254 # obeyed within readline() for recv calls. If it is larger than
255 # default_bufsize it will be used for recv calls within read().
338 # We never leave read() with any leftover data from a new recv() call
342 # recv() minimizes memory usage and fragmentation that occurs when
343 # rbufsize is large compared to the typical return value of recv().
351 data = self._sock.recv(rbufsize)
374 # recv() will malloc the amount of memory given as it
    [all...]
  /libcore/luni/src/main/native/
java_util_zip_Inflater.cpp 91 static jint Inflater_inflateImpl(JNIEnv* env, jobject recv, jbyteArray buf, int off, int len, jlong handle) {
109 env->SetBooleanField(recv, needsDictionary, JNI_TRUE);
113 env->SetBooleanField(recv, finished, JNI_TRUE);
126 jint inReadValue = env->GetIntField(recv, inReadField);
128 env->SetIntField(recv, inReadField, inReadValue);
  /external/chromium_org/native_client_sdk/src/build_tools/tests/
test_server.py 19 self.port = parent_conn.recv()
68 running = conn.recv()
  /external/smack/src/org/xbill/DNS/
TCPClient.java 102 recv() throws IOException { method in class:TCPClient
120 return client.recv();

Completed in 3722 milliseconds

1 2 3 4 5 6 7 8 91011>>