Searched refs:option (Results 151 - 175 of 380) sorted by relevance

1234567891011>>

/haiku-fatelf/src/system/kernel/fs/
H A Dsocket.cpp72 // TODO: Add driver settings option to load the userland net stack.
546 common_getsockopt(int fd, int level, int option, void *value, argument
553 return sStackInterface->getsockopt(descriptor->u.socket, level, option,
559 common_setsockopt(int fd, int level, int option, const void *value, argument
566 return sStackInterface->setsockopt(descriptor->u.socket, level, option,
757 getsockopt(int socket, int level, int option, void *value, socklen_t *_length) argument
760 RETURN_AND_SET_ERRNO(common_getsockopt(socket, level, option, value,
766 setsockopt(int socket, int level, int option, const void *value, argument
770 RETURN_AND_SET_ERRNO(common_setsockopt(socket, level, option, value,
1108 _user_getsockopt(int socket, int level, int option, voi argument
1142 _user_setsockopt(int socket, int level, int option, const void *userValue, socklen_t length) argument
[all...]
/haiku-fatelf/src/tests/kits/net/
H A Dudp_echo.c64 int option = 1; local
71 setsockopt(sockFD, SOL_SOCKET, SO_BROADCAST, &option, sizeof(option));
/haiku-fatelf/src/bin/findutils/xargs/
H A Dxargs.c7 (at your option) any later version.
236 * -0 or -d option had been given.
241 static struct option const longopts[] =
271 static long parse_num PARAMS ((char *str, int option, long min, long max, int fatal));
453 * adjusted via the -s option.
525 * for the -s option to specify a size that the implementation
537 _("warning: value %ld for -s option is too large, "
776 error (1, 0, _("unmatched %s quote; by default quotes are special to xargs unless you use the -0 option"),
857 error (1, 0, _("unmatched %s quote; by default quotes are special to xargs unless you use the -0 option"),
1161 OPTION is the command line option t
1166 parse_num(char *str, int option, long int min, long int max, int fatal) argument
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/src/gutenprintui2/
H A Dui-utils.c12 * Software Foundation; either version 2 of the License, or (at your option)
800 stpui_create_new_combo(option_t *option, GtkWidget *table, argument
806 option->checkbox = gtk_check_button_new();
807 gtk_table_attach(GTK_TABLE(table), option->checkbox,
811 option->info.list.combo = combo;
815 stpui_set_help_data(event_box, gettext(option->fast_desc->help));
817 (GTK_TABLE(table), hpos + 1, vpos, gettext(option->fast_desc->text),
819 option->info.list.label = table_label(GTK_TABLE(table), hpos, vpos);
H A Dpanel.c12 * Software Foundation; either version 2 of the License, or (at your option)
797 build_page_size_combo(option_t *option) argument
804 stp_string_list_count(option->info.list.params) < 10)
805 plist_build_combo(option->info.list.combo, option->info.list.label,
806 option->info.list.params, option->is_active,
807 stp_get_string_parameter(pv->v, option->fast_desc->name),
808 option->info.list.default_val,G_CALLBACK(combo_callback),
809 &(option
820 build_a_combo(option_t *option) argument
3474 option_t *option = &(current_options[i]); local
3551 option_t *option = &(current_options[i]); local
3645 option_t *option = (option_t *)data; local
[all...]
/haiku-fatelf/src/libs/print/libgutenprint/src/testpattern/
H A Drun-testpattern-2.in102 -o option Test this option. Multiple -o options may be specified.
109 -d option=value Test this option with only the specified (default) value,
147 print STDERR "Malformed default option `$opt'\n";
150 my ($option, $value) = split(/=/, $opt);
152 delete $base_settings{$option};
154 $base_settings{$option} = $value;
/haiku-fatelf/src/add-ons/kernel/network/stack/
H A Dnet_socket.cpp76 int socket_setsockopt(net_socket* socket, int level, int option,
1073 socket_get_option(net_socket* socket, int level, int option, void* value, argument
1079 switch (option) {
1119 if (option == SO_SNDTIMEO)
1153 *_set = (socket->options & option) != 0;
1181 dprintf("socket_getsockopt: unknown option %d\n", option);
1187 socket_getsockopt(net_socket* socket, int level, int option, void* value, argument
1191 level, option, value, _length);
1491 socket_set_option(net_socket* socket, int level, int option, cons argument
1614 socket_setsockopt(net_socket* socket, int level, int option, const void* value, int length) argument
[all...]
/haiku-fatelf/src/bin/gawk/
H A Dgetopt.c12 version 2.1 of the License, or (at your option) any later version.
116 When `getopt' finds an option that takes an argument,
119 each non-option ARGV-element is returned here. */
130 non-option elements that the caller should itself scan.
144 /* The next char to be scanned in the option-element
145 in which the last option character we returned was found.
158 /* Set to an option character which was unrecognized.
164 /* Describe how to deal with options that follow non-option ARGV-elements.
171 stop option processing when the first non-option i
[all...]
/haiku-fatelf/src/bin/network/telnetd/
H A Dutility.c501 printoption(const char *fmt, int option) argument
503 if (TELOPT_OK(option))
504 output_data("%s %s\r\n", fmt, TELOPT(option));
505 else if (TELCMD_OK(option))
506 output_data("%s %s\r\n", fmt, TELCMD(option));
508 output_data("%s %d\r\n", fmt, option);
658 output_data("(no option??\?)");
/haiku-fatelf/src/system/libroot/posix/glibc/extensions/
H A Dgetopt.c12 version 2.1 of the License, or (at your option) any later version.
119 When `getopt' finds an option that takes an argument,
122 each non-option ARGV-element is returned here. */
133 non-option elements that the caller should itself scan.
147 /* The next char to be scanned in the option-element
148 in which the last option character we returned was found.
161 /* Set to an option character which was unrecognized.
167 /* Describe how to deal with options that follow non-option ARGV-elements.
174 stop option processing when the first non-option i
[all...]
/haiku-fatelf/src/tests/kits/net/tcp_shell/
H A Dtcp_shell.cpp817 domain_control(net_protocol *protocol, int level, int option, void *value, argument
978 tcp_option *option; local
981 size, (void **)&option) != B_OK) {
988 option = (tcp_option *)optionsBuffer;
993 switch (option->kind) {
998 printf(" <mss %u>", ntohs(option->max_segment_size));
1002 printf(" <ws %u>", option->window_shift);
1006 printf(" <ts %lu:%lu>", option->timestamp.value, option->timestamp.reply);
1011 length = option
[all...]
/haiku-fatelf/headers/os/net/
H A DNetEndpoint.h34 int SetOption(int32 option, int32 level, const void* data,
H A DUrlProtocolHttp.h27 virtual status_t SetOption(uint32 option, void* value);
/haiku-fatelf/src/bin/coreutils/src/
H A Denv.c7 (at your option) any later version.
35 static struct option const longopts[] =
H A Dnice.c7 (at your option) any later version.
58 static struct option const longopts[] =
H A Drmdir.c8 (at your option) any later version.
50 /* For long options that have no equivalent short option, use a
51 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
57 static struct option const longopts[] =
60 to e.g. rm's -f option. */
/haiku-fatelf/src/bin/findutils/locate/
H A Dfrcode.c7 (at your option) any later version.
143 static struct option const longopts[] =
/haiku-fatelf/src/bin/
H A Dlistfont.cpp16 static struct option const kLongOptions[] = {
H A Dmkindex.cpp29 static struct option const kLongOptions[] = {
H A Drmindex.cpp33 /* These enum values cannot possibly conflict with the option values
41 static struct option const longopts[] = {
H A Droster.cpp22 static struct option const kLongOptions[] = {
/haiku-fatelf/src/bin/package/
H A Dcommand_dump.cpp157 static struct option sLongOptions[] = {
/haiku-fatelf/src/system/boot/platform/pxe_ia32/
H A Dnetwork.cpp117 int option = *(options++); local
120 // check end or pad option
121 if (option == 0xff || optionsLen < 0)
123 if (option == 0x00)
132 // root path option
133 if (option == 17) {
134 dprintf("root path option: \"%.*s\"\n", len, (char*)options);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/fragmenter/
H A Dfragmenter.cpp73 static struct option longOptions[] = {
/haiku-fatelf/src/tests/add-ons/print/transports/
H A Dmain.cpp14 static struct option longopts[] = {

Completed in 147 milliseconds

1234567891011>>