Home
last modified time | relevance | path

Searched refs:send_message (Results 1 – 17 of 17) sorted by relevance

/external/ltp/testcases/kernel/sched/process_stress/
Dprocess.c177 int send_message(int id, mtyp_t type, char *text);
218 int send_message(int id, mtyp_t type, char *text) in send_message() function
251 rc = send_message(msgerr, 2, mtext); in severe()
339 rc = send_message(msgerr, 3, mtext); in cleanup()
355 rc = send_message(msgerr, 3, mtext); in nextofkin()
445 rc = send_message(msgid, (mtyp_t) * listp, mtext); in notify()
1182 rc = send_message(msgerr, 1, mtext);
1195 rc = send_message(msgerr, 3, mtext);
/external/autotest/site_utils/
Dgmail_lib.py112 def send_message(self, message, ignore_error=True): member in GmailApiClient
155 client.send_message(m, ignore_error=False)
/external/python/cpython3/Doc/includes/
Demail-simple.py21 s.send_message(msg)
Demail-mime.py29 s.send_message(msg)
Demail-alternative.py56 s.send_message(msg)
Demail-dir.py73 s.send_message(msg)
/external/python/cpython3/Lib/test/
Dtest_smtplib.py373 smtp.send_message(m, from_addr='John', to_addrs='Sally')
393 smtp.send_message(m)
425 smtp.send_message(m)
451 smtp.send_message(m, from_addr='joe@example.com', to_addrs='foo@example.net')
480 smtp.send_message(m)
511 smtp.send_message(m)
549 smtp.send_message(m)
1189 self.assertEqual(smtp.send_message(msg), {})
1206 smtp.send_message(msg))
/external/curl/tests/
Dnegtelnetserver.py195 def send_message(self, message): member in Negotiator
205 self.send_message(message)
/external/libvncserver/examples/
D1instance.c100 void send_message(single_instance_struct* str,char* message) in send_message() function
/external/python/cpython3/Doc/library/
Dsmtplib.rst486 .. method:: SMTP.send_message(msg, from_addr=None, to_addrs=None, \
494 If *from_addr* is ``None`` or *to_addrs* is ``None``, ``send_message`` fills
506 ``send_message`` serializes *msg* using
509 values of *from_addr* and *to_addrs*, ``send_message`` does not transmit any
579 via :meth:`~smtplib.SMTP.send_message`; see :ref:`email-examples`.
Demail.policy.rst538 :meth:`smtplib.SMTP.send_message` method handles this automatically).
/external/dhcpcd-6.8.2/
Ddhcp.c1640 send_message(struct interface *ifp, uint8_t type, in send_message() function
1787 send_message((struct interface *)arg, DHCP_INFORM, send_inform); in send_inform()
1794 send_message((struct interface *)arg, DHCP_DISCOVER, send_discover); in send_discover()
1801 send_message((struct interface *)arg, DHCP_REQUEST, send_request); in send_request()
1808 send_message((struct interface *)arg, DHCP_REQUEST, send_renew); in send_renew()
1815 send_message((struct interface *)arg, DHCP_REQUEST, send_rebind); in send_rebind()
1882 send_message(ifp, DHCP_DECLINE, NULL); in dhcp_decline()
2446 send_message(ifp, DHCP_RELEASE, NULL); in dhcp_drop()
/external/python/cpython3/Lib/
Dsmtplib.py891 def send_message(self, msg, from_addr=None, to_addrs=None, member in SMTP
/external/python/cpython3/Lib/logging/
Dhandlers.py1001 smtp.send_message(msg)
/external/python/cpython3/Doc/whatsnew/
D3.5.rst1709 :meth:`SMTP.send_message() <smtplib.SMTP.send_message>` methods now
D3.2.rst709 and a new method, :meth:`~smtplib.SMTP.send_message` accepts a
/external/python/cpython3/Misc/
DHISTORY5267 fix corrects an RFC non-compliance issue with smtplib.send_message.
9424 - Issue #12147: Adjust the new-in-3.2 smtplib.send_message method for better
11599 method send_message to send an email.message.Message object.