Home | History | Annotate | Download | only in Plugins

Lines Matching refs:postData

1771     NSData *postData = nil;
1786 postData = [NSData dataWithContentsOfFile:[path _webkit_fixedCarbonPOSIXPath]];
1788 postData) {
1792 postData = [NSData dataWithBytes:buf length:len];
1795 if ([postData length] == 0) {
1803 if ([postData _web_startsWithBlankLine]) {
1804 postData = [postData subdataWithRange:NSMakeRange(1, [postData length] - 1)];
1806 NSInteger location = [postData _web_locationAfterFirstBlankLine];
1808 // If the blank line is somewhere in the middle of postData, everything before is the header.
1809 NSData *headerData = [postData subdataWithRange:NSMakeRange(0, location)];
1811 unsigned dataLength = [postData length] - location;
1826 postData = [postData subdataWithRange:NSMakeRange(location, dataLength)];
1830 if ([postData length] == 0) {
1837 [request setHTTPBody:postData];