Lines Matching full:emulator
13 /* This is the source code to the tiny "emulator" launcher program
14 * that is in charge of starting the target-specific emulator binary
15 * for a given AVD, i.e. either 'emulator-arm' or 'emulator-x86'
18 * known as 'emulator-ui', but is a good placeholder until this
39 # define D(...) do { if (android_verbose) printf("emulator:" __VA_ARGS__); } while (0)
137 D("Found target-specific emulator binary: %s\n", emulatorPath);
150 D("Quoted emulator binary path: %s\n", emulatorPath);
177 /* Find the target-specific emulator binary. This will be something
178 * like <programDir>/emulator-<targetArch>, where <programDir> is
195 p = bufprint(temp, end, "%s/emulator-%s%s", progDir, avdArch, exeExt);
213 p = bufprint(temp, end, "emulator-%s%s", avdArch, exeExt);
222 APANIC("Missing arch-specific emulator program: %s\n", temp);
237 * emulator (for GLES emulation). We will probe several directories
274 * where the emulator binary is under out/host/<system>/lib and
299 * through dlopen() to the emulator program being launched.