HomeSort by relevance Sort by last modified time
    Searched refs:reason (Results 26 - 50 of 2048) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLProtocolException.java 45 * @param reason describes the problem.
47 public SSLProtocolException(String reason)
49 super(reason);
  /libcore/ojluni/src/main/java/sun/net/www/
ApplicationLaunchException.java 38 public ApplicationLaunchException(String reason) {
39 super(reason);
  /packages/apps/Camera2/src/com/android/camera/one/v2/core/
ResourceAcquisitionFailedException.java 29 public ResourceAcquisitionFailedException(Exception reason) {
30 super(reason);
  /system/keymaster/
openssl_err.cpp 34 static keymaster_error_t TranslateEvpError(int reason);
36 static keymaster_error_t TranslateASN1Error(int reason);
37 static keymaster_error_t TranslateCipherError(int reason);
38 static keymaster_error_t TranslatePKCS8Error(int reason);
39 static keymaster_error_t TranslateX509v3Error(int reason);
40 static keymaster_error_t TranslateRsaError(int reason);
50 int reason = ERR_GET_REASON(error); local
53 switch (reason) {
67 return static_cast<keymaster_error_t>(reason);
69 return TranslateEvpError(reason);
    [all...]
  /libcore/ojluni/src/main/java/java/io/
InvalidClassException.java 53 * Report an InvalidClassException for the reason specified.
55 * @param reason String describing the reason for the exception.
57 public InvalidClassException(String reason) {
58 super(reason);
65 * @param reason a String describing the reason for the exception.
67 public InvalidClassException(String cname, String reason) {
68 super(reason);
  /frameworks/base/wifi/java/android/net/wifi/nan/
IWifiNanSessionListener.aidl 26 void onPublishFail(int reason);
27 void onPublishTerminated(int reason);
29 void onSubscribeFail(int reason);
30 void onSubscribeTerminated(int reason);
36 void onMessageSendFail(int messageId, int reason);
IWifiNanEventListener.aidl 29 void onConfigFailed(in ConfigRequest failedConfig, int reason);
30 void onNanDown(int reason);
  /external/google-breakpad/src/processor/
minidump_processor.cc 665 // The reason value is OS-specific and possibly CPU-specific. Set up
666 // sensible numeric defaults for the reason string in case we can't
674 string reason = reason_string; local
678 return reason;
687 reason = "EXC_BAD_ACCESS / ";
690 reason.append("KERN_INVALID_ADDRESS");
693 reason.append("KERN_PROTECTION_FAILURE");
696 reason.append("KERN_NO_ACCESS");
699 reason.append("KERN_MEMORY_FAILURE");
702 reason.append("KERN_MEMORY_ERROR")
    [all...]
  /frameworks/base/services/core/java/com/android/server/pm/
PackageManagerServiceCompilerMapping.java 24 * Manage (retrieve) mappings from compilation reason to compilation filter.
40 private static String getSystemPropertyName(int reason) {
41 if (reason < 0 || reason >= REASON_STRINGS.length) {
42 throw new IllegalArgumentException("reason " + reason + " invalid");
45 return "pm.dexopt." + REASON_STRINGS[reason];
48 // Load the property for the given reason and check for validity. This will throw an
49 // exception in case the reason or value are invalid.
50 private static String getAndCheckValidity(int reason) {
    [all...]
  /external/proguard/src/proguard/shrink/
ShortestUsageMark.java 39 private final String reason; field in class:ShortestUsageMark
47 * @param reason the reason for this mark.
49 public ShortestUsageMark(String reason)
52 this.reason = reason;
60 * @param reason the reason for this mark.
64 String reason,
68 this(previousUsageMark, reason, cost, clazz, null)
    [all...]
  /external/c-ares/
windows_port.c 13 WINAPI DllMain (HINSTANCE hnd, DWORD reason, LPVOID reserved)
16 (void) reason;
  /frameworks/base/core/java/android/view/
IApplicationToken.aidl 26 boolean keyDispatchingTimedOut(String reason);
  /packages/apps/Camera2/src/com/android/camera/stats/profiler/
Profile.java 38 public void mark(String reason);
46 * Stop the profile for a given reason.
48 public void stop(String reason);
LoggingProfile.java 39 protected void onMark(double totalMillis, double lastMillis, String reason) {
40 mWriter.write(format(totalMillis, "MARK", lastMillis, reason));
49 protected void onStop(double totalMillis, double lastMillis, String reason) {
50 mWriter.write(format(totalMillis, "END", lastMillis, reason));
  /external/dhcpcd-6.8.2/
script-stub.c 45 script_runreason(const struct interface *ifp, const char *reason)
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_flush.h 40 const char *reason);
44 const char *reason );
54 const char *reason);
  /external/javassist/src/main/javassist/compiler/
CompileError.java 23 private String reason; field in class:CompileError
26 reason = s;
31 reason = s;
46 return reason;
50 return "compile error: " + reason;
  /system/connectivity/shill/wifi/
callback80211_metrics.cc 42 uint16_t reason) const {
44 if (reason == IEEE_80211::kReasonCodeReserved0 ||
45 reason == IEEE_80211::kReasonCodeReserved12 ||
46 (reason >= IEEE_80211::kReasonCodeReservedBegin25 &&
47 reason <= IEEE_80211::kReasonCodeReservedEnd31) ||
48 (reason >= IEEE_80211::kReasonCodeReservedBegin40 &&
49 reason <= IEEE_80211::kReasonCodeReservedEnd44) ||
50 reason >= IEEE_80211::kReasonCodeMax) {
51 SLOG(this, 1) << "Invalid reason code in disconnect message";
54 reason_enum = static_cast<IEEE_80211::WiFiReasonCode>(reason);
75 uint16_t reason = IEEE_80211::kReasonCodeUnspecified; local
    [all...]
  /external/icu/icu4c/source/tools/icuinfo/
testplug.c 34 #define DECLARE_PLUGIN(x) U_CAPI UPlugTokenReturn U_EXPORT2 x (UPlugData *data, UPlugReason reason, UErrorCode *status)
51 UPlugReason reason,
54 fprintf(stderr,"MyPlugin: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status));
56 if(reason==UPLUG_REASON_QUERY) {
68 UPlugReason reason,
70 fprintf(stderr,"MyPluginLow: data=%p, reason=%s, status=%s\n", (void*)data, udbg_enumName(UDBG_UPlugReason,(int32_t)reason), u_errorName(*status));
72 if(reason==UPLUG_REASON_QUERY) {
86 UPlugReason reason,
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpException.java 36 public HttpException(int status,String reason)
39 _reason=reason;
43 public HttpException(int status,String reason, Throwable rootCause)
46 _reason=reason;
52 * @return Returns the reason.
61 * @param reason The reason to set.
63 public void setReason(String reason)
65 _reason = reason;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ReasonParser.java 33 * Parser for Reason header.
46 * @param reason the header to parse
48 public ReasonParser(String reason) {
49 super(reason);
71 headerName(TokenTypes.REASON);
74 Reason reason = new Reason(); local
79 reason.setProtocol(value);
80 super.parse(reason);
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
FatalErrorHandlerImpl.java 44 Reason reason = Reason.MEDIA_STORAGE_FAILURE; local
45 boolean finishActivity = reason.doesFinishActivity();
46 CameraUtil.showError(mActivity, reason.getDialogMsgId(), reason.getFeedbackMsgId(),
60 Reason reason = Reason.CANNOT_CONNECT_TO_CAMERA; local
61 boolean finishActivity = reason.doesFinishActivity()
76 Reason reason = Reason.CANNOT_CONNECT_TO_CAMERA; local
92 Reason reason = Reason.CANNOT_CONNECT_TO_CAMERA; local
109 Reason reason = Reason.CAMERA_DISABLED_BY_SECURITY_POLICY; local
    [all...]
  /libcore/ojluni/src/main/java/java/sql/
BatchUpdateException.java 59 * <code>reason</code>, <code>SQLState</code>, <code>vendorCode</code> and
66 * @param reason a description of the error
80 public BatchUpdateException( String reason, String SQLState, int vendorCode,
82 super(reason, SQLState, vendorCode);
88 * <code>reason</code>, <code>SQLState</code> and
96 * @param reason a description of the exception
108 public BatchUpdateException(String reason, String SQLState,
110 this(reason, SQLState, 0, updateCounts);
115 * <code>reason</code> and <code>updateCounts</code>.
124 * @param reason a description of the exceptio
    [all...]
SQLClientInfoException.java 57 * The <code>reason</code>,
75 * The <code>reason</code> and <code>SQLState</code> are initialized
87 * the values contain one of the reason codes
101 * The <code>reason</code> is initialized to <code>null</code> if
111 * the values contain one of the reason codes
128 * given <code>reason</code> and <code>failedProperties</code>.
137 * @param reason a description of the exception
142 * the values contain one of the reason codes
147 public SQLClientInfoException(String reason,
150 super(reason);
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
exception.py 33 def __init__(self, reason):
35 self.reason = reason
38 return 'AbortException: %s' % self.reason
41 return 'AbortException: %s' % self.reason
53 def __init__(self, reason, informational=False):
57 reason: Text describing the problem.
58 informational: Indicates reason should be printed as FYI, not a failure.
61 self.reason = reason
    [all...]

Completed in 424 milliseconds

12 3 4 5 6 7 8 91011>>