Searched refs:opt (Results 1 - 25 of 576) sorted by relevance

1234567891011>>

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/
H A DbuildBugToolsJar.sh3 export JAVA_HOME=/opt/sun-java2-5.0;
4 export ANT_HOME=/opt/apache-ant-1.6;
H A DbuildBugToolsZip.sh3 export JAVA_HOME=/opt/sun-java2-5.0;
4 export ANT_HOME=/opt/apache-ant-1.6;
H A DupdateBugState.sh3 export JAVA_HOME=/opt/sun-java2-1.4;
4 export ANT_HOME=/opt/apache-ant-1.6;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
H A DbuildFeedToolsJar.sh13 export JAVA_HOME=/opt/sun-java2-5.0;
14 export ANT_HOME=/opt/apache-ant-1.6;
H A DbuildFeedToolsZip.sh13 export JAVA_HOME=/opt/sun-java2-5.0;
14 export ANT_HOME=/opt/apache-ant-1.6;
H A DfeedWatch.sh13 export JAVA_HOME=/opt/sun-java2-5.0;
14 export ANT_HOME=/opt/apache-ant-1.6;
/external/oprofile/libpopt/
H A Dpopthelp.c95 const struct poptOption *opt; local
98 for (opt = table; opt->longName || opt->shortName || opt->arg; opt++) {
99 if (opt->argInfo == POPT_ARG_INTL_DOMAIN)
100 return opt->arg;
106 * @param opt option(s)
110 getArgDescrip(const struct poptOption * opt, argument
147 singleOptionDefaultValue(size_t lineLength, const struct poptOption * opt, const char * translation_domain) argument
218 singleOptionHelp(FILE * fp, size_t maxLeftCol, const struct poptOption * opt, const char * translation_domain) argument
410 maxArgWidth(const struct poptOption * opt, const char * translation_domain) argument
484 const struct poptOption * opt; local
506 const struct poptOption * opt; local
585 singleOptionUsage(FILE * fp, size_t cursor, const struct poptOption * opt, const char *translation_domain) argument
672 const struct poptOption * opt; local
705 singleTableUsage(poptContext con, FILE * fp, size_t cursor, const struct poptOption * opt, const char * translation_domain, poptDone done) argument
756 showShortOptions(const struct poptOption * opt, FILE * fp, char * str) argument
[all...]
/external/linux-tools-perf/util/
H A Dparse-options.c8 static int opterror(const struct option *opt, const char *reason, int flags) argument
11 return error("switch `%c' %s", opt->short_name, reason);
13 return error("option `no-%s' %s", opt->long_name, reason);
14 return error("option `%s' %s", opt->long_name, reason);
17 static int get_arg(struct parse_opt_ctx_t *p, const struct option *opt, argument
20 if (p->opt) {
21 *arg = p->opt;
22 p->opt = NULL;
23 } else if ((opt->flags & PARSE_OPT_LASTARG_DEFAULT) && (p->argc == 1 ||
25 *arg = (const char *)opt
34 get_value(struct parse_opt_ctx_t *p, const struct option *opt, int flags) argument
557 parse_opt_verbosity_cb(const struct option *opt, const char *arg __used, int unset) argument
[all...]
/external/bzip2/
H A Dbzgrep20 -e | -f) opt="$opt $1"; shift; pat="$1"
24 -A | -B) opt="$opt $1 $2"; shift;;
25 -*) opt="$opt $1";;
43 op=`echo "$opt" | sed -e 's/ //g' -e 's/-//g'`
52 bzip2 -cdfq | $grep $opt "$pat"
60 bzip2 -cdfq "$i" | $grep $opt "$pat" 2>&1 > /dev/null && echo $i
63 bzip2 -cdfq "$i" | $grep $opt "
[all...]
/external/ppp/pppd/
H A Doptions.c354 option_t *opt; local
363 opt = find_option(arg);
364 if (opt == NULL) {
369 n = n_arguments(opt);
374 if (!process_option(opt, arg, argv))
395 option_t *opt; local
427 opt = find_option(cmd);
428 if (opt == NULL) {
433 n = n_arguments(opt);
443 if (!process_option(opt, cm
526 option_t *opt; local
591 option_t *opt; local
810 option_t *opt; local
[all...]
/external/iproute2/tc/
H A Dq_fifo.c34 struct tc_fifo_qopt opt; local
35 memset(&opt, 0, sizeof(opt));
40 if (get_size(&opt.limit, *argv)) {
57 addattr_l(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
61 static int fifo_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
65 if (opt == NULL)
68 if (RTA_PAYLOAD(opt) < sizeof(*qopt))
70 qopt = RTA_DATA(opt);
[all...]
H A Dq_multiq.c47 struct tc_multiq_qopt opt; local
61 addattr_l(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
65 int multiq_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
69 if (opt == NULL)
71 if (RTA_PAYLOAD(opt) < sizeof(*qopt))
74 qopt = RTA_DATA(opt);
H A Dq_sfq.c34 struct tc_sfq_qopt opt; local
36 memset(&opt, 0, sizeof(opt));
41 if (get_size(&opt.quantum, *argv)) {
48 if (get_integer(&opt.perturb_period, *argv, 0)) {
55 if (get_u32(&opt.limit, *argv, 0)) {
59 if (opt.limit < 2) {
76 addattr_l(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
80 static int sfq_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
[all...]
H A Dq_gred.c54 struct tc_gred_sopt opt; local
82 opt.DPs);
86 opt.grio=1;
103 memset(&opt, 0, sizeof(struct tc_gred_sopt));
104 opt.DPs = dps;
105 opt.def_DP = def_dp;
107 DPRINTF("TC_GRED: sending DPs=%d default=%d\n",opt.DPs,opt.def_DP);
111 addattr_l(n, 1024, TCA_GRED_DPS, &opt, sizeof(struct tc_gred_sopt));
121 struct tc_gred_qopt opt; local
255 gred_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
[all...]
H A Dq_tbf.c42 struct tc_tbf_qopt opt; local
51 memset(&opt, 0, sizeof(opt));
56 if (opt.limit || latency) {
60 if (get_size(&opt.limit, *argv)) {
67 if (opt.limit || latency) {
114 if (opt.rate.rate) {
118 if (get_rate(&opt.rate.rate, *argv)) {
125 if (opt.peakrate.rate) {
129 if (get_rate(&opt
218 tbf_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
[all...]
H A Dq_red.c36 struct tc_red_qopt opt; local
46 memset(&opt, 0, sizeof(opt));
51 if (get_size(&opt.limit, *argv)) {
57 if (get_size(&opt.qth_min, *argv)) {
63 if (get_size(&opt.qth_max, *argv)) {
107 if (!opt.qth_min || !opt.qth_max || !burst || !opt.limit || !avpkt) {
112 if ((wlog = tc_red_eval_ewma(opt
146 red_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
[all...]
H A Dq_htb.c63 struct tc_htb_glob opt; local
66 memset(&opt,0,sizeof(opt));
67 opt.rate2quantum = 10;
68 opt.version = 3;
73 if (get_u32(&opt.rate2quantum, *argv, 10)) {
78 if (get_u32(&opt.defcls, *argv, 16)) {
85 opt.debug |= (*p-'0')<<(2*i);
96 addattr_l(n, 2024, TCA_HTB_INIT, &opt, NLMSG_ALIGN(sizeof(opt)));
104 struct tc_htb_opt opt; local
241 htb_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
[all...]
H A Dq_prio.c35 struct tc_prio_qopt opt={3,{ 1, 2, 2, 2, 1, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1 }}; local
44 if (get_integer(&opt.bands, *argv, 10)) {
70 if (band > opt.bands) {
78 opt.priomap[idx++] = band;
86 opt.priomap[idx] = opt.priomap[TC_PRIO_BESTEFFORT];
89 nest = addattr_nest_compat(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
96 int prio_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
102 if (opt
[all...]
H A Dq_rr.c36 struct tc_prio_qopt opt={3,{ 1, 2, 2, 2, 1, 2, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1 }}; local
45 if (get_integer(&opt.bands, *argv, 10)) {
71 if (band > opt.bands) {
79 opt.priomap[idx++] = band;
84 nest = addattr_nest_compat(n, 1024, TCA_OPTIONS, &opt, sizeof(opt));
91 int rr_print_opt(struct qdisc_util *qu, FILE *f, struct rtattr *opt) argument
97 if (opt == NULL)
100 if (parse_rtattr_nested_compat(tb, TCA_PRIO_MAX, opt, qopt,
/external/webkit/Source/WebCore/platform/qt/
H A DScrollbarThemeQt.cpp99 static QStyleOptionSlider opt; local
101 opt.initFrom(widget);
103 opt.state |= QStyle::State_Active;
105 opt.state &= ~QStyle::State_HasFocus;
107 opt.rect = scrollbar->frameRect();
109 opt.state |= QStyle::State_Enabled;
111 opt.state |= QStyle::State_Mini;
112 opt.orientation = (scrollbar->orientation() == VerticalScrollbar) ? Qt::Vertical : Qt::Horizontal;
115 opt.state |= QStyle::State_Horizontal;
117 opt
152 QStyleOptionSlider* opt = styleOptionSlider(scrollbar, p.widget); local
176 QStyleOptionSlider* opt = styleOptionSlider(scrollbar); local
217 QStyleOptionSlider* opt = styleOptionSlider(scrollbar); local
224 QStyleOptionSlider* opt = styleOptionSlider(scrollbar); local
231 QStyleOptionSlider* opt = styleOptionSlider(scrollbar); local
[all...]
/external/iproute2/ip/
H A Dip.c152 char *opt = argv[1]; local
153 if (strcmp(opt,"--") == 0) {
157 if (opt[0] != '-')
159 if (opt[1] == '-')
160 opt++;
161 if (matches(opt, "-family") == 0) {
180 } else if (strcmp(opt, "-4") == 0) {
182 } else if (strcmp(opt, "-6") == 0) {
184 } else if (strcmp(opt, "-0") == 0) {
186 } else if (strcmp(opt, "
[all...]
/external/qemu/distrib/
H A Dbuild-emulator.sh11 for opt; do
12 optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
13 case "$opt" in
/external/jdiff/src/jdiff/
H A DOptions.java36 String opt = option.toLowerCase();
39 if (opt.equals("-authorid")) return 2;
40 if (opt.equals("-versionid")) return 2;
41 if (opt.equals("-d")) return 2;
42 if (opt.equals("-classlist")) return 1;
43 if (opt.equals("-title")) return 2;
44 if (opt.equals("-docletid")) return 1;
45 if (opt.equals("-evident")) return 2;
46 if (opt.equals("-skippkg")) return 2;
47 if (opt
[all...]
/external/qemu/
H A Dqemu-option.c529 QemuOpt *opt; local
531 QTAILQ_FOREACH_REVERSE(opt, &opts->head, QemuOptHead, next) {
532 if (strcmp(opt->name, name) != 0)
534 return opt;
541 QemuOpt *opt = qemu_opt_find(opts, name); local
542 return opt ? opt->str : NULL;
547 QemuOpt *opt = qemu_opt_find(opts, name); local
549 if (opt == NULL)
551 assert(opt
557 QemuOpt *opt = qemu_opt_find(opts, name); local
567 QemuOpt *opt = qemu_opt_find(opts, name); local
575 qemu_opt_parse(QemuOpt *opt) argument
594 qemu_opt_del(QemuOpt *opt) argument
604 QemuOpt *opt; local
642 QemuOpt *opt; local
748 QemuOpt *opt; local
763 QemuOpt *opt; local
913 QemuOpt *opt; local
934 QemuOpt *opt; local
[all...]
/external/llvm/tools/opt/
H A DAndroid.mk7 # opt command line tool (common)
14 opt.cpp
36 # opt command line tool (host)
41 LOCAL_MODULE := opt
58 # opt command line tool (target)
63 LOCAL_MODULE := opt

Completed in 1715 milliseconds

1234567891011>>