HomeSort by relevance Sort by last modified time
    Searched defs:opts (Results 101 - 125 of 190) sorted by null

1 2 3 45 6 7 8

  /external/iptables/extensions/
libipt_policy.c 43 static struct option opts[] = variable in typeref:struct:option
430 .extra_opts = opts
libipt_string.c 47 static struct option opts[] = { variable in typeref:struct:option
347 .extra_opts = opts
libip6t_hashlimit.c 49 static struct option opts[] = { variable in typeref:struct:option
363 .extra_opts = opts
libip6t_ipv6header.c 144 " long names: hop-by-hop,ipv6-opts,ipv6-route,\n"
151 static struct option opts[] = { variable in typeref:struct:option
310 .extra_opts = opts,
libip6t_multiport.c 45 static struct option opts[] = { variable in typeref:struct:option
434 .extra_opts = opts,
450 .extra_opts = opts
libip6t_policy.c 44 static struct option opts[] = variable in typeref:struct:option
472 .extra_opts = opts
libip6t_sctp.c 73 static struct option opts[] = { variable in typeref:struct:option
543 .extra_opts = opts
libip6t_tcp.c 30 static struct option opts[] = { variable in typeref:struct:option
409 .extra_opts = opts,
libipt_conntrack.c 47 static struct option opts[] = { variable in typeref:struct:option
544 .extra_opts = opts
libipt_dccp.c 49 static struct option opts[] = { variable in typeref:struct:option
367 .extra_opts = opts
libipt_hashlimit.c 49 static struct option opts[] = { variable in typeref:struct:option
363 .extra_opts = opts
libipt_multiport.c 46 static struct option opts[] = { variable in typeref:struct:option
444 .extra_opts = opts
460 .extra_opts = opts
libipt_realm.c 28 static struct option opts[] = { variable in typeref:struct:option
264 .extra_opts = opts
libipt_sctp.c 74 static struct option opts[] = { variable in typeref:struct:option
544 .extra_opts = opts
libipt_tcp.c 31 static struct option opts[] = { variable in typeref:struct:option
410 .extra_opts = opts
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapDecode.java 71 BitmapFactory.Options opts = new BitmapFactory.Options(); local
74 opts.inJustDecodeBounds = true;
75 bm = BitmapFactory.decodeStream(is, null, opts);
77 // now opts.outWidth and opts.outHeight are the dimension of the
80 opts.inJustDecodeBounds = false; // this will request the bm
81 opts.inSampleSize = 4; // scaled down by 4
82 bm = BitmapFactory.decodeStream(is, null, opts);
  /external/bluetooth/bluez/test/
hstest.c 86 struct sco_options opts; local
120 memset(&opts, 0, sizeof(opts));
121 size = sizeof(opts);
123 if (getsockopt(s, SOL_SCO, SCO_OPTIONS, &opts, &size) < 0) {
132 *mtu = opts.mtu;
  /external/e2fsprogs/misc/
fsck.h 44 char *opts; member in struct:fs_info
  /external/emma/core/java12/com/vladium/emma/data/
mergeCommand.java 64 final IOptsParser.IOpt [] opts = parsedopts.getOpts (); local
66 if (opts == null) // this means there were args parsing errors
77 for (int o = 0; o < opts.length; ++ o)
79 final IOptsParser.IOpt opt = opts [o];
99 // process prefixed opts:
  /external/emma/core/java12/com/vladium/emma/instr/
instrCommand.java 67 final IOptsParser.IOpt [] opts = parsedopts.getOpts (); local
69 if (opts == null) // this means there were args parsing errors
79 for (int o = 0; o < opts.length; ++ o)
81 final IOptsParser.IOpt opt = opts [o];
115 "invalid '" + opts [o].getName () + "' option value: " + ov);
127 // process prefixed opts:
  /external/emma/core/java12/com/vladium/emma/report/
reportCommand.java 66 final IOptsParser.IOpt [] opts = parsedopts.getOpts (); local
68 if (opts == null) // this means there were args parsing errors
79 for (int o = 0; o < opts.length; ++ o)
81 final IOptsParser.IOpt opt = opts [o];
105 // process prefixed opts:
  /external/icu4c/samples/coll/
coll.cpp 65 OptSpec opts[] = { variable
85 UBool processOptions(int argc, const char **argv, OptSpec opts[])
90 for (pOpt = opts; pOpt->name != 0; pOpt ++) {
241 if (processOptions(argc, argv, opts) != TRUE || opt_help) {
  /external/icu4c/samples/strsrch/
strsrch.cpp 74 OptSpec opts[] = { variable
96 UBool processOptions(int argc, const char **argv, OptSpec opts[])
101 for (pOpt = opts; pOpt->name != 0; pOpt ++) {
279 if (processOptions(argc, argv, opts) != TRUE || opt_help) {
  /external/qemu/android/
qemulator.c 20 static double get_default_scale( AndroidOptions* opts );
42 AndroidOptions* opts = emulator->opts; local
44 if ( !emulator->window && !opts->no_window ) {
46 double scale = get_default_scale(emulator->opts);
118 AndroidOptions* opts )
129 if (NULL != opts->charmap) {
130 emulator->keyboard = skin_keyboard_create_from_kcm(opts->charmap, opts->raw_keys);
132 emulator->keyboard = skin_keyboard_create_from_aconfig(aconfig, opts->raw_keys)
    [all...]
  /external/qemu/
qemu-sockets-android.c 51 const char *opts, *h; local
89 opts = str + pos;
90 h = strstr(opts, ",to=");
92 if (strstr(opts, ",ipv4")) {
96 if (strstr(opts, ",ipv6")) {
168 sock_address_get_port(e) - port_offset, opts);
171 sock_address_get_port(e) - port_offset, opts);
269 char *path, *upath, *opts; local
272 opts = strchr(str, ',');
273 if (opts) {
    [all...]

Completed in 798 milliseconds

1 2 3 45 6 7 8