Home
last modified time | relevance | path

Searched refs:cValues (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
DTrackerEntry.java170 ContentValues cValues = new ContentValues(ATTRIBUTES.length); in getAsContentValues() local
171 cValues.put(TIMESTAMP, mTimestamp); in getAsContentValues()
172 cValues.put(TAG, mTag); in getAsContentValues()
173 cValues.put(ENTRY_TYPE, mType.toString()); in getAsContentValues()
175 cValues.put(LATITUDE, mLocation.getLatitude()); in getAsContentValues()
176 cValues.put(LONGITUDE, mLocation.getLongitude()); in getAsContentValues()
178 cValues.put(ACCURACY, mLocation.getAccuracy()); in getAsContentValues()
181 cValues.put(ALTITUDE, mLocation.getAltitude()); in getAsContentValues()
184 cValues.put(SPEED, mLocation.getSpeed()); in getAsContentValues()
187 cValues.put(BEARING, mLocation.getBearing()); in getAsContentValues()
[all …]