HomeSort by relevance Sort by last modified time
    Searched refs:getauxval (Results 1 - 25 of 37) sorted by null

1 2

  /bionic/tests/
getauxval_test.cpp 22 // getauxval() was only added as of glibc version 2.16.
38 TEST(getauxval, expected_values) {
40 ASSERT_EQ(0UL, getauxval(AT_SECURE));
41 ASSERT_EQ(getuid(), getauxval(AT_UID));
42 ASSERT_EQ(geteuid(), getauxval(AT_EUID));
43 ASSERT_EQ(getgid(), getauxval(AT_GID));
44 ASSERT_EQ(getegid(), getauxval(AT_EGID));
45 ASSERT_EQ(static_cast<unsigned long>(getpagesize()), getauxval(AT_PAGESZ));
47 ASSERT_NE(0UL, getauxval(AT_PHDR));
48 ASSERT_NE(0UL, getauxval(AT_PHNUM))
    [all...]
  /bionic/libc/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /development/ndk/platforms/android-21/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-21/arch-mips/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-21/arch-x86_64/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/sys/
auxv.h 36 unsigned long int getauxval(unsigned long int type);
  /bionic/libc/bionic/
getauxval.cpp 38 extern "C" unsigned long int getauxval(unsigned long int type) { function
setjmp_cookie.cpp 43 char* random_data = reinterpret_cast<char*>(args.getauxval(AT_RANDOM));
libc_init_static.cpp 56 ElfW(Phdr)* phdr_start = reinterpret_cast<ElfW(Phdr)*>(getauxval(AT_PHDR));
57 unsigned long int phdr_ct = getauxval(AT_PHNUM);
  /external/boringssl/src/crypto/
cpu-arm.c 31 * that we need and have a weak pointer to getauxval. */
33 unsigned long getauxval(unsigned long type) __attribute__((weak));
85 // getauxval doesn't exist on Android until Jelly Bean, supporting NEON on
135 if (getauxval == NULL) {
149 unsigned long hwcap = getauxval(AT_HWCAP);
160 hwcap = getauxval(AT_HWCAP2);

Completed in 827 milliseconds

1 2