Searched refs:options (Results 1 - 25 of 334) sorted by relevance

1234567891011>>

/haiku-fatelf/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-fatelf/src/system/boot/platform/amiga_m68k/
H A Dkeyboard.cpp43 uint32 options = 0; local
48 options |= BOOT_OPTION_MENU;
51 options |= BOOT_OPTION_DEBUG_OUTPUT;
60 dprintf("options = %ld\n", options);
61 return options;
/haiku-fatelf/src/bin/network/atftpd/
H A Doptions.h3 * options.h
5 * $Id: options.h,v 1.7 2001/07/06 23:35:18 jp Exp $
22 /* Structure definition for tftp options. */
32 int opt_parse_request(char *data, int data_size, struct tftp_opt *options);
33 int opt_parse_options(char *data, int data_size, struct tftp_opt *options);
34 int opt_set_options(struct tftp_opt *options, char *name, char *value);
35 int opt_get_options(struct tftp_opt *options, char *name, char *value);
36 int opt_disable_options(struct tftp_opt *options, char *name);
37 int opt_support_options(struct tftp_opt *options);
38 int opt_get_tsize(struct tftp_opt *options);
[all...]
H A Doptions.c3 * options.c
4 * Set of functions to deal with the options structure and for parsing
5 * options in TFTP data buffer.
7 * $Id: options.c,v 1.16 2003/04/25 00:16:18 jp Exp $
34 #include "options.h"
39 int opt_parse_request(char *data, int data_size, struct tftp_opt *options) argument
51 opt_set_options(options, "filename", entry);
57 opt_set_options(options, "mode", entry);
58 /* scan for options */
67 opt_set_options(options, tm
75 opt_parse_options(char *data, int data_size, struct tftp_opt *options) argument
101 opt_set_options(struct tftp_opt *options, char *name, char *value) argument
125 opt_get_options(struct tftp_opt *options, char *name, char *value) argument
146 opt_disable_options(struct tftp_opt *options, char *name) argument
172 opt_support_options(struct tftp_opt *options) argument
190 opt_get_tsize(struct tftp_opt *options) argument
201 opt_get_timeout(struct tftp_opt *options) argument
212 opt_get_blksize(struct tftp_opt *options) argument
223 opt_get_multicast(struct tftp_opt *options, char *addr, int *port, int *mc) argument
276 opt_set_tsize(int tsize, struct tftp_opt *options) argument
281 opt_set_timeout(int timeout, struct tftp_opt *options) argument
286 opt_set_blksize(int blksize, struct tftp_opt *options) argument
291 opt_set_multicast(struct tftp_opt *options, char *addr, int port, int mc) argument
301 opt_request_to_string(struct tftp_opt *options, char *string, int len) argument
328 opt_options_to_string(struct tftp_opt *options, char *string, int len) argument
[all...]
/haiku-fatelf/src/bin/findutils/lib/
H A Dregexprops.c147 static int describe_regex_syntax(int options) argument
151 if ( (options & RE_DOT_NEWLINE) == 0 )
155 if (options & RE_DOT_NOT_NULL)
157 if ( (options & RE_DOT_NEWLINE) == 0 )
167 if (!(options & RE_LIMITED_OPS))
170 if (options & RE_BK_PLUS_QM)
201 if (options & RE_NO_EMPTY_RANGES)
207 if (options & RE_BACKSLASH_ESCAPE_IN_LISTS)
213 if (options & RE_CHAR_CLASSES)
221 if (options
440 int i, options; local
462 int options; local
[all...]
/haiku-fatelf/src/system/boot/platform/atari_m68k/
H A Dkeyboard.cpp48 uint32 options = 0; local
53 options |= BOOT_OPTION_MENU;
56 options |= BOOT_OPTION_DEBUG_OUTPUT;
65 dprintf("options = %ld\n", options);
66 return options;
/haiku-fatelf/src/system/boot/platform/bios_ia32/
H A Dkeyboard.cpp59 uint32 options = 0; local
66 options |= BOOT_OPTION_MENU;
71 options |= BOOT_OPTION_MENU;
74 options |= BOOT_OPTION_DEBUG_OUTPUT;
78 dprintf("options = %ld\n", options);
79 return options;
/haiku-fatelf/src/bin/coreutils/src/
H A Dmkdir.c63 Mandatory arguments to long options are mandatory for short options too.\n\
101 announce_mkdir (char const *dir, void *options) argument
103 struct mkdir_options const *o = options;
109 with options OPTIONS. Assume the working directory is COMPONENT's
114 make_ancestor (char const *dir, char const *component, void *options) argument
116 struct mkdir_options const *o = options;
121 announce_mkdir (dir, options);
128 process_dir (char *dir, struct savewd *wd, void *options) argument
130 struct mkdir_options const *o = options;
144 struct mkdir_options options; local
[all...]
/haiku-fatelf/headers/compatibility/bsd/sys/
H A Dwait.h18 pid_t wait3(int *status, int options, struct rusage *rusage);
20 pid_t wait4(pid_t pid, int *status, int options, struct rusage *rusage);
/haiku-fatelf/src/bin/coreutils/lib/
H A Dgetopt1.c41 getopt_long (int argc, char *__getopt_argv_const *argv, const char *options,
44 return _getopt_internal (argc, (char **) argv, options, long_options,
49 _getopt_long_r (int argc, char **argv, const char *options,
53 return _getopt_internal_r (argc, argv, options, long_options, opt_index,
64 const char *options,
67 return _getopt_internal (argc, (char **) argv, options, long_options,
72 _getopt_long_only_r (int argc, char **argv, const char *options,
76 return _getopt_internal_r (argc, argv, options, long_options, opt_index,
40 getopt_long(int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index) argument
48 _getopt_long_r(int argc, char **argv, const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) argument
62 getopt_long_only(int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index) argument
71 _getopt_long_only_r(int argc, char **argv, const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) argument
H A Dxfts.h5 xfts_open (char * const *, int options,
H A Dexclude.c47 /* Non-GNU systems lack these options, so we don't need to check them. */
71 /* An exclude pattern-options pair. The options are fnmatch options
72 ORed with EXCLUDE_* options. */
77 int options; member in struct:patopts
80 /* An array of pattern-options pairs. */
99 int options; /* common options for this segment */ member in struct:exclude_segment
115 fnmatch_pattern_has_wildcards (const char *str, int options) argument
204 new_exclude_segment(struct exclude *ex, enum exclude_type type, int options) argument
268 fnmatch_no_wildcards(char const *pattern, char const *f, int options) argument
313 exclude_fnmatch(char const *pattern, char const *f, int options) argument
344 int options = exclude[i].options; local
358 int options = seg->options; local
445 add_exclude(struct exclude *ex, char const *pattern, int options) argument
495 add_exclude_file(void (*add_func) (struct exclude *, char const *, int), struct exclude *ex, char const *file_name, int options, char line_end) argument
[all...]
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dgetopt1.c41 getopt_long (int argc, char *__getopt_argv_const *argv, const char *options,
44 return _getopt_internal (argc, (char **) argv, options, long_options,
49 _getopt_long_r (int argc, char **argv, const char *options,
53 return _getopt_internal_r (argc, argv, options, long_options, opt_index,
64 const char *options,
67 return _getopt_internal (argc, (char **) argv, options, long_options,
72 _getopt_long_only_r (int argc, char **argv, const char *options,
76 return _getopt_internal_r (argc, argv, options, long_options, opt_index,
40 getopt_long(int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index) argument
48 _getopt_long_r(int argc, char **argv, const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) argument
62 getopt_long_only(int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index) argument
71 _getopt_long_only_r(int argc, char **argv, const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) argument
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dwaitpid.c26 waitpid (pid, stat_loc, options)
28 int *stat_loc, options;
H A Dgetopt1.c70 getopt_long (argc, argv, options, long_options, opt_index)
73 const char *options;
77 return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
86 getopt_long_only (argc, argv, options, long_options, opt_index)
89 const char *options;
93 return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
/haiku-fatelf/src/bin/network/wget/lib/
H A Dgetopt1.c41 getopt_long (int argc, char *__getopt_argv_const *argv, const char *options,
44 return _getopt_internal (argc, (char **) argv, options, long_options,
49 _getopt_long_r (int argc, char **argv, const char *options,
53 return _getopt_internal_r (argc, argv, options, long_options, opt_index,
64 const char *options,
67 return _getopt_internal (argc, (char **) argv, options, long_options,
72 _getopt_long_only_r (int argc, char **argv, const char *options,
76 return _getopt_internal_r (argc, argv, options, long_options, opt_index,
40 getopt_long(int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index) argument
48 _getopt_long_r(int argc, char **argv, const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) argument
62 getopt_long_only(int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index) argument
71 _getopt_long_only_r(int argc, char **argv, const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) argument
/haiku-fatelf/src/bin/diffutils/lib/
H A Dexclude.c76 /* An exclude pattern-options pair. The options are fnmatch options
77 ORed with EXCLUDE_* options. */
82 int options; member in struct:patopts
85 /* An exclude list, of pattern-options pairs. */
120 fnmatch_no_wildcards (char const *pattern, char const *f, int options) argument
122 if (! (options & FNM_LEADING_DIR))
123 return ((options & FNM_CASEFOLD)
129 int r = ((options
165 int options = exclude[i].options; local
191 add_exclude(struct exclude *ex, char const *pattern, int options) argument
215 add_exclude_file(void (*add_func) PARAMS ((struct exclude *, char const *, int)), struct exclude *ex, char const *filename, int options, char line_end) argument
[all...]
H A Dprepargs.c42 /* Find the white-space-separated options specified by OPTIONS, and
43 using BUF to store copies of these options, set ARGV[0], ARGV[1],
44 etc. to the option copies. Return the number N of options found.
48 prepend_args (char const *options, char *buf, char **argv) argument
50 char const *o = options;
73 /* Prepend the whitespace-separated options in OPTIONS to the argument
77 prepend_default_options (char const *options, int *pargc, char ***pargv) argument
79 if (options)
81 char *buf = xmalloc (strlen (options) + 1);
82 int prepended = prepend_args (options, bu
[all...]
H A Dgetopt1.c67 getopt_long (argc, argv, options, long_options, opt_index)
70 const char *options;
74 return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
83 getopt_long_only (argc, argv, options, long_options, opt_index)
86 const char *options;
90 return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
/haiku-fatelf/src/apps/debugger/
H A DDebugger.cpp42 "Usage: %s [ <options> ]\n"
43 " %s [ <options> ] <command line>\n"
44 " %s [ <options> ] --team <team>\n"
45 " %s [ <options> ] --thread <thread>\n"
107 Options& options)
129 options.useCLI = true;
140 options.useCLI = true;
141 options.saveReport = true;
142 options.reportPath = optarg;
148 options
106 parse_arguments(int argc, const char* const* argv, bool noOutput, Options& options) argument
223 get_debugged_program(const Options& options, DebuggedProgramInfo& _info) argument
464 Options options; local
574 Run(const Options& options) argument
654 Options options; local
[all...]
/haiku-fatelf/src/libs/bsd/
H A Dwait.c16 wait3(int *status, int options, struct rusage *rusage) argument
18 return wait4(-1, status, options, rusage);
23 wait4(pid_t pid, int *status, int options, struct rusage *rusage) argument
25 pid_t waitPid = waitpid(pid, status, options);
/haiku-fatelf/src/bin/bc/lib/
H A Dgetopt1.c64 getopt_long (argc, argv, options, long_options, opt_index)
67 const char *options;
71 return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
80 getopt_long_only (argc, argv, options, long_options, opt_index)
83 const char *options;
87 return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
/haiku-fatelf/src/bin/gawk/
H A Dgetopt1.c68 getopt_long (argc, argv, options, long_options, opt_index)
71 const char *options;
75 return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
84 getopt_long_only (argc, argv, options, long_options, opt_index)
87 const char *options;
91 return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
/haiku-fatelf/src/bin/gdb/gdb/config/djgpp/
H A Ddjcheck.sh18 options=-dbx
20 options=
22 $GDB ${options} < ${base}.in 2>&1 \
/haiku-fatelf/src/bin/sharutils/lib/
H A Dgetopt1.c60 getopt_long (argc, argv, options, long_options, opt_index)
63 const char *options;
67 return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
76 getopt_long_only (argc, argv, options, long_options, opt_index)
79 const char *options;
83 return _getopt_internal (argc, argv, options, long_options, opt_index, 1);

Completed in 218 milliseconds

1234567891011>>