Symbol: LoadSettings
headers/private/debugger/user_interface/UserInterface.h
68
virtual status_t LoadSettings(const TeamUiSettings* settings)
src/add-ons/media/media-add-ons/dvb/DVBMediaNode.cpp
338
LoadSettings();
src/add-ons/media/media-add-ons/dvb/DVBMediaNode.h
149
void LoadSettings();
src/add-ons/media/media-add-ons/esound_sink/ESDSinkAddOn.cpp
85
LoadSettings();
src/add-ons/media/media-add-ons/esound_sink/ESDSinkAddOn.h
77
void LoadSettings();
src/add-ons/media/media-add-ons/opensound/OpenSoundAddOn.cpp
74
LoadSettings();
src/add-ons/media/media-add-ons/opensound/OpenSoundAddOn.h
58
void LoadSettings(void);
src/add-ons/network_settings/dialup/ConnectionOptionsAddon.h
45
virtual bool LoadSettings(BMessage *settings, BMessage *profile, bool isNew);
src/add-ons/network_settings/dialup/DialUpAddon.h
82
virtual bool LoadSettings(BMessage *settings, BMessage *profile, bool isNew)
src/add-ons/network_settings/dialup/DialUpView.cpp
317
if(!addon->LoadSettings(settingsPointer, profilePointer, isNew))
src/add-ons/network_settings/dialup/DialUpView.cpp
780
LoadSettings(false);
src/add-ons/network_settings/dialup/DialUpView.cpp
782
else if(!isNew && !LoadSettings(false)) {
src/add-ons/network_settings/dialup/DialUpView.cpp
785
LoadSettings(true);
src/add-ons/network_settings/dialup/DialUpView.cpp
786
} else if(isNew && !LoadSettings(true))
src/add-ons/network_settings/dialup/DialUpView.h
51
bool LoadSettings(bool isNew);
src/add-ons/network_settings/dialup/GeneralAddon.cpp
140
return fDeviceAddon->LoadSettings(fSettings, fProfile, false);
src/add-ons/network_settings/dialup/GeneralAddon.cpp
434
fDeviceAddon->LoadSettings(Addon()->Settings(), Addon()->Profile(), true);
src/add-ons/network_settings/dialup/GeneralAddon.cpp
526
fDeviceAddon->LoadSettings(Addon()->Settings(), Addon()->Profile(),
src/add-ons/network_settings/dialup/GeneralAddon.h
60
virtual bool LoadSettings(BMessage *settings, BMessage *profile, bool isNew);
src/add-ons/network_settings/dialup/IPCPAddon.h
50
virtual bool LoadSettings(BMessage *settings, BMessage *profile, bool isNew);
src/add-ons/network_settings/dialup/PPPoEAddon.h
47
virtual bool LoadSettings(BMessage *settings, BMessage *profile, bool isNew);
src/add-ons/screen_savers/slideshowsaver/LiveSettings.cpp
255
result = LoadSettings(&msg);
src/add-ons/screen_savers/slideshowsaver/LiveSettings.h
66
status_t LoadSettings();
src/add-ons/screen_savers/slideshowsaver/LiveSettings.h
67
status_t LoadSettings(BMessage *pmsg);
src/add-ons/screen_savers/slideshowsaver/SlideShowSaver.cpp
106
fSettings->LoadSettings();
src/add-ons/translators/shared/BaseTranslator.cpp
400
if (ioExtension && fSettings->LoadSettings(ioExtension) < B_OK)
src/add-ons/translators/shared/BaseTranslator.cpp
669
if (ioExtension && fSettings->LoadSettings(ioExtension) != B_OK)
src/add-ons/translators/shared/BaseTranslator.cpp
71
fSettings->LoadSettings();
src/add-ons/translators/shared/TranslatorSettings.cpp
203
result = LoadSettings(&msg);
src/add-ons/translators/shared/TranslatorSettings.h
63
status_t LoadSettings();
src/add-ons/translators/shared/TranslatorSettings.h
64
status_t LoadSettings(BMessage *pmsg);
src/apps/debugger/user_interface/cli/CommandLineUserInterface.h
38
virtual status_t LoadSettings(const TeamUiSettings* settings);
src/apps/debugger/user_interface/gui/GraphicalUserInterface.cpp
217
status_t result = fTeamWindow->LoadSettings((GuiTeamUiSettings*)settings);
src/apps/debugger/user_interface/gui/GraphicalUserInterface.h
40
virtual status_t LoadSettings(const TeamUiSettings* settings);
src/apps/debugger/user_interface/gui/inspector_window/InspectorWindow.h
67
status_t LoadSettings(
src/apps/debugger/user_interface/gui/team_window/BreakpointListView.h
65
void LoadSettings(const BMessage& settings);
src/apps/debugger/user_interface/gui/team_window/BreakpointsView.cpp
128
fListView->LoadSettings(breakpointListSettings);
src/apps/debugger/user_interface/gui/team_window/BreakpointsView.h
40
void LoadSettings(const BMessage& settings);
src/apps/debugger/user_interface/gui/team_window/ConsoleOutputView.h
32
void LoadSettings(const BMessage& settings);
src/apps/debugger/user_interface/gui/team_window/ImageFunctionsView.h
38
void LoadSettings(const BMessage& settings);
src/apps/debugger/user_interface/gui/team_window/ImageListView.h
32
void LoadSettings(const BMessage& settings);
src/apps/debugger/user_interface/gui/team_window/RegistersView.h
31
void LoadSettings(const BMessage& settings);
src/apps/debugger/user_interface/gui/team_window/StackTraceView.h
33
void LoadSettings(const BMessage& settings);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1330
fImageListView->LoadSettings(archive);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1333
fImageFunctionsView->LoadSettings(archive);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1336
fThreadListView->LoadSettings(archive);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1339
fVariablesView->LoadSettings(archive);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1342
fRegistersView->LoadSettings(archive);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1345
fStackTraceView->LoadSettings(archive);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1348
fBreakpointsView->LoadSettings(archive);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
1351
fConsoleOutputView->LoadSettings(archive);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.cpp
475
fInspectorWindow->LoadSettings(fUiSettings);
src/apps/debugger/user_interface/gui/team_window/TeamWindow.h
72
status_t LoadSettings(
src/apps/debugger/user_interface/gui/team_window/ThreadListView.h
36
void LoadSettings(const BMessage& settings);
src/apps/debugger/user_interface/gui/team_window/VariablesView.h
57
void LoadSettings(const BMessage& settings);
src/apps/debugger/user_interface/report/ReportUserInterface.h
34
virtual status_t LoadSettings(const TeamUiSettings* settings);
src/apps/deskcalc/CalcOptions.h
34
void LoadSettings(const BMessage* archive);
src/apps/deskcalc/CalcView.cpp
1183
fOptions->LoadSettings(archive);
src/apps/deskcalc/CalcView.cpp
1195
fExpressionTextView->LoadSettings(archive);
src/apps/deskcalc/ExpressionTextView.h
55
void LoadSettings(const BMessage* archive);
src/apps/launchbox/MainWindow.cpp
47
buttonsAdded = LoadSettings(fSettings);
src/apps/launchbox/MainWindow.cpp
72
if (!LoadSettings(settings))
src/apps/launchbox/MainWindow.h
56
bool LoadSettings(const BMessage* message);
src/apps/mail/MailApp.cpp
145
LoadSettings();
src/apps/mail/MailApp.h
112
status_t LoadSettings();
src/apps/mail/Settings.cpp
84
LoadSettings();
src/apps/mail/Settings.h
62
status_t LoadSettings();
src/apps/midiplayer/MidiPlayerWindow.cpp
73
LoadSettings();
src/apps/midiplayer/MidiPlayerWindow.h
69
void LoadSettings();
src/apps/serialconnect/SerialApp.cpp
88
LoadSettings();
src/apps/serialconnect/SerialApp.h
40
void LoadSettings();
src/kits/debugger/controllers/TeamDebugger.cpp
2484
fUserInterface->LoadSettings(uiSettings);
src/preferences/appearance/ColorsView.cpp
56
LoadSettings();
src/preferences/appearance/ColorsView.h
43
void LoadSettings();
src/preferences/bluetooth/BluetoothSettings.h
42
void LoadSettings();
src/preferences/bluetooth/BluetoothSettingsView.cpp
56
fSettings.LoadSettings();
src/preferences/bluetooth/RemoteDevicesView.cpp
112
LoadSettings();
src/preferences/bluetooth/RemoteDevicesView.h
33
void LoadSettings(void);
src/preferences/input/InputTouchpadPref.cpp
32
if (LoadSettings() != B_OK)
src/preferences/input/InputTouchpadPref.h
44
status_t LoadSettings();
src/preferences/screensaver/ScreenSaverWindow.h
38
void LoadSettings();
src/servers/print/PrintServerApp.cpp
97
LoadSettings();
src/servers/print/PrintServerApp.h
60
void LoadSettings();