Searched refs:Target (Results 1 - 25 of 88) sorted by relevance

1234

/haiku/src/servers/launch/
H A DTarget.cpp7 #include "Target.h"
10 Target::Target(const char* name) function in class:Target
19 Target::AddData(const char* name, BMessage& data)
26 Target::SetLaunched(bool launched)
33 Target::Execute()
H A DTarget.h17 class Target : public BaseJob { class in inherits:BaseJob
19 Target(const char* name);
H A DJob.h27 class Target;
65 ::Target* Target() const;
66 void SetTarget(::Target* target);
141 ::Target* fTarget;
153 virtual Target* FindTarget(const char* name) const = 0;
H A DLaunchDaemon.cpp47 #include "Target.h"
134 typedef std::map<BString, Target*> TargetMap;
146 virtual Target* FindTarget(const char* name) const;
193 void _AddJobs(Target* target, BMessage& message);
198 void _AddJob(Target* target, bool service,
200 void _InitJobs(Target* target);
201 void _LaunchJobs(Target* target,
203 void _StopJobs(Target* target, bool force);
210 void _AddTarget(Target* target);
244 Target* fInitTarge
[all...]
H A DJob.cpp20 #include "Target.h"
56 fTarget(other.Target()),
176 ::Target*
177 Job::Target() const function in class:Job
184 Job::SetTarget(::Target* target)
235 if (Target() != NULL && !Target()->HasLaunched())
277 ::Target* target = finder.FindTarget(requirement);
362 if (Target() != NULL)
363 _AddStringList(environment, Target()
[all...]
/haiku/src/apps/haikudepot/ui/
H A DGeneralContentScrollView.cpp24 BView* target = Target();
26 Target()->MoveTo(innerFrame.left, innerFrame.top);
27 Target()->ResizeTo(innerFrame.Width(), innerFrame.Height());
/haiku/src/apps/firstbootprompt/
H A DBootPrompt.cpp63 BLaunchRoster().Target("desktop");
71 BLaunchRoster().Target("installer");
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/resources/
H A Drsmisc.c193 char *Target; local
228 Target = NULL;
308 Target = ACPI_ADD_PTR (void, Aml, Info->Value);
309 ItemCount = ACPI_GET16 (Target) - ACPI_GET16 (Source);
329 Target = ACPI_ADD_PTR (void, Aml, (Info->Value + 2));
330 if (ACPI_GET16 (Target))
334 Target = ACPI_ADD_PTR (void, Aml, Info->Value);
335 ItemCount = ACPI_GET16 (Target) - ACPI_GET16 (Source);
394 Target = (char *) ACPI_ADD_PTR (void, Resource,
396 *(UINT16 **) Destination = ACPI_CAST_PTR (UINT16, Target);
596 char *Target; local
[all...]
/haiku/src/add-ons/kernel/network/ppp/shared/libppp/headers/
H A DPPPInterfaceListener.h28 BHandler *Target() const function in class:PPPInterfaceListener
50 { SetTarget(copy.Target()); return *this; }
/haiku/src/servers/net/
H A DAutoconfigClient.h25 const BMessenger& Target() const { return fTarget; } function in class:AutoconfigClient
H A DAutoconfigLooper.h27 BMessenger Target() const { return fTarget; } function in class:AutoconfigLooper
/haiku/src/kits/media/
H A DWriterPlugin.cpp26 Writer::Target() const function in class:Writer
/haiku/src/servers/registrar/
H A DWatchingService.cpp57 contains an entry \code (watcher->Target(), watcher) \endcode.
93 (Watcher::Target()), the old watcher is removed and deleted before the
105 RemoveWatcher(watcher->Target(), true);
106 fWatchers[watcher->Target()] = watcher;
119 (Watcher::Target()), the old watcher is removed and deleted before the
148 watcher_map::iterator it = fWatchers.find(watcher->Target());
217 if (error != B_OK && !watcher->Target().IsValid())
H A DWatcher.cpp68 // Target
73 Watcher::Target() const function in class:Watcher
H A DWatcher.h39 const BMessenger &Target() const;
/haiku/src/tests/system/boot/loader/
H A Dplatform_menu.cpp185 if (item->Target() != NULL)
186 (*item->Target())(menu, item);
195 if (item->Target() != NULL)
196 (*item->Target())(menu, item);
197 } else if (item->Target() == NULL || (*item->Target())(menu, item))
/haiku/src/apps/icon-o-matic/generic/gui/panel/color_picker/
H A DColorPickerPanel.h36 const BHandler* Target() const function in class:ColorPickerPanel
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/executer/
H A Dexconfig.c436 * Target - Where the status of the load will be stored
454 ACPI_OPERAND_OBJECT *Target,
468 if (Target->Common.DescriptorType == ACPI_DESC_TYPE_NAMED)
470 Target = AcpiNsGetAttachedObject (ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, Target));
472 if (Target->Common.Type != ACPI_TYPE_INTEGER)
474 ACPI_ERROR ((AE_INFO, "Type not integer: %X", Target->Common.Type));
478 Target->Integer.Value = 0;
656 Target->Integer.Value = 0xFFFFFFFFFFFFFFFF;
452 AcpiExLoadOp( ACPI_OPERAND_OBJECT *ObjDesc, ACPI_OPERAND_OBJECT *Target, ACPI_WALK_STATE *WalkState) argument
/haiku/src/tests/kits/app/bmessenger/
H A DMessengerAssignmentTester.cpp64 Target() should return NULL and NULL for looper.
75 CHK(messenger.Target(&looper) == NULL);
85 Target() should return the same values as for from.
100 CHK(from.Target(&resultLooper) == NULL);
110 CHK(messenger.Target(&resultLooper) == NULL);
120 Target() should return the same values as for from.
140 CHK(from.Target(&resultLooper) == handler);
150 CHK(messenger.Target(&resultLooper) == handler);
H A DTargetTester.cpp104 BHandler *Target(BLooper **looper) const
111 CHK(messenger.Target(NULL) == NULL);
115 BHandler *Target(BLooper **looper) const
127 CHK(messenger.Target(NULL) == NULL);
131 BHandler *Target(BLooper **looper) const
150 CHK(messenger.Target(NULL) == handler);
154 BHandler *Target(BLooper **looper) const
163 CHK(messenger.Target(NULL) == NULL);
167 BHandler *Target(BLooper **looper) const
176 CHK(messenger.Target(NUL
[all...]
H A DBMessengerTester.cpp45 CHK(messenger.Target(&resultLooper) == handler);
68 Target() should return NULL and NULL for looper.
77 CHK(messenger.Target(&looper) == NULL);
87 Target() should return NULL and NULL for looper.
96 CHK(messenger.Target(&looper) == NULL);
106 Target() should return NULL and NULL for looper.
117 CHK(messenger.Target(&looper) == NULL);
128 Target() should return NULL and the correct value for
143 CHK(messenger.Target(&resultLooper) == NULL);
155 Target() shoul
[all...]
/haiku/src/apps/terminal/
H A DTermScrollView.cpp29 if (BView* target = Target())
/haiku/src/tests/kits/interface/
H A DScrollViewSetBorderTest.cpp82 BView* view = fScrollView->Target();
83 BView* view2 = fScrollView2->Target();
/haiku/headers/private/app/
H A DLaunchRoster.h31 status_t Target(const char* name, const BMessage& data,
33 status_t Target(const char* name,
/haiku/src/apps/cortex/support/
H A DObservableHandler.cpp239 else if(IndexOfTarget(observer.Target(0)) != -1) {
252 err = AddTarget(observer.Target(0));
279 int32 index = IndexOfTarget(observer.Target(0));

Completed in 235 milliseconds

1234