Searched refs:options (Results 1 - 25 of 127) sorted by path

123456

/haiku/headers/compatibility/bsd/sys/
H A Dwait.h23 pid_t wait3(int *status, int options, struct rusage *rusage);
25 pid_t wait4(pid_t pid, int *status, int options, struct rusage *rusage);
/haiku/headers/posix/sys/
H A Dwait.h13 /* waitpid()/waitid() options */
44 extern pid_t waitpid(pid_t pid, int *_status, int options);
45 extern int waitid(idtype_t idType, id_t id, siginfo_t *info, int options);
/haiku/headers/private/app/
H A DServerProtocolStructs.h90 uint32 options; member in struct:ViewDrawBitmapInfo
/haiku/headers/private/audio/
H A Dsoundcard.h955 unsigned short options; member in struct:__anon333
1743 char options[128]; /* Reserved */ member in struct:oss_sysinfo
/haiku/headers/private/debugger/target_host_interface/
H A DTargetHostInterface.h32 status_t StartTeamDebugger(const TeamDebuggerOptions& options);
77 const TeamDebuggerOptions& options,
/haiku/headers/private/syslog_daemon/
H A Dsyslog_daemon.h25 int32 options; member in struct:syslog_message
34 #define SYSLOG_PRIORITY(options) ((options) & 0x7)
35 #define SYSLOG_FACILITY(options) ((options) & 0x03f8)
36 #define SYSLOG_FACILITY_INDEX(options) (SYSLOG_FACILITY(options) >> 3)
/haiku/src/add-ons/kernel/network/ppp/modem/
H A DACFCHandler.cpp14 ACFCHandler::ACFCHandler(uint32 options, KPPPInterface& interface) argument
16 fOptions(options),
H A DACFCHandler.h12 // ACFC options
32 ACFCHandler(uint32 options, KPPPInterface& interface);
H A DModemDevice.cpp337 struct termios options; local
338 if (ioctl(fHandle, TCGETA, &options) != B_OK) {
339 ERROR("ModemDevice: Could not retrieve port options!\n");
343 // adjust options
344 options.c_cflag &= ~CBAUD;
345 options.c_cflag |= B115200;
346 options.c_cflag |= (CLOCAL | CREAD);
347 options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
348 options.c_oflag &= ~OPOST;
349 options
[all...]
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DRadeonProducer.cpp235 BParameterGroup *options = web->MakeGroup("Video"); local
242 BParameterGroup *options1 = options->MakeGroup("Options1");
243 BParameterGroup *options2 = options->MakeGroup("Options2");
/haiku/src/add-ons/print/transports/serial_port/
H A DSerialTransport.cpp64 struct termios options; local
65 tcgetattr(fFile, &options);
67 cfmakeraw(&options);
68 options.c_cc[VTIME] = 10; // wait for data at most for 1 second
69 options.c_cc[VMIN] = 0; // allow to return 0 chars
73 cfsetispeed(&options, baudrate);
74 cfsetospeed(&options, baudrate);
77 tcsetattr(fFile, TCSANOW, &options);
/haiku/src/add-ons/screen_savers/glife/
H A DGLifeView.cpp25 ulong options, GLifeState* pglsState)
27 BGLView(rect, name, resizingMode, B_FRAME_EVENTS | B_WILL_DRAW, options),
24 GLifeView(BRect rect, const char* name, ulong resizingMode, ulong options, GLifeState* pglsState) argument
/haiku/src/apps/mediaplayer/
H A DVideoView.cpp394 uint32 options = B_WAIT_FOR_RETRACE; local
396 options |= B_FILTER_BITMAP_BILINEAR;
398 DrawBitmapAsync(bitmap, bitmap->Bounds(), fVideoFrame, options);
/haiku/src/apps/showimage/
H A DPrintOptionsWindow.cpp81 PrintOptionsWindow::PrintOptionsWindow(BPoint at, PrintOptions* options, argument
85 B_TRANSLATE("Print options"),
88 fPrintOptions(options),
89 fCurrentOptions(*options),
H A DPrintOptionsWindow.h61 PrintOptions* options, BWindow* listener);
/haiku/src/bin/
H A Dlogger.cpp137 int options = 0; local
145 options |= LOG_PID;
169 openlog(tag, options, facility);
/haiku/src/bin/network/telnet/
H A Dexterns.h148 options[], /* All the little options */
168 #define my_state_is_do(opt) (options[opt]&MY_STATE_DO)
169 #define my_state_is_will(opt) (options[opt]&MY_STATE_WILL)
170 #define my_want_state_is_do(opt) (options[opt]&MY_WANT_STATE_DO)
171 #define my_want_state_is_will(opt) (options[opt]&MY_WANT_STATE_WILL)
178 #define set_my_state_do(opt) {options[opt] |= MY_STATE_DO;}
179 #define set_my_state_will(opt) {options[opt] |= MY_STATE_WILL;}
180 #define set_my_want_state_do(opt) {options[opt] |= MY_WANT_STATE_DO;}
181 #define set_my_want_state_will(opt) {options[op
[all...]
H A Dtelnet.c76 *subpointer, *subend; /* buffer for sub-options */
88 char options[256]; /* The combined options */
179 ClearArray(options);
481 * Handle options that need more things done after the
87 char options[256]; /* The combined options */ variable
/haiku/src/bin/network/telnetd/
H A Ddefs.h179 #define TD_OPTIONS 0x10 /* Report just telnet options */
195 #define my_state_is_do(opt) (options[opt]&MY_STATE_DO)
196 #define my_state_is_will(opt) (options[opt]&MY_STATE_WILL)
197 #define my_want_state_is_do(opt) (options[opt]&MY_WANT_STATE_DO)
198 #define my_want_state_is_will(opt) (options[opt]&MY_WANT_STATE_WILL)
205 #define set_my_state_do(opt) (options[opt] |= MY_STATE_DO)
206 #define set_my_state_will(opt) (options[opt] |= MY_STATE_WILL)
207 #define set_my_want_state_do(opt) (options[opt] |= MY_WANT_STATE_DO)
208 #define set_my_want_state_will(opt) (options[opt] |= MY_WANT_STATE_WILL)
210 #define set_my_state_dont(opt) (options[op
[all...]
/haiku/src/kits/debugger/target_host_interface/
H A DTargetHostInterface.cpp56 TargetHostInterface::StartTeamDebugger(const TeamDebuggerOptions& options) argument
60 bool stopInMain = options.requestType == TEAM_DEBUGGER_REQUEST_CREATE;
61 team_id team = options.team;
62 thread_id thread = options.thread;
65 if (options.requestType == TEAM_DEBUGGER_REQUEST_CREATE) {
66 status_t error = CreateTeam(options.commandLineArgc,
67 options.commandLineArgv, team);
73 if (options.requestType != TEAM_DEBUGGER_REQUEST_LOAD_CORE) {
91 return _StartTeamDebugger(team, options, stopInMain);
193 TeamDebuggerOptions options; local
247 _StartTeamDebugger(team_id teamID, const TeamDebuggerOptions& options, bool stopInMain) argument
[all...]
/haiku/src/kits/tracker/
H A DBackgroundImage.cpp204 uint32 options = 0; local
232 options |= B_FILTER_BITMAP_BILINEAR;
246 options |= B_TILE_BITMAP;
252 followFlags, options);
/haiku/src/libs/glut/
H A DglutDstr.cpp11 * DESCRIPTION: convert display string into a Be options variable
48 * PARAMETERS: if options is non-NULL, the current display mode is
53 int __glutConvertDisplayModeFromString(unsigned long *options) { argument
62 // options that we support, and add them to newoptions
79 if (options)
80 *options = newoptions;
H A DglutWindow.cpp73 int x, int y, int width, int height, ulong options)
78 options)
170 ulong options; local
171 if (!__glutConvertDisplayMode(&options)) {
180 gState.initWidth, gState.initHeight, options);
193 ulong options;
194 if (!__glutConvertDisplayMode(&options)) {
199 x, y, width, height, options);
518 \param options if non-NULL, the current display mode is
523 __glutConvertDisplayMode(unsigned long *options) argument
72 GlutWindow(GlutWindow *nparent, const char *name, int x, int y, int width, int height, ulong options) argument
[all...]
H A DglutWindow.h23 int height, ulong options);
H A Dglutint.h804 int __glutConvertDisplayMode(unsigned long *options);
811 int __glutConvertDisplayModeFromString(unsigned long *options);

Completed in 164 milliseconds

123456