OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:APP_ABIS
(Results
1 - 5
of
5
) sorted by null
/ndk/
ndk-gdb
497
APP_ABIS
=`get_build_var APP_ABI`
498
if [ "$
APP_ABIS
" != "${
APP_ABIS
%%all*}" ] ; then
501
APP_ABIS_FRONT="${
APP_ABIS
%%all*}"
502
APP_ABIS_BACK="${
APP_ABIS
#*all}"
503
APP_ABIS
="${APP_ABIS_FRONT}${ALL_ABIS}${APP_ABIS_BACK}"
505
log "ABIs targetted by application: $
APP_ABIS
"
546
APP_ABIS
=$
APP_ABIS
" "
548
if [ "$
APP_ABIS
" != "${APP_ABIS%$CPU_ABI *}" ] ; the
[
all
...]
ndk-gdb.py
555
APP_ABIS
= get_build_var('APP_ABI').split(' ')
556
if 'all' in
APP_ABIS
:
558
APP_ABIS
=
APP_ABIS
[:
APP_ABIS
.index('all')]+ALL_ABIS+
APP_ABIS
[
APP_ABIS
.index('all')+1:]
559
log('ABIs targetted by application: %s' % (' '.join(
APP_ABIS
)))
585
COMPAT_ABI = [ABI for ABI in CPU_ABIS if ABI in
APP_ABIS
]
590
Package supports: %s''' % (' '.join(CPU_ABIS),' '.join(
APP_ABIS
)))
[
all
...]
ndk-build
313
APP_ABIS
=`get_build_var APP_ABI`
314
for ABI in $
APP_ABIS
; do
/ndk/tests/
run-tests.sh
506
local
APP_ABIS
=`get_build_var $PROJECT APP_ABI`
507
APP_ABIS
=$
APP_ABIS
" "
508
if [ "$
APP_ABIS
" != "${
APP_ABIS
%%all*}" ] ; then
511
APP_ABIS_FRONT="${
APP_ABIS
%%all*}"
512
APP_ABIS_BACK="${
APP_ABIS
#*all}"
513
APP_ABIS
="${APP_ABIS_FRONT}${ALL_ABIS}${APP_ABIS_BACK}"
515
if [ "$
APP_ABIS
" = "${
APP_ABIS
%$ABI *}" ] ; the
[
all
...]
/ndk/build/core/
add-application.mk
159
_bad_abis := $(strip $(filter-out $(NDK_ALL_ABIS),$(
APP_ABIS
)))
Completed in 549 milliseconds