/external/chromium_org/content/renderer/ |
webclipboard_impl.cc | 8 #include "base/pickle.h" 210 Pickle pickle; local 211 ui::WriteCustomDataToPickle(data_object.custom_data, &pickle); 212 scw.WritePickledData(pickle, ui::Clipboard::GetWebCustomDataFormatType());
|
/external/chromium_org/net/cert/ |
x509_certificate_ios.cc | 27 #include "base/pickle.h" 216 Pickle* pickle) { 221 return pickle->WriteData(
|
x509_certificate_nss.cc | 19 #include "base/pickle.h" 256 Pickle* pickle) { 257 return pickle->WriteData(
|
x509_certificate.cc | 19 #include "base/pickle.h" 305 X509Certificate* X509Certificate::CreateFromPickle(const Pickle& pickle, 341 // might really be a 64-bit field since we used to use Pickle::WriteSize(), 349 // save a copy of the pickle iterator to restore in case we don't get 32 357 // reading an old 32-bit pickle, and there's nothing else after this in 358 // the pickle, we should report success. Note that it is technically 362 // which comes from the pickle version number in http_response_info.cc. 467 void X509Certificate::Persist(Pickle* pickle) { [all...] |
x509_certificate_openssl.cc | 17 #include "base/pickle.h" 423 Pickle* pickle) { 428 return pickle->WriteData(
|
x509_certificate_win.cc | 11 #include "base/pickle.h" 379 Pickle* pickle) { 380 return pickle->WriteData(
|
/external/chromium_org/webkit/browser/appcache/ |
appcache_url_request_job_unittest.cc | 12 #include "base/pickle.h" 338 Pickle pickle; local 339 return PickleHttpResonseInfo(&pickle, info); 344 Pickle pickle1; 345 Pickle pickle2; 352 int PickleHttpResonseInfo(Pickle* pickle, const net::HttpResponseInfo* info) { 355 info->Persist(pickle, kSkipTransientHeaders, kTruncated); 356 return pickle->size() [all...] |
/external/chromium_org/webkit/common/cursors/ |
webcursor.cc | 8 #include "base/pickle.h" 133 bool WebCursor::Serialize(Pickle* pickle) const { 134 if (!pickle->WriteInt(type_) || 135 !pickle->WriteInt(hotspot_.x()) || 136 !pickle->WriteInt(hotspot_.y()) || 137 !pickle->WriteInt(custom_size_.width()) || 138 !pickle->WriteInt(custom_size_.height()) || 139 !pickle->WriteFloat(custom_scale_)) 145 if (!pickle->WriteData(data, custom_data_.size()) [all...] |
/external/chromium/net/base/ |
x509_certificate_openssl.cc | 17 #include "base/pickle.h" 525 X509Certificate::ReadCertHandleFromPickle(const Pickle& pickle, 529 if (!pickle.ReadData(pickle_iter, &data, &length)) 537 Pickle* pickle) { 542 return pickle->WriteData(
|
x509_certificate_nss.cc | 21 #include "base/pickle.h" [all...] |
x509_certificate_win.cc | 9 #include "base/pickle.h" [all...] |
/external/chromium_org/base/metrics/ |
histogram_unittest.cc | 17 #include "base/pickle.h" 375 Pickle pickle; local 376 histogram->SerializeInfo(&pickle); 378 PickleIterator iter(pickle); 408 // No more data in the pickle. 421 Pickle pickle; local 422 custom_histogram->SerializeInfo(&pickle); 424 // Validate the pickle [all...] |
histogram.cc | 22 #include "base/pickle.h" 48 DLOG(ERROR) << "Pickle error decoding Histogram: " << *histogram_name; 292 bool Histogram::SerializeInfoImpl(Pickle* pickle) const { 294 return pickle->WriteString(histogram_name()) && 295 pickle->WriteInt(flags()) && 296 pickle->WriteInt(declared_min()) && 297 pickle->WriteInt(declared_max()) && 298 pickle->WriteUInt64(bucket_count()) && 299 pickle->WriteUInt32(bucket_ranges()->checksum()) [all...] |
/external/chromium/base/metrics/ |
histogram.cc | 18 #include "base/pickle.h" 216 Pickle pickle; local 217 pickle.WriteString(histogram.histogram_name()); 218 pickle.WriteInt(histogram.declared_min()); 219 pickle.WriteInt(histogram.declared_max()); 220 pickle.WriteSize(histogram.bucket_count()); 221 pickle.WriteUInt32(histogram.range_checksum()); 222 pickle.WriteInt(histogram.histogram_type()); 223 pickle.WriteInt(histogram.flags()) [all...] |
/external/chromium_org/chrome/browser/password_manager/ |
native_backend_kwallet_x_unittest.cc | 11 #include "base/pickle.h" 453 Pickle pickle(reinterpret_cast<const char*>(value.data()), value.size()); 455 NativeBackendKWalletStub::DeserializeValue(entries[i], pickle, &forms); 704 // (For example tests for storing >1 password per realm pickle.) 1053 Pickle pickle; local [all...] |
/external/chromium_org/content/browser/web_contents/ |
web_contents_drag_win.cc | 15 #include "base/pickle.h" 339 Pickle pickle; local 340 ui::WriteCustomDataToPickle(drop_data.custom_data, &pickle); 341 data.SetPickledData(ui::Clipboard::GetWebCustomDataFormatType(), pickle); local
|
web_drag_source_gtk.cc | 277 Pickle custom_data;
|
/external/chromium_org/net/url_request/ |
view_cache_helper_unittest.cc | 7 #include "base/pickle.h" 42 Pickle pickle; 43 pickle.WriteInt(flags | 1); // Version 1. 44 pickle.WriteInt64(0); 45 pickle.WriteInt64(0); 46 pickle.WriteString(data); 49 reinterpret_cast<const char*>(pickle.data()))); 50 int len = static_cast<int>(pickle.size());
|
/external/chromium_org/ui/base/dragdrop/ |
os_exchange_data_provider_win.cc | 14 #include "base/pickle.h" 348 const Pickle& data) { 438 Pickle* data) const { 447 *data = Pickle(c_data.get(), static_cast<int>(c_data.Size())); [all...] |
/external/chromium/webkit/glue/ |
glue_serialize.cc | 9 #include "base/pickle.h" 35 SerializeObject(const char* data, int len) : pickle(data, len), iter(NULL) {} 38 return std::string(static_cast<const char*>(pickle.data()), pickle.size()); 41 Pickle pickle; member in struct:webkit_glue::SerializeObject 62 // NOTE: If the version is -1, then the pickle contains only a URL string. 71 obj->pickle.WriteData(static_cast<const char*>(data), length); 77 obj->pickle.ReadData(&obj->iter, &tmp, length); 84 if (!obj->pickle.ReadBytes(&obj->iter, &tmp, length) [all...] |
/external/chromium_org/chrome/browser/sessions/ |
session_service.cc | 17 #include "base/pickle.h" 826 Pickle pickle; local 827 pickle.WriteInt(tab_id.id()); 828 pickle.WriteString(session_storage_persistent_id); 829 return new SessionCommand(kCommandSessionStorageAssociated, pickle); [all...] |
/external/chromium/net/http/ |
http_response_headers.cc | 16 #include "base/pickle.h" 142 // constructor, which rebuilds an histogram from a pickle, since 145 // new object from that pickle. 154 HttpResponseHeaders::HttpResponseHeaders(const Pickle& pickle, void** iter) 157 if (pickle.ReadString(iter, &raw_input)) 161 void HttpResponseHeaders::Persist(Pickle* pickle, PersistOptions options) { 163 pickle->WriteString(raw_headers_); 214 pickle->WriteString(blob) [all...] |
http_response_headers_unittest.cc | 8 #include "base/pickle.h" 450 Pickle pickle; local 451 parsed1->Persist(&pickle, tests[i].options); 455 new net::HttpResponseHeaders(pickle, &iter)); [all...] |
/external/chromium/base/ |
file_path.cc | 12 #include "base/pickle.h" 555 void FilePath::WriteStringTypeToPickle(Pickle* pickle, 558 pickle->WriteWString(path); 560 pickle->WriteString(path); 567 bool FilePath::ReadStringTypeFromPickle(Pickle* pickle, void** iter, 570 if (!pickle->ReadWString(iter, path)) 573 if (!pickle->ReadString(iter, path)) 583 void FilePath::WriteToPickle(Pickle* pickle) [all...] |
/external/chromium/chrome/browser/safe_browsing/ |
malware_details_unittest.cc | 7 #include "base/pickle.h" 61 Pickle pickle; local 62 responseinfo.Persist(&pickle, false, false); 65 reinterpret_cast<const char*>(pickle.data()))); 66 int len = static_cast<int>(pickle.size());
|