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

1 2 3 4 5 6 7 8 91011>>

  /tools/tradefederation/core/src/com/android/tradefed/util/
Email.java 31 * A helper class to send an email. Note that this class is NOT PLATFORM INDEPENDENT. It will
96 public void send(Message msg) throws IllegalArgumentException, IOException { method in class:Email
132 Log.d(LOG_TAG, String.format("About to send email with command: %s",
  /cts/tests/tests/net/src/android/net/cts/
IpSecBaseTest.java 95 void send(byte[] data) throws Exception; method in interface:IpSecBaseTest.GenericSocket
123 public void send(byte[] data) throws Exception { method in class:IpSecBaseTest.NativeSocket
207 public void send(byte[] data) throws Exception { method in class:IpSecBaseTest.JavaUdpSocket
208 mSocket.send(new DatagramPacket(data, data.length));
213 mSocket.send(new DatagramPacket(data, data.length, dstAddr, port));
260 public void send(byte[] data) throws Exception { method in class:IpSecBaseTest.JavaTcpSocket
402 left.send(TEST_DATA);
405 right.send(TEST_DATA);
  /frameworks/base/core/java/android/app/
EnterTransitionCoordinator.java 79 mResultReceiver.send(MSG_SET_REMOTE_RECEIVER, resultReceiverBundle);
213 mResultReceiver.send(MSG_SHARED_ELEMENT_DESTINATION, state);
219 mResultReceiver.send(MSG_SHARED_ELEMENT_DESTINATION, state);
304 mResultReceiver.send(MSG_CANCEL, null);
434 mResultReceiver.send(MSG_HIDE_SHARED_ELEMENTS, null);
576 send(MSG_EXIT_TRANSITION_COMPLETE, null); method
  /frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
MockSystemServices.java 485 final Runnable send = () -> { local
492 send.run();
498 send.run();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
MulticastSocketTest.java 250 sendingSocket.send(sdp, (byte) 10 /* ttl */);
347 sendingSocket.send(sdp);
373 sendingSocket.send(sdp);
399 // they cannot send / receive multicast messages.
430 // Now send out a packet on sendingInterface. We should only see the packet if we send
436 sendingSocket.send(sdp);
509 mss.send(sdp, (byte) 10 /* ttl */);
634 sendingSocket.send(sdp, (byte) 10 /* ttl */);
640 assertEquals("Failed to send data. Received " + rdp.getLength(), msg, receivedMessage)
    [all...]
  /developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/common/midi/synth/
SynthEngine.java 74 mEventScheduler.getReceiver().send(data, offset, count,
172 mFramer.send(event.data, 0, event.count, event.getTimestamp());
  /developers/build/prebuilts/gradle/MidiSynth/Application/src/main/java/com/example/android/common/midi/synth/
SynthEngine.java 74 mEventScheduler.getReceiver().send(data, offset, count,
172 mFramer.send(event.data, 0, event.count, event.getTimestamp());
  /developers/samples/android/common/src/java/com/example/android/common/midi/synth/
SynthEngine.java 74 mEventScheduler.getReceiver().send(data, offset, count,
172 mFramer.send(event.data, 0, event.count, event.getTimestamp());
  /development/samples/browseable/MidiScope/src/com.example.android.common.midi/synth/
SynthEngine.java 74 mEventScheduler.getReceiver().send(data, offset, count,
172 mFramer.send(event.data, 0, event.count, event.getTimestamp());
  /development/samples/browseable/MidiSynth/src/com.example.android.common.midi/synth/
SynthEngine.java 74 mEventScheduler.getReceiver().send(data, offset, count,
172 mFramer.send(event.data, 0, event.count, event.getTimestamp());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/logging/
handlers.py 489 def send(self, s): member in class:SocketHandler
491 Send a pickled string to the socket.
509 sent = self.sock.send(s[sentsofar:])
556 self.send(s)
597 def send(self, s): member in class:DatagramHandler
599 Send a pickled string to a socket.
    [all...]
  /external/ImageMagick/MagickCore/
distribute-cache.c 108 #undef send
110 #define send(file,buffer,length,flags) 0
459 count=(MagickOffsetType) send(file,CHAR_TYPE_CAST message+i,(LENGTH_TYPE)
107 #undef send macro
109 #define send macro
    [all...]
  /external/autotest/client/site_tests/video_YouTubeMseEme/files/
video_YouTubeMseEme.js 104 this.send = function() { method in class:XHRWrapper
105 this.xhr.send();
267 xhr.send();
348 xhr.send();
  /external/curl/lib/
openldap.c 157 Curl_send *send; member in struct:ldapconninfo
282 li->send = conn->send[FIRSTSOCKET];
723 ret = (li->send)(conn, FIRSTSOCKET, buf, len, &err);
  /external/python/cpython2/Lib/logging/
handlers.py 505 def send(self, s): member in class:SocketHandler
507 Send a pickled string to the socket.
525 sent = self.sock.send(s[sentsofar:])
579 self.send(s)
625 def send(self, s): member in class:DatagramHandler
627 Send a pickled string to a socket.
    [all...]
  /external/python/cpython2/Lib/
smtplib.py 25 To report bugs in the implementation send email to
27 For local information send email to Postmaster at your site.
322 def send(self, str): member in class:SMTP
323 """Send `str' to the server."""
325 print>>stderr, 'send:', repr(str)
336 """Send a command to the server."""
341 self.send(str)
392 """Send a command, and return its response code."""
399 Hostname to send for this command defaults to the FQDN of the local
409 Hostname to send for this command defaults to the FQDN of the loca
    [all...]
ssl.py 570 # The initializer for socket overrides the methods send(), recv(), etc.
711 def send(self, data, flags=0): member in class:SSLSocket
716 "non-zero flags not allowed in calls to send() on %s" %
730 return self._sock.send(data, flags)
753 v = self.send(data[count:])
    [all...]
  /external/python/cpython3/Lib/asyncio/
windows_events.py 451 def send(self, conn, buf, flags=0): member in class:IocpProactor
  /external/python/cpython3/Lib/multiprocessing/
connection.py 182 """Send the bytes data from a bytes-like object"""
202 def send(self, obj): member in class:_ConnectionBase
203 """Send a (picklable) object"""
357 _write = _multiprocessing.send
753 def send(self, obj): member in class:ConnectionWrapper
  /external/python/cpython3/Lib/
smtplib.py 25 To report bugs in the implementation send email to
27 For local information send email to Postmaster at your site.
342 def send(self, s): member in class:SMTP
343 """Send `s' to the server."""
345 self._print_debug('send:', repr(s))
348 # send is used by the 'data' command, where command_encoding
361 """Send a command to the server."""
366 self.send(str)
418 """Send a command, and return its response code."""
425 Hostname to send for this command defaults to the FQDN of the loca
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLocationManager.java 83 // Send intent to notify about provider status
91 requestLocationUdpatePendingIntent.send();
  /external/scapy/scapy/
pipetool.py 445 """Send messages from python command line
448 | send() |
452 def send(self, msg): member in class:CLIFeeder
458 """Send messages from python command line to high output
461 | send() |
465 def send(self, msg): member in class:CLIHighFeeder
  /external/tensorflow/tensorflow/compiler/xla/service/
tuple_points_to_analysis_test.cc 317 // Send forwards its operand to the output tuple at {0}.
321 auto send = builder.AddInstruction( local
323 auto send_done = builder.AddInstruction(HloInstruction::CreateSendDone(send));
327 EXPECT_FALSE(points_to_analysis_->GetPointsToSet(send).IsAmbiguous());
328 EXPECT_TRUE(points_to_analysis_->GetPointsToSet(send).IsDistinct());
333 points_to_analysis_->GetPointsToSet(send).element({}), {send});
335 points_to_analysis_->GetPointsToSet(send).element({0}), {constant});
339 ExpectHasBufferAliases(constant, {}, {{constant, {}}, {send, {0}}});
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/
message_wrappers.cc 371 auto send = proto_version_->add_send(); local
372 send->set_name(send_key(i));
373 sends_[i].second.AsProtoTensorContent(send->mutable_tensor());
421 return request_.send(i).name();
426 if (!ParseTensorProtoToTensor(request_.send(i).tensor(), out_tensor)) {
436 NamedTensorProto* send = request_.add_send(); local
437 send->set_name(send_key);
438 TF_RETURN_IF_ERROR(run_step_request.FeedValue(i, send->mutable_tensor()));
504 return request_->send(i).name();
508 if (!ParseTensorProtoToTensor(request_->send(i).tensor(), out_tensor))
    [all...]
  /external/valgrind/none/tests/amd64/
amd64locked.c 140 static void send ( int nbytes ) function
145 if (VERBOSE) printf("SEND %08x %s", theCRC, outBuf);
277 send( \
368 send( \
484 send( \
702 send( sprintf(outBuf,
738 send( sprintf(outBuf,
774 send(sprintf(outBuf,
916 send(sprintf(outBuf,"0x%llx -> 0x%02llx 0x%02llx 0x%02llx\n", i,

Completed in 860 milliseconds

1 2 3 4 5 6 7 8 91011>>