Home | History | Annotate | Download | only in inputflinger

Lines Matching defs:result

54     status_t result = mDispatcherThread->run("InputDispatcher", PRIORITY_URGENT_DISPLAY);
55 if (result) {
56 ALOGE("Could not start InputDispatcher thread due to error %d.", result);
57 return result;
60 result = mReaderThread->run("InputReader", PRIORITY_URGENT_DISPLAY);
61 if (result) {
62 ALOGE("Could not start InputReader thread due to error %d.", result);
65 return result;
72 status_t result = mReaderThread->requestExitAndWait();
73 if (result) {
74 ALOGW("Could not stop InputReader thread due to error %d.", result);
77 result = mDispatcherThread->requestExitAndWait();
78 if (result) {
79 ALOGW("Could not stop InputDispatcher thread due to error %d.", result);