Searched refs:isNullValue (Results 1 – 7 of 7) sorted by relevance
20 import static com.android.server.healthconnect.storage.utils.StorageUtils.isNullValue;91 if (isNullValue(cursor, mExcludeIntervalStartTimeColumn)) { in updateIntervalsToExclude()
25 import static com.android.server.healthconnect.storage.utils.StorageUtils.isNullValue;77 if (isNullValue(cursor, EXERCISE_LAPS_START_TIME)) { in populateLapIfRecorded()
26 import static com.android.server.healthconnect.storage.utils.StorageUtils.isNullValue;97 if (isNullValue(cursor, SLEEP_STAGE_START_TIME)) { in populateStageIfRecorded()
26 import static com.android.server.healthconnect.storage.utils.StorageUtils.isNullValue;83 if (isNullValue(cursor, EXERCISE_SEGMENT_START_TIME)) { in updateSetWithRecordedSegment()
43 import static com.android.server.healthconnect.storage.utils.StorageUtils.isNullValue;128 if (!isNullValue(cursor, PLANNED_EXERCISE_SESSION_ID_COLUMN_NAME)) { in populateSpecificRecordValue()
245 if (!StorageUtils.isNullValue(cursor, COMPLETED_SESSION_ID_COLUMN_NAME)) { in populateSpecificRecordValue()
219 public static boolean isNullValue(Cursor cursor, String columnName) { in isNullValue() method in StorageUtils