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

1 2 3 4 5 6 7 8 9

  /external/chromium/webkit/glue/
npruntime_util.h 10 class Pickle;
15 bool SerializeNPIdentifier(NPIdentifier identifier, Pickle* pickle);
16 bool DeserializeNPIdentifier(const Pickle& pickle, void** pickle_iter,
  /external/chromium_org/content/child/npapi/
npruntime_util.h 10 class Pickle;
16 bool SerializeNPIdentifier(NPIdentifier identifier, Pickle* pickle);
  /external/chromium_org/skia/ext/
skia_utils_base.h 8 #include "base/pickle.h"
13 // Return true if the pickle/iterator contains a string. If so, and if str
15 SK_API bool ReadSkString(const Pickle& pickle, PickleIterator* iter,
18 // Return true if the pickle/iterator contains a FontIdentity. If so, and if
20 SK_API bool ReadSkFontIdentity(const Pickle& pickle, PickleIterator* iter,
23 // Return true if str can be written into the request pickle.
24 SK_API bool WriteSkString(Pickle* pickle, const SkString& str)
    [all...]
  /external/chromium_org/android_webview/native/
state_serializer.h 10 class Pickle;
22 // Write and restore a WebContents to and from a pickle. Return true on
25 // Note that |pickle| may be changed even if function returns false.
27 Pickle* pickle) WARN_UNUSED_RESULT;
38 bool WriteHeaderToPickle(Pickle* pickle) WARN_UNUSED_RESULT;
41 Pickle* pickle) WARN_UNUSED_RESULT;
  /external/chromium_org/crypto/
secure_hash.h 11 class Pickle;
31 // |pickle| will contain the serialized data.
32 // Returns whether or not |pickle| was filled.
33 virtual bool Serialize(Pickle* pickle) = 0;
36 // |data_iterator| allows this to be used as part of a larger pickle.
37 // |pickle| holds the saved data.
  /external/chromium/chrome/browser/sessions/
session_command.cc 9 #include "base/pickle.h"
16 SessionCommand::SessionCommand(id_type id, const Pickle& pickle)
18 contents_(pickle.size(), 0) {
19 DCHECK(pickle.size() < std::numeric_limits<size_type>::max());
20 memcpy(contents(), pickle.data(), pickle.size());
30 Pickle* SessionCommand::PayloadAsPickle() const {
31 return new Pickle(contents(), static_cast<int>(size()));
session_command.h 13 class Pickle;
24 // . From a pickle, this is useful for commands whose length varies.
38 // id whose contents is populated from the contents of pickle.
39 SessionCommand(id_type id, const Pickle& pickle);
55 // Returns the contents as a pickle. It is up to the caller to delete the
56 // returned Pickle. The returned Pickle references the underlying data of
58 // pickle.
59 Pickle* PayloadAsPickle() const
    [all...]
  /external/chromium/net/http/
http_response_info.h 15 class Pickle;
33 // Initializes from the representation stored in the given pickle.
34 bool InitFromPickle(const Pickle& pickle, bool* response_truncated);
37 void Persist(Pickle* pickle,
http_vary_data.h 11 class Pickle;
47 // Initialize from a pickle that contains data generated by a call to the
54 bool InitFromPickle(const Pickle& pickle, void** pickle_iter);
58 void Persist(Pickle* pickle) const;
  /external/chromium_org/chrome/browser/sessions/
session_command.cc 9 #include "base/pickle.h"
16 SessionCommand::SessionCommand(id_type id, const Pickle& pickle)
18 contents_(pickle.size(), 0) {
19 DCHECK(pickle.size() < std::numeric_limits<size_type>::max());
20 memcpy(contents(), pickle.data(), pickle.size());
30 Pickle* SessionCommand::PayloadAsPickle() const {
31 return new Pickle(contents(), static_cast<int>(size()));
session_command.h 12 class Pickle;
23 // . From a pickle, this is useful for commands whose length varies.
38 // id whose contents is populated from the contents of pickle.
39 SessionCommand(id_type id, const Pickle& pickle);
55 // Returns the contents as a pickle. It is up to the caller to delete the
56 // returned Pickle. The returned Pickle references the underlying data of
58 // pickle.
59 Pickle* PayloadAsPickle() const
    [all...]
  /external/chromium_org/chrome/browser/ui/views/extensions/
browser_action_drag_data.h 16 class Pickle;
42 void WriteToPickle(Profile* profile, Pickle* pickle) const;
43 bool ReadFromPickle(Pickle* pickle);
  /external/chromium_org/net/http/
http_vary_data.h 11 class Pickle;
48 // Initialize from a pickle that contains data generated by a call to the
55 bool InitFromPickle(const Pickle& pickle, PickleIterator* pickle_iter);
59 void Persist(Pickle* pickle) const;
  /external/chromium_org/chrome/browser/nacl_host/
nacl_validation_cache.h 12 class Pickle;
32 void Serialize(Pickle* pickle) const;
33 bool Deserialize(const Pickle* pickle);
54 bool DeserializeImpl(const Pickle* pickle);
  /external/chromium_org/webkit/common/cursors/
webcursor_android.cc 13 bool WebCursor::SerializePlatformData(Pickle* pickle) const {
  /external/chromium_org/content/zygote/
zygote_linux.h 14 class Pickle;
46 void HandleReapRequest(int fd, const Pickle& pickle, PickleIterator iter);
49 const Pickle& pickle,
64 // Unpacks process type and arguments from |pickle| and forks a new process.
67 base::ProcessId ReadArgsAndFork(const Pickle& pickle,
79 const Pickle& pickle,
    [all...]
  /external/chromium/base/
pickle_unittest.cc 9 #include "base/pickle.h"
25 void VerifyResult(const Pickle& pickle) {
29 EXPECT_TRUE(pickle.ReadInt(&iter, &outint));
33 EXPECT_TRUE(pickle.ReadString(&iter, &outstr));
37 EXPECT_TRUE(pickle.ReadWString(&iter, &outwstr));
41 EXPECT_TRUE(pickle.ReadBool(&iter, &outbool));
43 EXPECT_TRUE(pickle.ReadBool(&iter, &outbool));
47 EXPECT_TRUE(pickle.ReadUInt16(&iter, &outuint16));
52 EXPECT_TRUE(pickle.ReadData(&iter, &outdata, &outdatalen))
67 Pickle pickle; local
130 Pickle pickle; local
140 Pickle pickle; local
150 Pickle pickle; local
159 Pickle pickle; local
168 Pickle pickle; local
192 Pickle pickle; local
216 Pickle pickle; local
301 Pickle pickle; local
314 Pickle pickle; local
    [all...]
pickle.cc 5 #include "base/pickle.h"
15 const int Pickle::kPayloadUnit = 64;
17 // We mark a read only pickle with a special capacity_.
22 Pickle::Pickle()
31 Pickle::Pickle(int header_size)
42 Pickle::Pickle(const char* data, int data_len)
61 Pickle::Pickle(const Pickle& other
    [all...]
  /external/chromium_org/base/
pickle.cc 5 #include "base/pickle.h"
14 const int Pickle::kPayloadUnit = 64;
18 PickleIterator::PickleIterator(const Pickle& pickle)
19 : read_ptr_(pickle.payload()),
20 read_end_ptr_(pickle.end_of_payload()) {
153 Pickle::Pickle()
162 Pickle::Pickle(int header_size
    [all...]
pickle_unittest.cc 9 #include "base/pickle.h"
26 void VerifyResult(const Pickle& pickle) {
27 PickleIterator iter(pickle);
30 EXPECT_TRUE(pickle.ReadInt(&iter, &outint));
34 EXPECT_TRUE(pickle.ReadString(&iter, &outstr));
38 EXPECT_TRUE(pickle.ReadWString(&iter, &outwstr));
42 EXPECT_TRUE(pickle.ReadBool(&iter, &outbool));
44 EXPECT_TRUE(pickle.ReadBool(&iter, &outbool));
48 EXPECT_TRUE(pickle.ReadUInt16(&iter, &outuint16))
72 Pickle pickle; local
136 Pickle pickle; local
146 Pickle pickle; local
156 Pickle pickle; local
165 Pickle pickle; local
174 Pickle pickle; local
198 Pickle pickle; local
226 Pickle pickle; local
318 Pickle pickle; local
331 Pickle pickle; local
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_node_data.h 20 class Pickle;
67 void WriteToPickle(Pickle* pickle) const;
68 bool ReadFromPickle(Pickle* pickle, void** iterator);
117 // Writes the data for a drag to |pickle|.
118 void WriteToPickle(Profile* profile, Pickle* pickle) const;
120 // Reads the data for a drag from a |pickle|.
121 bool ReadFromPickle(Pickle* pickle)
    [all...]
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_node_data.h 19 class Pickle;
66 void WriteToPickle(Pickle* pickle) const;
67 bool ReadFromPickle(Pickle* pickle, PickleIterator* iterator);
122 // Writes the data for a drag to |pickle|.
123 void WriteToPickle(Profile* profile, Pickle* pickle) const;
125 // Reads the data for a drag from a |pickle|.
126 bool ReadFromPickle(Pickle* pickle)
    [all...]
  /external/chromium/chrome/browser/ui/views/extensions/
browser_action_drag_data.h 20 class Pickle;
45 void WriteToPickle(Profile* profile, Pickle* pickle) const;
46 bool ReadFromPickle(Pickle* pickle);
browser_action_drag_data.cc 8 #include "base/pickle.h"
32 Pickle data_pickle;
41 Pickle drag_data_pickle;
67 Profile* profile, Pickle* pickle) const {
69 pickle->WriteBytes(&profile_id, sizeof(profile_id));
70 pickle->WriteString(id_);
71 pickle->WriteSize(index_);
74 bool BrowserActionDragData::ReadFromPickle(Pickle* pickle) {
    [all...]
  /external/chromium_org/base/posix/
unix_domain_socket_linux.h 14 class Pickle;
57 const Pickle& request);
66 const Pickle& request);

Completed in 850 milliseconds

1 2 3 4 5 6 7 8 9