Home
last modified time | relevance | path

Searched refs:CPU_ABILIST32 (Results 1 – 2 of 2) sorted by relevance

/ndk/
Dndk-gdb557 adb_var_shell CPU_ABILIST32 getprop ro.product.cpu.abilist32
558 CPU_ABIS="$CPU_ABILIST64,$CPU_ABILIST32"
559 if [ -z "$CPU_ABILIST64" ] && [ -z "$CPU_ABILIST32" ] ; then
568 CPU_ABILIST32=$(echo $CPU_ABILIST32 | tr ',' ' ')
591 if [ "$COMPAT_ABI" = none ] && [ -n "$CPU_ABILIST32" ] ; then
592 for CPU_ABI32 in $CPU_ABILIST32; do
600 if [ "$COMPAT_ABI" = none ] && [ -z "$CPU_ABILIST64" ] && [ -z "$CPU_ABILIST32" ]; then
Dndk-gdb.py607 _,CPU_ABILIST32 = adb_var_shell(['getprop', 'ro.product.cpu.abilist32'])
611 CPU_ABIS = CPU_ABILIST64.split(',')+CPU_ABILIST32.split(',')
612 if not CPU_ABILIST64 and not CPU_ABILIST32:
631 COMPAT_ABI = [ABI for ABI in CPU_ABILIST32.split(',') if ABI in APP_ABIS]