Searched refs:mCurrentJobId (Results 1 – 1 of 1) sorted by relevance
/packages/apps/Contacts/src/com/android/contacts/vcard/ |
D | VCardService.java | 94 private int mCurrentJobId = 1; field in VCardService 172 if (tryExecute(new ImportProcessor(this, listener, request, mCurrentJobId))) { in handleImportRequest() 175 listener.onImportProcessed(request, mCurrentJobId, i); in handleImportRequest() 177 startForeground(mCurrentJobId, notification); in handleImportRequest() 180 mCurrentJobId++; in handleImportRequest() 193 if (tryExecute(new ExportProcessor(this, request, mCurrentJobId, mCallingActivity))) { in handleExportRequest() 207 final Notification notification = listener.onExportProcessed(request,mCurrentJobId); in handleExportRequest() 209 startForeground(mCurrentJobId, notification); in handleExportRequest() 212 mCurrentJobId++; in handleExportRequest() 231 mRunningJobMap.put(mCurrentJobId, processor); in tryExecute()
|