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

/frameworks/base/services/core/java/com/android/server/job/
H A DJobStore.java76 * This is important b/c {@link com.android.server.job.JobStore.WriteJobsMapToDiskRunnable}
77 * and {@link com.android.server.job.JobStore.ReadJobMapFromDiskRunnable} lock on that
83 public final class JobStore { class
84 private static final String TAG = "JobStore";
104 private static JobStore sSingleton;
108 /** Used by the {@link JobSchedulerService} to instantiate the JobStore. */
109 static JobStore initAndGet(JobSchedulerService jobManagerService) {
112 sSingleton = new JobStore(jobManagerService.getContext(),
123 public static JobStore initAndGetForTesting(Context context, File dataDir) {
124 JobStore jobStoreUnderTes
132 private JobStore(Context context, Object lock, File dataDir) { method in class:JobStore
[all...]

Completed in 37 milliseconds