Searched refs:active (Results 51 - 75 of 248) sorted by relevance

12345678910

/haiku/src/apps/launchbox/
H A DMainWindow.h42 virtual void WorkspaceActivated(int32 workspace, bool active);
/haiku/src/apps/diskprobe/
H A DProbeView.h35 virtual void WindowActivated(bool active);
H A DDataView.h47 virtual void WindowActivated(bool active);
86 void SetActive(bool active);
/haiku/src/tools/anyboot/
H A Danyboot.cpp107 createPartition(int handle, int index, bool active, uint8_t type, argument
110 uint8_t bootable = active ? 0x80 : 0x0;
126 active ? 'b' : '-', offset, offset + size, partitionOffset,
146 if (active) {
/haiku/src/kits/tracker/infowindow/
H A DHeaderView.h62 virtual void WindowActivated(bool active);
H A DGeneralInfoView.h84 virtual void WindowActivated(bool active);
/haiku/src/apps/terminal/
H A DThemeView.h54 virtual void WindowActivated(bool active);
/haiku/src/apps/icon-o-matic/gui/
H A DGradientControl.h40 virtual void WindowActivated(bool active);
/haiku/src/add-ons/kernel/partitioning_systems/common/
H A DPartitionMap.cpp386 TRACE(("Partition::SetTo(): active: %x\n", descriptor->active));
389 descriptor->active, tableOffset, blockSize);
394 Partition::SetTo(off_t offset, off_t size, uint8 type, bool active, argument
401 fActive = active;
504 PrimaryPartition::SetTo(off_t offset, off_t size, uint8 type, bool active, argument
508 Partition::SetTo(offset, size, type, active, 0, blockSize);
561 descriptor->active = Active() ? 0x80 : 0x00;
678 LogicalPartition::SetTo(off_t offset, off_t size, uint8 type, bool active, argument
683 Partition::SetTo(offset, size, type, active, tableOffse
[all...]
/haiku/src/add-ons/input_server/devices/easypen/
H A DEasyPenInputDevice.cpp68 bool active; member in struct:tablet_device
171 device->active = true;
190 device->active = false;
233 while (dev->active) {
329 active = false;
/haiku/src/add-ons/disk_systems/intel/
H A DPartitionMapAddOn.cpp193 bool active = false; local
196 primary->SetTo(child->Offset(), child->Size(), type.Type(), active,
322 bool active = get_driver_boolean_parameter(handle, "active", false, true);
327 partition->SetActive(active);
375 get_driver_boolean_parameter(handle, "active", false, true);
491 bool active = get_driver_boolean_parameter(handle, "active", false, true);
551 primary->SetTo(offset, size, type.Type(), active, partition->BlockSize());
/haiku/src/apps/icon-o-matic/generic/gui/scrollview/
H A DScrollView.cpp103 virtual void WindowActivated(bool active);
105 void SetActive(bool active);
245 ScrollCorner::WindowActivated(bool active) argument
247 if (active != (fState & STATE_WINDOW_ACTIVE)) {
249 if (active)
260 ScrollCorner::SetActive(bool active) argument
262 if (active != IsActive()) {
264 if (active)
/haiku/src/add-ons/kernel/drivers/network/ether/intel22x/dev/igc/
H A Digc_phy.h15 s32 igc_null_lplu_state(struct igc_hw *hw, bool active);
24 s32 igc_set_d3_lplu_state_generic(struct igc_hw *hw, bool active);
H A Digc_api.c541 * @active: boolean used to enable/disable lplu
546 * and SmartSpeed is disabled when active is true, else clear lplu for D0
552 s32 igc_set_d0_lplu_state(struct igc_hw *hw, bool active) argument
555 return hw->phy.ops.set_d0_lplu_state(hw, active);
563 * @active: boolean used to enable/disable lplu
568 * and SmartSpeed is disabled when active is true, else clear lplu for D3
574 s32 igc_set_d3_lplu_state(struct igc_hw *hw, bool active) argument
577 return hw->phy.ops.set_d3_lplu_state(hw, active);
/haiku/src/add-ons/kernel/bus_managers/ps2/
H A Dps2_dev.h27 bool active; member in struct:ps2_dev
/haiku/headers/os/package/
H A DPackageRoster.h93 const BPackageInfo info, bool* active);
/haiku/src/servers/app/decorator/
H A DDefaultWindowBehaviour.h97 int8 vertical, bool active);
/haiku/src/system/kernel/scheduler/
H A Dscheduler_thread.h80 inline void UpdateActivity(bigtime_t active);
484 ThreadData::UpdateActivity(bigtime_t active) argument
491 fMeasureAvailableTime += active;
492 fMeasureAvailableActiveTime += active;
/haiku/src/add-ons/kernel/drivers/midi/usb_midi/
H A Dusb_midi.h93 bool active; member in struct:usbmidi_device_info
/haiku/src/apps/haikudepot/textview/
H A DTextDocumentView.h33 virtual void WindowActivated(bool active);
/haiku/src/add-ons/input_server/methods/pen/
H A DPenInputServerMethod.cpp207 status_t PenInputServerMethod::MethodActivated(bool active) argument
209 fEnabled = active;
212 if (active)
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/
H A Dar5212_rfgain.c76 gv->active = AH_TRUE;
82 gv->active = AH_TRUE;
288 if (!gv->active || !ahp->ah_phyPowerOn)
/haiku/src/apps/haikudepot/ui/
H A DApp.cpp394 // Set if the package is active
399 bool active = false; local
402 BPackageKit::B_PACKAGE_INSTALLATION_LOCATION_SYSTEM, info, &active);
404 fprintf(stderr, "Could not check if package was active in system: %s\n",
408 if (!active) {
410 BPackageKit::B_PACKAGE_INSTALLATION_LOCATION_HOME, info, &active);
413 "Could not check if package was active in home: %s\n",
419 if (active) {
/haiku/src/apps/activitymonitor/
H A DDataSource.cpp1010 bigtime_t active = info.CPUActiveTime(fCPU); local
1012 int64 percent = int64(1000.0 * (active - fPreviousActive)
1019 fPreviousActive = active;
1155 bigtime_t active = 0; local
1158 active += info.CPUActiveTime(cpu);
1163 int64 percent = int64(1000.0 * (active - fPreviousActive)
1170 fPreviousActive = active;
/haiku/src/apps/magnify/
H A DMagnify.cpp378 bool active = fFatBits->Active(); local
472 if (active) {
479 if (active)
484 if (active)
488 if (active)
492 if (active) {
501 if (active)
505 if (active)
510 if (active)
514 if (active)
1644 WindowActivated(bool active) argument
[all...]

Completed in 173 milliseconds

12345678910