/frameworks/base/cmds/statsd/benchmark/ |
stats_write_benchmark.cpp | 24 const char* reason = "test"; local 31 android::util::BOOT_SEQUENCE_REPORTED, reason, reason,
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
MalformedParametersExceptionTest.java | 36 String reason = "message"; local 37 Exception e = new MalformedParametersException(reason); 38 assertEquals(reason, e.getMessage());
|
/libcore/luni/src/test/java/libcore/java/nio/file/ |
InvalidPathExceptionTest.java | 26 String reason = "reason"; local 30 InvalidPathException exception = new InvalidPathException(input, reason, index); 32 assertEquals(reason, exception.getReason()); 37 exception = new InvalidPathException(input, reason, index); 39 assertEquals(reason, exception.getReason()); 45 new InvalidPathException(input, reason, index); 49 // Test the case where input is null, reason is not null and index >= -1. 52 new InvalidPathException(null, reason, index); 56 // Test the case where input is null, reason is not null and index < -1 79 String reason = "reason"; 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...] |
/system/bt/packet/avrcp/ |
avrcp_reject_packet.h | 29 Status reason); 38 RejectBuilder(CommandPdu pdu, Status reason) 40 reason_(reason){};
|
general_reject_packet.h | 29 Status reason); 38 GeneralRejectBuilder(BrowsePdu pdu, Status reason) 39 : BrowsePacketBuilder(pdu), reason_(reason){};
|
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/ |
MatcherAssert.java | 9 public static <T> void assertThat(String reason, T actual, Matcher<? super T> matcher) { 12 description.appendText(reason) 22 public static void assertThat(String reason, boolean assertion) { 24 throw new AssertionError(reason);
|
/external/libmojo/mojo/public/cpp/bindings/ |
pipe_control_message_handler_delegate.h | 21 const base::Optional<DisconnectReason>& reason) = 0;
|
pipe_control_message_proxy.h | 30 const base::Optional<DisconnectReason>& reason); 34 const base::Optional<DisconnectReason>& reason);
|
/frameworks/base/core/java/android/app/backup/ |
SelectBackupTransportCallback.java | 41 * @param reason Error code denoting reason for failure. 43 public void onFailure(int reason){}
|
/packages/apps/Camera2/src/com/android/camera/stats/profiler/ |
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));
|
/system/chre/apps/chqts/src/shared/ |
abort.h | 64 * This will invoke chreAbort() with the code (0x10000 + uint16_t(reason)), 68 * @param reason Optional. The appropriate AbortBlame. Defaults to kChre. 71 void abort(AbortBlame reason = AbortBlame::kChre);
|
/frameworks/base/core/java/android/companion/ |
IFindDeviceCallback.aidl | 24 void onFailure(in CharSequence reason);
|
/frameworks/base/core/java/android/hardware/biometrics/ |
IBiometricPromptReceiver.aidl | 26 void onDialogDismissed(int reason);
|
/frameworks/base/core/java/android/hardware/hdmi/ |
IHdmiVendorCommandListener.aidl | 27 void onControlStateChanged(boolean enabled, int reason);
|
/frameworks/base/telephony/java/android/telephony/ims/aidl/ |
IImsCapabilityCallback.aidl | 25 void onChangeCapabilityConfigurationError(int capability, int radioTech, int reason);
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
SelfRecovery.java | 37 * Reason codes for the various recovery triggers. 64 * 1. Checks reason code used to trigger recovery 70 * @param reason One of the above |REASON_*| codes. 72 public void trigger(int reason) { 73 if (!(reason == REASON_LAST_RESORT_WATCHDOG || reason == REASON_WIFINATIVE_FAILURE 74 || reason == REASON_STA_IFACE_DOWN)) { 75 Log.e(TAG, "Invalid trigger reason. Ignoring..."); 78 if (reason == REASON_STA_IFACE_DOWN) { 84 Log.e(TAG, "Triggering recovery for reason: " + REASON_STRINGS[reason]) [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
CallForwardInfo.java | 30 public int reason; /* from TS 27.007 7.11 "reason" */ field in class:CallForwardInfo 39 + ", reason= " + reason
|
/libcore/ojluni/src/main/java/java/nio/file/ |
AccessDeniedException.java | 62 * @param reason 63 * a reason message with additional information or {@code null} 65 public AccessDeniedException(String file, String other, String reason) { 66 super(file, other, reason);
|
FileAlreadyExistsException.java | 57 * @param reason 58 * a reason message with additional information or {@code null} 60 public FileAlreadyExistsException(String file, String other, String reason) { 61 super(file, other, reason);
|
NoSuchFileException.java | 57 * @param reason 58 * a reason message with additional information or {@code null} 60 public NoSuchFileException(String file, String other, String reason) { 61 super(file, other, reason);
|
NotLinkException.java | 57 * @param reason 58 * a reason message with additional information or {@code null} 60 public NotLinkException(String file, String other, String reason) { 61 super(file, other, reason);
|
/libcore/ojluni/src/main/java/javax/net/ssl/ |
SSLException.java | 48 * @param reason describes the problem. 50 public SSLException(String reason) 52 super(reason);
|
/platform_testing/libraries/longevity/src/android/longevity/platform/listener/ |
ErrorTerminator.java | 34 protected void print(String reason) { 35 Log.e(getClass().getSimpleName(), reason); local
|