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

1 2 3 4 5 6 7 891011>>

  /system/sepolicy/
access_vectors 491 recv
525 recv
  /external/autotest/client/tests/kvm/tests/
virtio_console.py 254 buf = self.sock.recv(1024)
414 self.idx += len(self.port.recv(self.blocklen))
454 buf = self.port.sock.recv(self.blocklen)
471 "Failed to recv %dth "
479 "Recv = %s",
678 @param recv_pts: list of possible recv sockets we need to read-out.
695 recv_pt.sock.recv(1024)
    [all...]
  /external/autotest/server/hosts/
paramiko_host.py 279 raw_stdout.append(channel.recv(self.BUFFSIZE))
295 self._exhaust_stream(stdout, raw_stdout, channel.recv)
  /external/mtpd/
pptp.c 166 length = recv(the_socket, buffer, length, 0);
171 length = recv(the_socket, &incoming.buffer[incoming.length], length, 0);
177 log_print(FATAL, "Recv() %s", strerror(errno));
  /external/webrtc/webrtc/base/
macasyncsocket.cc 191 int MacAsyncSocket::Recv(void* buffer, size_t length) {
192 int received = ::recv(native_socket_, reinterpret_cast<char*>(buffer),
196 // Recv should only be called when there is data to read
420 // 2. The remote end closed the connection (a recv will return 0).
422 // 4. The connection closed unhappily (recv will return -1).
428 amt = ::recv(this_socket->native_socket_, &ch, 1, MSG_PEEK);
  /frameworks/native/libs/binder/tests/
binderThroughputTest.cpp 86 template <typename T> void recv(T& v) { function in class:Pipe
301 pipes[i].recv(tmp_results);
  /frameworks/opt/net/voip/src/jni/rtp/
AudioGroup.cpp 366 recv(mSocket, &c, 1, MSG_DONTWAIT);
400 recv(mSocket, &c, 1, MSG_DONTWAIT);
408 count = recv(mSocket, samples, sizeof(samples),
835 while (recv(deviceSocket, &c, 1, MSG_DONTWAIT) == 1);
876 if (recv(deviceSocket, output, sizeof(output), 0) <= 0) {
921 while (recv(deviceSocket, &c, 1, MSG_DONTWAIT) == 1);
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
managers.py 102 kind, result = c.recv()
199 request = c.recv()
232 recv = conn.recv
240 request = recv()
528 self._address = reader.recv()
759 kind, result = conn.recv()
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
managers.py 102 kind, result = c.recv()
199 request = c.recv()
232 recv = conn.recv
240 request = recv()
528 self._address = reader.recv()
759 kind, result = conn.recv()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 102 kind, result = c.recv()
199 request = c.recv()
232 recv = conn.recv
240 request = recv()
528 self._address = reader.recv()
759 kind, result = conn.recv()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
managers.py 102 kind, result = c.recv()
199 request = c.recv()
232 recv = conn.recv
240 request = recv()
528 self._address = reader.recv()
759 kind, result = conn.recv()
    [all...]
  /system/extras/tests/net_test/
ping6_test.py 419 self.assertRaisesErrno(errno.EAGAIN, s4.recv, 32768)
541 self.assertEquals("\xf9\x76", s.recv(32768)[4:6])
546 self.assertEquals("\x0a\xce", s.recv(32768)[4:6])
601 self.assertRaisesErrno(errno.EHOSTUNREACH, s.recv, 32768) # No response.
610 self.assertRaisesErrno(errno.EHOSTUNREACH, s.recv, 32768) # No response.
  /device/huawei/angler/camera/QCamera2/stack/mm-camera-test/inc/
mm_qcamera_app.h 123 int (*command_process) (void *recv, mm_camera_tune_cmd_t cmd,
125 int (*prevcommand_process) (void *recv, mm_camera_tune_prevcmd_t cmd,
  /device/lge/bullhead/camera/QCamera2/stack/mm-camera-test/inc/
mm_qcamera_app.h 123 int (*command_process) (void *recv, mm_camera_tune_cmd_t cmd,
125 int (*prevcommand_process) (void *recv, mm_camera_tune_prevcmd_t cmd,
  /device/moto/shamu/camera/QCamera2/stack/mm-camera-test/inc/
mm_qcamera_app.h 123 int (*command_process) (void *recv, mm_camera_tune_cmd_t cmd,
125 int (*prevcommand_process) (void *recv, mm_camera_tune_prevcmd_t cmd,
  /external/autotest/client/site_tests/platform_CompressedSwapPerf/
platform_CompressedSwapPerf.py 231 result = hog_sock.recv(self.RESULT_FORMAT_SIZE)
258 balloon_result = hog_sock.recv(self.CMD_FORMAT_SIZE)
  /external/curl/lib/
security.c 538 conn->recv[FIRSTSOCKET] = sec_recv;
540 conn->recv[SECONDARYSOCKET] = sec_recv;
  /external/ipsec-tools/src/racoon/
admin.c 117 while ((len = recv(so2, (char *)&com, sizeof(com), MSG_PEEK)) < 0) {
121 "failed to recv admin command: %s\n",
141 while ((len = recv(so2, combuf, com.ac_len, 0)) < 0) {
145 "failed to recv admin command: %s\n",
  /hardware/qcom/camera/QCamera2/stack/mm-camera-test/inc/
mm_qcamera_app.h 121 int (*command_process) (void *recv, mm_camera_tune_cmd_t cmd,
123 int (*prevcommand_process) (void *recv, mm_camera_tune_prevcmd_t cmd,
  /hardware/qcom/camera/msmcobalt/QCamera2/stack/mm-camera-test/inc/
mm_qcamera_app.h 121 int (*command_process) (void *recv, mm_camera_tune_cmd_t cmd,
123 int (*prevcommand_process) (void *recv, mm_camera_tune_prevcmd_t cmd,
  /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/
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/misc/common/swig/include/2.0.11/ruby/
director.swg 124 VALUE recv;
  /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/
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)

Completed in 693 milliseconds

1 2 3 4 5 6 7 891011>>