/external/qemu/hw/ |
msmouse.h | 2 CharDriverState *qemu_chr_open_msmouse(QemuOpts *opts);
|
/external/qemu/android/ |
main-common.h | 37 void parse_keyset(const char* keyset, AndroidOptions* opts); 51 AndroidOptions* opts, 61 AndroidOptions* opts); 67 void sanitizeOptions( AndroidOptions* opts ); 71 * opts - Options passed to the main() 77 struct AvdInfo* createAVD(AndroidOptions* opts, int* inAndroidBuild); 83 AndroidOptions* opts ); 89 * opts - Options passed to the main() 94 AndroidOptions* opts, int inAndroidBuild); 99 void handle_ui_options( AndroidOptions* opts ); [all...] |
main.c | 240 AndroidOptions opts[1]; local 247 if ( android_parse_options( &argc, &argv, opts ) < 0 ) { 255 handle_ui_options(opts); 305 if (opts->version) { 325 if (opts->snapshot_list) { 326 if (opts->snapstorage == NULL) { 328 avd = createAVD(opts, &inAndroidBuild); 329 opts->snapstorage = avdInfo_getSnapStoragePath(avd); 330 if (opts->snapstorage != NULL) { 331 D("autoconfig: -snapstorage %s", opts->snapstorage) [all...] |
main-common.c | 138 parse_keyset(const char* keyset, AndroidOptions* opts) 165 p = bufprint(p, end, "%s" PATH_SEP "keysets" PATH_SEP "%s", opts->sysdir, keyset); 341 AndroidOptions* opts, 514 AndroidOptions* opts) 527 if (!opts->no_window) 535 if (!opts->no_window) { 536 SDL_EnableUNICODE(!opts->raw_keys); 558 if ( qemulator_init(qemulator_get(), skinConfig, skinPath, win_x, win_y, opts) < 0 ) { 564 if (opts->onion) { 565 SkinImage* onion = skin_image_find_simple( opts->onion ) [all...] |
qemulator.h | 37 AndroidOptions opts[1]; /* copy of options */ member in struct:__anon9453 51 AndroidOptions* opts );
|
/external/qemu/ |
qemu_socket.h | 12 int inet_listen_opts(QemuOpts *opts, int port_offset); 15 int inet_connect_opts(QemuOpts *opts); 17 int inet_dgram_opts(QemuOpts *opts); 20 int unix_listen_opts(QemuOpts *opts); 22 int unix_connect_opts(QemuOpts *opts);
|
qemu-sockets-android.c | 80 int inet_listen_opts(QemuOpts *opts, int port_offset) 92 const char* socket_fd = qemu_opt_get(opts, "socket"); 98 if ((qemu_opt_get(opts, "host") == NULL) || 99 (qemu_opt_get(opts, "port") == NULL)) { 103 pstrcpy(port, sizeof(port), qemu_opt_get(opts, "port")); 104 addr = qemu_opt_get(opts, "host"); 106 to = qemu_opt_get_number(opts, "to", 0); 107 if (qemu_opt_get_bool(opts, "ipv4", 0)) 109 if (qemu_opt_get_bool(opts, "ipv6", 0)) 179 qemu_opt_set(opts, "host", uaddr) 446 QemuOpts *opts; local 474 QemuOpts *opts; local 557 QemuOpts *opts; local 586 QemuOpts *opts; local [all...] |
qemu-option.c | 515 QemuOpts *opts; member in struct:QemuOpt 527 static QemuOpt *qemu_opt_find(QemuOpts *opts, const char *name) 531 QTAILQ_FOREACH_REVERSE(opt, &opts->head, QemuOptHead, next) { 539 const char *qemu_opt_get(QemuOpts *opts, const char *name) 541 QemuOpt *opt = qemu_opt_find(opts, name); 545 int qemu_opt_get_bool(QemuOpts *opts, const char *name, int defval) 547 QemuOpt *opt = qemu_opt_find(opts, name); 555 uint64_t qemu_opt_get_number(QemuOpts *opts, const char *name, uint64_t defval) 557 QemuOpt *opt = qemu_opt_find(opts, name); 565 uint64_t qemu_opt_get_size(QemuOpts *opts, const char *name, uint64_t defval 655 QemuOpts *opts; local 686 QemuOpts *opts = NULL; local 717 QemuOpts *opts, *next_opts; local 732 QemuOpts *opts; local 826 QemuOpts *opts; local 895 QemuOpts *opts; local 965 QemuOpts *opts; local [all...] |
qemu-option.h | 107 const char *qemu_opt_get(QemuOpts *opts, const char *name); 108 int qemu_opt_get_bool(QemuOpts *opts, const char *name, int defval); 109 uint64_t qemu_opt_get_number(QemuOpts *opts, const char *name, uint64_t defval); 110 uint64_t qemu_opt_get_size(QemuOpts *opts, const char *name, uint64_t defval); 111 int qemu_opt_set(QemuOpts *opts, const char *name, const char *value); 113 int qemu_opt_foreach(QemuOpts *opts, qemu_opt_loopfunc func, void *opaque, 119 void qemu_opts_loc_restore(QemuOpts *opts); 122 const char *qemu_opts_id(QemuOpts *opts); 123 void qemu_opts_del(QemuOpts *opts); 124 int qemu_opts_validate(QemuOpts *opts, const QemuOptDesc *desc) [all...] |
qemu-sockets.c | 124 int inet_listen_opts(QemuOpts *opts, int port_offset) 139 const char* socket_fd = qemu_opt_get(opts, "socket"); 145 if ((qemu_opt_get(opts, "host") == NULL) || 146 (qemu_opt_get(opts, "port") == NULL)) { 150 pstrcpy(port, sizeof(port), qemu_opt_get(opts, "port")); 151 addr = qemu_opt_get(opts, "host"); 153 to = qemu_opt_get_number(opts, "to", 0); 154 if (qemu_opt_get_bool(opts, "ipv4", 0)) 156 if (qemu_opt_get_bool(opts, "ipv6", 0)) 224 qemu_opt_set(opts, "host", uaddr) 501 QemuOpts *opts; local 529 QemuOpts *opts; local 624 QemuOpts *opts; local 653 QemuOpts *opts; local [all...] |
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...] |
/frameworks/base/graphics/java/android/graphics/ |
BitmapFactory.java | 288 * @param opts null-ok; Options that control downsampling and whether the 291 * decoded, or, if opts is non-null, if opts requested only the 292 * size be returned (in opts.outWidth and opts.outHeight) 294 public static Bitmap decodeFile(String pathName, Options opts) { 299 bm = decodeStream(stream, null, opts); 332 InputStream is, Rect pad, Options opts) { 334 if (opts == null) { 335 opts = new Options() [all...] |
/external/bluetooth/bluez/tools/ |
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...] |
/external/chromium/build/linux/ |
rewrite_dirs.py | 22 def RewritePath(path, opts): 24 sysroot = opts.sysroot 25 prefix = opts.strip_prefix 34 def RewriteLine(line, opts): 46 args[i] = RewritePath(args[i], opts) 51 args[i] = prefix + RewritePath(args[i][len(prefix):], opts) 60 opts, args = parser.parse_args(argv[1:]) 63 line = RewriteLine(line.strip(), opts)
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
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...] |
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/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...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
BitmapFactory_Delegate.java | 47 /*package*/ static Bitmap finishDecode(Bitmap bm, Rect outPadding, Options opts) { 48 if (bm == null || opts == null) { 52 final int density = opts.inDensity; 58 final int targetDensity = opts.inTargetDensity; 59 if (targetDensity == 0 || density == targetDensity || density == opts.inScreenDensity) { 66 if (opts.inScaled && isNinePatch == false) { 94 Rect padding, Options opts) { 98 if (opts != null) { 99 density = Density.getEnum(opts.inDensity); 138 Rect padding, Options opts) { [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...] |
/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/bluetooth/bluez/btio/ |
btio.c | 700 static gboolean parse_set_opts(struct set_opts *opts, GError **err, 706 memset(opts, 0, sizeof(*opts)); 709 opts->defer = DEFAULT_DEFER_TIMEOUT; 710 opts->master = -1; 711 opts->sec_level = BT_IO_SEC_MEDIUM; 712 opts->mode = L2CAP_MODE_BASIC; 713 opts->flushable = -1; 714 opts->force_active = 1; 721 hci_devba(atoi(str + 3), &opts->src) 1215 struct set_opts opts; local 1341 struct set_opts opts; local 1396 struct set_opts opts; local [all...] |
/external/ipsec-tools/src/racoon/ |
nattraversal.c | 233 natt_fill_options (struct ph1natt_options *opts, int version) 235 if (! opts) 238 opts->version = version; 243 opts->float_port = 0; /* No port floating for those drafts */ 244 opts->payload_nat_d = ISAKMP_NPTYPE_NATD_DRAFT; 245 opts->payload_nat_oa = ISAKMP_NPTYPE_NATOA_DRAFT; 246 opts->mode_udp_tunnel = IPSECDOI_ATTR_ENC_MODE_UDPTUNNEL_DRAFT; 247 opts->mode_udp_transport = IPSECDOI_ATTR_ENC_MODE_UDPTRNS_DRAFT; 248 opts->encaps_type = UDP_ENCAP_ESPINUDP_NON_IKE; 254 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
|
/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
|