Searched refs:setting (Results 1 - 25 of 39) sorted by path

12

/haiku/headers/private/debugger/settings/generic/
H A DSettings.h39 BVariant Value(Setting* setting) const;
41 bool SetValue(Setting* setting,
46 bool BoolValue(BoolSetting* setting) const
47 { return Value(setting).ToBool(); }
48 SettingsOption* OptionValue(OptionsSetting* setting) const;
49 BVariant RangeValue(RangeSetting* setting) const
50 { return Value(setting); }
70 virtual void SettingValueChanged(Setting* setting) = 0;
H A DSettingsDescription.h25 bool AddSetting(Setting* setting);
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_misc.c550 * tx_chain_select_legacy setting of 5 or 3 if ANTENNA_FIXED_B is
718 case 1: /* current setting */
733 case 1: /* current setting */
968 u_int32_t capability, u_int32_t setting, HAL_STATUS *status)
979 if (setting)
988 if (setting) {
996 if (setting) {
1010 AH_PRIVATE(ah)->ah_diagreg = setting;
1012 AH_PRIVATE(ah)->ah_diagreg = setting & 0x6; /* ACK+CTS */
1017 ah->ah_config.ath_hal_desc_tpc = (setting !
967 ar9300_set_capability(struct ath_hal *ah, HAL_CAPABILITY_TYPE type, u_int32_t capability, u_int32_t setting, HAL_STATUS *status) argument
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5210/
H A Dar5210_misc.c608 uint32_t capability, uint32_t setting, HAL_STATUS *status)
619 AH_PRIVATE(ah)->ah_diagreg = setting;
621 AH_PRIVATE(ah)->ah_diagreg = setting & 0x6; /* ACK+CTS */
629 setting, status);
702 * This merges in the diagnostic register setting with the default
607 ar5210SetCapability(struct ath_hal *ah, HAL_CAPABILITY_TYPE type, uint32_t capability, uint32_t setting, HAL_STATUS *status) argument
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/
H A Dar5416_misc.c486 u_int32_t capability, u_int32_t setting, HAL_STATUS *status)
492 setting &= ath_hal_eepromGet(ah, AR_EEP_RXMASK, NULL);
493 pCap->halRxChainMask = setting;
494 if (owl_get_ntxchains(setting) > 2)
500 setting &= ath_hal_eepromGet(ah, AR_EEP_TXMASK, NULL);
501 pCap->halTxChainMask = setting;
502 if (owl_get_ntxchains(setting) > 2)
510 if (setting) {
525 return ar5212SetCapability(ah, type, capability, setting, status);
485 ar5416SetCapability(struct ath_hal *ah, HAL_CAPABILITY_TYPE type, u_int32_t capability, u_int32_t setting, HAL_STATUS *status) argument
/haiku/src/add-ons/screen_savers/slideshowsaver/
H A DLiveSettings.cpp211 LiveSettings::NotifySettingChanged(uint32 setting) argument
219 (*I)->SettingChanged(setting);
H A DLiveSettings.h83 void NotifySettingChanged(uint32 setting);
H A DLiveSettingsObserver.h40 virtual void SettingChanged(uint32 setting) = 0;
H A DSlideShowSaver.cpp122 // a setting. For example, if the user changes a setting
126 SlideShowSaver::SettingChanged(uint32 setting) argument
128 switch (setting) {
214 // Read ticksize setting and set it as the delay
H A DSlideShowSaver.h48 virtual void SettingChanged(uint32 setting);
55 // reload ticksize setting and apply it
60 // reload directory setting and apply it
/haiku/src/apps/debugger/user_interface/gui/connection_config/config_handlers/
H A DNetworkConnectionConfigView.cpp86 Setting* setting = description->SettingAt(i); local
87 if (strcmp(setting->ID(), kPortSetting) == 0)
88 fPortSetting = setting;
89 else if (strcmp(setting->ID(), kHostSetting) == 0)
90 fHostSetting = setting;
/haiku/src/apps/debugger/user_interface/gui/util/
H A DSettingsMenu.cpp36 SettingMenuItem::SettingMenuItem(Setting* setting, const char* label, argument
40 fSetting(setting)
46 SettingMenuItem::SettingMenuItem(Setting* setting, BMenu* menu, argument
50 fSetting(setting)
88 MenuItem(Setting* setting, argument
92 SettingMenuItem(setting, label, message, shortcut, modifiers)
96 MenuItem(Setting* setting, BMenu* menu, BMessage* message = NULL) argument
98 SettingMenuItem(setting, menu, message)
109 message->AddPointer("setting", fSetting);
119 BoolMenuItem(BoolSetting* setting) argument
144 PrepareToShow(BLooper* parentLooper, BHandler* targetHandler, Settings* settings, OptionsSetting* setting) argument
168 OptionsMenuItem(OptionsSetting* setting, BMenu* menu) argument
225 AddBoolItem(BoolSetting* setting) argument
238 AddOptionsItem(OptionsSetting* setting) argument
337 Setting* setting; local
349 Setting* setting; local
[all...]
H A DSettingsMenu.h35 SettingMenuItem(Setting* setting,
38 SettingMenuItem(Setting* setting, BMenu* menu,
64 bool AddBoolItem(BoolSetting* setting);
65 bool AddOptionsItem(OptionsSetting* setting);
88 SettingMenuItem* _FindMenuItem(Setting* setting) const;
/haiku/src/apps/debugger/user_interface/gui/value/value_handlers/
H A DEnumerationValueHandler.cpp131 OptionsSettingImpl* setting)
136 status_t error = AddIntegerFormatOption(setting, "name", "Enum Name",
142 return IntegerValueHandler::AddIntegerFormatSettingOptions(_value, setting);
130 AddIntegerFormatSettingOptions(IntegerValue* _value, OptionsSettingImpl* setting) argument
H A DEnumerationValueHandler.h33 OptionsSettingImpl* setting);
H A DIntegerValueHandler.cpp255 OptionsSettingImpl* setting)
257 status_t error = AddIntegerFormatOption(setting, "signed", "Signed",
262 error = AddIntegerFormatOption(setting, "unsigned", "Unsigned",
267 error = AddIntegerFormatOption(setting, "hex", "Hexadecimal",
342 IntegerValueHandler::AddIntegerFormatOption(OptionsSettingImpl* setting, argument
347 if (option == NULL || !setting->AddOption(option))
364 // integer format setting
365 OptionsSettingImpl* setting = new(std::nothrow) OptionsSettingImpl( local
367 if (setting == NULL)
369 BReference<OptionsSettingImpl> settingReference(setting, tru
254 AddIntegerFormatSettingOptions(IntegerValue* value, OptionsSettingImpl* setting) argument
[all...]
H A DIntegerValueHandler.h42 OptionsSettingImpl* setting);
55 OptionsSettingImpl* setting, const char* id,
/haiku/src/kits/debugger/settings/
H A DTeamSettings.cpp132 TeamUiSettings* setting = NULL; local
133 error = factory.Create(childArchive, setting);
134 if (error == B_OK && !fUiSettings.AddItem(setting))
137 delete setting;
H A DTeamSignalSettings.cpp11 static const char* skSignalSettingName = "signal:setting";
106 BMessage setting; local
107 if (setting.AddInt32(skSignalNumberFieldName, signal) != B_OK
108 || setting.AddInt32(skSignalDispositionFieldName, disposition) != B_OK
109 || fValues.AddMessage(skSignalSettingName, &setting) != B_OK) {
128 BMessage setting; local
129 status_t error = fValues.FindMessage(skSignalSettingName, index, &setting);
133 error = setting.FindInt32(skSignalNumberFieldName, &signal);
137 return setting.FindInt32(skSignalDispositionFieldName, &disposition);
/haiku/src/kits/debugger/settings/generic/
H A DSettings.cpp41 Settings::Value(Setting* setting) const
46 return value.SetFromMessage(fValues, setting->ID()) == B_OK
47 ? value : setting->DefaultValue();
60 Setting* setting = fDescription->SettingByID(settingID);
61 return setting != NULL ? setting->DefaultValue() : value;
66 Settings::SetValue(Setting* setting, const BVariant& value) argument
71 const char* fieldName = setting->ID();
79 fListeners.ItemAt(i)->SettingValueChanged(setting);
91 Setting* setting local
[all...]
H A DSettingsDescription.cpp19 for (int32 i = 0; Setting* setting = SettingAt(i); i++)
20 setting->ReleaseReference();
41 for (int32 i = 0; Setting* setting = fSettings.ItemAt(i); i++) {
42 if (strcmp(setting->ID(), id) == 0)
43 return setting;
51 SettingsDescription::AddSetting(Setting* setting) argument
53 if (!fSettings.AddItem(setting))
56 setting->AcquireReference();
/haiku/src/kits/debugger/target_host_interface/network/
H A DNetworkTargetHostInterfaceInfo.cpp41 Setting* setting = new(std::nothrow) StringSettingImpl(kHostnameSetting,
43 BReference<Setting> settingsReference(setting, true);
44 if (setting == NULL)
46 if (!fDescription->AddSetting(setting))
49 setting = new(std::nothrow) BoundedSettingImpl(kPortSetting, "Port",
51 if (setting == NULL)
54 settingsReference.SetTo(setting, true);
55 if (!fDescription->AddSetting(setting))
/haiku/src/preferences/screen/
H A Dmultimon.cpp38 // retrieve value of setting "code"
40 GetSetting(BScreen *screen, uint16 code, uint32 *setting) argument
58 *setting = mode.timing.flags;
64 // set setting "code" to "value"
85 // retrieve n-th supported value of setting "code"
88 uint32 *setting)
107 *setting = mode.timing.flags;
87 GetNthSupportedSetting(BScreen *screen, uint16 code, int32 idx, uint32 *setting) argument
/haiku/src/servers/notification/
H A DNotificationWindow.cpp451 int32 setting; local
459 if (settings.FindInt32(kIconSizeName, &setting) != B_OK)
462 fIconSize = (icon_size)setting;
/haiku/src/tests/kits/game/chart/
H A DChartWindow.h171 current setting state and a next setting state. The UI
172 touches only the next setting state, never the one
175 struct setting { struct in class:ChartWindow
204 /* used to copy a whole setting in another. */
205 void Set(setting *master);
239 /* the current active setting used by the engine */
240 setting fCurrentSettings;
269 /* Engine setting related functions. */
272 /* Check and apply changes between a new setting stat
[all...]

Completed in 94 milliseconds

12