Searched refs:msg (Results 126 - 150 of 1961) sorted by relevance

1234567891011>>

/external/icu4c/tools/genrb/
H A Derrmsg.h23 void error (uint32_t linenumber, const char *msg, ...);
24 void warning (uint32_t linenumber, const char *msg, ...);
/external/jmonkeyengine/engine/src/networking/com/jme3/network/message/
H A DGZIPCompressedMessage.java50 public GZIPCompressedMessage(Message msg) { argument
51 super(msg);
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DAnnotatedOutput.java55 * @param msg non-null; the annotation message
57 public void annotate(String msg); argument
68 * @param msg non-null; the annotation message
70 public void annotate(int amt, String msg); argument
/external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
H A Deap_common.c25 * @msg: EAP frame (starting with EAP header)
38 const struct wpabuf *msg, size_t *plen)
44 hdr = wpabuf_head(msg);
46 if (wpabuf_len(msg) < sizeof(*hdr)) {
52 if (len < sizeof(*hdr) + 1 || len > wpabuf_len(msg)) {
139 * @msg: EAP message from eap_msg_alloc
146 void eap_update_len(struct wpabuf *msg) argument
149 hdr = wpabuf_mhead(msg);
150 if (wpabuf_len(msg) < sizeof(*hdr))
152 hdr->length = host_to_be16(wpabuf_len(msg));
37 eap_hdr_validate(int vendor, EapType eap_type, const struct wpabuf *msg, size_t *plen) argument
161 eap_get_id(const struct wpabuf *msg) argument
178 eap_get_type(const struct wpabuf *msg) argument
[all...]
/external/javassist/src/main/javassist/
H A DCannotCompileException.java58 * @param msg the message.
60 public CannotCompileException(String msg) { argument
61 super(msg);
62 message = msg;
82 * @param msg the message.
85 public CannotCompileException(String msg, Throwable e) { argument
86 this(msg);
/external/llvm/include/llvm/Support/
H A DErrorHandling.h84 LLVM_ATTRIBUTE_NORETURN void llvm_unreachable_internal(const char *msg=0,
98 #define llvm_unreachable(msg) \
99 ::llvm::llvm_unreachable_internal(msg, __FILE__, __LINE__)
101 #define llvm_unreachable(msg) LLVM_BUILTIN_UNREACHABLE
103 #define llvm_unreachable(msg) ::llvm::llvm_unreachable_internal()
/external/openssh/
H A Dsftp-client.c155 Buffer msg; local
157 buffer_init(&msg);
158 buffer_put_char(&msg, code);
159 buffer_put_int(&msg, id);
160 buffer_put_string(&msg, s, len);
161 send_msg(conn, &msg);
163 buffer_free(&msg);
170 Buffer msg; local
172 buffer_init(&msg);
173 buffer_put_char(&msg, cod
185 Buffer msg; local
211 Buffer msg; local
249 Buffer msg; local
285 Buffer msg; local
337 Buffer msg; local
428 Buffer msg; local
453 Buffer msg; local
723 Buffer msg; local
771 Buffer msg; local
805 Buffer msg; local
838 Buffer msg; local
871 Buffer msg; local
919 Buffer msg; local
946 Buffer msg; local
973 Buffer msg; local
991 Buffer msg; local
1342 Buffer msg; local
[all...]
H A Dssh-pkcs11-client.c111 Buffer msg; local
119 buffer_init(&msg);
120 buffer_put_char(&msg, SSH2_AGENTC_SIGN_REQUEST);
121 buffer_put_string(&msg, blob, blen);
122 buffer_put_string(&msg, from, flen);
123 buffer_put_int(&msg, 0);
125 send_msg(&msg);
127 if (recv_msg(&msg) == SSH2_AGENT_SIGN_RESPONSE) {
128 signature = buffer_get_string(&msg, &slen);
189 Buffer msg; local
223 Buffer msg; local
[all...]
H A Dauthfd.c235 Buffer msg; local
237 buffer_init(&msg);
238 buffer_put_char(&msg, lock ? SSH_AGENTC_LOCK : SSH_AGENTC_UNLOCK);
239 buffer_put_cstring(&msg, password);
241 if (ssh_request_reply(auth, &msg, &msg) == 0) {
242 buffer_free(&msg);
245 type = buffer_get_char(&msg);
246 buffer_free(&msg);
422 Buffer msg; local
541 Buffer msg; local
597 Buffer msg; local
633 Buffer msg; local
674 Buffer msg; local
[all...]
/external/emma/ant/ant14/com/vladium/emma/ant/
H A DSuppressableTask.java80 public static BuildException newBuildException (final String msg, final Location location) argument
82 final String prefixedMsg = ((msg == null) || (msg.length () == 0))
83 ? msg
84 : IAppConstants.APP_THROWABLE_BUILD_ID + " " + msg;
89 public static BuildException newBuildException (final String msg, final Throwable cause, final Location location) argument
91 final String prefixedMsg = ((msg == null) || (msg.length () == 0))
92 ? msg
93 : IAppConstants.APP_THROWABLE_BUILD_ID + " " + msg;
[all...]
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_enrollee.c19 static int wps_build_mac_addr(struct wps_data *wps, struct wpabuf *msg) argument
22 wpabuf_put_be16(msg, ATTR_MAC_ADDR);
23 wpabuf_put_be16(msg, ETH_ALEN);
24 wpabuf_put_data(msg, wps->mac_addr_e, ETH_ALEN);
29 static int wps_build_wps_state(struct wps_data *wps, struct wpabuf *msg) argument
38 wpabuf_put_be16(msg, ATTR_WPS_STATE);
39 wpabuf_put_be16(msg, 1);
40 wpabuf_put_u8(msg, state);
45 static int wps_build_e_hash(struct wps_data *wps, struct wpabuf *msg) argument
64 wpabuf_put_be16(msg, ATTR_E_HASH
93 wps_build_e_snonce1(struct wps_data *wps, struct wpabuf *msg) argument
103 wps_build_e_snonce2(struct wps_data *wps, struct wpabuf *msg) argument
116 struct wpabuf *msg; local
179 struct wpabuf *msg; local
210 struct wpabuf *msg, *plain; local
243 wps_build_cred_ssid(struct wps_data *wps, struct wpabuf *msg) argument
253 wps_build_cred_auth_type(struct wps_data *wps, struct wpabuf *msg) argument
275 wps_build_cred_encr_type(struct wps_data *wps, struct wpabuf *msg) argument
300 wps_build_cred_network_key(struct wps_data *wps, struct wpabuf *msg) argument
310 wps_build_cred_mac_addr(struct wps_data *wps, struct wpabuf *msg) argument
339 struct wpabuf *msg, *plain; local
385 struct wpabuf *msg; local
415 struct wpabuf *msg; local
667 struct wpabuf msg; local
856 wps_process_m2(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
959 wps_process_m4(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
1014 wps_process_m6(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
1071 wps_process_m8(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
1141 wps_process_wsc_msg(struct wps_data *wps, const struct wpabuf *msg) argument
1223 wps_process_wsc_ack(struct wps_data *wps, const struct wpabuf *msg) argument
1269 wps_process_wsc_nack(struct wps_data *wps, const struct wpabuf *msg) argument
1347 wps_enrollee_process_msg(struct wps_data *wps, enum wsc_op_code op_code, const struct wpabuf *msg) argument
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps_enrollee.c19 static int wps_build_mac_addr(struct wps_data *wps, struct wpabuf *msg) argument
22 wpabuf_put_be16(msg, ATTR_MAC_ADDR);
23 wpabuf_put_be16(msg, ETH_ALEN);
24 wpabuf_put_data(msg, wps->mac_addr_e, ETH_ALEN);
29 static int wps_build_wps_state(struct wps_data *wps, struct wpabuf *msg) argument
38 wpabuf_put_be16(msg, ATTR_WPS_STATE);
39 wpabuf_put_be16(msg, 1);
40 wpabuf_put_u8(msg, state);
45 static int wps_build_e_hash(struct wps_data *wps, struct wpabuf *msg) argument
64 wpabuf_put_be16(msg, ATTR_E_HASH
93 wps_build_e_snonce1(struct wps_data *wps, struct wpabuf *msg) argument
103 wps_build_e_snonce2(struct wps_data *wps, struct wpabuf *msg) argument
116 struct wpabuf *msg; local
179 struct wpabuf *msg; local
210 struct wpabuf *msg, *plain; local
243 wps_build_cred_ssid(struct wps_data *wps, struct wpabuf *msg) argument
253 wps_build_cred_auth_type(struct wps_data *wps, struct wpabuf *msg) argument
275 wps_build_cred_encr_type(struct wps_data *wps, struct wpabuf *msg) argument
300 wps_build_cred_network_key(struct wps_data *wps, struct wpabuf *msg) argument
310 wps_build_cred_mac_addr(struct wps_data *wps, struct wpabuf *msg) argument
339 struct wpabuf *msg, *plain; local
385 struct wpabuf *msg; local
415 struct wpabuf *msg; local
667 struct wpabuf msg; local
856 wps_process_m2(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
959 wps_process_m4(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
1014 wps_process_m6(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
1071 wps_process_m8(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
1141 wps_process_wsc_msg(struct wps_data *wps, const struct wpabuf *msg) argument
1223 wps_process_wsc_ack(struct wps_data *wps, const struct wpabuf *msg) argument
1269 wps_process_wsc_nack(struct wps_data *wps, const struct wpabuf *msg) argument
1347 wps_enrollee_process_msg(struct wps_data *wps, enum wsc_op_code op_code, const struct wpabuf *msg) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_enrollee.c19 static int wps_build_mac_addr(struct wps_data *wps, struct wpabuf *msg) argument
22 wpabuf_put_be16(msg, ATTR_MAC_ADDR);
23 wpabuf_put_be16(msg, ETH_ALEN);
24 wpabuf_put_data(msg, wps->mac_addr_e, ETH_ALEN);
29 static int wps_build_wps_state(struct wps_data *wps, struct wpabuf *msg) argument
38 wpabuf_put_be16(msg, ATTR_WPS_STATE);
39 wpabuf_put_be16(msg, 1);
40 wpabuf_put_u8(msg, state);
45 static int wps_build_e_hash(struct wps_data *wps, struct wpabuf *msg) argument
64 wpabuf_put_be16(msg, ATTR_E_HASH
93 wps_build_e_snonce1(struct wps_data *wps, struct wpabuf *msg) argument
103 wps_build_e_snonce2(struct wps_data *wps, struct wpabuf *msg) argument
116 struct wpabuf *msg; local
179 struct wpabuf *msg; local
210 struct wpabuf *msg, *plain; local
243 wps_build_cred_ssid(struct wps_data *wps, struct wpabuf *msg) argument
253 wps_build_cred_auth_type(struct wps_data *wps, struct wpabuf *msg) argument
275 wps_build_cred_encr_type(struct wps_data *wps, struct wpabuf *msg) argument
300 wps_build_cred_network_key(struct wps_data *wps, struct wpabuf *msg) argument
310 wps_build_cred_mac_addr(struct wps_data *wps, struct wpabuf *msg) argument
339 struct wpabuf *msg, *plain; local
385 struct wpabuf *msg; local
415 struct wpabuf *msg; local
667 struct wpabuf msg; local
856 wps_process_m2(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
959 wps_process_m4(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
1014 wps_process_m6(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
1071 wps_process_m8(struct wps_data *wps, const struct wpabuf *msg, struct wps_parse_attr *attr) argument
1141 wps_process_wsc_msg(struct wps_data *wps, const struct wpabuf *msg) argument
1223 wps_process_wsc_ack(struct wps_data *wps, const struct wpabuf *msg) argument
1269 wps_process_wsc_nack(struct wps_data *wps, const struct wpabuf *msg) argument
1347 wps_enrollee_process_msg(struct wps_data *wps, enum wsc_op_code op_code, const struct wpabuf *msg) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/radius/
H A Dradius.h193 struct radius_hdr * radius_msg_get_hdr(struct radius_msg *msg);
194 struct wpabuf * radius_msg_get_buf(struct radius_msg *msg);
196 void radius_msg_free(struct radius_msg *msg);
197 void radius_msg_dump(struct radius_msg *msg);
198 int radius_msg_finish(struct radius_msg *msg, const u8 *secret,
200 int radius_msg_finish_srv(struct radius_msg *msg, const u8 *secret,
202 int radius_msg_finish_das_resp(struct radius_msg *msg, const u8 *secret,
205 void radius_msg_finish_acct(struct radius_msg *msg, const u8 *secret,
207 int radius_msg_verify_acct_req(struct radius_msg *msg, const u8 *secret,
209 int radius_msg_verify_das_req(struct radius_msg *msg, cons
247 radius_msg_add_attr_int32(struct radius_msg *msg, u8 type, u32 value) argument
254 radius_msg_get_attr_int32(struct radius_msg *msg, u8 type, u32 *value) argument
[all...]
/external/wpa_supplicant_8/src/radius/
H A Dradius.h193 struct radius_hdr * radius_msg_get_hdr(struct radius_msg *msg);
194 struct wpabuf * radius_msg_get_buf(struct radius_msg *msg);
196 void radius_msg_free(struct radius_msg *msg);
197 void radius_msg_dump(struct radius_msg *msg);
198 int radius_msg_finish(struct radius_msg *msg, const u8 *secret,
200 int radius_msg_finish_srv(struct radius_msg *msg, const u8 *secret,
202 int radius_msg_finish_das_resp(struct radius_msg *msg, const u8 *secret,
205 void radius_msg_finish_acct(struct radius_msg *msg, const u8 *secret,
207 int radius_msg_verify_acct_req(struct radius_msg *msg, const u8 *secret,
209 int radius_msg_verify_das_req(struct radius_msg *msg, cons
247 radius_msg_add_attr_int32(struct radius_msg *msg, u8 type, u32 value) argument
254 radius_msg_get_attr_int32(struct radius_msg *msg, u8 type, u32 *value) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/radius/
H A Dradius.h193 struct radius_hdr * radius_msg_get_hdr(struct radius_msg *msg);
194 struct wpabuf * radius_msg_get_buf(struct radius_msg *msg);
196 void radius_msg_free(struct radius_msg *msg);
197 void radius_msg_dump(struct radius_msg *msg);
198 int radius_msg_finish(struct radius_msg *msg, const u8 *secret,
200 int radius_msg_finish_srv(struct radius_msg *msg, const u8 *secret,
202 int radius_msg_finish_das_resp(struct radius_msg *msg, const u8 *secret,
205 void radius_msg_finish_acct(struct radius_msg *msg, const u8 *secret,
207 int radius_msg_verify_acct_req(struct radius_msg *msg, const u8 *secret,
209 int radius_msg_verify_das_req(struct radius_msg *msg, cons
247 radius_msg_add_attr_int32(struct radius_msg *msg, u8 type, u32 value) argument
254 radius_msg_get_attr_int32(struct radius_msg *msg, u8 type, u32 *value) argument
[all...]
/external/chromium/net/tools/dump_cache/
H A Dupgrade.cc73 Message msg; member in struct:__anon3076::IoBuffer
122 bool SendMsg(const Message& msg);
164 bool BaseSM::SendMsg(const Message& msg) { argument
170 output_->msg = msg;
172 if (!WriteFile(channel_, output_, sizeof(msg) + msg.buffer_bytes, &written,
358 Message msg; local
359 msg.command = GET_PREV_ENTRY;
360 msg
377 Message msg; local
422 Message msg; local
444 Message msg; local
488 Message msg; local
543 Message msg; local
691 Message msg; local
706 Message msg; local
763 Message msg; local
779 Message msg; local
801 Message msg; local
816 Message msg; local
833 Message msg; local
[all...]
/external/openssh/openbsd-compat/
H A Dport-aix.c176 char *authmsg = NULL, *msg = NULL, *name = ctxt->pw->pw_name; local
202 expired = passwdexpired(name, &msg);
203 if (msg && *msg) {
204 buffer_append(ctxt->loginmsg, msg, strlen(msg));
205 aix_remove_embedded_newlines(msg);
207 debug3("AIX/passwdexpired returned %d msg %.100s", expired, msg);
217 name, msg);
239 char *msg = NULL; local
280 char *msg = NULL; local
299 char *msg = lastlogin_msg; local
[all...]
/external/chromium/testing/gmock/scripts/
H A Dgmock_doctor.py144 def _GenericDiagnoser(short_name, long_name, diagnoses, msg):
154 msg: Compiler's error messages.
160 if re.search(regex, msg):
162 for m in _FindAllMatches(regex, msg):
166 def _NeedToReturnReferenceDiagnoser(msg):
184 msg)
187 def _NeedToReturnSomethingDiagnoser(msg):
211 msg)
214 def _NeedToReturnNothingDiagnoser(msg):
248 msg)
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DErrorManager.java295 public void info(String msg) {
297 msg = msg.replaceAll("\n", " ");
299 System.err.println(msg);
302 public void error(Message msg) {
303 String outputMsg = msg.toString();
310 public void warning(Message msg) {
311 String outputMsg = msg.toString();
318 public void error(ToolMessage msg) {
319 String outputMsg = msg
574 info(String msg) argument
902 rawError(String msg) argument
906 rawError(String msg, Throwable e) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorExsltFuncResult.java49 String msg = "";
59 msg = "func:result cannot appear within a variable, parameter, or another func:result.";
60 handler.error(msg, new SAXException(msg));
66 msg = "func:result must appear in a func:function element";
67 handler.error(msg, new SAXException(msg));
/external/apache-xml/src/main/java/org/apache/xml/res/
H A DXMLMessages.java102 String msg = null;
105 msg = fResourceBundle.getString(msgKey);
107 if (msg == null)
109 msg = fResourceBundle.getString(BAD_CODE);
129 fmsg = java.text.MessageFormat.format(msg, args);
134 fmsg += " " + msg;
138 fmsg = msg;
/external/apache-xml/src/main/java/org/apache/xpath/res/
H A DXPATHMessages.java93 String msg = null;
96 msg = fResourceBundle.getString(msgKey);
98 if (msg == null)
100 msg = fResourceBundle.getString(XPATHErrorResources.BAD_CODE);
120 fmsg = java.text.MessageFormat.format(msg, args);
125 fmsg += " " + msg;
129 fmsg = msg;
/external/llvm/unittests/ExecutionEngine/JIT/
H A DIntelJITEventListenerTest.cpp33 iJIT_Method_Load* msg = static_cast<iJIT_Method_Load*>(EventSpecificData); local
35 ReportedDebugFuncs[msg->method_id];
37 for(unsigned int i = 0; i < msg->line_number_size; ++i) {
38 EXPECT_TRUE(0 != msg->line_number_table);
40 std::string(msg->source_file_name),
41 msg->line_number_table[i].LineNumber);
42 ReportedDebugFuncs[msg->method_id].push_back(loc);
/external/libnfc-nxp/Linux_x86/
H A DphDal4Nfc_debug.h20 #define DAL_PRINT_BUFFER(msg,buf,len) \
24 snprintf(trace,MAX_TRACE_BUFFER,"\n\t %s:",msg); \
35 #define DAL_PRINT_BUFFER(msg,buf,len)

Completed in 625 milliseconds

1234567891011>>