Home
last modified time | relevance | path

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

/packages/apps/Contacts/src/com/android/contacts/vcard/
DVCardService.java93 private int mCurrentJobId = 1; field in VCardService
167 if (tryExecute(new ImportProcessor(this, listener, request, mCurrentJobId))) { in handleImportRequest()
170 listener.onImportProcessed(request, mCurrentJobId, i); in handleImportRequest()
172 startForeground(mCurrentJobId, notification); in handleImportRequest()
175 mCurrentJobId++; in handleImportRequest()
188 if (tryExecute(new ExportProcessor(this, request, mCurrentJobId, mCallingActivity))) { in handleExportRequest()
202 final Notification notification = listener.onExportProcessed(request,mCurrentJobId); in handleExportRequest()
204 startForeground(mCurrentJobId, notification); in handleExportRequest()
207 mCurrentJobId++; in handleExportRequest()
226 mRunningJobMap.put(mCurrentJobId, processor); in tryExecute()