/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/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);
|
/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/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/webkit/common/cursors/ |
webcursor_android.cc | 13 bool WebCursor::SerializePlatformData(Pickle* pickle) const {
|
/external/chromium_org/content/zygote/ |
zygote_linux.h | 16 class Pickle; 61 void HandleReapRequest(int fd, const Pickle& pickle, PickleIterator iter); 72 const Pickle& pickle, 87 // Unpacks process type and arguments from |pickle| and forks a new process. 90 base::ProcessId ReadArgsAndFork(const Pickle& pickle, 102 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" 17 const int Pickle::kPayloadUnit = 64; 21 PickleIterator::PickleIterator(const Pickle& pickle) 22 : read_ptr_(pickle.payload()), 23 read_end_ptr_(pickle.end_of_payload()) { 164 Pickle::Pickle() 173 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/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/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);
|