Searched refs:mode (Results 301 - 325 of 948) sorted by relevance

<<11121314151617181920>>

/haiku/src/tests/kits/net/netservices2/
H A DTestServer.h58 TestServer(TestServerMode mode);
/haiku/src/add-ons/accelerants/radeon_hd/
H A Dconnector.h68 bool connector_read_mode_lvds(uint32 connectorIndex, display_mode* mode);
H A Dpll.h108 status_t pll_adjust(pll_info* pll, display_mode* mode, uint8 crtcID);
118 status_t pll_set(display_mode* mode, uint8 crtcID);
/haiku/src/kits/midi/
H A DSynth.cpp31 BSynth::BSynth(synth_mode mode) argument
34 fSynthMode = mode;
61 BSynth::LoadSynthData(synth_mode mode) argument
68 fSynthMode = mode;
/haiku/src/apps/diskprobe/
H A DFindWindow.cpp52 status_t SetMode(find_mode mode);
180 // filter out invalid (for hex mode) characters
412 FindTextView::SetMode(find_mode mode) argument
414 if (fMode == mode)
417 if (mode == kHexMode) {
418 // convert text to hex mode
426 fMode = mode;
438 fMode = mode;
497 int8 mode = kAsciiMode; local
498 if (previous.FindInt8("find_mode", &mode) !
575 int8 mode; local
[all...]
/haiku/src/add-ons/accelerants/virtio/
H A Daccelerant_protos.h30 status_t virtio_gpu_get_preferred_mode(display_mode *mode);
/haiku/src/apps/icon-o-matic/generic/gui/panel/color_picker/
H A DColorField.cpp34 ColorField::ColorField(BPoint offsetPoint, SelectedColorMode mode, argument
41 _Init(mode, fixedValue, orient, border);
46 ColorField::ColorField(SelectedColorMode mode, float fixedValue, argument
51 _Init(mode, fixedValue, orient, border);
227 ColorField::SetModeAndValue(SelectedColorMode mode, float fixedValue) argument
282 if (fFixedValue != fixedValue || fMode != mode) {
284 fMode = mode;
389 ColorField::_Init(SelectedColorMode mode, float fixedValue, argument
392 fMode = mode;
441 ColorField::_FillBitmap(BBitmap* bitmap, SelectedColorMode mode, argument
[all...]
/haiku/src/system/kernel/debug/
H A Ddebug_paranoia.cpp271 paranoia_set_check_mode mode)
276 fMode(mode)
283 const char* mode = "??? op:"; local
286 mode = "set: ";
289 mode = "add: ";
292 mode = "update:";
296 mode, fObject, fAddress, fSize);
505 paranoia_set_check_mode mode)
507 T(SetCheck(object, address, size, mode));
522 if (mode
270 SetCheck(const void* object, const void* address, size_t size, paranoia_set_check_mode mode) argument
504 set_paranoia_check(const void* object, const void* address, size_t size, paranoia_set_check_mode mode) argument
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/rtl8812a/
H A Dr12a_tx.c91 enum ieee80211_protmode mode, uint8_t ridx)
96 switch (mode) {
107 if (mode == IEEE80211_PROT_CTSONLY ||
108 mode == IEEE80211_PROT_RTSCTS) {
132 enum ieee80211_phymode mode; local
137 mode = ieee80211_chan2mode(chan);
141 switch (mode) {
147 mode = IEEE80211_MODE_11A;
150 mode = IEEE80211_MODE_11G;
153 device_printf(sc->sc_dev, "unknown mode(
90 r12a_tx_protection(struct rtwn_softc *sc, struct r12a_tx_desc *txd, enum ieee80211_protmode mode, uint8_t ridx) argument
[all...]
/haiku/src/preferences/input/
H A DMouseSettings.cpp145 const char* mode = "unknown"; local
148 mode = "click to focus and raise";
151 mode = "click to focus";
154 mode = "focus follows mouse";
157 printf("mouse mode:\t%s\n", mode);
171 printf("focus follows mouse mode:\t%s\n", focus_follows_mouse_mode);
333 MouseSettings::SetMouseMode(mode_mouse mode) argument
335 set_mouse_mode(mode);
336 fMode = mode;
341 SetFocusFollowsMouseMode(mode_focus_follows_mouse mode) argument
[all...]
H A DMouseSettings.h58 void SetMouseMode(mode_mouse mode);
63 void SetFocusFollowsMouseMode(mode_focus_follows_mouse mode);
/haiku/src/libs/stdc++/legacy/
H A Dstreambuf.cc118 streampos streambuf::seekpos(streampos pos, int mode) argument
120 return seekoff(pos, ios::beg, mode);
123 streampos streambuf::sseekpos(streampos pos, int mode) argument
125 return _IO_seekpos (this, pos, mode);
153 static _IO_pos_t _IO_sb_seekoff(_IO_FILE *fp, _IO_off_t pos, int dir, int mode) argument
155 return ((streambuf*)fp)->seekoff(pos, (ios::seek_dir)dir, mode);
158 static _IO_pos_t _IO_sb_seekpos(_IO_FILE *fp, _IO_pos_t pos, int mode) argument
160 return ((streambuf*)fp)->seekpos(pos, mode);
/haiku/src/build/libroot/
H A Dfind_directory.cpp30 create_path(const char *path, mode_t mode) argument
53 if (mkdir(buffer, mode) < 0)
/haiku/src/apps/midiplayer/
H A DSynthBridge.cpp39 SynthBridge::Init(synth_mode mode) argument
41 if (be_synth->LoadSynthData(mode) == B_OK) {
/haiku/src/servers/app/
H A DDesktopSettings.h98 void SetMouseMode(mode_mouse mode);
100 mode_focus_follows_mouse mode);
/haiku/src/tools/fs_shell/
H A Dstat.cpp106 fssh_mkdir(const char *path, fssh_mode_t mode) argument
108 return mkdir(path, to_platform_mode(mode));
/haiku/src/preferences/screen/
H A DScreenWindow.h41 virtual void ScreenChanged(BRect frame, color_space mode);
63 status_t _WriteVesaModeFile(const screen_mode& mode) const;
/haiku/src/servers/input/
H A DMouseSettings.h59 void SetMouseMode(mode_mouse mode);
63 void SetFocusFollowsMouseMode(mode_focus_follows_mouse mode);
/haiku/src/system/libroot/posix/
H A Ddlfcn.c25 dlopen(char const *name, int mode) argument
29 image_id imageID = __gRuntimeLoader->load_library(name, mode, caller,
H A Dfcntl.cpp23 creat(const char *path, mode_t mode) argument
26 _kern_open(-1, path, O_CREAT | O_TRUNC | O_WRONLY, mode & ~__gUmask));
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DPackageNode.cpp17 PackageNode::PackageNode(Package* package, mode_t mode) argument
22 fMode(mode),
/haiku/src/add-ons/kernel/power/cpufreq/amd_pstates/
H A Damd_pstates.cpp35 pstates_set_scheduler_mode(scheduler_mode mode) argument
37 sAvoidBoost = mode == SCHEDULER_MODE_POWER_SAVING;
/haiku/src/tests/kits/net/
H A Dwlan_test.cpp26 get_authentication_mode(uint32 mode) argument
28 switch (mode) {
/haiku/src/apps/networkstatus/
H A DWirelessNetworkMenuItem.cpp27 // Append authentication mode to label
43 WirelessNetworkMenuItem::AuthenticationName(int32 mode) argument
45 switch (mode) {
/haiku/src/add-ons/accelerants/3dfx/
H A Daccelerant.h42 area_id modeListArea; // mode list area ID
136 status_t CreateModeList(bool (*checkMode)(const display_mode* mode));
137 uint16 GetVesaModeNumber(const display_mode& mode, uint8 bitsPerPixel);
138 bool IsModeUsable(const display_mode* mode);
151 void TDFX_EngineInit(const DisplayModeEx& mode);
157 void TDFX_AdjustFrame(const DisplayModeEx& mode);
158 status_t TDFX_SetDisplayMode(const DisplayModeEx& mode);

Completed in 202 milliseconds

<<11121314151617181920>>