Searched refs:CFURLGetBytes (Results 1 - 9 of 9) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/cf/
H A DCFURLExtras.cpp47 CFIndex bytesLength = CFURLGetBytes(url, 0, 0);
49 CFIndex finalLength = CFURLGetBytes(url, reinterpret_cast<UInt8*>(result.data()), bytesLength);
55 CFIndex bytesLength = CFURLGetBytes(url, 0, 0);
58 CFIndex finalLength = CFURLGetBytes(url, reinterpret_cast<UInt8*>(bytes), bytesLength);
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DWebCoreNSURLExtras.mm580 CFIndex numBytes = CFURLGetBytes((CFURLRef)URL, buffer, 2048);
582 numBytes = CFURLGetBytes((CFURLRef)URL, NULL, 0);
584 CFURLGetBytes((CFURLRef)URL, urlBytes, numBytes);
686 CFIndex bytesFilled = CFURLGetBytes((CFURLRef)URL, allBytesBuffer, URLComponentTypeBufferLength);
688 CFIndex bytesToAllocate = CFURLGetBytes((CFURLRef)URL, NULL, 0);
690 bytesFilled = CFURLGetBytes((CFURLRef)URL, allBytesBuffer, bytesToAllocate);
744 CFIndex numBytes = CFURLGetBytes((CFURLRef)URL, buffer.data(), 2048);
746 numBytes = CFURLGetBytes((CFURLRef)URL, NULL, 0);
748 CFURLGetBytes((CFURLRef)URL, buffer.data(), numBytes);
774 CFIndex bytesFilled = CFURLGetBytes((CFURLRe
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebNSURLExtras.mm109 return CFURLGetBytes((CFURLRef)self, NULL, 0) == 0;
197 CFIndex bytesFilled = CFURLGetBytes((CFURLRef)self, buffer, URL_BYTES_BUFFER_LENGTH);
199 CFIndex bytesToAllocate = CFURLGetBytes((CFURLRef)self, NULL, 0);
201 bytesFilled = CFURLGetBytes((CFURLRef)self, buffer, bytesToAllocate);
/macosx-10.9.5/Security-55471.14.18/sec/securityd/
H A Dasynchttp.c277 if (base64Len + CFURLGetBytes(responder, NULL, 0) > 254)
352 if (getURL && CFURLGetBytes(getURL, NULL, 0) < 256) {
355 secdebug("http", "GET[%ld] %@", CFURLGetBytes(getURL, NULL, 0), getURL);
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfurl.py214 cnt, bytes = CFURLGetBytes(ref, None, 100)
219 cnt, bytes = CFURLGetBytes(ref, objc.NULL, 0)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfurl.py212 cnt, bytes = CFURLGetBytes(ref, None, 100)
217 cnt, bytes = CFURLGetBytes(ref, objc.NULL, 0)
/macosx-10.9.5/CF-855.17/
H A DCFURLAccess.c593 CFIndex bufferSize = CFURLGetBytes(url, NULL, 0);
595 CFURLGetBytes(url, srcBuffer, bufferSize);
H A DCFURL.h67 /* supported because CFURLGetBytes and CFURLGetByteRangeForComponent require */
97 /* supported because CFURLGetBytes and CFURLGetByteRangeForComponent require */
307 CFIndex CFURLGetBytes(CFURLRef url, UInt8 *buffer, CFIndex bufferLength);
327 returned by CFURLGetBytes(). This range is only good for use in the
328 bytes returned by CFURLGetBytes!
H A DCFURL.c2805 CFIndex CFURLGetBytes(CFURLRef url, UInt8 *buffer, CFIndex bufferLength) { function

Completed in 145 milliseconds