Searched refs:flags (Results 276 - 300 of 2754) sorted by relevance

<<11121314151617181920>>

/haiku-fatelf/src/libs/glut/
H A DglutInit.cpp174 int flags, x, y, width, height; local
181 flags = XParseGeometry(geometry, &x, &y,
183 if (WidthValue & flags) {
189 if (HeightValue & flags) {
195 if (XValue & flags) {
196 if (XNegative & flags)
202 if (YValue & flags) {
203 if (YNegative & flags)
/haiku-fatelf/src/libs/print/libprint/
H A DBlockingWindow.cpp69 HWindow::HWindow(BRect frame, const char *title, window_type type, uint32 flags, argument
71 : BWindow(frame, title, type, flags, workspace)
78 uint32 flags, uint32 workspace, uint32 escape_msg)
79 : BWindow(frame, title, look, feel, flags, workspace)
143 uint32 flags, uint32 workspace, uint32 escape_msg)
144 : HWindow(frame, title, type, flags, workspace)
151 window_feel feel, uint32 flags, uint32 workspace, uint32 escape_msg)
152 : HWindow(frame, title, look, feel, flags, workspace)
77 HWindow(BRect frame, const char *title, window_look look, window_feel feel, uint32 flags, uint32 workspace, uint32 escape_msg) argument
142 BlockingWindow(BRect frame, const char *title, window_type type, uint32 flags, uint32 workspace, uint32 escape_msg) argument
150 BlockingWindow(BRect frame, const char *title, window_look look, window_feel feel, uint32 flags, uint32 workspace, uint32 escape_msg) argument
/haiku-fatelf/src/preferences/screen/
H A Dmultimon.cpp58 *setting = mode.timing.flags;
79 mode.timing.flags = value;
101 mode.timing.flags = idx;
107 *setting = mode.timing.flags;
205 modeList[0].timing.flags |= RADEON_MODE_MULTIMON_REQUEST;
206 modeList[0].timing.flags &= ~RADEON_MODE_MULTIMON_REPLY;
214 if ((modeList[0].timing.flags & RADEON_MODE_MULTIMON_REQUEST) == 0
215 && (modeList[0].timing.flags & RADEON_MODE_MULTIMON_REPLY) != 0)
/haiku-fatelf/src/preferences/touchpad/
H A Dmain.cpp24 uint32 flags)
26 BWindow(frame, title, type, flags)
23 TouchpadPrefWindow(BRect frame, const char* title, window_type type, uint32 flags) argument
/haiku-fatelf/src/servers/app/
H A DBitmapManager.h31 color_space space, uint32 flags,
38 color_space space, uint32 flags,
/haiku-fatelf/src/system/boot/arch/m68k/
H A Dmmu.h21 extern addr_t mmu_map_physical_memory(addr_t physicalAddress, size_t size, uint32 flags);
38 void (*map_page)(addr_t virtualAddress, addr_t pa, uint32 flags);
/haiku-fatelf/src/system/boot/platform/amiga_m68k/
H A Dmmu.h21 extern addr_t mmu_map_physical_memory(addr_t physicalAddress, size_t size, uint32 flags);
38 void (*map_page)(addr_t virtualAddress, addr_t pa, uint32 flags);
/haiku-fatelf/src/system/boot/platform/atari_m68k/
H A Dmmu.h22 extern addr_t mmu_map_physical_memory(addr_t physicalAddress, size_t size, uint32 flags);
39 void (*map_page)(addr_t virtualAddress, addr_t pa, uint32 flags);
/haiku-fatelf/src/system/kernel/
H A Dguarded_heap.cpp36 uint8 flags; member in struct:guarded_heap_page
99 Allocate(guarded_heap* heap, void* pageBase, uint32 flags) argument
103 fFlags(flags)
111 "flags:%s%s%s%s", fHeap, fPageBase,
179 page.flags = GUARDED_HEAP_PAGE_FLAG_USED;
190 page.flags |= GUARDED_HEAP_PAGE_FLAG_FIRST;
205 page.flags |= GUARDED_HEAP_PAGE_FLAG_GUARD;
214 page.flags));
227 page.flags = 0;
229 page.flags |
260 guarded_heap_area_allocate(guarded_heap_area& area, size_t size, size_t alignment, uint32 flags, bool& grow) argument
325 guarded_heap_area_init(guarded_heap& heap, area_id id, void* baseAddress, size_t size, uint32 flags) argument
366 guarded_heap_area_create(guarded_heap& heap, uint32 flags) argument
391 guarded_heap_add_area(guarded_heap& heap, int32 counter, uint32 flags) argument
408 guarded_heap_allocate(guarded_heap& heap, size_t size, size_t alignment, uint32 flags) argument
495 guarded_heap_area_free(guarded_heap_area& area, void* address, uint32 flags) argument
524 guarded_heap_free(void* address, uint32 flags) argument
842 memalign_etc(size_t alignment, size_t size, uint32 flags) argument
852 free_etc(void *address, uint32 flags) argument
930 object_cache_alloc(object_cache* cache, uint32 flags) argument
937 object_cache_free(object_cache* cache, void* object, uint32 flags) argument
944 object_cache_reserve(object_cache* cache, size_t objectCount, uint32 flags) argument
[all...]
/haiku-fatelf/src/system/kernel/vm/
H A DVMUserArea.cpp46 VMUserArea::CreateReserved(VMAddressSpace* addressSpace, uint32 flags, argument
53 area->protection = flags;
/haiku-fatelf/src/system/libroot/os/locks/
H A Drecursive_lock.cpp38 recursive_lock_init_etc(recursive_lock *lock, const char *name, uint32 flags) argument
42 mutex_init_etc(&lock->lock, name, flags);
/haiku-fatelf/src/system/libroot/posix/signal/
H A Dsignal.cpp23 signal_common(int signal, __sighandler_t signalHandler, int flags) argument
30 newAction.sa_flags = flags;
/haiku-fatelf/src/system/libroot/posix/sys/
H A Dmman.cpp89 mmap(void* address, size_t length, int protection, int flags, int fd, argument
99 if ((flags & MAP_ANONYMOUS) != 0) {
107 if (((flags & MAP_SHARED) != 0) == ((flags & MAP_PRIVATE) != 0)) {
113 int mapping = (flags & MAP_SHARED) != 0
117 if ((flags & MAP_FIXED) != 0)
156 msync(void* address, size_t length, int flags) argument
158 RETURN_AND_SET_ERRNO_TEST_CANCEL(_kern_sync_memory(address, length, flags));
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dskiplist.h54 int flags; member in struct:_SkipList
63 SkipList NewSL(int (*compare)(), void (*freeitem)(), int flags);
/haiku-fatelf/src/kits/interface/
H A DControlLook.cpp85 uint32 flags = 0; local
88 flags |= B_DISABLED;
91 flags |= B_FOCUSED;
94 flags |= B_ACTIVATED;
100 flags |= B_BLEND_FRAME;
103 return flags;
112 const rgb_color& base, const rgb_color& background, uint32 flags,
116 background, 1.0, 1.0, flags, borders);
122 float radius, const rgb_color& base, const rgb_color& background, uint32 flags,
126 base, background, 1.0, 1.0, flags, border
111 DrawButtonFrame(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, const rgb_color& background, uint32 flags, uint32 borders) argument
121 DrawButtonFrame(BView* view, BRect& rect, const BRect& updateRect, float radius, const rgb_color& base, const rgb_color& background, uint32 flags, uint32 borders) argument
131 DrawButtonFrame(BView* view, BRect& rect, const BRect& updateRect, float leftTopRadius, float rightTopRadius, float leftBottomRadius, float rightBottomRadius, const rgb_color& base, const rgb_color& background, uint32 flags, uint32 borders) argument
144 DrawButtonBackground(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags, uint32 borders, enum orientation orientation) argument
154 DrawButtonBackground(BView* view, BRect& rect, const BRect& updateRect, float radius, const rgb_color& base, uint32 flags, uint32 borders, enum orientation orientation) argument
164 DrawButtonBackground(BView* view, BRect& rect, const BRect& updateRect, float leftTopRadius, float rightTopRadius, float leftBottomRadius, float rightBottomRadius, const rgb_color& base, uint32 flags, uint32 borders, enum orientation orientation) argument
176 DrawMenuBarBackground(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags, uint32 borders) argument
222 DrawMenuFieldFrame(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, const rgb_color& background, uint32 flags, uint32 borders) argument
232 DrawMenuFieldFrame(BView* view, BRect& rect, const BRect& updateRect, float radius, const rgb_color& base, const rgb_color& background, uint32 flags, uint32 borders) argument
242 DrawMenuFieldFrame(BView* view, BRect& rect, const BRect& updateRect, float leftTopRadius, float rightTopRadius, float leftBottomRadius, float rightBottomRadius, const rgb_color& base, const rgb_color& background, uint32 flags, uint32 borders) argument
255 DrawMenuFieldBackground(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, bool popupIndicator, uint32 flags) argument
265 DrawMenuFieldBackground(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags, uint32 borders) argument
275 DrawMenuFieldBackground(BView* view, BRect& rect, const BRect& updateRect, float radius, const rgb_color& base, bool popupIndicator, uint32 flags) argument
285 DrawMenuFieldBackground(BView* view, BRect& rect, const BRect& updateRect, float leftTopRadius, float rightTopRadius, float leftBottomRadius, float rightBottomRadius, const rgb_color& base, bool popupIndicator, uint32 flags) argument
297 DrawMenuBackground(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags, uint32 borders) argument
332 DrawMenuItemBackground(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags, uint32 borders) argument
425 DrawCheckBox(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags) argument
486 DrawRadioButton(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags) argument
554 DrawScrollBarBackground(BView* view, BRect& rect1, BRect& rect2, const BRect& updateRect, const rgb_color& base, uint32 flags, enum orientation orientation) argument
564 DrawScrollBarBackground(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags, enum orientation orientation) argument
648 DrawScrollViewFrame(BView* view, BRect& rect, const BRect& updateRect, BRect verticalScrollBarFrame, BRect horizontalScrollBarFrame, const rgb_color& base, border_style border, uint32 flags, uint32 _borders) argument
731 DrawArrowShape(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 direction, uint32 flags, float tint) argument
802 DrawSliderBar(BView* view, BRect rect, const BRect& updateRect, const rgb_color& base, rgb_color leftFillColor, rgb_color rightFillColor, float sliderScale, uint32 flags, enum orientation orientation) argument
859 DrawSliderBar(BView* view, BRect rect, const BRect& updateRect, const rgb_color& base, rgb_color fillColor, uint32 flags, enum orientation orientation) argument
1006 DrawSliderThumb(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags, enum orientation orientation) argument
1090 DrawSliderTriangle(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags, enum orientation orientation) argument
1099 DrawSliderTriangle(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, const rgb_color& fill, uint32 flags, enum orientation orientation) argument
1218 DrawSliderHashMarks(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, int32 count, hash_mark_location location, uint32 flags, enum orientation orientation) argument
1309 DrawActiveTab(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags, uint32 borders) argument
1404 DrawInactiveTab(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags, uint32 borders) argument
1467 DrawSplitter(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, enum orientation orientation, uint32 flags, uint32 borders) argument
1582 DrawBorder(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, border_style border, uint32 flags, uint32 borders) argument
1601 DrawRaisedBorder(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags, uint32 borders) argument
1622 DrawTextControlBorder(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags, uint32 borders) argument
1705 DrawLabel(BView* view, const char* label, BRect rect, const BRect& updateRect, const rgb_color& base, uint32 flags) argument
1714 DrawLabel(BView* view, const char* label, BRect rect, const BRect& updateRect, const rgb_color& base, uint32 flags, const BAlignment& alignment) argument
1770 DrawLabel(BView* view, const char* label, const rgb_color& base, uint32 flags, const BPoint& where) argument
1891 _DrawButtonFrame(BView* view, BRect& rect, const BRect& updateRect, float leftTopRadius, float rightTopRadius, float leftBottomRadius, float rightBottomRadius, const rgb_color& base, const rgb_color& background, float contrast, float brightness, uint32 flags, uint32 borders) argument
2050 _DrawOuterResessedFrame(BView* view, BRect& rect, const rgb_color& base, float contrast, float brightness, uint32 flags, uint32 borders) argument
2163 _DrawButtonBackground(BView* view, BRect& rect, const BRect& updateRect, float leftTopRadius, float rightTopRadius, float leftBottomRadius, float rightBottomRadius, const rgb_color& base, uint32 flags, uint32 borders, enum orientation orientation) argument
2289 _DrawMenuFieldBackgroundOutside(BView* view, BRect& rect, const BRect& updateRect, float leftTopRadius, float rightTopRadius, float leftBottomRadius, float rightBottomRadius, const rgb_color& base, bool popupIndicator, uint32 flags) argument
2352 _DrawMenuFieldBackgroundInside(BView* view, BRect& rect, const BRect& updateRect, float leftTopRadius, float rightTopRadius, float leftBottomRadius, float rightBottomRadius, const rgb_color& base, uint32 flags, uint32 borders) argument
2923 _EdgeLightColor(const rgb_color& base, float contrast, float brightness, uint32 flags) argument
2956 _EdgeShadowColor(const rgb_color& base, float contrast, float brightness, uint32 flags) argument
2986 _FrameLightColor(const rgb_color& base, uint32 flags) argument
3017 _FrameShadowColor(const rgb_color& base, uint32 flags) argument
3056 _BevelLightColor(const rgb_color& base, uint32 flags) argument
3071 _BevelShadowColor(const rgb_color& base, uint32 flags) argument
3142 _MakeButtonGradient(BGradientLinear& gradient, BRect& rect, const rgb_color& base, uint32 flags, enum orientation orientation) const argument
[all...]
/haiku-fatelf/src/add-ons/accelerants/nvidia/
H A DProposeDisplayMode.c15 /* mode flags will be setup as status info by PROPOSEMODE! */
148 || !(BT_check_tvmode(*target) && (target->flags & TV_BITS))) {
317 /* setup status flags */
318 LOG(1, ("PROPOSEMODE: initial modeflags: $%08x\n", target->flags));
322 target->flags &=
330 target->flags |= (B_PARALLEL_ACCESS | B_8_BIT_DAC | B_DPMS | B_SCROLL);
361 switch (target->flags & DUALHEAD_BITS) {
367 target->flags |= DUALHEAD_CAPABLE;
372 target->flags |= DUALHEAD_CAPABLE;
377 target->flags |
[all...]
/haiku-fatelf/headers/libs/print/libprint/
H A DBlockingWindow.h59 window_type type, uint32 flags,
63 window_look look, window_feel feel, uint32 flags,
82 window_type type, uint32 flags,
86 window_look look, window_feel feel, uint32 flags,
H A DPagesView.h14 PagesView(BRect frame, const char* name, uint32 resizeMask, uint32 flags);
/haiku-fatelf/headers/os/drivers/pcmcia/
H A Dss.h39 /* Definitions for card status flags for GetStatus */
77 u_int flags; member in struct:socket_state_t
83 /* Socket configuration flags */
107 u_char flags; member in struct:pccard_io_map
114 u_char flags; member in struct:pccard_mem_map
122 u_char flags; member in struct:cb_bridge_map
/haiku-fatelf/headers/posix/net/
H A Droute.h31 uint32_t flags; member in struct:route_entry
/haiku-fatelf/headers/private/kernel/
H A Dsmp.h53 void *data_ptr, uint32 flags);
55 addr_t data2, addr_t data3, void *data_ptr, uint32 flags);
57 void *data_ptr, uint32 flags);
59 addr_t data, addr_t data2, addr_t data3, void *data_ptr, uint32 flags);
/haiku-fatelf/headers/private/net/
H A Darp_control.h14 // ARP flags
35 uint32 flags; member in struct:arp_control
/haiku-fatelf/headers/private/storage/
H A DMutablePartition.h35 void SetFlags(uint32 flags);
36 void ClearFlags(uint32 flags);
75 void SetChangeFlags(uint32 flags);
77 void Changed(uint32 flags, uint32 clearFlags = 0);
H A DPathMonitor.h12 // additional flags (combined with those in NodeMonitor.h)
17 // if that is not desired, add B_WATCH_FOLDERS_ONLY to the flags.
25 static status_t StartWatching(const char* path, uint32 flags,
/haiku-fatelf/src/add-ons/translators/tga/
H A DTGAView.h41 TGAView(const char *name, uint32 flags, TranslatorSettings *settings);

Completed in 226 milliseconds

<<11121314151617181920>>