Home
last modified time | relevance | path

Searched refs:emulator (Results 1 – 25 of 83) sorted by relevance

1234

/external/qemu/android/
Dqemulator.c28 static void qemulator_refresh(QEmulator* emulator);
34 QEmulator* emulator = opaque; in qemulator_light_brightness() local
36 …RINT(hw_control,"%s: light='%s' value=%d window=%p", __FUNCTION__, light, value, emulator->window); in qemulator_light_brightness()
38 emulator->lcd_brightness = value; in qemulator_light_brightness()
39 if (emulator->window) in qemulator_light_brightness()
40 skin_window_set_lcd_brightness( emulator->window, value ); in qemulator_light_brightness()
46 qemulator_setup( QEmulator* emulator ) in qemulator_setup() argument
48 AndroidOptions* opts = emulator->opts; in qemulator_setup()
50 if ( !emulator->window && !opts->no_window ) { in qemulator_setup()
51 SkinLayout* layout = emulator->layout; in qemulator_setup()
[all …]
Dqemulator.h49 qemulator_init( QEmulator* emulator,
58 qemulator_done( QEmulator* emulator );
62 qemulator_set_title( QEmulator* emulator );
66 qemulator_get_layout( QEmulator* emulator );
70 qemulator_get_first_framebuffer(QEmulator* emulator);
/external/qemu/
Dbuild.gradle3 import com.android.tools.internal.emulator.BuildEmulator
20 item("$buildDefaultEmulator.output/emulator") {
33 item("$buildDefaultEmulator.output/emulator-arm") {
42 item("$buildDefaultEmulator.output/emulator-mips") {
51 item("$buildDefaultEmulator.output/emulator-x86") {
66 item("$project.rootDir/../prebuilts/tools/darwin-x86/emulator/lib") {
70 item("$project.rootDir/../prebuilts/tools/darwin-x86/emulator/emulator-arm") {
73 item("$project.rootDir/../prebuilts/tools/darwin-x86/emulator/emulator64-arm") {
77 item("$project.rootDir/../prebuilts/tools/darwin-x86/emulator/emulator-mips") {
80 item("$project.rootDir/../prebuilts/tools/darwin-x86/emulator/emulator64-mips") {
[all …]
DMakefile.tests38 $(call start-emulator-program, emulator_unittests)
44 emulator-common \
45 emulator-libext4_utils \
46 emulator-libsparse \
47 emulator-libselinux \
48 emulator-zlib \
49 emulator-libgtest
50 $(call end-emulator-program)
65 $(call end-emulator-program)
DMakefile.qemu-launcher15 android/qemu-launcher/emulator-qemu.cpp \
24 $(call start-emulator-program, emulator-arm64)
28 emulator-common
31 $(call end-emulator-program)
40 $(call end-emulator-program)
DMakefile.android132 $(info emulator: Ignoring unsupported GCC flag $(GCC_W_NO_MISSING_FIELD_INITIALIZERS))
234 start-emulator-library = \
242 $(call start-emulator-library, $1) \
246 end-emulator-library = \
247 $(eval $(end-emulator-module-ev)) \
252 start-emulator-program = \
253 $(call start-emulator-library,$1) \
257 $(call start-emulator-program, $1) \
261 end-emulator-program = \
263 $(eval $(end-emulator-module-ev)) \
[all …]
DCHANGES.TXT21 Starting from here, the emulator version number will match
38 emulator that runs on console port 5554:
73 Note that the monitor 'quit' command will not stop the emulator,
107 the emulator in restricted environments. No audio and graphics in this mode
115 - Starting from this release, the emulator's version number will match the
119 The minor number will now be stuck to 0 since each official emulator
125 - Fixed a bug that crashed the emulator when the SD Card image size was exactly
126 8 MB. Now, the minimum supported size is 9 MB, and the emulator will complain
136 the emulator window to landscape mode resulted in incorrectly rotated
150 in rare lockups when stopping the emulator on this platform.
[all …]
DCleanSpec.mk5 $(call add-clean-step, rm -rf $(OUT_DIR)/host/linux-x86/obj/{SHARED,STATIC}_LIBRARIES/emulator*)
6 $(call add-clean-step, rm -rf $(OUT_DIR)/host/linux-x86/obj/EXECUTABLES/emulator*)
DMakefile.common161 $(call start-emulator-library, emulator-common)
165 $(call end-emulator-library)
171 $(call end-emulator-library)
295 $(call start-emulator-library, emulator-libui)
299 $(call end-emulator-library)
306 $(call end-emulator-library)
585 $(call start-emulator-library, emulator-libqemu)
601 $(call end-emulator-library)
621 $(call end-emulator-library)
/external/qemu/distrib/libsparse/
Dsources.mk21 $(call start-emulator-library,emulator-libsparse)
25 $(call end-emulator-library)
31 $(call end-emulator-library)
33 $(call start-emulator-program,emulator_img2simg)
36 LOCAL_STATIC_LIBRARIES := emulator-libsparse emulator-zlib
37 $(call end-emulator-program)
39 $(call start-emulator-program,emulator_simg2img)
42 LOCAL_STATIC_LIBRARIES := emulator-libsparse emulator-zlib
43 $(call end-emulator-program)
/external/qemu/distrib/ext4_utils/
Dsources.mk24 $(call start-emulator-library,emulator-libext4_utils)
31 $(call end-emulator-library)
40 $(call end-emulator-library)
42 $(call start-emulator-program,emulator_make_ext4fs)
49 emulator-libext4_utils \
50 emulator-libsparse \
51 emulator-libselinux \
52 emulator-zlib
53 $(call end-emulator-program)
66 $(call end-emulator-program)
/external/chromium_org/gpu/command_buffer/service/
Dmemory_program_cache_unittest.cc142 ProgramBinaryEmulator* emulator) const { in SetExpectationsForSaveLinkedProgram()
145 .WillOnce(SetArgPointee<2>(emulator->length())); in SetExpectationsForSaveLinkedProgram()
147 GetProgramBinary(program_id, emulator->length(), _, _, _)) in SetExpectationsForSaveLinkedProgram()
148 .WillOnce(Invoke(emulator, &ProgramBinaryEmulator::GetProgramBinary)); in SetExpectationsForSaveLinkedProgram()
153 ProgramBinaryEmulator* emulator) const { in SetExpectationsForLoadLinkedProgram()
156 emulator->format(), in SetExpectationsForLoadLinkedProgram()
158 emulator->length())) in SetExpectationsForLoadLinkedProgram()
159 .WillOnce(Invoke(emulator, &ProgramBinaryEmulator::ProgramBinary)); in SetExpectationsForLoadLinkedProgram()
167 ProgramBinaryEmulator* emulator) const { in SetExpectationsForLoadLinkedProgramFailure()
170 emulator->format(), in SetExpectationsForLoadLinkedProgramFailure()
[all …]
/external/qemu/docs/
DBUILDING.TXT1 Rebuilding the Android emulator from sources
8 emulator from sources. See the instructions at http://source.android.com on
13 $AOSP/external/qemu -> The emulator itself.
15 $AOSP/sdk/emulator/opengl -> Host GPU emulation libraries.
25 You can only build the emulator on Linux or Darwin. Windows binaries are
28 There are currently two ways to build the emulator:
33 emulator binaries from sources directly by using the android-rebuild.sh
43 the emulator directly with something like:
46 objs/emulator @<avd-name> [<other-options>...]
53 If you have a full checkout of the AOSP source tree, the emulator will be
[all …]
DANDROID-QEMUD.TXT8 communication channel between the emulated system and the emulator program
10 the emulator program is using qemu pipes (see ANDROID-QEMU-PIPE.TXT for details
14 emulator without requiring special kernel support; this simplifies a lot of
21 The emulator provides 'services' to various parts of the emulated system.
44 to the emulator. It does so by:
59 will pass all messages between clients and emulator services. Thus,
63 emulator <==serial==> qemud <---> /dev/socket/qemud <-+--> client1
86 Zero-sized packets are silently discard by qemud and the emulator and
90 emulator. These are the following:
93 name to the daemon, the later sends to the emulator:
[all …]
DDEVELOPMENT.TXT5 emulator codebase, which will be useful for anyone planning to
24 The Android emulator sources contains many, heavily-modified, sources from the
44 Contains various third-party libraries the emulator depends on
74 Only a fraction of the QEMU sources are actually part of the Android emulator
82 There is currently very limited automated testing for the Android emulator,
89 the emulator binaries with existing SDK system images remains necessary.
96 emulator code (e.g. to gain new features, like the ability to emulate new CPUs,
101 both Android emulator and QEMU documentation before trying to do so though.
104 Android emulator. It's generally preferable to write stubs. The Android emulator
DANDROID-SKIN-FILES.TXT12 The Android emulator program is capable of displaying a window containing
22 This document specifies how to generate a new skin for the emulator.
23 The emulator also supports dynamically creating the layout section of
33 the emulator to specify them. This will instruct the program to look into
37 For skin-specific files. Without these options, the emulator will look for
89 - 'width': The width of the emulator window in pixels, as an integer
91 - 'height': The height of the emulator window in pixels, as an integer
93 - 'color' : Background color to be used to fill the emulator window.
98 the emulator switches/initializes this layout. This is used to
108 codes. You can use the following emulator console commands to
[all …]
/external/chromium_org/content/browser/renderer_host/input/
Dtouch_emulator_unittest.cc84 emulator()->HandleTouchEventAck( in ForwardEmulatedTouchEvent()
94 TouchEmulator* emulator() const { in emulator() function in content::TouchEmulatorTest
127 emulator()->HandleKeyboardEvent(event); in SendKeyboardEvent()
153 emulator()->HandleMouseEvent(event); in SendMouseEvent()
161 return !emulator()->HandleMouseWheelEvent(event); in SendMouseWheelEvent()
223 if (emulator()->HandleTouchEvent(event)) { in SendTouchEvent()
233 EXPECT_FALSE(emulator()->HandleTouchEventAck( in SendTouchEvent()
246 EXPECT_FALSE(emulator()->HandleTouchEventAck( in AckOldestTouchEvent()
344 emulator()->CancelTouch(); in TEST_F()
356 emulator()->CancelTouch(); in TEST_F()
[all …]
/external/chromium_org/build/android/pylib/utils/
Demulator.py144 for emulator in emulators:
145 used_ports.append(emulator.split('-')[1])
170 emulator = Emulator(avd_name, abi)
171 emulator.CreateAVD(api_level)
172 emulator.Launch(kill_all_emulators=n == 0)
174 emulators.append(emulator)
177 for emulator in emulators:
178 emulator.ConfirmLaunch(True)
193 emulator = Emulator(avd_name, abi)
194 emulator.Launch(kill_all_emulators=True)
[all …]
/external/qemu/distrib/zlib-1.2.8/
Dsources.make23 $(call start-emulator-library,emulator-zlib)
26 $(call end-emulator-library)
31 $(call end-emulator-library)
/external/qemu/distrib/googletest/
DAndroid.mk26 $(call start-emulator-library, emulator-libgtest)
31 $(call end-emulator-library)
38 $(call end-emulator-library)
/external/qemu/distrib/libselinux/
Dsources.mk27 $(call start-emulator-library,emulator-libselinux)
31 $(call end-emulator-library)
37 $(call end-emulator-library)
/external/valgrind/main/
DREADME.android9 Android 4.0.3 running on android arm emulator.
10 Android 4.1 running on android emulator.
14 Android 4.0.3 running on android x86 emulator.
17 Android 4.1.2 running on android mips emulator.
18 Android 4.2.2 running on android mips emulator.
19 Android 4.3 running on android mips emulator.
32 For the android emulator, the versions needed and how to
58 export HWKIND=emulator # Android emulator
102 # note: on android emulator, android-14 platform was also tested and works.
DREADME.android_emulator2 How to install and run an android emulator.
54 # Start your android emulator (it takes some time).
60 # Once the emulator is ready, push your Valgrind to the emulator:
/external/qemu/distrib/sdl-1.2.15/
Dsources.make1 # This is included from the main Android emulator build script
234 $(call start-emulator-library,emulator_libSDL)
237 $(call end-emulator-library)
242 $(call end-emulator-library)
263 $(call start-emulator-library,emulator_libSDLmain)
267 $(call end-emulator-library)
273 $(call end-emulator-library)
/external/chromium_org/build/android/
Davd.py21 from pylib.utils import emulator
88 emulator.LaunchEmulator(options.name, options.abi)
90 emulator.LaunchTempEmulators(options.emulator_count, options.abi,

1234