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

<<111213

/haiku/headers/os/interface/
H A DView.h159 BView(BMessage* archive);
160 static BArchivable* Instantiate(BMessage* archive);
161 virtual status_t Archive(BMessage* archive,
163 virtual status_t AllUnarchived(const BMessage* archive);
164 virtual status_t AllArchived(BMessage* archive) const;
H A DTextView.h65 BTextView(BMessage* archive);
69 static BArchivable* Instantiate(BMessage* archive);
70 virtual status_t Archive(BMessage* archive,
H A DChannelControl.h27 BChannelControl(BMessage* archive);
/haiku/src/apps/deskbar/
H A DResourceSet.cpp820 BMessage archive; local
821 if (archive.Unflatten(&stream) == B_OK) {
822 bitmap = new BitmapTypeItem(&archive);
H A DBarView.h149 status_t AddItem(BMessage* archive, DeskbarShelf shelf,
H A DStatusView.cpp937 TReplicantTray::AddIcon(BMessage* archive, int32* id, const entry_ref* addOn) argument
939 if (archive == NULL || id == NULL)
951 status_t status = archive->FindString("add_on", &signature);
979 if (archive->what == B_ARCHIVED_OBJECT)
980 archive->what = 0;
982 BRect originalBounds = archive->FindRect("_frame");
987 status = fShelf->AddReplicant(archive, BPoint(1, 1));
/haiku/src/kits/storage/disk_device/
H A DDiskDeviceRoster.cpp733 BMessage archive;
735 error = reply.FindMessage("device", &archive);
737 error = device->_Unarchive(&archive);
/haiku/src/apps/sudoku/
H A DSudokuWindow.cpp470 BMessage archive; local
471 if (message->FindMessage("field", &archive) == B_OK) {
472 SudokuField* field = new SudokuField(&archive);
/haiku/src/apps/activitymonitor/
H A DActivityView.cpp592 ActivityView::ActivityView(BMessage* archive) argument
593 : BView(archive)
595 _Init(archive);
672 ActivityView::Instantiate(BMessage* archive) argument
674 if (!validate_instantiation(archive, "ActivityView"))
677 return new ActivityView(archive);
/haiku/src/add-ons/screen_savers/slideshowsaver/
H A DSlideShowSaver.cpp93 SlideShowSaver::SlideShowSaver(BMessage *archive, image_id image) argument
95 BScreenSaver(archive, image), fLock("SlideShow Lock")
/haiku/src/kits/interface/
H A DLayout.cpp461 BLayout::AllArchived(BMessage* archive) const
463 return BLayoutItem::AllArchived(archive);
H A DAbstractSpinner.cpp205 LabelLayoutItem(BMessage* archive);
235 TextViewLayoutItem(BMessage* archive);
/haiku/src/apps/remotedesktop/
H A DRemoteView.cpp995 BMessage archive; local
999 archive.AddInt32("ops", op);
1008 archive.AddPoint("pts", point);
1022 BShape shape(&archive);
/haiku/src/kits/tracker/
H A DViewState.h61 static BColumn* InstantiateFromMessage(const BMessage &archive,
/haiku/src/apps/webpositive/
H A DBrowserWindow.h112 virtual status_t Archive(BMessage* archive, bool deep =true) const;
H A DBrowserWindow.cpp1240 BrowserWindow::Archive(BMessage* archive, bool deep) const argument
1242 status_t ret = archive->AddRect("window frame", Frame());
1251 ret = archive->AddString("tab", view->MainFrameURL());
/haiku/src/bin/unzip/
H A Dfileio.c1512 ZCONST char *zfn; /* name of zip archive */
1513 ZCONST char *efn; /* name of archive entry being processed */
1813 time_t existing, archive; variable
1891 archive = z_utime.mtime;
1899 archive = dos_to_unix_time(G.lrec.last_mod_dos_datetime);
1908 archive = dos_to_unix_time(G.lrec.last_mod_dos_datetime);
1911 TTrace((stderr, "check_for_newer: existing %lu, archive %lu, e-a %ld\n",
1912 (ulg)existing, (ulg)archive, (long)(existing-archive)));
1914 return (existing >= archive);
[all...]
/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp237 virtual status_t Archive(BMessage* archive, bool deep = true) const;
238 static BArchivable* Instantiate(BMessage* archive);
669 SysInfoView::Archive(BMessage* archive, bool deep) const argument
676 result = archive->AddString("add_on", kSignature);
680 result = archive->AddString("class", "SysInfoView");
687 SysInfoView::Instantiate(BMessage* archive) argument
689 if (!validate_instantiation(archive, "SysInfoView"))
/haiku/src/apps/terminal/
H A DTermView.cpp223 TermView::TermView(BMessage* archive) argument
225 BView(archive),
240 if (archive->FindInt32("encoding", (int32*)&fEncoding) < B_OK)
242 if (archive->FindInt32("columns", (int32*)&fColumns) < B_OK)
244 if (archive->FindInt32("rows", (int32*)&fRows) < B_OK)
248 if (archive->HasInt32("argc"))
249 archive->FindInt32("argc", &argc);
253 archive->FindString("argv", i, (const char**)&argv[i]);
256 // TODO: Retrieve colors, history size, etc. from archive
262 if ((archive
[all...]
H A DTermView.h63 TermView(BMessage* archive);
/haiku/src/bin/desklink/
H A DMediaReplicant.cpp121 MediaReplicant(BMessage* archive);
/haiku/src/bin/rc/
H A Dparser.y131 %type <d> archive array arrayfields data expr message msgfield
357 archive
456 | archive { $$ = cast($1.type, $1); }
466 | typecast archive { $$ = cast($1, $2); }
/haiku/src/kits/translation/
H A DTranslatorRoster.cpp697 BTranslatorRoster::Private::StoreTranslators(BMessage& archive) argument
707 archive.AddString("be:translator_path", path.Path());
/haiku/src/add-ons/kernel/file_systems/udf/
H A DUdfStructures.h1873 archive:1, member in struct:icb_entry_tag::flags_accessor::__anon10

Completed in 170 milliseconds

<<111213