Searched refs:currentStream (Results 1 – 3 of 3) sorted by relevance
/external/webkit/WebCore/platform/network/cf/ |
D | FormDataStreamCFNet.cpp | 65 CFReadStreamRef currentStream; member 112 if (form->currentStream) { in closeCurrentStream() 113 CFReadStreamClose(form->currentStream); in closeCurrentStream() 114 CFReadStreamSetClient(form->currentStream, kCFStreamEventNone, NULL, NULL); in closeCurrentStream() 115 CFRelease(form->currentStream); in closeCurrentStream() 116 form->currentStream = NULL; in closeCurrentStream() 144 …form->currentStream = CFReadStreamCreateWithBytesNoCopy(0, reinterpret_cast<const UInt8*>(data), s… in advanceCurrentStream() 154 form->currentStream = CFReadStreamCreateWithFile(0, fileURL); in advanceCurrentStream() 161 …CFReadStreamSetClient(form->currentStream, kCFStreamEventHasBytesAvailable | kCFStreamEventErrorOc… in advanceCurrentStream() 165 CFSetApplyFunction(form->scheduledRunLoopPairs, scheduleWithPair, form->currentStream); in advanceCurrentStream() [all …]
|
/external/webkit/WebCore/platform/network/mac/ |
D | FormDataStreamMac.mm | 127 CFReadStreamRef currentStream; 136 if (form->currentStream) { 137 CFReadStreamClose(form->currentStream); 138 CFReadStreamSetClient(form->currentStream, kCFStreamEventNone, NULL, NULL); 139 CFRelease(form->currentStream); 140 form->currentStream = NULL; 160 …form->currentStream = CFReadStreamCreateWithBytesNoCopy(0, reinterpret_cast<const UInt8*>(data), s… 166 form->currentStream = CFReadStreamCreateWithFile(0, fileURL.get()); 172 …CFReadStreamSetClient(form->currentStream, kCFStreamEventHasBytesAvailable | kCFStreamEventErrorOc… 178 CFReadStreamScheduleWithRunLoop(form->currentStream, (*it)->runLoop(), (*it)->mode()); [all …]
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
D | JDKX509CertificateFactory.java | 44 private InputStream currentStream = null; field in JDKX509CertificateFactory 171 if (currentStream == null) in engineGenerateCertificate() 173 currentStream = in; in engineGenerateCertificate() 177 else if (currentStream != in) // reset if input stream has changed in engineGenerateCertificate() 179 currentStream = in; in engineGenerateCertificate()
|