Searched refs:postData (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10/Security-57031.1.35/Security/sec/securityd/
H A Dasynchttp.h57 bool asyncHttpPost(CFURLRef cfUrl, CFDataRef postData, asynchttp_t *http);
/macosx-10.10/Security-57031.1.35/SecurityTests/clxutils/ocspTool/
H A DocspNetwork.cpp93 CFDataRef postData = NULL; local
124 postData = CFDataCreate(NULL, ocspReq.Data, ocspReq.Length);
136 CFHTTPMessageSetBody(request, postData);
183 CFRELEASE(postData);
/macosx-10.10/WebKit-7600.1.25/mac/Plugins/
H A DWebNetscapePluginView.mm1793 NSData *postData = nil;
1808 postData = [NSData dataWithContentsOfFile:[path _webkit_fixedCarbonPOSIXPath]];
1810 if (!postData) {
1814 postData = [NSData dataWithBytes:buf length:len];
1817 if ([postData length] == 0) {
1825 if ([postData _web_startsWithBlankLine]) {
1826 postData = [postData subdataWithRange:NSMakeRange(1, [postData length] - 1)];
1828 NSInteger location = [postData _web_locationAfterFirstBlankLin
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Plugins/Netscape/
H A DNetscapeBrowserFuncs.cpp292 Vector<uint8_t> postData; local
297 NPError error = parsePostBuffer(file, buf, len, parseHeaders, headerFields, postData);
302 plugin->loadURL("POST", makeURLString(url), target, WTF::move(headerFields), postData, false, 0);
394 Vector<uint8_t> postData; local
395 NPError error = parsePostBuffer(file, buf, len, true, headerFields, postData);
400 plugin->loadURL("POST", makeURLString(url), target, headerFields, postData, true, notifyData);
/macosx-10.10/security_ocspd-55124/server/
H A DocspdNetwork.mm437 CFDataRef postData = NULL;
523 postData = CFDataCreate(NULL, ocspReq.Data, ocspReq.Length);
565 if (postData) {
567 [request setHTTPBody:(NSData*)postData];
571 NSString *postLength = [NSString stringWithFormat:@"%lu",(unsigned long)[(NSData*)postData length]];
602 CFReleaseSafe(postData);
H A DocspdNetwork.cpp415 CFDataRef postData = NULL; local
457 postData = CFDataCreate(NULL, ocspReq.Data, ocspReq.Length);
480 CFHTTPMessageSetBody(httpContext->request, postData);
561 CFReleaseSafe(postData);
/macosx-10.10/WebKit-7600.1.25/mac/Plugins/Hosted/
H A DWebKitPluginClient.defs42 postData :data_t;
H A DNetscapePluginHostProxy.mm404 data_t postData, mach_msg_type_number_t postDataLength, uint32_t flags,
409 DataDeallocator postDataDeallocator(postData, postDataLength);
420 NPError result = instanceProxy->loadURL(url, target, postData, postDataLength, static_cast<LoadURLFlags>(flags), streamID);
H A DNetscapePluginInstanceProxy.h134 NPError loadURL(const char* url, const char* target, const char* postData, uint32_t postDataLength, LoadURLFlags, uint32_t& requestID);
H A DNetscapePluginInstanceProxy.mm559 NPError NetscapePluginInstanceProxy::loadURL(const char* url, const char* target, const char* postData, uint32_t postLen, LoadURLFlags flags, uint32_t& streamID)
571 if (!postData)
573 RetainPtr<CFStringRef> bufString = adoptCF(CFStringCreateWithCString(kCFAllocatorDefault, postData, kCFStringEncodingWindowsLatin1));
587 httpBody = [NSData dataWithBytes:postData length:postLen];
600 // If the blank line is somewhere in the middle of postData, everything before is the header.
/macosx-10.10/WebCore-7600.1.25/plugins/
H A DPluginView.cpp1150 const char* postData = buffer.data(); local
1155 postData++;
1173 postData += location;
1182 frameLoadRequest.resourceRequest().setHTTPBody(FormData::create(postData, postDataLength));
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DFrameResourceManager.js198 resource = this._addNewResourceToFrame(requestIdentifier, frameIdentifier, loaderIdentifier, request.url, type, request.method, request.headers, request.postData, timestamp, null, null, initiatorSourceCodeLocation);

Completed in 123 milliseconds