OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:sopt
(Results
1 - 2
of
2
) sorted by null
/external/dnsmasq/src/
rfc2131.c
204
unsigned char *
sopt
;
local
215
if ((
sopt
= option_find1(option_ptr(opt, 0), option_ptr(opt, option_len(opt)), SUBOPT_SUBNET_SELECT, INADDRSZ)))
216
subnet_addr = option_addr(
sopt
);
219
if ((
sopt
= option_find1(option_ptr(opt, 0), option_ptr(opt, option_len(opt)), SUBOPT_SERVER_OR, INADDRSZ)))
220
override = option_addr(
sopt
);
236
if ((
sopt
= option_find1(option_ptr(opt, 0), option_ptr(opt, option_len(opt)), search, 1)) &&
237
vendor->len == option_len(
sopt
) &&
238
memcmp(option_ptr(
sopt
, 0), vendor->data, vendor->len) == 0)
[
all
...]
/external/qemu/
qemu-io.c
1054
const char *
sopt
= "hVc:Crsnm";
local
1073
while ((c = getopt_long(argc, argv,
sopt
, lopt, &opt_index)) != -1) {
Completed in 13 milliseconds