OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
);
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");
info.c
131
char*
androidOut
;
195
AFREE(i->
androidOut
);
805
const char*
androidOut
,
814
i->
androidOut
= ASTRDUP(
androidOut
);
815
i->contentPath = ASTRDUP(
androidOut
);
816
i->targetArch = path_getBuildTargetArch(i->
androidOut
);
817
i->apiLevel = path_getBuildTargetApiLevel(i->
androidOut
);
825
if (_avdInfo_getCoreHwIniPath(i, i->
androidOut
) < 0 )
895
abi = path_getBuildTargetAbi(i->
androidOut
);
[
all
...]
info.h
117
* '
androidOut
' must be the target-specific out directory where
121
const char*
androidOut
,
/external/qemu/android/
main-emulator.c
121
const char*
androidOut
= getenv("ANDROID_PRODUCT_OUT");
123
if (
androidOut
!= NULL && *
androidOut
!= '\0') {
124
D("Found ANDROID_PRODUCT_OUT: %s\n",
androidOut
);
125
avdArch = path_getBuildTargetArch(
androidOut
);
Completed in 4400 milliseconds