Searched refs:bodyData (Results 1 - 7 of 7) sorted by relevance

/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dkkdcp.c49 CFDataRef bodyData = NULL; local
56 bodyData = CFDataCreateWithBytesNoCopy(NULL, outdata->data, outdata->length, kCFAllocatorNull);
57 if (bodyData == NULL) {
73 CFHTTPMessageSetBody(message, bodyData);
125 if (bodyData)
126 CFRelease(bodyData);
/macosx-10.10/Security-57031.1.35/Security/sec/Security/
H A DSecOTRUtils.c197 CFDataRef bodyData = CFDataCreateReferenceFromRange(kCFAllocatorDefault, incomingMessage, CFRangeMake(headerLoc.length, footerLoc.location - headerLoc.length)); local
198 size_t size = SecBase64Decode((char*)CFDataGetBytePtr(bodyData), CFDataGetLength(bodyData), NULL, 0);
200 SecBase64Decode((char*)CFDataGetBytePtr(bodyData), CFDataGetLength(bodyData), decodedByteArray, size);
203 CFRelease(bodyData);
/macosx-10.10/WebCore-7600.1.25/loader/
H A DFormSubmission.cpp73 Vector<char> bodyData; local
74 bodyData.append("body=", 5);
75 FormDataBuilder::encodeStringAsFormData(bodyData, body.utf8());
76 body = String(bodyData.data(), bodyData.size()).replaceWithLiteral('+', "%20");
/macosx-10.10/WebCore-7600.1.25/platform/network/cocoa/
H A DResourceRequestCocoa.mm111 if (NSData* bodyData = [m_nsRequest.get() HTTPBody])
112 m_httpBody = FormData::create([bodyData bytes], [bodyData length]);
/macosx-10.10/webdavfs-367/mount.tproj/
H A Dwebdav_network.c2055 CFDataRef bodyData, /* -> message body data, or NULL if no body */
2103 if ( bodyData != NULL )
2105 CFHTTPMessageSetBody(message, bodyData);
2485 CFDataRef bodyData; local
2512 bodyData = CFDataCreateWithBytesNoCopy(kCFAllocatorDefault, xmlString, strlen((const char *)xmlString), kCFAllocatorNull);
2513 require_action(bodyData != NULL, CFDataCreateWithBytesNoCopy, error = EIO);
2516 error = send_transaction(uid, urlRef, node, CFSTR("PROPFIND"), bodyData,
2528 CFRelease(bodyData);
2544 CFDataRef bodyData; local
2571 bodyData
2050 send_transaction( uid_t uid, CFURLRef url, struct node_entry *node, CFStringRef requestMethod, CFDataRef bodyData, CFIndex headerCount, struct HeaderFieldValue *headers, enum RedirectAction redirectAction, UInt8 **buffer, CFIndex *count, CFHTTPMessageRef *response) argument
3553 CFDataRef bodyData; local
4547 CFDataRef bodyData; local
5098 CFDataRef bodyData; local
5384 CFDataRef bodyData; local
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/network/cf/
H A DResourceRequestCFNet.cpp317 if (RetainPtr<CFDataRef> bodyData = adoptCF(CFURLRequestCopyHTTPRequestBody(m_cfRequest.get())))
318 m_httpBody = FormData::create(CFDataGetBytePtr(bodyData.get()), CFDataGetLength(bodyData.get()));
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/
H A DNetscapeBrowserFuncs.cpp215 static NPError parsePostBuffer(bool isFile, const char *buffer, uint32_t length, bool parseHeaders, HTTPHeaderMap& headerFields, Vector<uint8_t>& bodyData) argument
261 ASSERT(bodyData.isEmpty());
262 bodyData.append(postBuffer, postBufferSize);

Completed in 283 milliseconds