HomeSort by relevance Sort by last modified time
    Searched refs:androidOut (Results 1 - 5 of 5) sorted by null

  /external/qemu/android/avd/
util.h 49 char* path_getBuildTargetArch( const char* androidOut );
59 char* path_getBuildTargetAbi( const char* androidOut );
65 int path_getBuildTargetApiLevel( const char* androidOut );
74 int path_getAdbdCommunicationMode( const char* androidOut );
util.c 228 _getBuildProperty( const char* androidOut, const char* propName )
232 p = bufprint(temp, end, "%s/system/build.prop", androidOut);
234 D("%s: ANDROID_PRODUCT_OUT too long: %s", __FUNCTION__, androidOut);
241 path_getBuildTargetArch( const char* androidOut )
245 char* cpuAbi = _getBuildProperty(androidOut, "ro.product.cpu.abi");
268 path_getBuildTargetAbi( const char* androidOut )
272 char* cpuAbi = _getBuildProperty(androidOut, "ro.product.cpu.abi");
287 path_getBuildTargetApiLevel( const char* androidOut )
291 char* sdkVersion = _getBuildProperty(androidOut, "ro.build.version.sdk");
317 path_getAdbdCommunicationMode( const char* androidOut )
    [all...]
info.c 131 char* androidOut;
195 AFREE(i->androidOut);
818 const char* androidOut,
827 i->androidOut = ASTRDUP(androidOut);
828 i->contentPath = ASTRDUP(androidOut);
829 i->targetArch = path_getBuildTargetArch(i->androidOut);
830 i->apiLevel = path_getBuildTargetApiLevel(i->androidOut);
838 if (_avdInfo_getCoreHwIniPath(i, i->androidOut) < 0 )
908 abi = path_getBuildTargetAbi(i->androidOut);
    [all...]
info.h 120 * 'androidOut' must be the target-specific out directory where
124 const char* androidOut,
  /external/qemu/android/
main-emulator.c 138 const char* androidOut = getenv("ANDROID_PRODUCT_OUT");
140 if (androidOut != NULL && *androidOut != '\0') {
141 D("Found ANDROID_PRODUCT_OUT: %s\n", androidOut);
142 avdArch = path_getBuildTargetArch(androidOut);

Completed in 135 milliseconds