HomeSort by relevance Sort by last modified time
    Searched refs:recv (Results 76 - 100 of 509) sorted by null

1 2 34 5 6 7 8 91011>>

  /device/generic/goldfish/qemud/
qemud.c 911 D("%s: can't recv: %s", __FUNCTION__, strerror(errno));
1189 Receiver recv; local
1191 recv.user = s;
1192 recv.post = (PostFunc) serial_fd_receive;
1193 recv.close = (CloseFunc) serial_fd_close;
1197 s->fdhandler = fdhandler_new( fd, list, &recv );
1389 Receiver recv; local
1617 Receiver recv; local
    [all...]
  /system/core/logd/tests/
logd_test.cpp 322 user_logger_content = recv(fd, msg.buf, sizeof(msg), 0) > 0;
574 content_wrap = recv(fd, msg_wrap.buf, sizeof(msg_wrap), 0) > 0;
578 content_timeout = recv(fd, msg_timeout.buf, sizeof(msg_timeout), 0) > 0;
580 content_timeout = recv(fd, msg_timeout.buf, sizeof(msg_timeout), 0) > 0;
658 content_wrap = recv(fd, msg_wrap.buf, sizeof(msg_wrap), 0) > 0;
662 content_timeout = recv(fd, msg_timeout.buf, sizeof(msg_timeout), 0) > 0;
664 content_timeout = recv(fd, msg_timeout.buf, sizeof(msg_timeout), 0) > 0;
743 bool read_one = recv(fd, msg.buf, sizeof(msg), 0) > 0;
756 recv_ret = recv(fd, msg.buf, sizeof(msg), 0);
  /hardware/ril/libril/
RilSapSocket.cpp 421 SapSocketRequest *recv = (SapSocketRequest*)malloc(sizeof(SapSocketRequest)); local
422 if (!recv) {
427 recv->token = reqHeader->token;
428 recv->curr = reqHeader;
429 recv->socketId = id;
431 dispatchQueue.enqueue(recv);
  /external/autotest/client/site_tests/platform_CompressedSwapPerf/src/
hog.c 165 ssize_t bytes_read = recv(connfd, &command, sizeof(command), 0);
202 bytes_read = recv(connfd, &balloon_size, sizeof(balloon_size), 0);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
test_devshell.py 63 resp_1 = s.recv(6).decode()
71 resp_buffer += s.recv(to_read, socket.MSG_WAITALL)
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /external/autotest/client/tests/kvm/tests/
migration_multi_host.py 63 mig_port = int(c_socket.recv(6))
  /external/autotest/client/site_tests/platform_TLSDateActual/
platform_TLSDateActual.py 48 data = self.src.recv(BUFSIZE)
51 data = self.src.recv(BUFSIZE)
76 bs = sock.recv(n)
  /external/ipsec-tools/
main.c 74 if (recv(control, &bytes[0], 1, 0) != 1 ||
75 recv(control, &bytes[1], 1, 0) != 1) {
87 int n = recv(control, &args[i][offset], length - offset, 0);
  /external/webrtc/webrtc/base/
httpserver.cc 137 base_.recv(&current_->request);
205 base_.recv(&current_->request);
217 base_.recv(&current_->request);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/
socks.py 138 data = self.recv(count)
140 d = self.recv(count-len(data))
279 resp = resp + self.recv(1)
374 resp = self.recv(1)
376 resp = resp + self.recv(1)
  /external/webrtc/talk/media/sctp/
sctpdataengine_unittest.cc 284 SctpFakeNetworkInterface* net, SctpFakeDataReceiver* recv) {
291 recv, &SctpFakeDataReceiver::OnDataReceived);
306 bool ReceivedData(const SctpFakeDataReceiver* recv,
309 return (recv->received() &&
310 recv->last_params().ssrc == ssrc &&
311 recv->last_data() == msg);
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
trafficshaper_test.py 168 read_time = s.recv(1024)
181 response_data = s.recv(4096)
245 read_time = udp_socket.recv(1024)
  /external/mtpd/
mtpd.c 121 if (recv(control, &bytes[0], 1, 0) != 1 ||
122 recv(control, &bytes[1], 1, 0) != 1) {
134 int n = recv(control, &args[i][offset], length - offset, 0);
  /external/v8/src/debug/
debug-evaluate.cc 246 Handle<Object> recv = isolate_->factory()->undefined_value(); local
254 recv = handle(frame_->receiver(), isolate_);
256 JSObject::SetOwnPropertyIgnoreAttributes(target, name, recv, NONE).Check();
  /cts/suite/audio_quality/lib/src/
ClientSocket.cpp 117 read = recv(mSocket, (void*)data, toRead, 0);
128 LOGE("recv returned %d", read);
  /development/ndk/platforms/android-3/include/linux/sunrpc/
xprt.h 147 struct list_head recv; member in struct:rpc_xprt
  /external/autotest/client/common_lib/
base_barrier.py 205 intro = client.recv(1024)
266 reply = client.recv(4)
307 reply = client.recv(1024)
449 reply = remote.recv(4)
  /external/boringssl/src/crypto/bio/
socket.c 113 ret = recv(b->num, out, outl, 0);
  /external/strace/linux/
subcall.h 44 [SYS_socket_subcall + 10] = { 4, IS|TN, SEN(recv), "recv" },
  /external/v8/src/
execution.cc 92 Object* recv = *receiver; local
98 value = CALL_GENERATED_CODE(isolate, stub_entry, orig_func, func, recv,
416 Handle<String> Execution::GetStackTraceLine(Handle<Object> recv,
421 Handle<Object> args[] = { recv, fun, pos, is_global };
  /external/webrtc/webrtc/test/channel_transport/
udp_socket2_win.h 117 FLOWSPEC* recv = NULL);

Completed in 1618 milliseconds

1 2 34 5 6 7 8 91011>>