/external/google-breakpad/src/processor/ |
symbolic_constants_win.cc | 46 std::string reason; local 53 // | sed -r 's@(0xC[0-9A-F]+) ([A-Z_0-9]+)@ case MD_NTSTATUS_WIN_\2:\n reason = "\2";\n break;@' 63 reason = "STATUS_UNSUCCESSFUL"; 66 reason = "STATUS_NOT_IMPLEMENTED"; 69 reason = "STATUS_INVALID_INFO_CLASS"; 72 reason = "STATUS_INFO_LENGTH_MISMATCH"; 75 reason = "STATUS_ACCESS_VIOLATION"; 78 reason = "STATUS_IN_PAGE_ERROR"; 81 reason = "STATUS_PAGEFILE_QUOTA"; 84 reason = "STATUS_INVALID_HANDLE" [all...] |
/external/iw/ |
reason.c | 29 [32] = "Disassociated for unspecified QoS-related reason", 45 const char *get_reason_str(uint16_t reason) 47 if (reason < ARRAY_SIZE(reason_table) && reason_table[reason]) 48 return reason_table[reason];
|
/frameworks/base/core/java/android/os/ |
ParcelFormatException.java | 28 public ParcelFormatException(String reason) { 29 super(reason);
|
/libcore/ojluni/src/main/java/java/io/ |
InvalidObjectException.java | 30 * tests. The argument should provide the reason for the failure. 44 * @param reason Detailed message explaining the reason for the failure. 48 public InvalidObjectException(String reason) { 49 super(reason);
|
FileNotFoundException.java | 36 * constructors if the file does exist but for some reason is inaccessible, for 69 * consisting of the given pathname string followed by the given reason 70 * string. If the <code>reason</code> argument is <code>null</code> then 76 private FileNotFoundException(String path, String reason) { 77 super(path + ((reason == null) 79 : " (" + reason + ")"));
|
NotActiveException.java | 39 * Constructor to create a new NotActiveException with the reason given. 41 * @param reason a String describing the reason for the exception. 43 public NotActiveException(String reason) { 44 super(reason); 48 * Constructor to create a new NotActiveException without a reason.
|
StreamCorruptedException.java | 40 * Create a StreamCorruptedException and list a reason why thrown. 42 * @param reason String describing the reason for the exception. 44 public StreamCorruptedException(String reason) { 45 super(reason); 49 * Create a StreamCorruptedException and list no reason why thrown.
|
/frameworks/base/services/core/java/com/android/server/pm/ |
PackageManagerServiceCompilerMapping.java | 24 * Manage (retrieve) mappings from compilation reason to compilation filter. 44 private static String getSystemPropertyName(int reason) { 45 if (reason < 0 || reason >= REASON_STRINGS.length) { 46 throw new IllegalArgumentException("reason " + reason + " invalid"); 49 return "pm.dexopt." + REASON_STRINGS[reason]; 52 // Load the property for the given reason and check for validity. This will throw an 53 // exception in case the reason or value are invalid. 54 private static String getAndCheckValidity(int reason) { [all...] |
/external/v8/src/ |
bailout-reason.cc | 5 #include "src/bailout-reason.h" 11 const char* GetBailoutReason(BailoutReason reason) { 12 DCHECK(reason < kLastErrorMessage); 17 return error_messages_[reason];
|
/libcore/ojluni/src/main/java/java/sql/ |
SQLDataException.java | 42 * The <code>reason</code>, <code>SQLState</code> are initialized 58 * <code>reason</code>. 67 * @param reason a description of the exception 70 public SQLDataException(String reason) { 71 super(reason); 76 * <code>reason</code> and <code>SQLState</code>. The 83 * @param reason a description of the exception 87 public SQLDataException(String reason, String SQLState) { 88 super(reason, SQLState); 93 * <code>reason</code>, <code>SQLState</code> an [all...] |
SQLFeatureNotSupportedException.java | 47 * The <code>reason</code>, <code>SQLState</code> are initialized 62 * with a given <code>reason</code>. The <code>SQLState</code> 70 * @param reason a description of the exception 73 public SQLFeatureNotSupportedException(String reason) { 74 super(reason); 79 * with a given <code>reason</code> and <code>SQLState</code>. 86 * @param reason a description of the exception 90 public SQLFeatureNotSupportedException(String reason, String SQLState) { 91 super(reason,SQLState); 96 * with a given <code>reason</code>, <code>SQLState</code> an [all...] |
SQLIntegrityConstraintViolationException.java | 42 * The <code>reason</code>, <code>SQLState</code> are initialized 57 * with a given <code>reason</code>. The <code>SQLState</code> 65 * @param reason a description of the exception 68 public SQLIntegrityConstraintViolationException(String reason) { 69 super(reason); 74 * object with a given <code>reason</code> and <code>SQLState</code>. 81 * @param reason a description of the exception 85 public SQLIntegrityConstraintViolationException(String reason, String SQLState) { 86 super(reason,SQLState); 91 * with a given <code>reason</code>, <code>SQLState</code> an [all...] |
SQLInvalidAuthorizationSpecException.java | 42 * The <code>reason</code>, <code>SQLState</code> are initialized 57 * with a given <code>reason</code>. The <code>SQLState</code> 65 * @param reason a description of the exception 68 public SQLInvalidAuthorizationSpecException(String reason) { 69 super(reason); 74 * with a given <code>reason</code> and <code>SQLState</code>. 81 * @param reason a description of the exception 85 public SQLInvalidAuthorizationSpecException(String reason, String SQLState) { 86 super(reason,SQLState); 91 * with a given <code>reason</code>, <code>SQLState</code> an [all...] |
SQLNonTransientConnectionException.java | 42 * The <code>reason</code>, <code>SQLState</code> are initialized 58 * with a given <code>reason</code>. The <code>SQLState</code> 66 * @param reason a description of the exception 69 public SQLNonTransientConnectionException(String reason) { 70 super(reason); 75 * with a given <code>reason</code> and <code>SQLState</code>. 82 * @param reason a description of the exception 86 public SQLNonTransientConnectionException(String reason, String SQLState) { 87 super(reason,SQLState); 92 * with a given <code>reason</code>, <code>SQLState</code> an [all...] |
SQLNonTransientException.java | 40 * The <code>reason</code>, <code>SQLState</code> are initialized 56 * with a given <code>reason</code>. The <code>SQLState</code> 65 * @param reason a description of the exception 68 public SQLNonTransientException(String reason) { 69 super(reason); 74 * with a given <code>reason</code> and <code>SQLState</code>. 81 * @param reason a description of the exception 85 public SQLNonTransientException(String reason, String SQLState) { 86 super(reason,SQLState); 91 * with a given <code>reason</code>, <code>SQLState</code> an [all...] |
SQLRecoverableException.java | 43 * The <code>reason</code>, <code>SQLState</code> are initialized 58 * with a given <code>reason</code>. The <code>SQLState</code> 66 * @param reason a description of the exception 69 public SQLRecoverableException(String reason) { 70 super(reason); 75 * with a given <code>reason</code> and <code>SQLState</code>. 82 * @param reason a description of the exception 86 public SQLRecoverableException(String reason, String SQLState) { 87 super(reason, SQLState); 92 * with a given <code>reason</code>, <code>SQLState</code> an [all...] |
SQLSyntaxErrorException.java | 41 * The <code>reason</code>, <code>SQLState</code> are initialized 56 * with a given <code>reason</code>. The <code>SQLState</code> 64 * @param reason a description of the exception 67 public SQLSyntaxErrorException(String reason) { 68 super(reason); 73 * with a given <code>reason</code> and <code>SQLState</code>. 80 * @param reason a description of the exception 84 public SQLSyntaxErrorException(String reason, String SQLState) { 85 super(reason, SQLState); 90 * with a given <code>reason</code>, <code>SQLState</code> an [all...] |
SQLTimeoutException.java | 39 * The <code>reason</code>, <code>SQLState</code> are initialized 54 * with a given <code>reason</code>. The <code>SQLState</code> 62 * @param reason a description of the exception 65 public SQLTimeoutException(String reason) { 66 super(reason); 71 * with a given <code>reason</code> and <code>SQLState</code>. 78 * @param reason a description of the exception 82 public SQLTimeoutException(String reason, String SQLState) { 83 super(reason, SQLState); 88 * with a given <code>reason</code>, <code>SQLState</code> an [all...] |
SQLTransactionRollbackException.java | 41 * The <code>reason</code>, <code>SQLState</code> are initialized 56 * with a given <code>reason</code>. The <code>SQLState</code> 64 * @param reason a description of the exception 67 public SQLTransactionRollbackException(String reason) { 68 super(reason); 73 * with a given <code>reason</code> and <code>SQLState</code>. 80 * @param reason a description of the exception 84 public SQLTransactionRollbackException(String reason, String SQLState) { 85 super(reason, SQLState); 90 * with a given <code>reason</code>, <code>SQLState</code> an [all...] |
SQLTransientConnectionException.java | 42 * The <code>reason</code>, <code>SQLState</code> are initialized 57 * with a given <code>reason</code>. The <code>SQLState</code> 65 * @param reason a description of the exception 68 public SQLTransientConnectionException(String reason) { 69 super(reason); 74 * with a given <code>reason</code> and <code>SQLState</code>. 81 * @param reason a description of the exception 85 public SQLTransientConnectionException(String reason, String SQLState) { 86 super(reason,SQLState); 91 * with a given <code>reason</code>, <code>SQLState</code> an [all...] |
SQLTransientException.java | 40 * The <code>reason</code>, <code>SQLState</code> are initialized 55 * with a given <code>reason</code>. The <code>SQLState</code> 63 * @param reason a description of the exception 66 public SQLTransientException(String reason) { 67 super(reason); 72 * with a given <code>reason</code> and <code>SQLState</code>. 79 * @param reason a description of the exception 83 public SQLTransientException(String reason, String SQLState) { 84 super(reason,SQLState); 89 * with a given <code>reason</code>, <code>SQLState</code> an [all...] |
SQLWarning.java | 49 * with a given <code>reason</code>, <code>SQLState</code> and 56 * @param reason a description of the warning 60 public SQLWarning(String reason, String SQLState, int vendorCode) { 61 super(reason, SQLState, vendorCode); 62 DriverManager.println("SQLWarning: reason(" + reason + 70 * with a given <code>reason</code> and <code>SQLState</code>. 77 * @param reason a description of the warning 80 public SQLWarning(String reason, String SQLState) { 81 super(reason, SQLState) [all...] |
/tools/tradefederation/core/src/com/android/tradefed/build/ |
BuildRetrievalError.java | 29 * @param reason a error message describing the cause of the error 31 public BuildRetrievalError(String reason) { 32 super(reason); 39 * @param reason a detailed error message. 42 public BuildRetrievalError(String reason, Throwable cause) { 43 super(reason, cause); 50 * @param reason a detailed error message. 54 public BuildRetrievalError(String reason, Throwable cause, IBuildInfo build) { 55 super(reason, cause);
|
/external/volley/src/main/java/com/android/volley/ |
NoConnectionError.java | 28 public NoConnectionError(Throwable reason) { 29 super(reason);
|
/libcore/ojluni/src/main/java/java/lang/reflect/ |
MalformedParametersException.java | 60 * reason. 67 * @param reason The reason for the exception. 69 public MalformedParametersException(String reason) { 70 super(reason);
|