/external/ppp/pppd/include/net/ |
ppp-comp.h | 178 /* unsupported opts */ 202 /* Build a CI from mppe opts (see RFC 3078) */ 203 #define MPPE_OPTS_TO_CI(opts, ci) \ 208 if (opts & MPPE_OPT_STATEFUL) \ 217 if (opts & MPPE_OPT_128) \ 219 if (opts & MPPE_OPT_40) \ 225 #define MPPE_CI_TO_OPTS(ci, opts) \ 229 opts = 0; \ 233 opts |= MPPE_OPT_STATEFUL; \ 237 opts |= MPPE_OPT_128; [all...] |
/external/openfst/src/include/fst/script/ |
randequivalent.h | 56 const RandGenOptions<RandArcSelection> &opts = args->args.arg6; local 59 if (opts.arc_selector == UNIFORM_ARC_SELECTOR) { 62 ropts(arc_selector, opts.max_length, opts.npath); 66 } else if (opts.arc_selector == FAST_LOG_PROB_ARC_SELECTOR) { 69 ropts(arc_selector, opts.max_length, opts.npath); 76 ropts(arc_selector, opts.max_length, opts.npath); 98 fst::script::RandArcSelection> &opts); [all...] |
fst-class.h | 56 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const = 0; 121 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const { 122 return impl_->Write(ostr, opts); 153 const FstReadOptions &opts) { 154 if (!opts.header) { 158 const FstHeader &hdr = *opts.header; 161 return ReadTypedFst<MutableFstClass, MutableFst<Arc> >(stream, opts); 163 return ReadTypedFst<FstClass, Fst<Arc> >(stream, opts); 210 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const { 211 return impl_->Write(ostr, opts); [all...] |
/external/libselinux/src/ |
label.c | 20 const struct selinux_opt *opts, 35 static inline int selabel_is_validate_set(const struct selinux_opt *opts, 39 if (opts[n].type == SELABEL_OPT_VALIDATE) 40 return !!opts[n].value; 67 const struct selinux_opt *opts, 86 rec->validating = selabel_is_validate_set(opts, nopts); 88 if ((*initfuncs[backend])(rec, opts, nopts)) {
|
label_internal.h | 20 int selabel_file_init(struct selabel_handle *rec, const struct selinux_opt *opts, 22 int selabel_media_init(struct selabel_handle *rec, const struct selinux_opt *opts, 24 int selabel_x_init(struct selabel_handle *rec, const struct selinux_opt *opts, 27 const struct selinux_opt *opts, unsigned nopts) hidden; 29 const struct selinux_opt *opts, unsigned nopts) hidden;
|
/external/harfbuzz_ng/contrib/python/scripts/ |
hbtestfont | 21 (opts, args) = p.parse_args() 23 if opts.font.lower().endswith(".ttf") : 27 fpat += opts.font + ":weight=" 28 fpat += "bold" if opts.bold else "medium" 30 fpat += "italic" if opts.italic else "roman" 35 if opts.font.lower().endswith(".ttf") and opts.font != fname : 39 ft = harfbuzz.ft(fname, opts.size) 43 if (opts.lang or opts.script) : buffer.set_scriptlang(opts.script if opts.script else "", opts.lang if opts.lang else "" [all...] |
/external/llvm/utils/Misc/ |
zkill | 92 if opts.debug: 112 if opts.debug: 138 global opts 202 (opts, args) = parser.parse_args() 204 if opts.listSignals: 213 signal = kSignals[opts.signalName] 215 if opts.verbose: 237 if opts.execName is not None: 239 if re_full_match(opts.execName, 241 if opts.execPath is not None [all...] |
/external/openfst/src/include/fst/ |
intersect.h | 39 explicit IntersectFstOptions(const CacheOptions &opts, 42 : ComposeFstOptions<A, M, F, T>(opts, mat1, mat2, filt, sttable) { } 71 const CacheOptions opts = CacheOptions()) { 74 SetImpl(CreateBase(fst1, fst2, opts)); 83 const IntersectFstOptions<A, M, F, T> &opts) { 86 SetImpl(CreateBase1(fst1, fst2, opts)); 145 const IntersectOptions &opts = IntersectOptions()) { 148 if (opts.filter_type == AUTO_FILTER) { 152 } else if (opts.filter_type == SEQUENCE_FILTER) { 156 } else if (opts.filter_type == ALT_SEQUENCE_FILTER) [all...] |
/external/qemu/ |
blockdev.c | 47 QemuOpts *opts; local 53 opts = qemu_opts_parse(qemu_find_opts("drive"), optstr, 0); 54 if (!opts) { 58 qemu_opt_set(opts, "file", file); 59 return opts; 111 qemu_opts_del(dinfo->opts); 134 DriveInfo *drive_init(QemuOpts *opts, int default_to_scsi, int *fatal_error) 172 bus_id = qemu_opt_get_number(opts, "bus", 0); 173 unit_id = qemu_opt_get_number(opts, "unit", -1); 174 index = qemu_opt_get_number(opts, "index", -1) [all...] |
/system/core/toolbox/ |
insmod.c | 53 char opts[1024]; local 69 opts[0] = '\0'; 72 char *end = opts + sizeof(opts) - 1; 73 char *ptr = opts; 85 ret = init_module(file, size, opts);
|
/external/e2fsprogs/misc/ |
util.h | 23 extern void parse_journal_opts(const char *opts);
|
/external/openfst/src/script/ |
determinize.cc | 26 const DeterminizeOptions& opts) { 29 DeterminizeArgs args(ifst, ofst, opts);
|
randgen.cc | 25 const RandGenOptions<RandArcSelection> &opts) { 28 RandGenArgs args(ifst, ofst, seed, opts);
|
/external/qemu/android/ |
qemulator.h | 37 AndroidOptions opts[1]; /* copy of options */ member in struct:__anon13068 51 AndroidOptions* opts );
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
prune.h | 53 // 'opts.threshold' Times() the weight of the shortest path. Weights 57 const PruneOptions<Arc, ArcFilter> &opts) { 70 vector<Weight> *idistance = opts.idistance; 71 vector<Weight> *fdistance = opts.fdistance; 90 Weight ceiling = Times((*fdistance)[fst->Start()], opts.threshold); 101 if (!opts.filter(arc)) continue; 115 if (!opts.idistance) 117 if (!opts.fdistance) 125 // more than 'opts.threshold' Times() the weight of the shortest 129 PruneOptions<Arc, AnyArcFilter<Arc> > opts(threshold, AnyArcFilter<Arc>()) [all...] |
/external/linux-tools-perf/util/ |
parse-options.c | 438 const struct option *opts, int full) 453 if (opts->type != OPTION_GROUP) 456 for (; opts->type != OPTION_END; opts++) { 460 if (opts->type == OPTION_GROUP) { 462 if (*opts->help) 463 fprintf(stderr, "%s\n", opts->help); 466 if (!full && (opts->flags & PARSE_OPT_HIDDEN)) 470 if (opts->short_name) 471 pos += fprintf(stderr, "-%c", opts->short_name) [all...] |
/external/clang/utils/ |
FuzzTest | 127 if opts.verbose: 132 if opts.log_dir: 133 stdout_log_path = os.path.join(opts.log_dir, '%s.out' % index) 134 stderr_log_path = os.path.join(opts.log_dir, '%s.err' % index) 143 test_result = (exit_code == opts.expected_exit_code or 144 exit_code in opts.extra_exit_codes) 151 if not opts.log_all and test_result: 157 elif not opts.succinct: 162 global opts 268 (opts, args) = parser.parse_args( [all...] |
/external/ipsec-tools/src/racoon/ |
nattraversal.c | 227 natt_fill_options (struct ph1natt_options *opts, int version) 229 if (! opts) 232 opts->version = version; 237 opts->float_port = 0; /* No port floating for those drafts */ 238 opts->payload_nat_d = ISAKMP_NPTYPE_NATD_DRAFT; 239 opts->payload_nat_oa = ISAKMP_NPTYPE_NATOA_DRAFT; 240 opts->mode_udp_tunnel = IPSECDOI_ATTR_ENC_MODE_UDPTUNNEL_DRAFT; 241 opts->mode_udp_transport = IPSECDOI_ATTR_ENC_MODE_UDPTRNS_DRAFT; 242 opts->encaps_type = UDP_ENCAP_ESPINUDP_NON_IKE; 248 opts->float_port = lcconf->port_isakmp_natt [all...] |
/bionic/libc/kernel/common/linux/netfilter_ipv6/ |
ip6t_opts.h | 29 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/development/ndk/platforms/android-3/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/external/clang/include/clang/StaticAnalyzer/Frontend/ |
CheckerRegistration.h | 24 CheckerManager *createCheckerManager(const AnalyzerOptions &opts,
|
/external/clang/lib/StaticAnalyzer/Frontend/ |
AnalysisConsumer.h | 36 AnalyzerOptionsRef opts,
|
/external/iptables/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 10 u_int16_t opts[IP6T_OPTS_OPTSNR]; /* opts */ member in struct:ip6t_opts 11 u_int8_t optsnr; /* Nr of OPts */
|
/external/kernel-headers/original/linux/netfilter_ipv6/ |
ip6t_opts.h | 11 u_int16_t opts[IP6T_OPTS_OPTSNR]; /* opts */ member in struct:ip6t_opts 12 u_int8_t optsnr; /* Nr of OPts */
|
/external/openfst/src/bin/ |
fstcompile.cc | 66 fst::SymbolTableTextOptions opts; local 67 opts.allow_negative = FLAGS_allow_negative_labels; 70 isyms = SymbolTable::ReadText(FLAGS_isymbols, opts); 75 osyms = SymbolTable::ReadText(FLAGS_osymbols, opts);
|