Searched refs:archive (Results 76 - 100 of 324) sorted by relevance

1234567891011>>

/haiku/src/bin/desklink/
H A DVolumeControl.h24 VolumeControl(BMessage* archive);
27 static VolumeControl* Instantiate(BMessage* archive);
28 virtual status_t Archive(BMessage* archive, bool deep = true) const;
/haiku/src/apps/networkstatus/
H A DNetworkStatusView.h39 NetworkStatusView(BMessage* archive);
42 static NetworkStatusView* Instantiate(BMessage* archive);
43 virtual status_t Archive(BMessage* archive, bool deep = true) const;
/haiku/src/apps/webpositive/
H A DDownloadProgressView.h30 DownloadProgressView(const BMessage* archive);
32 bool Init(BMessage* archive = NULL);
34 status_t SaveSettings(BMessage* archive);
H A DBrowsingHistory.cpp37 BrowsingHistoryItem::BrowsingHistoryItem(const BMessage* archive) argument
39 if (!archive)
42 if (archive->FindMessage("date time", &dateTimeArchive) == B_OK)
44 archive->FindString("url", &fURL);
45 archive->FindUInt32("invokations", &fInvokationCount);
55 BrowsingHistoryItem::Archive(BMessage* archive) const
57 if (!archive)
62 status = archive->AddMessage("date time", &dateTimeArchive);
64 status = archive->AddString("url", fURL.String());
66 status = archive
[all...]
/haiku/headers/os/locale/
H A DCollator.h42 BCollator(BMessage* archive);
70 status_t Archive(BMessage* archive, bool deep) const;
71 static BArchivable* Instantiate(BMessage* archive);
/haiku/src/kits/debugger/settings/
H A DTeamSettings.cpp102 TeamSettings::SetTo(const BMessage& archive, argument
107 status_t error = archive.FindString("teamName", &fTeamName);
113 for (int32 i = 0; archive.FindMessage("breakpoints", i, &childArchive)
130 for (int32 i = 0; archive.FindMessage("uisettings", i, &childArchive)
142 if (archive.FindMessage("filemanagersettings", &childArchive) == B_OK) {
148 if (archive.FindMessage("signalsettings", &childArchive) == B_OK) {
159 TeamSettings::WriteTo(BMessage& archive) const
161 status_t error = archive.AddString("teamName", fTeamName);
172 error = archive.AddMessage("breakpoints", &childArchive);
183 error = archive
[all...]
/haiku/src/preferences/keymap/
H A DStatusMenuField.h23 StatusMenuItem(BMessage* archive);
25 static BArchivable* Instantiate(BMessage* archive);
26 virtual status_t Archive(BMessage* archive,
/haiku/src/tools/locale/
H A DDefaultCatalog.cpp59 // version of the catalog archive structure, bump this if you change it!
272 BMessage archive; local
274 res = archive.AddString("class", "DefaultCatalog");
276 res = archive.AddInt32("c:sz", count);
278 res = archive.AddInt16("c:ver", kCatArchiveVersion);
280 res = archive.AddString("c:lang", fLanguageName.String());
282 res = archive.AddString("c:sig", fSignature.String());
284 res = archive.AddInt32("c:fpr", fFingerprint);
286 res = archive.Flatten(dataIO);
292 archive
[all...]
/haiku/src/apps/mediaplayer/playlist/
H A DUrlPlaylistItem.cpp29 UrlPlaylistItem::UrlPlaylistItem(const BMessage* archive) argument
32 if (archive->FindString("mediaplayer:url", &url) == B_OK)
50 UrlPlaylistItem::Instantiate(BMessage* archive) argument
52 if (validate_instantiation(archive, "UrlPlaylistItem"))
53 return new (std::nothrow) UrlPlaylistItem(archive);
/haiku/src/apps/deskcalc/
H A DCalcView.h46 static CalcView* Instantiate(BMessage* archive);
52 CalcView(BMessage* archive);
65 virtual status_t Archive(BMessage* archive, bool deep) const;
77 status_t SaveSettings(BMessage* archive) const;
97 status_t _LoadSettings(BMessage* archive);
/haiku/src/kits/locale/
H A DCollator.cpp52 BCollator::BCollator(BMessage* archive) argument
54 BArchivable(archive),
58 archive->FindBool("loc:punctuation", &fIgnorePunctuation);
66 if (archive->FindData("loc:collator", B_RAW_TYPE, &buffer, &size) == B_OK) {
183 BCollator::Archive(BMessage* archive, bool deep) const argument
185 status_t status = BArchivable::Archive(archive, deep);
190 status = archive->AddBool("loc:punctuation", fIgnorePunctuation);
203 status = archive->AddData("loc:collator", B_RAW_TYPE, buffer, size);
213 BCollator::Instantiate(BMessage* archive) argument
215 if (validate_instantiation(archive, "BCollato
[all...]
/haiku/src/libs/icon/message/
H A DMessageImporter.cpp88 BMessage archive; local
89 ret = archive.Unflatten(stream);
95 ret = _ImportPaths(&archive, paths);
104 ret = _ImportStyles(&archive, styles);
112 ret = _ImportShapes(&archive, paths, styles, icon->Shapes());
127 MessageImporter::_ImportPaths(const BMessage* archive, argument
131 status_t ret = archive->FindMessage("paths", &allPaths);
152 MessageImporter::_ImportStyles(const BMessage* archive, argument
156 status_t ret = archive->FindMessage("styles", &allStyles);
177 MessageImporter::_ImportShapes(const BMessage* archive, Containe argument
[all...]
/haiku/src/apps/icon-o-matic/generic/property/specific_properties/
H A DColorProperty.cpp43 ColorProperty::ColorProperty(BMessage* archive) argument
44 : Property(archive),
47 if (!archive)
50 if (archive->FindInt32("value", (int32*)&fValue) < B_OK)
77 ColorProperty::Instantiate(BMessage* archive) argument
79 if (validate_instantiation(archive, "ColorProperty"))
80 return new ColorProperty(archive);
H A DOptionProperty.cpp48 // archive constructor
49 OptionProperty::OptionProperty(BMessage* archive) argument
50 : Property(archive),
54 if (!archive)
57 if (archive->FindInt32("option", &fCurrentOptionID) < B_OK)
89 OptionProperty::Instantiate(BMessage* archive) argument
91 if (validate_instantiation(archive, "OptionProperty"))
92 return new (nothrow) OptionProperty(archive);
/haiku/src/tests/kits/interface/
H A DScrollViewTest.cpp72 BMessage archive; local
73 if (scroller->Archive(&archive/*, false*/) == B_OK) {
75 archive.PrintToStream();
79 BScrollView *second = (BScrollView *)BScrollView::Instantiate(&archive);
80 archive.MakeEmpty();
81 if (second != NULL && second->Archive(&archive) == B_OK) {
83 archive.PrintToStream();
/haiku/src/libs/icon/shape/
H A DReferenceImage.cpp72 ReferenceImage::ReferenceImage(BMessage* archive) argument
76 Unarchive(archive);
89 ReferenceImage::Unarchive(BMessage* archive) argument
92 status_t ret = IconObject::Unarchive(archive);
99 ret = archive->FindData("transformation", B_DOUBLE_TYPE,
108 BBitmap* bitmap = dynamic_cast<BBitmap*>(BBitmap::Instantiate(archive));
115 if(archive->FindUInt8("alpha", &alpha) < B_OK)
/haiku/src/libs/icon/transformer/
H A DStrokeTransformer.cpp38 BMessage* archive)
39 : Transformer(archive),
43 if (!archive)
47 if (archive->FindInt32("line cap", &mode) == B_OK)
50 if (archive->FindInt32("line join", &mode) == B_OK)
53 if (archive->FindInt32("inner join", &mode) == B_OK)
57 if (archive->FindDouble("width", &value) == B_OK)
60 if (archive->FindDouble("miter limit", &value) == B_OK)
63 if (archive->FindDouble("inner miter limit", &value) == B_OK)
66 if (archive
37 StrokeTransformer(VertexSource& source, BMessage* archive) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DSecurityContext.cpp49 User::User(BMessage* archive) argument
51 BArchivable(archive),
55 Unarchive(archive);
65 User::Archive(BMessage* archive, bool deep) const argument
67 if (!archive)
72 error = archive->AddString("name", fName.GetString());
75 error = archive->AddString("password", fPassword.GetString());
81 User::Instantiate(BMessage* archive) argument
83 if (!validate_instantiation(archive, "User"))
85 return new(std::nothrow) User(archive);
112 Unarchive(const BMessage* archive) argument
157 Share(BMessage* archive) argument
174 Archive(BMessage* archive, bool deep) const argument
190 Instantiate(BMessage* archive) argument
247 Unarchive(const BMessage* archive) argument
387 SecurityContext(BMessage* archive) argument
490 Archive(BMessage* archive, bool deep) const argument
566 Instantiate(BMessage* archive) argument
[all...]
/haiku/src/libs/alm/
H A DSharedSolver.cpp96 SharedSolver::SharedSolver(BMessage* archive) argument
98 BArchivable(archive),
207 SharedSolver::Archive(BMessage* archive, bool deep) const argument
209 return BArchivable::Archive(archive, deep);
214 SharedSolver::AllArchived(BMessage* archive) const
218 add it to our archive
223 archive it
225 BArchiver archiver(archive);
266 err = _AddConstraintToArchive(constraint, archive);
273 SharedSolver::AllUnarchived(const BMessage* archive) argument
312 _AddConstraintToArchive(Constraint* constraint, BMessage* archive) argument
513 Instantiate(BMessage* archive) argument
[all...]
/haiku/src/apps/cortex/ValControl/
H A DValControlSegment.cpp293 ValControlSegment::ValControlSegment(BMessage* archive) argument
294 : BView(archive)
297 archive->FindInt32("ulStyle", (int32*)&fUnderlineStyle);
302 ValControlSegment::Archive(BMessage* archive, bool deep) const argument
304 _Inherited::Archive(archive, deep);
306 archive->AddInt32("ulStyle", fUnderlineStyle);
/haiku/src/apps/cortex/support/
H A DObservableLooper.cpp90 BMessage* archive) :
91 BLooper(archive),
96 archive->FindInt64("quitTimeout", (int64*)&m_quitTimeout);
226 BMessage* archive,
231 // can't archive an object in limbo
235 status_t err = _inherited::Archive(archive, deep);
239 archive->AddInt64("quitTimeout", m_quitTimeout);
89 ObservableLooper( BMessage* archive) argument
225 Archive( BMessage* archive, bool deep) const argument
/haiku/src/apps/debugger/settings/
H A DDebuggerSettingsManager.cpp142 BMessage archive;
143 error = archive.Unflatten(&file);
149 for (int32 i = 0; archive.FindMessage("teamSettings", i, &childArchive)
177 // archive the recent team settings
178 BMessage archive;
186 error = archive.AddMessage("teamSettings", &childArchive);
198 return archive.Flatten(&file);
/haiku/src/tests/libs/alm/
H A DHelloWorld.cpp62 BMessage archive; local
63 view->Archive(&archive, true);
69 status_t err = BUnarchiver::InstantiateObject(&archive, clone);
/haiku/headers/os/app/
H A DNotification.h29 BNotification(BMessage* archive);
34 static BArchivable* Instantiate(BMessage* archive);
35 virtual status_t Archive(BMessage* archive, bool deep = true) const;
/haiku/headers/private/interface/
H A DZombieReplicantView.h51 virtual status_t Archive(BMessage* archive,

Completed in 389 milliseconds

1234567891011>>