Home
last modified time | relevance | path

Searched refs:reason_str (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/boringssl/src/crypto/err/
Derr.c331 const char *lib_str, *func_str, *reason_str; in ERR_error_string_n() local
344 reason_str = ERR_reason_error_string(packed_error); in ERR_error_string_n()
356 if (reason_str == NULL) { in ERR_error_string_n()
358 reason_str = reason_buf; in ERR_error_string_n()
362 packed_error, lib_str, func_str, reason_str); in ERR_error_string_n()
420 const char *reason_str = err_component_error_string( in ERR_reason_error_string() local
423 if (reason_str != NULL) { in ERR_reason_error_string()
424 return reason_str; in ERR_reason_error_string()
/external/chromium_org/content/renderer/media/
Drtc_peer_connection_handler.cc550 std::string reason_str = "Failed to parse SessionDescription. "; in setLocalDescription() local
551 reason_str.append(error.line); in setLocalDescription()
552 reason_str.append(" "); in setLocalDescription()
553 reason_str.append(error.description); in setLocalDescription()
554 LOG(ERROR) << reason_str; in setLocalDescription()
555 request.requestFailed(blink::WebString::fromUTF8(reason_str)); in setLocalDescription()
575 std::string reason_str = "Failed to parse SessionDescription. "; in setRemoteDescription() local
576 reason_str.append(error.line); in setRemoteDescription()
577 reason_str.append(" "); in setRemoteDescription()
578 reason_str.append(error.description); in setRemoteDescription()
[all …]
/external/lldb/test/functionalities/thread/concurrent_events/
DTestConcurrentEvents.py356 reason_str = lldbutil.stop_reason_to_str(reason)
360 reason_str = "%s hit %d times" % (lldbutil.get_description(bp), bp.GetHitCount())
364reason_str = "%s hit %d times" % (lldbutil.get_description(watch), watch.GetHitCount())
366 reason_str = "signal %s" % (signal_names[x.GetStopReasonDataAtIndex(0)])
369 ret.append("thread %d %s due to %s at\n\t%s" % (id, status, reason_str, location))
/external/openssl/apps/
Dca.c2913 char *rtime_str, *reason_str = NULL, *arg_str = NULL, *p; in unpack_revinfo() local
2929 reason_str = p; in unpack_revinfo()
2947 if (reason_str) in unpack_revinfo()
2951 if(!strcasecmp(reason_str, crl_reasons[i])) in unpack_revinfo()
2959 BIO_printf(bio_err, "invalid reason code %s\n", reason_str); in unpack_revinfo()
/external/chromium_org/ppapi/tests/
Dtest_websocket.cc925 std::string reason_str = "close while busy"; in TestBufferedAmount() local
926 PP_Var reason = CreateVarString(reason_str.c_str()); in TestBufferedAmount()
954 uint64_t reason_frame_size = kMessageFrameOverhead + reason_str.length(); in TestBufferedAmount()