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

1 2 3 4 5 67 8 9

  /external/chromium_org/base/metrics/
histogram.h 82 class Pickle;
461 virtual bool SerializeInfoImpl(Pickle* pickle) const OVERRIDE;
657 virtual bool SerializeInfoImpl(Pickle* pickle) const OVERRIDE;
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...]
  /external/chromium_org/chrome/browser/password_manager/
login_database_unittest.cc 32 Pickle SerializeVector(const std::vector<string16>& vec) const {
36 std::vector<string16> DeserializeVector(const Pickle& pickle) const {
37 return db_.DeserializeVector(pickle);
605 Pickle temp = SerializeVector(vec);
native_backend_kwallet_x_unittest.cc 11 #include "base/pickle.h"
452 Pickle pickle(reinterpret_cast<const char*>(value.data()), value.size());
454 NativeBackendKWalletStub::DeserializeValue(entries[i], pickle, &forms);
703 // (For example tests for storing >1 password per realm pickle.)
1052 Pickle pickle; local
    [all...]
  /external/chromium_org/chrome/browser/policy/cloud/
component_cloud_policy_service_unittest.cc 10 #include "base/pickle.h"
159 Pickle pickle; local
160 pickle.WriteString(kTestExtension);
161 pickle.WriteString(kTestExtension2);
162 std::string data(reinterpret_cast<const char*>(pickle.data()),
163 pickle.size());
236 Pickle pickle; local
237 pickle.WriteString("aa")
    [all...]
component_cloud_policy_service.cc 12 #include "base/pickle.h"
180 Pickle pickle; local
182 pickle.WriteString(*it);
183 std::string data(reinterpret_cast<const char*>(pickle.data()),
184 pickle.size());
205 const Pickle pickle(it->second.data(), it->second.size());
206 PickleIterator pickit(pickle);
  /external/chromium/chrome/browser/extensions/
user_script_master.cc 13 #include "base/pickle.h"
234 // Pickle user scripts and return pointer to the shared memory.
236 Pickle pickle; local
237 pickle.WriteSize(scripts.size());
243 script.Pickle(&pickle);
248 pickle.WriteData(contents.data(), contents.length());
252 pickle.WriteData(contents.data(), contents.length());
259 if (!shared_memory->CreateAndMapAnonymous(pickle.size())
    [all...]
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_utils_gtk.cc 7 #include "base/pickle.h"
326 Pickle pickle; local
327 data.WriteToPickle(profile, &pickle);
331 static_cast<const guchar*>(pickle.data()),
332 pickle.size());
395 Pickle pickle(reinterpret_cast<char*>(selection_data->data),
398 drag_data.ReadFromPickle(&pickle);
  /external/chromium/net/socket/
dns_cert_provenance_checker.cc 23 #include "base/pickle.h"
251 Pickle p;
262 // and Pickle's internal length which it includes at the beginning of the
317 // We use another Pickle object to serialise the 'outer' wrapping of the
319 Pickle outer;
  /external/chromium_org/chrome/browser/extensions/
user_script_master.cc 14 #include "base/pickle.h"
264 // Pickle user scripts and return pointer to the shared memory.
266 Pickle pickle; local
267 pickle.WriteUInt64(scripts.size());
273 script.Pickle(&pickle);
278 pickle.WriteData(contents.data(), contents.length());
282 pickle.WriteData(contents.data(), contents.length());
289 if (!shared_memory->CreateAndMapAnonymous(pickle.size())
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/bookmarks/
bookmark_utils_gtk.cc 7 #include "base/pickle.h"
340 Pickle pickle; local
341 data.WriteToPickle(profile, &pickle);
346 static_cast<const guchar*>(pickle.data()),
347 pickle.size());
425 Pickle pickle(reinterpret_cast<const char*>(
428 drag_data.ReadFromPickle(&pickle);
  /external/chromium_org/content/common/
page_state_serialization_unittest.cc 10 #include "base/pickle.h"
336 Pickle p;
353 Pickle p;
  /external/chromium/net/url_request/
view_cache_helper_unittest.cc 7 #include "base/pickle.h"
40 Pickle pickle;
41 pickle.WriteInt(flags | 1); // Version 1.
42 pickle.WriteInt64(0);
43 pickle.WriteInt64(0);
44 pickle.WriteString(data);
47 reinterpret_cast<const char*>(pickle.data())));
48 int len = static_cast<int>(pickle.size());
  /external/chromium_org/content/browser/
histogram_synchronizer.cc 11 #include "base/pickle.h"
276 Pickle pickle(it->data(), it->size());
277 PickleIterator iter(pickle);
  /external/chromium_org/content/renderer/
webclipboard_impl.cc 8 #include "base/pickle.h"
224 Pickle pickle; local
225 ui::WriteCustomDataToPickle(data_object.custom_data, &pickle);
226 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...]
  /external/chromium_org/webkit/browser/appcache/
appcache_url_request_job_unittest.cc 12 #include "base/pickle.h"
337 Pickle pickle; local
338 return PickleHttpResonseInfo(&pickle, info);
343 Pickle pickle1;
344 Pickle pickle2;
351 int PickleHttpResonseInfo(Pickle* pickle, const net::HttpResponseInfo* info) {
354 info->Persist(pickle, kSkipTransientHeaders, kTruncated);
355 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(
  /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/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"
41 Pickle pickle;
42 pickle.WriteInt(flags | 1); // Version 1.
43 pickle.WriteInt64(0);
44 pickle.WriteInt64(0);
45 pickle.WriteString(data);
48 reinterpret_cast<const char*>(pickle.data())));
49 int len = static_cast<int>(pickle.size());

Completed in 1310 milliseconds

1 2 3 4 5 67 8 9