Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/job/
H A DJobStoreTest.java257 file = new File(mTestContext.getFilesDir(), JobStore.JOB_FILE_SPLIT_PREFIX); in testExtractUidFromJobFileName()
260 file = new File(mTestContext.getFilesDir(), JobStore.JOB_FILE_SPLIT_PREFIX + "text.xml"); in testExtractUidFromJobFileName()
263 file = new File(mTestContext.getFilesDir(), JobStore.JOB_FILE_SPLIT_PREFIX + ".xml"); in testExtractUidFromJobFileName()
266 file = new File(mTestContext.getFilesDir(), JobStore.JOB_FILE_SPLIT_PREFIX + "-10123.xml"); in testExtractUidFromJobFileName()
269 file = new File(mTestContext.getFilesDir(), JobStore.JOB_FILE_SPLIT_PREFIX + "1.xml"); in testExtractUidFromJobFileName()
272 file = new File(mTestContext.getFilesDir(), JobStore.JOB_FILE_SPLIT_PREFIX + "101023.xml"); in testExtractUidFromJobFileName()
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/job/
H A DJobStore.java101 static final String JOB_FILE_SPLIT_PREFIX = "jobs_"; field in JobStore
616 if (fileName.startsWith(JOB_FILE_SPLIT_PREFIX)) { in extractUidFromJobFileName()
620 fileName.substring(JOB_FILE_SPLIT_PREFIX.length(), subEnd)); in extractUidFromJobFileName()
738 file = createJobFile(JOB_FILE_SPLIT_PREFIX + uid);
767 if (!file.getName().startsWith(JOB_FILE_SPLIT_PREFIX)) {
771 } else if (file.getName().startsWith(JOB_FILE_SPLIT_PREFIX)) {
1164 if (!file.getName().startsWith(JOB_FILE_SPLIT_PREFIX)) { in run()
1170 } else if (file.getName().startsWith(JOB_FILE_SPLIT_PREFIX)) { in run()