Searched refs:target (Results 26 - 50 of 732) sorted by relevance

1234567891011>>

/haiku/src/apps/icon-o-matic/generic/gui/scrollview/
H A DScroller.cpp32 // Sets a new scroll target. Notifies the old and the new target
35 Scroller::SetScrollTarget(Scrollable* target) argument
38 if (oldTarget != target) {
40 // Notify the old target, if it doesn't know about the change.
43 fScrollTarget = target;
44 // Notify the new target, if it doesn't know about the change.
45 if (target && target->ScrollSource() != this)
46 target
[all...]
/haiku/src/add-ons/accelerants/via/
H A DSetDisplayMode.c47 * We don't use bounds here by making sure bounds and target are the same struct!
49 display_mode /*bounds,*/ target; local
58 target /*= bounds*/ = *mode_to_set;
60 LOG(1, ("SETMODE: (ENTER) initial modeflags: $%08x\n", target.flags));
61 LOG(1, ("SETMODE: requested target pixelclock %dkHz\n", target.timing.pixel_clock));
63 target.virtual_width, target.virtual_height));
66 if (PROPOSE_DISPLAY_MODE(&target, &target,
[all...]
/haiku/src/add-ons/accelerants/radeon/
H A DProposeDisplayMode.c134 Validate a target display mode is both
145 general_pll_info *pll, display_mode *target,
158 SHOW_FLOW( 4, "X %d, virtX %d", target->timing.h_display, target->virtual_width);
161 if (target->timing.h_total * target->timing.v_total == 0)
167 (((uint64)target->timing.pixel_clock * 1000) << FIX_SHIFT) /
168 ((uint64)target->timing.h_total * target->timing.v_total);
170 want_same_width = target
144 Radeon_ProposeDisplayMode(shared_info *si, crtc_info *crtc, general_pll_info *pll, display_mode *target, const display_mode *low, const display_mode *high) argument
627 PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const display_mode *high) argument
[all...]
/haiku/src/apps/powerstatus/
H A DDriverInterface.cpp22 Monitor::StartWatching(BHandler* target) argument
24 if (fWatcherList.HasItem(target))
27 fWatcherList.AddItem(target);
33 Monitor::StopWatching(BHandler* target) argument
35 return fWatcherList.RemoveItem(target);
68 PowerStatusDriverInterface::StartWatching(BHandler* target) argument
72 status_t status = Monitor::StartWatching(target);
102 PowerStatusDriverInterface::StopWatching(BHandler* target) argument
115 return Monitor::StopWatching(target);
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DVolumeEvent.h21 VolumeEvent(uint32 type, vnode_id target = -1);
26 void SetTarget(vnode_id target);
28 // a node ID identifying the target volume (usually the ID
39 ConnectionBrokenEvent(vnode_id target = -1);
/haiku/src/add-ons/accelerants/neomagic/
H A DSetDisplayMode.c49 * We don't use bounds here by making sure bounds and target are the same struct!
51 display_mode /*bounds,*/ target; local
60 target /*= bounds*/ = *mode_to_set;
62 LOG(1, ("SETMODE: (ENTER) initial modeflags: $%08x\n", target.flags));
63 LOG(1, ("SETMODE: requested target pixelclock %dkHz\n", target.timing.pixel_clock));
65 target.virtual_width, target.virtual_height));
68 if (PROPOSE_DISPLAY_MODE(&target, &target,
[all...]
/haiku/src/apps/icon-o-matic/generic/gui/
H A DMouseWheelFilter.h29 MouseWheelFilter(MouseWheelTarget* target) argument
31 fTarget(target),
38 virtual filter_result Filter(BMessage* message, BHandler** target) argument
49 *target = fTargetHandler;
/haiku/src/apps/haikudepot/ui/
H A DMessagePackageListener.cpp18 MessagePackageListener::MessagePackageListener(BHandler* target) argument
20 fTarget(target),
59 OnePackageMessagePackageListener::OnePackageMessagePackageListener(BHandler* target) argument
61 MessagePackageListener(target)
H A DGeneralContentScrollView.cpp11 const char* name, BView* target)
13 BScrollView(name, target, 0, false, true, B_NO_BORDER)
24 BView* target = Target(); local
25 if (target != NULL) {
10 GeneralContentScrollView( const char* name, BView* target) argument
H A DGeneralContentScrollView.h18 GeneralContentScrollView(const char* name, BView* target);
/haiku/src/apps/showimage/
H A DSupportingAppsMenu.h18 void update_supporting_apps_menu(BMenu* menu, BMimeType* type, uint32 what, BHandler* target);
/haiku/src/preferences/datatranslations/
H A DDataTranslations.cpp62 Installs the given entry in the target directory either by moving
66 DataTranslationsApplication::_Install(BDirectory& target, BEntry& entry) argument
69 status_t status = entry.MoveTo(&target, NULL, true);
106 BDirectory target; local
107 status = target.SetTo(path.Path());
109 if (!target.Contains("Translators"))
110 status = target.CreateDirectory("Translators", &target);
112 status = target.SetTo(&target, "Translator
[all...]
/haiku/headers/os/app/
H A DMessageRunner.h14 BMessageRunner(BMessenger target,
17 BMessageRunner(BMessenger target,
20 BMessageRunner(BMessenger target,
23 BMessageRunner(BMessenger target,
35 static status_t StartSending(BMessenger target,
38 static status_t StartSending(BMessenger target,
46 static int32 _RegisterRunner(BMessenger target,
51 void _InitData(BMessenger target,
/haiku/src/kits/media/
H A DWriterPlugin.cpp33 Writer::Setup(BDataIO* target) argument
35 fTarget = target;
/haiku/src/apps/haikudepot/util/
H A DCollector.h22 VectorCollector(std::vector<T>& target) argument
24 fTarget(target)
/haiku/src/servers/registrar/
H A DWatcher.cpp24 // Description: A Watcher represents a target of a watching service.
36 \brief A Watcher represents a target of a watching service.
39 specifies the target to which notification messages shall be sent.
40 SendMessage() actually sends the message to the target. It can be
45 \brief The watcher's message target.
49 /*! \brief Creates a new watcher with a specified target.
54 \param target The watcher's message target.
56 Watcher::Watcher(const BMessenger &target) argument
57 : fTarget(target)
[all...]
H A DEventMaskWatcher.cpp50 /*! \brief Creates a new EventMaskWatcher with a given target and event mask.
51 \param target The watcher's message target.
54 EventMaskWatcher::EventMaskWatcher(const BMessenger &target, uint32 eventMask) argument
55 : Watcher(target),
H A DPackageWatchingManager.cpp77 BMessenger target; local
80 if ((error = request->FindMessenger("target", &target)) != B_OK
85 Watcher* watcher = new(std::nothrow) EventMaskWatcher(target, eventMask);
98 BMessenger target; local
100 if ((error = request->FindMessenger("target", &target)) != B_OK)
103 if (!fWatchingService.RemoveWatcher(target))
/haiku/src/tests/add-ons/kernel/kernelland_emu/
H A Dvm.cpp33 user_memset(void* target, char data, size_t length) argument
35 memset(target, data, length);
/haiku/src/add-ons/accelerants/skeleton/
H A DSetDisplayMode.c47 * We don't use bounds here by making sure bounds and target are the same struct!
49 display_mode /*bounds,*/ target; local
58 target /*= bounds*/ = *mode_to_set;
60 LOG(1, ("SETMODE: (ENTER) initial modeflags: $%08x\n", target.flags));
61 LOG(1, ("SETMODE: requested target pixelclock %dkHz\n", target.timing.pixel_clock));
63 target.virtual_width, target.virtual_height));
66 if (PROPOSE_DISPLAY_MODE(&target, &target,
[all...]
/haiku/src/add-ons/kernel/drivers/graphics/intel_extreme/
H A Dintel_extreme_private.h48 find_reg(const intel_info& info, uint32 target) argument
50 if (REGISTER_BLOCK(target) != REGS_FLAT) {
52 return target;
56 return target;
60 switch (target) {
70 return target;
/haiku/src/kits/app/
H A DTokenSpace.cpp131 BTokenSpace::SetHandlerTarget(int32 token, BDirectMessageTarget* target) argument
142 if (iterator->second.target != NULL)
143 iterator->second.target->Release();
145 iterator->second.target = target;
146 if (target != NULL)
147 target->Acquire();
165 if (iterator->second.target != NULL)
166 iterator->second.target->Acquire();
168 *_target = iterator->second.target;
[all...]
/haiku/src/tests/kits/app/bmessenger/
H A DSMInvoker.cpp46 SMInvoker1::Invoke(BMessenger &target, BHandler *replyHandler, argument
50 status_t result = target.SendMessage(MSG_TEST, replyTo);
68 SMInvoker2::Invoke(BMessenger &target, BHandler *replyHandler, argument
74 status_t result = target.SendMessage(message, replyTo, fTimeout);
92 SMInvoker3::Invoke(BMessenger &target, BHandler *replyHandler, argument
99 status_t result = target.SendMessage(message, replyTo, fTimeout);
115 SMInvoker4::Invoke(BMessenger &target, BHandler *replyHandler, argument
120 status_t result = target.SendMessage(MSG_TEST, fReplyMessage);
140 SMInvoker5::Invoke(BMessenger &target, BHandler *replyHandler, argument
147 status_t result = target
[all...]
/haiku/src/apps/cortex/support/
H A Dobserve.h56 // observable (target).
60 // Requests that a given observable (target) stop
75 // messages sent by the Observable (target)
77 // sent when the target is no longer needed; the
79 // to release (allow the deletion of) the target
80 // - "target" (BMessenger)
86 // - "target" (BMessenger)
92 // - "target" (BMessenger)
98 // - "target" (BMessenger)
102 // sent when the target receivin
152 observer_handle( const BMessenger& observer, _observable_t* target, bigtime_t timeout =B_INFINITE_TIMEOUT) argument
[all...]
/haiku/src/add-ons/accelerants/matrox/engine/
H A Dmga_crtc2.c13 status_t g400_crtc2_set_timing(display_mode target) argument
19 if ((!(target.flags & TV_BITS)) || (si->ps.card_type <= G400MAX))
24 if ((target.timing.h_display & 0x07) | (target.timing.h_sync_start & 0x07) |
25 (target.timing.h_sync_end & 0x07) | (target.timing.h_total & 0x07))
38 CR2W(HPARAM, ((((target.timing.h_display - 8) & 0x0fff) << 16) |
39 ((target.timing.h_total - 8) & 0x0fff)));
40 CR2W(HSYNC, ((((target.timing.h_sync_end - 8) & 0x0fff) << 16) |
41 ((target
[all...]

Completed in 308 milliseconds

1234567891011>>