HomeSort by relevance Sort by last modified time
    Searched refs:Pickle (Results 201 - 222 of 222) sorted by null

1 2 3 4 5 6 7 89

  /external/chromium_org/content/common/
page_state_serialization.cc 10 #include "base/pickle.h"
167 : pickle(data, len),
170 iter = PickleIterator(pickle);
174 return std::string(static_cast<const char*>(pickle.data()), pickle.size());
177 Pickle pickle; member in struct:content::__anon8070::SerializeObject
192 // NOTE: If the version is -1, then the pickle contains only a URL string.
203 obj->pickle.WriteData(static_cast<const char*>(data), length);
208 if (obj->pickle.ReadData(&obj->iter, &tmp, length))
    [all...]
  /external/chromium_org/net/cert/
x509_certificate_mac.cc 20 #include "base/pickle.h"
502 Pickle* pickle) {
508 return pickle->WriteData(reinterpret_cast<char*>(cert_data.Data),
x509_certificate_unittest.cc 10 #include "base/pickle.h"
508 TEST(X509CertificateTest, Pickle) {
525 Pickle pickle; local
526 cert->Persist(&pickle);
528 PickleIterator iter(pickle);
531 pickle, &iter, X509Certificate::PICKLETYPE_CERTIFICATE_CHAIN_V3);
    [all...]
  /external/chromium_org/net/disk_cache/simple/
simple_index.cc 19 #include "base/pickle.h"
120 void EntryMetadata::Serialize(Pickle* pickle) const {
121 DCHECK(pickle);
123 pickle->WriteInt64(internal_last_used_time);
124 pickle->WriteUInt64(entry_size_);
simple_index_unittest.cc 12 #include "base/pickle.h"
191 Pickle pickle; local
192 entry_metadata.Serialize(&pickle);
194 PickleIterator it(pickle);
  /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"
149 // constructor, which rebuilds an histogram from a pickle, since
152 // new object from that pickle.
162 HttpResponseHeaders::HttpResponseHeaders(const Pickle& pickle,
166 if (pickle.ReadString(iter, &raw_input))
170 void HttpResponseHeaders::Persist(Pickle* pickle, PersistOptions options) {
172 pickle->WriteString(raw_headers_);
226 pickle->WriteString(blob)
    [all...]
http_cache.cc 24 #include "base/pickle.h"
363 Pickle pickle(data, len);
364 return response_info->InitFromPickle(pickle, response_truncated);
    [all...]
http_response_headers_unittest.cc 9 #include "base/pickle.h"
477 Pickle pickle; local
478 parsed1->Persist(&pickle, tests[i].options);
480 PickleIterator iter(pickle);
482 new net::HttpResponseHeaders(pickle, &iter));
    [all...]
http_cache_unittest.cc 4781 Pickle pickle; local
    [all...]
  /external/chromium/chrome/browser/sessions/
session_service.cc 16 #include "base/pickle.h"
    [all...]
  /external/chromium/net/base/
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...]
x509_certificate.cc 17 #include "base/pickle.h"
242 scoped_refptr<X509Certificate> X509Certificate::CreateFromPickle(const Pickle& pickle,
245 OSCertHandle cert_handle = ReadCertHandleFromPickle(pickle, pickle_iter);
250 // the data from |pickle| so that |pickle_iter| is kept in sync for any
254 if (!pickle.ReadSize(pickle_iter, &num_intermediates)) {
261 OSCertHandle intermediate = ReadCertHandleFromPickle(pickle,
364 void X509Certificate::Persist(Pickle* pickle) {
366 if (!WriteCertHandleToPickle(cert_handle_, pickle)) {
    [all...]
  /external/chromium_org/android_webview/native/
aw_contents.cc 36 #include "base/pickle.h"
768 Pickle pickle;
769 if (!WriteToPickle(*web_contents_, &pickle)) {
773 reinterpret_cast<const uint8*>(pickle.data()), pickle.size());
785 Pickle pickle(reinterpret_cast<const char*>(state_vector.begin()),
787 PickleIterator iterator(pickle);
    [all...]
  /external/chromium_org/content/browser/web_contents/
web_contents_view_aura.cc 358 Pickle pickle; local
359 ui::WriteCustomDataToPickle(drop_data.custom_data, &pickle);
361 pickle); local
400 Pickle pickle; local
401 if (data.GetPickledData(ui::Clipboard::GetWebCustomDataFormatType(), &pickle))
403 pickle.data(), pickle.size(), &drop_data->custom_data);
    [all...]
  /external/chromium/net/http/
http_cache.cc 19 #include "base/pickle.h"
433 Pickle pickle(data, len);
434 return response_info->InitFromPickle(pickle, response_truncated);
    [all...]
http_cache_unittest.cc 593 Pickle pickle; local
595 &pickle, skip_transient_headers, response_truncated);
599 reinterpret_cast<const char*>(pickle.data())));
600 int len = static_cast<int>(pickle.size());
4120 Pickle pickle; local
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
malware_details_unittest.cc 8 #include "base/pickle.h"
71 Pickle pickle; local
72 responseinfo.Persist(&pickle, false, false);
75 reinterpret_cast<const char*>(pickle.data())));
76 int len = static_cast<int>(pickle.size());
  /external/chromium_org/chrome/browser/ui/gtk/bookmarks/
bookmark_bar_gtk.cc 12 #include "base/pickle.h"
    [all...]
  /external/chromium_org/base/files/
file_path.cc 12 #include "base/pickle.h"
659 void FilePath::WriteToPickle(Pickle* pickle) const {
661 pickle->WriteString16(path_);
663 pickle->WriteString(path_);
    [all...]
  /external/chromium_org/ui/views/controls/textfield/
native_textfield_views_unittest.cc 17 #include "base/pickle.h"
    [all...]

Completed in 4452 milliseconds

1 2 3 4 5 6 7 89