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

1 2 3 4 5 6 7

  /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...]
skia_utils_base.cc 9 bool ReadSkString(const Pickle& pickle, PickleIterator* iter, SkString* str) {
13 if (!pickle.ReadData(iter, &reply_text, &reply_length))
21 bool ReadSkFontIdentity(const Pickle& pickle, PickleIterator* iter,
28 if (!pickle.ReadUInt32(iter, &reply_id) ||
29 !pickle.ReadUInt32(iter, &reply_ttcIndex) ||
30 !pickle.ReadData(iter, &reply_text, &reply_length))
41 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/content/browser/renderer_host/
sandbox_ipc_linux.h 14 #include "base/pickle.h"
39 const Pickle& pickle,
44 const Pickle& pickle,
49 const Pickle& pickle,
54 const Pickle& pickle,
59 const Pickle& pickle
    [all...]
  /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_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/app_list/
fast_show_pickler.h 11 #include "base/pickle.h"
24 static scoped_ptr<Pickle> PickleAppListModelForFastShow(
27 // Given a Pickle created by PickleAppListModelForFastShow(), this creates an
30 Pickle* pickle);
41 static bool PickleAppListItem(Pickle* pickle, app_list::AppListItem* item);
  /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);
browser_action_drag_data.cc 8 #include "base/pickle.h"
33 Pickle data_pickle;
42 Pickle drag_data_pickle;
65 Profile* profile, Pickle* pickle) const {
66 pickle->WriteBytes(&profile, sizeof(profile));
67 pickle->WriteString(id_);
68 pickle->WriteUInt64(index_);
71 bool BrowserActionDragData::ReadFromPickle(Pickle* pickle) {
    [all...]
  /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/components/nacl/browser/
nacl_validation_cache.h 12 class Pickle;
34 void Serialize(Pickle* pickle) const;
35 bool Deserialize(const Pickle* pickle);
56 bool DeserializeImpl(const Pickle* pickle);
  /external/chromium_org/base/
pickle.cc 5 #include "base/pickle.h"
17 const int Pickle::kPayloadUnit = 64;
21 PickleIterator::PickleIterator(const Pickle& pickle)
22 : payload_(pickle.payload()),
24 end_index_(pickle.payload_size()) {
177 Pickle::Pickle()
186 Pickle::Pickle(int header_size
    [all...]
pickle_unittest.cc 9 #include "base/pickle.h"
29 void VerifyResult(const Pickle& pickle) {
30 PickleIterator iter(pickle);
33 EXPECT_TRUE(pickle.ReadInt(&iter, &outint));
37 EXPECT_TRUE(pickle.ReadString(&iter, &outstr));
41 EXPECT_TRUE(pickle.ReadWString(&iter, &outwstr));
45 EXPECT_TRUE(pickle.ReadBool(&iter, &outbool));
47 EXPECT_TRUE(pickle.ReadBool(&iter, &outbool));
51 EXPECT_TRUE(pickle.ReadUInt16(&iter, &outuint16))
71 Pickle pickle; local
127 Pickle pickle; local
137 Pickle pickle; local
147 Pickle pickle; local
156 Pickle pickle; local
165 Pickle pickle; local
220 Pickle pickle; local
248 Pickle pickle; local
340 Pickle pickle; local
353 Pickle pickle; local
    [all...]
  /external/chromium_org/base/posix/
unix_domain_socket_linux.h 17 class Pickle;
75 const Pickle& request);
84 const Pickle& request);
  /external/chromium_org/content/zygote/
zygote_linux.h 19 class Pickle;
64 void HandleReapRequest(int fd, const Pickle& pickle, PickleIterator iter);
75 const Pickle& pickle,
94 // Unpacks process type and arguments from |pickle| and forks a new process.
97 base::ProcessId ReadArgsAndFork(const Pickle& pickle,
109 const Pickle& pickle,
    [all...]
  /external/chromium_org/content/common/
child_process_sandbox_support_impl_shm_linux.cc 7 #include "base/pickle.h"
14 Pickle request;
  /external/chromium_org/content/common/cursors/
webcursor_android.cc 15 bool WebCursor::SerializePlatformData(Pickle* pickle) const {
webcursor_unittest.cc 5 #include "base/pickle.h"
17 Pickle ok_custom_pickle;
39 Pickle short_custom_pickle;
56 Pickle large_custom_pickle;
75 Pickle neg_custom_pickle;
94 Pickle scale_zero_custom_pickle;
113 Pickle scale_tiny_custom_pickle;
135 Pickle ok_custom_pickle;
170 Pickle broken_cursor_pickle;
194 Pickle ok_custom_pickle
    [all...]
  /external/chromium_org/components/bookmarks/browser/
bookmark_node_data.h 22 class Pickle;
77 void WriteToPickle(Pickle* pickle) const;
78 bool ReadFromPickle(Pickle* pickle, PickleIterator* iterator);
127 // Writes the data for a drag to |pickle|.
128 void WriteToPickle(const base::FilePath& profile_path, Pickle* pickle) const;
130 // Reads the data for a drag from a |pickle|.
131 bool ReadFromPickle(Pickle* pickle)
    [all...]
  /external/chromium_org/extensions/common/
user_script.cc 8 #include "base/pickle.h"
114 void UserScript::File::Pickle(::Pickle* pickle) const {
115 pickle->WriteString(url_.spec());
120 void UserScript::File::Unpickle(const ::Pickle& pickle, PickleIterator* iter) {
121 // Read the url from the pickle.
123 CHECK(pickle.ReadString(iter, &url));
127 void UserScript::Pickle(::Pickle* pickle) const
    [all...]
user_script.h 18 class Pickle;
86 void Pickle(::Pickle* pickle) const;
87 void Unpickle(const ::Pickle& pickle, PickleIterator* iter);
192 // Serialize the UserScript into a pickle. The content of the scripts and
194 void Pickle(::Pickle* pickle) const
    [all...]
  /external/chromium_org/ui/base/clipboard/
custom_data_helper.h 7 // each key-value pair into the pickle as a pair of string objects, and then
8 // write the binary data in the pickle to the native data transfer object.
19 class Pickle;
51 Pickle* pickle);
scoped_clipboard_writer.h 20 class Pickle;
62 void WritePickledData(const Pickle& pickle,

Completed in 1720 milliseconds

1 2 3 4 5 6 7