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

1 2 3 4 56 7 8 91011>>

  /external/parameter-framework/asio-1.10.6/include/asio/
stream_socket_service.hpp 270 /// Send the given data to the peer.
272 std::size_t send(implementation_type& impl, function in class:asio::stream_socket_service
276 return service_impl_.send(impl, buffers, flags, ec);
279 /// Start an asynchronous send.
  /external/python/cpython2/Lib/multiprocessing/
connection.py 453 def send(self, obj): member in class:ConnectionWrapper
  /external/python/cpython2/Lib/plat-mac/
aetools.py 194 self.send('ascr', 'noop')
199 self.send('ascr', 'noop')
219 """Send a pre-created appleevent, await the reply and unpack it"""
221 raise RuntimeError, "No window manager access, cannot send AppleEvent"
227 def send(self, code, subcode, parameters = {}, attributes = {}): member in class:TalkTo
228 """Send an appleevent given code/subcode/pars/attrs and unpack the reply"""
236 """Send 'activate' command"""
237 self.send('misc', 'actv')
252 _reply, _arguments, _attributes = self.send(_code, _subcode,
282 _reply, _arguments, _attributes = self.send(_code, _subcode
    [all...]
  /external/python/cpython3/Lib/asyncio/
coroutines.py 64 def send(self, *what): member in class:has_yield_from_bug.MyGen
73 coro.send(value)
109 return self.gen.send(None)
113 # generator, generator.send(tuple) unpacks the tuple instead of passing
116 def send(self, *value): function in function:CoroWrapper.__next__
122 return self.gen.send(value)
124 def send(self, value): function in function:CoroWrapper.__next__
125 return self.gen.send(value)
  /external/python/cpython3/Lib/test/
mock_socket.py 99 def send(self, data, flags=None): member in class:MockSocket
  /external/python/cpython3/Lib/test/test_asyncio/
test_pep492.py 107 def send(self, value): pass member in class:CoroutineTests.test_iscoroutine.FakeCoro
128 self.assertEqual(coro.send(None), 'spam')
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPendingIntent.java 43 public void send() throws CanceledException { method in class:ShadowPendingIntent
44 send(savedContext, 0, savedIntent); method
48 public void send(Context context, int code, Intent intent) throws CanceledException { method in class:ShadowPendingIntent
  /external/scapy/scapy/arch/bpf/
supersocket.py 197 def send(self, x): member in class:_L2bpfSocket
198 """Dummy send method"""
199 raise Exception("Can't send anything with %s" % self.__name__)
290 def send(self, x): member in class:L2bpfSocket
291 """Send a frame"""
316 def send(self, pkt): member in class:L3bpfSocket
317 """Send a packet"""
336 # Send the frame
337 L2bpfSocket.send(self, frame)
  /external/scapy/scapy/arch/
pcapdnet.py 62 log_loading.warning("wpcap.dll is not installed. You won't be able to send/recieve packets. Visit the scapy's doc to install it")
169 def send(self, x): member in class:_PcapWrapper_pypcap
234 def send(self, x): member in class:L2pcapListenSocket
235 raise Scapy_Exception("Can't send anything with L2pcapListenSocket")
275 def send(self, x): member in class:L2pcapSocket
279 return self.outs.send(sx)
333 def send(self, x): member in class:L3pcapSocket
334 # Makes send detects when it should add Loopback(), Dot11... instead of Ether()
344 return self.ins.send(sx)
490 def send(self, x) member in class:L3pcapSocket.send.L2pcapListenSocket
611 def send(self, x): member in class:L3pcapSocket.L3dnetSocket
    [all...]
  /external/scapy/scapy/
sendrecv.py 7 Functions to send and receive packets.
46 ## Send / Receive ##
57 pks.send(p)
61 print("Finished to send %i packets." % i)
162 """Scapy raw function to send a packet and recieve its answer.
166 pks: SuperSocket instance to send/recieve packets
167 pkt: the packet to send
265 s.send(p)
283 def send(x, inter=0, loop=0, count=None, verbose=None, realtime=None, return_packets=False, socket=None, function
285 """Send packets at layer
    [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.
147 auto* send = while_body->AddInstruction(HloInstruction::CreateSend( local
151 while_body->AddInstruction(HloInstruction::CreateSendDone(send));
  /external/tensorflow/tensorflow/contrib/mpi/
mpi_rendezvous_mgr.cc 102 // Create the function which is called when the Tensor is send by remote
116 << " single-send: " << mpi_response.singlesend();
147 * to the local send/table. The here created callback will
149 * ready to be send to the remote requester.
221 // Control if shape and data should be send together or if we can
231 // First send the Tensor description and in a follow up transfer the
240 // Send the Tensor description and data in a single transfer
304 // send a Tensor request
308 // Send a Tensor response
309 SendQueueEntry send; local
    [all...]
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DataChannel.java 131 /** Send |data| to the remote peer; return success. */
132 public boolean send(Buffer buffer) { method in class:DataChannel
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/util/
AsyncHttpURLConnection.java 53 public void send() { method in class:AsyncHttpURLConnection
89 // Send POST request.
  /frameworks/base/core/tests/coretests/src/android/app/activity/
SubActivityScreen.java 54 apr.send(this, RESULT_OK, res);
  /frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
BluetoothPacketEncoder.java 191 mMidiFramer.send(msg, offset, count, timestamp);
  /frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
ManageDialog.java 117 mConfig.configureIntent.send();
  /frameworks/native/cmds/cmd/
cmd.cpp 150 virtual void send(int32_t resultCode) { function in class:MyResultReceiver
  /frameworks/native/libs/vr/libpdx/
client_tests.cpp 423 EXPECT_TRUE(transaction_.Send<void>(1));
427 EXPECT_TRUE(transaction_.Send<LocalHandle>(2));
431 EXPECT_TRUE(transaction_.Send<LocalChannelHandle>(3));
440 EXPECT_TRUE(transaction_.Send<void>(1));
455 EXPECT_TRUE(transaction_.Send<void>(1, nullptr, 0, nullptr, 0));
460 EXPECT_TRUE(transaction_.Send<void>(2, kSendBuffer, kSendSize, nullptr, 0));
464 EXPECT_TRUE(transaction_.Send<void>(3, kSendBuffer, 0, nullptr, 0));
470 transaction_.Send<void>(4, nullptr, 0, kReceiveBuffer, kReceiveSize));
474 EXPECT_TRUE(transaction_.Send<void>(5, nullptr, 0, kReceiveBuffer, 0));
479 EXPECT_TRUE(transaction_.Send<void>(5, kSendBuffer, kSendSize, kReceiveBuffer
484 iovec send[3] = {}; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/apdu/
ApduSender.java 90 public void send( method in class:ApduSender
128 // Just close the channel if we don't have commands to send or an error
140 * Sends the current command and then continue to send the next one. If this is the last
  /frameworks/support/browser/src/main/java/androidx/browser/browseractions/
BrowserActionsFallbackMenuUi.java 132 action.send();
135 Log.e(TAG, "Failed to send custom item action", e);
  /hardware/intel/common/omx-components/videocodec/securevideo/moorefield/
LogDumpHelper.h 67 char* send = str + strSize ; local
72 while (byte < end && s < send)
  /libcore/ojluni/src/main/java/java/net/
DatagramSocketImpl.java 88 * destination address to send the packet to.
96 protected abstract void send(DatagramPacket p) throws IOException; method in class:DatagramSocketImpl
107 * send or receive may throw a PortUnreachableException.
MulticastSocket.java 47 * // join a Multicast group and send the group salutations
55 * s.send(hi);
68 * be a member of the multicast group to send messages to it.
182 * send(packet,ttl).
635 * One does not need to be the member of the group to send
644 * method doesn't allow the send.
650 * mcastSocket.send(p);
654 * @see DatagramSocket#send
660 public void send(DatagramPacket p, byte ttl) method in class:MulticastSocket
664 checkAddress(p.getAddress(), "send");
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/notification/
NotificationInfo.java 103 intent.send(null, 0, null, null, null, null, activityOptions);

Completed in 544 milliseconds

1 2 3 4 56 7 8 91011>>