/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/bluetooth/bluez/rfcomm/ |
parser.y | 45 struct rfcomm_opts *opts; 85 opts = NULL; 92 opts = &rfcomm_opts[$1]; 94 opts = NULL; 105 if (opts) 106 opts->bind = $2; 110 if (opts) 111 bacpy(&opts->bdaddr, $2); 115 if (opts) 116 opts->channel = $2 [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; 86 ret = init_module(file, size, opts);
|
/external/qemu/android/ |
main.c | 104 static int opts->flashkeys; /* forward */ 319 AndroidOptions opts[1]; /* copy of options */ member in struct:__anon4134 375 AndroidOptions* opts ) 386 if (NULL != opts->charmap) { 387 emulator->keyboard = skin_keyboard_create_from_kcm(opts->charmap, opts->raw_keys); 389 emulator->keyboard = skin_keyboard_create_from_aconfig(aconfig, opts->raw_keys); 394 emulator->opts[0] = opts[0]; 420 get_device_dpi( AndroidOptions* opts ) 587 AndroidOptions* opts = emulator->opts; local 1819 AndroidOptions opts[1]; local 2785 AndroidOptions* opts = qemulator->opts; local [all...] |
/external/iptables/extensions/ |
libip6t_hbh.c | 27 " --%s-opts TYPE[:LEN][,TYPE[:LEN]...] \n" 33 static struct option opts[] = { variable in typeref:struct:option 35 { "hbh-opts", 1, 0, '2' }, 40 static struct option opts[] = { variable in typeref:struct:option 42 { "dst-opts", 1, 0, '2' }, 73 parse_options(const char *optsstr, u_int16_t *opts) 92 opts[i] = (u_int16_t)((parse_opts_num(cp,"opt") & 0x000000FF)<<8); 94 if (opts[i] == 0) 96 opts[i] |= (u_int16_t)(parse_opts_num(range,"length") & 99 opts[i] |= (0x00FF) [all...] |
libip6t_dst.man | 6 .BR "--dst-opts " "\fItype\fP[:\fIlength\fP][,\fItype\fP[:\fIlength\fP]...]"
|
libip6t_dst.c | 29 " --" LNAME "-opts TYPE[:LEN][,TYPE[:LEN]...] \n" 34 static struct option opts[] = { variable in typeref:struct:option 36 { .name = LNAME "-opts", .has_arg = 1, .flag = 0, .val = '2' }, 66 parse_options(const char *optsstr, u_int16_t *opts) 91 opts[i] = (u_int16_t)((parse_opts_num(cp,"opt") & 0x000000FF)<<8); 93 if (opts[i] == 0) 96 opts[i] |= (u_int16_t)(parse_opts_num(range,"length") & 99 opts[i] |= (0x00FF); 102 printf("opts str: %s %s\n", cp, range); 103 printf("opts opt: %04X\n", opts[i]) [all...] |
libip6t_hbh.man | 6 .BR "--hbh-opts " "\fItype\fP[:\fIlength\fP][,\fItype\fP[:\fIlength\fP]...]"
|
/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...] |
randgen.h | 118 const RandGenOptions<ArcSelector> &opts) { 121 if (opts.npath == 0 || opts.max_length == 0 || ifst.Start() == kNoStateId) 124 if (opts.source == kNoStateId) { // first call 129 RandGenOptions<ArcSelector> nopts(opts); 135 if (ifst.NumArcs(opts.source) == 0 && 136 ifst.Final(opts.source) == Weight::Zero()) // Non-coaccessible 139 size_t n = opts.arc_selector(ifst, opts.source); 140 if (n == ifst.NumArcs(opts.source)) { // Take 'super-final' transitio [all...] |
fst.h | 149 static Fst<A> *Read(istream &strm, const FstReadOptions &opts) { 150 FstReadOptions ropts(opts); 153 hdr = *opts.header; 155 if (!hdr.Read(strm, opts.source)) 182 virtual bool Write(ostream &strm, const FstWriteOptions &opts) const { 456 // If opts.header is non-null, skip read-in and use the option value. 457 // If opts.[io]symbols is non-null, read-in but use the option value. 458 bool ReadHeaderAndSymbols(istream &strm, const FstReadOptions& opts, 460 if (opts.header) 461 *hdr = *opts.header [all...] |
expanded-fst.h | 38 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) { 39 FstReadOptions ropts(opts); 42 hdr = *opts.header; 44 if (!hdr.Read(strm, opts.source))
|
/external/bluetooth/bluez/common/ |
btio.c | 607 static gboolean parse_set_opts(struct set_opts *opts, GError **err, 613 memset(opts, 0, sizeof(*opts)); 616 opts->defer = DEFAULT_DEFER_TIMEOUT; 617 opts->master = -1; 624 hci_devba(atoi(str + 3), &opts->src); 626 str2ba(str, &opts->src); 629 bacpy(&opts->src, va_arg(args, const bdaddr_t *)); 632 str2ba(va_arg(args, const char *), &opts->dst); 635 bacpy(&opts->dst, va_arg(args, const bdaddr_t *)) 1055 struct set_opts opts; local 1177 struct set_opts opts; local 1232 struct set_opts opts; local [all...] |
/external/e2fsprogs/lib/ext2fs/ |
io_manager.c | 22 errcode_t io_channel_set_options(io_channel channel, const char *opts) 29 if (!opts) 35 options = malloc(strlen(opts)+1); 38 strcpy(options, opts);
|
/frameworks/base/graphics/java/android/graphics/ |
BitmapFactory.java | 260 * @param opts null-ok; Options that control downsampling and whether the 263 * decoded, or, if opts is non-null, if opts requested only the 264 * size be returned (in opts.outWidth and opts.outHeight) 266 public static Bitmap decodeFile(String pathName, Options opts) { 271 bm = decodeStream(stream, null, opts); 304 InputStream is, Rect pad, Options opts) { 306 if (opts == null) { 307 opts = new Options() [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
BitmapFactory.java | 259 * @param opts null-ok; Options that control downsampling and whether the 262 * decoded, or, if opts is non-null, if opts requested only the 263 * size be returned (in opts.outWidth and opts.outHeight) 265 public static Bitmap decodeFile(String pathName, Options opts) { 270 bm = decodeStream(stream, null, opts); 303 InputStream is, Rect pad, Options opts) { 305 if (opts == null) { 306 opts = new Options() [all...] |
/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...] |
/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/webkit/WebKitTools/Scripts/ |
clean-header-guards | 7 OptionParser.new do |opts| 8 opts.banner = "Usage: clean-header-guards [options]" 10 opts.on("--prefix [PREFIX]", "Append a header prefix to all guards") do |prefix|
|
/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 | 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/external/bluetooth/bluez/src/ |
sdpd-server.c | 63 struct l2cap_options opts; local 100 memset(&opts, 0, sizeof(opts)); 101 optlen = sizeof(opts); 103 if (getsockopt(l2cap_sock, SOL_L2CAP, L2CAP_OPTIONS, &opts, &optlen) < 0) { 108 opts.omtu = mtu; 109 opts.imtu = mtu; 111 if (setsockopt(l2cap_sock, SOL_L2CAP, L2CAP_OPTIONS, &opts, sizeof(opts)) < 0) {
|
/external/e2fsprogs/misc/ |
util.h | 23 extern void parse_journal_opts(const char *opts);
|
/ndk/build/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|
/ndk/build/platforms/android-4/arch-arm/usr/include/linux/netfilter_ipv6/ |
ip6t_opts.h | 22 u_int16_t opts[IP6T_OPTS_OPTSNR]; member in struct:ip6t_opts
|