HomeSort by relevance Sort by last modified time
    Searched defs:send (Results 1 - 25 of 646) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
send.cpp 31 ssize_t send(int socket, const void* buf, size_t len, int flags) { function
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
send.c 2 Implement the send API.
19 Send data using a network connection.
21 The send routine queues data to the network for transmission.
26 <a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/send.html">POSIX</a>
31 @param [in] buffer Address of a buffer containing the data to send.
43 send ( function
51 // Send the data
  /external/autotest/client/common_lib/
mail.py 4 def send(from_address, to_addresses, cc_addresses, subject, message_body): function
6 Send out a plain old text email. It uses sendmail by default, but
  /external/autotest/server/cros/packet_generation/
sendra.py 9 def send(dstmac, interval, count, lifetime, iface): function
10 """Generate IPv6 Router Advertisement and send to destination.
16 @param iface: string Router's WiFi interface to send packets over.
32 help='HWAddr to send the packet to.')
36 type=int, help='NUmber of packets to send.')
40 help='The wifi interface to send packets over.')
42 send(args.mac_address, args.t_interval, args.pkt_count, args.life_time,
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug130.go 11 type I interface { send(chan <- int) }
14 func (p *S) send(c chan <- int) { c <- p.v } func
20 go i.send(c);
  /prebuilts/go/darwin-x86/test/
init1.go 17 go send(c)
48 func send(c chan int) { func
  /prebuilts/go/linux-x86/test/fixedbugs/
bug130.go 11 type I interface { send(chan <- int) }
14 func (p *S) send(c chan <- int) { c <- p.v } func
20 go i.send(c);
  /prebuilts/go/linux-x86/test/
init1.go 17 go send(c)
48 func send(c chan int) { func
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
Sendable.java 58 boolean send(ChannelIO cio) throws IOException; method in interface:Sendable
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
Sendable.java 58 boolean send(ChannelIO cio) throws IOException; method in interface:Sendable
  /external/clang/test/Analysis/
qt_malloc.cpp 5 void send(QObject *obj) function
  /frameworks/native/libs/binder/
IResultReceiver.cpp 39 virtual void send(int32_t resultCode) { function in class:android::BpResultReceiver
58 send(resultCode);
  /external/autotest/server/cros/network/rf_switch/
rf_mocks.py 35 def send(self, data): member in class:SocketMock
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMessenger.java 23 public void send(Message message) throws RemoteException { method in class:ShadowMessenger
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowMessenger.java 20 public void send(Message message) throws RemoteException { method in class:ShadowMessenger
ShadowResultReceiver.java 16 public void send(int resultCode, android.os.Bundle resultData) { method in class:ShadowResultReceiver
  /external/syslinux/gpxe/src/include/gpxe/
gdbstub.h 47 void ( * send ) ( const char *buf, size_t len ); member in struct:gdb_transport
  /packages/apps/Calendar/src/com/android/calendar/
CloudNotificationBackplane.java 28 public void send(String to, String msgId, Bundle data) throws IOException; method in interface:CloudNotificationBackplane
  /frameworks/base/core/java/android/os/
ResultReceiver.java 24 * then pass to others and send through IPC, and receive results they
25 * supply with {@link #send}.
55 public void send(int resultCode, Bundle resultData) { method in class:ResultReceiver.MyResultReceiver
81 public void send(int resultCode, Bundle resultData) { method in class:ResultReceiver
93 mReceiver.send(resultCode, resultData);
  /frameworks/support/compat/src/main/java/android/support/v4/os/
ResultReceiver.java 32 * then pass to others and send through IPC, and receive results they
33 * supply with {@link #send}.
67 public void send(int resultCode, Bundle resultData) { method in class:ResultReceiver.MyResultReceiver
93 public void send(int resultCode, Bundle resultData) { method in class:ResultReceiver
105 mReceiver.send(resultCode, resultData);
  /external/autotest/client/cros/cellular/wardmodem/
at_channel.py 17 Send a single AT command in either direction asynchronously.
137 def send(self, at_command): member in class:ATChannel
139 Send an AT command on the channel.
141 @param at_command: The AT command to send.
143 @return: True if send was successful, False if send failed because the
146 @raises: OSError if send failed for any reason other than that the
155 self._logger.warning('%s Send Failed: |%s|',
225 # to be '\r\n' send spurious '\r's on the channel. If so, we must ignore
  /external/autotest/client/cros/netprotos/
interface_host.py 129 # When we send responses, we want to send them from this particular
154 def send(self, data, ip_addr, port): member in class:InterfaceDatagramSocket
155 """Send |data| to an IPv4 address.
157 @param data: string of raw bytes to send.
  /external/ltp/testcases/kernel/syscalls/utils/
mq_timed.h 29 int send; member in struct:test_case
  /external/nos/test/system-test-harness/src/
nugget_core_tests.cc 109 std::vector<uint8_t> send; local
115 send, &get), "Get UART passthru value");
122 std::vector<uint8_t> send; local
130 send, &get), "Get UART passthru value");
138 std::vector<uint8_t> send; local
143 send.push_back(NUGGET_AP_UART_ENABLED);
147 send, &get), "Enable UART passthru");
153 std::vector<uint8_t> send; local
158 send.push_back(NUGGET_AP_UART_OFF);
162 send, &get), "Disable UART passthru")
168 std::vector<uint8_t> send; local
182 std::vector<uint8_t> send; local
    [all...]
  /external/python/cpython3/Lib/multiprocessing/
resource_sharer.py 31 def send(conn, pid): function in function:DupSocket.__init__
34 self._id = _resource_sharer.register(send, new_sock.close)
49 def send(conn, pid): function in function:DupFd.__init__
53 self._id = _resource_sharer.register(send, close)
73 def register(self, send, close):
79 self._cache[self._key] = (send, close)
88 c.send((key, os.getpid()))
98 c.send(None)
108 for key, (send, close) in self._cache.items():
113 for key, (send, close) in self._cache.items()
    [all...]

Completed in 845 milliseconds

1 2 3 4 5 6 7 8 91011>>