Searched refs:errorRef (Results 1 - 13 of 13) sorted by relevance

/macosx-10.9.5/WebKit2-7537.78.2/Shared/API/c/
H A DWKError.cpp44 WKStringRef WKErrorCopyDomain(WKErrorRef errorRef) argument
46 return toCopiedAPI(toImpl(errorRef)->domain());
49 int WKErrorGetErrorCode(WKErrorRef errorRef) argument
51 return toImpl(errorRef)->errorCode();
54 WKURLRef WKErrorCopyFailingURL(WKErrorRef errorRef) argument
56 return toCopiedURLAPI(toImpl(errorRef)->failingURL());
59 WKStringRef WKErrorCopyLocalizedDescription(WKErrorRef errorRef) argument
61 return toCopiedAPI(toImpl(errorRef)->localizedDescription());
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_error_private.h36 static PassOwnPtr<EwkError> create(WKErrorRef errorRef) argument
38 if (!errorRef)
41 return adoptPtr(new EwkError(errorRef));
51 explicit EwkError(WKErrorRef errorRef);
H A Dewk_error.cpp37 EwkError::EwkError(WKErrorRef errorRef) argument
38 : m_wkError(errorRef)
39 , m_url(AdoptWK, WKErrorCopyFailingURL(errorRef))
40 , m_description(AdoptWK, WKErrorCopyLocalizedDescription(errorRef))
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DQtWebError.cpp34 QtWebError::QtWebError(WKErrorRef errorRef) argument
35 : error(errorRef)
/macosx-10.9.5/Security-55471.14.18/libsecurity_transform/lib/
H A DSecTransform.cpp176 CFErrorRef* errorRef,
185 if (NULL != errorRef)
187 *errorRef = localError;
205 return transform->Execute(deliveryQueue, deliveryBlock, errorRef);
208 CFTypeRef SecTransformExecute(SecTransformRef transformRef, CFErrorRef* errorRef) argument
212 if (errorRef)
214 *errorRef = CreateSecTransformErrorRef(kSecTransformInvalidArgument, "NULL transform can not be executed");
224 if (errorRef)
226 *errorRef = CreateSecTransformErrorRef(kSecTransformTransformIsExecuting, "The %@ transform has already executed, it may not be executed again.", transform->GetName());
231 SecTransformRef collectTransform = transforms_assume(SecCreateCollectTransform(errorRef));
175 InternalSecTransformExecute(SecTransformRef transformRef, CFErrorRef* errorRef, dispatch_queue_t deliveryQueue, SecMessageBlock deliveryBlock) argument
[all...]
H A DSecTransform.h529 @param errorRef An optional pointer to a CFErrorRef. This value
559 CFTypeRef SecTransformExecute(SecTransformRef transformRef, CFErrorRef* errorRef)
H A DTransform.h91 friend CFTypeRef SecTransformExecute(SecTransformRef tranformRef, CFErrorRef* errorRef);
218 CFTypeRef Execute(dispatch_queue_t deliveryQueue, SecMessageBlock deliveryBlock, CFErrorRef* errorRef);
H A DTransform.cpp1243 CFTypeRef Transform::Execute(dispatch_queue_t deliveryQueue, SecMessageBlock deliveryBlock, CFErrorRef* errorRef) argument
1261 CFTypeRef ret = this->Execute(deliveryQueue, deliveryBlock ? smb : (SecMessageBlock) NULL, errorRef);
1273 if (errorRef)
1275 *errorRef = CreateSecTransformErrorRef(kSecTransformTransformIsExecuting, "The %@ transform has already executed, it may not be executed again.", GetName());
1307 if (errorRef)
1309 *errorRef = temp;
H A DEncryptTransform.cpp317 CFErrorRef errorRef = CreateGenericErrorRef(kCFErrorDomainOSStatus, retCode, "%@", errorString); local
320 SendAttribute(kSecTransformOutputAttributeName, errorRef);
321 CFRelease(errorRef);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKDatabaseManager.cpp144 static void callGetDatabasesByOriginBlockAndDispose(WKArrayRef resultValue, WKErrorRef errorRef, void* context) argument
148 block(resultValue, errorRef);
169 static void callGetDatabaseOriginsBlockBlockAndDispose(WKArrayRef resultValue, WKErrorRef errorRef, void* context) argument
173 block(resultValue, errorRef);
/macosx-10.9.5/SecurityTool-55115/
H A Dauthz.c197 CFErrorRef errorRef = NULL; local
214 xmlData = CFPropertyListCreateData(kCFAllocatorDefault, propertyList, kCFPropertyListXMLFormat_v1_0, 0, &errorRef);
215 if (errorRef) {
/macosx-10.9.5/CF-855.17/
H A DCFURL.h1154 if it is corrupt, NULL will be returned and error will be filled in if errorRef is non-NULL.
1157 @param errorRef if non-NULL, on exit will be filled in with a CFErrorRef representing any error which occurred during the creation of the bookmark data from the file
1161 CFDataRef CFURLCreateBookmarkDataFromFile(CFAllocatorRef allocator, CFURLRef fileURL, CFErrorRef *errorRef ) CF_AVAILABLE(10_6, 5_0);
1172 @param errorRef if non-NULL, on exit will be filled in with a CFErrorRef representing any error which occurred during the creation of the alias file
1175 Boolean CFURLWriteBookmarkDataToFile( CFDataRef bookmarkRef, CFURLRef fileURL, CFURLBookmarkFileCreationOptions options, CFErrorRef *errorRef ) CF_AVAILABLE(10_6, 5_0);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/qt/
H A Dqquickwebview.cpp418 void QQuickWebViewPrivate::didFailLoad(WKPageRef, WKFrameRef frame, WKErrorRef errorRef, WKTypeRef, const void* clientInfo) argument
426 QtWebError error(errorRef);

Completed in 229 milliseconds