Searched defs:mAccumulatedDeltaRangeState (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/location/java/android/location/
H A DGnssMeasurement.java41 private int mAccumulatedDeltaRangeState; field in class:GnssMeasurement
176 mAccumulatedDeltaRangeState = measurement.mAccumulatedDeltaRangeState;
526 return mAccumulatedDeltaRangeState;
535 mAccumulatedDeltaRangeState = value;
544 if (mAccumulatedDeltaRangeState == ADR_STATE_UNKNOWN) {
548 if ((mAccumulatedDeltaRangeState & ADR_STATE_VALID) == ADR_STATE_VALID) {
551 if ((mAccumulatedDeltaRangeState & ADR_STATE_RESET) == ADR_STATE_RESET) {
554 if ((mAccumulatedDeltaRangeState & ADR_STATE_CYCLE_SLIP) == ADR_STATE_CYCLE_SLIP) {
557 int remainingStates = mAccumulatedDeltaRangeState
[all...]
H A DGpsMeasurement.java39 private short mAccumulatedDeltaRangeState; field in class:GpsMeasurement
197 mAccumulatedDeltaRangeState = measurement.mAccumulatedDeltaRangeState;
426 return mAccumulatedDeltaRangeState;
433 mAccumulatedDeltaRangeState = value;
441 if (mAccumulatedDeltaRangeState == ADR_STATE_UNKNOWN) {
445 if ((mAccumulatedDeltaRangeState & ADR_STATE_VALID) == ADR_STATE_VALID) {
448 if ((mAccumulatedDeltaRangeState & ADR_STATE_RESET) == ADR_STATE_RESET) {
451 if ((mAccumulatedDeltaRangeState & ADR_STATE_CYCLE_SLIP) == ADR_STATE_CYCLE_SLIP) {
454 int remainingStates = mAccumulatedDeltaRangeState
[all...]

Completed in 43 milliseconds