Home
last modified time | relevance | path

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

/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
DQuotedPrintableInputStream.java95 pushbackq.enqueue((byte)i); in populatePushbackQueue()
100 pushbackq.enqueue((byte)i); in populatePushbackQueue()
103 pushbackq.enqueue((byte)i); in populatePushbackQueue()
131 byteq.enqueue(b); in fillBuffer()
153 byteq.enqueue((byte)'='); in fillBuffer()
161 byteq.enqueue((byte)'='); in fillBuffer()
162 byteq.enqueue(b); in fillBuffer()
175 byteq.enqueue((byte)'='); in fillBuffer()
176 byteq.enqueue((byte)'\r'); in fillBuffer()
177 byteq.enqueue(b); in fillBuffer()
[all …]
DByteQueue.java38 public void enqueue(byte b) { in enqueue() method in ByteQueue
/packages/apps/RetailDemo/tests/src/com/android/retaildemo/
DDownloadVideoTaskTest.java111 when(mDownloadManager.enqueue(any(DownloadManager.Request.class))) in testDownloadVideo()
160 when(mDownloadManager.enqueue(any(DownloadManager.Request.class))) in testDownloadVideo_noNetwork()
187 when(mDownloadManager.enqueue(any(DownloadManager.Request.class))) in testDownloadVideo_downloadFailed()
225 verify(mDownloadManager).enqueue(any(DownloadManager.Request.class)); in testDownloadUpdatedVideo()
/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
DIntegratedDownloadsUiTest.java47 dm.enqueue(new Request(Uri.parse("http://hammychamp.toodles"))); in testDownload_Queued()
58 dm.enqueue(new Request(Uri.parse("http://www.google.com/hamfancy"))); in testDownload_RetryUnsuccessful()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DDownloadManagerWrapper.java98 public long enqueue(final Request request) { in enqueue() method in DownloadManagerWrapper
101 return mDownloadManager.enqueue(request); in enqueue()
DUpdateHandler.java250 downloadId = manager.enqueue(metadataRequest); in updateClientsWithMetadataUri()
334 downloadId = manager.enqueue(request); in registerDownloadRequest()
/packages/providers/DownloadProvider/tests/public_api_access/src/com/android/providers/downloads/public_api_access_tests/
DPublicApiAccessTest.java145 mManager.enqueue(request); in testDownloadManagerRequest()
154 mManager.enqueue(request); in testDownloadManagerRequest()
/packages/services/Telephony/src/com/android/phone/vvm/
DRemoteVvmTaskManager.java257 public void enqueue(Message message) { in enqueue() method in RemoteVvmTaskManager.RemoteServiceConnection
327 mConnection.enqueue(message); in send()
/packages/apps/RetailDemo/src/com/android/retaildemo/
DDownloadVideoTask.java119 mVideoDownloadId = mDlm.enqueue(request); in startDownload()
186 mVideoUpdateDownloadId = mDlm.enqueue(request); in handleMessage()
/packages/apps/Nfc/nci/jni/
DDataQueue.h66 bool enqueue (uint8_t* data, uint16_t dataLen);
DDataQueue.cpp84 bool DataQueue::enqueue (uint8_t* data, uint16_t dataLen) in enqueue() function in DataQueue
/packages/apps/Music/src/com/android/music/
DIMediaPlaybackService.aidl41 void enqueue(in long [] list, int action); in enqueue() method
DMediaPlaybackService.java875 public void enqueue(long[] list, int action) { in enqueue() method in MediaPlaybackService
2123 public void enqueue(long[] list, int action) { in enqueue() method in MediaPlaybackService.ServiceStub
2124 mService.get().enqueue(list, action); in enqueue()
DMusicUtils.java526 sService.enqueue(list, MediaPlaybackService.LAST); in addToCurrentPlaylist()
/packages/apps/Dialer/java/com/android/voicemail/impl/
DDeviceProvisionedJobService.java59 context.getSystemService(JobScheduler.class).enqueue(jobInfo, new JobWorkItem(intent)); in activateAfterProvisioned()
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/
DDownloadPackageTask.java134 mDownloadId = mDownloadManager.enqueue(request); in run()
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/task/
DDownloadPackageTaskTest.java188 when(mDownloadManager.enqueue(any(Request.class))).thenReturn(TEST_DOWNLOAD_ID); in mockSuccessfulDownload()
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
DAbstractPublicApiTest.java246 return new Download(mManager.enqueue(request)); in enqueueRequest()
DAbstractDownloadProviderFunctionalTest.java244 mServer.enqueue(resp); in enqueueResponse()
/packages/apps/KeyChain/tests/src/com/android/keychain/tests/
DKeyChainTestActivity.java203 server.enqueue(new MockResponse().setBody("this response comes via HTTPS")); in startWebServer()