Searched refs:m_platformNSError (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/network/mac/
H A DResourceErrorMac.mm212 if (m_platformNSError)
213 return m_platformNSError.get();
219 m_platformNSError = NSErrorFromCFError(error, (NSURL *)[(NSDictionary *)userInfo.get() objectForKey:(id) kCFURLErrorFailingURLErrorKey]);
221 if (m_platformNSError.get() != (NSError *)error)
222 return m_platformNSError.get();
226 m_platformNSError = adoptNS([[NSError alloc] initWithDomain:(NSString *)CFErrorGetDomain(error) code:CFErrorGetCode(error) userInfo:(NSDictionary *)userInfo.get()]);
227 return m_platformNSError.get();
230 m_platformNSError = createNSErrorFromResourceErrorBase(*this);
231 return m_platformNSError.get();
/macosx-10.10/WebCore-7600.1.25/platform/network/cf/
H A DResourceError.h92 mutable RetainPtr<NSError> m_platformNSError; member in class:WebCore::ResourceError

Completed in 200 milliseconds