/packages/modules/HealthFitness/tests/unittests/src/android/health/connect/exportimport/ |
D | ScheduledExportStatusTest.java | 35 ScheduledExportStatus scheduledExportStatus = in testDeserialize() 36 new ScheduledExportStatus( in testDeserialize() 43 ScheduledExportStatus deserializedStatus = in testDeserialize() 44 statusParcel.readTypedObject(ScheduledExportStatus.CREATOR); in testDeserialize() 55 ScheduledExportStatus scheduledExportStatus = in testDeserialize_noSuccessfulExport() 56 new ScheduledExportStatus( in testDeserialize_noSuccessfulExport() 61 ScheduledExportStatus deserializedStatus = in testDeserialize_noSuccessfulExport() 62 statusParcel.readTypedObject(ScheduledExportStatus.CREATOR); in testDeserialize_noSuccessfulExport() 70 private static Parcel writeToParcel(ScheduledExportStatus scheduledExportStatus) { in writeToParcel()
|
/packages/modules/HealthFitness/framework/java/android/health/connect/exportimport/ |
D | ScheduledExportStatus.java | 36 public final class ScheduledExportStatus implements Parcelable { class 38 public static final Creator<ScheduledExportStatus> CREATOR = 41 public ScheduledExportStatus createFromParcel(Parcel in) { 42 return new ScheduledExportStatus(in); 46 public ScheduledExportStatus[] newArray(int size) { 47 return new ScheduledExportStatus[size]; 56 public ScheduledExportStatus( in ScheduledExportStatus() method in ScheduledExportStatus 94 private ScheduledExportStatus(@NonNull Parcel in) { in ScheduledExportStatus() method in ScheduledExportStatus
|
D | IScheduledExportStatusCallback.aidl | 3 import android.health.connect.exportimport.ScheduledExportStatus; 13 oneway void onResult(in ScheduledExportStatus status); in onResult()
|
D | ScheduledExportStatus.aidl | 8 parcelable ScheduledExportStatus;
|
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/utils/di/ |
D | FakeHealthDataExportManager.kt | 23 import android.health.connect.exportimport.ScheduledExportStatus 34 ScheduledExportStatus(null, HealthConnectManager.DATA_EXPORT_ERROR_NONE, 1) 39 private var scheduledExportStatus: ScheduledExportStatus = DEFAULT_SCHEDULED_EXPORT_STATUS 68 outcomeReceiver: OutcomeReceiver<ScheduledExportStatus, HealthConnectException> in getScheduledExportStatus() 90 fun setScheduledExportStatus(scheduledExportStatus: ScheduledExportStatus) { in setScheduledExportStatus()
|
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/exportimport/ |
D | ScheduledExportFragmentTest.kt | 21 import android.health.connect.exportimport.ScheduledExportStatus in <lambda>() 78 ScheduledExportStatus(null, HealthConnectManager.DATA_EXPORT_ERROR_NONE, 0) in <lambda>() 88 ScheduledExportStatus( in <lambda>() 108 ScheduledExportStatus( in <lambda>() 212 scheduledExportStatus: ScheduledExportStatus in <lambda>() 215 val receiver = args.arguments[1] as OutcomeReceiver<ScheduledExportStatus, *> in <lambda>()
|
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/ |
D | ExportImportSettingsStorage.java | 26 import android.health.connect.exportimport.ScheduledExportStatus; 117 public static ScheduledExportStatus getScheduledExportStatus() { in getScheduledExportStatus() 123 return new ScheduledExportStatus( in getScheduledExportStatus()
|
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/exportimport/api/ |
D | HealthDataExportManager.kt | 22 import android.health.connect.exportimport.ScheduledExportStatus 34 outcomeReceiver: OutcomeReceiver<ScheduledExportStatus, HealthConnectException>
|
D | HealthDataExportManagerImpl.kt | 23 import android.health.connect.exportimport.ScheduledExportStatus 42 outcomeReceiver: OutcomeReceiver<ScheduledExportStatus, HealthConnectException> in getScheduledExportStatus()
|
D | LoadScheduledExportStatusUseCase.kt | 20 import android.health.connect.exportimport.ScheduledExportStatus in <lambda>() 42 val scheduledExportStatus: ScheduledExportStatus = in <lambda>()
|
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/exportimport/api/ |
D | LoadScheduledExportStatusUseCaseTest.kt | 21 import android.health.connect.exportimport.ScheduledExportStatus 59 ScheduledExportStatus( in <lambda>()
|
/packages/modules/HealthFitness/framework/java/android/health/connect/ |
D | HealthConnectManager.java | 95 import android.health.connect.exportimport.ScheduledExportStatus; 1797 @NonNull OutcomeReceiver<ScheduledExportStatus, HealthConnectException> callback) { in getScheduledExportStatus() argument 1806 public void onResult(ScheduledExportStatus status) { in getScheduledExportStatus()
|
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/ |
D | HealthConnectServiceImpl.java | 108 import android.health.connect.exportimport.ScheduledExportStatus; 2099 ScheduledExportStatus status = in getScheduledExportStatus()
|