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

1 2 3 45 6 7 8 9

  /external/chromium_org/ui/base/dragdrop/
os_exchange_data.cc 7 #include "base/pickle.h"
57 const Pickle& data) {
79 Pickle* data) const {
os_exchange_data_provider_aura.cc 64 const Pickle& data) {
109 Pickle* data) const {
os_exchange_data_provider_aurax11.cc 152 const Pickle& pickle) {
154 reinterpret_cast<const unsigned char*>(pickle.data());
157 bytes.insert(bytes.end(), data, data + pickle.size());
243 Pickle* pickle) const {
249 // Note that the pickle object on the right hand side of the assignment
251 *pickle = Pickle(reinterpret_cast<const char*>(data.GetData()),
  /external/chromium_org/base/metrics/
sparse_histogram.h 80 virtual bool SerializeInfoImpl(Pickle* pickle) const OVERRIDE;
histogram_samples.cc 8 #include "base/pickle.h"
92 bool HistogramSamples::Serialize(Pickle* pickle) const {
93 if (!pickle->WriteInt64(sum_) || !pickle->WriteInt(redundant_count_))
103 if (!pickle->WriteInt(min) ||
104 !pickle->WriteInt(max) ||
105 !pickle->WriteInt(count))
  /external/chromium_org/components/nacl/loader/
nacl_ipc_adapter.h 18 #include "base/pickle.h"
63 struct NaClMessageHeader : public Pickle::Header {
  /external/chromium_org/content/child/
child_histogram_message_filter.cc 12 #include "base/pickle.h"
80 Pickle pickle; local
81 histogram.SerializeInfo(&pickle);
82 snapshot.Serialize(&pickle);
85 std::string(static_cast<const char*>(pickle.data()), pickle.size()));
  /external/chromium_org/ppapi/proxy/
serialized_structs.h 22 class Pickle;
serialized_handle.cc 8 #include "base/pickle.h"
93 bool SerializedHandle::WriteHeader(const Header& hdr, Pickle* pickle) {
94 if (!pickle->WriteInt(hdr.type))
97 if (!pickle->WriteUInt32(hdr.size))
101 if (!pickle->WriteInt(hdr.open_flag))
  /external/chromium_org/tools/android/forwarder2/
host_forwarder_main.cc 30 #include "base/pickle.h"
286 const Pickle command_pickle(buf, bytes_read);
311 ClientDelegate(const Pickle& command_pickle)
340 const Pickle command_pickle_;
370 Pickle pickle;
371 pickle.WriteString(
382 pickle.WriteInt(-PortToInt(args[0]));
386 pickle.WriteInt(PortToInt(args[0]));
387 pickle.WriteInt(PortToInt(args[1]))
    [all...]
  /external/chromium/chrome/common/extensions/
user_script_unittest.cc 6 #include "base/pickle.h"
117 TEST(ExtensionUserScriptTest, Pickle) {
143 Pickle pickle; local
144 script1.Pickle(&pickle);
148 script2.Unpickle(pickle, &iter);
  /external/chromium/net/socket/
ssl_host_info.cc 8 #include "base/pickle.h"
81 Pickle p(data.data(), data.size());
141 Pickle p(sizeof(Pickle::Header));
  /external/chromium_org/android_webview/native/
state_serializer.cc 10 #include "base/pickle.h"
35 // Sanity check value that we are restoring from a valid pickle.
43 Pickle* pickle) {
44 DCHECK(pickle);
46 if (!internal::WriteHeaderToPickle(pickle))
57 if (!pickle->WriteInt(entry_count))
60 if (!pickle->WriteInt(selected_entry))
65 pickle))
139 bool WriteHeaderToPickle(Pickle* pickle)
    [all...]
  /external/chromium_org/extensions/common/
user_script_unittest.cc 6 #include "base/pickle.h"
161 TEST(ExtensionUserScriptTest, Pickle) {
191 Pickle pickle; local
192 script1.Pickle(&pickle);
194 PickleIterator iter(pickle);
196 script2.Unpickle(pickle, &iter);
  /external/chromium_org/net/http/
http_response_headers.h 19 class Pickle;
54 // Initializes from the representation stored in the given pickle. The data
56 // be passed to the pickle's various Read* methods.
57 HttpResponseHeaders(const Pickle& pickle, PickleIterator* pickle_iter);
59 // Appends a representation of this object to the given pickle.
61 void Persist(Pickle* pickle, PersistOptions options);
  /external/chromium_org/chrome/renderer/extensions/
user_script_slave.cc 14 #include "base/pickle.h"
156 if (!shared_memory_->Map(sizeof(Pickle::Header)))
158 Pickle::Header* pickle_header =
159 reinterpret_cast<Pickle::Header*>(shared_memory_->memory());
162 int pickle_size = sizeof(Pickle::Header) + pickle_header->payload_size;
169 Pickle pickle(reinterpret_cast<char*>(shared_memory_->memory()),
171 PickleIterator iter(pickle);
172 CHECK(pickle.ReadUInt64(&iter, &num_scripts));
178 script->Unpickle(pickle, &iter)
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_response.cc 12 #include "base/pickle.h"
29 // An IOBuffer that wraps a pickle's data. Ownership of the
30 // pickle is transfered to the WrappedPickleIOBuffer object.
33 explicit WrappedPickleIOBuffer(const Pickle* pickle) :
34 net::WrappedIOBuffer(reinterpret_cast<const char*>(pickle->data())),
35 pickle_(pickle) {
36 DCHECK(pickle->data());
42 scoped_ptr<const Pickle> pickle_;
223 Pickle pickle(buffer_->data(), result)
321 Pickle* pickle = new Pickle; local
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
login_database.cc 14 #include "base/pickle.h"
310 Pickle pickle = SerializeVector(form.other_possible_usernames); local
311 s.BindBlob(COLUMN_POSSIBLE_USERNAMES, pickle.data(), pickle.size());
340 Pickle pickle = SerializeVector(form.other_possible_usernames); local
341 s.BindBlob(4, pickle.data(), pickle.size());
420 Pickle pickle
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
file_system_usage_cache.cc 13 #include "base/pickle.h"
40 // Pickle::{Read,Write}Bool treat bool as int
42 sizeof(Pickle::Header) +
188 Pickle read_pickle(buffer, kUsageFileSize);
216 Pickle write_pickle;
  /external/chromium_org/chrome/browser/nacl_host/
nacl_browser.cc 12 #include "base/pickle.h"
94 void WriteCache(const base::FilePath& filename, const Pickle* pickle) {
95 file_util::WriteFile(filename, static_cast<const char*>(pickle->data()),
96 pickle->size());
400 Pickle pickle(data->data(), data->size());
401 validation_cache_.Deserialize(&pickle);
564 Pickle* pickle = new Pickle() local
    [all...]
  /external/chromium_org/crypto/
secure_hash_unittest.cc 9 #include "base/pickle.h"
54 Pickle pickle; local
59 EXPECT_TRUE(ctx1->Serialize(&pickle));
65 PickleIterator data_iterator(pickle);
  /external/chromium/chrome/browser/ssl/
ssl_manager.cc 63 Pickle pickle; local
64 pickle.WriteInt(cert_id);
65 pickle.WriteInt(cert_status);
66 pickle.WriteInt(security_bits);
67 pickle.WriteInt(ssl_connection_status);
68 return std::string(static_cast<const char*>(pickle.data()), pickle.size());
88 Pickle pickle(state.data(), static_cast<int>(state.size()))
    [all...]
  /external/chromium/net/http/
http_response_info.cc 8 #include "base/pickle.h"
105 bool HttpResponseInfo::InitFromPickle(const Pickle& pickle,
111 if (!pickle.ReadInt(&iter, &flags))
122 if (!pickle.ReadInt64(&iter, &time_val))
128 if (!pickle.ReadInt64(&iter, &time_val))
133 headers = new HttpResponseHeaders(pickle, &iter);
143 ssl_info.cert = X509Certificate::CreateFromPickle(pickle, &iter, type);
147 if (!pickle.ReadInt(&iter, &cert_status))
153 if (!pickle.ReadInt(&iter, &security_bits)
    [all...]
  /external/chromium/webkit/glue/
glue_serialize_unittest.cc 7 #include "base/pickle.h"
165 Pickle p;
178 Pickle p;
webcursor.cc 8 #include "base/pickle.h"
73 bool WebCursor::Deserialize(const Pickle* pickle, void** iter) {
79 if (!pickle->ReadInt(iter, &type) ||
80 !pickle->ReadInt(iter, &hotspot_x) ||
81 !pickle->ReadInt(iter, &hotspot_y) ||
82 !pickle->ReadLength(iter, &size_x) ||
83 !pickle->ReadLength(iter, &size_y) ||
84 !pickle->ReadData(iter, &data, &data_len))
114 return DeserializePlatformData(pickle, iter)
    [all...]

Completed in 1322 milliseconds

1 2 3 45 6 7 8 9