/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | Matrix_Delegate.java | 197 Matrix_Delegate d = sManager.getDelegate(native_object); in native_isIdentity() local 198 if (d == null) { in native_isIdentity() 202 return d.isIdentity(); in native_isIdentity() 207 Matrix_Delegate d = sManager.getDelegate(native_object); in native_isAffine() local 208 if (d == null) { in native_isAffine() 212 return (d.computeTypeMask() & kPerspective_Mask) == 0; in native_isAffine() 217 Matrix_Delegate d = sManager.getDelegate(native_object); in native_rectStaysRect() local 218 if (d == null) { in native_rectStaysRect() 222 return (d.computeTypeMask() & kRectStaysRect_Mask) != 0; in native_rectStaysRect() 227 Matrix_Delegate d = sManager.getDelegate(native_object); in native_reset() local [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
D | ImageDescriptor.java | 57 ImageDescriptor d = new ImageDescriptor(); in parse() local 59 d.mWidth = rawData[valueIndex++] & 0xff; in parse() 60 d.mHeight = rawData[valueIndex++] & 0xff; in parse() 61 d.mCodingScheme = rawData[valueIndex++] & 0xff; in parse() 64 d.mImageId = (rawData[valueIndex++] & 0xff) << 8; in parse() 65 d.mImageId |= rawData[valueIndex++] & 0xff; in parse() 67 d.mHighOffset = (rawData[valueIndex++] & 0xff); // high byte offset in parse() 68 d.mLowOffset = rawData[valueIndex++] & 0xff; // low byte offset in parse() 70 d.mLength = ((rawData[valueIndex++] & 0xff) << 8 | (rawData[valueIndex++] & 0xff)); in parse() 71 CatLog.d("ImageDescriptor", "parse; Descriptor : " + d.mWidth + ", " + d.mHeight + in parse() [all …]
|
/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
D | findhalfpel.cpp | 59 int d, dmin, satd_min; in AVCFindHalfPelMB() local 94 d = SATD_MB(hpel_cand[h], cur, dmin); in AVCFindHalfPelMB() 96 d += mvcost; in AVCFindHalfPelMB() 98 if (d < dmin) in AVCFindHalfPelMB() 100 dmin = d; in AVCFindHalfPelMB() 102 satd_min = d - mvcost; in AVCFindHalfPelMB() 118 d = SATD_MB(encvid->qpel_cand[q], cur, dmin); in AVCFindHalfPelMB() 120 d += mvcost; in AVCFindHalfPelMB() 121 if (d < dmin) in AVCFindHalfPelMB() 123 dmin = d; in AVCFindHalfPelMB() [all …]
|
/frameworks/base/tests/CoreTests/android/core/ |
D | RequestAPITest.java | 54 Log.d(LOGTAG, "Base setup context = " + mContext); in setUp() 63 Log.d(LOGTAG, "Base tearDown"); in tearDown() 65 Log.d(LOGTAG, "Base teardown done"); in tearDown() 89 Log.d(LOGTAG, "testRequestAddNullHeader start "); in testRequestAddNullHeader() 93 Log.d(LOGTAG, "testRequestAddNullHeader - returning"); in testRequestAddNullHeader() 101 Log.d(LOGTAG, "testRequestAddNullValue start "); in testRequestAddNullValue() 105 Log.d(LOGTAG, "testRequestAddNullValue - returning"); in testRequestAddNullValue() 113 Log.d(LOGTAG, "testRequestAddEmptyValue start "); in testRequestAddEmptyValue() 117 Log.d(LOGTAG, "testRequestAddEmptyValue - returning"); in testRequestAddEmptyValue() 133 Log.d(LOGTAG, "testRequestAddHeader start "); in testRequestAddHeader() [all …]
|
/frameworks/base/core/jni/android/graphics/ |
D | AvoidXfermode.cpp | 93 int d = color_dist32(dst[i], opR, opG, opB); in xfer32() local 95 d = MAX + (d ^ mask) - mask; in xfer32() 96 SkASSERT((unsigned)d <= 255); in xfer32() 97 d = Accurate255To256(d); in xfer32() 99 d = scale_dist_14(d, mul, sub); in xfer32() 100 SkASSERT(d <= 256); in xfer32() 102 if (d > 0) { in xfer32() 104 d = SkAlphaMul(d, Accurate255To256(*aa++)); in xfer32() 105 if (0 == d) { in xfer32() 109 dst[i] = SkFourByteInterp256(src[i], dst[i], d); in xfer32() [all …]
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/ |
D | DurableUtils.java | 32 public static <D extends Durable> byte[] writeToArray(D d) throws IOException { in writeToArray() argument 34 d.write(new DataOutputStream(out)); in writeToArray() 38 public static <D extends Durable> D readFromArray(byte[] data, D d) throws IOException { in readFromArray() argument 41 d.reset(); in readFromArray() 43 d.read(new DataInputStream(in)); in readFromArray() 45 d.reset(); in readFromArray() 48 return d; in readFromArray() 51 public static <D extends Durable> byte[] writeToArrayOrNull(D d) { in writeToArrayOrNull() argument 53 return writeToArray(d); in writeToArrayOrNull() 60 public static <D extends Durable> D readFromArrayOrNull(byte[] data, D d) { in readFromArrayOrNull() argument [all …]
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
D | WifiP2pDeviceList.java | 45 for (WifiP2pDevice d : source.getDeviceList()) { in WifiP2pDeviceList() 46 mDevices.put(d.deviceAddress, new WifiP2pDevice(d)); in WifiP2pDeviceList() 94 WifiP2pDevice d = mDevices.get(device.deviceAddress); in updateSupplicantDetails() local 95 if (d != null) { in updateSupplicantDetails() 96 d.deviceName = device.deviceName; in updateSupplicantDetails() 97 d.primaryDeviceType = device.primaryDeviceType; in updateSupplicantDetails() 98 d.secondaryDeviceType = device.secondaryDeviceType; in updateSupplicantDetails() 99 d.wpsConfigMethodsSupported = device.wpsConfigMethodsSupported; in updateSupplicantDetails() 100 d.deviceCapability = device.deviceCapability; in updateSupplicantDetails() 101 d.groupCapability = device.groupCapability; in updateSupplicantDetails() [all …]
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
D | Allocation.java | 84 private Element.DataType validateObjectIsPrimitiveArray(Object d, boolean checkType) { in validateObjectIsPrimitiveArray() argument 85 final Class c = d.getClass(); in validateObjectIsPrimitiveArray() 489 public void copyFrom(BaseObj[] d) { in copyFrom() argument 492 if (d.length != mCurrentCount) { in copyFrom() 494 mCurrentCount + ", array length = " + d.length); in copyFrom() 498 long i[] = new long[d.length * 4]; in copyFrom() 499 for (int ct=0; ct < d.length; ct++) { in copyFrom() 500 i[ct * 4] = d[ct].getID(mRS); in copyFrom() 504 int i[] = new int[d.length]; in copyFrom() 505 for (int ct=0; ct < d.length; ct++) { in copyFrom() [all …]
|
/frameworks/base/media/tests/SoundPoolTest/src/com/android/ |
D | SoundPoolTest.java | 84 if (DEBUG) Log.d(LOG_TAG, "Sample " + sampleId + " load status = " + status); in onLoadComplete() 131 if (DEBUG) Log.d(LOG_TAG, "Begin sounds test"); in TestSounds() 136 if (DEBUG) Log.d(LOG_TAG, "Start note " + id); in TestSounds() 143 if (DEBUG) Log.d(LOG_TAG, "Stop note " + id); in TestSounds() 146 if (DEBUG) Log.d(LOG_TAG, "End sounds test"); in TestSounds() 151 if (DEBUG) Log.d(LOG_TAG, "Begin scale test"); in TestScales() 158 if (DEBUG) Log.d(LOG_TAG, "Start note " + id); in TestScales() 165 if (DEBUG) Log.d(LOG_TAG, "Stop note " + id); in TestScales() 168 if (DEBUG) Log.d(LOG_TAG, "End scale test"); in TestScales() 173 if (DEBUG) Log.d(LOG_TAG, "Begin rate test"); in TestRates() [all …]
|
/frameworks/base/wifi/java/android/net/wifi/passpoint/ |
D | WifiPasspointPolicy.java | 147 Log.d(TAG, "create bssid:" + mBssid); in createWifiConfiguration() 152 Log.d(TAG, "create ssid:" + mSsid); in createWifiConfiguration() 184 Log.d(TAG, "class chosen " + enterpriseFieldClass.getName() ); in createWifiConfiguration() 197 Log.d(TAG, "field " + anonymousId.getName() ); in createWifiConfiguration() 202 Log.d(TAG, "field " + clientCert.getName() ); in createWifiConfiguration() 205 Log.d(TAG, "field " + eap.getName() ); in createWifiConfiguration() 208 Log.d(TAG, "field " + identity.getName() ); in createWifiConfiguration() 211 Log.d(TAG, "field " + password.getName() ); in createWifiConfiguration() 214 Log.d(TAG, "field " + phase2.getName() ); in createWifiConfiguration() 226 Log.d(TAG, "method " + m.getName() ); in createWifiConfiguration() [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/ |
D | armCOMM.h | 573 #define DEBUG_PRINTF_3(a, b, c, d) fprintf(DEBUG_STREAM, a, b,… argument 574 #define DEBUG_PRINTF_4(a, b, c, d, e) fprintf(DEBUG_STREAM, a, b,… argument 575 #define DEBUG_PRINTF_5(a, b, c, d, e, f) fprintf(DEBUG_STREAM, a, b,… argument 576 #define DEBUG_PRINTF_6(a, b, c, d, e, f, g) fprintf(DEBUG_STREAM, a, b,… argument 577 #define DEBUG_PRINTF_7(a, b, c, d, e, f, g, h) fprintf(DEBUG_STREAM, a, b,… argument 578 #define DEBUG_PRINTF_8(a, b, c, d, e, f, g, h, i) fprintf(DEBUG_STREAM, a, b,… argument 579 #define DEBUG_PRINTF_9(a, b, c, d, e, f, g, h, i, j) fprintf(DEBUG_STREAM, a, b,… argument 580 #define DEBUG_PRINTF_10(a, b, c, d, e, f, g, h, i, j, k) fprintf(DEBUG_STREAM, a, b,… argument 581 #define DEBUG_PRINTF_11(a, b, c, d, e, f, g, h, i, j, k, l) fprintf(DEBUG_STREAM, a, b,… argument 582 #define DEBUG_PRINTF_12(a, b, c, d, e, f, g, h, i, j, k, l, m) fprintf(DEBUG_STREAM, a, b,… argument [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/ |
D | armCOMM.h | 573 #define DEBUG_PRINTF_3(a, b, c, d) fprintf(DEBUG_STREAM, a, b,… argument 574 #define DEBUG_PRINTF_4(a, b, c, d, e) fprintf(DEBUG_STREAM, a, b,… argument 575 #define DEBUG_PRINTF_5(a, b, c, d, e, f) fprintf(DEBUG_STREAM, a, b,… argument 576 #define DEBUG_PRINTF_6(a, b, c, d, e, f, g) fprintf(DEBUG_STREAM, a, b,… argument 577 #define DEBUG_PRINTF_7(a, b, c, d, e, f, g, h) fprintf(DEBUG_STREAM, a, b,… argument 578 #define DEBUG_PRINTF_8(a, b, c, d, e, f, g, h, i) fprintf(DEBUG_STREAM, a, b,… argument 579 #define DEBUG_PRINTF_9(a, b, c, d, e, f, g, h, i, j) fprintf(DEBUG_STREAM, a, b,… argument 580 #define DEBUG_PRINTF_10(a, b, c, d, e, f, g, h, i, j, k) fprintf(DEBUG_STREAM, a, b,… argument 581 #define DEBUG_PRINTF_11(a, b, c, d, e, f, g, h, i, j, k, l) fprintf(DEBUG_STREAM, a, b,… argument 582 #define DEBUG_PRINTF_12(a, b, c, d, e, f, g, h, i, j, k, l, m) fprintf(DEBUG_STREAM, a, b,… argument [all …]
|
D | armCOMM_s.h | 943 LIBI4 $comli, $combi, $a, $b, $c, $d, $cc 945 $combi.$cc $a, $b, $c, $d 947 $comli.$cc $a, $b, $c, $d 963 SMLA00 $a, $b, $c, $d, $cc 964 LIBI4 SMLABB, SMLATT, $a, $b, $c, $d, $cc 968 SMLA01 $a, $b, $c, $d, $cc 969 LIBI4 SMLABT, SMLATB, $a, $b, $c, $d, $cc 973 SMLA0B $a, $b, $c, $d, $cc 974 LIBI4 SMLABB, SMLATB, $a, $b, $c, $d, $cc 978 SMLA0T $a, $b, $c, $d, $cc [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/ |
D | armCOMM.h | 573 #define DEBUG_PRINTF_3(a, b, c, d) fprintf(DEBUG_STREAM, a, b,… argument 574 #define DEBUG_PRINTF_4(a, b, c, d, e) fprintf(DEBUG_STREAM, a, b,… argument 575 #define DEBUG_PRINTF_5(a, b, c, d, e, f) fprintf(DEBUG_STREAM, a, b,… argument 576 #define DEBUG_PRINTF_6(a, b, c, d, e, f, g) fprintf(DEBUG_STREAM, a, b,… argument 577 #define DEBUG_PRINTF_7(a, b, c, d, e, f, g, h) fprintf(DEBUG_STREAM, a, b,… argument 578 #define DEBUG_PRINTF_8(a, b, c, d, e, f, g, h, i) fprintf(DEBUG_STREAM, a, b,… argument 579 #define DEBUG_PRINTF_9(a, b, c, d, e, f, g, h, i, j) fprintf(DEBUG_STREAM, a, b,… argument 580 #define DEBUG_PRINTF_10(a, b, c, d, e, f, g, h, i, j, k) fprintf(DEBUG_STREAM, a, b,… argument 581 #define DEBUG_PRINTF_11(a, b, c, d, e, f, g, h, i, j, k, l) fprintf(DEBUG_STREAM, a, b,… argument 582 #define DEBUG_PRINTF_12(a, b, c, d, e, f, g, h, i, j, k, l, m) fprintf(DEBUG_STREAM, a, b,… argument [all …]
|
D | armCOMM_s.h | 940 LIBI4 $comli, $combi, $a, $b, $c, $d, $cc 942 $combi.$cc $a, $b, $c, $d 944 $comli.$cc $a, $b, $c, $d 960 SMLA00 $a, $b, $c, $d, $cc 961 LIBI4 SMLABB, SMLATT, $a, $b, $c, $d, $cc 965 SMLA01 $a, $b, $c, $d, $cc 966 LIBI4 SMLABT, SMLATB, $a, $b, $c, $d, $cc 970 SMLA0B $a, $b, $c, $d, $cc 971 LIBI4 SMLABB, SMLATB, $a, $b, $c, $d, $cc 975 SMLA0T $a, $b, $c, $d, $cc [all …]
|
/frameworks/base/rs/java/android/renderscript/ |
D | Allocation.java | 82 private Element.DataType validateObjectIsPrimitiveArray(Object d, boolean checkType) { in validateObjectIsPrimitiveArray() argument 83 final Class c = d.getClass(); in validateObjectIsPrimitiveArray() 531 public void copyFrom(BaseObj[] d) { in copyFrom() argument 536 if (d.length != mCurrentCount) { in copyFrom() 538 … mCurrentCount + ", array length = " + d.length); in copyFrom() 542 long i[] = new long[d.length * 4]; in copyFrom() 543 for (int ct=0; ct < d.length; ct++) { in copyFrom() 544 i[ct * 4] = d[ct].getID(mRS); in copyFrom() 548 int i[] = new int[d.length]; in copyFrom() 549 for (int ct=0; ct < d.length; ct++) { in copyFrom() [all …]
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | QuickRejectActivity.java | 56 Log.d("OpenGLRenderer", "count=" + count); in onDraw() 58 Log.d("OpenGLRenderer", "count after save=" + count); in onDraw() 60 Log.d("OpenGLRenderer", "getSaveCount after save=" + count); in onDraw() 63 Log.d("OpenGLRenderer", "count after restore=" + count); in onDraw() 65 Log.d("OpenGLRenderer", "count after save=" + canvas.getSaveCount()); in onDraw() 67 Log.d("OpenGLRenderer", "count after save=" + canvas.getSaveCount()); in onDraw() 69 Log.d("OpenGLRenderer", "count after save=" + canvas.getSaveCount()); in onDraw() 72 Log.d("OpenGLRenderer", "count after restoreToCount=" + count); in onDraw() 74 Log.d("OpenGLRenderer", "count after saveLayer=" + count); in onDraw() 76 Log.d("OpenGLRenderer", "getSaveCount after saveLayer=" + count); in onDraw() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | HbpcdUtils.java | 58 Log.d(LOG_TAG, "Query unresolved arbitrary table, entries are " + c2Counter); in getMcc() 62 Log.d(LOG_TAG, "Query Unresolved arbitrary returned the cursor " + c2 ); in getMcc() 67 Log.d(LOG_TAG, "MCC found in arbitrary_mcc_sid_match: " + tmpMcc); in getMcc() 91 if (DBG) Log.d(LOG_TAG, "Query conflict sid returned the cursor " + c3 ); in getMcc() 94 if (DBG) Log.d(LOG_TAG, in getMcc() 101 if (DBG) Log.d(LOG_TAG, "time zone is not accurate, mcc may be " in getMcc() 116 if (DBG) Log.d(LOG_TAG, "Query Range returned the cursor " + c5 ); in getMcc() 119 if (DBG) Log.d(LOG_TAG, "SID found in mcc_sid_range. Return tmpMcc = " + tmpMcc); in getMcc() 125 if (DBG) Log.d(LOG_TAG, "SID NOT found in mcc_sid_range."); in getMcc() 127 if (DBG) Log.d(LOG_TAG, "Exit getMccByOtherFactors. Return tmpMcc = " + tmpMcc ); in getMcc() [all …]
|
D | CallManager.java | 414 Rlog.d(LOG_TAG, "registerPhone(" + in registerPhone() 441 Rlog.d(LOG_TAG, "unregisterPhone(" + in unregisterPhone() 609 Rlog.d(LOG_TAG, "This phone has already been registered."); in registerForPhoneStates() 745 Rlog.d(LOG_TAG, "acceptCall(" +ringingCall + " from " + ringingCall.getPhone() + ")"); in acceptCall() 746 Rlog.d(LOG_TAG, toString()); in acceptCall() 755 Rlog.d(LOG_TAG, "hasBgCall: "+ hasBgCall + "sameChannel:" + sameChannel); in acceptCall() 771 Rlog.d(LOG_TAG, "End acceptCall(" +ringingCall + ")"); in acceptCall() 772 Rlog.d(LOG_TAG, toString()); in acceptCall() 787 Rlog.d(LOG_TAG, "rejectCall(" +ringingCall + ")"); in rejectCall() 788 Rlog.d(LOG_TAG, toString()); in rejectCall() [all …]
|
/frameworks/base/core/java/android/view/animation/ |
D | TranslateAnimation.java | 67 Description d = Description.parseValue(a.peekValue( in TranslateAnimation() local 69 mFromXType = d.type; in TranslateAnimation() 70 mFromXValue = d.value; in TranslateAnimation() 72 d = Description.parseValue(a.peekValue( in TranslateAnimation() 74 mToXType = d.type; in TranslateAnimation() 75 mToXValue = d.value; in TranslateAnimation() 77 d = Description.parseValue(a.peekValue( in TranslateAnimation() 79 mFromYType = d.type; in TranslateAnimation() 80 mFromYValue = d.value; in TranslateAnimation() 82 d = Description.parseValue(a.peekValue( in TranslateAnimation() [all …]
|
/frameworks/support/graphics/drawable/testanimated/src/android/support/test/vectordrawable/ |
D | TestAVDActivity.java | 53 AnimatedVectorDrawableCompat []d = new AnimatedVectorDrawableCompat[icon.length]; in onCreate() local 56 d[i] = AnimatedVectorDrawableCompat.create(this, icon[i]); in onCreate() 64 addDrawableButtons(container, d); in onCreate() 68 copies[0] = (AnimatedVectorDrawableCompat) d[0].getConstantState().newDrawable(); in onCreate() 69 copies[1] = (AnimatedVectorDrawableCompat) d[0].getConstantState().newDrawable(); in onCreate() 70 copies[2] = (AnimatedVectorDrawableCompat) d[0].getConstantState().newDrawable(); in onCreate() 82 private void addDrawableButtons(LinearLayout container, AnimatedVectorDrawableCompat[] d) { in addDrawableButtons() argument 83 for (int i = 0; i < d.length; i++) { in addDrawableButtons() 87 button.setBackgroundDrawable(d[i]); in addDrawableButtons() 95 AnimatedVectorDrawableCompat d = (AnimatedVectorDrawableCompat) v.getBackground(); in onClick() local [all …]
|
/frameworks/av/media/libeffects/factory/ |
D | EffectsFactory.c | 253 effect_descriptor_t *d = NULL; in EffectGetDescriptor() local 263 ret = findEffect(NULL, uuid, &l, &d); in EffectGetDescriptor() 265 *pDescriptor = *d; in EffectGetDescriptor() 275 effect_descriptor_t *d = NULL; in EffectCreate() local 299 ret = findEffect(NULL, uuid, &l, &d); in EffectCreate() 303 ret = findSubEffect(uuid, &l, &d); in EffectCreate() 312 ALOGW("EffectCreate() library %s: could not create fx %s, error %d", l->name, d->name, ret); in EffectCreate() 421 effect_descriptor_t *d; in EffectGetSubEffects() local 424 d = (effect_descriptor_t*)e->object; in EffectGetSubEffects() 425 if (memcmp(uuid, &d->uuid, sizeof(effect_uuid_t)) == 0) { in EffectGetSubEffects() [all …]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
D | omxVCM4P10_SATD_4x4.c | 79 OMX_S32 d [4][4], m1[4][4], m2[4][4]; in omxVCM4P10_SATD_4x4() local 95 d [j][i] = pSrcOrg [j * iStepOrg + i] - pSrcRef [j * iStepRef + i]; in omxVCM4P10_SATD_4x4() 104 m1[i][0] = d[i][0] + d[i][2]; /* a+c */ in omxVCM4P10_SATD_4x4() 105 m1[i][1] = d[i][1] + d[i][3]; /* b+d */ in omxVCM4P10_SATD_4x4() 106 m1[i][2] = d[i][0] - d[i][2]; /* a-c */ in omxVCM4P10_SATD_4x4() 107 m1[i][3] = d[i][1] - d[i][3]; /* b-d */ in omxVCM4P10_SATD_4x4()
|
/frameworks/rs/java/tests/Balls/src/com/example/android/rs/balls/ |
D | ball_physics.rs | 92 float d = gMaxPos.x - ball->position.x; 93 if (d < 0.f) { 99 ball->delta.x -= min(wallForce / (d * d), 10.f); 104 float d = ball->position.x - gMinPos.x; 105 if (d < 0.f) { 111 ball->delta.x += min(wallForce / (d * d), 10.f); 116 float d = gMaxPos.y - ball->position.y; 117 if (d < 0.f) { 123 ball->delta.y -= min(wallForce / (d * d), 10.f); 128 float d = ball->position.y - gMinPos.y; [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
D | DozeService.java | 96 if (DEBUG) Log.d(mTag, "new DozeService()"); in DozeService() 121 if (DEBUG) Log.d(mTag, "onCreate"); in onCreate() 150 if (DEBUG) Log.d(mTag, "onAttachedToWindow"); in onAttachedToWindow() 165 if (DEBUG) Log.d(mTag, "onDreamingStarted canDoze=" + canDoze() + " mPowerSaveActive=" in onDreamingStarted() 200 if (DEBUG) Log.d(mTag, "onDreamingStopped isDozing=" + isDozing()); in onDreamingStopped() 284 if (DEBUG) Log.d(mTag, "Display off"); in turnDisplayOff() 289 if (DEBUG) Log.d(mTag, "Display on"); in turnDisplayOn() 304 if (DEBUG) Log.d(mTag, "listenForPulseSignals: " + listen); in listenForPulseSignals() 342 if (DEBUG) Log.d(mTag, "resetNotificationResets"); in resetNotificationResets() 353 if (DEBUG) Log.d(mTag, "updateNotificationPulse notificationTimeMs=" + notificationTimeMs); in updateNotificationPulse() [all …]
|