Searched refs:target (Results 1 - 25 of 949) sorted by relevance

1234567891011>>

/haiku-fatelf/data/system/boot/
H A DInstallerFinishScript4 target=$1
6 if [ -z "$target" ]; then
11 if [ ! -d "$target" ]; then
12 echo "$target isn't mounted"
16 mkdir -p "$target/common/cache/tmp"
19 rm -f "$target/home/Desktop/Installer"
21 makebootable "$target"
/haiku-fatelf/src/apps/cortex/NodeManager/
H A Dnode_manager_impl.h49 inline void assert_locked(const ILockable* target) { argument
50 ASSERT(target);
51 ASSERT(target->isLocked());
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/client/
H A DVolumeEvent.cpp6 VolumeEvent::VolumeEvent(uint32 type, vnode_id target) argument
10 fTarget(target)
28 VolumeEvent::SetTarget(vnode_id target) argument
30 fTarget = target;
44 ConnectionBrokenEvent::ConnectionBrokenEvent(vnode_id target) argument
45 : VolumeEvent(CONNECTION_BROKEN_EVENT, target)
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/client/
H A DVolumeEvent.cpp6 VolumeEvent::VolumeEvent(uint32 type, vnode_id target) argument
9 fTarget(target)
27 VolumeEvent::SetTarget(vnode_id target) argument
29 fTarget = target;
43 ConnectionBrokenEvent::ConnectionBrokenEvent(vnode_id target) argument
44 : VolumeEvent(CONNECTION_BROKEN_EVENT, target)
/haiku-fatelf/src/kits/interface/
H A DColorTools.cpp57 static DB_INLINE void mix_color_func(rgb_color* target, const rgb_color other, uint8 amount) argument
59 target->red = (uint8)( ((int16(other.red)-int16(target->red))*amount)/255
60 + target->red );
61 target->green = (uint8)( ((int16(other.green)-int16(target->green))*amount)/255
62 + target->green );
63 target->blue = (uint8)( ((int16(other.blue)-int16(target->blue))*amount)/255
64 + target
69 blend_color_func(rgb_color* target, const rgb_color other, uint8 amount) argument
83 disable_color_func(rgb_color* target, const rgb_color background) argument
[all...]
/haiku-fatelf/src/add-ons/accelerants/neomagic/
H A DProposeDisplayMode.c54 * returns B_BAD_VALUE. It's called by the OS with target, low and high set to
63 * The target mode should be modified to correspond to the mode as it can be made. */
64 status_t PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const display_mode *high) argument
72 double target_refresh = ((double)target->timing.pixel_clock * 1000.0) /
74 (double)target->timing.h_total *
75 (double)target->timing.v_total
78 want_same_width = target->timing.h_display == target->virtual_width,
79 want_same_height = target->timing.v_display == target
[all...]
/haiku-fatelf/src/add-ons/accelerants/matrox/
H A DProposeDisplayMode.c109 * returns B_BAD_VALUE. It's called by the OS with target, low and high set to
118 * The target mode should be modified to correspond to the mode as it can be made. */
119 status_t PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const display_mode *high) argument
127 double target_refresh = ((double)target->timing.pixel_clock * 1000.0) /
129 (double)target->timing.h_total *
130 (double)target->timing.v_total
133 want_same_width = target->timing.h_display == target->virtual_width,
134 want_same_height = target->timing.v_display == target
[all...]
/haiku-fatelf/src/add-ons/accelerants/skeleton/
H A DProposeDisplayMode.c101 * returns B_BAD_VALUE. It's called by the OS with target, low and high set to
110 * The target mode should be modified to correspond to the mode as it can be made. */
111 status_t PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const display_mode *high) argument
119 double target_refresh = ((double)target->timing.pixel_clock * 1000.0) /
121 (double)target->timing.h_total *
122 (double)target->timing.v_total
125 want_same_width = target->timing.h_display == target->virtual_width,
126 want_same_height = target->timing.v_display == target
[all...]
/haiku-fatelf/src/add-ons/accelerants/via/
H A DProposeDisplayMode.c101 * returns B_BAD_VALUE. It's called by the OS with target, low and high set to
110 * The target mode should be modified to correspond to the mode as it can be made. */
111 status_t PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const display_mode *high) argument
119 double target_refresh = ((double)target->timing.pixel_clock * 1000.0) /
121 (double)target->timing.h_total *
122 (double)target->timing.v_total
125 want_same_width = target->timing.h_display == target->virtual_width,
126 want_same_height = target->timing.v_display == target
[all...]
/haiku-fatelf/src/add-ons/accelerants/nvidia/
H A DProposeDisplayMode.c108 * returns B_BAD_VALUE. It's called by the OS with target, low and high set to
117 * The target mode should be modified to correspond to the mode as it can be made. */
119 PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const display_mode *high) argument
127 double target_refresh = ((double)target->timing.pixel_clock * 1000.0)
128 / ((double)target->timing.h_total * (double)target->timing.v_total);
129 bool want_same_width = target->timing.h_display == target->virtual_width;
130 bool want_same_height = target->timing.v_display == target
[all...]
/haiku-fatelf/src/add-ons/translators/rtf/
H A Dconvert.h13 extern status_t convert_to_stxt(RTF::Header &header, BDataIO &target);
14 extern status_t convert_to_plain_text(RTF::Header &header, BPositionIO &target);
/haiku-fatelf/src/servers/net/
H A DAutoconfigClient.cpp13 AutoconfigClient::AutoconfigClient(const char* name, BMessenger target, argument
16 fTarget(target),
H A DSimpleMessageFilter.cpp21 \param target The target for messages matching one of the \a what values.
22 If \a target == NULL the messages will be discarded.
24 SimpleMessageFilter::SimpleMessageFilter(const uint32 *what, BHandler *target) argument
26 fTarget(target)
51 SimpleMessageFilter::Filter(BMessage *message, BHandler **target) argument
58 *target = fTarget;
/haiku-fatelf/src/add-ons/accelerants/et6x00/
H A DSetDisplayMode.c30 display_mode bounds, target; local
35 target = bounds = *mode_to_set;
36 if (PROPOSE_DISPLAY_MODE(&target, &bounds, &bounds) != B_OK) /* ==B_ERROR???/// */
39 result = doSetDisplayMode(&target);
42 switch (target.space) {
56 si->fbc.bytes_per_row = target.virtual_width * bpp;
57 si->dm = target;
/haiku-fatelf/src/apps/terminal/
H A DTermScrollView.cpp20 TermScrollBar(BRect frame, const char *name, BView *target, argument
23 BScrollBar(frame, name, target, min, max, direction)
29 if (BView* target = Target())
30 target->ScrollTo(0, newValue);
35 TermScrollView::TermScrollView(const char* name, BView* child, BView* target, argument
53 TermScrollBar* scrollBar = new TermScrollBar(frame, "_VSB_", target, 0,
59 target->TargetedByScrollView(this);
/haiku-fatelf/src/bin/gdb/gdb/
H A Dgdb_mbuild.sh134 /^[ ]*[-a-z0-9\.]*[ ]*[(]*--target=.*/ !d
135 s/^.*--target=//
166 echo "${target}: ${msg}"
200 # For each target, configure, build and test it.
202 echo "$alltarg" | while read target gdbopts simopts
206 dir=${builddir}/${target}
213 echo forcing ${target} ...
217 echo "${target}"
220 echo ${target} ...
228 echo ... removing partially configured ${target}
[all...]
/haiku-fatelf/src/add-ons/accelerants/nvidia_gpgpu/
H A DProposeDisplayMode.c104 * returns B_BAD_VALUE. It's called by the OS with target, low and high set to
113 * The target mode should be modified to correspond to the mode as it can be made. */
115 PROPOSE_DISPLAY_MODE(display_mode *target, const display_mode *low, const display_mode *high) argument
123 double target_refresh = ((double)target->timing.pixel_clock * 1000.0)
124 / ((double)target->timing.h_total * (double)target->timing.v_total);
125 bool want_same_width = target->timing.h_display == target->virtual_width;
126 bool want_same_height = target->timing.v_display == target
[all...]
/haiku-fatelf/src/add-ons/accelerants/vmware/
H A DSetDisplayMode.c18 display_mode bounds, target; local
24 target = bounds = *modeToSet;
25 if (PROPOSE_DISPLAY_MODE(&target, &bounds, &bounds) == B_ERROR)
28 bpp = BppForSpace(target.space);
30 TRACE("setting %dx%dx%d\n", target.virtual_width,
31 target.virtual_height, bpp);
33 gSi->dm = target;
43 ioctl(gFd, VMWARE_SET_MODE, &target, sizeof(target));
46 memset(gSi->fb, 0, target
[all...]
/haiku-fatelf/src/bin/coreutils/lib/
H A Dlinkat.c57 char *target = areadlink (file1); local
58 if (target)
69 free (target);
77 int result = symlink (target, file2);
79 free (target);
84 free (target);
89 free (target);
107 char *target; local
114 while (i-- && (target = areadlink (name)))
116 if (IS_ABSOLUTE_FILE_NAME (target))
199 char *target; local
[all...]
/haiku-fatelf/src/kits/network/libbind/isc/
H A Dbase64.c135 b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) { argument
158 target[datalength++] = Base64[output[0]];
159 target[datalength++] = Base64[output[1]];
160 target[datalength++] = Base64[output[2]];
161 target[datalength++] = Base64[output[3]];
180 target[datalength++] = Base64[output[0]];
181 target[datalength++] = Base64[output[1]];
183 target[datalength++] = Pad64;
185 target[datalength++] = Base64[output[2]];
186 target[datalengt
[all...]
/haiku-fatelf/headers/private/storage/
H A DPathMonitor.h26 BMessenger target);
29 BMessenger target);
30 static status_t StopWatching(BMessenger target);
/haiku-fatelf/src/tests/kits/interface/menu/menuworld/
H A DPostDispatchInvoker.cpp37 BHandler** target)
39 Looper()->DispatchMessage(message, *target);
42 pInvMsg->AddPointer("Dispatch Target", *target);
36 Filter(BMessage* message, BHandler** target) argument
/haiku-fatelf/src/apps/cortex/MediaRoutingView/
H A DMediaJack.cpp425 BView *target,
443 target->SetLowColor(M_GRAY_COLOR);
445 target->FillRect(r, B_SOLID_LOW);
450 target->BeginLineArray(4);
452 target->AddLine(r.LeftTop(),
455 target->AddLine(r.LeftTop() + BPoint(1.0, 0.0),
458 target->AddLine(p + BPoint(0.0, 5.0),
461 target->AddLine(p + BPoint(1.0, 5.0),
465 target->EndLineArray();
469 target
424 _drawInto( BView *target, BRect targetRect, int32 layout) argument
[all...]
/haiku-fatelf/src/add-ons/translators/jpeg/
H A Dexif_parser.h21 status_t convert_exif_to_message(BPositionIO& source, BMessage& target);
22 status_t convert_exif_to_message_etc(BPositionIO& source, BMessage& target,
/haiku-fatelf/src/apps/cortex/support/
H A DILockable.h99 Autolock(ILockable& target) : m_target(&target) { init(); } argument
100 Autolock(ILockable* target) : m_target( target) { init(); } argument
102 Autolock(const ILockable& target) : argument
103 m_target(const_cast<ILockable*>(&target)) { init(); }
104 Autolock(const ILockable* target) : argument
105 m_target(const_cast<ILockable*>( target)) { init(); }

Completed in 245 milliseconds

1234567891011>>