Searched refs:msg (Results 101 - 125 of 3582) sorted by relevance

1234567891011>>

/external/libnl/lib/netfilter/
H A Dlog.c37 struct nl_msg *msg; local
40 msg = nfnlmsg_alloc_simple(NFNL_SUBSYS_ULOG, NFULNL_MSG_CONFIG, 0,
42 if (msg == NULL)
46 if (nla_put(msg, NFULA_CFG_CMD, sizeof(cmd), &cmd) < 0)
49 *result = msg;
53 nlmsg_free(msg);
57 static int send_log_request(struct nl_sock *sk, struct nl_msg *msg) argument
61 err = nl_send_auto_complete(sk, msg);
62 nlmsg_free(msg);
76 struct nl_msg *msg; local
92 struct nl_msg *msg; local
104 struct nl_msg *msg; local
184 struct nl_msg *msg; local
201 struct nl_msg *msg; local
222 struct nl_msg *msg; local
[all...]
H A Dqueue.c37 static int send_queue_request(struct nl_sock *sk, struct nl_msg *msg) argument
41 err = nl_send_auto_complete(sk, msg);
42 nlmsg_free(msg);
57 struct nl_msg *msg; local
60 msg = nfnlmsg_alloc_simple(NFNL_SUBSYS_QUEUE, NFQNL_MSG_CONFIG, 0,
62 if (msg == NULL)
68 if (nla_put(msg, NFQA_CFG_CMD, sizeof(cmd), &cmd) < 0)
71 *result = msg;
75 nlmsg_free(msg);
86 struct nl_msg *msg; local
102 struct nl_msg *msg; local
114 struct nl_msg *msg; local
184 struct nl_msg *msg; local
201 struct nl_msg *msg; local
222 struct nl_msg *msg; local
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLog.java17 public static void e(String tag, String msg) { argument
18 e(tag, msg, null);
22 public static void e(String tag, String msg, Throwable throwable) { argument
23 addLog(Log.ERROR, tag, msg, throwable);
27 public static void d(String tag, String msg) { argument
28 d(tag, msg, null);
32 public static void d(String tag, String msg, Throwable throwable) { argument
33 addLog(Log.DEBUG, tag, msg, throwable);
37 public static void i(String tag, String msg) { argument
38 i(tag, msg, nul
42 i(String tag, String msg, Throwable throwable) argument
47 v(String tag, String msg) argument
52 v(String tag, String msg, Throwable throwable) argument
57 w(String tag, String msg) argument
68 w(String tag, String msg, Throwable throwable) argument
73 wtf(String tag, String msg) argument
78 wtf(String tag, String msg, Throwable throwable) argument
87 addLog(int level, String tag, String msg, Throwable throwable) argument
95 logToStream(PrintStream ps, int level, String tag, String msg, Throwable throwable) argument
123 public final String msg; field in class:ShadowLog.LogItem
126 LogItem(int type, String tag, String msg, Throwable throwable) argument
[all...]
/external/chromium_org/chrome/browser/resources/gaia_auth_host/
H A Dgaia_auth_host.js281 var msg = {
285 this.frame_.contentWindow.postMessage(msg, AUTH_URL_BASE);
295 var msg = {
300 this.frame_.contentWindow.postMessage(msg, AUTH_URL_BASE);
331 var msg = e.data;
336 if (msg.method == 'loginUILoaded') {
341 if (/^complete(Login|Authentication)$|^offlineLogin$/.test(msg.method)) {
342 if (!msg.email && !this.email_ && !msg.skipForNow) {
343 var msg
[all...]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DErrorQueue.java42 public void info(String msg) { argument
43 infos.add(msg);
46 public void error(Message msg) { argument
47 errors.add(msg);
50 public void warning(Message msg) { argument
51 warnings.add(msg);
54 public void error(ToolMessage msg) { argument
55 errors.add(msg);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DDecoderException.java8 DecoderException(String msg, Throwable cause) argument
10 super(msg);
H A DEncoderException.java8 EncoderException(String msg, Throwable cause) argument
10 super(msg);
/external/chromium_org/content/common/
H A Dswapped_out_messages.h16 static bool CanSendWhileSwappedOut(const IPC::Message* msg);
17 static bool CanHandleWhileSwappedOut(const IPC::Message& msg);
/external/chromium_org/ppapi/proxy/
H A Dinterface_proxy.cc20 bool InterfaceProxy::Send(IPC::Message* msg) { argument
21 return dispatcher_->Send(msg);
/external/chromium_org/sdch/open-vcdiff/src/
H A Dcompile_assert.h49 #define VCD_COMPILE_ASSERT(expr, msg) \
51 msg[static_cast<bool>(expr) ? 1 : -1]
60 // #define VCD_COMPILE_ASSERT(expr, msg) typedef char msg[(expr) ? 1 : -1]
68 // VCD_COMPILE_ASSERT(foo, msg); // not supposed to compile as foo is
/external/chromium_org/third_party/android_testrunner/
H A Dlogger.py48 msg = _PrependTimeStamp(new_str)
49 print msg
50 _WriteLog(msg)
52 def _WriteLog(msg):
56 file_handle.write('\n' + str(msg))
77 msg = _PrependTimeStamp(new_str)
79 print msg
80 _WriteLog(msg)
/external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
H A Dpython_protobuf.h50 const Message* GetCProtoInsidePyProto(PyObject* msg);
51 Message* MutableCProtoInsidePyProto(PyObject* msg);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DAnnotatedOutput.java47 * @param msg {@code non-null;} the annotation message
49 public void annotate(String msg); argument
60 * @param msg {@code non-null;} the annotation message
62 public void annotate(int amt, String msg); argument
/external/eigen/blas/
H A Dxerbla.cpp15 EIGEN_WEAK_LINKING int xerbla_(const char * msg, int *info, int) argument
17 std::cerr << "Eigen BLAS ERROR #" << *info << ": " << msg << "\n"; local
/external/emma/core/java12/com/vladium/util/asserts/
H A D$assert.java31 * @param msg
33 public static void ASSERT (final boolean condition, final String msg) argument
37 if (! condition) throw new RuntimeException (msg);
/external/jsilver/src/com/google/streamhtmlparser/
H A DParseException.java35 * @param msg the error message
37 public ParseException(Parser parser, String msg) { argument
41 msg));
/external/valgrind/main/memcheck/tests/
H A Dclient-msg.stderr.exp3 by 0x........: baz (client-msg.c:5)
4 by 0x........: bar (client-msg.c:10)
5 by 0x........: foo (client-msg.c:15)
6 by 0x........: main (client-msg.c:20)
/external/chromium_org/sandbox/mac/
H A Ddispatch_source_mach_unittest.cc49 mach_msg_empty_rcv_t msg = {{0}};
50 msg.header.msgh_size = sizeof(msg);
51 msg.header.msgh_local_port = port();
52 mach_msg_receive(&msg.header);
58 mach_msg_empty_send_t msg = {{0}}; local
59 msg.header.msgh_size = sizeof(msg);
60 msg.header.msgh_remote_port = port();
61 msg
[all...]
/external/chromium_org/chromecast/media/cma/ipc_streamer/
H A Daudio_decoder_config_marshaller.cc21 const ::media::AudioDecoderConfig& config, MediaMessage* msg) {
22 CHECK(msg->WritePod(config.codec()));
23 CHECK(msg->WritePod(config.channel_layout()));
24 CHECK(msg->WritePod(config.samples_per_second()));
25 CHECK(msg->WritePod(config.sample_format()));
26 CHECK(msg->WritePod(config.is_encrypted()));
27 CHECK(msg->WritePod(config.extra_data_size()));
29 CHECK(msg->WriteBuffer(config.extra_data(), config.extra_data_size()));
34 MediaMessage* msg) {
43 CHECK(msg
20 Write( const ::media::AudioDecoderConfig& config, MediaMessage* msg) argument
33 Read( MediaMessage* msg) argument
[all...]
/external/chromium_org/remoting/protocol/
H A Dmessage_serialization.cc17 const google::protobuf::MessageLite& msg) {
21 int size = msg.ByteSize() + kExtraBytes;
23 rtc::SetBE32(buffer->data(), msg.GetCachedSize());
24 msg.SerializeWithCachedSizesToArray(
16 SerializeAndFrameMessage( const google::protobuf::MessageLite& msg) argument
/external/libsepol/tests/policies/test-deps/
H A Dmodreq-perm-opt.conf11 class msg { send receive };
17 allow a_mod_t b_mod_t: msg { send receive };
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/
H A Dlibslang.h15 #define slsmg_printf(msg, args...) \
16 SLsmg_printf((char *)(msg), ##args)
17 #define slsmg_write_nstring(msg, len) \
18 SLsmg_write_nstring((char *)(msg), len)
/external/objenesis/main/src/org/objenesis/
H A DObjenesisException.java33 * @param msg Error message
35 public ObjenesisException(String msg) { argument
36 super(msg);
50 * @param msg Error message
53 public ObjenesisException(String msg, Throwable cause) { argument
54 super(msg);
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_dev_attr.c16 int wps_build_manufacturer(struct wps_device_data *dev, struct wpabuf *msg) argument
20 wpabuf_put_be16(msg, ATTR_MANUFACTURER);
29 wpabuf_put_be16(msg, 1);
30 wpabuf_put_u8(msg, ' ');
34 wpabuf_put_be16(msg, len);
35 wpabuf_put_data(msg, dev->manufacturer, len);
40 int wps_build_model_name(struct wps_device_data *dev, struct wpabuf *msg) argument
44 wpabuf_put_be16(msg, ATTR_MODEL_NAME);
53 wpabuf_put_be16(msg, 1);
54 wpabuf_put_u8(msg, ' ');
64 wps_build_model_number(struct wps_device_data *dev, struct wpabuf *msg) argument
88 wps_build_serial_number(struct wps_device_data *dev, struct wpabuf *msg) argument
112 wps_build_primary_dev_type(struct wps_device_data *dev, struct wpabuf *msg) argument
122 wps_build_secondary_dev_type(struct wps_device_data *dev, struct wpabuf *msg) argument
138 wps_build_req_dev_type(struct wps_device_data *dev, struct wpabuf *msg, unsigned int num_req_dev_types, const u8 *req_dev_types) argument
158 wps_build_dev_name(struct wps_device_data *dev, struct wpabuf *msg) argument
182 wps_build_device_attrs(struct wps_device_data *dev, struct wpabuf *msg) argument
195 wps_build_os_version(struct wps_device_data *dev, struct wpabuf *msg) argument
205 wps_build_vendor_ext_m1(struct wps_device_data *dev, struct wpabuf *msg) argument
219 wps_build_rf_bands(struct wps_device_data *dev, struct wpabuf *msg, u8 rf_band) argument
226 wps_build_vendor_ext(struct wps_device_data *dev, struct wpabuf *msg) argument
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps_dev_attr.c16 int wps_build_manufacturer(struct wps_device_data *dev, struct wpabuf *msg) argument
20 wpabuf_put_be16(msg, ATTR_MANUFACTURER);
29 wpabuf_put_be16(msg, 1);
30 wpabuf_put_u8(msg, ' ');
34 wpabuf_put_be16(msg, len);
35 wpabuf_put_data(msg, dev->manufacturer, len);
40 int wps_build_model_name(struct wps_device_data *dev, struct wpabuf *msg) argument
44 wpabuf_put_be16(msg, ATTR_MODEL_NAME);
53 wpabuf_put_be16(msg, 1);
54 wpabuf_put_u8(msg, ' ');
64 wps_build_model_number(struct wps_device_data *dev, struct wpabuf *msg) argument
88 wps_build_serial_number(struct wps_device_data *dev, struct wpabuf *msg) argument
112 wps_build_primary_dev_type(struct wps_device_data *dev, struct wpabuf *msg) argument
122 wps_build_secondary_dev_type(struct wps_device_data *dev, struct wpabuf *msg) argument
138 wps_build_req_dev_type(struct wps_device_data *dev, struct wpabuf *msg, unsigned int num_req_dev_types, const u8 *req_dev_types) argument
158 wps_build_dev_name(struct wps_device_data *dev, struct wpabuf *msg) argument
182 wps_build_device_attrs(struct wps_device_data *dev, struct wpabuf *msg) argument
195 wps_build_os_version(struct wps_device_data *dev, struct wpabuf *msg) argument
205 wps_build_vendor_ext_m1(struct wps_device_data *dev, struct wpabuf *msg) argument
219 wps_build_rf_bands(struct wps_device_data *dev, struct wpabuf *msg, u8 rf_band) argument
226 wps_build_vendor_ext(struct wps_device_data *dev, struct wpabuf *msg) argument
[all...]

Completed in 3682 milliseconds

1234567891011>>