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

1 2 3 4 5 6 7 891011>>

  /frameworks/base/telephony/java/android/telephony/
PhoneStateListener.java 644 private void send(int what, int arg1, int arg2, Object obj) { method in class:PhoneStateListener.IPhoneStateListenerStub
652 send(LISTEN_SERVICE_STATE, 0, 0, serviceState); method
656 send(LISTEN_SIGNAL_STRENGTH, asu, 0, null); method
660 send(LISTEN_MESSAGE_WAITING_INDICATOR, mwi ? 1 : 0, 0, null); method
664 send(LISTEN_CALL_FORWARDING_INDICATOR, cfi ? 1 : 0, 0, null); method
669 send(LISTEN_CELL_LOCATION, 0, 0, location); method
673 send(LISTEN_CALL_STATE, state, 0, incomingNumber); method
677 send(LISTEN_DATA_CONNECTION_STATE, state, networkType, null); method
681 send(LISTEN_DATA_ACTIVITY, direction, 0, null); method
685 send(LISTEN_SIGNAL_STRENGTHS, 0, 0, signalStrength) method
689 send(LISTEN_OTASP_CHANGED, otaspMode, 0, null); method
693 send(LISTEN_CELL_INFO, 0, 0, cellInfo); method
697 send(LISTEN_PRECISE_CALL_STATE, 0, 0, callState); method
702 send(LISTEN_PRECISE_DATA_CONNECTION_STATE, 0, 0, dataConnectionState); method
707 send(LISTEN_DATA_CONNECTION_REAL_TIME_INFO, 0, 0, dcRtInfo); method
711 send(LISTEN_VOLTE_STATE, 0, 0, lteState); method
715 send(LISTEN_VOICE_ACTIVATION_STATE, 0, 0, activationState); method
719 send(LISTEN_DATA_ACTIVATION_STATE, 0, 0, activationState); method
723 send(LISTEN_USER_MOBILE_DATA_STATE, 0, 0, enabled); method
727 send(LISTEN_OEM_HOOK_RAW_EVENT, 0, 0, rawData); method
731 send(LISTEN_CARRIER_NETWORK_CHANGE, 0, 0, active); method
735 send(LISTEN_PHYSICAL_CHANNEL_CONFIGURATION, 0, 0, configs); method
    [all...]
  /frameworks/base/tests/net/java/android/net/util/
PacketReaderTest.java 152 sender.send(new DatagramPacket(contents, contents.length));
  /frameworks/native/libs/binder/
Binder.cpp 69 Parcel send; local
71 send.writeFileDescriptor(in);
72 send.writeFileDescriptor(out);
73 send.writeFileDescriptor(err);
75 send.writeInt32(numArgs);
77 send.writeString16(args[i]);
79 send.writeStrongBinder(callback != NULL ? IInterface::asBinder(callback) : NULL);
80 send.writeStrongBinder(resultReceiver != NULL ? IInterface::asBinder(resultReceiver) : NULL);
81 return target->transact(SHELL_COMMAND_TRANSACTION, send, &reply);
250 resultReceiver->send(INVALID_OPERATION)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
AppSmsManager.java 113 info.pendingIntent.send(mContext, 0, fillIn);
115 // The pending intent is canceled, send this SMS as normal.
  /frameworks/support/slices/core/src/main/java/androidx/slice/
SliceItem.java 216 ((PendingIntent) action).send(context, 0, i, null, null); method
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DatagramSocketImplTest.java 133 protected void send(DatagramPacket pack) throws IOException { method in class:MockDatagramSocketImpl
  /libcore/luni/src/test/java/libcore/java/net/
OldDatagramSocketImplFactoryTest.java 187 protected void send(DatagramPacket arg0) throws IOException { method in class:OldDatagramSocketImplFactoryTest.TestDatagramSocketImpl
  /libcore/ojluni/src/main/java/java/net/
AbstractPlainDatagramSocketImpl.java 118 * destination address to send the packet to.
121 protected abstract void send(DatagramPacket p) throws IOException; method in class:AbstractPlainDatagramSocketImpl
PlainDatagramSocketImpl.java 115 protected void send(DatagramPacket p) throws IOException { method in class:PlainDatagramSocketImpl
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/services/
TestNotificationService.java 152 item.actionIntent.send();
  /packages/apps/Settings/src/com/android/settings/fingerprint/
FingerprintEnrollSidecar.java 53 public abstract void send(Listener listener); method in class:FingerprintEnrollSidecar.QueuedEvent
65 public void send(Listener listener) { method in class:FingerprintEnrollSidecar.QueuedEnrollmentProgress
79 public void send(Listener listener) { method in class:FingerprintEnrollSidecar.QueuedEnrollmentHelp
93 public void send(Listener listener) { method in class:FingerprintEnrollSidecar.QueuedEnrollmentError
161 event.send(mListener);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
asyncore.py 372 def send(self, data): member in class:dispatcher
374 result = self.socket.send(data)
537 num_sent = dispatcher.send(self, self.out_buffer[:512])
546 def send(self, data): member in class:dispatcher_with_send
621 def send(self, *args): member in class:.file_wrapper
633 write = send
smtplib.py 25 To report bugs in the implementation send email to
27 For local information send email to Postmaster at your site.
316 def send(self, str): member in class:SMTP
317 """Send `str' to the server."""
319 print>>stderr, 'send:', repr(str)
330 """Send a command to the server."""
335 self.send(str)
384 """Send a command, and return its response code."""
391 Hostname to send for this command defaults to the FQDN of the local
401 Hostname to send for this command defaults to the FQDN of the loca
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
asyncore.py 372 def send(self, data): member in class:dispatcher
374 result = self.socket.send(data)
537 num_sent = dispatcher.send(self, self.out_buffer[:512])
546 def send(self, data): member in class:dispatcher_with_send
621 def send(self, *args): member in class:.file_wrapper
633 write = send
smtplib.py 25 To report bugs in the implementation send email to
27 For local information send email to Postmaster at your site.
316 def send(self, str): member in class:SMTP
317 """Send `str' to the server."""
319 print>>stderr, 'send:', repr(str)
330 """Send a command to the server."""
335 self.send(str)
384 """Send a command, and return its response code."""
391 Hostname to send for this command defaults to the FQDN of the local
401 Hostname to send for this command defaults to the FQDN of the loca
    [all...]
  /prebuilts/go/darwin-x86/src/net/smtp/
smtp_test.go 111 // Issue 17794: don't send a trailing space on AUTH command when there's no password.
139 // zero bytes for "toServer" so we can test that we don't send spaces at
259 252 Send some mail, I'll try my best
764 func (s smtpSender) send(f string) { func
770 send := smtpSender{c}.send
771 send("220 127.0.0.1 ESMTP service ready")
776 send("250-127.0.0.1 ESMTP offers a warm hug of welcome")
777 send("250-STARTTLS")
778 send("250 Ok"
    [all...]
  /prebuilts/go/linux-x86/src/net/smtp/
smtp_test.go 111 // Issue 17794: don't send a trailing space on AUTH command when there's no password.
139 // zero bytes for "toServer" so we can test that we don't send spaces at
259 252 Send some mail, I'll try my best
764 func (s smtpSender) send(f string) { func
770 send := smtpSender{c}.send
771 send("220 127.0.0.1 ESMTP service ready")
776 send("250-127.0.0.1 ESMTP offers a warm hug of welcome")
777 send("250-STARTTLS")
778 send("250 Ok"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asyncore.py 372 def send(self, data): member in class:dispatcher
374 result = self.socket.send(data)
537 num_sent = dispatcher.send(self, self.out_buffer[:512])
546 def send(self, data): member in class:dispatcher_with_send
621 def send(self, *args): member in class:.file_wrapper
633 write = send
smtplib.py 25 To report bugs in the implementation send email to
27 For local information send email to Postmaster at your site.
316 def send(self, str): member in class:SMTP
317 """Send `str' to the server."""
319 print>>stderr, 'send:', repr(str)
330 """Send a command to the server."""
335 self.send(str)
384 """Send a command, and return its response code."""
391 Hostname to send for this command defaults to the FQDN of the local
401 Hostname to send for this command defaults to the FQDN of the loca
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asyncore.py 372 def send(self, data): member in class:dispatcher
374 result = self.socket.send(data)
537 num_sent = dispatcher.send(self, self.out_buffer[:512])
546 def send(self, data): member in class:dispatcher_with_send
621 def send(self, *args): member in class:.file_wrapper
633 write = send
smtplib.py 25 To report bugs in the implementation send email to
27 For local information send email to Postmaster at your site.
316 def send(self, str): member in class:SMTP
317 """Send `str' to the server."""
319 print>>stderr, 'send:', repr(str)
330 """Send a command to the server."""
335 self.send(str)
384 """Send a command, and return its response code."""
391 Hostname to send for this command defaults to the FQDN of the local
401 Hostname to send for this command defaults to the FQDN of the loca
    [all...]
  /system/extras/alloc-stress/
alloc-stress.cpp 88 template <typename T> void send(const T& v) { function in class:Pipe
  /toolchain/binutils/binutils-2.27/binutils/
rclex.c 144 char *send, *fn; local
203 line = strtol (s, &send, 0);
204 if (*send != '\0' && ! ISSPACE (*send))
210 s = send;
218 send = strchr (s, '"');
219 if (send == NULL)
222 fn = xmalloc (send - s + 1);
223 strncpy (fn, s, send - s);
224 fn[send - s] = '\0'
    [all...]
  /toolchain/binutils/binutils-2.27/ld/
ldemul.c 214 const char *send; local
216 bfd_scan_vma (entry_symbol.name, &send, 0);
217 is_vma = *send == '\0';
  /toolchain/binutils/binutils-2.27/libiberty/
cp-demangle.h 98 const char *send; member in struct:d_info

Completed in 477 milliseconds

1 2 3 4 5 6 7 891011>>