/external/minijail/ |
D | util.h | 56 #define die(_msg, ...) \ argument 57 do_fatal_log(LOG_ERR, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__) 59 #define pdie(_msg, ...) \ argument 60 die(_msg ": %m", ## __VA_ARGS__) 62 #define warn(_msg, ...) \ argument 63 do_log(LOG_WARNING, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__) 65 #define pwarn(_msg, ...) \ argument 66 warn(_msg ": %m", ## __VA_ARGS__) 68 #define info(_msg, ...) \ argument 69 do_log(LOG_INFO, "libminijail[%d]: " _msg, getpid(), ## __VA_ARGS__)
|
D | syscall_filter.c | 19 #define compiler_warn(_state, _msg, ...) \ argument 20 warn("%s: %s(%zd): " _msg, __func__, (_state)->filename, \ 23 #define compiler_pwarn(_state, _msg, ...) \ argument 24 compiler_warn(_state, _msg ": %m", ## __VA_ARGS__)
|
/external/skia/src/utils/win/ |
D | SkHRESULT.h | 20 #define SK_TRACEHR(_hr, _msg) SkTraceHR(__FILE__, __LINE__, _hr, _msg) argument 22 #define SK_TRACEHR(_hr, _msg) sk_ignore_unused_variable(_hr) argument 25 #define HR_GENERAL(_ex, _msg, _ret) do {\ argument 28 SK_TRACEHR(_hr, _msg);\
|
/external/skqp/src/utils/win/ |
D | SkHRESULT.h | 20 #define SK_TRACEHR(_hr, _msg) SkTraceHR(__FILE__, __LINE__, _hr, _msg) argument 22 #define SK_TRACEHR(_hr, _msg) sk_ignore_unused_variable(_hr) argument 25 #define HR_GENERAL(_ex, _msg, _ret) {\ argument 28 SK_TRACEHR(_hr, _msg);\
|
/external/libnl/python/netlink/ |
D | core.py | 98 self._msg = capi.nl_geterror(error) 101 return self._msg 105 return 'Kernel returned: {0}'.format(self._msg) 109 self._msg = msg 112 return 'Immutable attribute: {0}'.format(self._msg) 119 self._msg = capi.nlmsg_alloc() 121 self._msg = capi.nlmsg_alloc_size(size) 123 if self._msg is None: 127 capi.nlmsg_free(self._msg) 130 return capi.nlmsg_len(nlmsg_hdr(self._msg)) [all …]
|
/external/python/cpython3/Lib/xml/sax/ |
D | _exceptions.py | 22 self._msg = msg 28 return self._msg 36 return self._msg 100 return "%s:%s:%s: %s" % (sysid, linenum, colnum, self._msg)
|
/external/python/cpython2/Lib/xml/sax/ |
D | _exceptions.py | 22 self._msg = msg 28 return self._msg 36 return self._msg 100 return "%s:%s:%s: %s" % (sysid, linenum, colnum, self._msg)
|
/external/python/cpython2/Lib/email/mime/ |
D | message.py | 17 def __init__(self, _msg, _subtype='rfc822'): argument 28 if not isinstance(_msg, message.Message): 32 message.Message.attach(self, _msg)
|
/external/python/cpython3/Lib/email/mime/ |
D | message.py | 17 def __init__(self, _msg, _subtype='rfc822', *, policy=None): argument 28 if not isinstance(_msg, message.Message): 32 message.Message.attach(self, _msg)
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | base64_ops_test.py | 38 self._msg = array_ops.placeholder(dtype=dtypes.string) 39 self._encoded_f = string_ops.encode_base64(self._msg, pad=False) 41 self._encoded_t = string_ops.encode_base64(self._msg, pad=True) 55 feed_dict={self._msg: msg}) 58 feed_dict={self._msg: msg})
|
/external/clang/test/CodeGen/ |
D | staticinit.c | 35 static char _msg[40]; in f2() local 37 return _msg; in f2()
|
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/ |
D | wpamsg.h | 17 WpaMsg(const QString &_msg, int _priority = 2) 18 : msg(_msg), priority(_priority) in msg() argument
|
/external/v8/src/base/ |
D | logging.h | 69 if (std::string* _msg = ::v8::base::Check##name##Impl< \ 73 FATAL("Check failed: %s.", _msg->c_str()); \ 74 delete _msg; \ 80 if (std::string* _msg = ::v8::base::Check##name##Impl< \ 84 V8_Dcheck(__FILE__, __LINE__, _msg->c_str()); \ 85 delete _msg; \
|
/external/autotest/venv/lucifer/ |
D | handlers.py | 64 def _handle_running(self, _msg): argument 70 def _handle_gathering(self, _msg): argument 75 def _handle_parsing(self, _msg): argument 80 def _handle_aborted(self, _msg): argument 85 def _handle_completed(self, _msg): argument
|
/external/strace/tests-m32/ |
D | nlattr_ifla_af_spec.c | 67 init_##family_##_msg(struct nlmsghdr *const nlh, \ 82 print_##family_##_msg(const unsigned int msg_len) \
|
/external/strace/tests-mx32/ |
D | nlattr_ifla_af_spec.c | 67 init_##family_##_msg(struct nlmsghdr *const nlh, \ 82 print_##family_##_msg(const unsigned int msg_len) \
|
/external/strace/tests/ |
D | nlattr_ifla_af_spec.c | 67 init_##family_##_msg(struct nlmsghdr *const nlh, \ 82 print_##family_##_msg(const unsigned int msg_len) \
|
/external/e2fsprogs/intl/ |
D | libgettext.h | 74 const char *_msg; member
|
/external/python/cpython2/Lib/email/test/ |
D | test_email_renamed.py | 1034 self._msg = MIMEText('hello there') 1038 eq(self._msg.get_content_type(), 'text/plain') 1039 eq(self._msg.get_param('charset'), 'us-ascii') 1041 self.assertIs(self._msg.get_param('foobar', missing), missing) 1042 self.assertIs(self._msg.get_param('charset', missing, header='foobar'), 1046 self.assertEqual(self._msg.get_payload(), 'hello there') 1047 self.assertFalse(self._msg.is_multipart()) 1095 self._msg = container 1104 m = self._msg
|
D | test_email.py | 1074 self._msg = MIMEText('hello there') 1078 eq(self._msg.get_content_type(), 'text/plain') 1079 eq(self._msg.get_param('charset'), 'us-ascii') 1081 self.assertIs(self._msg.get_param('foobar', missing), missing) 1082 self.assertIs(self._msg.get_param('charset', missing, header='foobar'), 1086 self.assertEqual(self._msg.get_payload(), 'hello there') 1087 self.assertFalse(self._msg.is_multipart()) 1160 self._msg = container 1169 m = self._msg
|
/external/virglrenderer/src/gallium/auxiliary/util/ |
D | u_debug.h | 137 #define debug_print_format(_msg, _fmt) ((void)0) argument
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_debug.h | 140 #define debug_print_format(_msg, _fmt) ((void)0) argument
|
/external/python/cpython2/Doc/library/ |
D | email.mime.rst | 177 .. class:: MIMEMessage(_msg[, _subtype]) 183 :mimetype:`message`. *_msg* is used as the payload, and must be an instance
|
/external/python/cpython3/Doc/library/ |
D | email.mime.rst | 209 .. class:: MIMEMessage(_msg, _subtype='rfc822', *, policy=compat32) 215 :mimetype:`message`. *_msg* is used as the payload, and must be an instance
|
/external/python/cpython3/Lib/test/test_email/ |
D | test_email.py | 1645 self._msg = MIMEText('hello there') 1649 eq(self._msg.get_content_type(), 'text/plain') 1650 eq(self._msg.get_param('charset'), 'us-ascii') 1652 self.assertIs(self._msg.get_param('foobar', missing), missing) 1653 self.assertIs(self._msg.get_param('charset', missing, header='foobar'), 1657 self.assertEqual(self._msg.get_payload(), 'hello there') 1658 self.assertFalse(self._msg.is_multipart()) 1736 self._msg = container 1745 m = self._msg
|