Searched refs:mode (Results 151 - 175 of 948) sorted by relevance

1234567891011>>

/haiku/src/apps/codycam/
H A DSftpClient.h38 ftp_mode mode = binary_mode);
42 ftp_mode mode = binary_mode);
H A DFileUploadClient.h32 ftp_mode mode = binary_mode);
36 ftp_mode mode = binary_mode);
/haiku/src/kits/network/libnetapi/
H A DSSL.cpp47 static void _LockingFunction(int mode, int n, const char * file, int line) argument
49 if (mode & CRYPTO_LOCK)
/haiku/src/servers/app/
H A DScreenConfigurations.h22 display_mode mode; member in struct:screen_configuration
40 const display_mode& mode);
/haiku/src/add-ons/accelerants/radeon_hd/
H A Daccelerant_protos.h33 status_t radeon_set_display_mode(display_mode* mode);
37 status_t radeon_get_pixel_clock_limits(display_mode* mode,
H A Dencoder.h39 void encoder_dpms_set(uint8 crtcID, int mode);
40 void encoder_dpms_set_dig(uint8 crtcID, int mode);
41 void encoder_dpms_set_dvo(uint8 crtcID, int mode);
/haiku/src/system/kernel/arch/x86/
H A Darch_smp.cpp145 uint32 mode = ICI_VECTOR | APIC_DELIVERY_MODE_FIXED local
152 apic_set_interrupt_command(destination, mode);
182 uint32 mode = ICI_VECTOR | APIC_DELIVERY_MODE_FIXED local
191 apic_set_interrupt_command(gCPU[i].arch.logical_apic_id, mode);
206 uint32 mode = ICI_VECTOR | APIC_DELIVERY_MODE_FIXED local
213 apic_set_interrupt_command(0, mode);
228 uint32 mode = ICI_VECTOR | APIC_DELIVERY_MODE_FIXED local
235 apic_set_interrupt_command(destination, mode);
/haiku/src/kits/tracker/
H A DIconCache.h60 // if a view ever uses the cache to draw in async mode, it needs to call
97 // replace use of these defines with mode once the respective getters
164 void SetIcon(BBitmap* bitmap, IconDrawMode mode, BSize size);
166 bool HaveIconBitmap(IconDrawMode mode, BSize size) const;
167 bool CanConstructBitmap(IconDrawMode mode, BSize size) const;
190 BBitmap* IconForMode(IconDrawMode mode, BSize size) const;
191 void SetIconForMode(BBitmap* bitmap, IconDrawMode mode, BSize size);
213 virtual void Draw(IconCacheEntry*, BView*, BPoint, IconDrawMode mode,
233 void Draw(BView*, BPoint, IconDrawMode mode, BSize size,
271 virtual void Draw(IconCacheEntry*, BView*, BPoint, IconDrawMode mode,
[all...]
/haiku/headers/posix/sys/
H A Dipc.h33 mode_t mode; /* Read/write permission */ member in struct:ipc_perm
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DSymLink.h16 SymLink(Volume* volume, mode_t mode);
/haiku/src/apps/expander/
H A DExpanderSettings.h52 status_t Open(BFile* file, int32 mode);
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DUtility.h121 is_index(int mode) argument
123 return (mode & (S_EXTENDED_TYPES | 0777)) == S_INDEX_DIR;
130 is_directory(int mode) argument
132 return (mode & (S_EXTENDED_TYPES | S_IFDIR)) == S_IFDIR;
/haiku/src/add-ons/kernel/drivers/graphics/vesa/
H A Dvesa.cpp106 // the app_server is smart enough to translate this to VGA mode
124 vbe_get_mode_info(bios_state* state, uint16 mode, struct vbe_mode_info* modeInfo) argument
135 regs.ecx = mode;
141 dprintf(DEVICE_NAME ": vbe_get_mode_info(%u): BIOS failed: %s\n", mode,
148 "0x%04" B_PRIx32 "\n", mode, regs.eax & 0xffff);
158 vbe_set_mode(bios_state* state, uint16 mode) argument
162 regs.ebx = (mode & SET_MODE_MASK) | SET_MODE_LINEAR_BUFFER;
166 dprintf(DEVICE_NAME ": vbe_set_mode(%u): BIOS failed: %s\n", mode,
173 "\n", mode, regs.eax & 0xffff);
184 uint32 mode local
197 vbe_get_dpms_capabilities(bios_state* state, uint32& vbeMode, uint32& mode) argument
459 vesa_set_display_mode(vesa_info& info, uint32 mode) argument
508 vesa_get_dpms_mode(vesa_info& info, uint32& mode) argument
548 vesa_set_dpms_mode(vesa_info& info, uint32 mode) argument
[all...]
/haiku/src/add-ons/input_server/devices/wacom/
H A DTabletDevice.h31 uint32 mode = DEVICE_INTUOS);
36 uint32& mode,
47 void SetStatus(uint32 mode,
/haiku/src/system/libroot/posix/glibc/libio/
H A Diosetvbuf.c35 _IO_setvbuf (fp, buf, mode, size)
38 int mode;
45 switch (mode)
54 mode has been explicitly set" as opposed to "line
60 for fully buffered mode). So we make sure a buffer
/haiku/src/tests/servers/app/playground/
H A DStates.h25 void Init(rgb_color color, drawing_mode mode,
37 void SetDrawingMode(drawing_mode mode);
49 rgb_color color, drawing_mode mode,
/haiku/src/add-ons/accelerants/intel_810/
H A Di810_watermark.cpp109 I810_GetWatermark(const DisplayModeEx& mode) argument
117 switch (mode.bitsPerPixel) {
131 double clockFreq = mode.timing.pixel_clock / 1000.0;
/haiku/src/apps/icon-o-matic/generic/gui/panel/color_picker/
H A DColorPickerView.h33 SelectedColorMode mode);
41 void SetColorMode(SelectedColorMode mode,
49 int32 _NumForMode(SelectedColorMode mode) const;
/haiku/src/add-ons/accelerants/radeon/
H A DCursor.c81 hds = vc->mode.h_display_start;
82 vds = vc->mode.v_display_start;
85 if (x >= vc->mode.virtual_width)
86 x = vc->mode.virtual_width - 1;
87 if (y >= vc->mode.virtual_height)
88 y = vc->mode.virtual_height - 1;
93 if( x >= (vc->mode.timing.h_display + hds) ) {
94 hds = ((x - vc->mode.timing.h_display) + 1 + h_adjust) & ~h_adjust;
100 if( y >= (vc->mode.timing.v_display + vds) ) {
101 vds = y - vc->mode
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5210/
H A Dar5210_phy.c70 ar5210GetRateTable(struct ath_hal *ah, u_int mode) argument
73 switch (mode) {
81 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: invalid mode 0x%x\n",
82 __func__, mode);
/haiku/src/system/libroot/os/
H A Dscheduler.c35 status_t __set_scheduler_mode(int32 mode);
68 __set_scheduler_mode(int32 mode) argument
70 return _kern_set_scheduler_mode(mode);
/haiku/src/servers/app/drawing/
H A DBitmapHWInterface.h31 virtual status_t SetMode(const display_mode& mode);
32 virtual void GetMode(display_mode* mode);
40 virtual status_t GetPixelClockLimits(display_mode* mode,
/haiku/src/preferences/network/
H A DInterfaceAddressView.cpp250 InterfaceAddressView::_SetModeField(uint32 mode) argument
252 BMenuItem* item = fModePopUpMenu->FindItem(mode);
256 _EnableFields(mode == kModeStatic);
258 if (mode == kModeDisabled) {
262 } else if (mode == kModeStatic)
265 fLastMode = mode;
307 uint32 mode = kModeAuto; local
310 mode = item->Message()->what;
312 return mode;
320 uint32 mode local
[all...]
/haiku/src/build/libroot/
H A Dfunction_remapper.cpp16 fchmod(int fd, mode_t mode) argument
20 return _haiku_build_fchmod(fd, mode);
25 fchmodat(int fd, const char* path, mode_t mode, int flag) argument
29 return _haiku_build_fchmodat(fd, path, mode, flag);
52 mkdirat(int fd, const char* path, mode_t mode) argument
56 return _haiku_build_mkdirat(fd, path, mode);
61 mkfifoat(int fd, const char* path, mode_t mode) argument
65 return _haiku_build_mkfifoat(fd, path, mode);
196 mknodat(int fd, const char* name, mode_t mode, dev_t dev) argument
200 return _haiku_build_mknodat(fd, name, mode, de
205 creat(const char* path, mode_t mode) argument
[all...]
/haiku/src/add-ons/accelerants/nvidia/
H A DProposeDisplayMode.c15 /* mode flags will be setup as status info by PROPOSEMODE! */
52 /* 4:3 panel mode; 1.47M pixels */
74 /* 16:10 panel mode; 400k pixels */
76 /* 16:10 panel mode; 655.36k pixels */
78 /* 16:10 panel-TV mode; 983.04k pixels */
80 /* 16:10 panel mode; 1.024M pixels */
82 /* 16:10 panel mode; 1.296M pixels */
84 /* 16:10 panel mode; 1.764M pixels */
86 /* 16:10 panel mode; 2.304M pixels */
89 /* 16:9 panel mode; 128
100 Haiku_DetectTranslateMultiMode(display_mode *mode) argument
124 Haiku_CheckMultiMonTunnel(display_mode *mode, const display_mode *low, const display_mode *high, bool *isTunneled ) argument
[all...]

Completed in 204 milliseconds

1234567891011>>