HomeSort by relevance Sort by last modified time
    Searched refs:Pickle (Results 176 - 200 of 210) sorted by null

1 2 3 4 5 6 78 9

  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_provider_win.cc 14 #include "base/pickle.h"
348 const Pickle& data) {
432 Pickle* data) const {
441 *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"
823 Pickle pickle; local
824 pickle.WriteInt(tab_id.id());
825 pickle.WriteString(session_storage_persistent_id);
826 return new SessionCommand(kCommandSessionStorageAssociated, pickle);
    [all...]
  /external/chromium_org/net/cert/
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(
x509_certificate_mac.cc 20 #include "base/pickle.h"
556 Pickle* pickle) {
562 return pickle->WriteData(reinterpret_cast<char*>(cert_data.Data),
x509_certificate_unittest.cc 10 #include "base/pickle.h"
572 TEST(X509CertificateTest, Pickle) {
589 Pickle pickle; local
590 cert->Persist(&pickle);
592 PickleIterator iter(pickle);
595 pickle, &iter, X509Certificate::PICKLETYPE_CERTIFICATE_CHAIN_V3);
    [all...]
  /external/chromium_org/net/disk_cache/simple/
simple_index.cc 17 #include "base/pickle.h"
89 void EntryMetadata::Serialize(Pickle* pickle) const {
90 DCHECK(pickle);
93 pickle->WriteInt64(last_used_time_);
94 pickle->WriteUInt64(entry_size_);
simple_index_unittest.cc 9 #include "base/pickle.h"
172 Pickle pickle; local
173 entry_metadata.Serialize(&pickle);
175 PickleIterator it(pickle);
  /external/chromium/net/base/
x509_certificate_nss.cc 21 #include "base/pickle.h"
    [all...]
x509_certificate_win.cc 9 #include "base/pickle.h"
    [all...]
x509_certificate_mac.cc 18 #include "base/pickle.h"
    [all...]
x509_certificate_unittest.cc 8 #include "base/pickle.h"
672 TEST(X509CertificateTest, Pickle) {
694 Pickle pickle; local
695 cert->Persist(&pickle);
700 pickle, &iter, X509Certificate::PICKLETYPE_CERTIFICATE_CHAIN);
    [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...]
http_cache.cc 19 #include "base/pickle.h"
433 Pickle pickle(data, len);
434 return response_info->InitFromPickle(pickle, response_truncated);
    [all...]
  /external/chromium_org/android_webview/native/
aw_contents.cc 37 #include "base/pickle.h"
736 Pickle pickle;
737 if (!WriteToPickle(*web_contents_, &pickle)) {
741 reinterpret_cast<const uint8*>(pickle.data()), pickle.size());
752 Pickle pickle(reinterpret_cast<const char*>(state_vector.begin()),
754 PickleIterator iterator(pickle);
    [all...]
  /external/chromium_org/base/metrics/
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/
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());
  /external/chromium_org/content/common/
page_state_serialization.cc 10 #include "base/pickle.h"
166 : pickle(data, len),
169 iter = PickleIterator(pickle);
173 return std::string(static_cast<const char*>(pickle.data()), pickle.size());
176 Pickle pickle; member in struct:content::__anon10327::SerializeObject
188 // NOTE: If the version is -1, then the pickle contains only a URL string.
199 obj->pickle.WriteData(static_cast<const char*>(data), length);
204 if (obj->pickle.ReadData(&obj->iter, &tmp, length))
    [all...]
  /external/chromium_org/net/http/
mock_http_cache.cc 534 Pickle pickle; local
536 &pickle, skip_transient_headers, response_truncated);
540 reinterpret_cast<const char*>(pickle.data())));
541 int len = static_cast<int>(pickle.size());
http_response_headers.cc 16 #include "base/pickle.h"
141 // constructor, which rebuilds an histogram from a pickle, since
144 // new object from that pickle.
154 HttpResponseHeaders::HttpResponseHeaders(const Pickle& pickle,
158 if (pickle.ReadString(iter, &raw_input))
162 void HttpResponseHeaders::Persist(Pickle* pickle, PersistOptions options) {
164 pickle->WriteString(raw_headers_);
218 pickle->WriteString(blob)
    [all...]
  /external/chromium/chrome/browser/sessions/
session_service.cc 16 #include "base/pickle.h"
    [all...]
  /external/chromium_org/content/browser/web_contents/
web_contents_view_aura.cc 260 Pickle pickle; local
261 ui::WriteCustomDataToPickle(drop_data.custom_data, &pickle);
263 pickle); local
301 Pickle pickle; local
302 if (data.GetPickledData(ui::Clipboard::GetWebCustomDataFormatType(), &pickle))
304 pickle.data(), pickle.size(), &drop_data->custom_data);
    [all...]

Completed in 2426 milliseconds

1 2 3 4 5 6 78 9