Searched refs:target (Results 226 - 250 of 949) sorted by relevance

1234567891011>>

/haiku-fatelf/src/bin/rcs/
H A Drcsrev.c398 * The last delta (target delta) is returned.
667 int expandsym(source, target)
669 struct buf *target;
671 * the number to target, but replaces all symbolic fields in the
678 return fexpandsym(source, target, (RILE*)0);
682 fexpandsym(source, target, fp)
684 struct buf *target;
694 bufalloc(target, 1);
695 tp = target->string;
707 bufscpy(target, prevre
868 struct hshentry * target; local
[all...]
/haiku-fatelf/src/bin/gdb/gdb/
H A Dax-general.c187 aop_if_goto). We assume we don't know the target offset yet,
189 for the target, and return the offset in EXPR of that space, so we
190 can backpatch it once we do know the target offset. Use ax_label
208 ax_label (struct agent_expr *x, int patch, int target)
212 if (target < 0 || target >= 0xffff)
213 error ("GDB bug: ax-general.c (ax_label): label target out of range");
215 x->buf[patch] = (target >> 8) & 0xff;
216 x->buf[patch + 1] = target & 0xff;
393 /* Jump target tabl
207 ax_label(struct agent_expr *x, int patch, int target) argument
468 int target = read_const (ax, i + 1, 2); local
[all...]
/haiku-fatelf/src/add-ons/accelerants/matrox/engine/
H A Dmga_general.c952 status_t gx00_general_validate_pic_size (display_mode *target, uint32 *bytes_per_row, bool *acc_mode) argument
969 switch (target->space)
977 LOG(8,("INIT: unknown color space: 0x%08x\n", target->space));
985 switch (target->space)
993 LOG(8,("INIT: unknown color space: 0x%08x\n", target->space));
1009 switch (target->space)
1018 LOG(8,("INIT: unknown color space: 0x%08x\n", target->space));
1024 switch (target->space)
1032 LOG(8,("INIT: unknown color space: 0x%08x\n", target->space));
1038 if (target
[all...]
/haiku-fatelf/headers/os/app/
H A DClipboard.h33 status_t StartWatching(BMessenger target);
34 status_t StopWatching(BMessenger target);
/haiku-fatelf/src/add-ons/accelerants/intel_810/
H A Dmode.cpp137 ProposeDisplayMode(display_mode* target, const display_mode* low, argument
144 target->timing.h_display, target->timing.v_display,
145 target->timing.pixel_clock, target->space);
154 if (target->timing.h_display == mode.timing.h_display
155 && target->timing.v_display == mode.timing.v_display
156 && target->space == mode.space)
/haiku-fatelf/src/add-ons/translators/hpgs/
H A DHPGSTranslator.cpp27 BPositionIO *target; member in struct:my_hpgs_png_image_st
34 BPositionIO* target = ((my_hpgs_png_image *)_this)->target; local
39 ssize_t bytesWritten = target->Write(row, stride);
149 uint32 outType, BPositionIO* target, int32 baseType)
211 ((my_hpgs_png_image *)image)->target = target;
236 bytesWritten = target->Write(&header, sizeof(TranslatorBitmap));
147 DerivedTranslate(BPositionIO* source, const translator_info* info, BMessage* settings, uint32 outType, BPositionIO* target, int32 baseType) argument
/haiku-fatelf/src/add-ons/translators/icns/
H A DICNSLoader.h43 int GetIcon(BPositionIO *target, int index);
59 int SaveData(BPositionIO *target);
/haiku-fatelf/src/add-ons/translators/ico/
H A DICO.h88 extern status_t convert_ico_to_bits(BMessage *settings, BPositionIO &source, BPositionIO &target);
90 TranslatorBitmap &bitsHeader, BPositionIO &target);
/haiku-fatelf/src/apps/cortex/Persistence/
H A DImporter.h95 IPersistent* target() const;
130 const char* target,
/haiku-fatelf/src/apps/debuganalyzer/model_loader/
H A DAbstractModelLoader.cpp13 AbstractModelLoader::AbstractModelLoader(const BMessenger& target, argument
17 fTarget(target),
141 // clean up and notify the target
/haiku-fatelf/src/apps/debugger/user_interface/gui/inspector_window/
H A DInspectorWindow.h30 BHandler* target);
35 BHandler* target);
/haiku-fatelf/src/apps/icon-o-matic/generic/gui/
H A DSwatchView.cpp30 SwatchView::SwatchView(const char* name, BMessage* message, BHandler* target, argument
40 fTarget(target),
219 BHandler* target = fTarget;
220 if (target == NULL)
221 target = Window();
223 if (target == NULL)
226 BLooper* looper = target->Looper();
235 looper->PostMessage(&message, target);
/haiku-fatelf/src/apps/webpositive/tabview/
H A DTabManager.h49 TabManager(const BMessenger& target,
53 void SetTarget(const BMessenger& target);
/haiku-fatelf/src/bin/gdb/gdb/gdbserver/
H A Dtarget.c108 set_target_ops (struct target_ops *target) argument
111 memcpy (the_target, target, sizeof (*the_target));
/haiku-fatelf/src/kits/shared/
H A DPromptWindow.cpp17 BMessenger target, BMessage* message)
21 fTarget(target),
16 PromptWindow(const char* title, const char* label, BMessenger target, BMessage* message) argument
/haiku-fatelf/src/servers/app/drawing/html5/
H A DWebHandler.cpp35 WebHandler::WebHandler(const char *path, StreamingRingBuffer *target) argument
41 fTarget(target)
/haiku-fatelf/src/servers/app/drawing/remote/
H A DNetReceiver.cpp23 NetReceiver::NetReceiver(BNetEndpoint *listener, StreamingRingBuffer *target) argument
26 fTarget(target),
/haiku-fatelf/src/tests/kits/app/messaging/first_light/
H A Dmain.cpp52 TLooper2(BMessenger target) : BLooper(), fTarget(target) {;} argument
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dtriostr.h45 TRIO_STRING_PUBLIC int trio_copy_max TRIO_PROTO((char *target, size_t max, const char *source));
62 TRIO_STRING_PUBLIC int trio_append TRIO_PROTO((char *target, const char *source));
63 TRIO_STRING_PUBLIC int trio_append_max TRIO_PROTO((char *target, size_t max, const char *source));
65 TRIO_STRING_PUBLIC int trio_copy TRIO_PROTO((char *target, const char *source));
68 TRIO_STRING_PUBLIC size_t trio_format_date_max TRIO_PROTO((char *target, size_t max, const char *format, const struct tm *datetime));
72 TRIO_STRING_PUBLIC int trio_lower TRIO_PROTO((char *target));
75 TRIO_STRING_PUBLIC size_t trio_span_function TRIO_PROTO((char *target, const char *source, int (*Function) TRIO_PROTO((int))));
82 TRIO_STRING_PUBLIC int trio_upper TRIO_PROTO((char *target));
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dtemplates.h59 xmlNodePtr target,
63 xmlNodePtr target,
/haiku-fatelf/headers/posix/sys/
H A Dselect.h53 #define FD_COPY(source, target) (*(target) = *(source))
/haiku-fatelf/src/kits/tracker/
H A DAutoMounterSettings.cpp66 const BMessenger& target);
100 const BMessenger& target)
103 fTarget(target)
300 const BMessenger& target)
307 BView* view = new AutomountSettingsPanel(settings, target);
323 AutomountSettingsDialog::RunAutomountSettings(const BMessenger& target) argument
333 status_t ret = target.SendMessage(&message, &reply, 2500000);
344 (new AutomountSettingsDialog(&reply, target))->Show();
99 AutomountSettingsPanel(BMessage* settings, const BMessenger& target) argument
299 AutomountSettingsDialog(BMessage* settings, const BMessenger& target) argument
/haiku-fatelf/src/preferences/mail/
H A DFilterConfigView.cpp83 void DrawDragTargetIndicator(int32 target) argument
89 if (target >= CountItems())
90 target = CountItems() - 1, last = true;
92 BRect frame = ItemFrame(target);
110 int32 target = IndexOf(point);
111 if (target == -1)
112 target = CountItems();
114 // correct the target insertion index
115 if (target == fDragIndex || target
[all...]
/haiku-fatelf/headers/os/be_apps/Tracker/
H A DRecentItems.h65 BHandler *target = NULL, entry_ref *currentItemRef = NULL);
113 BHandler *target = NULL,
119 BHandler *target,
156 BMessage *openMessage = NULL, BHandler *target = NULL,
187 BMessage *openMessage = NULL, BHandler *target = NULL,
/haiku-fatelf/src/apps/deskbar/
H A DStatusView.h99 status_t ItemInfo(int32 target, const char** name);
104 bool IconExists(int32 target, bool byIndex = false);
112 void RemoveIcon(int32 target,
116 BRect IconFrame(int32 target,
133 int32 target,

Completed in 184 milliseconds

1234567891011>>