Searched refs:mode (Results 251 - 275 of 948) sorted by relevance

<<11121314151617181920>>

/haiku/headers/posix/
H A Dstdio.h69 extern FILE *fopen(const char *name, const char *mode);
70 extern FILE *freopen(const char *name, const char *mode, FILE *stream);
71 extern FILE *fdopen(int fd, const char *mode);
97 extern FILE *popen(const char *command, const char *mode);
102 extern FILE *fmemopen(void *buf, size_t size, const char *mode);
117 extern FILE *fopencookie(void *cookie, const char *mode, cookie_io_functions_t io_funcs);
137 extern int setvbuf(FILE *file, char *buff, int mode, size_t size);
/haiku/src/libs/icon/transformer/
H A DStrokeTransformer.cpp46 int32 mode;
47 if (archive->FindInt32("line cap", &mode) == B_OK)
48 line_cap((agg::line_cap_e)mode);
50 if (archive->FindInt32("line join", &mode) == B_OK)
51 line_join((agg::line_join_e)mode);
53 if (archive->FindInt32("inner join", &mode) == B_OK)
54 inner_join((agg::inner_join_e)mode);
180 // cap mode
189 // join mode
225 // cap mode
[all...]
/haiku/src/servers/input/
H A DMouseSettings.cpp127 const char *mode = "unknown"; local
130 mode = "activate";
133 mode = "focus";
136 mode = "auto-focus";
139 printf("mouse mode:\t%s\n", mode);
153 printf("focus follows mouse mode:\t%s\n", focus_follows_mouse_mode);
243 MouseSettings::SetMouseMode(mode_mouse mode) argument
245 fMode = mode;
250 MouseSettings::SetFocusFollowsMouseMode(mode_focus_follows_mouse mode) argument
[all...]
/haiku/src/apps/icon-o-matic/gui/
H A DSavePanel.cpp171 // bot only if we are indeed in export mode
173 message->AddInt32("export mode", ExportMode());
218 // in native save mode
232 SavePanel::SetExportMode(int32 mode) argument
238 switch (mode) {
274 if (mode != EXPORT_MODE_MESSAGE)
275 fExportMode = mode;
277 fFormatMF->SetEnabled(mode != EXPORT_MODE_MESSAGE);
287 int32 mode = fExportMode; local
290 return mode;
[all...]
/haiku/src/add-ons/accelerants/s3/
H A Dtrio64_init.cpp64 Trio64_IsModeUsable(const display_mode* mode) argument
66 // Test if the display mode is usable by the current video chip.
67 // Return true if the mode is usable.
71 if (si.chipType == S3_TRIO64 && mode->timing.h_display >= 1600)
74 return IsModeUsable(mode);
142 // Setup the mode list.
166 // modes; thus, when a mode is set, the function setting the mode will
167 // adjust the pointers according to the mode that is set.
/haiku/src/system/libroot/posix/glibc/libio/
H A Diofdopen.c40 _IO_new_fdopen (int fd, const char *mode) argument
56 switch (*mode)
74 switch (*++mode)
113 implementation of append ("a") mode would cause the
119 However, we do not turn O_APPEND off if the mode is "w" (even
H A Dfmemopen.c45 * - "append" mode and fseek(p, SEEK_END) have two different ideas
49 * "append" mode, the position pointer will be set to the first null
201 fmemopen (void *buf, size_t len, const char *mode) argument
227 if (mode[0] == 'w')
232 if (mode[0] == 'a')
242 return _IO_fopencookie (c, mode, iof);
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DVolume.h48 status_t CreateDirectory(mode_t mode,
51 status_t CreateFile(mode_t mode,
53 status_t CreateSymLink(mode_t mode,
/haiku/headers/os/media/
H A DTimeSource.h59 void SendRunMode(run_mode mode);
60 virtual void SetRunMode(run_mode mode);
109 void DirectSetRunMode(run_mode mode);
/haiku/headers/private/interface/
H A DPrivateScreen.h70 status_t GetMode(uint32 workspace, display_mode* mode);
71 status_t SetMode(uint32 workspace, display_mode* mode,
76 status_t GetPixelClockLimits(display_mode* mode,
/haiku/src/kits/shared/
H A DBitmapButton.cpp112 BBitmapButton::SetBackgroundMode(uint32 mode) argument
114 if (fBackgroundMode != mode) {
115 fBackgroundMode = mode;
/haiku/src/system/boot/loader/
H A DFileMapDisk.cpp69 FileMapDisk::Open(void **_cookie, int mode) argument
71 TRACE(("FileMapDisk::Open(, 0x%08x)\n", mode));
75 return fNode->Open(_cookie, mode);
/haiku/headers/private/kernel/boot/
H A Dstdio.h59 extern FILE *fopen(const char *name, const char *mode);
61 extern FILE *freopen(const char *name, const char *mode, FILE *stream);
72 extern int setvbuf(FILE *file, char *buff, int mode, size_t size);
/haiku/src/system/boot/loader/file_systems/fat/
H A DFile.cpp51 File::Open(void **_cookie, int mode) argument
53 TRACE(("FATFS::File::%s(, %d)\n", __FUNCTION__, mode));
57 return Node::Open(_cookie, mode);
/haiku/src/libs/x86emu/
H A Ddecode.c91 original real mode call.
250 cpu-state-varible M.x86.mode. There are several potential states:
264 Each of the above 7 items are handled with a bit in the mode field.
270 switch (M.x86.mode & SYSMODE_SEGMASK) {
748 M.x86.mode |= SYSMODE_SEG_DS_SS;
758 M.x86.mode |= SYSMODE_SEG_DS_SS;
841 if (M.x86.mode & SYSMODE_PREFIX_ADDR) {
883 M.x86.mode |= SYSMODE_SEG_DS_SS;
887 M.x86.mode |= SYSMODE_SEG_DS_SS;
926 if (!((M.x86.mode
[all...]
/haiku/src/add-ons/kernel/file_systems/fat/
H A Dfile.cpp24 uint32 mode; // open mode member in struct:filecookie
32 if (node->mode & FAT_SUBDIR) {
36 if ((node->mode & FAT_READ_ONLY) != 0)
116 buffer[0x0b] = node->mode; // file attributes
135 if (node->mode & FAT_SUBDIR) {
237 DPRINTF(0, ("setting file mode to %o\n", st->st_mode));
239 node->mode &= ~FAT_READ_ONLY;
241 node->mode |= FAT_READ_ONLY;
247 if (node->mode
[all...]
/haiku/src/add-ons/input_server/methods/t9/
H A DDictionaryInputServerMethod.cpp55 void SetMode(T9Mode mode);
97 item = new BMenuItem(_T("Word mode"), msg);
102 item = new BMenuItem(_T("Character mode"), msg);
106 item = new BMenuItem(_T("Numeric mode"), msg);
191 void T9InputServerMethod::SetMode(T9Mode mode) argument
196 fMode = mode;
200 item = fDeskbarMenu->ItemAt((int32)mode);
H A DT9InputServerMethod.cpp56 void SetMode(T9Mode mode);
98 item = new BMenuItem(_T("Word mode"), msg);
103 item = new BMenuItem(_T("Character mode"), msg);
107 item = new BMenuItem(_T("Numeric mode"), msg);
192 void T9InputServerMethod::SetMode(T9Mode mode) argument
197 fMode = mode;
201 item = fDeskbarMenu->ItemAt((int32)mode);
/haiku/src/apps/bootmanager/
H A DFileSelectionPage.h27 file_panel_mode mode);
/haiku/src/apps/pulse/
H A DConfigView.h32 ConfigView(BRect rect, const char *name, uint32 mode,
/haiku/src/apps/sudoku/
H A DSudokuWindow.h30 status_t _OpenSettings(BFile& file, uint32 mode);
/haiku/src/bin/fwcontrol/
H A Dfwmpegts.c232 if (pkt->mode.stream.len <= sizeof(struct ciphdr)) {
241 pkt->mode.stream.len - sizeof(struct ciphdr));
261 pkt->mode.stream.len - sizeof(struct ciphdr));
271 pkt_size = pkt->mode.stream.len + 4;
/haiku/src/servers/app/
H A DWorkspacePrivate.h24 display_mode mode; member in struct:display_info
/haiku/src/system/libroot/posix/glibc/include/
H A Dstdio_private.h79 # define fopen(fname, mode) _IO_new_fopen (fname, mode)
81 # define fdopen(fd, mode) _IO_new_fdopen (fd, mode)
/haiku/src/tests/system/kernel/file_corruption/
H A Dchecksumfs.h42 uint32 mode; // node type + permissions member in struct:checksumfs_node

Completed in 104 milliseconds

<<11121314151617181920>>