Home | History | Annotate | Download | only in android

Lines Matching refs:out

17 #define  PRINTF(...)  stralloc_add_format(out,__VA_ARGS__)
20 help_virtual_device( stralloc_t* out )
59 help_sdk_images( stralloc_t* out )
99 help_build_images( stralloc_t* out )
116 " If the kernel image is not found in the out directory, then it is searched\n"
145 help_disk_images( stralloc_t* out )
209 help_keys(stralloc_t* out)
213 stralloc_add_str( out, " When running the emulator, use the following keypresses:\n\n");
251 help_environment(stralloc_t* out)
282 help_keyset_file(stralloc_t* out)
312 stralloc_tabular( out, strings, count, " ", 80-8 );
334 stralloc_tabular( out, strings, count, " ", 80-8 );
353 help_debug_tags(stralloc_t* out)
388 help_char_devices(stralloc_t* out)
453 help_avd(stralloc_t* out)
468 help_sysdir(stralloc_t* out)
486 help_datadir(stralloc_t* out)
502 help_kernel(stralloc_t* out)
516 help_ramdisk(stralloc_t* out)
527 help_system(stralloc_t* out)
541 help_image(stralloc_t* out)
552 help_data(stralloc_t* out)
562 help_wipe_data(stralloc_t* out)
573 help_cache(stralloc_t* out)
588 help_cache_size(stralloc_t* out)
597 help_no_cache(stralloc_t* out)
609 help_sdcard(stralloc_t* out)
624 help_snapstorage(stralloc_t* out)
641 help_no_snapstorage(stralloc_t* out)
654 help_snapshot(stralloc_t* out)
682 help_no_snapshot(stralloc_t* out)
693 help_no_snapshot_load(stralloc_t* out)
702 help_no_snapshot_save(stralloc_t* out)
711 help_no_snapshot_update_time(stralloc_t* out)
722 help_snapshot_list(stralloc_t* out)
737 help_skindir(stralloc_t* out)
749 help_skin(stralloc_t* out)
763 help_dynamic_skin(stralloc_t* out)
776 help_shaper(stralloc_t* out)
816 help_http_proxy(stralloc_t* out)
833 help_report_console(stralloc_t* out)
867 help_dpi_device(stralloc_t* out)
882 help_audio(stralloc_t* out)
893 help_scale(stralloc_t* out)
923 help_trace(stralloc_t* out)
943 help_memcheck(stralloc_t* out)
982 help_list_cores(stralloc_t* out)
992 help_attach_core(stralloc_t* out)
1008 help_show_kernel(stralloc_t* out)
1017 help_shell(stralloc_t* out)
1030 help_shell_serial(stralloc_t* out)
1048 help_logcat(stralloc_t* out)
1081 help_no_audio(stralloc_t* out)
1112 help_raw_keys(stralloc_t* out)
1132 help_radio(stralloc_t* out)
1151 help_port(stralloc_t* out)
1167 help_ports(stralloc_t* out)
1187 help_onion(stralloc_t* out)
1204 help_onion_alpha(stralloc_t* out)
1218 help_onion_rotation(stralloc_t* out)
1233 help_timezone(stralloc_t* out)
1256 help_dns_server(stralloc_t* out)
1274 help_cpu_delay(stralloc_t* out)
1291 help_no_boot_anim(stralloc_t* out)
1304 help_gps(stralloc_t* out)
1315 help_keyset(stralloc_t* out)
1356 help_nand_limits(stralloc_t* out)
1374 help_bootchart(stralloc_t *out)
1389 help_tcpdump(stralloc_t *out)
1407 help_charmap(stralloc_t *out)
1416 help_prop(stralloc_t *out)
1434 help_shared_net_id(stralloc_t* out)
1450 help_gpu(stralloc_t* out)
1480 help_camera_back(stralloc_t* out)
1493 help_camera_front(stralloc_t* out)
1506 help_webcam_list(stralloc_t* out)
1514 help_screen(stralloc_t* out)
1529 help_force_32bit(stralloc_t* out)
1589 android_help_for_option( const char* option, stralloc_t* out )
1603 oo->func(out);
1605 stralloc_add_str(out, oo->descr);
1614 android_help_for_topic( const char* topic, stralloc_t* out )
1620 tt->func(out);
1629 android_help_list_options( stralloc_t* out )
1650 stralloc_add_format( out, " -%s %-*s %s\n",
1681 android_help_main( stralloc_t* out )
1683 stralloc_add_str(out, "Android Emulator usage: emulator [options] [-qemu args]\n");
1684 stralloc_add_str(out, " options:\n" );
1686 android_help_list_options(out);
1688 /*printf( "%.*s", out->n, out->s );*/
1693 android_help_all( stralloc_t* out )
1700 android_help_for_option( oo->name, out );
1705 android_help_for_topic( tt->name, out );
1708 android_help_main(out);