OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mFailure
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/core/tests/coretests/src/android/os/
TestHandlerThread.java
27
private RuntimeException
mFailure
= null;
57
throw
mFailure
;
75
mFailure
= failure;
89
if (!mSuccess &&
mFailure
== null) {
90
mFailure
= new RuntimeException("no failure exception set");
/frameworks/base/core/java/com/android/internal/os/
TransferPipe.java
46
String
mFailure
;
141
while (
mFailure
== null && !mComplete) {
155
if (DEBUG) Slog.i(TAG, "Finished: " +
mFailure
);
156
if (
mFailure
!= null) {
157
throw new IOException(
mFailure
);
231
mFailure
= e.toString();
/cts/tests/tests/os/src/android/os/cts/
MessageQueueTest.java
236
private RuntimeException
mFailure
;
281
throw
mFailure
;
301
if (!mSuccess &&
mFailure
== null) {
302
mFailure
= new RuntimeException("no failure exception set");
319
mFailure
= failure;
MessengerTest.java
196
private RuntimeException
mFailure
= null;
271
throw
mFailure
;
289
mFailure
= failure;
310
if (!mSuccess &&
mFailure
== null) {
311
mFailure
= new RuntimeException("no failure exception set");
Completed in 236 milliseconds