INNER CODE UNIT · C++

cpu_abi_list_

tiann/FreeReflection · library/src/main/cpp/art.cpp:99

        auto cpu_abi_list_ = reinterpret_cast<std::vector<std::string>*>(cpu_abilist_address);

        bool correct = false;
        for (auto itr = cpu_abi_list_->begin(); itr != cpu_abi_list_->end(); itr++) {
            std::string value = *itr;
            LOGV("value : %s", value.c_str());
            if (strcmp(value.c_str(), "x86") == 0) {
                correct = true;
                break;
            }
        }
        if (correct) {
            targetSdkVersionCorrect = true;
            break;
        }
    }

    if (!targetSdkVersionCorrect) {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…