HomeSort by relevance Sort by last modified time
    Searched refs:NSError (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/webkit/Source/WebKit/mac/Misc/
WebNSFileManagerExtras.h 40 - (NSArray *)contentsOfDirectoryAtPath:(NSString *)path error:(NSError **)error;
41 - (BOOL)moveItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error;
42 - (BOOL)removeItemAtPath:(NSString *)path error:(NSError **)error;
43 - (NSDictionary *)attributesOfFileSystemForPath:(NSString *)path error:(NSError **)error;
44 - (NSString *)destinationOfSymbolicLinkAtPath:(NSString *)path error:(NSError **)error;
45 - (NSDictionary *)attributesOfItemAtPath:(NSString *)path error:(NSError **)error;
WebKitErrorsPrivate.h 53 @interface NSError (WebKitExtras)
54 + (NSError *)_webKitErrorWithCode:(int)code failingURL:(NSString *)URL;
55 + (NSError *)_webKitErrorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL;
WebNSFileManagerExtras.m 193 - (NSArray *)contentsOfDirectoryAtPath:(NSString *)path error:(NSError **)error
195 // We don't report errors via the NSError* output parameter, so ensure that the caller does not expect us to do so.
201 - (NSString *)destinationOfSymbolicLinkAtPath:(NSString *)path error:(NSError **)error
203 // We don't report errors via the NSError* output parameter, so ensure that the caller does not expect us to do so.
209 - (NSDictionary *)attributesOfFileSystemForPath:(NSString *)path error:(NSError **)error
211 // We don't report errors via the NSError* output parameter, so ensure that the caller does not expect us to do so.
217 - (NSDictionary *)attributesOfItemAtPath:(NSString *)path error:(NSError **)error
219 // We don't report errors via the NSError* output parameter, so ensure that the caller does not expect us to do so.
225 - (BOOL)moveItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath error:(NSError **)error
234 - (BOOL)removeItemAtPath:(NSString *)path error:(NSError **)erro
    [all...]
WebKitErrors.m 63 @implementation NSError (WebKitExtras)
93 + (NSError *)_webKitErrorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL
99 + (NSError *)_webKitErrorWithCode:(int)code failingURL:(NSString *)URLString
137 NSError *error = [self initWithDomain:WebKitErrorDomain code:code userInfo:userInfoCopy];
173 [NSError _webkit_addErrorsWithCodesAndDescriptions:dict inDomain:WebKitErrorDomain];
  /external/webkit/Tools/DumpRenderTree/mac/
MockGeolocationProvider.h 34 NSError *_error;
42 - (void)setError:(NSError *)error;
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceError.h 37 @class NSError;
39 class NSError;
72 ResourceError(NSError *);
73 NSError *nsError() const;
74 operator NSError *() const;
91 mutable RetainPtr<NSError> m_platformError;
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceErrorMac.mm 34 @interface NSError (WebExtras)
40 ResourceError::ResourceError(NSError *nsError)
42 , m_platformError(nsError)
44 m_isNull = !nsError;
49 , m_platformError((NSError *)cfError)
77 return a.nsError() == b.nsError();
80 NSError *ResourceError::nsError() cons
    [all...]
  /external/webkit/Source/WebKit/mac/History/
WebHistory.h 31 @class NSError;
81 @param error Set to nil or an NSError instance if an error occurred.
85 - (BOOL)loadFromURL:(NSURL *)URL error:(NSError **)error;
91 @param error Set to nil or an NSError instance if an error occurred.
94 - (BOOL)saveToURL:(NSURL *)URL error:(NSError **)error;
  /external/webkit/Source/WebKit/mac/WebView/
WebDataSourcePrivate.h 35 - (NSError *)_mainDocumentError;
WebFrameLoadDelegate.h 32 @class NSError;
73 - (void)webView:(WebView *)sender didFailProvisionalLoadWithError:(NSError *)error forFrame:(WebFrame *)frame;
128 - (void)webView:(WebView *)sender didFailLoadWithError:(NSError *)error forFrame:(WebFrame *)frame;
WebDocument.h 31 @class NSError;
181 - (void)receivedError:(NSError *)error withDataSource:(WebDataSource *)dataSource;
WebPolicyDelegate.h 31 @class NSError;
196 - (void)webView:(WebView *)webView unableToImplementPolicyWithError:(NSError *)error frame:(WebFrame *)frame;
WebResourceLoadDelegate.h 148 - (void)webView:(WebView *)sender resource:(id)identifier didFailLoadingWithError:(NSError *)error fromDataSource:(WebDataSource *)dataSource;
162 - (void)webView:(WebView *)sender plugInFailedWithError:(NSError *)error dataSource:(WebDataSource *)dataSource;
WebDataSourceInternal.h 58 - (void)_setMainDocumentError:(NSError *)error;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
WebErrorsMac.mm 61 @interface NSError (WebKitExtras)
62 + (NSError *)_webKitErrorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL;
65 @implementation NSError (WebKitExtras)
95 + (NSError *)_webKitErrorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL
101 + (NSError *)_webKitErrorWithCode:(int)code failingURL:(NSString *)URLString
133 [NSError _webkit_addErrorsWithCodesAndDescriptions:dict inDomain:WebError::webKitErrorDomain()];
144 return [NSError _webKitErrorWithDomain:NSURLErrorDomain code:NSURLErrorCancelled URL:request.url()];
149 return [NSError _webKitErrorWithDomain:WebError::webKitErrorDomain() code:kWKErrorCodeCannotUseRestrictedPort URL:request.url()];
154 return [NSError _webKitErrorWithDomain:WebError::webKitErrorDomain() code:kWKErrorCodeCannotShowURL URL:request.url()];
159 return [NSError _webKitErrorWithDomain:WebError::webKitErrorDomain() code:kWKErrorCodeFrameLoadInterruptedByPolicy (…)
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginStream.h 70 static NPReason reasonForError(NSError *);
71 NSError *errorForReason(NPReason) const;
73 void cancelLoadAndDestroyStreamWithError(NSError *);
83 void destroyStreamWithError(NSError *);
88 void cancelLoadWithError(NSError *);
95 NSError *pluginCancelledConnectionError() const;
WebPlugin.h 121 - (void)webPlugInMainResourceDidFailWithError:(NSError *)error WEBKIT_OBJC_METHOD_ANNOTATION(AVAILABLE_IN_WEBKIT_VERSION_4_0);
WebBasePluginPackage.h 43 - (void)pluginView:(NSView *)pluginView receivedError:(NSError *)error;
WebNetscapePluginStream.mm 92 NPReason WebNetscapePluginStream::reasonForError(NSError *error)
103 NSError *WebNetscapePluginStream::pluginCancelledConnectionError() const
105 return [[[NSError alloc] _initWithPluginErrorCode:WebKitErrorPlugInCancelledConnection
112 NSError *WebNetscapePluginStream::errorForReason(NPReason reason) const
118 return [NSError _webKitErrorWithDomain:NSURLErrorDomain
465 void WebNetscapePluginStream::cancelLoadWithError(NSError *error)
482 void WebNetscapePluginStream::destroyStreamWithError(NSError *error)
492 void WebNetscapePluginStream::cancelLoadAndDestroyStreamWithError(NSError *error)
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
HostedNetscapePluginStream.h 73 static NPReason reasonForError(NSError* error);
76 NSError *errorForReason(NPReason) const;
77 void cancelLoad(NSError *);
84 NSError *pluginCancelledConnectionError() const;
HostedNetscapePluginStream.mm 187 NPReason HostedNetscapePluginStream::reasonForError(NSError *error)
233 void HostedNetscapePluginStream::cancelLoad(NSError *error)
251 NSError *HostedNetscapePluginStream::pluginCancelledConnectionError() const
253 return [[[NSError alloc] _initWithPluginErrorCode:WebKitErrorPlugInCancelledConnection
260 NSError *HostedNetscapePluginStream::errorForReason(NPReason reason) const
266 return [NSError _webKitErrorWithDomain:NSURLErrorDomain
  /external/webkit/Source/WebKit2/Shared/mac/
WebCoreArgumentCodersMac.mm 121 NSError *nsError = resourceError.nsError();
123 String domain = [nsError domain];
126 int64_t code = [nsError code];
131 NSDictionary* userInfo = [nsError userInfo];
188 NSError *nsError = [[NSError alloc] initWithDomain:nsString(domain) code:code userInfo:userInfo];
190 resourceError = ResourceError(nsError);
    [all...]
  /external/webkit/Tools/WebKitLauncher/
WebKitLauncherURLProtocol.m 119 NSError *error = [NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorFileDoesNotExist userInfo:infoDictionary];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRFileStream.m 82 NSError *error;
  /external/webkit/Source/WebCore/platform/network/
ResourceHandle.h 56 @class NSError;
61 class NSError;

Completed in 726 milliseconds

1 2 3