Searched refs:option (Results 51 - 75 of 380) sorted by relevance

1234567891011>>

/haiku-fatelf/src/system/libroot/posix/glibc/extensions/
H A Dgetopt1.c9 version 2.1 of the License, or (at your option) any later version.
76 const struct option *long_options;
82 /* Like getopt_long, but '-' as well as '--' can indicate a long option.
83 If an option that starts with '-' (not '--') doesn't match a long option,
84 but does match a short option, it is parsed as a short option
92 const struct option *long_options;
122 static struct option long_options[] =
141 printf ("option
[all...]
/haiku-fatelf/src/kits/network/
H A Dsocket.cpp108 convert_from_r5_sockopt(int& level, int& option) argument
113 switch (option) {
115 option = SO_DEBUG;
118 option = SO_REUSEADDR;
121 option = SO_NONBLOCK;
124 option = SO_REUSEPORT;
128 option = -1;
314 getsockopt(int socket, int level, int option, void *value, socklen_t *_length) argument
317 if (option == R5_SO_FIONREAD) {
323 convert_from_r5_sockopt(level, option);
332 setsockopt(int socket, int level, int option, const void *value, socklen_t length) argument
[all...]
/haiku-fatelf/src/apps/debugger/user_interface/gui/util/
H A DSettingsMenu.cpp132 OptionMenuItem(SettingsOption* option) argument
134 BMenuItem(option->Name(), NULL),
135 fOption(option)
152 message->AddPointer("option", fOption);
190 void OptionItemSelected(Settings* settings, SettingsOption* option) argument
193 BVariant(option->ID(), B_VARIANT_DONT_COPY_DATA));
256 SettingsOption* option = setting->OptionAt(i); local
257 BMenuItem* optionItem = new(std::nothrow) OptionMenuItem(option);
350 SettingsOption* option; local
352 || message->FindPointer("option", (voi
[all...]
/haiku-fatelf/src/apps/debugger/value/value_handlers/
H A DIntegerValueHandler.cpp103 FormatOption* option = dynamic_cast<FormatOption*>( local
105 return option != NULL ? option->Format() : INTEGER_FORMAT_DEFAULT;
185 // get the format option
197 // add the format option menu item
255 FormatOption* option = new(std::nothrow) FormatOption(id, name, format); local
256 if (option == NULL || !setting->AddOption(option)) {
257 delete option;
290 FormatOption* option
[all...]
/haiku-fatelf/src/bin/debug/strace/
H A DNetworkTypes.cpp244 int option;
250 #define SOCKET_OPTION_INFO_ENTRY(level, option) \
251 { level, option, #option, NULL, 0 }
253 #define SOCKET_OPTION_INFO_ENTRY_TYPE(level, option, type) \
254 { level, option, #option, TypeHandlerFactory<type *>::Create(), sizeof(type) }
302 kSocketOptions[i].option),
307 const socket_option_info *GetEntry(int level, int option) const
309 ThisMap::const_iterator i = fMap.find(std::make_pair(level, option));
[all...]
/haiku-fatelf/src/tests/add-ons/print/ppd/ui/
H A DPPDConfigView.cpp120 BMessage* GetMessage(uint32 what, const char* option);
193 BMessage* DetailsBuilder::GetMessage(uint32 what, const char* option) argument
198 if (option != NULL) {
199 message->AddString("option", option);
210 const char* option = statement->GetOptionString(); local
213 } else if (option != NULL) {
214 text = option;
224 message = GetMessage(kMsgStringChanged, option);
227 message = GetMessage(kMsgStringChanged, option);
472 const char* option; local
485 const char* option = msg->FindString("option"); local
[all...]
/haiku-fatelf/src/servers/net/
H A DDHCPClient.cpp134 bool NextOption(dhcp_option_cookie& cookie, message_option& option,
141 uint8* PutOption(uint8* options, message_option option);
142 uint8* PutOption(uint8* options, message_option option, uint8 data);
143 uint8* PutOption(uint8* options, message_option option, uint16 data);
144 uint8* PutOption(uint8* options, message_option option, uint32 data);
145 uint8* PutOption(uint8* options, message_option option, const uint8* data,
185 message_option& option, const uint8*& data, size_t& size) const
218 // handle option overload in file and/or server_name fields.
238 // if last option is not OPTION_END,
239 // there is no space left for other option!
184 NextOption(dhcp_option_cookie& cookie, message_option& option, const uint8*& data, size_t& size) const argument
281 message_option option; local
298 message_option option; local
347 PutOption(uint8* options, message_option option) argument
355 PutOption(uint8* options, message_option option, uint8 data) argument
362 PutOption(uint8* options, message_option option, uint16 data) argument
369 PutOption(uint8* options, message_option option, uint32 data) argument
376 PutOption(uint8* options, message_option option, const uint8* data, uint32 size) argument
512 int option = 1; local
744 message_option option; local
[all...]
/haiku-fatelf/src/bin/network/wget/src/
H A Dcss.l1 %option case-insensitive
2 %option noyywrap
3 %option never-interactive
15 your option) any later version.
/haiku-fatelf/src/bin/network/wget/util/
H A Dtrunc.c76 int option; local
80 while ((option = getopt (argc, argv, "c")) != -1)
82 switch (option) {
87 fprintf (stderr, PROGRAM_NAME ": Unrecognized option `%c'.\n\n",
/haiku-fatelf/src/bin/coreutils/lib/
H A Dlong-options.c9 (at your option) any later version.
33 static struct option const long_options[] =
H A Dxstrtol.h9 (at your option) any later version.
59 /* Report an error for an invalid integer in an option argument.
63 Use OPT_IDX to decide whether to print the short option string "C"
64 or "-C" or a long option string derived from LONG_OPTION. OPT_IDX
65 is -2 if the short option "C" was used, without any leading "-"; it
66 is -1 if the short option "-C" was used; otherwise it is an index
70 ARG is the option-argument containing the integer.
75 int, char, struct option const *,
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dxstrtol.h9 (at your option) any later version.
59 /* Report an error for an invalid integer in an option argument.
63 Use OPT_IDX to decide whether to print the short option string "C"
64 or "-C" or a long option string derived from LONG_OPTION. OPT_IDX
65 is -2 if the short option "C" was used, without any leading "-"; it
66 is -1 if the short option "-C" was used; otherwise it is an index
70 ARG is the option-argument containing the integer.
75 int, char, struct option const *,
/haiku-fatelf/src/add-ons/kernel/network/protocols/ipv4/
H A Dipv4.cpp864 ipv4_delta_group(IPv4GroupInterface* group, int option, argument
867 switch (option) {
887 ipv4_delta_membership(ipv4_protocol* protocol, int option, argument
895 switch (option) {
907 if (option == IP_DROP_MEMBERSHIP
908 || option == IP_DROP_SOURCE_MEMBERSHIP)
919 status = ipv4_delta_group(state, option, interface, sourceAddr);
926 generic_to_ipv4(int option) argument
928 switch (option) {
962 ipv4_delta_membership(ipv4_protocol* protocol, int option, argument
984 ipv4_generic_delta_membership(ipv4_protocol* protocol, int option, uint32 index, const sockaddr_storage* _groupAddr, const sockaddr_storage* _sourceAddr) argument
1117 ipv4_control(net_protocol* _protocol, int level, int option, void* value, size_t* _length) argument
1128 ipv4_getsockopt(net_protocol* _protocol, int level, int option, void* value, int* _length) argument
1178 ipv4_setsockopt(net_protocol* _protocol, int level, int option, const void* value, int length) argument
[all...]
/haiku-fatelf/src/bin/
H A Did.c191 struct option groupOption = { "group", no_argument, 0, 1 } ;
192 struct option groupsOption = { "groups", no_argument, 0, 2 } ;
193 struct option nameOption = { "name", no_argument, 0, 3 } ;
194 struct option realOption = { "real", no_argument, 0, 4 } ;
195 struct option userOption = { "user", no_argument, 0, 5 } ;
196 struct option helpOption = { "help", no_argument, 0, 6 } ;
197 struct option versionOption = { "version", no_argument, 0, 7 } ;
199 struct option options[] = {
/haiku-fatelf/src/libs/print/libgutenprint/src/gutenprintui2/
H A Dprintrcl.l10 * Software Foundation; either version 2 of the License, or (at your option)
62 %option noyywrap
/haiku-fatelf/src/libs/print/libgutenprint/src/testpattern/
H A Dtestpatternl.l10 * Software Foundation; either version 2 of the License, or (at your option)
65 %option noyywrap
/haiku-fatelf/src/tools/docbook/libxslt/libxslt/
H A Dsecurity.h35 * the set of option that can be configured
64 xsltSecurityOption option,
68 xsltSecurityOption option);
/haiku-fatelf/src/tools/restest/
H A Drestest.cpp112 const char* option = arg + 2; local
114 if (!strcmp(option, "help")) {
117 } else if (!strcmp(option, "list")) {
121 } else if (!strcmp(option, "list-long")) {
124 } else if (!strcmp(option, "summary")) {
127 } else if (!strcmp(option, "write-test")) {
131 throw Exception(USAGE_ERROR, BString("Illegal option: `")
136 char option = arg[i]; local
137 switch (option) {
162 BString("Illegal option
[all...]
/haiku-fatelf/src/tests/system/boot/loader/
H A Dplatform_devices.cpp185 char *option; local
187 while ((option = get_next_option(&cookie)) != NULL) {
188 if (!strcmp(option, "--no-devices"))
190 else if (!strcmp(option, "--no-scsi"))
192 else if (!strcmp(option, "--menu"))
/haiku-fatelf/src/bin/gdb/opcodes/
H A Darm-dis.c11 Software Foundation; either version 2 of the License, or (at your option)
136 set_arm_regname_option (option)
137 int option;
140 regname_selected = option;
145 get_arm_regnames (option, setname, setdescription, register_names)
146 int option;
151 *setname = regnames[option].name;
152 *setdescription = regnames[option].description;
153 *register_names = regnames[option].reg_names;
1186 /* Parse an individual disassembler option
[all...]
/haiku-fatelf/src/bin/network/atftpd/
H A Doptions.c15 * option) any later version.
95 * Set an option by name in the structure.
96 * name is the name of the option as in tftp_def.c.
98 * When setting an option, it is marked as specified.
107 if (strncasecmp(name, options[i].option, OPT_SIZE) == 0)
122 * Return "value" for a given option name in the given option
131 if (strncasecmp(name, options[i].option, OPT_SIZE) == 0)
144 * Disable an option by name.
156 if (strncasecmp(name, options[i].option, OPT_SIZ
[all...]
/haiku-fatelf/headers/private/net/
H A Dnet_socket.h69 status_t (*get_option)(net_socket* socket, int level, int option,
71 status_t (*set_option)(net_socket* socket, int level, int option,
108 int (*getsockopt)(net_socket* socket, int level, int option,
115 int (*setsockopt)(net_socket* socket, int level, int option,
/haiku-fatelf/src/add-ons/kernel/network/datalink_protocols/loopback_frame/
H A Dloopback_frame.cpp125 net_interface_address* address, int32 option,
129 option, oldAddress, newAddress);
134 loopback_frame_control(net_datalink_protocol* protocol, int32 option, argument
137 return protocol->next->module->control(protocol->next, option, argument,
124 loopback_frame_change_address(net_datalink_protocol* protocol, net_interface_address* address, int32 option, const struct sockaddr* oldAddress, const struct sockaddr* newAddress) argument
/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DAdvancedSettingsWindow.h75 void _AddMenuItem(BPopUpMenu* menu, const char* label, CloseOption option);
/haiku-fatelf/src/bin/gdb/gdb/rdi-share/
H A Dparams.h40 unsigned int *option; /* points to array of values */ member in struct:ParameterList

Completed in 278 milliseconds

1234567891011>>