Searched refs:msg (Results 276 - 300 of 1961) sorted by relevance

<<11121314151617181920>>

/external/oprofile/libutil++/
H A Dop_exception.h30 explicit op_exception(std::string const& msg);
46 explicit op_fatal_error(std::string const & msg);
/external/protobuf/gtest/test/
H A Dgtest_throw_on_failure_ex_test.cc45 void Fail(const char* msg) { argument
46 printf("FAILURE: %s\n", msg);
/external/qemu/distrib/sdl-1.2.15/src/video/windx5/
H A DSDL_dx5events_c.h30 DX5_HandleMessage(_THIS, HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
/external/webkit/LayoutTests/fast/js/resources/
H A Dstandalone-pre.js1 function description(msg)
3 print(msg);
8 function debug(msg)
10 print(msg);
18 function testPassed(msg)
20 print("PASS", escapeString(msg));
23 function testFailed(msg)
25 print("FAIL", escapeString(msg));
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
H A Dcpp.h71 void CPPDebugLogMsg(const char *msg); // Prints information into debug log
73 void CPPWarningToInfoLog(const char *msg); // Prints warning messages into info log
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_upnp.h30 const u8 *mac_addr, const struct wpabuf *msg,
44 const struct wpabuf *msg);
H A Dwps_upnp_ssdp.c126 struct wpabuf *msg; local
135 msg = wpabuf_alloc(800); /* more than big enough */
136 if (msg == NULL)
142 wpabuf_put_str(msg, "NOTIFY * HTTP/1.1\r\n");
143 wpabuf_printf(msg, "HOST: %s:%d\r\n",
145 wpabuf_printf(msg, "CACHE-CONTROL: max-age=%d\r\n",
147 wpabuf_printf(msg, "NTS: %s\r\n",
153 wpabuf_put_str(msg, "HTTP/1.1 200 OK\r\n");
154 wpabuf_printf(msg, "CACHE-CONTROL: max-age=%d\r\n",
157 wpabuf_put_str(msg, "DAT
232 struct wpabuf *msg; local
267 struct wpabuf *msg; local
387 struct wpabuf *msg; local
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps_upnp.h30 const u8 *mac_addr, const struct wpabuf *msg,
44 const struct wpabuf *msg);
H A Dwps_upnp_ssdp.c126 struct wpabuf *msg; local
135 msg = wpabuf_alloc(800); /* more than big enough */
136 if (msg == NULL)
142 wpabuf_put_str(msg, "NOTIFY * HTTP/1.1\r\n");
143 wpabuf_printf(msg, "HOST: %s:%d\r\n",
145 wpabuf_printf(msg, "CACHE-CONTROL: max-age=%d\r\n",
147 wpabuf_printf(msg, "NTS: %s\r\n",
153 wpabuf_put_str(msg, "HTTP/1.1 200 OK\r\n");
154 wpabuf_printf(msg, "CACHE-CONTROL: max-age=%d\r\n",
157 wpabuf_put_str(msg, "DAT
232 struct wpabuf *msg; local
267 struct wpabuf *msg; local
387 struct wpabuf *msg; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_upnp.h30 const u8 *mac_addr, const struct wpabuf *msg,
44 const struct wpabuf *msg);
H A Dwps_upnp_ssdp.c126 struct wpabuf *msg; local
135 msg = wpabuf_alloc(800); /* more than big enough */
136 if (msg == NULL)
142 wpabuf_put_str(msg, "NOTIFY * HTTP/1.1\r\n");
143 wpabuf_printf(msg, "HOST: %s:%d\r\n",
145 wpabuf_printf(msg, "CACHE-CONTROL: max-age=%d\r\n",
147 wpabuf_printf(msg, "NTS: %s\r\n",
153 wpabuf_put_str(msg, "HTTP/1.1 200 OK\r\n");
154 wpabuf_printf(msg, "CACHE-CONTROL: max-age=%d\r\n",
157 wpabuf_put_str(msg, "DAT
232 struct wpabuf *msg; local
267 struct wpabuf *msg; local
387 struct wpabuf *msg; local
[all...]
/external/valgrind/main/none/tests/
H A Dfdleak_cmsg.c57 struct msghdr msg = {NULL, 0, NULL, 0, 0, 0, 0}; local
65 msg.msg_control = buf;
66 msg.msg_controllen = sizeof(buf);
67 cmsg = CMSG_FIRSTHDR(&msg);
77 msg.msg_iov = iov;
78 msg.msg_iovlen = 1;
80 DO( sendmsg(x, &msg, 0) );
93 struct msghdr msg = { NULL, 0, iov, 1, control_un.control, local
122 if ((size = recvmsg(s, &msg, 0)) == -1) {
130 cmsg = CMSG_FIRSTHDR(&msg);
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/wps/
H A Dwps_upnp_ssdp.c136 struct wpabuf *msg; local
142 msg = wpabuf_alloc(800); /* more than big enough */
143 if (msg == NULL)
149 wpabuf_put_str(msg, "NOTIFY * HTTP/1.1\r\n");
150 wpabuf_printf(msg, "HOST: %s:%d\r\n",
152 wpabuf_printf(msg, "CACHE-CONTROL: max-age=%d\r\n",
154 wpabuf_printf(msg, "NTS: %s\r\n",
160 wpabuf_put_str(msg, "HTTP/1.1 200 OK\r\n");
161 wpabuf_printf(msg, "CACHE-CONTROL: max-age=%d\r\n",
164 wpabuf_put_str(msg, "DAT
239 struct wpabuf *msg; local
275 struct wpabuf *msg; local
409 struct wpabuf *msg; local
[all...]
/external/chromium/chrome/browser/chromeos/
H A Dwm_ipc.cc98 void WmIpc::SendMessage(const Message& msg) { argument
104 e.xclient.data.l[0] = msg.type();
108 DCHECK_LE(msg.max_params(), 4);
109 for (int i = 0; i < msg.max_params(); ++i)
110 e.xclient.data.l[i+1] = msg.param(i);
119 bool WmIpc::DecodeMessage(const GdkEventClient& event, Message* msg) { argument
130 msg->set_type(static_cast<WmIpcMessageType>(event.data.l[0]));
131 if (msg->type() < 0) {
133 << "type " << msg->type();
139 DCHECK_LE(msg
[all...]
/external/quake/quake/src/WinQuake/
H A Dsv_main.cpp427 void SV_WriteEntitiesToClient (edict_t *clent, sizebuf_t *msg) argument
465 if (msg->maxsize - msg->cursize < 16)
517 MSG_WriteByte (msg,bits | U_SIGNAL);
520 MSG_WriteByte (msg, bits>>8);
522 MSG_WriteShort (msg,e);
524 MSG_WriteByte (msg,e);
527 MSG_WriteByte (msg, (int) ent->u.v.modelindex);
529 MSG_WriteByte (msg, (int) ent->u.v.frame);
531 MSG_WriteByte (msg, (in
576 SV_WriteClientdataToMessage(edict_t *ent, sizebuf_t *msg) argument
723 sizebuf_t msg; local
800 sizebuf_t msg; local
988 sizebuf_t msg; local
[all...]
/external/openssh/
H A Dssh-pkcs11-helper.c121 Buffer msg; local
123 buffer_init(&msg);
127 buffer_put_char(&msg, SSH2_AGENT_IDENTITIES_ANSWER);
128 buffer_put_int(&msg, nkeys);
131 buffer_put_string(&msg, blob, blen);
132 buffer_put_cstring(&msg, name);
138 buffer_put_char(&msg, SSH_AGENT_FAILURE);
142 send_msg(&msg);
143 buffer_free(&msg);
150 Buffer msg; local
173 Buffer msg; local
[all...]
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_dev_disc.c170 struct p2p_message msg; local
177 if (p2p_parse(data, len, &msg))
180 if (msg.dialog_token == 0) {
184 p2p_send_dev_disc_resp(p2p, msg.dialog_token, sa, rx_freq,
186 p2p_parse_free(&msg);
190 if (msg.device_id == NULL) {
194 p2p_send_dev_disc_resp(p2p, msg.dialog_token, sa, rx_freq,
196 p2p_parse_free(&msg);
201 if (p2p_group_go_discover(p2p->groups[g], msg.device_id, sa,
212 p2p->pending_dev_disc_dialog_token = msg
232 struct p2p_message msg; local
[all...]
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_dev_disc.c170 struct p2p_message msg; local
177 if (p2p_parse(data, len, &msg))
180 if (msg.dialog_token == 0) {
184 p2p_send_dev_disc_resp(p2p, msg.dialog_token, sa, rx_freq,
186 p2p_parse_free(&msg);
190 if (msg.device_id == NULL) {
194 p2p_send_dev_disc_resp(p2p, msg.dialog_token, sa, rx_freq,
196 p2p_parse_free(&msg);
201 if (p2p_group_go_discover(p2p->groups[g], msg.device_id, sa,
212 p2p->pending_dev_disc_dialog_token = msg
232 struct p2p_message msg; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_dev_disc.c170 struct p2p_message msg; local
177 if (p2p_parse(data, len, &msg))
180 if (msg.dialog_token == 0) {
184 p2p_send_dev_disc_resp(p2p, msg.dialog_token, sa, rx_freq,
186 p2p_parse_free(&msg);
190 if (msg.device_id == NULL) {
194 p2p_send_dev_disc_resp(p2p, msg.dialog_token, sa, rx_freq,
196 p2p_parse_free(&msg);
201 if (p2p_group_go_discover(p2p->groups[g], msg.device_id, sa,
212 p2p->pending_dev_disc_dialog_token = msg
232 struct p2p_message msg; local
[all...]
/external/wpa_supplicant_8/hostapd/src/drivers/
H A Ddriver_nl80211.c380 static int bss_info_handler(struct nl_msg *msg, void *arg);
384 static int ack_handler(struct nl_msg *msg, void *arg) argument
391 static int finish_handler(struct nl_msg *msg, void *arg) argument
407 static int no_seq_check(struct nl_msg *msg, void *arg) argument
414 struct nl_handle *nl_handle, struct nl_msg *msg,
425 err = nl_send_auto_complete(nl_handle, msg);
443 nlmsg_free(msg);
449 struct nl_msg *msg,
453 return send_and_recv(global, global->nl, msg, valid_handler,
462 struct nl_msg *msg,
413 send_and_recv(struct nl80211_global *global, struct nl_handle *nl_handle, struct nl_msg *msg, int (*valid_handler)(struct nl_msg *, void *), void *valid_data) argument
448 send_and_recv_msgs_global(struct nl80211_global *global, struct nl_msg *msg, int (*valid_handler)(struct nl_msg *, void *), void *valid_data) argument
461 send_and_recv_msgs(struct wpa_driver_nl80211_data *drv, struct nl_msg *msg, int (*valid_handler)(struct nl_msg *, void *), void *valid_data) argument
477 family_handler(struct nl_msg *msg, void *arg) argument
511 struct nl_msg *msg; local
533 nl80211_cmd(struct wpa_driver_nl80211_data *drv, struct nl_msg *msg, int flags, uint8_t cmd) argument
546 netdev_info_handler(struct nl_msg *msg, void *arg) argument
564 struct nl_msg *msg; local
589 struct nl_msg *msg; local
625 process_beacon_event(struct nl_msg *msg, void *arg) argument
1064 struct nl_msg *msg; local
1655 get_link_signal(struct nl_msg *msg, void *arg) argument
1705 struct nl_msg *msg; local
1726 get_link_noise(struct nl_msg *msg, void *arg) argument
1773 struct nl_msg *msg; local
1793 get_noise_for_scan_results(struct nl_msg *msg, void *arg) argument
1850 struct nl_msg *msg; local
2225 process_drv_event(struct nl_msg *msg, void *arg) argument
2249 process_global_event(struct nl_msg *msg, void *arg) argument
2274 process_bss_event(struct nl_msg *msg, void *arg) argument
2333 struct nl_msg *msg; local
2383 wiphy_info_handler(struct nl_msg *msg, void *arg) argument
2609 struct nl_msg *msg; local
2905 struct msghdr msg; local
3076 struct nl_msg *msg; local
3209 struct nl_msg *msg; local
3382 struct nl_msg *msg; local
3508 struct nl_msg *msg; local
3593 struct nl_msg *msg, *rates = NULL; local
3691 struct nl_msg *msg; local
3785 struct nl_msg *msg; local
3862 bss_info_handler(struct nl_msg *msg, void *arg) argument
4098 struct nl_msg *msg; local
4184 struct nl_msg *msg; local
4335 nl_add_key(struct nl_msg *msg, enum wpa_alg alg, int key_idx, int defkey, const u8 *seq, size_t seq_len, const u8 *key, size_t key_len) argument
4392 nl80211_set_conn_keys(struct wpa_driver_associate_params *params, struct nl_msg *msg) argument
4457 struct nl_msg *msg; local
4581 struct nl_msg *msg; local
4783 phy_info_handler(struct nl_msg *msg, void *arg) argument
5130 nl80211_get_reg(struct nl_msg *msg, void *arg) argument
5180 struct nl_msg *msg; local
5196 struct nl_msg *msg; local
5247 struct msghdr msg = { local
5377 struct nl_msg *msg; local
5422 struct nl_msg *msg; local
5582 struct nl_msg *msg; local
5651 struct nl_msg *msg, *wme = NULL; local
5719 struct nl_msg *msg; local
5745 struct nl_msg *msg; local
5794 struct nl_msg *msg, *flags = NULL; local
6457 struct nl_msg *msg, *flags = NULL; local
6537 struct nl_msg *msg; local
6566 struct nl_msg *msg; local
6654 struct nl_msg *msg; local
6704 struct nl_msg *msg; local
6896 struct nl_msg *msg; local
7055 struct nl_msg *msg; local
7205 struct nl_msg *msg; local
7250 get_key_handler(struct nl_msg *msg, void *arg) argument
7276 struct nl_msg *msg; local
7302 struct nl_msg *msg; local
7335 struct nl_msg *msg; local
7368 struct nl_msg *msg; local
7397 get_sta_handler(struct nl_msg *msg, void *arg) argument
7457 struct nl_msg *msg; local
7483 struct nl_msg *msg; local
7542 struct nl_msg *msg; local
8147 cookie_handler(struct nl_msg *msg, void *arg) argument
8167 struct nl_msg *msg; local
8263 struct nl_msg *msg; local
8291 struct nl_msg *msg; local
8329 struct nl_msg *msg; local
8421 struct nl_msg *msg; local
8551 struct nl_msg *msg, *cqm = NULL; local
8768 struct nl_msg *msg; local
8820 struct nl_msg *msg; local
8890 struct nl_msg *msg; local
8915 struct nl_msg *msg; local
8964 struct nl_msg *msg; local
8996 struct nl_msg *msg; local
[all...]
/external/wpa_supplicant_8/src/drivers/
H A Ddriver_nl80211.c380 static int bss_info_handler(struct nl_msg *msg, void *arg);
384 static int ack_handler(struct nl_msg *msg, void *arg) argument
391 static int finish_handler(struct nl_msg *msg, void *arg) argument
407 static int no_seq_check(struct nl_msg *msg, void *arg) argument
414 struct nl_handle *nl_handle, struct nl_msg *msg,
425 err = nl_send_auto_complete(nl_handle, msg);
443 nlmsg_free(msg);
449 struct nl_msg *msg,
453 return send_and_recv(global, global->nl, msg, valid_handler,
462 struct nl_msg *msg,
413 send_and_recv(struct nl80211_global *global, struct nl_handle *nl_handle, struct nl_msg *msg, int (*valid_handler)(struct nl_msg *, void *), void *valid_data) argument
448 send_and_recv_msgs_global(struct nl80211_global *global, struct nl_msg *msg, int (*valid_handler)(struct nl_msg *, void *), void *valid_data) argument
461 send_and_recv_msgs(struct wpa_driver_nl80211_data *drv, struct nl_msg *msg, int (*valid_handler)(struct nl_msg *, void *), void *valid_data) argument
477 family_handler(struct nl_msg *msg, void *arg) argument
511 struct nl_msg *msg; local
533 nl80211_cmd(struct wpa_driver_nl80211_data *drv, struct nl_msg *msg, int flags, uint8_t cmd) argument
546 netdev_info_handler(struct nl_msg *msg, void *arg) argument
564 struct nl_msg *msg; local
589 struct nl_msg *msg; local
625 process_beacon_event(struct nl_msg *msg, void *arg) argument
1064 struct nl_msg *msg; local
1655 get_link_signal(struct nl_msg *msg, void *arg) argument
1705 struct nl_msg *msg; local
1726 get_link_noise(struct nl_msg *msg, void *arg) argument
1773 struct nl_msg *msg; local
1793 get_noise_for_scan_results(struct nl_msg *msg, void *arg) argument
1850 struct nl_msg *msg; local
2225 process_drv_event(struct nl_msg *msg, void *arg) argument
2249 process_global_event(struct nl_msg *msg, void *arg) argument
2274 process_bss_event(struct nl_msg *msg, void *arg) argument
2333 struct nl_msg *msg; local
2383 wiphy_info_handler(struct nl_msg *msg, void *arg) argument
2609 struct nl_msg *msg; local
2905 struct msghdr msg; local
3076 struct nl_msg *msg; local
3209 struct nl_msg *msg; local
3382 struct nl_msg *msg; local
3508 struct nl_msg *msg; local
3593 struct nl_msg *msg, *rates = NULL; local
3691 struct nl_msg *msg; local
3785 struct nl_msg *msg; local
3862 bss_info_handler(struct nl_msg *msg, void *arg) argument
4098 struct nl_msg *msg; local
4184 struct nl_msg *msg; local
4335 nl_add_key(struct nl_msg *msg, enum wpa_alg alg, int key_idx, int defkey, const u8 *seq, size_t seq_len, const u8 *key, size_t key_len) argument
4392 nl80211_set_conn_keys(struct wpa_driver_associate_params *params, struct nl_msg *msg) argument
4457 struct nl_msg *msg; local
4581 struct nl_msg *msg; local
4783 phy_info_handler(struct nl_msg *msg, void *arg) argument
5130 nl80211_get_reg(struct nl_msg *msg, void *arg) argument
5180 struct nl_msg *msg; local
5196 struct nl_msg *msg; local
5247 struct msghdr msg = { local
5377 struct nl_msg *msg; local
5422 struct nl_msg *msg; local
5582 struct nl_msg *msg; local
5651 struct nl_msg *msg, *wme = NULL; local
5719 struct nl_msg *msg; local
5745 struct nl_msg *msg; local
5794 struct nl_msg *msg, *flags = NULL; local
6457 struct nl_msg *msg, *flags = NULL; local
6537 struct nl_msg *msg; local
6566 struct nl_msg *msg; local
6654 struct nl_msg *msg; local
6704 struct nl_msg *msg; local
6896 struct nl_msg *msg; local
7055 struct nl_msg *msg; local
7205 struct nl_msg *msg; local
7250 get_key_handler(struct nl_msg *msg, void *arg) argument
7276 struct nl_msg *msg; local
7302 struct nl_msg *msg; local
7335 struct nl_msg *msg; local
7368 struct nl_msg *msg; local
7397 get_sta_handler(struct nl_msg *msg, void *arg) argument
7457 struct nl_msg *msg; local
7483 struct nl_msg *msg; local
7542 struct nl_msg *msg; local
8147 cookie_handler(struct nl_msg *msg, void *arg) argument
8167 struct nl_msg *msg; local
8263 struct nl_msg *msg; local
8291 struct nl_msg *msg; local
8329 struct nl_msg *msg; local
8421 struct nl_msg *msg; local
8551 struct nl_msg *msg, *cqm = NULL; local
8768 struct nl_msg *msg; local
8820 struct nl_msg *msg; local
8890 struct nl_msg *msg; local
8915 struct nl_msg *msg; local
8964 struct nl_msg *msg; local
8996 struct nl_msg *msg; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/drivers/
H A Ddriver_nl80211.c380 static int bss_info_handler(struct nl_msg *msg, void *arg);
384 static int ack_handler(struct nl_msg *msg, void *arg) argument
391 static int finish_handler(struct nl_msg *msg, void *arg) argument
407 static int no_seq_check(struct nl_msg *msg, void *arg) argument
414 struct nl_handle *nl_handle, struct nl_msg *msg,
425 err = nl_send_auto_complete(nl_handle, msg);
443 nlmsg_free(msg);
449 struct nl_msg *msg,
453 return send_and_recv(global, global->nl, msg, valid_handler,
462 struct nl_msg *msg,
413 send_and_recv(struct nl80211_global *global, struct nl_handle *nl_handle, struct nl_msg *msg, int (*valid_handler)(struct nl_msg *, void *), void *valid_data) argument
448 send_and_recv_msgs_global(struct nl80211_global *global, struct nl_msg *msg, int (*valid_handler)(struct nl_msg *, void *), void *valid_data) argument
461 send_and_recv_msgs(struct wpa_driver_nl80211_data *drv, struct nl_msg *msg, int (*valid_handler)(struct nl_msg *, void *), void *valid_data) argument
477 family_handler(struct nl_msg *msg, void *arg) argument
511 struct nl_msg *msg; local
533 nl80211_cmd(struct wpa_driver_nl80211_data *drv, struct nl_msg *msg, int flags, uint8_t cmd) argument
546 netdev_info_handler(struct nl_msg *msg, void *arg) argument
564 struct nl_msg *msg; local
589 struct nl_msg *msg; local
625 process_beacon_event(struct nl_msg *msg, void *arg) argument
1064 struct nl_msg *msg; local
1655 get_link_signal(struct nl_msg *msg, void *arg) argument
1705 struct nl_msg *msg; local
1726 get_link_noise(struct nl_msg *msg, void *arg) argument
1773 struct nl_msg *msg; local
1793 get_noise_for_scan_results(struct nl_msg *msg, void *arg) argument
1850 struct nl_msg *msg; local
2225 process_drv_event(struct nl_msg *msg, void *arg) argument
2249 process_global_event(struct nl_msg *msg, void *arg) argument
2274 process_bss_event(struct nl_msg *msg, void *arg) argument
2333 struct nl_msg *msg; local
2383 wiphy_info_handler(struct nl_msg *msg, void *arg) argument
2609 struct nl_msg *msg; local
2905 struct msghdr msg; local
3076 struct nl_msg *msg; local
3209 struct nl_msg *msg; local
3382 struct nl_msg *msg; local
3508 struct nl_msg *msg; local
3593 struct nl_msg *msg, *rates = NULL; local
3691 struct nl_msg *msg; local
3785 struct nl_msg *msg; local
3862 bss_info_handler(struct nl_msg *msg, void *arg) argument
4098 struct nl_msg *msg; local
4184 struct nl_msg *msg; local
4335 nl_add_key(struct nl_msg *msg, enum wpa_alg alg, int key_idx, int defkey, const u8 *seq, size_t seq_len, const u8 *key, size_t key_len) argument
4392 nl80211_set_conn_keys(struct wpa_driver_associate_params *params, struct nl_msg *msg) argument
4457 struct nl_msg *msg; local
4581 struct nl_msg *msg; local
4783 phy_info_handler(struct nl_msg *msg, void *arg) argument
5130 nl80211_get_reg(struct nl_msg *msg, void *arg) argument
5180 struct nl_msg *msg; local
5196 struct nl_msg *msg; local
5247 struct msghdr msg = { local
5377 struct nl_msg *msg; local
5422 struct nl_msg *msg; local
5582 struct nl_msg *msg; local
5651 struct nl_msg *msg, *wme = NULL; local
5719 struct nl_msg *msg; local
5745 struct nl_msg *msg; local
5794 struct nl_msg *msg, *flags = NULL; local
6457 struct nl_msg *msg, *flags = NULL; local
6537 struct nl_msg *msg; local
6566 struct nl_msg *msg; local
6654 struct nl_msg *msg; local
6704 struct nl_msg *msg; local
6896 struct nl_msg *msg; local
7055 struct nl_msg *msg; local
7205 struct nl_msg *msg; local
7250 get_key_handler(struct nl_msg *msg, void *arg) argument
7276 struct nl_msg *msg; local
7302 struct nl_msg *msg; local
7335 struct nl_msg *msg; local
7368 struct nl_msg *msg; local
7397 get_sta_handler(struct nl_msg *msg, void *arg) argument
7457 struct nl_msg *msg; local
7483 struct nl_msg *msg; local
7542 struct nl_msg *msg; local
8147 cookie_handler(struct nl_msg *msg, void *arg) argument
8167 struct nl_msg *msg; local
8263 struct nl_msg *msg; local
8291 struct nl_msg *msg; local
8329 struct nl_msg *msg; local
8421 struct nl_msg *msg; local
8551 struct nl_msg *msg, *cqm = NULL; local
8768 struct nl_msg *msg; local
8820 struct nl_msg *msg; local
8890 struct nl_msg *msg; local
8915 struct nl_msg *msg; local
8964 struct nl_msg *msg; local
8996 struct nl_msg *msg; local
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/auth/
H A DAuthenticationManager.java113 byte[] msg = deQueue();
115 if (msg[0] != Packets.SSH_MSG_USERAUTH_BANNER)
116 return msg;
118 PacketUserauthBanner sb = new PacketUserauthBanner(msg, 0, msg.length);
149 byte[] msg = getNextMessage();
150 new PacketServiceAccept(msg, 0, msg.length);
155 msg = getNextMessage();
159 if (msg[
414 handleMessage(byte[] msg, int msglen) argument
[all...]
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt026actions.py20 def emitErrorMessage(self, msg):
21 self._errors.append(msg)
40 def emitErrorMessage(self, msg):
41 self._errors.append(msg)
/external/chromium/chrome/browser/
H A Dgpu_process_host_ui_shim.cc44 SendOnIOThreadTask(int host_id, IPC::Message* msg) argument
46 msg_(msg) {
62 virtual bool Send(IPC::Message* msg) { argument
68 DCHECK(!msg->is_sync());
76 new RouteToGpuProcessHostUIShimTask(0, *msg));
78 delete msg;
84 IPC::Message* msg) {
85 bool success = gpu_channel_manager->OnMessageReceived(*msg);
92 delete msg;
99 const IPC::Message& msg)
83 ForwardMessageToGpuThread(GpuChannelManager* gpu_channel_manager, IPC::Message* msg) argument
97 RouteToGpuProcessHostUIShimTask( int host_id, const IPC::Message& msg) argument
155 Send(IPC::Message* msg) argument
194 SendToGpuHost(int host_id, IPC::Message* msg) argument
[all...]

Completed in 533 milliseconds

<<11121314151617181920>>