diff options
author | Steve Block <steveblock@google.com> | 2012-01-09 18:35:44 +0000 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2012-01-19 14:45:08 -0800 |
commit | f68633da3ced654a9344b5c3b82f4d1c79b6bd09 (patch) | |
tree | a3ce92223f977611f6a1ab6710901a68fad8a968 /services/input | |
parent | c6aacce37191e1cc79cfeba13b39899f59c68c3b (diff) | |
download | frameworks_base-f68633da3ced654a9344b5c3b82f4d1c79b6bd09.zip frameworks_base-f68633da3ced654a9344b5c3b82f4d1c79b6bd09.tar.gz frameworks_base-f68633da3ced654a9344b5c3b82f4d1c79b6bd09.tar.bz2 |
Rename LOG_ASSERT to ALOG_ASSERT
Change-Id: Ie2c7ea6560656d65bad791a61996174c75677517
Diffstat (limited to 'services/input')
-rw-r--r-- | services/input/EventHub.cpp | 2 | ||||
-rw-r--r-- | services/input/InputDispatcher.cpp | 30 | ||||
-rw-r--r-- | services/input/InputReader.cpp | 30 |
3 files changed, 31 insertions, 31 deletions
diff --git a/services/input/EventHub.cpp b/services/input/EventHub.cpp index 6db750e..68bbb570 100644 --- a/services/input/EventHub.cpp +++ b/services/input/EventHub.cpp @@ -535,7 +535,7 @@ EventHub::Device* EventHub::getDeviceByPathLocked(const char* devicePath) const } size_t EventHub::getEvents(int timeoutMillis, RawEvent* buffer, size_t bufferSize) { - LOG_ASSERT(bufferSize >= 1); + ALOG_ASSERT(bufferSize >= 1); AutoMutex _l(mLock); diff --git a/services/input/InputDispatcher.cpp b/services/input/InputDispatcher.cpp index 46a5cc6..60fdd71 100644 --- a/services/input/InputDispatcher.cpp +++ b/services/input/InputDispatcher.cpp @@ -384,7 +384,7 @@ void InputDispatcher::dispatchOnceInnerLocked(nsecs_t* nextWakeupTime) { // Now we have an event to dispatch. // All events are eventually dequeued and processed this way, even if we intend to drop them. - LOG_ASSERT(mPendingEvent != NULL); + ALOG_ASSERT(mPendingEvent != NULL); bool done = false; DropReason dropReason = DROP_REASON_NOT_DROPPED; if (!(mPendingEvent->policyFlags & POLICY_FLAG_PASS_TO_USER)) { @@ -453,7 +453,7 @@ void InputDispatcher::dispatchOnceInnerLocked(nsecs_t* nextWakeupTime) { } default: - LOG_ASSERT(false); + ALOG_ASSERT(false); break; } @@ -590,7 +590,7 @@ void InputDispatcher::dropInboundEventLocked(EventEntry* entry, DropReason dropR reason = "inbound event was dropped because it is stale"; break; default: - LOG_ASSERT(false); + ALOG_ASSERT(false); return; } @@ -1025,7 +1025,7 @@ void InputDispatcher::dispatchEventToCurrentInputTargetsLocked(nsecs_t currentTi toString(resumeWithAppendedMotionSample)); #endif - LOG_ASSERT(eventEntry->dispatchInProgress); // should already have been set to true + ALOG_ASSERT(eventEntry->dispatchInProgress); // should already have been set to true pokeUserActivityLocked(eventEntry); @@ -1886,7 +1886,7 @@ void InputDispatcher::prepareDispatchCycleLocked(nsecs_t currentTime, // Make sure we are never called for streaming when splitting across multiple windows. bool isSplit = inputTarget->flags & InputTarget::FLAG_SPLIT; - LOG_ASSERT(! (resumeWithAppendedMotionSample && isSplit)); + ALOG_ASSERT(! (resumeWithAppendedMotionSample && isSplit)); // Skip this event if the connection status is not normal. // We don't want to enqueue additional outbound events if the connection is broken. @@ -1900,7 +1900,7 @@ void InputDispatcher::prepareDispatchCycleLocked(nsecs_t currentTime, // Split a motion event if needed. if (isSplit) { - LOG_ASSERT(eventEntry->type == EventEntry::TYPE_MOTION); + ALOG_ASSERT(eventEntry->type == EventEntry::TYPE_MOTION); MotionEntry* originalMotionEntry = static_cast<MotionEntry*>(eventEntry); if (inputTarget->pointerIds.count() != originalMotionEntry->pointerCount) { @@ -2143,11 +2143,11 @@ void InputDispatcher::startDispatchCycleLocked(nsecs_t currentTime, connection->getInputChannelName()); #endif - LOG_ASSERT(connection->status == Connection::STATUS_NORMAL); - LOG_ASSERT(! connection->outboundQueue.isEmpty()); + ALOG_ASSERT(connection->status == Connection::STATUS_NORMAL); + ALOG_ASSERT(! connection->outboundQueue.isEmpty()); DispatchEntry* dispatchEntry = connection->outboundQueue.head; - LOG_ASSERT(! dispatchEntry->inProgress); + ALOG_ASSERT(! dispatchEntry->inProgress); // Mark the dispatch entry as in progress. dispatchEntry->inProgress = true; @@ -2279,7 +2279,7 @@ void InputDispatcher::startDispatchCycleLocked(nsecs_t currentTime, } default: { - LOG_ASSERT(false); + ALOG_ASSERT(false); } } @@ -2526,7 +2526,7 @@ void InputDispatcher::synthesizeCancelationEventsForConnectionLocked( InputDispatcher::MotionEntry* InputDispatcher::splitMotionEvent(const MotionEntry* originalMotionEntry, BitSet32 pointerIds) { - LOG_ASSERT(pointerIds.value != 0); + ALOG_ASSERT(pointerIds.value != 0); uint32_t splitPointerIndexMap[MAX_POINTERS]; PointerProperties splitPointerProperties[MAX_POINTERS]; @@ -3944,7 +3944,7 @@ bool InputDispatcher::afterKeyEventLockedInterruptible(const sp<Connection>& con return true; // skip next cycle } - LOG_ASSERT(connection->outboundQueue.head == dispatchEntry); + ALOG_ASSERT(connection->outboundQueue.head == dispatchEntry); // Latch the fallback keycode for this key on an initial down. // The fallback keycode cannot change at any other point in the lifecycle. @@ -3957,7 +3957,7 @@ bool InputDispatcher::afterKeyEventLockedInterruptible(const sp<Connection>& con connection->inputState.setFallbackKey(originalKeyCode, fallbackKeyCode); } - LOG_ASSERT(fallbackKeyCode != -1); + ALOG_ASSERT(fallbackKeyCode != -1); // Cancel the fallback key if the policy decides not to send it anymore. // We will continue to dispatch the key to the policy but we will no @@ -4109,7 +4109,7 @@ void InputDispatcher::InjectionState::release() { if (refCount == 0) { delete this; } else { - LOG_ASSERT(refCount > 0); + ALOG_ASSERT(refCount > 0); } } @@ -4130,7 +4130,7 @@ void InputDispatcher::EventEntry::release() { if (refCount == 0) { delete this; } else { - LOG_ASSERT(refCount > 0); + ALOG_ASSERT(refCount > 0); } } diff --git a/services/input/InputReader.cpp b/services/input/InputReader.cpp index e8802f5..8324d95 100644 --- a/services/input/InputReader.cpp +++ b/services/input/InputReader.cpp @@ -331,7 +331,7 @@ void InputReader::processEventsLocked(const RawEvent* rawEvents, size_t count) { handleConfigurationChangedLocked(rawEvent->when); break; default: - LOG_ASSERT(false); // can't happen + ALOG_ASSERT(false); // can't happen break; } } @@ -2140,7 +2140,7 @@ void CursorInputMapper::dumpParameters(String8& dump) { dump.append(INDENT4 "Mode: navigation\n"); break; default: - LOG_ASSERT(false); + ALOG_ASSERT(false); } dump.appendFormat(INDENT4 "OrientationAware: %s\n", @@ -2597,7 +2597,7 @@ void TouchInputMapper::dumpParameters(String8& dump) { dump.append(INDENT4 "DeviceType: pointer\n"); break; default: - LOG_ASSERT(false); + ALOG_ASSERT(false); } dump.appendFormat(INDENT4 "AssociatedDisplay: id=%d, isExternal=%s\n", @@ -3179,7 +3179,7 @@ void TouchInputMapper::dumpCalibration(String8& dump) { dump.append(INDENT4 "touch.size.calibration: area\n"); break; default: - LOG_ASSERT(false); + ALOG_ASSERT(false); } if (mCalibration.haveSizeScale) { @@ -3209,7 +3209,7 @@ void TouchInputMapper::dumpCalibration(String8& dump) { dump.append(INDENT4 "touch.pressure.calibration: amplitude\n"); break; default: - LOG_ASSERT(false); + ALOG_ASSERT(false); } if (mCalibration.havePressureScale) { @@ -3229,7 +3229,7 @@ void TouchInputMapper::dumpCalibration(String8& dump) { dump.append(INDENT4 "touch.orientation.calibration: vector\n"); break; default: - LOG_ASSERT(false); + ALOG_ASSERT(false); } // Distance @@ -3241,7 +3241,7 @@ void TouchInputMapper::dumpCalibration(String8& dump) { dump.append(INDENT4 "touch.distance.calibration: scaled\n"); break; default: - LOG_ASSERT(false); + ALOG_ASSERT(false); } if (mCalibration.haveDistanceScale) { @@ -3635,7 +3635,7 @@ void TouchInputMapper::dispatchTouches(nsecs_t when, uint32_t policyFlags) { // Although applications receive new locations as part of individual pointer up // events, they do not generally handle them except when presented in a move event. if (moveNeeded) { - LOG_ASSERT(moveIdBits.value == dispatchedIdBits.value); + ALOG_ASSERT(moveIdBits.value == dispatchedIdBits.value); dispatchMotion(when, policyFlags, mSource, AMOTION_EVENT_ACTION_MOVE, 0, metaState, buttonState, 0, mCurrentCookedPointerData.pointerProperties, @@ -3746,7 +3746,7 @@ void TouchInputMapper::cookPointerData() { size = mRawPointerAxes.toolMinor.valid ? avg(in.toolMajor, in.toolMinor) : in.toolMajor; } else { - LOG_ASSERT(false, "No touch or tool axes. " + ALOG_ASSERT(false, "No touch or tool axes. " "Size calibration should have been resolved to NONE."); touchMajor = 0; touchMinor = 0; @@ -4465,7 +4465,7 @@ bool TouchInputMapper::preparePointerGestures(nsecs_t when, // The pointer follows the active touch point. // When in HOVER, emit HOVER_MOVE events at the pointer location. // When in TAP_DRAG, emit MOVE events at the pointer location. - LOG_ASSERT(activeTouchId >= 0); + ALOG_ASSERT(activeTouchId >= 0); mPointerGesture.currentGestureMode = PointerGesture::HOVER; if (mPointerGesture.lastGestureMode == PointerGesture::TAP) { @@ -4565,7 +4565,7 @@ bool TouchInputMapper::preparePointerGestures(nsecs_t when, // // When the two fingers move enough or when additional fingers are added, we make // a decision to transition into SWIPE or FREEFORM mode accordingly. - LOG_ASSERT(activeTouchId >= 0); + ALOG_ASSERT(activeTouchId >= 0); bool settled = when >= mPointerGesture.firstTouchTime + mConfig.pointerGestureMultitouchSettleInterval; @@ -4774,7 +4774,7 @@ bool TouchInputMapper::preparePointerGestures(nsecs_t when, "activeGestureId=%d, currentTouchPointerCount=%d", activeTouchId, mPointerGesture.activeGestureId, currentFingerCount); #endif - LOG_ASSERT(mPointerGesture.activeGestureId >= 0); + ALOG_ASSERT(mPointerGesture.activeGestureId >= 0); mPointerGesture.currentGestureIdBits.clear(); mPointerGesture.currentGestureIdBits.markBit(mPointerGesture.activeGestureId); @@ -4796,7 +4796,7 @@ bool TouchInputMapper::preparePointerGestures(nsecs_t when, "activeGestureId=%d, currentTouchPointerCount=%d", activeTouchId, mPointerGesture.activeGestureId, currentFingerCount); #endif - LOG_ASSERT(mPointerGesture.activeGestureId >= 0); + ALOG_ASSERT(mPointerGesture.activeGestureId >= 0); mPointerGesture.currentGestureIdBits.clear(); @@ -5164,7 +5164,7 @@ void TouchInputMapper::dispatchMotion(nsecs_t when, uint32_t policyFlags, uint32 pointerCount += 1; } - LOG_ASSERT(pointerCount != 0); + ALOG_ASSERT(pointerCount != 0); if (changedId >= 0 && pointerCount == 1) { // Replace initial down and final up action. @@ -5176,7 +5176,7 @@ void TouchInputMapper::dispatchMotion(nsecs_t when, uint32_t policyFlags, uint32 action = AMOTION_EVENT_ACTION_UP; } else { // Can't happen. - LOG_ASSERT(false); + ALOG_ASSERT(false); } } |