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

1 2 3 4 5 67 8 9

  /external/chromium_org/base/metrics/
sparse_histogram_unittest.cc 13 #include "base/pickle.h"
123 Pickle pickle; local
124 histogram->SerializeInfo(&pickle);
126 PickleIterator iter(pickle);
140 // No more data in the pickle.
histogram.h 82 class Pickle;
467 virtual bool SerializeInfoImpl(Pickle* pickle) const OVERRIDE;
663 virtual bool SerializeInfoImpl(Pickle* pickle) const OVERRIDE;
  /external/chromium_org/chrome/browser/ui/app_list/test/
fast_show_pickler_unittest.cc 46 scoped_ptr<Pickle> pickle(
48 return FastShowPickler::UnpickleAppListModelForFastShow(pickle.get());
  /external/chromium_org/chrome/common/
content_settings_pattern.h 18 class Pickle;
  /external/chromium_org/ui/base/clipboard/
scoped_clipboard_writer.cc 11 #include "base/pickle.h"
93 const Pickle& pickle, const Clipboard::FormatType& format) {
99 data_parameter.resize(pickle.size());
101 pickle.data(), pickle.size());
clipboard_unittest.cc 12 #include "base/pickle.h"
539 Pickle write_pickle;
554 Pickle read_pickle(output.data(), output.size());
565 Pickle write_pickle1;
571 Pickle write_pickle2;
578 // overwrite the previous pickle for fun
590 Pickle read_pickle2(output2.data(), output2.size());
600 // overwrite the previous pickle for fun
612 Pickle read_pickle1(output1.data(), output1.size());
  /external/chromium_org/webkit/browser/appcache/
appcache_response_unittest.cc 13 #include "base/pickle.h"
253 Pickle pickle; local
254 return PickleHttpResonseInfo(&pickle, info);
259 Pickle pickle1;
260 Pickle pickle2;
267 int PickleHttpResonseInfo(Pickle* pickle, const net::HttpResponseInfo* info) {
270 info->Persist(pickle, kSkipTransientHeaders, kTruncated);
271 return pickle->size()
    [all...]
appcache_service_unittest.cc 9 #include "base/pickle.h"
160 Pickle pickle; local
161 return PickleResponseInfo(&pickle, info);
164 int PickleResponseInfo(Pickle* pickle, const net::HttpResponseInfo* info) {
167 info->Persist(pickle, kSkipTransientHeaders, kTruncated);
168 return pickle->size();
  /external/chromium_org/webkit/common/cursors/
webcursor_gtk.cc 198 bool WebCursor::SerializePlatformData(Pickle* pickle) const {
webcursor_win.cc 6 #include "base/pickle.h"
148 bool WebCursor::SerializePlatformData(Pickle* pickle) const {
152 return pickle->WriteUInt32(reinterpret_cast<uint32>(external_cursor_));
  /external/chromium_org/chrome/browser/extensions/api/messaging/
native_message_process_host_unittest.cc 151 Pickle pickle; local
152 pickle.WriteString(message);
153 return std::string(const_cast<const Pickle*>(&pickle)->payload(),
154 pickle.payload_size());
  /external/chromium_org/content/browser/download/
base_file.cc 11 #include "base/pickle.h"
50 Pickle hash_state(hash_state_bytes.c_str(), hash_state_bytes.size());
236 Pickle hash_state;
  /external/chromium_org/media/base/
test_helpers.cc 10 #include "base/pickle.h"
252 Pickle pickle; local
253 pickle.WriteString(kFakeVideoBufferHeader);
254 pickle.WriteInt(config.coded_size().width());
255 pickle.WriteInt(config.coded_size().height());
256 pickle.WriteInt64(timestamp.InMilliseconds());
259 static_cast<const uint8*>(pickle.data()),
260 static_cast<int>(pickle.size()));
271 PickleIterator pickle(Pickle(reinterpret_cast<const char*>(buffer->data())
    [all...]
  /external/chromium_org/net/http/
http_response_info.cc 8 #include "base/pickle.h"
155 bool HttpResponseInfo::InitFromPickle(const Pickle& pickle,
157 PickleIterator iter(pickle);
161 if (!pickle.ReadInt(&iter, &flags))
172 if (!pickle.ReadInt64(&iter, &time_val))
178 if (!pickle.ReadInt64(&iter, &time_val))
183 headers = new HttpResponseHeaders(pickle, &iter);
190 ssl_info.cert = X509Certificate::CreateFromPickle(pickle, &iter, type);
196 if (!pickle.ReadUInt32(&iter, &cert_status)
    [all...]
  /external/chromium/base/metrics/
histogram.h 53 class Pickle;
347 bool Serialize(Pickle* pickle) const;
348 bool Deserialize(void** iter, const Pickle& pickle);
421 // Pickle class to flatten the object.
  /external/chromium_org/chrome/browser/password_manager/
login_database_unittest.cc 33 Pickle SerializeVector(const std::vector<base::string16>& vec) const {
37 std::vector<base::string16> DeserializeVector(const Pickle& pickle) const {
38 return db_.DeserializeVector(pickle);
616 Pickle temp = SerializeVector(vec);
  /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"
265 // Pickle user scripts and return pointer to the shared memory.
267 Pickle pickle; local
268 pickle.WriteUInt64(scripts.size());
274 script.Pickle(&pickle);
279 pickle.WriteData(contents.data(), contents.length());
283 pickle.WriteData(contents.data(), contents.length());
290 if (!shared_memory.CreateAndMapAnonymous(pickle.size())
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/bookmarks/
bookmark_utils_gtk.cc 7 #include "base/pickle.h"
342 Pickle pickle; local
343 data.WriteToPickle(profile, &pickle);
348 static_cast<const guchar*>(pickle.data()),
349 pickle.size());
427 Pickle pickle(reinterpret_cast<const char*>(
430 drag_data.ReadFromPickle(&pickle);
  /external/chromium_org/components/sessions/
serialized_navigation_entry_unittest.cc 12 #include "base/pickle.h"
171 // Create a SerializedNavigationEntry, pickle it, then create another one by
174 TEST(SerializedNavigationEntryTest, Pickle) {
179 Pickle pickle; local
180 old_navigation.WriteToPickle(30000, &pickle);
183 PickleIterator pickle_iterator(pickle);
  /external/chromium_org/content/common/
page_state_serialization_unittest.cc 10 #include "base/pickle.h"
322 Pickle p;
339 Pickle p;
  /external/chromium_org/net/disk_cache/simple/
simple_index_file_unittest.cc 11 #include "base/pickle.h"
52 Pickle pickle; local
53 index_metadata.Serialize(&pickle);
54 PickleIterator it(pickle);
135 scoped_ptr<Pickle> pickle = WrappedSimpleIndexFile::Serialize( local
137 EXPECT_TRUE(pickle.get() != NULL);
139 EXPECT_TRUE(WrappedSimpleIndexFile::SerializeFinalData(now, pickle.get()));
142 WrappedSimpleIndexFile::Deserialize(static_cast<const char*>(pickle->data())
    [all...]
  /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());

Completed in 605 milliseconds

1 2 3 4 5 67 8 9