├── .gitignore ├── AndroidLibs ├── arm │ ├── libandroid_runtime.11.so │ ├── libandroid_runtime.14.so │ ├── libandroid_runtime.15.so │ ├── libandroid_runtime.16.so │ ├── libandroid_runtime.17.so │ ├── libandroid_runtime.18.so │ ├── libandroid_runtime.19-2.so │ ├── libandroid_runtime.19.so │ ├── libskia.11.so │ ├── libskia.14.so │ ├── libskia.15.so │ ├── libskia.16.so │ ├── libskia.17.so │ ├── libskia.18.so │ ├── libskia.19-2.so │ └── libskia.19.so ├── armeabi │ ├── libandroid_runtime.11.so │ ├── libandroid_runtime.14.so │ ├── libandroid_runtime.15.so │ ├── libandroid_runtime.16.so │ ├── libandroid_runtime.17.so │ ├── libandroid_runtime.18.so │ ├── libandroid_runtime.19-2.so │ ├── libandroid_runtime.19.so │ ├── libandroid_runtime.21.so │ ├── libskia.11.so │ ├── libskia.14.so │ ├── libskia.15.so │ ├── libskia.16.so │ ├── libskia.17.so │ ├── libskia.18.so │ ├── libskia.19-2.so │ ├── libskia.19.so │ ├── libskia.21.so │ ├── libskia.so │ └── symbols │ │ ├── runtime11.txt │ │ ├── runtime14.txt │ │ ├── runtime15.txt │ │ ├── runtime16.txt │ │ ├── runtime17.txt │ │ ├── runtime18.txt │ │ ├── runtime19-2.txt │ │ ├── runtime19.txt │ │ ├── runtime21.txt │ │ ├── skia11.txt │ │ ├── skia14.txt │ │ ├── skia15.txt │ │ ├── skia16.txt │ │ ├── skia17.txt │ │ ├── skia18.txt │ │ ├── skia19-2.txt │ │ ├── skia19.txt │ │ └── skia21.txt ├── mips │ ├── libandroid_runtime.17.so │ └── libskia.17.so └── x86 │ ├── libandroid_runtime.17.so │ ├── libandroid_runtime.19-2.so │ ├── libandroid_runtime.19.so │ ├── libskia.17.so │ ├── libskia.19-2.so │ └── libskia.19.so └── jni ├── Android.mk ├── Android.mk~ ├── Application.mk ├── NativeBitmapFactory.cpp └── NativeBitmapFactory.h /.gitignore: -------------------------------------------------------------------------------- 1 | # generated files 2 | libs/ 3 | obj/ 4 | tmp/ -------------------------------------------------------------------------------- /AndroidLibs/arm/libandroid_runtime.11.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libandroid_runtime.11.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libandroid_runtime.14.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libandroid_runtime.14.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libandroid_runtime.15.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libandroid_runtime.15.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libandroid_runtime.16.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libandroid_runtime.16.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libandroid_runtime.17.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libandroid_runtime.17.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libandroid_runtime.18.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libandroid_runtime.18.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libandroid_runtime.19-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libandroid_runtime.19-2.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libandroid_runtime.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libandroid_runtime.19.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libskia.11.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libskia.11.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libskia.14.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libskia.14.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libskia.15.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libskia.15.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libskia.16.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libskia.16.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libskia.17.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libskia.17.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libskia.18.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libskia.18.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libskia.19-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libskia.19-2.so -------------------------------------------------------------------------------- /AndroidLibs/arm/libskia.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/arm/libskia.19.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libandroid_runtime.11.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libandroid_runtime.11.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libandroid_runtime.14.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libandroid_runtime.14.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libandroid_runtime.15.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libandroid_runtime.15.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libandroid_runtime.16.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libandroid_runtime.16.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libandroid_runtime.17.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libandroid_runtime.17.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libandroid_runtime.18.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libandroid_runtime.18.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libandroid_runtime.19-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libandroid_runtime.19-2.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libandroid_runtime.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libandroid_runtime.19.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libandroid_runtime.21.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libandroid_runtime.21.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libskia.11.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libskia.11.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libskia.14.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libskia.14.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libskia.15.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libskia.15.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libskia.16.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libskia.16.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libskia.17.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libskia.17.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libskia.18.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libskia.18.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libskia.19-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libskia.19-2.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libskia.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libskia.19.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libskia.21.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libskia.21.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/libskia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/armeabi/libskia.so -------------------------------------------------------------------------------- /AndroidLibs/armeabi/symbols/runtime11.txt: -------------------------------------------------------------------------------- 1 | 2 | libandroid_runtime.11.so: 文件格式 elf32-littlearm 3 | 4 | DYNAMIC SYMBOL TABLE: 5 | 00000000 DF *UND* 00000000 __aeabi_unwind_cpp_pr0 6 | 000239e0 g DF .text 00000020 _Z43register_com_google_android_gles_jni_GLImplP7_JNIEnv 7 | 00030fe4 g DF .text 00000008 _ZN7android14AndroidRuntime21registerNativeMethodsEP7_JNIEnvPKcPK15JNINativeMethodi 8 | 00000000 DF *UND* 00000000 glGetString 9 | 00000000 DF *UND* 00000000 __aeabi_unwind_cpp_pr1 10 | 00000000 DF *UND* 00000000 glWeightPointerOES 11 | 00000000 DF *UND* 00000000 glMatrixIndexPointerOES 12 | 00000000 DF *UND* 00000000 glLoadPaletteFromModelViewMatrixOES 13 | 00000000 DF *UND* 00000000 glDrawTexxOES 14 | 00000000 DF *UND* 00000000 glDrawTexsOES 15 | 00000000 DF *UND* 00000000 glDrawTexiOES 16 | 00000000 DF *UND* 00000000 glDrawTexfOES 17 | 00000000 DF *UND* 00000000 glCurrentPaletteMatrixOES 18 | 00000000 DF *UND* 00000000 glVertexPointer 19 | 00000000 DF *UND* 00000000 glTexParameteri 20 | 00000000 DF *UND* 00000000 glTexEnvi 21 | 00000000 DF *UND* 00000000 glTexCoordPointer 22 | 00000000 DF *UND* 00000000 glPointParameterx 23 | 00000000 DF *UND* 00000000 glPointParameterf 24 | 00000000 DF *UND* 00000000 glNormalPointer 25 | 00000000 DF *UND* 00000000 glIsTexture 26 | 00000000 DF *UND* 00000000 glIsEnabled 27 | 00000000 DF *UND* 00000000 glIsBuffer 28 | 00000000 DF *UND* 00000000 glDrawElements 29 | 00000000 DF *UND* 00000000 glColorPointer 30 | 00000000 DF *UND* 00000000 glColor4ub 31 | 00000000 DF *UND* 00000000 glBindBuffer 32 | 00000000 DF *UND* 00000000 glViewport 33 | 00000000 DF *UND* 00000000 glTranslatex 34 | 00000000 DF *UND* 00000000 glTranslatef 35 | 00000000 DF *UND* 00000000 glTexParameterx 36 | 00000000 DF *UND* 00000000 glTexParameterf 37 | 00000000 DF *UND* 00000000 glTexEnvx 38 | 00000000 DF *UND* 00000000 glTexEnvf 39 | 00000000 DF *UND* 00000000 glStencilOp 40 | 00000000 DF *UND* 00000000 glStencilMask 41 | 00000000 DF *UND* 00000000 glStencilFunc 42 | 00000000 DF *UND* 00000000 glShadeModel 43 | 00000000 DF *UND* 00000000 glScissor 44 | 00000000 DF *UND* 00000000 glScalex 45 | 00000000 DF *UND* 00000000 glScalef 46 | 00000000 DF *UND* 00000000 glSampleCoveragex 47 | 00000000 DF *UND* 00000000 glSampleCoverage 48 | 00000000 DF *UND* 00000000 glRotatex 49 | 00000000 DF *UND* 00000000 glRotatef 50 | 00000000 DF *UND* 00000000 glPushMatrix 51 | 00000000 DF *UND* 00000000 glPopMatrix 52 | 00000000 DF *UND* 00000000 glPolygonOffsetx 53 | 00000000 DF *UND* 00000000 glPolygonOffset 54 | 00000000 DF *UND* 00000000 glPointSizex 55 | 00000000 DF *UND* 00000000 glPointSize 56 | 00000000 DF *UND* 00000000 glPixelStorei 57 | 00000000 DF *UND* 00000000 glOrthox 58 | 00000000 DF *UND* 00000000 glOrthof 59 | 00000000 DF *UND* 00000000 glNormal3x 60 | 00000000 DF *UND* 00000000 glNormal3f 61 | 00000000 DF *UND* 00000000 glMultiTexCoord4x 62 | 00000000 DF *UND* 00000000 glMultiTexCoord4f 63 | 00000000 DF *UND* 00000000 glMatrixMode 64 | 00000000 DF *UND* 00000000 glMaterialx 65 | 00000000 DF *UND* 00000000 glMaterialf 66 | 00000000 DF *UND* 00000000 glLogicOp 67 | 00000000 DF *UND* 00000000 glLoadIdentity 68 | 00000000 DF *UND* 00000000 glLineWidthx 69 | 00000000 DF *UND* 00000000 glLineWidth 70 | 00000000 DF *UND* 00000000 glLightx 71 | 00000000 DF *UND* 00000000 glLightf 72 | 00000000 DF *UND* 00000000 glLightModelx 73 | 00000000 DF *UND* 00000000 glLightModelf 74 | 00000000 DF *UND* 00000000 glHint 75 | 00000000 DF *UND* 00000000 glGetError 76 | 00000000 DF *UND* 00000000 glFrustumx 77 | 00000000 DF *UND* 00000000 glFrustumf 78 | 00000000 DF *UND* 00000000 glFrontFace 79 | 00000000 DF *UND* 00000000 glFogx 80 | 00000000 DF *UND* 00000000 glFogf 81 | 00000000 DF *UND* 00000000 glFlush 82 | 00000000 DF *UND* 00000000 glFinish 83 | 00000000 DF *UND* 00000000 glEnableClientState 84 | 00000000 DF *UND* 00000000 glEnable 85 | 00000000 DF *UND* 00000000 glDrawArrays 86 | 00000000 DF *UND* 00000000 glDisableClientState 87 | 00000000 DF *UND* 00000000 glDisable 88 | 00000000 DF *UND* 00000000 glDepthRangex 89 | 00000000 DF *UND* 00000000 glDepthRangef 90 | 00000000 DF *UND* 00000000 glDepthMask 91 | 00000000 DF *UND* 00000000 glDepthFunc 92 | 00000000 DF *UND* 00000000 glCullFace 93 | 00000000 DF *UND* 00000000 glCopyTexSubImage2D 94 | 00000000 DF *UND* 00000000 glCopyTexImage2D 95 | 00000000 DF *UND* 00000000 glColorMask 96 | 00000000 DF *UND* 00000000 glColor4x 97 | 00000000 DF *UND* 00000000 glColor4f 98 | 00000000 DF *UND* 00000000 glClientActiveTexture 99 | 00000000 DF *UND* 00000000 glClearStencil 100 | 00000000 DF *UND* 00000000 glClearDepthx 101 | 00000000 DF *UND* 00000000 glClearDepthf 102 | 00000000 DF *UND* 00000000 glClearColorx 103 | 00000000 DF *UND* 00000000 glClearColor 104 | 00000000 DF *UND* 00000000 glClear 105 | 00000000 DF *UND* 00000000 glBlendFunc 106 | 00000000 DF *UND* 00000000 glBindTexture 107 | 00000000 DF *UND* 00000000 glAlphaFuncx 108 | 00000000 DF *UND* 00000000 glAlphaFunc 109 | 00000000 DF *UND* 00000000 glActiveTexture 110 | 00000000 DF *UND* 00000000 glGetFloatv 111 | 00000000 DF *UND* 00000000 glGetFixedv 112 | 00000000 DF *UND* 00000000 glGetClipPlanex 113 | 00000000 DF *UND* 00000000 glGetClipPlanef 114 | 00000000 DF *UND* 00000000 glGetBooleanv 115 | 00000000 DF *UND* 00000000 glTexSubImage2D 116 | 00000000 DF *UND* 00000000 glTexImage2D 117 | 00000000 DF *UND* 00000000 glReadPixels 118 | 00000000 DF *UND* 00000000 glMultMatrixx 119 | 00000000 DF *UND* 00000000 glMultMatrixf 120 | 00000000 DF *UND* 00000000 glLoadMatrixx 121 | 00000000 DF *UND* 00000000 glLoadMatrixf 122 | 00000000 DF *UND* 00000000 glCompressedTexSubImage2D 123 | 00000000 DF *UND* 00000000 glCompressedTexImage2D 124 | 00000000 DF *UND* 00000000 glMaterialfv 125 | 00000000 DF *UND* 00000000 glLightxv 126 | 00000000 DF *UND* 00000000 glLightfv 127 | 00000000 DF *UND* 00000000 glLightModelxv 128 | 00000000 DF *UND* 00000000 glLightModelfv 129 | 00000000 DF *UND* 00000000 glGetIntegerv 130 | 00000000 DF *UND* 00000000 glGenTextures 131 | 00000000 DF *UND* 00000000 glDeleteTextures 132 | 00000000 DF *UND* 00000000 glFogxv 133 | 00000000 DF *UND* 00000000 glFogfv 134 | 00000000 DF *UND* 00000000 glGetMaterialfv 135 | 00000000 DF *UND* 00000000 glGetLightxv 136 | 00000000 DF *UND* 00000000 glGetLightfv 137 | 00000000 DF *UND* 00000000 glGenBuffers 138 | 00000000 DF *UND* 00000000 glDeleteBuffers 139 | 00000000 DF *UND* 00000000 glClipPlanex 140 | 00000000 DF *UND* 00000000 glClipPlanef 141 | 00000000 DF *UND* 00000000 glBufferSubData 142 | 00000000 DF *UND* 00000000 glTexEnvxv 143 | 00000000 DF *UND* 00000000 glTexEnvfv 144 | 00000000 DF *UND* 00000000 glMaterialxv 145 | 00000000 DF *UND* 00000000 glDrawTexxvOES 146 | 00000000 DF *UND* 00000000 glDrawTexsvOES 147 | 00000000 DF *UND* 00000000 glDrawTexivOES 148 | 00000000 DF *UND* 00000000 glDrawTexfvOES 149 | 00000000 DF *UND* 00000000 glTexEnviv 150 | 00000000 DF *UND* 00000000 glGetTexEnvxv 151 | 00000000 DF *UND* 00000000 glGetTexEnviv 152 | 00000000 DF *UND* 00000000 glGetMaterialxv 153 | 00000000 DF *UND* 00000000 glBindRenderbufferOES 154 | 00000000 DF *UND* 00000000 glBindFramebufferOES 155 | 00000000 DF *UND* 00000000 glTexGenivOES 156 | 00000000 DF *UND* 00000000 glTexGeniOES 157 | 00000000 DF *UND* 00000000 glTexGenfvOES 158 | 00000000 DF *UND* 00000000 glTexGenfOES 159 | 00000000 DF *UND* 00000000 glRenderbufferStorageOES 160 | 00000000 DF *UND* 00000000 glIsRenderbufferOES 161 | 00000000 DF *UND* 00000000 glIsFramebufferOES 162 | 00000000 DF *UND* 00000000 glGetTexGenxvOES 163 | 00000000 DF *UND* 00000000 glGetTexGenivOES 164 | 00000000 DF *UND* 00000000 glGetTexGenfvOES 165 | 00000000 DF *UND* 00000000 glGetRenderbufferParameterivOES 166 | 00000000 DF *UND* 00000000 glGetFramebufferAttachmentParameterivOES 167 | 00000000 DF *UND* 00000000 glGenerateMipmapOES 168 | 00000000 DF *UND* 00000000 glFramebufferTexture2DOES 169 | 00000000 DF *UND* 00000000 glFramebufferRenderbufferOES 170 | 00000000 DF *UND* 00000000 glCheckFramebufferStatusOES 171 | 00000000 DF *UND* 00000000 glBlendFuncSeparateOES 172 | 00000000 DF *UND* 00000000 glBlendEquationSeparateOES 173 | 00000000 DF *UND* 00000000 glBlendEquationOES 174 | 00000000 DF *UND* 00000000 glTexGenxvOES 175 | 00000000 DF *UND* 00000000 glTexGenxOES 176 | 00000000 DF *UND* 00000000 glGenRenderbuffersOES 177 | 00000000 DF *UND* 00000000 glGenFramebuffersOES 178 | 00000000 DF *UND* 00000000 glDeleteRenderbuffersOES 179 | 00000000 DF *UND* 00000000 glDeleteFramebuffersOES 180 | 00000000 DF *UND* 00000000 glTexParameterxv 181 | 00000000 DF *UND* 00000000 glTexParameteriv 182 | 00000000 DF *UND* 00000000 glTexParameterfv 183 | 00000000 DF *UND* 00000000 glPointParameterxv 184 | 00000000 DF *UND* 00000000 glPointParameterfv 185 | 00000000 DF *UND* 00000000 glGetTexParameterxv 186 | 00000000 DF *UND* 00000000 glGetTexParameteriv 187 | 00000000 DF *UND* 00000000 glGetTexParameterfv 188 | 00000000 DF *UND* 00000000 glQueryMatrixxOES 189 | 00000000 DF *UND* 00000000 glBufferData 190 | 00000000 DO *UND* 00000000 __progname 191 | 00000000 DF *UND* 00000000 glWeightPointerOESBounds 192 | 00000000 DF *UND* 00000000 glMatrixIndexPointerOESBounds 193 | 00000000 DF *UND* 00000000 glPointSizePointerOESBounds 194 | 00000000 DF *UND* 00000000 glVertexPointerBounds 195 | 00000000 DF *UND* 00000000 glTexCoordPointerBounds 196 | 00000000 DF *UND* 00000000 glNormalPointerBounds 197 | 00000000 DF *UND* 00000000 glColorPointerBounds 198 | 00000000 DF *UND* 00000000 __aeabi_fmul 199 | 00000000 DF *UND* 00000000 __aeabi_fsub 200 | 00000000 DF *UND* 00000000 __aeabi_fcmple 201 | 00000000 DF *UND* 00000000 __aeabi_fdiv 202 | 00000000 DF *UND* 00000000 __aeabi_fadd 203 | 0002c8b0 g DF .text 000001cc _ZN7android22poly_clip_to_halfspaceEPNS_4PolyES1_iff 204 | 00000000 DF *UND* 00000000 __aeabi_fcmplt 205 | 00000000 DF *UND* 00000000 __aeabi_fcmpgt 206 | 0002ca7c g DF .text 00000360 _ZN7android20poly_clip_to_frustumEPNS_4PolyE 207 | 00000000 DF *UND* 00000000 memcpy 208 | 00000000 DF *UND* 00000000 etc1_get_encoded_data_size 209 | 00000000 DF *UND* 00000000 sqrtf 210 | 0002ce74 g DF .text 00000060 _ZN7android20nativeUtilsClassInitEP7_JNIEnvP7_jclass 211 | 0002ced4 g DF .text 00000318 _ZN7android31register_android_opengl_classesEP7_JNIEnv 212 | 00000000 DF *UND* 00000000 __android_log_print 213 | 00000000 DF *UND* 00000000 _ZNK8SkBitmap10lockPixelsEv 214 | 00000000 DF *UND* 00000000 _ZNK8SkBitmap12unlockPixelsEv 215 | 00000000 DF *UND* 00000000 malloc 216 | 00000000 DF *UND* 00000000 _ZN12SkColorTable12unlockColorsEb 217 | 00000000 DF *UND* 00000000 free 218 | 00000000 DF *UND* 00000000 __aeabi_fcmpge 219 | 00000000 DF *UND* 00000000 etc1_pkm_get_height 220 | 00000000 DF *UND* 00000000 etc1_pkm_get_width 221 | 00000000 DF *UND* 00000000 etc1_pkm_is_valid 222 | 00000000 DF *UND* 00000000 etc1_pkm_format_header 223 | 00000000 DF *UND* 00000000 etc1_decode_image 224 | 00000000 DF *UND* 00000000 etc1_decode_block 225 | 00000000 DF *UND* 00000000 etc1_encode_block 226 | 00000000 DF *UND* 00000000 etc1_encode_image 227 | 0003018c g DF .text 0000010c _ZN7android23openContentProviderFileERKNS_8String16E 228 | 00000000 DF *UND* 00000000 _ZN7android21defaultServiceManagerEv 229 | 00000000 DF *UND* 00000000 _ZN7android8String16C1EPKc 230 | 00000000 DF *UND* 00000000 _ZN7android8String16D1Ev 231 | 00000000 DF *UND* 00000000 _ZN7android6ParcelC1Ev 232 | 00000000 DF *UND* 00000000 _ZN7android6Parcel19writeInterfaceTokenERKNS_8String16E 233 | 00000000 DF *UND* 00000000 _ZN7android6Parcel13writeString16ERKNS_8String16E 234 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel17readExceptionCodeEv 235 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel9readInt32Ev 236 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel18readFileDescriptorEv 237 | 00000000 DF *UND* 00000000 dup 238 | 00000000 DF *UND* 00000000 _ZN7android7String8C1ERKNS_8String16E 239 | 00000000 DF *UND* 00000000 _ZN7android7String8D1Ev 240 | 00000000 DF *UND* 00000000 _ZN7android6ParcelD1Ev 241 | 00000000 DF *UND* 00000000 _ZNK7android7RefBase9decStrongEPKv 242 | 000302cc g DF .text 00000034 _ZN7android14AndroidRuntime9getJNIEnvEv 243 | 0007e130 g DO .bss 00000004 _ZN7android14AndroidRuntime7mJavaVME 244 | 00030300 g DF .text 0000000c _ZN7android14AndroidRuntime10getRuntimeEv 245 | 0003030c w DF .text 00000002 _ZNK7android6VectorI12JavaVMOptionE12do_constructEPvj 246 | 00030310 w DF .text 00000002 _ZNK7android6VectorI12JavaVMOptionE10do_destroyEPvj 247 | 00030314 w DF .text 0000001c _ZNK7android6VectorI12JavaVMOptionE7do_copyEPvPKvj 248 | 00030330 w DF .text 00000014 _ZNK7android6VectorI12JavaVMOptionE8do_splatEPvPKvj 249 | 00030344 w DF .text 00000022 _ZNK7android6VectorI12JavaVMOptionE15do_move_forwardEPvPKvj 250 | 00030368 w DF .text 0000001c _ZNK7android6VectorI12JavaVMOptionE16do_move_backwardEPvPKvj 251 | 00030384 g DF .text 00000048 _ZN7android14AndroidRuntime19javaCreateThreadEtcEPFiPvES1_PKcijPS1_ 252 | 00000000 DF *UND* 00000000 strdup 253 | 00000000 DF *UND* 00000000 androidCreateRawThreadEtc 254 | 000303f0 g DF .text 00000090 _ZN7android14AndroidRuntime15javaThreadShellEPv 255 | 000303cc g DF .text 00000022 _ZN7android14AndroidRuntime16createJavaThreadEPKcPFvPvES3_ 256 | 00030480 g DF .text 00000008 _ZN7android14AndroidRuntime6onExitEi 257 | 00000000 DF *UND* 00000000 exit 258 | 000304e4 g DF .text 00000100 _ZN7android14AndroidRuntime9findClassEP7_JNIEnvPKc 259 | 000305e4 g DF .text 000000ec _ZN7android14AndroidRuntime8callMainEPKciPKS2_ 260 | 000306d0 g DF .text 00000084 _ZN7android14AndroidRuntime10callStaticEPKcS2_ 261 | 00000000 DF *UND* 00000000 getenv 262 | 00000000 DF *UND* 00000000 strcmp 263 | 0003077c g DF .text 0000004c _ZN7android14AndroidRuntime14parseExtraOptsEPc 264 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl3addEPKv 265 | 000307c8 g DF .text 00000046 _ZN7android14AndroidRuntime14addVmArgumentsEiPKPKc 266 | 00030810 g DF .text 000007a0 _ZN7android14AndroidRuntime7startVmEPP7_JavaVMPP7_JNIEnv 267 | 00000000 DF *UND* 00000000 property_get 268 | 00000000 DF *UND* 00000000 strcpy 269 | 00000000 DF *UND* 00000000 strstr 270 | 00000000 DF *UND* 00000000 strcat 271 | 00000000 DO *UND* 00000000 __stack_chk_guard 272 | 00000000 DF *UND* 00000000 strlen 273 | 00000000 DF *UND* 00000000 strncat 274 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl13editArrayImplEv 275 | 00000000 DF *UND* 00000000 JNI_CreateJavaVM 276 | 00000000 DF *UND* 00000000 __stack_chk_fail 277 | 00000000 DF *UND* 00000000 _ZN7android14IPCThreadState10selfOrNullEv 278 | 00000000 DF *UND* 00000000 _ZNK7android14IPCThreadState19getStrictModePolicyEv 279 | 00000000 DF *UND* 00000000 __android_log_vprint 280 | 00000000 DF *UND* 00000000 jniRegisterNativeMethods 281 | 00030fec g DF .text 0000001c _ZN7android44register_com_android_internal_os_RuntimeInitEP7_JNIEnv 282 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl13finish_vectorEv 283 | 00000000 DF *UND* 00000000 _ZN7android10VectorImplD2Ev 284 | 00076680 w DO .data.rel.ro 00000048 _ZTVN7android6VectorI12JavaVMOptionEE 285 | 00031030 g DF .text 00000028 _ZN7android14AndroidRuntimeD1Ev 286 | 00000000 DF *UND* 00000000 _ZN10SkGraphics4TermEv 287 | 000766c8 g DO .data.rel.ro 0000001c _ZTVN7android14AndroidRuntimeE 288 | 00031058 g DF .text 00000012 _ZN7android14AndroidRuntimeD0Ev 289 | 00000000 DF *UND* 00000000 _ZdlPv 290 | 00031030 g DF .text 00000028 _ZN7android14AndroidRuntimeD2Ev 291 | 00031080 g DF .text 00000058 _ZN7android14AndroidRuntimeC1Ev 292 | 00000000 DF *UND* 00000000 _ZN7android10VectorImplC2Ejj 293 | 00000000 DF *UND* 00000000 _ZN10SkGraphics4InitEv 294 | 00000000 DF *UND* 00000000 _ZN14SkImageDecoder15SetDeviceConfigEN8SkBitmap6ConfigE 295 | 00000000 DF *UND* 00000000 _ZN21SkImageRef_GlobalPool12SetRAMBudgetEj 296 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl11setCapacityEj 297 | 00031080 g DF .text 00000058 _ZN7android14AndroidRuntimeC2Ev 298 | 00031104 g DF .text 00000048 _ZN7android14AndroidRuntime8startRegEP7_JNIEnv 299 | 00000000 DF *UND* 00000000 androidSetCreateThreadFunc 300 | 00000000 DF *UND* 00000000 __aeabi_ldivmod 301 | 00031150 g DF .text 00000274 _ZN7android14AndroidRuntime5startEPKcb 302 | 00000000 DF *UND* 00000000 sigprocmask 303 | 00000000 DF *UND* 00000000 systemTime 304 | 00000000 DF *UND* 00000000 __android_log_btwrite 305 | 00000000 DF *UND* 00000000 stat 306 | 00000000 DF *UND* 00000000 setenv 307 | 000313c8 g DF .text 00000014 _ZN7android14AndroidRuntime5startEv 308 | 000313dc g DF .text 00000008 Java_LoadClass_registerNatives 309 | 000313dc g DF .text 00000008 Java_com_android_internal_util_WithFramework_registerNatives 310 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl19reservedVectorImpl1Ev 311 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl19reservedVectorImpl2Ev 312 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl19reservedVectorImpl3Ev 313 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl19reservedVectorImpl4Ev 314 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl19reservedVectorImpl5Ev 315 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl19reservedVectorImpl6Ev 316 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl19reservedVectorImpl7Ev 317 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl19reservedVectorImpl8Ev 318 | 00000000 DF *UND* 00000000 __cxa_pure_virtual 319 | 0005d358 g DF .text 0000001c _ZN7android30register_android_debug_JNITestEP7_JNIEnv 320 | 00045840 g DF .text 0000001c _ZN7android31register_android_os_SystemClockEP7_JNIEnv 321 | 0004e03c g DF .text 00000108 _ZN7android30register_android_util_EventLogEP7_JNIEnv 322 | 0004e904 g DF .text 000000fc _ZN7android25register_android_util_LogEP7_JNIEnv 323 | 0004ea00 g DF .text 0000001c _Z31register_android_util_FloatMathP7_JNIEnv 324 | 00048dbc g DF .text 00000310 _ZN7android33register_android_text_format_TimeEP7_JNIEnv 325 | 000489c0 g DF .text 000002c8 _ZN7android36register_android_pim_EventRecurrenceEP7_JNIEnv 326 | 0004a648 g DF .text 00000180 _ZN7android37register_android_content_AssetManagerEP7_JNIEnv 327 | 0004fb14 g DF .text 0000001c _ZN7android36register_android_content_StringBlockEP7_JNIEnv 328 | 0004fd34 g DF .text 0000001c _ZN7android33register_android_content_XmlBlockEP7_JNIEnv 329 | 0003ffd8 g DF .text 00000090 _ZN7android35register_android_emoji_EmojiFactoryEP7_JNIEnv 330 | 0004a588 g DF .text 00000078 _ZN7android42register_android_security_Md5MessageDigestEP7_JNIEnv 331 | 00043af8 g DF .text 0000002c _ZN7android38register_android_text_AndroidCharacterEP7_JNIEnv 332 | 00043e60 g DF .text 0000002c _ZN7android33register_android_text_AndroidBidiEP7_JNIEnv 333 | 00042e44 g DF .text 000000a0 _ZN7android37register_android_text_KeyCharacterMapEP7_JNIEnv 334 | 0004ea64 g DF .text 0000002c _Z27register_android_os_ProcessP7_JNIEnv 335 | 000458c4 g DF .text 0000001c _ZN7android36register_android_os_SystemPropertiesEP7_JNIEnv 336 | 0004c394 g DF .text 00000338 _Z26register_android_os_BinderP7_JNIEnv 337 | 00040238 g DF .text 00000090 _ZN7android29register_android_view_DisplayEP7_JNIEnv 338 | 00047eec g DF .text 00000088 _ZN7android26register_android_nio_utilsEP7_JNIEnv 339 | 000571a0 g DF .text 0000001c _ZN7android37register_android_graphics_PixelFormatEP7_JNIEnv 340 | 00053b7c g DF .text 00000378 _Z34register_android_graphics_GraphicsP7_JNIEnv 341 | 00043158 g DF .text 0000001c _ZN7android34register_android_view_GLES20CanvasEP7_JNIEnv 342 | 000405dc g DF .text 00000038 _ZN7android29register_android_view_SurfaceEP7_JNIEnv 343 | 00041610 g DF .text 0000001c _ZN7android30register_android_view_ViewRootEP7_JNIEnv 344 | 00031878 g DF .text 0000001c _Z44register_com_google_android_gles_jni_EGLImplP7_JNIEnv 345 | 0003417c g DF .text 0000001c _Z34register_android_opengl_jni_GLES10P7_JNIEnv 346 | 00036180 g DF .text 0000001c _Z37register_android_opengl_jni_GLES10ExtP7_JNIEnv 347 | 0003663c g DF .text 0000001c _Z34register_android_opengl_jni_GLES11P7_JNIEnv 348 | 000385b8 g DF .text 0000001c _Z37register_android_opengl_jni_GLES11ExtP7_JNIEnv 349 | 00039fc8 g DF .text 0000001c _Z34register_android_opengl_jni_GLES20P7_JNIEnv 350 | 00050418 g DF .text 0000001c _Z32register_android_graphics_BitmapP7_JNIEnv 351 | 00050f4c g DF .text 00000250 _Z39register_android_graphics_BitmapFactoryP7_JNIEnv 352 | 000573ac g DF .text 00000068 _Z45register_android_graphics_BitmapRegionDecoderP7_JNIEnv 353 | 00051bcc g DF .text 0000005c _Z32register_android_graphics_CameraP7_JNIEnv 354 | 00051e54 g DF .text 0000001c _ZN7android32register_android_graphics_CanvasEP7_JNIEnv 355 | 00052de4 g DF .text 00000078 _ZN7android37register_android_graphics_ColorFilterEP7_JNIEnv 356 | 00052ec8 g DF .text 00000040 _ZN7android36register_android_graphics_DrawFilterEP7_JNIEnv 357 | 0005465c g DF .text 0000001c _Z38register_android_graphics_InterpolatorP7_JNIEnv 358 | 000547b4 g DF .text 0000001c _Z41register_android_graphics_LayerRasterizerP7_JNIEnv 359 | 000547f4 g DF .text 00000078 _Z36register_android_graphics_MaskFilterP7_JNIEnv 360 | 000549c8 g DF .text 00000054 _ZN7android32register_android_graphics_MatrixEP7_JNIEnv 361 | 00054e6c g DF .text 000000a0 _Z31register_android_graphics_MovieP7_JNIEnv 362 | 00055140 g DF .text 0000001c _Z35register_android_graphics_NinePatchP7_JNIEnv 363 | 00055a88 g DF .text 0000014c _ZN7android31register_android_graphics_PaintEP7_JNIEnv 364 | 00056a5c g DF .text 0000001c _ZN7android30register_android_graphics_PathEP7_JNIEnv 365 | 00056dac g DF .text 0000001c _ZN7android37register_android_graphics_PathMeasureEP7_JNIEnv 366 | 00056f40 g DF .text 000000cc _Z36register_android_graphics_PathEffectP7_JNIEnv 367 | 0005725c g DF .text 0000001c _ZN7android33register_android_graphics_PictureEP7_JNIEnv 368 | 0005735c g DF .text 0000001c _ZN7android36register_android_graphics_PorterDuffEP7_JNIEnv 369 | 00057934 g DF .text 0000001c _ZN7android36register_android_graphics_RasterizerEP7_JNIEnv 370 | 00057ac4 g DF .text 0000006c _ZN7android32register_android_graphics_RegionEP7_JNIEnv 371 | 00057e50 g DF .text 000000c4 _Z32register_android_graphics_ShaderP7_JNIEnv 372 | 000583cc g DF .text 0000001c _ZN7android40register_android_graphics_SurfaceTextureEP7_JNIEnv 373 | 00058ef4 g DF .text 0000001c _Z34register_android_graphics_TypefaceP7_JNIEnv 374 | 0005926c g DF .text 0000005c _ZN7android34register_android_graphics_XfermodeEP7_JNIEnv 375 | 00059498 g DF .text 0000001c _Z34register_android_graphics_YuvImageP7_JNIEnv 376 | 0005e23c g DF .text 0000001c _ZN7android50register_com_android_internal_graphics_NativeUtilsEP7_JNIEnv 377 | 0003d220 g DF .text 00000124 _ZN7android38register_android_database_CursorWindowEP7_JNIEnv 378 | 0003de30 g DF .text 000000b8 _ZN7android43register_android_database_SQLiteCompiledSqlEP7_JNIEnv 379 | 0003e6cc g DF .text 000000e4 _ZN7android40register_android_database_SQLiteDatabaseEP7_JNIEnv 380 | 0003e2f8 g DF .text 000000dc _ZN7android37register_android_database_SQLiteDebugEP7_JNIEnv 381 | 0003ef24 g DF .text 000000b8 _ZN7android39register_android_database_SQLiteProgramEP7_JNIEnv 382 | 0003f32c g DF .text 000000b8 _ZN7android37register_android_database_SQLiteQueryEP7_JNIEnv 383 | 0003f8b4 g DF .text 000000b8 _ZN7android41register_android_database_SQLiteStatementEP7_JNIEnv 384 | 00044738 g DF .text 0000011c _ZN7android25register_android_os_DebugEP7_JNIEnv 385 | 0005d374 g DF .text 00000078 _ZN7android32register_android_os_FileObserverEP7_JNIEnv 386 | 00044854 g DF .text 000001a8 _ZN7android29register_android_os_FileUtilsEP7_JNIEnv 387 | 00045000 g DF .text 00000060 _ZN7android32register_android_os_MessageQueueEP7_JNIEnv 388 | 00045208 g DF .text 00000130 _ZN7android40register_android_os_ParcelFileDescriptorEP7_JNIEnv 389 | 000454c8 g DF .text 0000001c _ZN7android25register_android_os_PowerEP7_JNIEnv 390 | 00045674 g DF .text 00000078 _ZN7android26register_android_os_StatFsEP7_JNIEnv 391 | 00045c44 g DF .text 0000004c _ZN7android34register_android_os_UEventObserverEP7_JNIEnv 392 | 0004674c g DF .text 00000120 _ZN7android36register_android_net_LocalSocketImplEP7_JNIEnv 393 | 00046b04 g DF .text 000000e8 _ZN7android33register_android_net_NetworkUtilsEP7_JNIEnv 394 | 00046bec g DF .text 0000001c _ZN7android33register_android_net_TrafficStatsEP7_JNIEnv 395 | 00047dd8 g DF .text 000000e8 _ZN7android37register_android_net_wifi_WifiManagerEP7_JNIEnv 396 | 000482b0 g DF .text 0000001c _ZN7android32register_android_nfc_NdefMessageEP7_JNIEnv 397 | 000485c8 g DF .text 0000001c _ZN7android31register_android_nfc_NdefRecordEP7_JNIEnv 398 | 00044d70 g DF .text 0000002c _ZN7android30register_android_os_MemoryFileEP7_JNIEnv 399 | 0005deb8 g DF .text 0000001c _ZN7android43register_com_android_internal_os_ZygoteInitEP7_JNIEnv 400 | 0005bed0 g DF .text 000000f0 _Z32register_android_hardware_CameraP7_JNIEnv 401 | 0005d20c g DF .text 0000001c _Z39register_android_hardware_SensorManagerP7_JNIEnv 402 | 000598f4 g DF .text 00000170 _Z34register_android_media_AudioRecordP7_JNIEnv 403 | 0005a0a4 g DF .text 00000034 _Z34register_android_media_AudioSystemP7_JNIEnv 404 | 0005a3d8 g DF .text 000002dc _Z33register_android_media_AudioTrackP7_JNIEnv 405 | 0005b38c g DF .text 000000e4 _Z32register_android_media_JetPlayerP7_JNIEnv 406 | 0005bba8 g DF .text 0000008c _Z36register_android_media_ToneGeneratorP7_JNIEnv 407 | 0005d570 g DF .text 0000001c _ZN7android38register_android_bluetooth_HeadsetBaseEP7_JNIEnv 408 | 0005d5a4 g DF .text 0000001c _ZN7android48register_android_bluetooth_BluetoothAudioGatewayEP7_JNIEnv 409 | 0005d5c4 g DF .text 00000134 _ZN7android42register_android_bluetooth_BluetoothSocketEP7_JNIEnv 410 | 0005d830 g DF .text 0000001c _ZN7android40register_android_server_BluetoothServiceEP7_JNIEnv 411 | 0005d864 g DF .text 0000001c _ZN7android42register_android_server_BluetoothEventLoopEP7_JNIEnv 412 | 0005d8a4 g DF .text 0000004c _ZN7android44register_android_server_BluetoothA2dpServiceEP7_JNIEnv 413 | 0005d8f0 g DF .text 0000001c _ZN7android32register_android_server_WatchdogEP7_JNIEnv 414 | 0005db18 g DF .text 00000078 _Z36register_android_message_digest_sha1P7_JNIEnv 415 | 0005dd20 g DF .text 0000001c _ZN7android40register_android_ddm_DdmHandleNativeHeapEP7_JNIEnv 416 | 0005e2a8 g DF .text 000000ac _ZN7android39register_android_backup_BackupDataInputEP7_JNIEnv 417 | 0005e4d8 g DF .text 00000054 _ZN7android40register_android_backup_BackupDataOutputEP7_JNIEnv 418 | 0005e680 g DF .text 00000054 _ZN7android44register_android_backup_FileBackupHelperBaseEP7_JNIEnv 419 | 0005e8d0 g DF .text 000000ac _ZN7android46register_android_backup_BackupHelperDispatcherEP7_JNIEnv 420 | 00032750 g DF .text 000000ec _ZN7android35register_android_app_NativeActivityEP7_JNIEnv 421 | 00041c34 g DF .text 0000007c _ZN7android34register_android_view_InputChannelEP7_JNIEnv 422 | 00041cf8 g DF .text 0000007c _ZN7android32register_android_view_InputQueueEP7_JNIEnv 423 | 000428c8 g DF .text 00000170 _ZN7android30register_android_view_KeyEventEP7_JNIEnv 424 | 00043298 g DF .text 00000210 _ZN7android33register_android_view_MotionEventEP7_JNIEnv 425 | 0005eccc g DF .text 000000b8 _ZN7android39register_android_content_res_ObbScannerEP7_JNIEnv 426 | 0005ef84 g DF .text 0000013c _ZN7android42register_android_content_res_ConfigurationEP7_JNIEnv 427 | 0005f150 g DF .text 0000001c _ZN7android47register_android_animation_PropertyValuesHolderEP7_JNIEnv 428 | 000313e4 g DF .text 0000001c _ZN7android4TimeC2Ev 429 | 000313e4 g DF .text 0000001c _ZN7android4TimeC1Ev 430 | 00000000 DF *UND* 00000000 __aeabi_idiv 431 | 00000000 DF *UND* 00000000 __aeabi_idivmod 432 | 00031430 g DF .text 00000030 _ZN7android4Time3setEx 433 | 00000000 DF *UND* 00000000 localtime_tz 434 | 00000000 DF *UND* 00000000 __aeabi_lmul 435 | 00031460 g DF .text 00000040 _ZN7android4Time8toMillisEb 436 | 00000000 DF *UND* 00000000 mktime_tz 437 | 000314a0 g DF .text 0000001e _ZN7android4Time14switchTimezoneEPKc 438 | 000314c0 g DF .text 0000001c _ZN7android4Time8setToNowEv 439 | 00000000 DF *UND* 00000000 time 440 | 000314e0 g DF .text 000000a8 _ZNK7android4Time8toStringEv 441 | 00000000 DF *UND* 00000000 _ZN7android7String8C1Ev 442 | 00000000 DF *UND* 00000000 _ZN7android7String810lockBufferEj 443 | 00000000 DF *UND* 00000000 sprintf 444 | 00000000 DF *UND* 00000000 _ZN7android7String812unlockBufferEv 445 | 00031588 g DF .text 00000110 _ZNK7android4Time10format2445EPsb 446 | 00031698 g DF .text 0000007c _ZN7android4Time7compareERS0_S1_ 447 | 00031714 g DF .text 00000058 _ZNK7android4Time6formatEPKcPK15strftime_locale 448 | 00000000 DF *UND* 00000000 strftime_tz 449 | 00000000 DF *UND* 00000000 _ZN7android7String8C1EPKc 450 | 00000000 DF *UND* 00000000 eglSwapBuffers 451 | 00000000 DF *UND* 00000000 eglQueryString 452 | 00000000 DF *UND* 00000000 eglMakeCurrent 453 | 00000000 DF *UND* 00000000 android_atomic_dec 454 | 00000000 DF *UND* 00000000 _ZN10SkPixelRef12unlockPixelsEv 455 | 00000000 DF *UND* 00000000 eglDestroySurface 456 | 00000000 DF *UND* 00000000 eglDestroyContext 457 | 00040fd0 g DF .text 00000034 _ZN7android31android_Surface_getNativeWindowEP7_JNIEnvP8_jobject 458 | 00000000 DF *UND* 00000000 eglCreateWindowSurface 459 | 00000000 DF *UND* 00000000 android_atomic_inc 460 | 00000000 DF *UND* 00000000 _ZN10SkPixelRef10lockPixelsEv 461 | 00000000 DF *UND* 00000000 eglCreatePixmapSurface 462 | 00000000 DF *UND* 00000000 eglCreatePbufferSurface 463 | 00000000 DF *UND* 00000000 eglGetCurrentSurface 464 | 00000000 DF *UND* 00000000 eglGetCurrentDisplay 465 | 00000000 DF *UND* 00000000 eglGetCurrentContext 466 | 00000000 DF *UND* 00000000 eglGetDisplay 467 | 00000000 DF *UND* 00000000 eglGetConfigAttrib 468 | 00000000 DF *UND* 00000000 eglGetError 469 | 00000000 DF *UND* 00000000 eglWaitNative 470 | 00000000 DF *UND* 00000000 eglTerminate 471 | 00000000 DF *UND* 00000000 eglGetConfigs 472 | 00000000 DF *UND* 00000000 eglCreateContext 473 | 00000000 DF *UND* 00000000 eglChooseConfig 474 | 00000000 DF *UND* 00000000 eglQuerySurface 475 | 00000000 DF *UND* 00000000 eglQueryContext 476 | 00000000 DF *UND* 00000000 eglInitialize 477 | 00000000 DF *UND* 00000000 eglWaitGL 478 | 00030298 w DF .text 00000002 _ZNK7android6VectorIN11AInputQueue19finish_pre_dispatchEE12do_constructEPvj 479 | 00030298 w DF .text 00000002 _ZNK7android6VectorIN11AInputQueue19finish_pre_dispatchEE10do_destroyEPvj 480 | 00032558 w DF .text 0000001c _ZNK7android6VectorIN11AInputQueue19finish_pre_dispatchEE7do_copyEPvPKvj 481 | 00032574 w DF .text 00000014 _ZNK7android6VectorIN11AInputQueue19finish_pre_dispatchEE8do_splatEPvPKvj 482 | 00032588 w DF .text 00000022 _ZNK7android6VectorIN11AInputQueue19finish_pre_dispatchEE15do_move_forwardEPvPKvj 483 | 000325ac w DF .text 0000001c _ZNK7android6VectorIN11AInputQueue19finish_pre_dispatchEE16do_move_backwardEPvPKvj 484 | 000325c8 w DF .text 00000002 _ZNK7android6VectorIN11AInputQueue15in_flight_eventEE12do_constructEPvj 485 | 000325cc w DF .text 00000002 _ZNK7android6VectorIN11AInputQueue15in_flight_eventEE10do_destroyEPvj 486 | 000325d0 w DF .text 00000020 _ZNK7android6VectorIN11AInputQueue15in_flight_eventEE7do_copyEPvPKvj 487 | 000325f0 w DF .text 00000020 _ZNK7android6VectorIN11AInputQueue15in_flight_eventEE8do_splatEPvPKvj 488 | 00032610 w DF .text 0000002a _ZNK7android6VectorIN11AInputQueue15in_flight_eventEE15do_move_forwardEPvPKvj 489 | 0003263c w DF .text 00000020 _ZNK7android6VectorIN11AInputQueue15in_flight_eventEE16do_move_backwardEPvPKvj 490 | 0003265c w DF .text 00000002 _ZNK7android6VectorIPNS_11MotionEventEE12do_constructEPvj 491 | 00032660 w DF .text 00000002 _ZNK7android6VectorIPNS_11MotionEventEE10do_destroyEPvj 492 | 00032664 w DF .text 0000000e _ZNK7android6VectorIPNS_11MotionEventEE8do_splatEPvPKvj 493 | 00032674 w DF .text 00000002 _ZNK7android6VectorIPNS_8KeyEventEE12do_constructEPvj 494 | 00032678 w DF .text 00000002 _ZNK7android6VectorIPNS_8KeyEventEE10do_destroyEPvj 495 | 0003267c w DF .text 0000000e _ZNK7android6VectorIPNS_8KeyEventEE8do_splatEPvPKvj 496 | 0003268c w DF .text 00000002 _ZNK7android6VectorINS_13PointerCoordsEE12do_constructEPvj 497 | 00032690 w DF .text 00000002 _ZNK7android6VectorINS_13PointerCoordsEE10do_destroyEPvj 498 | 00032694 w DF .text 00000024 _ZNK7android6VectorINS_13PointerCoordsEE7do_copyEPvPKvj 499 | 000326b8 w DF .text 0000001e _ZNK7android6VectorINS_13PointerCoordsEE8do_splatEPvPKvj 500 | 000326d8 w DF .text 0000002e _ZNK7android6VectorINS_13PointerCoordsEE15do_move_forwardEPvPKvj 501 | 00032708 w DF .text 00000024 _ZNK7android6VectorINS_13PointerCoordsEE16do_move_backwardEPvPKvj 502 | 00030298 w DF .text 00000002 _ZNK7android6VectorIxE12do_constructEPvj 503 | 00030298 w DF .text 00000002 _ZNK7android6VectorIxE10do_destroyEPvj 504 | 0003272c w DF .text 00000012 _ZNK7android6VectorIxE8do_splatEPvPKvj 505 | 00030298 w DF .text 00000002 _ZNK7android6VectorIiE12do_constructEPvj 506 | 00030298 w DF .text 00000002 _ZNK7android6VectorIiE10do_destroyEPvj 507 | 00032740 w DF .text 0000000e _ZNK7android6VectorIiE8do_splatEPvPKvj 508 | 0003283c w DF .text 00000014 _ZN7android2spINS_12InputChannelEED1Ev 509 | 00000000 DF *UND* 00000000 _ZNK7android7RefBase9incStrongEPKv 510 | 000328d4 g DF .text 00000030 _ZN11AInputQueue12detachLooperEv 511 | 00000000 DF *UND* 00000000 _ZN7android6Looper8removeFdEi 512 | 00032904 g DF .text 00000066 _ZN11AInputQueue12attachLooperEP7ALooperiPFiiiPvES2_ 513 | 00000000 DF *UND* 00000000 _ZN7android6Looper5addFdEiiiPFiiiPvES1_ 514 | 00000000 DF *UND* 00000000 jniLogException 515 | 00000000 DF *UND* 00000000 write 516 | 00000000 DF *UND* 00000000 __errno 517 | 00000000 DF *UND* 00000000 strerror 518 | 00032a60 g DF .text 00000012 _ZN7android36android_NativeActivity_hideSoftInputEP15ANativeActivityi 519 | 00032a74 g DF .text 00000012 _ZN7android36android_NativeActivity_showSoftInputEP15ANativeActivityi 520 | 00032a88 g DF .text 00000014 _ZN7android37android_NativeActivity_setWindowFlagsEP15ANativeActivityii 521 | 00032a9c g DF .text 00000012 _ZN7android38android_NativeActivity_setWindowFormatEP15ANativeActivityi 522 | 00032ab0 g DF .text 00000012 _ZN7android29android_NativeActivity_finishEP15ANativeActivity 523 | 00032ac4 g DF .text 00000068 _ZN11AInputQueue14wakeupDispatchEv 524 | 00032b2c g DF .text 000000a4 _ZN11AInputQueue14preDispatchKeyEPN7android8KeyEventE 525 | 00000000 DF *UND* 00000000 pthread_mutex_lock 526 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl16editItemLocationEj 527 | 00000000 DF *UND* 00000000 pthread_mutex_unlock 528 | 00032bd0 g DF .text 0000003a _ZN11AInputQueue14doUnhandledKeyEPN7android8KeyEventE 529 | 00032c0c g DF .text 00000032 _ZN11AInputQueue17finishPreDispatchEib 530 | 00032c60 g DF .text 0000002c _ZN11AInputQueue13dispatchEventEPN7android8KeyEventE 531 | 00042b60 g DF .text 000000e4 _ZN7android30android_view_KeyEvent_toNativeEP7_JNIEnvP8_jobjectPNS_8KeyEventE 532 | 00000000 DF *UND* 00000000 jniThrowRuntimeException 533 | 000768c0 w DO .data.rel.ro 00000048 _ZTVN7android6VectorINS_13PointerCoordsEEE 534 | 00076908 w DO .data.rel.ro 00000048 _ZTVN7android6VectorIxEE 535 | 00076950 w DO .data.rel.ro 00000048 _ZTVN7android6VectorIiEE 536 | 000768a8 w DO .data.rel.ro 00000014 _ZTVN7android11MotionEventE 537 | 000769d8 w DO .data.rel.ro 00000048 _ZTVN7android6VectorIN11AInputQueue19finish_pre_dispatchEEE 538 | 00076a20 w DO .data.rel.ro 00000048 _ZTVN7android6VectorIN11AInputQueue15in_flight_eventEEE 539 | 00076a68 w DO .data.rel.ro 00000048 _ZTVN7android6VectorIPNS_11MotionEventEEE 540 | 00076ab0 w DO .data.rel.ro 00000048 _ZTVN7android6VectorIPNS_8KeyEventEEE 541 | 00032ec8 w DF .text 00000010 _ZNK7android6VectorIxE16do_move_backwardEPvPKvj 542 | 00000000 DF *UND* 00000000 memmove 543 | 00032ec8 w DF .text 00000010 _ZNK7android6VectorIxE15do_move_forwardEPvPKvj 544 | 00032ed8 w DF .text 00000010 _ZNK7android6VectorIiE16do_move_backwardEPvPKvj 545 | 00032ed8 w DF .text 00000010 _ZNK7android6VectorIiE15do_move_forwardEPvPKvj 546 | 00032ed8 w DF .text 00000010 _ZNK7android6VectorIPNS_11MotionEventEE16do_move_backwardEPvPKvj 547 | 00032ed8 w DF .text 00000010 _ZNK7android6VectorIPNS_11MotionEventEE15do_move_forwardEPvPKvj 548 | 00032ed8 w DF .text 00000010 _ZNK7android6VectorIPNS_8KeyEventEE16do_move_backwardEPvPKvj 549 | 00032ed8 w DF .text 00000010 _ZNK7android6VectorIPNS_8KeyEventEE15do_move_forwardEPvPKvj 550 | 00032ee8 w DF .text 00000010 _ZNK7android6VectorIxE7do_copyEPvPKvj 551 | 00032ef8 w DF .text 00000010 _ZNK7android6VectorIiE7do_copyEPvPKvj 552 | 00032ef8 w DF .text 00000010 _ZNK7android6VectorIPNS_11MotionEventEE7do_copyEPvPKvj 553 | 00032ef8 w DF .text 00000010 _ZNK7android6VectorIPNS_8KeyEventEE7do_copyEPvPKvj 554 | 00032f2c g DF .text 0000009c _ZN11AInputQueue17createMotionEventEv 555 | 00000000 DF *UND* 00000000 _Znwj 556 | 00000000 DF *UND* 00000000 memset 557 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl3popEv 558 | 00032fc8 g DF .text 00000054 _ZN11AInputQueue14createKeyEventEv 559 | 000769c0 w DO .data.rel.ro 00000014 _ZTVN7android8KeyEventE 560 | 0003301c g DF .text 0000003e _ZN11AInputQueue26consumePreDispatchingEventEPi 561 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl13removeItemsAtEjj 562 | 0003305c g DF .text 00000030 _ZN11AInputQueue21consumeUnhandledEventEv 563 | 0003308c g DF .text 0000010c _ZN11AInputQueue11finishEventEP11AInputEventbb 564 | 00000000 DF *UND* 00000000 _ZNK7android8KeyEvent16hasDefaultActionEv 565 | 00000000 DF *UND* 00000000 _ZN7android13InputConsumer18sendFinishedSignalEb 566 | 00000000 DF *UND* 00000000 _ZN7android7String8C1ERKS0_ 567 | 00000000 DF *UND* 00000000 _ZN7android10VectorImpl4pushEPKv 568 | 00000000 DF *UND* 00000000 read 569 | 00042aa8 g DF .text 000000b4 _ZN7android32android_view_KeyEvent_fromNativeEP7_JNIEnvPKNS_8KeyEventE 570 | 000333b8 g DF .text 0000002a _ZN11AInputQueue16preDispatchEventEP11AInputEvent 571 | 00000000 DF *UND* 00000000 _ZNK7android8KeyEvent11isSystemKeyEv 572 | 000333e4 g DF .text 000001a8 _ZN11AInputQueue8getEventEPP11AInputEvent 573 | 00000000 DF *UND* 00000000 _ZN7android13InputConsumer21receiveDispatchSignalEv 574 | 00000000 DF *UND* 00000000 _ZN7android13InputConsumer7consumeEPNS_26InputEventFactoryInterfaceEPPNS_10InputEventE 575 | 0003358c g DF .text 0000005a _ZN11AInputQueue9hasEventsEv 576 | 00000000 DF *UND* 00000000 poll 577 | 000335e8 g DF .text 00000080 _ZN11AInputQueueD1Ev 578 | 00000000 DF *UND* 00000000 close 579 | 00000000 DF *UND* 00000000 pthread_mutex_destroy 580 | 00000000 DF *UND* 00000000 _ZN7android13InputConsumerD1Ev 581 | 00076b10 g DO .data.rel.ro 00000018 _ZTV11AInputQueue 582 | 00033668 g DF .text 00000012 _ZN11AInputQueueD0Ev 583 | 000335e8 g DF .text 00000080 _ZN11AInputQueueD2Ev 584 | 0003367c g DF .text 00000150 _ZN11AInputQueueC1ERKN7android2spINS0_12InputChannelEEEi 585 | 00000000 DF *UND* 00000000 _ZN7android13InputConsumerC1ERKNS_2spINS_12InputChannelEEE 586 | 00000000 DF *UND* 00000000 pthread_mutex_init 587 | 00000000 DF *UND* 00000000 pipe 588 | 00000000 DF *UND* 00000000 fcntl 589 | 00000000 DF *UND* 00000000 __android_log_buf_print 590 | 00041800 g DF .text 00000026 _ZN7android41android_view_InputChannel_getInputChannelEP7_JNIEnvP8_jobject 591 | 00000000 DF *UND* 00000000 _ZN7android13InputConsumer10initializeEv 592 | 00000000 DF *UND* 00000000 jniThrowException 593 | 000338e4 g DF .text 00000150 _ZN11AInputQueueC2ERKN7android2spINS0_12InputChannelEEEi 594 | 00000000 DF *UND* 00000000 dlopen 595 | 00000000 DF *UND* 00000000 dlsym 596 | 00045060 g DF .text 00000038 _ZN7android33android_os_MessageQueue_getLooperEP7_JNIEnvP8_jobject 597 | 00000000 DF *UND* 00000000 _ZN7android7String85setToEPKc 598 | 0004aa38 g DF .text 00000038 _ZN7android25assetManagerForJavaObjectEP7_JNIEnvP8_jobject 599 | 00076998 w DO .data.rel.ro 00000014 _ZTVN7android10InputEventE 600 | 000769b0 w DO .data.rel.ro 00000010 _ZTV11AInputEvent 601 | 00076af8 w DO .data.rel.ro 00000018 _ZTVN7android26InputEventFactoryInterfaceE 602 | 00000000 DF *UND* 00000000 glGetTexEnvfv 603 | 00000000 DF *UND* 00000000 glClearDepthfOES 604 | 00000000 DF *UND* 00000000 glOrthofOES 605 | 00000000 DF *UND* 00000000 glFrustumfOES 606 | 00000000 DF *UND* 00000000 glDepthRangefOES 607 | 00000000 DF *UND* 00000000 glTranslatexOES 608 | 00000000 DF *UND* 00000000 glTexParameterxOES 609 | 00000000 DF *UND* 00000000 glTexEnvxOES 610 | 00000000 DF *UND* 00000000 glScalexOES 611 | 00000000 DF *UND* 00000000 glSampleCoveragexOES 612 | 00000000 DF *UND* 00000000 glRotatexOES 613 | 00000000 DF *UND* 00000000 glPolygonOffsetxOES 614 | 00000000 DF *UND* 00000000 glPointSizexOES 615 | 00000000 DF *UND* 00000000 glPointParameterxOES 616 | 00000000 DF *UND* 00000000 glOrthoxOES 617 | 00000000 DF *UND* 00000000 glNormal3xOES 618 | 00000000 DF *UND* 00000000 glMultiTexCoord4xOES 619 | 00000000 DF *UND* 00000000 glMaterialxOES 620 | 00000000 DF *UND* 00000000 glLineWidthxOES 621 | 00000000 DF *UND* 00000000 glLightxOES 622 | 00000000 DF *UND* 00000000 glLightModelxOES 623 | 00000000 DF *UND* 00000000 glFrustumxOES 624 | 00000000 DF *UND* 00000000 glFogxOES 625 | 00000000 DF *UND* 00000000 glDepthRangexOES 626 | 00000000 DF *UND* 00000000 glColor4xOES 627 | 00000000 DF *UND* 00000000 glClearDepthxOES 628 | 00000000 DF *UND* 00000000 glClearColorxOES 629 | 00000000 DF *UND* 00000000 glAlphaFuncxOES 630 | 00000000 DF *UND* 00000000 glClipPlanexOES 631 | 00000000 DF *UND* 00000000 glFogxvOES 632 | 00000000 DF *UND* 00000000 glGetClipPlanexOES 633 | 00000000 DF *UND* 00000000 glGetFixedvOES 634 | 00000000 DF *UND* 00000000 glGetLightxvOES 635 | 00000000 DF *UND* 00000000 glGetMaterialxvOES 636 | 00000000 DF *UND* 00000000 glGetTexEnvxvOES 637 | 00000000 DF *UND* 00000000 glGetTexParameterxvOES 638 | 00000000 DF *UND* 00000000 glLightModelxvOES 639 | 00000000 DF *UND* 00000000 glLightxvOES 640 | 00000000 DF *UND* 00000000 glLoadMatrixxOES 641 | 00000000 DF *UND* 00000000 glMaterialxvOES 642 | 00000000 DF *UND* 00000000 glMultMatrixxOES 643 | 00000000 DF *UND* 00000000 glPointParameterxvOES 644 | 00000000 DF *UND* 00000000 glTexEnvxvOES 645 | 00000000 DF *UND* 00000000 glTexParameterxvOES 646 | 00000000 DF *UND* 00000000 glClipPlanefOES 647 | 00000000 DF *UND* 00000000 glGetClipPlanefOES 648 | 00000000 DF *UND* 00000000 glEGLImageTargetRenderbufferStorageOES 649 | 00000000 DF *UND* 00000000 glEGLImageTargetTexture2DOES 650 | 00000000 DF *UND* 00000000 glVertexAttribPointer 651 | 00000000 DF *UND* 00000000 glVertexAttrib4f 652 | 00000000 DF *UND* 00000000 glVertexAttrib3f 653 | 00000000 DF *UND* 00000000 glVertexAttrib2f 654 | 00000000 DF *UND* 00000000 glVertexAttrib1f 655 | 00000000 DF *UND* 00000000 glValidateProgram 656 | 00000000 DF *UND* 00000000 glUseProgram 657 | 00000000 DF *UND* 00000000 glUniform4i 658 | 00000000 DF *UND* 00000000 glUniform4f 659 | 00000000 DF *UND* 00000000 glUniform3i 660 | 00000000 DF *UND* 00000000 glUniform3f 661 | 00000000 DF *UND* 00000000 glUniform2i 662 | 00000000 DF *UND* 00000000 glUniform2f 663 | 00000000 DF *UND* 00000000 glUniform1i 664 | 00000000 DF *UND* 00000000 glUniform1f 665 | 00000000 DF *UND* 00000000 glStencilOpSeparate 666 | 00000000 DF *UND* 00000000 glStencilMaskSeparate 667 | 00000000 DF *UND* 00000000 glStencilFuncSeparate 668 | 00000000 DF *UND* 00000000 glShaderSource 669 | 00000000 DF *UND* 00000000 glRenderbufferStorage 670 | 00000000 DF *UND* 00000000 glReleaseShaderCompiler 671 | 00000000 DF *UND* 00000000 glLinkProgram 672 | 00000000 DF *UND* 00000000 glIsShader 673 | 00000000 DF *UND* 00000000 glIsRenderbuffer 674 | 00000000 DF *UND* 00000000 glIsProgram 675 | 00000000 DF *UND* 00000000 glIsFramebuffer 676 | 00000000 DF *UND* 00000000 glGetUniformLocation 677 | 00000000 DF *UND* 00000000 glGetShaderiv 678 | 00000000 DF *UND* 00000000 glGetShaderInfoLog 679 | 00000000 DF *UND* 00000000 glGetProgramiv 680 | 00000000 DF *UND* 00000000 glGetProgramInfoLog 681 | 00000000 DF *UND* 00000000 glGetAttribLocation 682 | 00000000 DF *UND* 00000000 glGenerateMipmap 683 | 00000000 DF *UND* 00000000 glFramebufferTexture2D 684 | 00000000 DF *UND* 00000000 glFramebufferRenderbuffer 685 | 00000000 DF *UND* 00000000 glEnableVertexAttribArray 686 | 00000000 DF *UND* 00000000 glDisableVertexAttribArray 687 | 00000000 DF *UND* 00000000 glDetachShader 688 | 00000000 DF *UND* 00000000 glDeleteShader 689 | 00000000 DF *UND* 00000000 glDeleteProgram 690 | 00000000 DF *UND* 00000000 glCreateShader 691 | 00000000 DF *UND* 00000000 glCreateProgram 692 | 00000000 DF *UND* 00000000 glCompileShader 693 | 00000000 DF *UND* 00000000 glCheckFramebufferStatus 694 | 00000000 DF *UND* 00000000 glBlendColor 695 | 00000000 DF *UND* 00000000 glBindRenderbuffer 696 | 00000000 DF *UND* 00000000 glBindFramebuffer 697 | 00000000 DF *UND* 00000000 glBindAttribLocation 698 | 00000000 DF *UND* 00000000 glAttachShader 699 | 00000000 DF *UND* 00000000 glDeleteFramebuffers 700 | 00000000 DF *UND* 00000000 glDeleteRenderbuffers 701 | 00000000 DF *UND* 00000000 glGenFramebuffers 702 | 00000000 DF *UND* 00000000 glGenRenderbuffers 703 | 00000000 DF *UND* 00000000 glGetActiveAttrib 704 | 00000000 DF *UND* 00000000 glGetActiveUniform 705 | 00000000 DF *UND* 00000000 glGetAttachedShaders 706 | 00000000 DF *UND* 00000000 glGetFramebufferAttachmentParameteriv 707 | 00000000 DF *UND* 00000000 glGetRenderbufferParameteriv 708 | 00000000 DF *UND* 00000000 glGetShaderPrecisionFormat 709 | 00000000 DF *UND* 00000000 glGetShaderSource 710 | 00000000 DF *UND* 00000000 glGetUniformfv 711 | 00000000 DF *UND* 00000000 glGetUniformiv 712 | 00000000 DF *UND* 00000000 glGetVertexAttribfv 713 | 00000000 DF *UND* 00000000 glGetVertexAttribiv 714 | 00000000 DF *UND* 00000000 glUniform1fv 715 | 00000000 DF *UND* 00000000 glUniform1iv 716 | 00000000 DF *UND* 00000000 glUniform2fv 717 | 00000000 DF *UND* 00000000 glUniform2iv 718 | 00000000 DF *UND* 00000000 glUniform3fv 719 | 00000000 DF *UND* 00000000 glUniform3iv 720 | 00000000 DF *UND* 00000000 glUniform4fv 721 | 00000000 DF *UND* 00000000 glUniform4iv 722 | 00000000 DF *UND* 00000000 glUniformMatrix2fv 723 | 00000000 DF *UND* 00000000 glUniformMatrix3fv 724 | 00000000 DF *UND* 00000000 glUniformMatrix4fv 725 | 00000000 DF *UND* 00000000 glVertexAttrib1fv 726 | 00000000 DF *UND* 00000000 glVertexAttrib2fv 727 | 00000000 DF *UND* 00000000 glVertexAttrib3fv 728 | 00000000 DF *UND* 00000000 glVertexAttrib4fv 729 | 00000000 DF *UND* 00000000 glShaderBinary 730 | 0003d190 g DF .text 00000014 _ZN7android22get_window_from_objectEP7_JNIEnvP8_jobject 731 | 00000000 DF *UND* 00000000 snprintf 732 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow7putNullEjj 733 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow9putDoubleEjjd 734 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow7putLongEjjx 735 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow21getFieldSlotWithCheckEii 736 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow5allocEjb 737 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow6copyInEjPKhj 738 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow8allocRowEv 739 | 00000000 DF *UND* 00000000 __aeabi_l2d 740 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow15read_field_slotEiiPNS_12field_slot_tE 741 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow9getDoubleEjjPd 742 | 00000000 DF *UND* 00000000 strtod 743 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow7getLongEjjPx 744 | 0003e614 g DF .text 0000000c _ZN7android23throw_sqlite3_exceptionEP7_JNIEnvPKc 745 | 00000000 DF *UND* 00000000 _ZN7android8String16C1EPKcj 746 | 00000000 DF *UND* 00000000 __aeabi_d2lz 747 | 00000000 DF *UND* 00000000 strtoll 748 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindowD1Ev 749 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow5clearEv 750 | 00000000 DF *UND* 00000000 _ZN7android10IInterface8asBinderEv 751 | 0004ced4 g DF .text 00000120 _ZN7android20javaObjectForIBinderEP7_JNIEnvRKNS_2spINS_7IBinderEEE 752 | 0004dd20 g DF .text 000001a0 _ZN7android20ibinderForJavaObjectEP7_JNIEnvP8_jobject 753 | 00000000 DF *UND* 00000000 _ZN7android7IMemory11asInterfaceERKNS_2spINS_7IBinderEEE 754 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow9setMemoryERKNS_2spINS_7IMemoryEEE 755 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindowC1Ej 756 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow10initBufferEb 757 | 0003ddc4 g DF .text 0000001c _ZN7android13isNull_nativeEPNS_12CursorWindowEii 758 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow7getNullEjjPb 759 | 0003dee8 g DF .text 00000100 _ZN7android7compileEP7_JNIEnvP8_jobjectP7sqlite3P8_jstring 760 | 00000000 DF *UND* 00000000 sqlite3_finalize 761 | 00000000 DF *UND* 00000000 sqlite3_prepare16_v2 762 | 0003e5e0 g DF .text 00000034 _ZN7android23throw_sqlite3_exceptionEP7_JNIEnvP7sqlite3PKc 763 | 00000000 DF *UND* 00000000 getpid 764 | 00000000 DF *UND* 00000000 fopen 765 | 00000000 DF *UND* 00000000 fgets 766 | 00000000 DF *UND* 00000000 strtoul 767 | 00000000 DF *UND* 00000000 strncmp 768 | 00000000 DF *UND* 00000000 sscanf 769 | 00000000 DF *UND* 00000000 fclose 770 | 00000000 DF *UND* 00000000 sqlite3_memory_used 771 | 00000000 DF *UND* 00000000 sqlite3_status 772 | 0003e3ec g DF .text 00000198 _ZN7android23throw_sqlite3_exceptionEP7_JNIEnviPKcS3_ 773 | 0003e584 g DF .text 0000005c _ZN7android31throw_sqlite3_exception_errcodeEP7_JNIEnviPKc 774 | 00000000 DF *UND* 00000000 sqlite3_errcode 775 | 00000000 DF *UND* 00000000 sqlite3_errmsg 776 | 0003e620 g DF .text 0000000a _ZN7android23throw_sqlite3_exceptionEP7_JNIEnvP7sqlite3 777 | 00000000 DF *UND* 00000000 __aeabi_ul2d 778 | 00000000 DF *UND* 00000000 __aeabi_ddiv 779 | 00000000 DF *UND* 00000000 sqlite3_create_function 780 | 00000000 DF *UND* 00000000 sqlite3_user_data 781 | 00000000 DF *UND* 00000000 sqlite3_value_text 782 | 00000000 DF *UND* 00000000 sqlite3_release_memory 783 | 00000000 DF *UND* 00000000 sqlite3_db_status 784 | 00000000 DF *UND* 00000000 sqlite3_exec 785 | 00000000 DF *UND* 00000000 sqlite3_get_table 786 | 00000000 DF *UND* 00000000 register_localized_collators 787 | 00000000 DF *UND* 00000000 sqlite3_prepare_v2 788 | 00000000 DF *UND* 00000000 sqlite3_bind_text 789 | 00000000 DF *UND* 00000000 sqlite3_step 790 | 00000000 DF *UND* 00000000 sqlite3_free_table 791 | 00000000 DF *UND* 00000000 strncpy 792 | 00000000 DF *UND* 00000000 sqlite3_profile 793 | 00000000 DF *UND* 00000000 sqlite3_trace 794 | 00000000 DF *UND* 00000000 sqlite3_close 795 | 00000000 DF *UND* 00000000 sqlite3_config 796 | 00000000 DF *UND* 00000000 sqlite3_open_v2 797 | 00000000 DF *UND* 00000000 sqlite3_soft_heap_limit 798 | 00000000 DF *UND* 00000000 sqlite3_busy_timeout 799 | 00000000 DF *UND* 00000000 register_android_functions 800 | 00000000 DF *UND* 00000000 sqlite3_clear_bindings 801 | 00000000 DF *UND* 00000000 sqlite3_bind_blob 802 | 00000000 DF *UND* 00000000 sqlite3_bind_text16 803 | 00000000 DF *UND* 00000000 sqlite3_bind_double 804 | 00000000 DF *UND* 00000000 sqlite3_bind_int64 805 | 00000000 DF *UND* 00000000 sqlite3_bind_null 806 | 00000000 DF *UND* 00000000 sqlite3_column_name 807 | 00000000 DF *UND* 00000000 sqlite3_column_count 808 | 00000000 DF *UND* 00000000 sqlite3_bind_int 809 | 00000000 DF *UND* 00000000 usleep 810 | 00000000 DF *UND* 00000000 sqlite3_column_type 811 | 00000000 DF *UND* 00000000 sqlite3_column_text 812 | 00000000 DF *UND* 00000000 sqlite3_column_bytes 813 | 00000000 DF *UND* 00000000 _ZN7android12CursorWindow10getRowSlotEi 814 | 00000000 DF *UND* 00000000 sqlite3_column_int64 815 | 00000000 DF *UND* 00000000 sqlite3_column_double 816 | 00000000 DF *UND* 00000000 sqlite3_column_blob 817 | 00000000 DF *UND* 00000000 sqlite3_column_bytes16 818 | 00000000 DF *UND* 00000000 sqlite3_reset 819 | 00000000 DF *UND* 00000000 ashmem_create_region 820 | 00000000 DF *UND* 00000000 jniThrowIOException 821 | 00000000 DF *UND* 00000000 mmap 822 | 00000000 DF *UND* 00000000 munmap 823 | 00000000 DF *UND* 00000000 ashmem_set_prot_region 824 | 0004cea8 g DF .text 0000002c _ZN7android17newFileDescriptorEP7_JNIEnvi 825 | 0004ce90 g DF .text 00000018 _ZN7android23newParcelFileDescriptorEP7_JNIEnvP8_jobject 826 | 00000000 DF *UND* 00000000 sqlite3_changes 827 | 00000000 DF *UND* 00000000 sqlite3_last_insert_rowid 828 | 0003fccc g DF .text 00000014 _ZN7android18EmojiFactoryCaller24TryCallGetImplementationEPKc 829 | 0003fce0 g DF .text 00000012 _ZN7android18EmojiFactoryCaller33TryCallGetAvailableImplementationEv 830 | 00000000 DF *UND* 00000000 _ZN8SkBitmapC1Ev 831 | 00000000 DF *UND* 00000000 _ZN14SkImageDecoder12DecodeMemoryEPKvjP8SkBitmapNS2_6ConfigENS_4ModeEPNS_6FormatE 832 | 00000000 DF *UND* 00000000 pthread_once 833 | 00000000 DF *UND* 00000000 _ZN7android8String16C1ERKNS_7String8E 834 | 00000000 DF *UND* 00000000 _ZN7android8String16C1EPKtj 835 | 00040068 g DF .text 00000028 _ZN7android18EmojiFactoryCallerD1Ev 836 | 00000000 DF *UND* 00000000 dlclose 837 | 00076b28 g DO .data.rel.ro 00000010 _ZTVN7android18EmojiFactoryCallerE 838 | 00040090 g DF .text 00000012 _ZN7android18EmojiFactoryCallerD0Ev 839 | 00040068 g DF .text 00000028 _ZN7android18EmojiFactoryCallerD2Ev 840 | 000400a4 g DF .text 000000a0 _ZN7android18EmojiFactoryCaller4InitEv 841 | 00000000 DF *UND* 00000000 dlerror 842 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClient21getDisplayOrientationEi 843 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClient16getDisplayHeightEi 844 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClient15getDisplayWidthEi 845 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClient14getDisplayInfoEiPNS_11DisplayInfoE 846 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClient19getNumberOfDisplaysEv 847 | 000535a8 g DF .text 00000030 _Z7doThrowP7_JNIEnvPKcS2_ 848 | 0003283c w DF .text 00000014 _ZN7android2spINS_14SurfaceControlEED1Ev 849 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl20writeSurfaceToParcelERKNS_2spIS0_EEPNS_6ParcelE 850 | 0003283c w DF .text 00000014 _ZN7android2spINS_7SurfaceEED1Ev 851 | 000407a4 w DF .text 00000024 _ZN7android2spINS_14SurfaceControlEEaSERKS2_ 852 | 00000000 DF *UND* 00000000 _ZN7android7Surface14readFromParcelERKNS_6ParcelE 853 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl13setFreezeTintEj 854 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl9setMatrixEffff 855 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl8setAlphaEf 856 | 00000000 DF *UND* 00000000 _ZN7android6RegionC1ERKNS_4RectE 857 | 00000000 DF *UND* 00000000 _ZN8SkRegion8IteratorC1ERKS_ 858 | 00000000 DF *UND* 00000000 _ZN7android6Region16addRectUncheckedEiiii 859 | 00000000 DF *UND* 00000000 _ZN8SkRegion8Iterator4nextEv 860 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl24setTransparentRegionHintERKNS_6RegionE 861 | 00000000 DF *UND* 00000000 _ZN7android6RegionD1Ev 862 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl8setFlagsEjj 863 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl8unfreezeEv 864 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl6freezeEv 865 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl4showEi 866 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl4hideEv 867 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl7setSizeEjj 868 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl11setPositionEii 869 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl8setLayerEi 870 | 00000000 DF *UND* 00000000 _ZNK7android16ScreenshotClient9getPixelsEv 871 | 00000000 DF *UND* 00000000 _ZN10SkPixelRefC2EP7SkMutex 872 | 00000000 DF *UND* 00000000 _ZN7android16ScreenshotClientC1Ev 873 | 00000000 DF *UND* 00000000 _ZN10SkPixelRef12setImmutableEv 874 | 00000000 DF *UND* 00000000 _ZN7android16ScreenshotClient6updateEjj 875 | 00000000 DF *UND* 00000000 _ZN7android16ScreenshotClient6updateEjjjj 876 | 00000000 DF *UND* 00000000 _ZN7android16ScreenshotClient6updateEv 877 | 00000000 DF *UND* 00000000 _ZNK7android16ScreenshotClient8getWidthEv 878 | 00000000 DF *UND* 00000000 _ZNK7android16ScreenshotClient9getHeightEv 879 | 00000000 DF *UND* 00000000 _ZNK7android16ScreenshotClient9getStrideEv 880 | 00000000 DF *UND* 00000000 _ZNK7android16ScreenshotClient9getFormatEv 881 | 00000000 DF *UND* 00000000 _ZN7android13bytesPerPixelEi 882 | 00000000 DF *UND* 00000000 _ZN8SkBitmap9setConfigENS_6ConfigEiii 883 | 00000000 DF *UND* 00000000 _ZN8SkBitmap11setIsOpaqueEb 884 | 00000000 DF *UND* 00000000 _ZN8SkBitmap11setPixelRefEP10SkPixelRefj 885 | 00000000 DF *UND* 00000000 _ZN8SkBitmap9setPixelsEPvP12SkColorTable 886 | 00054614 g DF .text 00000018 _ZN11GraphicsJNI12createBitmapEP7_JNIEnvP8SkBitmapbP11_jbyteArrayi 887 | 00076b38 w DO .data.rel.ro 00000028 _ZTVN7android18ScreenshotPixelRefE 888 | 00000000 DF *UND* 00000000 _ZN8SkStringD1Ev 889 | 00000000 DO *UND* 00000000 _ZTV10SkPixelRef 890 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClient15unfreezeDisplayEij 891 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClient13freezeDisplayEij 892 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClient14setOrientationEiij 893 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClient22closeGlobalTransactionEv 894 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClient21openGlobalTransactionEv 895 | 00000000 DF *UND* 00000000 _ZNK7android14SurfaceControl10getSurfaceEv 896 | 00000000 DF *UND* 00000000 _ZN7android7Surface7isValidEv 897 | 00000000 DF *UND* 00000000 _ZN8SkCanvas14restoreToCountEi 898 | 00000000 DF *UND* 00000000 _ZN8SkBitmapD1Ev 899 | 00000000 DF *UND* 00000000 _ZN7android7Surface13unlockAndPostEv 900 | 00000000 DF *UND* 00000000 _ZN7android6RegionC1Ev 901 | 00000000 DF *UND* 00000000 _ZN7android6Region3setERKNS_4RectE 902 | 00000000 DF *UND* 00000000 _ZN7android7Surface4lockEPNS0_11SurfaceInfoEPNS_6RegionEb 903 | 00000000 DF *UND* 00000000 _ZN8SkRegionC1Ev 904 | 00000000 DF *UND* 00000000 _ZN8SkRegion7setRectEiiii 905 | 00000000 DF *UND* 00000000 _ZNK7android6Region8getArrayEPj 906 | 00000000 DF *UND* 00000000 _ZN8SkRegion2opERKS_RK7SkIRectNS_2OpE 907 | 00000000 DF *UND* 00000000 _ZN8SkRegionD1Ev 908 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl13isSameSurfaceERKNS_2spIS0_EES4_ 909 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceControl5clearEv 910 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClient13createSurfaceEiijjij 911 | 00000000 DF *UND* 00000000 _ZN7android7String8C1EPKtj 912 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClient13createSurfaceEiRKNS_7String8Eijjij 913 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClient7disposeEv 914 | 00000000 DF *UND* 00000000 _ZN7android21SurfaceComposerClientC1Ev 915 | 00000000 DF *UND* 00000000 _ZNK10SkPixelRef7flattenER24SkFlattenableWriteBuffer 916 | 00000000 DF *UND* 00000000 _ZN10SkPixelRef9globalRefEPv 917 | 00000000 DF *UND* 00000000 _ZN10SkPixelRef11globalUnrefEv 918 | 00076b60 w DO .data.rel.ro 00000010 _ZTV8SkRefCnt 919 | 00000000 DF *UND* 00000000 __aeabi_i2f 920 | 000535d8 g DF .text 00000014 _Z10doThrowNPEP7_JNIEnv 921 | 00053acc g DF .text 00000014 _ZN11GraphicsJNI15getNativeCanvasEP7_JNIEnvP8_jobject 922 | 00000000 DF *UND* 00000000 _ZNK8SkCanvas9getDeviceEv 923 | 00000000 DF *UND* 00000000 _ZN8SkDevice12accessBitmapEb 924 | 00000000 DF *UND* 00000000 _ZN7SkPaintC1Ev 925 | 00000000 DF *UND* 00000000 _ZN8SkMatrix5resetEv 926 | 00000000 DF *UND* 00000000 _ZN7SkPaint12setAntiAliasEb 927 | 00000000 DF *UND* 00000000 _ZN7SkPaint11setTextSizeEf 928 | 00000000 DF *UND* 00000000 _ZN7SkPaint8setColorEj 929 | 00000000 DF *UND* 00000000 _ZN7SkPaintD1Ev 930 | 00041770 g DF .text 00000006 _ZN7android18NativeInputChannel18setDisposeCallbackEPFvP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEEPvESA_ 931 | 00041778 g DF .text 0000001c _ZN7android18NativeInputChannel30invokeAndRemoveDisposeCallbackEP7_JNIEnvP8_jobject 932 | 000417c8 g DF .text 0000001a _ZN7android18NativeInputChannelC1ERKNS_2spINS_12InputChannelEEE 933 | 000417e4 g DF .text 0000001a _ZN7android18NativeInputChannelC2ERKNS_2spINS_12InputChannelEEE 934 | 00041874 g DF .text 0000000c _ZN7android18NativeInputChannelD1Ev 935 | 00041874 g DF .text 0000000c _ZN7android18NativeInputChannelD2Ev 936 | 0004c884 g DF .text 00000038 _ZN7android19parcelForJavaObjectEP7_JNIEnvP8_jobject 937 | 00000000 DF *UND* 00000000 _ZN7android6Parcel10writeInt32Ei 938 | 00000000 DF *UND* 00000000 _ZN7android6Parcel12writeString8ERKNS_7String8E 939 | 00000000 DF *UND* 00000000 _ZN7android6Parcel22writeDupFileDescriptorEi 940 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel11readString8Ev 941 | 00000000 DF *UND* 00000000 _ZN7android12InputChannelC1ERKNS_7String8Eiii 942 | 00041a68 g DF .text 00000030 _ZN7android44android_view_InputChannel_setDisposeCallbackEP7_JNIEnvP8_jobjectPFvS1_S3_RKNS_2spINS_12InputChannelEEEPvES9_ 943 | 00000000 DF *UND* 00000000 _ZN7android12InputChannel20openInputChannelPairERKNS_7String8ERNS_2spIS0_EES6_ 944 | 00041cb8 g DF .text 0000000a _ZN7android16NativeInputQueue21generateFinishedTokenEitt 945 | 00041cc4 g DF .text 0000000c _ZN7android16NativeInputQueue18parseFinishedTokenExPiPtS2_ 946 | 00041cd0 w DF .text 00000010 _ZNK7android12SortedVectorINS_16key_value_pair_tIiNS_2spINS_16NativeInputQueue10ConnectionEEEEEE12do_constructEPvj 947 | 00041ce0 w DF .text 00000018 _ZNK7android12SortedVectorINS_16key_value_pair_tIiNS_2spINS_16NativeInputQueue10ConnectionEEEEEE10do_compareEPKvS9_ 948 | 00076b70 w DO .data.rel.ro 00000018 _ZTVN7android29PreallocatedInputEventFactoryE 949 | 00041db8 w DF .text 00000010 _ZNK7android12SortedVectorINS_16key_value_pair_tIiNS_2spINS_16NativeInputQueue10ConnectionEEEEEE16do_move_backwardEPvPKvj 950 | 00041dc8 w DF .text 00000010 _ZNK7android12SortedVectorINS_16key_value_pair_tIiNS_2spINS_16NativeInputQueue10ConnectionEEEEEE15do_move_forwardEPvPKvj 951 | 00041dd8 g DF .text 0000004c _ZN7android16NativeInputQueue10ConnectionD1Ev 952 | 00000000 DF *UND* 00000000 _ZN7android7RefBaseD2Ev 953 | 00076bf8 g DO .data.rel.ro 00000020 _ZTVN7android16NativeInputQueue10ConnectionE 954 | 00041e24 g DF .text 00000012 _ZN7android16NativeInputQueue10ConnectionD0Ev 955 | 00041dd8 g DF .text 0000004c _ZN7android16NativeInputQueue10ConnectionD2Ev 956 | 00041e38 w DF .text 00000014 _ZN7android2spINS_16NativeInputQueue10ConnectionEED1Ev 957 | 00041e4c w DF .text 00000018 _ZNK7android12SortedVectorINS_16key_value_pair_tIiNS_2spINS_16NativeInputQueue10ConnectionEEEEEE10do_destroyEPvj 958 | 00041e64 w DF .text 00000026 _ZNK7android12SortedVectorINS_16key_value_pair_tIiNS_2spINS_16NativeInputQueue10ConnectionEEEEEE8do_splatEPvPKvj 959 | 00041e8c w DF .text 00000028 _ZNK7android12SortedVectorINS_16key_value_pair_tIiNS_2spINS_16NativeInputQueue10ConnectionEEEEEE7do_copyEPvPKvj 960 | 00041f30 g DF .text 00000078 _ZN7android16NativeInputQueue10ConnectionC1EtRKNS_2spINS_12InputChannelEEERKNS2_INS_6LooperEEE 961 | 00000000 DF *UND* 00000000 _ZN7android7RefBaseC2Ev 962 | 00041fa8 g DF .text 00000078 _ZN7android16NativeInputQueue10ConnectionC2EtRKNS_2spINS_12InputChannelEEERKNS2_INS_6LooperEEE 963 | 00000000 DF *UND* 00000000 _ZNK7android16SortedVectorImpl7indexOfEPKv 964 | 00042040 g DF .text 00000050 _ZN7android16NativeInputQueue18getConnectionIndexERKNS_2spINS_12InputChannelEEE 965 | 000420b0 g DF .text 00000138 _ZN7android16NativeInputQueue8finishedEP7_JNIEnvxbb 966 | 00042224 g DF .text 000002a0 _ZN7android16NativeInputQueue21handleReceiveCallbackEiiPv 967 | 00043784 g DF .text 00000238 _ZN7android35android_view_MotionEvent_fromNativeEP7_JNIEnvPKNS_11MotionEventE 968 | 000424c4 g DF .text 00000120 _ZN7android16NativeInputQueue22unregisterInputChannelEP7_JNIEnvP8_jobject 969 | 0004260c g DF .text 00000044 _ZN7android16NativeInputQueue26handleInputChannelDisposedEP7_JNIEnvP8_jobjectRKNS_2spINS_12InputChannelEEEPv 970 | 00042650 g DF .text 00000194 _ZN7android16NativeInputQueue20registerInputChannelEP7_JNIEnvP8_jobjectS4_S4_ 971 | 00000000 DF *UND* 00000000 _ZN7android16SortedVectorImpl3addEPKv 972 | 00000000 DF *UND* 00000000 _ZN7android16SortedVectorImplD2Ev 973 | 00076b88 w DO .data.rel.ro 0000006c _ZTVN7android12SortedVectorINS_16key_value_pair_tIiNS_2spINS_16NativeInputQueue10ConnectionEEEEEEE 974 | 00042850 g DF .text 00000014 _ZN7android16NativeInputQueueD1Ev 975 | 00042850 g DF .text 00000014 _ZN7android16NativeInputQueueD2Ev 976 | 00042864 g DF .text 00000034 _ZN7android16NativeInputQueueC1Ev 977 | 00000000 DF *UND* 00000000 _ZN7android16SortedVectorImplC2Ejj 978 | 00000000 DF *UND* 00000000 __aeabi_atexit 979 | 0007e0a0 g D .bss 00000000 __dso_handle 980 | 00042864 g DF .text 00000034 _ZN7android16NativeInputQueueC2Ev 981 | 00000000 DF *UND* 00000000 _ZN7android16SortedVectorImpl25reservedSortedVectorImpl1Ev 982 | 00000000 DF *UND* 00000000 _ZN7android16SortedVectorImpl25reservedSortedVectorImpl2Ev 983 | 00000000 DF *UND* 00000000 _ZN7android16SortedVectorImpl25reservedSortedVectorImpl3Ev 984 | 00000000 DF *UND* 00000000 _ZN7android16SortedVectorImpl25reservedSortedVectorImpl4Ev 985 | 00000000 DF *UND* 00000000 _ZN7android16SortedVectorImpl25reservedSortedVectorImpl5Ev 986 | 00000000 DF *UND* 00000000 _ZN7android16SortedVectorImpl25reservedSortedVectorImpl6Ev 987 | 00000000 DF *UND* 00000000 _ZN7android16SortedVectorImpl25reservedSortedVectorImpl7Ev 988 | 00000000 DF *UND* 00000000 _ZN7android16SortedVectorImpl25reservedSortedVectorImpl8Ev 989 | 00000000 DF *UND* 00000000 _ZN7android7RefBase10onFirstRefEv 990 | 00000000 DF *UND* 00000000 _ZN7android7RefBase15onLastStrongRefEPKv 991 | 00000000 DF *UND* 00000000 _ZN7android7RefBase20onIncStrongAttemptedEjPKv 992 | 00000000 DF *UND* 00000000 _ZN7android7RefBase13onLastWeakRefEPKv 993 | 00000000 DF *UND* 00000000 _ZN7android8KeyEvent16hasDefaultActionEi 994 | 00000000 DF *UND* 00000000 _ZN7android8KeyEvent11isSystemKeyEi 995 | 00042a50 g DF .text 00000058 _ZN7android29android_view_KeyEvent_recycleEP7_JNIEnvP8_jobject 996 | 00000000 DF *UND* 00000000 _ZN7android8KeyEvent10initializeEiiiiiiiixx 997 | 00042c48 w DF .text 00000024 _ZNK7android6VectorINS_8KeyEventEE12do_constructEPvj 998 | 00042c6c w DF .text 0000001a _ZNK7android6VectorINS_8KeyEventEE10do_destroyEPvj 999 | 00042c88 w DF .text 00000060 _ZNK7android6VectorINS_8KeyEventEE7do_copyEPvPKvj 1000 | 00042ce8 w DF .text 00000060 _ZNK7android6VectorINS_8KeyEventEE8do_splatEPvPKvj 1001 | 00042d48 w DF .text 00000080 _ZNK7android6VectorINS_8KeyEventEE15do_move_forwardEPvPKvj 1002 | 00042dc8 w DF .text 0000007c _ZNK7android6VectorINS_8KeyEventEE16do_move_backwardEPvPKvj 1003 | 00076c18 w DO .data.rel.ro 00000048 _ZTVN7android6VectorINS_8KeyEventEEE 1004 | 00000000 DF *UND* 00000000 _ZNK7android15KeyCharacterMap9getEventsEiPKtjRNS_6VectorINS_8KeyEventEEE 1005 | 00000000 DF *UND* 00000000 _ZNK7android15KeyCharacterMap15getKeyboardTypeEv 1006 | 00000000 DF *UND* 00000000 _ZNK7android15KeyCharacterMap15getDisplayLabelEi 1007 | 00000000 DF *UND* 00000000 _ZNK7android15KeyCharacterMap8getMatchEiPKtji 1008 | 00000000 DF *UND* 00000000 _ZNK7android15KeyCharacterMap9getNumberEi 1009 | 00000000 DF *UND* 00000000 _ZNK7android15KeyCharacterMap17getFallbackActionEiiPNS0_14FallbackActionE 1010 | 00000000 DF *UND* 00000000 _ZNK7android15KeyCharacterMap12getCharacterEii 1011 | 00000000 DF *UND* 00000000 _ZN7android15KeyCharacterMapD1Ev 1012 | 00000000 DF *UND* 00000000 _ZN7android15KeyCharacterMap14loadByDeviceIdEiPPS0_ 1013 | 00000000 DF *UND* 00000000 _ZN7android7String812appendFormatEPKcz 1014 | 00000000 DF *UND* 00000000 _ZNK8SkMatrix15computeTypeMaskEv 1015 | 00000000 DO *UND* 00000000 _ZN8SkMatrix11gMapXYProcsE 1016 | 00000000 DF *UND* 00000000 __aeabi_f2d 1017 | 00000000 DF *UND* 00000000 __aeabi_dcmplt 1018 | 00000000 DF *UND* 00000000 __aeabi_dadd 1019 | 00000000 DF *UND* 00000000 __aeabi_d2f 1020 | 00000000 DF *UND* 00000000 __aeabi_dcmpgt 1021 | 00000000 DF *UND* 00000000 __aeabi_dsub 1022 | 00000000 DF *UND* 00000000 sinf 1023 | 00000000 DF *UND* 00000000 cosf 1024 | 00000000 DF *UND* 00000000 _ZNK8SkMatrix10mapVectorsEP7SkPointPKS0_i 1025 | 00000000 DF *UND* 00000000 atan2f 1026 | 000434a8 g DF .text 00000058 _ZN7android32android_view_MotionEvent_recycleEP7_JNIEnvP8_jobject 1027 | 00043510 g DF .text 00000274 _ZN7android33android_view_MotionEvent_toNativeEP7_JNIEnvP8_jobjectPNS_11MotionEventE 1028 | 00000000 DF *UND* 00000000 _ZN7android11MotionEvent10initializeEiiiiiiffffxxjPKiPKNS_13PointerCoordsE 1029 | 00000000 DF *UND* 00000000 _ZN7android11MotionEvent9addSampleExPKNS_13PointerCoordsE 1030 | 000549b0 g DF .text 00000018 _ZN7android35android_graphics_Matrix_getSkMatrixEP7_JNIEnvP8_jobject 1031 | 00000000 DF *UND* 00000000 u_charMirror_44 1032 | 00000000 DF *UND* 00000000 u_getIntPropertyValue_44 1033 | 00000000 DF *UND* 00000000 u_charDirection_44 1034 | 00000000 DF *UND* 00000000 ubidi_openSized_44 1035 | 00000000 DF *UND* 00000000 ubidi_setPara_44 1036 | 00000000 DF *UND* 00000000 ubidi_getLevelAt_44 1037 | 00000000 DF *UND* 00000000 ubidi_getParaLevel_44 1038 | 00000000 DF *UND* 00000000 ubidi_close_44 1039 | 00000000 DF *UND* 00000000 atoi 1040 | 00000000 DF *UND* 00000000 __aeabi_uidiv 1041 | 00000000 DF *UND* 00000000 jniThrowNullPointerException 1042 | 00000000 DF *UND* 00000000 jniGetFDFromFileDescriptor 1043 | 00000000 DF *UND* 00000000 fdopen 1044 | 00000000 DF *UND* 00000000 get_malloc_leak_info 1045 | 00000000 DF *UND* 00000000 fputs 1046 | 00000000 DF *UND* 00000000 fprintf 1047 | 00000000 DF *UND* 00000000 fputc 1048 | 00000000 DF *UND* 00000000 qsort 1049 | 00000000 DF *UND* 00000000 free_malloc_leak_info 1050 | 00000000 DF *UND* 00000000 fread 1051 | 00000000 DF *UND* 00000000 fwrite 1052 | 00000000 DF *UND* 00000000 mallinfo 1053 | 0004c2d4 g DF .text 0000000c _ZN7android36android_os_Debug_getLocalObjectCountEP7_JNIEnvP8_jobject 1054 | 0004c2e0 g DF .text 0000000c _ZN7android36android_os_Debug_getProxyObjectCountEP7_JNIEnvP8_jobject 1055 | 0004c2ec g DF .text 0000000c _ZN7android36android_os_Debug_getDeathObjectCountEP7_JNIEnvP8_jobject 1056 | 000449fc g DF .text 0000016c _ZN7android34android_os_FileUtils_getFileStatusEP7_JNIEnvP8_jobjectP8_jstringS3_ 1057 | 00044b68 g DF .text 0000006c _ZN7android35android_os_FileUtils_getFatVolumeIdEP7_JNIEnvP8_jobjectP8_jstring 1058 | 00000000 DF *UND* 00000000 open 1059 | 00000000 DF *UND* 00000000 ioctl 1060 | 00044bd4 g DF .text 0000000c _ZN7android29android_os_FileUtils_setUMaskEP7_JNIEnvP8_jobjecti 1061 | 00000000 DF *UND* 00000000 umask 1062 | 00044be0 g DF .text 000000e0 _ZN7android35android_os_FileUtils_getPermissionsEP7_JNIEnvP8_jobjectP8_jstringP10_jintArray 1063 | 00000000 DF *UND* 00000000 _ZN7android7String85setToERKS0_ 1064 | 00044cc0 g DF .text 000000ae _ZN7android35android_os_FileUtils_setPermissionsEP7_JNIEnvP8_jobjectP8_jstringiii 1065 | 00000000 DF *UND* 00000000 chown 1066 | 00000000 DF *UND* 00000000 chmod 1067 | 00000000 DF *UND* 00000000 ashmem_get_size_region 1068 | 00000000 DF *UND* 00000000 ashmem_pin_region 1069 | 00000000 DF *UND* 00000000 ashmem_unpin_region 1070 | 00000000 DF *UND* 00000000 jniSetFileDescriptorOfFD 1071 | 00000000 DF *UND* 00000000 jniCreateFileDescriptor 1072 | 00045098 g DF .text 0000000a _ZN7android18NativeMessageQueue4wakeEv 1073 | 00000000 DF *UND* 00000000 _ZN7android6Looper4wakeEv 1074 | 000450b0 g DF .text 00000014 _ZN7android18NativeMessageQueue8pollOnceEi 1075 | 00000000 DF *UND* 00000000 _ZN7android6Looper8pollOnceEiPiS1_PPv 1076 | 0003283c g DF .text 00000014 _ZN7android18NativeMessageQueueD1Ev 1077 | 0003283c g DF .text 00000014 _ZN7android18NativeMessageQueueD2Ev 1078 | 000407a4 w DF .text 00000024 _ZN7android2spINS_6LooperEEaSERKS2_ 1079 | 00045114 w DF .text 00000022 _ZN7android2spINS_6LooperEEaSEPS1_ 1080 | 00045138 g DF .text 0000004e _ZN7android18NativeMessageQueueC1Ev 1081 | 00000000 DF *UND* 00000000 _ZN7android6Looper12getForThreadEv 1082 | 00000000 DF *UND* 00000000 _ZN7android6LooperC1Eb 1083 | 00000000 DF *UND* 00000000 _ZN7android6Looper12setForThreadERKNS_2spIS0_EE 1084 | 00045138 g DF .text 0000004e _ZN7android18NativeMessageQueueC2Ev 1085 | 00000000 DF *UND* 00000000 lseek 1086 | 00000000 DF *UND* 00000000 fstat 1087 | 00000000 DF *UND* 00000000 sync 1088 | 00000000 DF *UND* 00000000 reboot 1089 | 00000000 DF *UND* 00000000 __reboot 1090 | 00000000 DF *UND* 00000000 set_screen_state 1091 | 00000000 DF *UND* 00000000 set_last_user_activity_timeout 1092 | 00000000 DF *UND* 00000000 acquire_wake_lock 1093 | 00000000 DF *UND* 00000000 release_wake_lock 1094 | 00000000 DF *UND* 00000000 statfs 1095 | 00000000 DF *UND* 00000000 clock_gettime 1096 | 00000000 DF *UND* 00000000 _ZN7android15elapsedRealtimeEv 1097 | 00000000 DF *UND* 00000000 _ZN7android12uptimeMillisEv 1098 | 00000000 DF *UND* 00000000 _ZN7android20setCurrentTimeMillisEx 1099 | 00000000 DF *UND* 00000000 property_set 1100 | 00000000 DF *UND* 00000000 uevent_next_event 1101 | 00000000 DF *UND* 00000000 uevent_init 1102 | 00000000 DF *UND* 00000000 getsockopt 1103 | 00000000 DF *UND* 00000000 sendmsg 1104 | 00000000 DF *UND* 00000000 recvmsg 1105 | 00000000 DF *UND* 00000000 shutdown 1106 | 00000000 DF *UND* 00000000 accept 1107 | 00000000 DF *UND* 00000000 listen 1108 | 00000000 DF *UND* 00000000 socket_local_server_bind 1109 | 00000000 DF *UND* 00000000 socket_local_client_connect 1110 | 00000000 DF *UND* 00000000 socket 1111 | 00000000 DF *UND* 00000000 setsockopt 1112 | 00000000 DF *UND* 00000000 dhcp_get_errmsg 1113 | 00000000 DF *UND* 00000000 ifc_enable 1114 | 00000000 DF *UND* 00000000 ifc_disable 1115 | 00000000 DF *UND* 00000000 ifc_add_route 1116 | 00000000 DF *UND* 00000000 ifc_remove_host_routes 1117 | 00000000 DF *UND* 00000000 ifc_get_default_route 1118 | 00000000 DF *UND* 00000000 ifc_remove_default_route 1119 | 00000000 DF *UND* 00000000 ifc_reset_connections 1120 | 00000000 DF *UND* 00000000 dhcp_do_request 1121 | 00000000 DF *UND* 00000000 dhcp_stop 1122 | 00000000 DF *UND* 00000000 dhcp_release_lease 1123 | 00000000 DF *UND* 00000000 ifc_configure 1124 | 00000000 DF *UND* 00000000 atoll 1125 | 00000000 DF *UND* 00000000 opendir 1126 | 00000000 DF *UND* 00000000 readdir 1127 | 00000000 DF *UND* 00000000 strlcpy 1128 | 00000000 DF *UND* 00000000 strlcat 1129 | 00000000 DF *UND* 00000000 closedir 1130 | 00000000 DF *UND* 00000000 get_dhcp_error_string 1131 | 00000000 DF *UND* 00000000 do_dhcp_request 1132 | 00000000 DF *UND* 00000000 wifi_command 1133 | 00000000 DF *UND* 00000000 strrchr 1134 | 00000000 DF *UND* 00000000 wifi_wait_for_event 1135 | 00000000 DF *UND* 00000000 wifi_close_supplicant_connection 1136 | 00000000 DF *UND* 00000000 wifi_connect_to_supplicant 1137 | 00000000 DF *UND* 00000000 wifi_stop_supplicant 1138 | 00000000 DF *UND* 00000000 wifi_start_supplicant 1139 | 00000000 DF *UND* 00000000 wifi_unload_driver 1140 | 00000000 DF *UND* 00000000 is_wifi_driver_loaded 1141 | 00000000 DF *UND* 00000000 wifi_load_driver 1142 | 00047ec0 g DF .text 00000014 _ZN7android18nio_releasePointerEP7_JNIEnvP7_jarrayPvh 1143 | 00047ed4 g DF .text 00000018 _ZN7android17AutoBufferPointerD2Ev 1144 | 00047ed4 g DF .text 00000018 _ZN7android17AutoBufferPointerD1Ev 1145 | 00047f74 g DF .text 00000054 _ZN7android14nio_getPointerEP7_JNIEnvP8_jobjectPP7_jarray 1146 | 00047fc8 g DF .text 0000001c _ZN7android17AutoBufferPointerC1EP7_JNIEnvP8_jobjecth 1147 | 00047fe4 g DF .text 0000001c _ZN7android17AutoBufferPointerC2EP7_JNIEnvP8_jobjecth 1148 | 00000000 DF *UND* 00000000 phFriNfc_NdefRecord_GetRecords 1149 | 00000000 DF *UND* 00000000 phFriNfc_NdefRecord_Parse 1150 | 00000000 DF *UND* 00000000 phFriNfc_NdefRecord_Generate 1151 | 00000000 DF *UND* 00000000 _ZN7android15EventRecurrenceC1Ev 1152 | 00000000 DF *UND* 00000000 _ZN7android15EventRecurrence5parseERKNS_8String16E 1153 | 00000000 DF *UND* 00000000 _ZN7android7String86appendERKS0_ 1154 | 00000000 DF *UND* 00000000 _ZN7android7String86appendEPKc 1155 | 00000000 DF *UND* 00000000 _ZN7android15EventRecurrenceD1Ev 1156 | 00000000 DF *UND* 00000000 MD5_Final 1157 | 00000000 DF *UND* 00000000 MD5_Init 1158 | 00000000 DF *UND* 00000000 MD5_Update 1159 | 0007e78c g DO .bss 00000004 _ZN7android13g_stringClassE 1160 | 00000000 DF *UND* 00000000 _ZN7android5Asset19getAssetAllocationsEv 1161 | 0004a7f8 w DF .text 00000018 _ZNK7android6VectorINS_7String8EE10do_destroyEPvj 1162 | 00000000 DF *UND* 00000000 _ZN7android5Asset14getGlobalCountEv 1163 | 00000000 DF *UND* 00000000 _ZN7android12AssetManagerC1ENS0_9CacheModeE 1164 | 00000000 DF *UND* 00000000 _ZN7android12AssetManager16addDefaultAssetsEv 1165 | 00000000 DF *UND* 00000000 _ZNK7android12AssetManager12getResourcesEb 1166 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable7lockBagEjPPKNS0_9bag_entryE 1167 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable16resolveReferenceEPNS_9Res_valueElPjS3_PNS_15ResTable_configE 1168 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable9unlockBagEPKNS0_9bag_entryE 1169 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable19getTableStringBlockEj 1170 | 00000000 DF *UND* 00000000 _ZNK7android13ResStringPool9string8AtEjPj 1171 | 00000000 DF *UND* 00000000 _ZNK7android13ResStringPool8stringAtEjPj 1172 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable14getTableCookieEj 1173 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable4lockEv 1174 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable12getBagLockedEjPPKNS0_9bag_entryEPj 1175 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable6unlockEv 1176 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable5Theme12getAttributeEjPNS_9Res_valueEPj 1177 | 00000000 DF *UND* 00000000 _ZN7android8ResTable5Theme5setToERKS1_ 1178 | 00000000 DF *UND* 00000000 _ZN7android8ResTable5Theme10applyStyleEjb 1179 | 00000000 DF *UND* 00000000 _ZN7android8ResTable5ThemeD1Ev 1180 | 00000000 DF *UND* 00000000 _ZN7android8ResTable5ThemeC1ERKS0_ 1181 | 00000000 DF *UND* 00000000 _ZNK7android12AssetManager12getAssetPathEPv 1182 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable13getTableCountEv 1183 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable11getResourceEjPNS_9Res_valueEbtPjPNS_15ResTable_configE 1184 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable15getResourceNameEjPNS0_13resource_nameE 1185 | 00000000 DF *UND* 00000000 _ZN7android8String16C1Ev 1186 | 00000000 DF *UND* 00000000 _ZN7android8String165setToEPKtj 1187 | 00000000 DF *UND* 00000000 _ZN7android8String166appendEPKtj 1188 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable17identifierForNameEPKtjS2_jS2_jPj 1189 | 0004b300 w DF .text 0000002c _ZNK7android6VectorINS_7String8EE16do_move_backwardEPvPKvj 1190 | 0004b32c w DF .text 00000030 _ZNK7android6VectorINS_7String8EE15do_move_forwardEPvPKvj 1191 | 0004b35c w DF .text 0000001c _ZNK7android6VectorINS_7String8EE8do_splatEPvPKvj 1192 | 0004b378 w DF .text 0000001e _ZNK7android6VectorINS_7String8EE7do_copyEPvPKvj 1193 | 0004b398 w DF .text 00000018 _ZNK7android6VectorINS_7String8EE12do_constructEPvj 1194 | 00076ca0 w DO .data.rel.ro 00000048 _ZTVN7android6VectorINS_7String8EEE 1195 | 00000000 DF *UND* 00000000 _ZNK7android12AssetManager10getLocalesEPNS_6VectorINS_7String8EEE 1196 | 00000000 DF *UND* 00000000 _ZN7android12AssetManager10isUpToDateEv 1197 | 00000000 DF *UND* 00000000 _ZN7android12AssetManager4openEPKcNS_5Asset10AccessModeE 1198 | 00000000 DF *UND* 00000000 _ZN7android12AssetManager7openDirEPKc 1199 | 00000000 DF *UND* 00000000 _ZN7android12AssetManager12addAssetPathERKNS_7String8EPPv 1200 | 00000000 DF *UND* 00000000 _ZN7android12AssetManager9setLocaleEPKc 1201 | 00000000 DF *UND* 00000000 _ZN7android12AssetManager16setConfigurationERKNS_15ResTable_configEPKc 1202 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable5Theme9dumpToLogEv 1203 | 00000000 DF *UND* 00000000 _ZN7android12AssetManager12openNonAssetEPvPKcNS_5Asset10AccessModeE 1204 | 00000000 DF *UND* 00000000 _ZN7android12AssetManager12openNonAssetEPKcNS_5Asset10AccessModeE 1205 | 00000000 DF *UND* 00000000 _ZN7android10ResXMLTreeC1Ev 1206 | 00000000 DF *UND* 00000000 _ZN7android10ResXMLTree5setToEPKvjb 1207 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser12indexOfStyleEv 1208 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser17getAttributeValueEjPNS_9Res_valueE 1209 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser17getAttributeCountEv 1210 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser21getAttributeNameResIDEj 1211 | 00000000 DF *UND* 00000000 _ZNK7android8ResTable5Theme25resolveAttributeReferenceEPNS_9Res_valueElPjS4_PNS_15ResTable_configE 1212 | 0004c340 g DF .text 00000014 _ZN7android25getParcelFileDescriptorFDEP7_JNIEnvP8_jobject 1213 | 0004c6fc w DF .text 0000001c _ZN7android2spINS_7IBinderEED1Ev 1214 | 0004c718 w DF .text 0000001c _ZN7android2spINS_7IBinderEEC1EPS1_ 1215 | 00076db8 w DO .data.rel.ro 0000004c _ZTVN7android7IBinder14DeathRecipientE 1216 | 00000000 DF *UND* 00000000 _ZN7android7RefBase12weakref_type7decWeakEPKv 1217 | 00076ce8 w DO .data.rel.ro 00000020 _ZTV17JavaBBinderHolder 1218 | 00000000 DF *UND* 00000000 _ZN7android14IPCThreadState4selfEv 1219 | 00000000 DF *UND* 00000000 _ZN7android14IPCThreadState13flushCommandsEv 1220 | 00000000 DF *UND* 00000000 _ZN7android14IPCThreadState19setStrictModePolicyEi 1221 | 00000000 DF *UND* 00000000 _ZN7android14IPCThreadState22restoreCallingIdentityEx 1222 | 00000000 DF *UND* 00000000 _ZN7android14IPCThreadState20clearCallingIdentityEv 1223 | 00000000 DF *UND* 00000000 _ZN7android14IPCThreadState13getCallingUidEv 1224 | 00000000 DF *UND* 00000000 _ZN7android14IPCThreadState13getCallingPidEv 1225 | 00000000 DF *UND* 00000000 android_atomic_and 1226 | 00000000 DF *UND* 00000000 _ZN7android14IPCThreadState27disableBackgroundSchedulingEb 1227 | 00000000 DF *UND* 00000000 _ZN7android12ProcessState4selfEv 1228 | 00000000 DF *UND* 00000000 _ZN7android12ProcessState16getContextObjectERKNS_2spINS_7IBinderEEE 1229 | 00000000 DF *UND* 00000000 _ZN7android14IPCThreadState14joinThreadPoolEb 1230 | 0004c9cc g DF .text 00000154 _ZN7android23signalExceptionForErrorEP7_JNIEnvP8_jobjecti 1231 | 00000000 DF *UND* 00000000 _ZN7android7RefBase12weakref_type16attemptIncStrongEPKv 1232 | 00076d18 w DO .data.rel.ro 0000004c _ZTV18JavaDeathRecipient 1233 | 00076d08 w DO .data.rel.ro 00000010 _ZTT18JavaDeathRecipient 1234 | 00000000 DF *UND* 00000000 sleep 1235 | 00000000 DF *UND* 00000000 androidGetTid 1236 | 00000000 DF *UND* 00000000 lrand48 1237 | 00000000 DF *UND* 00000000 __android_log_bwrite 1238 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel16enforceInterfaceERKNS_8String16EPNS_14IPCThreadStateE 1239 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel18hasFileDescriptorsEv 1240 | 00000000 DF *UND* 00000000 _ZN7android6Parcel10appendFromEPS0_jj 1241 | 00000000 DF *UND* 00000000 _ZN7android6Parcel11setDataSizeEj 1242 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel15setDataPositionEj 1243 | 00000000 DF *UND* 00000000 _ZN7android6Parcel12writeInplaceEj 1244 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel8dataSizeEv 1245 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel12objectsCountEv 1246 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel4dataEv 1247 | 00000000 DF *UND* 00000000 _ZN7android6Parcel8freeDataEv 1248 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel16readStrongBinderEv 1249 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel19readString16InplaceEPj 1250 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel10readDoubleEv 1251 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel9readFloatEv 1252 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel9readInt64Ev 1253 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel9dataAvailEv 1254 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel11readInplaceEj 1255 | 00000000 DF *UND* 00000000 _ZN7android6Parcel13writeString16EPKtj 1256 | 00000000 DF *UND* 00000000 _ZN7android6Parcel11writeDoubleEd 1257 | 00000000 DF *UND* 00000000 _ZN7android6Parcel10writeFloatEf 1258 | 00000000 DF *UND* 00000000 _ZN7android6Parcel10writeInt64Ex 1259 | 00000000 DF *UND* 00000000 _ZN7android6Parcel15setDataCapacityEj 1260 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel12dataCapacityEv 1261 | 00000000 DF *UND* 00000000 _ZNK7android6Parcel12dataPositionEv 1262 | 00000000 DF *UND* 00000000 _ZN7android7BBinderC2Ev 1263 | 00000000 DF *UND* 00000000 _ZNK7android7RefBase10createWeakEPKv 1264 | 00076e10 w DO .data.rel.ro 00000018 _ZTT11JavaBBinder 1265 | 00076e28 w DO .data.rel.ro 00000084 _ZTV11JavaBBinder 1266 | 00000000 DF *UND* 00000000 _ZN7android6Parcel17writeStrongBinderERKNS_2spINS_7IBinderEEE 1267 | 00000000 DF *UND* 00000000 _ZN7android14IPCThreadState29setLastTransactionBinderFlagsEi 1268 | 00000000 DF *UND* 00000000 _ZN7android7BBinderD2Ev 1269 | 0004e02c w DF .text 00000010 _ZTv0_n12_N11JavaBBinderD0Ev 1270 | 0004e008 w DF .text 00000010 _ZTv0_n12_N11JavaBBinderD1Ev 1271 | 0004ccdc w DF .text 00000010 _ZTv0_n12_N18JavaDeathRecipientD0Ev 1272 | 0004ccb8 w DF .text 00000010 _ZTv0_n12_N18JavaDeathRecipientD1Ev 1273 | 0004c780 w DF .text 00000010 _ZTv0_n12_N7android7IBinder14DeathRecipientD0Ev 1274 | 0004c75c w DF .text 00000010 _ZTv0_n12_N7android7IBinder14DeathRecipientD1Ev 1275 | 00076d68 w DO .data.rel.ro 0000004c _ZTC18JavaDeathRecipient0_N7android7IBinder14DeathRecipientE 1276 | 00076e08 w DO .data.rel.ro 00000008 _ZTTN7android7IBinder14DeathRecipientE 1277 | 00076eb0 w DO .data.rel.ro 00000084 _ZTC11JavaBBinder0_N7android7BBinderE 1278 | 00076f38 w DO .data.rel.ro 00000080 _ZTC11JavaBBinder0_N7android7IBinderE 1279 | 00000000 DF *UND* 00000000 _ZN7android7IBinder19queryLocalInterfaceERKNS_8String16E 1280 | 00000000 DF *UND* 00000000 _ZNK7android7BBinder22getInterfaceDescriptorEv 1281 | 00000000 DF *UND* 00000000 _ZNK7android7BBinder13isBinderAliveEv 1282 | 00000000 DF *UND* 00000000 _ZN7android7BBinder10pingBinderEv 1283 | 00000000 DF *UND* 00000000 _ZN7android7BBinder8transactEjRKNS_6ParcelEPS1_j 1284 | 00000000 DF *UND* 00000000 _ZN7android7BBinder11linkToDeathERKNS_2spINS_7IBinder14DeathRecipientEEEPvj 1285 | 00000000 DF *UND* 00000000 _ZN7android7BBinder13unlinkToDeathERKNS_2wpINS_7IBinder14DeathRecipientEEEPvjPS4_ 1286 | 00000000 DF *UND* 00000000 _ZN7android7BBinder12attachObjectEPKvPvS3_PFvS2_S3_S3_E 1287 | 00000000 DF *UND* 00000000 _ZNK7android7BBinder10findObjectEPKv 1288 | 00000000 DF *UND* 00000000 _ZN7android7BBinder12detachObjectEPKv 1289 | 00000000 DF *UND* 00000000 _ZN7android7BBinder11localBinderEv 1290 | 00000000 DF *UND* 00000000 _ZN7android7IBinder12remoteBinderEv 1291 | 00000000 DF *UND* 00000000 _ZN7android7BBinder4dumpEiRKNS_6VectorINS_8String16EEE 1292 | 00000000 DF *UND* 00000000 _ZNK7android7IBinder13checkSubclassEPKv 1293 | 00000000 DF *UND* 00000000 _ZN7android7BBinderD1Ev 1294 | 00000000 DF *UND* 00000000 _ZN7android7BBinderD0Ev 1295 | 00000000 DF *UND* 00000000 _ZN7android7BBinder10onTransactEjRKNS_6ParcelEPS1_j 1296 | 00000000 DF *UND* 00000000 _ZTv0_n12_N7android7BBinderD1Ev 1297 | 00000000 DF *UND* 00000000 _ZTv0_n12_N7android7BBinderD0Ev 1298 | 00000000 DF *UND* 00000000 _ZN7android7IBinder11localBinderEv 1299 | 00000000 DF *UND* 00000000 _ZN7android7IBinderD1Ev 1300 | 00000000 DF *UND* 00000000 _ZN7android7IBinderD0Ev 1301 | 00000000 DF *UND* 00000000 _ZTv0_n12_N7android7IBinderD1Ev 1302 | 00000000 DF *UND* 00000000 _ZTv0_n12_N7android7IBinderD0Ev 1303 | 00000000 DF *UND* 00000000 select 1304 | 00000000 DF *UND* 00000000 __android_log_buf_write 1305 | 00000000 DF *UND* 00000000 ceilf 1306 | 00000000 DF *UND* 00000000 floorf 1307 | 0004ecc4 g DF .text 00000010 _Z34android_os_Process_sendSignalQuietP7_JNIEnvP8_jobjectii 1308 | 00000000 DF *UND* 00000000 kill 1309 | 0004ecd4 g DF .text 00000034 _Z29android_os_Process_sendSignalP7_JNIEnvP8_jobjectii 1310 | 0004ede8 g DF .text 0000003c _Z39android_os_Process_setApplicationObjectP7_JNIEnvP8_jobjectS2_ 1311 | 0004ee24 g DF .text 0000029c _Z37android_os_Process_parseProcLineArrayP7_JNIEnvP8_jobjectPciiP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray 1312 | 0004f0c0 g DF .text 000000d8 _Z31android_os_Process_readProcFileP7_JNIEnvP8_jobjectP8_jstringP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray 1313 | 0004f198 g DF .text 00000058 _Z32android_os_Process_parseProcLineP7_JNIEnvP8_jobjectP11_jbyteArrayiiP10_jintArrayP13_jobjectArrayP11_jlongArrayP12_jfloatArray 1314 | 0004f1f0 g DF .text 000001a8 _Z26android_os_Process_getPidsP7_JNIEnvP8_jobjectP8_jstringP10_jintArray 1315 | 00000000 DF *UND* 00000000 strtol 1316 | 0004f398 g DF .text 000002a0 _Z32android_os_Process_readProcLinesP7_JNIEnvP8_jobjectP8_jstringP13_jobjectArrayP11_jlongArray 1317 | 0004f638 g DF .text 0000002e _Z36android_os_Process_supportsProcessesP7_JNIEnvP8_jobject 1318 | 00000000 DF *UND* 00000000 _ZNK7android12ProcessState17supportsProcessesEv 1319 | 0004f668 g DF .text 00000018 _Z25android_os_Process_setGidP7_JNIEnvP8_jobjecti 1320 | 00000000 DF *UND* 00000000 setgid 1321 | 0004f680 g DF .text 00000018 _Z25android_os_Process_setUidP7_JNIEnvP8_jobjecti 1322 | 00000000 DF *UND* 00000000 setuid 1323 | 0004f698 g DF .text 000000ac _Z27android_os_Process_setArgV0P7_JNIEnvP8_jobjectP8_jstring 1324 | 00000000 DF *UND* 00000000 _ZN7android12ProcessState8setArgV0EPKc 1325 | 0004f744 g DF .text 000000a4 _Z28android_os_Process_setOomAdjP7_JNIEnvP8_jobjectii 1326 | 0004f7e8 g DF .text 00000036 _Z36android_os_Process_getThreadPriorityP7_JNIEnvP8_jobjecti 1327 | 00000000 DF *UND* 00000000 getpriority 1328 | 0004f820 g DF .text 00000036 _Z36android_os_Process_setThreadPriorityP7_JNIEnvP8_jobjectii 1329 | 00000000 DF *UND* 00000000 androidSetThreadPriority 1330 | 0004f858 g DF .text 000000e0 _Z34android_os_Process_setProcessGroupP7_JNIEnvP8_jobjectii 1331 | 00000000 DF *UND* 00000000 androidSetThreadSchedulingGroup 1332 | 0004f938 g DF .text 00000028 _Z33android_os_Process_setThreadGroupP7_JNIEnvP8_jobjectii 1333 | 0004f960 g DF .text 000000c0 _Z32android_os_Process_getGidForNameP7_JNIEnvP8_jobjectP8_jstring 1334 | 00000000 DF *UND* 00000000 getgrnam 1335 | 0004fa20 g DF .text 000000c0 _Z32android_os_Process_getUidForNameP7_JNIEnvP8_jobjectP8_jstring 1336 | 00000000 DF *UND* 00000000 getpwnam 1337 | 0004fae0 g DF .text 00000008 _Z24android_os_Process_myTidP7_JNIEnvP8_jobject 1338 | 0004fae8 g DF .text 0000001a _Z43android_os_Process_setCallingThreadPriorityP7_JNIEnvP8_jobjecti 1339 | 0004fb04 g DF .text 00000008 _Z24android_os_Process_myUidP7_JNIEnvP8_jobject 1340 | 00000000 DF *UND* 00000000 getuid 1341 | 0004fb0c g DF .text 00000008 _Z24android_os_Process_myPidP7_JNIEnvP8_jobject 1342 | 00000000 DF *UND* 00000000 _ZN7android13ResStringPoolC1EPKvjb 1343 | 00000000 DF *UND* 00000000 _ZNK7android13ResStringPool8getErrorEv 1344 | 00000000 DF *UND* 00000000 _ZNK7android13ResStringPool4sizeEv 1345 | 00000000 DF *UND* 00000000 _ZNK7android13ResStringPool7styleAtEj 1346 | 00000000 DF *UND* 00000000 _ZN7android13ResStringPoolD1Ev 1347 | 00000000 DF *UND* 00000000 _ZN7android10ResXMLTreeD1Ev 1348 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser12indexOfClassEv 1349 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser25getAttributeValueStringIDEj 1350 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser9indexOfIDEv 1351 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser16indexOfAttributeEPKtjS2_j 1352 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser16getAttributeDataEj 1353 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser20getAttributeDataTypeEj 1354 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser18getAttributeNameIDEj 1355 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser23getAttributeNamespaceIDEj 1356 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser13getLineNumberEv 1357 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser9getTextIDEv 1358 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser16getElementNameIDEv 1359 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser21getElementNamespaceIDEv 1360 | 00000000 DF *UND* 00000000 _ZN7android12ResXMLParser4nextEv 1361 | 00000000 DF *UND* 00000000 _ZN7android12ResXMLParserC1ERKNS_10ResXMLTreeE 1362 | 00000000 DF *UND* 00000000 _ZN7android12ResXMLParser7restartEv 1363 | 00000000 DF *UND* 00000000 _ZNK7android12ResXMLParser10getStringsEv 1364 | 00000000 DF *UND* 00000000 _ZN7android10ResXMLTreeC1EPKvjb 1365 | 00000000 DF *UND* 00000000 _ZNK7android10ResXMLTree8getErrorEv 1366 | 000501d8 g DF .text 00000044 _ZN17AutoDecoderCancel13RequestCancelEP8_jobject 1367 | 0005021c g DF .text 00000044 _ZN17AutoDecoderCancelD1Ev 1368 | 0005021c g DF .text 00000044 _ZN17AutoDecoderCancelD2Ev 1369 | 00050260 g DF .text 00000048 _ZN17AutoDecoderCancelC1EP8_jobjectP14SkImageDecoder 1370 | 00050260 g DF .text 00000048 _ZN17AutoDecoderCancelC2EP8_jobjectP14SkImageDecoder 1371 | 00000000 DO *UND* 00000000 gDitherMatrix_3Bit_16 1372 | 00000000 DF *UND* 00000000 _ZNK8SkBitmap7getAddrEii 1373 | 000504ac g DF .text 000000c0 _ZN11GraphicsJNI9SetPixelsEP7_JNIEnvP10_jintArrayiiiiiiRK8SkBitmap 1374 | 00000000 DF *UND* 00000000 memcmp 1375 | 00000000 DF *UND* 00000000 _Z18SkPreMultiplyColorj 1376 | 00000000 DO *UND* 00000000 gDitherMatrix_4Bit_16 1377 | 00000000 DF *UND* 00000000 _ZNK8SkBitmap8isOpaqueEv 1378 | 00000000 DF *UND* 00000000 _ZN15SkUnPreMultiply14PMColorToColorEj 1379 | 00000000 DF *UND* 00000000 _ZNK8SkBitmap15getGenerationIDEv 1380 | 00053f5c g DF .text 00000068 _ZN18JavaPixelAllocatorC1EP7_JNIEnv 1381 | 00000000 DF *UND* 00000000 _ZNK8SkBitmap12extractAlphaEPS_PK7SkPaintPNS_9AllocatorEP8SkIPoint 1382 | 000545bc g DF .text 00000058 _ZN11GraphicsJNI12createBitmapEP7_JNIEnvP8SkBitmapP11_jbyteArraybS5_i 1383 | 00000000 DF *UND* 00000000 _Z16Android_SkDebugfPKciS0_S0_z 1384 | 00000000 DF *UND* 00000000 _ZN12SkColorTableC1EPKji 1385 | 00054360 g DF .text 000000b0 _ZN11GraphicsJNI20allocateJavaPixelRefEP7_JNIEnvP8SkBitmapP12SkColorTable 1386 | 00000000 DF *UND* 00000000 _ZNK8SkBitmap9eraseARGBEjjjj 1387 | 00052f74 g DF .text 000000d4 _Z29CreateJavaOutputStreamAdaptorP7_JNIEnvP8_jobjectP11_jbyteArray 1388 | 00000000 DF *UND* 00000000 _ZN14SkImageEncoder6CreateENS_4TypeE 1389 | 00000000 DF *UND* 00000000 _ZN14SkImageEncoder12encodeStreamEP9SkWStreamRK8SkBitmapi 1390 | 00000000 DF *UND* 00000000 _ZNK8SkBitmap6copyToEPS_NS_6ConfigEPNS_9AllocatorE 1391 | 00000000 DF *UND* 00000000 _ZN8SkBitmapC1ERKS_ 1392 | 000535ec g DF .text 00000014 _Z13doThrowAIOOBEP7_JNIEnv 1393 | 000770e8 w DO .data.rel.ro 00000014 _ZTVN8SkBitmap9AllocatorE 1394 | 00050ee4 g DF .text 00000040 _Z17getMimeTypeStringP7_JNIEnvN14SkImageDecoder6FormatE 1395 | 0007e880 g DO .bss 00000004 gOptions_purgeableFieldID 1396 | 0007e874 g DO .bss 00000004 gOptions_class 1397 | 0007e890 g DO .bss 00000004 gOptions_bitmapFieldID 1398 | 0007e878 g DO .bss 00000004 gOptions_justBoundsFieldID 1399 | 0007e87c g DO .bss 00000004 gOptions_sampleSizeFieldID 1400 | 0007e8b0 g DO .bss 00000004 gOptions_configFieldID 1401 | 0007e894 g DO .bss 00000004 gOptions_mutableFieldID 1402 | 0007e8a0 g DO .bss 00000004 gOptions_ditherFieldID 1403 | 0007e898 g DO .bss 00000004 gOptions_shareableFieldID 1404 | 0007e884 g DO .bss 00000004 gOptions_preferQualityOverSpeedFieldID 1405 | 0007e888 g DO .bss 00000004 gOptions_widthFieldID 1406 | 0007e88c g DO .bss 00000004 gOptions_heightFieldID 1407 | 0007e8a4 g DO .bss 00000004 gOptions_mimeFieldID 1408 | 0007e8b8 g DO .bss 00000004 gBitmap_class 1409 | 0007e89c g DO .bss 00000004 gOptions_mCancelID 1410 | 0007e8a8 g DO .bss 00000004 gBitmap_nativeBitmapFieldID 1411 | 00000000 DF *UND* 00000000 lseek64 1412 | 00000000 DF *UND* 00000000 __aeabi_f2iz 1413 | 00000000 DF *UND* 00000000 _ZN7android14Res_png_9patch11deserializeEPKv 1414 | 00053744 g DF .text 00000058 _ZN11GraphicsJNI9set_jrectEP7_JNIEnvP8_jobjectiiii 1415 | 00077100 w DO .data.rel.ro 00000014 _ZTV15NinePatchPeeker 1416 | 00000000 DF *UND* 00000000 _ZN7android14Res_png_9patch14serializedSizeEv 1417 | 00000000 DF *UND* 00000000 _ZN7android14Res_png_9patch12fileToDeviceEv 1418 | 00000000 DF *UND* 00000000 _ZN14SkImageDecoder18setPrefConfigTableEPKN8SkBitmap6ConfigE 1419 | 00072dc4 w DO .rodata 00000018 _ZZN15NinePatchPeeker4peekEPKcPKvjE10gNo565Pref 1420 | 00053aa4 g DF .text 00000028 _ZN11GraphicsJNI21getNativeBitmapConfigEP7_JNIEnvP8_jobject 1421 | 00000000 DF *UND* 00000000 _ZN14SkImageDecoder7FactoryEP8SkStream 1422 | 00059128 g DF .text 00000030 _ZN7android16nullObjectReturnEPKc 1423 | 00000000 DF *UND* 00000000 _ZN14SkImageDecoder13setSampleSizeEi 1424 | 00000000 DF *UND* 00000000 _ZN14SkImageDecoder9setPeekerEPNS_6PeekerE 1425 | 00000000 DF *UND* 00000000 _ZN14SkImageDecoder12setAllocatorEPN8SkBitmap9AllocatorE 1426 | 00000000 DF *UND* 00000000 _ZN7android14Res_png_9patch9serializeEPv 1427 | 00000000 DF *UND* 00000000 _ZN17SkImageRef_ashmemC1EP8SkStreamN8SkBitmap6ConfigEi 1428 | 00000000 DF *UND* 00000000 _ZN21SkImageRef_GlobalPoolC1EP8SkStreamN8SkBitmap6ConfigEi 1429 | 00000000 DF *UND* 00000000 _ZN10SkImageRef8isOpaqueEP8SkBitmap 1430 | 00000000 DF *UND* 00000000 _ZN14SkImageDecoder6decodeEP8SkStreamP8SkBitmapNS2_6ConfigENS_4ModeEb 1431 | 00053fc4 g DF .text 00000040 _ZN17AutoJavaByteArrayC1EP7_JNIEnvP11_jbyteArrayi 1432 | 00000000 DF *UND* 00000000 _ZN14SkMemoryStreamC1EPKvjb 1433 | 00000000 DF *UND* 00000000 _ZN11SkAutoUnrefD1Ev 1434 | 000536c4 g DF .text 0000001e _ZN17AutoJavaByteArrayD1Ev 1435 | 00000000 DF *UND* 00000000 _ZN14SkMemoryStreamC1Ej 1436 | 000772d8 g DO .data.rel.ro 00000020 _ZTVN7android18AssetStreamAdaptorE 1437 | 00000000 DF *UND* 00000000 _ZN10SkFDStreamC1Eib 1438 | 00053060 g DF .text 00000178 _Z28CreateJavaInputStreamAdaptorP7_JNIEnvP8_jobjectP11_jbyteArrayi 1439 | 00077118 w DO .data.rel.ro 00000014 _ZTVN14SkImageDecoder6PeekerE 1440 | 00000000 DF *UND* 00000000 _ZNK8Sk3DView13dotWithNormalEfff 1441 | 00000000 DF *UND* 00000000 _ZNK8Sk3DView13applyToCanvasEP8SkCanvas 1442 | 00000000 DF *UND* 00000000 _ZNK8Sk3DView9getMatrixEP8SkMatrix 1443 | 00000000 DF *UND* 00000000 _ZN8Sk3DView7rotateZEf 1444 | 00000000 DF *UND* 00000000 _ZN8Sk3DView7rotateYEf 1445 | 00000000 DF *UND* 00000000 _ZN8Sk3DView7rotateXEf 1446 | 00000000 DF *UND* 00000000 _ZN8Sk3DView9translateEfff 1447 | 00000000 DF *UND* 00000000 _ZN8Sk3DView7restoreEv 1448 | 00000000 DF *UND* 00000000 _ZN8Sk3DView4saveEv 1449 | 00000000 DF *UND* 00000000 _ZN8Sk3DViewD1Ev 1450 | 00000000 DF *UND* 00000000 _ZN8Sk3DViewC1Ev 1451 | 00000000 DF *UND* 00000000 _ZN21SkImageRef_GlobalPool10SetRAMUsedEj 1452 | 00000000 DF *UND* 00000000 _ZN10SkGraphics16SetFontCacheUsedEj 1453 | 00058c54 g DF .text 0000008c _ZN7android10TextLayout14drawTextOnPathEP7SkPaintPKtiiffP6SkPathP8SkCanvas 1454 | 00000000 DF *UND* 00000000 _Znaj 1455 | 00000000 DF *UND* 00000000 _ZdaPv 1456 | 00058ab0 g DF .text 00000082 _ZN7android10TextLayout11drawTextRunEP7SkPaintPKtiiiiffP8SkCanvas 1457 | 00058e40 g DF .text 0000001c _ZN7android10TextLayout8drawTextEP7SkPaintPKtiiffP8SkCanvas 1458 | 000540dc g DF .text 0000004a _ZN18AutoJavaFloatArrayC1EP7_JNIEnvP12_jfloatArrayi9JNIAccess 1459 | 0005409c g DF .text 00000040 _ZN16AutoJavaIntArrayC1EP7_JNIEnvP10_jintArrayi 1460 | 00054004 g DF .text 0000004a _ZN18AutoJavaShortArrayC1EP7_JNIEnvP12_jshortArrayi9JNIAccess 1461 | 000536a4 g DF .text 0000001e _ZN18AutoJavaShortArrayD1Ev 1462 | 00053684 g DF .text 0000001e _ZN16AutoJavaIntArrayD1Ev 1463 | 00053664 g DF .text 0000001e _ZN18AutoJavaFloatArrayD1Ev 1464 | 00000000 DF *UND* 00000000 _Z15sk_malloc_flagsjj 1465 | 00000000 DF *UND* 00000000 _ZN7SkPaintaSERKS_ 1466 | 00000000 DF *UND* 00000000 _ZN8SkShader18CreateBitmapShaderERK8SkBitmapNS_8TileModeES3_ 1467 | 00000000 DF *UND* 00000000 _ZN7SkPaint9setShaderEP8SkShader 1468 | 00000000 DF *UND* 00000000 _Z7sk_freePv 1469 | 00000000 DF *UND* 00000000 _ZN8SkBitmap11allocPixelsEPNS_9AllocatorEP12SkColorTable 1470 | 0005379c g DF .text 00000068 _ZN11GraphicsJNI14jrect_to_irectEP7_JNIEnvP8_jobjectP7SkIRect 1471 | 00000000 DF *UND* 00000000 _ZN7SkPaint15setFilterBitmapEb 1472 | 000538d8 g DF .text 0000007c _ZN11GraphicsJNI13jrect_to_rectEP7_JNIEnvP8_jobjectP6SkRect 1473 | 00053860 g DF .text 00000078 _ZN11GraphicsJNI14jrectf_to_rectEP7_JNIEnvP8_jobjectP6SkRect 1474 | 00000000 DF *UND* 00000000 _ZN8SkCanvas13drawRoundRectERK6SkRectffRK7SkPaint 1475 | 00000000 DF *UND* 00000000 _ZN8SkCanvas7drawArcERK6SkRectffbRK7SkPaint 1476 | 00000000 DF *UND* 00000000 _ZN8SkCanvas10drawCircleEfffRK7SkPaint 1477 | 00000000 DF *UND* 00000000 _ZN8SkCanvas8drawOvalERK6SkRectRK7SkPaint 1478 | 00000000 DF *UND* 00000000 _ZN8SkCanvas14drawRectCoordsEffffRK7SkPaint 1479 | 00000000 DF *UND* 00000000 _ZN8SkCanvas8drawLineEffffRK7SkPaint 1480 | 00053ae0 g DF .text 00000014 _ZN11GraphicsJNI14getNativePaintEP7_JNIEnvP8_jobject 1481 | 00000000 DF *UND* 00000000 _ZN8SkCanvas9drawPointEffRK7SkPaint 1482 | 00000000 DF *UND* 00000000 _ZN12SkPorterDuff14ToXfermodeModeENS_4ModeE 1483 | 00000000 DF *UND* 00000000 _ZN8SkCanvas9drawColorEjN10SkXfermode4ModeE 1484 | 00000000 DF *UND* 00000000 _ZN8SkCanvas8drawARGBEjjjjN10SkXfermode4ModeE 1485 | 00000000 DF *UND* 00000000 _ZNK8SkCanvas11quickRejectERK6SkRectNS_8EdgeTypeE 1486 | 00000000 DF *UND* 00000000 _ZNK8SkCanvas11quickRejectERK6SkPathNS_8EdgeTypeE 1487 | 00000000 DF *UND* 00000000 _ZNK8SkCanvas14getTotalMatrixEv 1488 | 00000000 DF *UND* 00000000 _ZNK8SkCanvas13getClipBoundsEP6SkRectNS_8EdgeTypeE 1489 | 00053804 g DF .text 0000005c _ZN11GraphicsJNI14irect_to_jrectERK7SkIRectP7_JNIEnvP8_jobject 1490 | 00000000 DF *UND* 00000000 _ZN8SkCanvas11resetMatrixEv 1491 | 00053614 g DF .text 00000014 _Z10doThrowIAEP7_JNIEnvPKc 1492 | 00000000 DF *UND* 00000000 _ZNK8SkCanvas12getSaveCountEv 1493 | 00053628 g DF .text 00000014 _Z10doThrowISEP7_JNIEnvPKc 1494 | 00000000 DF *UND* 00000000 _ZN8SkCanvas14saveLayerAlphaEPK6SkRectjNS_9SaveFlagsE 1495 | 00000000 DF *UND* 00000000 _ZN8SkCanvasC1ERK8SkBitmap 1496 | 00000000 DF *UND* 00000000 _ZN8SkCanvasC1EP15SkDeviceFactory 1497 | 00000000 DF *UND* 00000000 _ZN19SkColorMatrixFilterC1EPKf 1498 | 00000000 DF *UND* 00000000 _ZN13SkColorFilter20CreateLightingFilterEjj 1499 | 00000000 DF *UND* 00000000 _ZN13SkColorFilter16CreateModeFilterEjN10SkXfermode4ModeE 1500 | 00000000 DF *UND* 00000000 _ZN22SkPaintFlagsDrawFilterC1Ejj 1501 | 00077130 w DO .data.rel.ro 0000001c _ZTV18SkJavaOutputStream 1502 | 00077150 w DO .data.rel.ro 00000020 _ZTV22JavaInputStreamAdaptor 1503 | 00000000 DF *UND* 00000000 _ZN9SkWStreamD2Ev 1504 | 00000000 DF *UND* 00000000 _ZN8SkStreamD2Ev 1505 | 00000000 DF *UND* 00000000 _ZN9SkWStream7newlineEv 1506 | 00000000 DF *UND* 00000000 _ZN8SkStream11getFileNameEv 1507 | 00000000 DF *UND* 00000000 _ZN8SkStream13getMemoryBaseEv 1508 | 00053600 g DF .text 00000014 _Z9doThrowREP7_JNIEnvPKc 1509 | 0005363c g DF .text 00000014 _Z11doThrowOOMEP7_JNIEnvPKc 1510 | 00053650 g DF .text 00000014 _Z10doThrowIOEP7_JNIEnvPKc 1511 | 00053664 g DF .text 0000001e _ZN18AutoJavaFloatArrayD2Ev 1512 | 00053684 g DF .text 0000001e _ZN16AutoJavaIntArrayD2Ev 1513 | 000536a4 g DF .text 0000001e _ZN18AutoJavaShortArrayD2Ev 1514 | 000536c4 g DF .text 0000001e _ZN17AutoJavaByteArrayD2Ev 1515 | 000536e4 g DF .text 00000060 _ZN11GraphicsJNI9get_jrectEP7_JNIEnvP8_jobjectPiS4_S4_S4_ 1516 | 00053954 g DF .text 0000005c _ZN11GraphicsJNI14rect_to_jrectfERK6SkRectP7_JNIEnvP8_jobject 1517 | 000539b0 g DF .text 00000034 _ZN11GraphicsJNI16jpoint_to_ipointEP7_JNIEnvP8_jobjectP8SkIPoint 1518 | 000539e4 g DF .text 00000034 _ZN11GraphicsJNI16ipoint_to_jpointERK8SkIPointP7_JNIEnvP8_jobject 1519 | 00053a18 g DF .text 00000044 _ZN11GraphicsJNI16jpointf_to_pointEP7_JNIEnvP8_jobjectP7SkPoint 1520 | 00053a5c g DF .text 00000034 _ZN11GraphicsJNI16point_to_jpointfERK7SkPointP7_JNIEnvP8_jobject 1521 | 00053a90 g DF .text 00000014 _ZN11GraphicsJNI15getNativeBitmapEP7_JNIEnvP8_jobject 1522 | 00053af4 g DF .text 00000014 _ZN11GraphicsJNI16getNativePictureEP7_JNIEnvP8_jobject 1523 | 00053b08 g DF .text 00000014 _ZN11GraphicsJNI15getNativeRegionEP7_JNIEnvP8_jobject 1524 | 00053b1c g DF .text 0000000e _ZN15AndroidPixelRef14setLocalJNIRefEP11_jbyteArray 1525 | 00053b2c g DF .text 0000001a _ZN17JavaHeapBitmapRefC2EP7_JNIEnvP8SkBitmapP11_jbyteArray 1526 | 00053b48 g DF .text 0000001a _ZN17JavaHeapBitmapRefC1EP7_JNIEnvP8SkBitmapP11_jbyteArray 1527 | 00053b64 g DF .text 00000018 _ZN17JavaHeapBitmapRefD2Ev 1528 | 00053b64 g DF .text 00000018 _ZN17JavaHeapBitmapRefD1Ev 1529 | 00000000 DF *UND* 00000000 _ZN16SkMallocPixelRefC1ER23SkFlattenableReadBuffer 1530 | 00000000 DF *UND* 00000000 _Z8sk_throwv 1531 | 00077170 g DO .data.rel.ro 00000014 _ZTV18JavaPixelAllocator 1532 | 00053f5c g DF .text 00000068 _ZN18JavaPixelAllocatorC2EP7_JNIEnv 1533 | 00053fc4 g DF .text 00000040 _ZN17AutoJavaByteArrayC2EP7_JNIEnvP11_jbyteArrayi 1534 | 00054050 g DF .text 0000004a _ZN18AutoJavaShortArrayC2EP7_JNIEnvP12_jshortArrayi9JNIAccess 1535 | 0005409c g DF .text 00000040 _ZN16AutoJavaIntArrayC2EP7_JNIEnvP10_jintArrayi 1536 | 00054128 g DF .text 0000004a _ZN18AutoJavaFloatArrayC2EP7_JNIEnvP12_jfloatArrayi9JNIAccess 1537 | 00054174 g DF .text 0000006c _ZN15AndroidPixelRef11globalUnrefEv 1538 | 000541e0 g DF .text 000000a0 _ZN15AndroidPixelRef9globalRefEPv 1539 | 00054280 g DF .text 0000004c _ZN15AndroidPixelRefD1Ev 1540 | 00000000 DF *UND* 00000000 _ZN16SkMallocPixelRefD2Ev 1541 | 00077188 g DO .data.rel.ro 00000028 _ZTV15AndroidPixelRef 1542 | 000542cc g DF .text 00000012 _ZN15AndroidPixelRefD0Ev 1543 | 00054280 g DF .text 0000004c _ZN15AndroidPixelRefD2Ev 1544 | 000542e0 g DF .text 00000080 _ZN15AndroidPixelRefC1EP7_JNIEnvPvjP11_jbyteArrayP12SkColorTable 1545 | 00000000 DF *UND* 00000000 _ZN16SkMallocPixelRefC2EPvjP12SkColorTable 1546 | 00000000 DF *UND* 00000000 _ZN4Sk646setMulEii 1547 | 00054410 g DF .text 00000058 _ZN18JavaPixelAllocator13allocPixelRefEP8SkBitmapP12SkColorTable 1548 | 00054468 g DF .text 00000080 _ZN15AndroidPixelRefC2EP7_JNIEnvPvjP11_jbyteArrayP12SkColorTable 1549 | 000544e8 g DF .text 0000003c _ZN11GraphicsJNI12hasExceptionEP7_JNIEnv 1550 | 00054524 g DF .text 0000004c _ZN11GraphicsJNI12createRegionEP7_JNIEnvP8SkRegion 1551 | 00054570 g DF .text 0000004c _ZN11GraphicsJNI25createBitmapRegionDecoderEP7_JNIEnvP21SkBitmapRegionDecoder 1552 | 00000000 DF *UND* 00000000 _ZNK16SkMallocPixelRef7flattenER24SkFlattenableWriteBuffer 1553 | 00000000 DF *UND* 00000000 _ZN16SkMallocPixelRef12onLockPixelsEPP12SkColorTable 1554 | 00000000 DF *UND* 00000000 _ZN16SkMallocPixelRef14onUnlockPixelsEv 1555 | 00000000 DF *UND* 00000000 _ZNK14SkInterpolator12timeToValuesEjPf 1556 | 00000000 DF *UND* 00000000 _ZN14SkInterpolator11setKeyFrameEijPKfS1_ 1557 | 00000000 DF *UND* 00000000 _ZN14SkInterpolator5resetEii 1558 | 00000000 DF *UND* 00000000 _ZN18SkInterpolatorBaseD2Ev 1559 | 00000000 DF *UND* 00000000 _ZN14SkInterpolatorC1Eii 1560 | 00000000 DF *UND* 00000000 _ZN17SkLayerRasterizer8addLayerERK7SkPaintff 1561 | 00000000 DF *UND* 00000000 _ZN17SkLayerRasterizerC1Ev 1562 | 00000000 DF *UND* 00000000 _ZN17SkTableMaskFilter14MakeGammaTableEPhf 1563 | 00000000 DF *UND* 00000000 _ZN17SkTableMaskFilterC1EPKh 1564 | 00000000 DF *UND* 00000000 _ZN17SkTableMaskFilter13MakeClipTableEPhhh 1565 | 00000000 DF *UND* 00000000 _ZN16SkBlurMaskFilter12CreateEmbossEPKffff 1566 | 00000000 DF *UND* 00000000 _ZN16SkBlurMaskFilter6CreateEfNS_9BlurStyleE 1567 | 00000000 DF *UND* 00000000 _ZNK8SkMatrix9mapRadiusEf 1568 | 00000000 DF *UND* 00000000 _ZNK8SkMatrix7mapRectEP6SkRectRKS0_ 1569 | 00000000 DF *UND* 00000000 _ZNK8SkMatrix9mapPointsEP7SkPointPKS0_i 1570 | 00000000 DF *UND* 00000000 _ZNK8SkMatrix6invertEPS_ 1571 | 00000000 DF *UND* 00000000 _ZN8SkMatrix13setPolyToPolyEPK7SkPointS2_i 1572 | 00000000 DF *UND* 00000000 _ZN8SkMatrix13setRectToRectERK6SkRectS2_NS_10ScaleToFitE 1573 | 00000000 DF *UND* 00000000 _ZN8SkMatrix10postConcatERKS_ 1574 | 00000000 DF *UND* 00000000 _ZN8SkMatrix8postSkewEff 1575 | 00000000 DF *UND* 00000000 _ZN8SkMatrix8postSkewEffff 1576 | 00000000 DF *UND* 00000000 _ZN8SkMatrix10postRotateEf 1577 | 00000000 DF *UND* 00000000 _ZN8SkMatrix10postRotateEfff 1578 | 00000000 DF *UND* 00000000 _ZN8SkMatrix9postScaleEff 1579 | 00000000 DF *UND* 00000000 _ZN8SkMatrix9postScaleEffff 1580 | 00000000 DF *UND* 00000000 _ZN8SkMatrix13postTranslateEff 1581 | 00000000 DF *UND* 00000000 _ZN8SkMatrix9preConcatERKS_ 1582 | 00000000 DF *UND* 00000000 _ZN8SkMatrix7preSkewEff 1583 | 00000000 DF *UND* 00000000 _ZN8SkMatrix7preSkewEffff 1584 | 00000000 DF *UND* 00000000 _ZN8SkMatrix9preRotateEf 1585 | 00000000 DF *UND* 00000000 _ZN8SkMatrix9preRotateEfff 1586 | 00000000 DF *UND* 00000000 _ZN8SkMatrix8preScaleEff 1587 | 00000000 DF *UND* 00000000 _ZN8SkMatrix8preScaleEffff 1588 | 00000000 DF *UND* 00000000 _ZN8SkMatrix12preTranslateEff 1589 | 00000000 DF *UND* 00000000 _ZN8SkMatrix9setConcatERKS_S1_ 1590 | 00000000 DF *UND* 00000000 _ZN8SkMatrix7setSkewEff 1591 | 00000000 DF *UND* 00000000 _ZN8SkMatrix7setSkewEffff 1592 | 00000000 DF *UND* 00000000 _ZN8SkMatrix9setSinCosEff 1593 | 00000000 DF *UND* 00000000 _ZN8SkMatrix9setSinCosEffff 1594 | 00000000 DF *UND* 00000000 _ZN8SkMatrix9setRotateEf 1595 | 00000000 DF *UND* 00000000 _ZN8SkMatrix9setRotateEfff 1596 | 00000000 DF *UND* 00000000 _ZN8SkMatrix8setScaleEff 1597 | 00000000 DF *UND* 00000000 _ZN8SkMatrix8setScaleEffff 1598 | 00000000 DF *UND* 00000000 _ZN8SkMatrix12setTranslateEff 1599 | 00000000 DF *UND* 00000000 _ZN7SkMovie6bitmapEv 1600 | 00000000 DF *UND* 00000000 _ZN7SkMovie7setTimeEj 1601 | 00000000 DF *UND* 00000000 _ZN7SkMovie8durationEv 1602 | 00000000 DF *UND* 00000000 _ZN7SkMovie8isOpaqueEv 1603 | 00000000 DF *UND* 00000000 _ZN7SkMovie6heightEv 1604 | 00000000 DF *UND* 00000000 _ZN7SkMovie5widthEv 1605 | 00054fe4 g DF .text 0000003c _Z13create_jmovieP7_JNIEnvP7SkMovie 1606 | 00000000 DF *UND* 00000000 _ZN7SkMovie12DecodeMemoryEPKvj 1607 | 00000000 DF *UND* 00000000 _ZN7SkMovie12DecodeStreamEP8SkStream 1608 | 0005541c g DF .text 00000630 _Z14NinePatch_DrawP8SkCanvasRK6SkRectRK8SkBitmapRKN7android14Res_png_9patchEPK7SkPaintPP8SkRegion 1609 | 000553d8 g DF .text 00000042 _Z16calculateStretchffiii 1610 | 00000000 DF *UND* 00000000 _ZN7SkPaint9setDitherEb 1611 | 00000000 DF *UND* 00000000 _ZN11SkNinePatch8DrawMeshEP8SkCanvasRK6SkRectRK8SkBitmapPKiiS9_iPK7SkPaint 1612 | 00000000 DF *UND* 00000000 _ZN7SkPaint9setLooperEP12SkDrawLooper 1613 | 00000000 DF *UND* 00000000 _ZN16SkBlurDrawLooperC1Efffj 1614 | 00000000 DF *UND* 00000000 _ZNK7SkPaint11measureTextEPKvjP6SkRectf 1615 | 00000000 DF *UND* 00000000 __aeabi_fcmpeq 1616 | 00000000 DF *UND* 00000000 u_shapeArabic_44 1617 | 00000000 DF *UND* 00000000 _ZNK7SkPaint13getTextWidthsEPKvjPfP6SkRect 1618 | 00058830 g DF .text 0000016c _ZN7android10TextLayout18getTextRunAdvancesEP7SkPaintPKtiiiiPfRf 1619 | 00000000 DF *UND* 00000000 _ZNK7SkPaint9breakTextEPKvjfPfNS_19TextBufferDirectionE 1620 | 00000000 DF *UND* 00000000 _ZNK7SkPaint14getFontMetricsEPNS_11FontMetricsEf 1621 | 00000000 DF *UND* 00000000 _ZN7SkPaint12setTextSkewXEf 1622 | 00000000 DF *UND* 00000000 _ZN7SkPaint13setTextScaleXEf 1623 | 00000000 DF *UND* 00000000 _ZN7SkPaint12setTextAlignENS_5AlignE 1624 | 00000000 DF *UND* 00000000 _ZN7SkPaint13setRasterizerEP12SkRasterizer 1625 | 00000000 DF *UND* 00000000 _ZN7SkPaint11setTypefaceEP10SkTypeface 1626 | 00000000 DF *UND* 00000000 _ZN7SkPaint13setMaskFilterEP12SkMaskFilter 1627 | 00000000 DF *UND* 00000000 _ZN7SkPaint13setPathEffectEP12SkPathEffect 1628 | 00000000 DF *UND* 00000000 _ZN7SkPaint11setXfermodeEP10SkXfermode 1629 | 00000000 DF *UND* 00000000 _ZN7SkPaint14setColorFilterEP13SkColorFilter 1630 | 00000000 DF *UND* 00000000 _ZNK7SkPaint11getFillPathERK6SkPathPS0_ 1631 | 00000000 DF *UND* 00000000 _ZN7SkPaint13setStrokeJoinENS_4JoinE 1632 | 00000000 DF *UND* 00000000 _ZN7SkPaint12setStrokeCapENS_3CapE 1633 | 00000000 DF *UND* 00000000 _ZN7SkPaint14setStrokeMiterEf 1634 | 00000000 DF *UND* 00000000 _ZN7SkPaint14setStrokeWidthEf 1635 | 00000000 DF *UND* 00000000 _ZN7SkPaint8setAlphaEj 1636 | 00000000 DF *UND* 00000000 _ZN7SkPaint8setStyleENS_5StyleE 1637 | 00000000 DF *UND* 00000000 _ZN7SkPaint15setFakeBoldTextEb 1638 | 00000000 DF *UND* 00000000 _ZN7SkPaint17setStrikeThruTextEb 1639 | 00000000 DF *UND* 00000000 _ZN7SkPaint16setUnderlineTextEb 1640 | 00000000 DF *UND* 00000000 _ZN7SkPaint13setLinearTextEb 1641 | 00000000 DF *UND* 00000000 _ZN7SkPaint15setSubpixelTextEb 1642 | 00000000 DF *UND* 00000000 _ZN7SkPaint8setFlagsEj 1643 | 00000000 DF *UND* 00000000 _ZN7SkPaint5resetEv 1644 | 00000000 DF *UND* 00000000 _ZN7SkPaint15setTextEncodingENS_12TextEncodingE 1645 | 00000000 DF *UND* 00000000 _ZN7SkPaintC1ERKS_ 1646 | 00058e24 g DF .text 0000001c _ZN7android10TextLayout11getTextPathEP7SkPaintPKtiiffP6SkPath 1647 | 00000000 DF *UND* 00000000 _ZNK6SkPath9transformERK8SkMatrixPS_ 1648 | 00000000 DF *UND* 00000000 _ZN6SkPath9setLastPtEff 1649 | 00000000 DF *UND* 00000000 _ZNK6SkPath6offsetEffPS_ 1650 | 00000000 DF *UND* 00000000 _ZN6SkPath7addPathERKS_RK8SkMatrix 1651 | 00000000 DF *UND* 00000000 _ZN6SkPath7addPathERKS_ff 1652 | 00000000 DF *UND* 00000000 _ZN6SkPath12addRoundRectERK6SkRectPKfNS_9DirectionE 1653 | 00000000 DF *UND* 00000000 _ZN6SkPath12addRoundRectERK6SkRectffNS_9DirectionE 1654 | 00000000 DF *UND* 00000000 _ZN6SkPath6addArcERK6SkRectff 1655 | 00000000 DF *UND* 00000000 _ZN6SkPath9addCircleEfffNS_9DirectionE 1656 | 00000000 DF *UND* 00000000 _ZN6SkPath7addOvalERK6SkRectNS_9DirectionE 1657 | 00000000 DF *UND* 00000000 _ZN6SkPath7addRectEffffNS_9DirectionE 1658 | 00000000 DF *UND* 00000000 _ZN6SkPath7addRectERK6SkRectNS_9DirectionE 1659 | 00000000 DF *UND* 00000000 _ZN6SkPath5closeEv 1660 | 00000000 DF *UND* 00000000 _ZN6SkPath5arcToERK6SkRectffb 1661 | 00000000 DF *UND* 00000000 _ZN6SkPath8rCubicToEffffff 1662 | 00000000 DF *UND* 00000000 _ZN6SkPath7cubicToEffffff 1663 | 00000000 DF *UND* 00000000 _ZN6SkPath7rQuadToEffff 1664 | 00000000 DF *UND* 00000000 _ZN6SkPath6quadToEffff 1665 | 00000000 DF *UND* 00000000 _ZN6SkPath7rLineToEff 1666 | 00000000 DF *UND* 00000000 _ZN6SkPath6lineToEff 1667 | 00000000 DF *UND* 00000000 _ZN6SkPath7rMoveToEff 1668 | 00000000 DF *UND* 00000000 _ZN6SkPath6moveToEff 1669 | 00000000 DF *UND* 00000000 _ZN6SkPath10incReserveEj 1670 | 00000000 DF *UND* 00000000 _ZNK6SkPath13computeBoundsEv 1671 | 00000000 DF *UND* 00000000 _ZNK6SkPath6isRectEP6SkRect 1672 | 00000000 DF *UND* 00000000 _ZNK6SkPath7isEmptyEv 1673 | 00000000 DF *UND* 00000000 _ZN6SkPathaSERKS_ 1674 | 00000000 DF *UND* 00000000 _ZN6SkPath6rewindEv 1675 | 00000000 DF *UND* 00000000 _ZN6SkPath5resetEv 1676 | 00000000 DF *UND* 00000000 _ZN6SkPathC1ERKS_ 1677 | 00000000 DF *UND* 00000000 _ZN6SkPathC1Ev 1678 | 00000000 DF *UND* 00000000 _ZN6SkPathD1Ev 1679 | 00000000 DF *UND* 00000000 _ZN13SkPathMeasureD1Ev 1680 | 00000000 DF *UND* 00000000 _ZN13SkPathMeasure11nextContourEv 1681 | 00000000 DF *UND* 00000000 _ZN13SkPathMeasure8isClosedEv 1682 | 00000000 DF *UND* 00000000 _ZN13SkPathMeasure10getSegmentEffP6SkPathb 1683 | 00000000 DF *UND* 00000000 _ZN13SkPathMeasure9getMatrixEfP8SkMatrixNS_11MatrixFlagsE 1684 | 00000000 DF *UND* 00000000 _ZN13SkPathMeasure9getPosTanEfP7SkPointS1_ 1685 | 00000000 DF *UND* 00000000 _ZN13SkPathMeasure9getLengthEv 1686 | 00000000 DF *UND* 00000000 _ZN13SkPathMeasure7setPathEPK6SkPathb 1687 | 00000000 DF *UND* 00000000 _ZN13SkPathMeasureC1ERK6SkPathb 1688 | 00000000 DF *UND* 00000000 _ZN13SkPathMeasureC1Ev 1689 | 00000000 DF *UND* 00000000 _ZN20SkDiscretePathEffectC1Eff 1690 | 00000000 DF *UND* 00000000 _ZN18SkCornerPathEffectC1Ef 1691 | 00000000 DF *UND* 00000000 _ZN18SkPath1DPathEffectC1ERK6SkPathffNS_5StyleE 1692 | 00000000 DF *UND* 00000000 _ZN16SkDashPathEffectC1EPKfifb 1693 | 00000000 DF *UND* 00000000 _ZN16SkPairPathEffectC2EP12SkPathEffectS1_ 1694 | 00000000 DO *UND* 00000000 _ZTV15SkSumPathEffect 1695 | 00000000 DO *UND* 00000000 _ZTV19SkComposePathEffect 1696 | 00000000 DF *UND* 00000000 _ZN7android18getPixelFormatInfoEiPNS_15PixelFormatInfoE 1697 | 00000000 DF *UND* 00000000 _ZNK9SkPicture9serializeEP9SkWStream 1698 | 00000000 DF *UND* 00000000 _ZN9SkPicture4drawEP8SkCanvas 1699 | 00000000 DF *UND* 00000000 _ZN9SkPicture12endRecordingEv 1700 | 00000000 DF *UND* 00000000 _ZN9SkPicture14beginRecordingEiij 1701 | 00000000 DF *UND* 00000000 _ZN9SkPictureC1EP8SkStream 1702 | 00000000 DF *UND* 00000000 _ZN9SkPictureC1ERKS_ 1703 | 00000000 DF *UND* 00000000 _ZN9SkPictureC1Ev 1704 | 00000000 DF *UND* 00000000 _ZN12SkPorterDuff14CreateXfermodeENS_4ModeE 1705 | 00000000 DF *UND* 00000000 _Z15sk_malloc_throwj 1706 | 00000000 DF *UND* 00000000 _Z16sk_realloc_throwPvj 1707 | 00000000 DF *UND* 00000000 _ZN14SkMemoryStreamC1Ev 1708 | 00000000 DO *UND* 00000000 _ZN14SkImageDecoder11kFormatNameE 1709 | 00000000 DO *UND* 00000000 _ZTV21SkBitmapRegionDecoder 1710 | 00057abc g DF .text 00000008 _ZN7android35android_graphics_Region_getSkRegionEP7_JNIEnvP8_jobject 1711 | 00000000 DF *UND* 00000000 _ZN8SkRegionC1ERKS_ 1712 | 00000000 DF *UND* 00000000 _ZN8SkRegion8Iterator5resetERKS_ 1713 | 00000000 DF *UND* 00000000 _ZeqRK8SkRegionS1_ 1714 | 00000000 DF *UND* 00000000 _ZNK8SkRegion7flattenEPv 1715 | 00000000 DF *UND* 00000000 _ZN8SkRegion9unflattenEPKv 1716 | 00000000 DF *UND* 00000000 _ZN8SkRegion8toStringEv 1717 | 00000000 DF *UND* 00000000 _ZNK8SkRegion9translateEiiPS_ 1718 | 00000000 DF *UND* 00000000 roundf 1719 | 00000000 DF *UND* 00000000 _ZN8SkRegion4swapERS_ 1720 | 00000000 DF *UND* 00000000 _ZNK8SkRegion8containsEii 1721 | 00000000 DF *UND* 00000000 _ZN8SkRegion2opERKS_S1_NS_2OpE 1722 | 00000000 DF *UND* 00000000 _ZN8SkRegion2opERK7SkIRectRKS_NS_2OpE 1723 | 00000000 DF *UND* 00000000 _ZNK8SkRegion15getBoundaryPathEP6SkPath 1724 | 00000000 DF *UND* 00000000 _ZN8SkRegion7setPathERK6SkPathRKS_ 1725 | 00000000 DF *UND* 00000000 _ZN8SkRegionaSERKS_ 1726 | 00000000 DF *UND* 00000000 _ZN15SkComposeShaderC1EP8SkShaderS1_P10SkXfermode 1727 | 00000000 DF *UND* 00000000 _ZN16SkGradientShader11CreateSweepEffPKjPKfiP12SkUnitMapper 1728 | 00000000 DF *UND* 00000000 _ZN16SkGradientShader12CreateRadialERK7SkPointfPKjPKfiN8SkShader8TileModeEP12SkUnitMapper 1729 | 00000000 DF *UND* 00000000 _ZN16SkGradientShader12CreateLinearEPK7SkPointPKjPKfiN8SkShader8TileModeEP12SkUnitMapper 1730 | 00000000 DF *UND* 00000000 _ZN8SkShader16resetLocalMatrixEv 1731 | 00000000 DF *UND* 00000000 _ZN8SkShader14setLocalMatrixERK8SkMatrix 1732 | 00000000 DF *UND* 00000000 _Z12SkHSVToColorjPKf 1733 | 00000000 DF *UND* 00000000 _Z10SkRGBToHSVjjjPf 1734 | 00058334 g DF .text 0000003a _ZN7android24JNISurfaceTextureContextC2EP7_JNIEnvP8_jobjectP7_jclass 1735 | 000771b0 w DO .data.rel.ro 0000004c _ZTVN7android14SurfaceTexture22FrameAvailableListenerE 1736 | 0004c6fc w DF .text 0000001c _ZN7android2spINS_14SurfaceTextureEED1Ev 1737 | 000583e8 g DF .text 00000034 _ZN7android32SurfaceTexture_getSurfaceTextureEP7_JNIEnvP8_jobject 1738 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceTexture18getTransformMatrixEPf 1739 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceTexture14updateTexImageEv 1740 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceTexture25setFrameAvailableListenerERKNS_2spINS0_22FrameAvailableListenerEEE 1741 | 000585d4 g DF .text 0000005c _ZN7android24JNISurfaceTextureContextD1Ev 1742 | 00077218 g DO .data.rel.ro 0000004c _ZTVN7android24JNISurfaceTextureContextE 1743 | 00077208 g DO .data.rel.ro 00000010 _ZTTN7android24JNISurfaceTextureContextE 1744 | 00058630 g DF .text 00000012 _ZN7android24JNISurfaceTextureContextD0Ev 1745 | 00058644 g DF .text 0000002c _ZN7android24JNISurfaceTextureContextD2Ev 1746 | 00058670 g DF .text 0000001c _ZN7android24JNISurfaceTextureContext16onFrameAvailableEv 1747 | 0005868c g DF .text 00000060 _ZN7android24JNISurfaceTextureContextC1EP7_JNIEnvP8_jobjectP7_jclass 1748 | 00000000 DF *UND* 00000000 _ZN7android14SurfaceTextureC1Ej 1749 | 000587dc g DF .text 00000010 _ZTv0_n12_N7android24JNISurfaceTextureContextD0Ev 1750 | 000587ec g DF .text 00000010 _ZTv0_n12_N7android24JNISurfaceTextureContextD1Ev 1751 | 000583bc w DF .text 00000010 _ZTv0_n12_N7android14SurfaceTexture22FrameAvailableListenerD0Ev 1752 | 00058398 w DF .text 00000010 _ZTv0_n12_N7android14SurfaceTexture22FrameAvailableListenerD1Ev 1753 | 00077268 g DO .data.rel.ro 0000004c _ZTCN7android24JNISurfaceTextureContextE0_NS_14SurfaceTexture22FrameAvailableListenerE 1754 | 00077200 w DO .data.rel.ro 00000008 _ZTTN7android14SurfaceTexture22FrameAvailableListenerE 1755 | 000587fc g DF .text 00000034 _ZN7android10TextLayout11needsLayoutEPKtii 1756 | 000589a0 g DF .text 000000cc _ZN7android10TextLayout12shapeRtlTextEPKtiiiPtR10UErrorCode 1757 | 00000000 DF *UND* 00000000 ubidi_writeReverse_44 1758 | 00058a70 g DF .text 00000040 _ZN7android10TextLayout17prepareRtlTextRunEPKtiRiiPt 1759 | 00058b34 g DF .text 00000120 _ZN7android10TextLayout10layoutLineEPKtiiRiPtR10UErrorCode 1760 | 00000000 DF *UND* 00000000 ubidi_open_44 1761 | 00000000 DF *UND* 00000000 ubidi_countRuns_44 1762 | 00000000 DF *UND* 00000000 ubidi_getVisualRun_44 1763 | 00000000 DF *UND* 00000000 _ZN8SkCanvas16drawTextOnPathHVEPKvjRK6SkPathffRK7SkPaint 1764 | 00058ce0 g DF .text 000000ec _ZN7android10TextLayout11prepareTextEP7SkPaintPKtiiPS4_PiPPt 1765 | 00058dcc g DF .text 00000056 _ZN7android10TextLayout10handleTextEP7SkPaintPKtiiffP8SkCanvasP6SkPath 1766 | 00000000 DF *UND* 00000000 _ZNK7SkPaint11getTextPathEPKvjffP6SkPath 1767 | 00000000 DF *UND* 00000000 _Z19skia_set_text_gammaff 1768 | 00000000 DF *UND* 00000000 _ZN10SkTypeface14CreateFromFileEPKc 1769 | 000772b8 w DO .data.rel.ro 00000020 _ZTV11AssetStream 1770 | 00000000 DF *UND* 00000000 _ZN10SkTypeface16CreateFromStreamEP8SkStream 1771 | 00000000 DF *UND* 00000000 _ZN10SkTypeface18CreateFromTypefaceEPKS_NS_5StyleE 1772 | 00000000 DF *UND* 00000000 _ZN10SkTypeface14CreateFromNameEPKcNS_5StyleE 1773 | 00059158 g DF .text 000000d0 _ZN7android18AssetStreamAdaptor4readEPvj 1774 | 00059228 g DF .text 00000044 _ZN7android18AssetStreamAdaptor6rewindEv 1775 | 00000000 DO *UND* 00000000 _ZTV18SkPixelXorXfermode 1776 | 00000000 DF *UND* 00000000 _ZN15SkAvoidXfermodeC1EjjNS_4ModeE 1777 | 00059328 g DF .text 00000018 _ZN16YuvToJpegEncoderC2EPi 1778 | 000772f8 w DO .data.rel.ro 00000018 _ZTV16YuvToJpegEncoder 1779 | 00059328 g DF .text 00000018 _ZN16YuvToJpegEncoderC1EPi 1780 | 00059340 g DF .text 00000024 _ZN21Yuv420SpToJpegEncoderC2EPi 1781 | 00077310 g DO .data.rel.ro 00000018 _ZTV21Yuv420SpToJpegEncoder 1782 | 00059340 g DF .text 00000024 _ZN21Yuv420SpToJpegEncoderC1EPi 1783 | 00059364 g DF .text 00000058 _ZN21Yuv420SpToJpegEncoder12deinterleaveEPhS0_S0_ii 1784 | 000593bc g DF .text 00000022 _ZN21Yuv420SpToJpegEncoder21configSamplingFactorsEP20jpeg_compress_struct 1785 | 000593e0 g DF .text 00000024 _ZN20Yuv422IToJpegEncoderC2EPi 1786 | 00077328 g DO .data.rel.ro 00000018 _ZTV20Yuv422IToJpegEncoder 1787 | 000593e0 g DF .text 00000024 _ZN20Yuv422IToJpegEncoderC1EPi 1788 | 00059404 g DF .text 0000006e _ZN20Yuv422IToJpegEncoder12deinterleaveEPhS0_S0_S0_iii 1789 | 00059474 g DF .text 00000022 _ZN20Yuv422IToJpegEncoder21configSamplingFactorsEP20jpeg_compress_struct 1790 | 000594b4 g DF .text 000000f4 _ZN20Yuv422IToJpegEncoder8compressEP20jpeg_compress_structPhPi 1791 | 00000000 DF *UND* 00000000 jpeg_write_raw_data 1792 | 000595a8 g DF .text 000000ec _ZN21Yuv420SpToJpegEncoder8compressEP20jpeg_compress_structPhPi 1793 | 00059694 g DF .text 00000040 _ZN16YuvToJpegEncoder21setJpegCompressStructEP20jpeg_compress_structiii 1794 | 00000000 DF *UND* 00000000 jpeg_set_defaults 1795 | 00000000 DF *UND* 00000000 jpeg_set_quality 1796 | 00000000 DF *UND* 00000000 jpeg_set_colorspace 1797 | 000596d4 g DF .text 000000e8 _ZN16YuvToJpegEncoder6encodeEP9SkWStreamPviiPii 1798 | 00000000 DF *UND* 00000000 _ZN22skjpeg_destination_mgrC1EP9SkWStream 1799 | 00000000 DF *UND* 00000000 jpeg_std_error 1800 | 00000000 DF *UND* 00000000 setjmp 1801 | 00000000 DF *UND* 00000000 jpeg_CreateCompress 1802 | 00000000 DF *UND* 00000000 jpeg_start_compress 1803 | 00000000 DF *UND* 00000000 jpeg_finish_compress 1804 | 00000000 DF *UND* 00000000 _Z17skjpeg_error_exitP18jpeg_common_struct 1805 | 000597bc g DF .text 00000030 _ZN16YuvToJpegEncoder6createEiPi 1806 | 0005989c g DF .text 00000024 _Z40android_media_translateRecorderErrorCodei 1807 | 0007e9e4 g DO .bss 00000004 sLock 1808 | 0005a378 g DF .text 00000060 _Z37android_media_getIntConstantFromClassP7_JNIEnvP7_jclassPKcS4_Pi 1809 | 00000000 DF *UND* 00000000 _ZN7android11AudioRecord16getMinFrameCountEPijii 1810 | 00000000 DF *UND* 00000000 _ZN7android11AudioRecord23getPositionUpdatePeriodEPj 1811 | 00000000 DF *UND* 00000000 _ZN7android11AudioRecord23setPositionUpdatePeriodEj 1812 | 00000000 DF *UND* 00000000 _ZN7android11AudioRecord17getMarkerPositionEPj 1813 | 00000000 DF *UND* 00000000 _ZN7android11AudioRecord17setMarkerPositionEj 1814 | 00000000 DF *UND* 00000000 _ZN7android11AudioRecord4readEPvj 1815 | 00000000 DF *UND* 00000000 _ZNK7android11AudioRecord10frameCountEv 1816 | 00000000 DF *UND* 00000000 _ZNK7android11AudioRecord9frameSizeEv 1817 | 00000000 DF *UND* 00000000 _ZN7android11AudioRecord4stopEv 1818 | 00000000 DF *UND* 00000000 _ZN7android11AudioRecordD1Ev 1819 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem14isInputChannelEj 1820 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem8popCountEj 1821 | 00000000 DF *UND* 00000000 _ZN7android11AudioRecordC1Ev 1822 | 00000000 DF *UND* 00000000 _ZN7android11AudioRecord3setEijijijPFviPvS1_ES1_ibi 1823 | 00000000 DF *UND* 00000000 _ZNK7android11AudioRecord9initCheckEv 1824 | 00000000 DF *UND* 00000000 _ZN7android11AudioRecord5startEv 1825 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem16setErrorCallbackEPFviE 1826 | 0005a320 g DF .text 00000058 _Z40android_media_AudioSystem_error_callbacki 1827 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem20getStreamVolumeIndexENS0_11stream_typeEPi 1828 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem20setStreamVolumeIndexENS0_11stream_typeEi 1829 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem16initStreamVolumeENS0_11stream_typeEii 1830 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem11getForceUseENS0_9force_useE 1831 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem11setForceUseENS0_9force_useENS0_13forced_configE 1832 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem13setRingerModeEjj 1833 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem13setPhoneStateEi 1834 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem24getDeviceConnectionStateENS0_13audio_devicesEPKc 1835 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem24setDeviceConnectionStateENS0_13audio_devicesENS0_23device_connection_stateEPKc 1836 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem14isStreamActiveEiPbj 1837 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem17isMicrophoneMutedEPb 1838 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem14muteMicrophoneEb 1839 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem13getParametersEiRKNS_7String8E 1840 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem13setParametersEiRKNS_7String8E 1841 | 0005989c g DF .text 00000024 _Z32android_media_translateErrorCodei 1842 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack15attachAuxEffectEi 1843 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack21setAuxEffectSendLevelEf 1844 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack16getMinFrameCountEPiij 1845 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem21getOutputSamplingRateEPii 1846 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack6reloadEv 1847 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack7setLoopEjji 1848 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack11getPositionEPj 1849 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack11setPositionEj 1850 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack23getPositionUpdatePeriodEPj 1851 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack23setPositionUpdatePeriodEj 1852 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack17getMarkerPositionEPj 1853 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack17setMarkerPositionEj 1854 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack13getSampleRateEv 1855 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack13setSampleRateEi 1856 | 00000000 DF *UND* 00000000 _ZNK7android10AudioTrack10frameCountEv 1857 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack9setVolumeEff 1858 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack4stopEv 1859 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrackD1Ev 1860 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem19getOutputFrameCountEPii 1861 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem15isOutputChannelEj 1862 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrackC1Ev 1863 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack3setEijiiijPFviPvS1_ES1_iRKNS_2spINS_7IMemoryEEEbi 1864 | 00000000 DF *UND* 00000000 _ZN7android14MemoryHeapBaseC1EjjPKc 1865 | 00000000 DF *UND* 00000000 _ZN7android10MemoryBaseC1ERKNS_2spINS_11IMemoryHeapEEElj 1866 | 00000000 DF *UND* 00000000 _ZNK7android10AudioTrack9initCheckEv 1867 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack12getSessionIdEv 1868 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack5flushEv 1869 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack5pauseEv 1870 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack5startEv 1871 | 0005b208 g DF .text 000000c0 _Z12writeToTrackPN7android10AudioTrackEiPaii 1872 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack12sharedBufferEv 1873 | 00000000 DF *UND* 00000000 _ZN7android10AudioTrack5writeEPKvj 1874 | 00000000 DF *UND* 00000000 _ZNK7android7IMemory4sizeEv 1875 | 00000000 DF *UND* 00000000 _ZNK7android7IMemory7pointerEv 1876 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayer10clearQueueEv 1877 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayer11triggerClipEi 1878 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayer11setMuteFlagEibb 1879 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayer12setMuteFlagsEmb 1880 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayer12queueSegmentEiiiimh 1881 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayer5pauseEv 1882 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayer4playEv 1883 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayer9closeFileEv 1884 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayer16setEventCallbackEPFviiiPvE 1885 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayer10loadFromFDEixx 1886 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayer12loadFromFileEPKc 1887 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayer7releaseEv 1888 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayerD1Ev 1889 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayerC1EP8_jobjectii 1890 | 00000000 DF *UND* 00000000 _ZN7android9JetPlayer4initEv 1891 | 00000000 DF *UND* 00000000 _ZN7android13ToneGeneratorD1Ev 1892 | 00000000 DF *UND* 00000000 _ZN7android11AudioSystem11linearToLogEi 1893 | 00000000 DF *UND* 00000000 _ZN7android13ToneGeneratorC1Eifb 1894 | 00000000 DF *UND* 00000000 _ZN7android13ToneGenerator8stopToneEv 1895 | 00000000 DF *UND* 00000000 _ZN7android13ToneGenerator9startToneEii 1896 | 0005bdd4 g DF .text 0000000e _ZN16JNICameraContext17postDataTimestampExiRKN7android2spINS0_7IMemoryEEE 1897 | 00030298 w DF .text 00000002 _ZNK7android6VectorIP11_jbyteArrayE12do_constructEPvj 1898 | 00030298 w DF .text 00000002 _ZNK7android6VectorIP11_jbyteArrayE10do_destroyEPvj 1899 | 00032740 w DF .text 0000000e _ZNK7android6VectorIP11_jbyteArrayE8do_splatEPvPKvj 1900 | 00077340 w DO .data.rel.ro 00000054 _ZTVN7android14CameraListenerE 1901 | 000773a0 w DO .data.rel.ro 00000048 _ZTVN7android6VectorIP11_jbyteArrayEE 1902 | 00032ed8 w DF .text 00000010 _ZNK7android6VectorIP11_jbyteArrayE16do_move_backwardEPvPKvj 1903 | 0005be7c w DF .text 00000010 _ZNK7android6VectorIP11_jbyteArrayE15do_move_forwardEPvPKvj 1904 | 0005be8c w DF .text 00000010 _ZNK7android6VectorIP11_jbyteArrayE7do_copyEPvPKvj 1905 | 0004c6fc w DF .text 0000001c _ZN7android2spINS_6CameraEED1Ev 1906 | 0005bfc0 w DF .text 00000032 _ZN7android2spINS_6CameraEEaSERKS2_ 1907 | 0005c024 g DF .text 00000080 _Z17get_native_cameraP7_JNIEnvP8_jobjectPP16JNICameraContext 1908 | 00000000 DF *UND* 00000000 _ZN7android6Camera11sendCommandEiii 1909 | 00000000 DF *UND* 00000000 _ZN7android6Camera6unlockEv 1910 | 00000000 DF *UND* 00000000 _ZN7android6Camera4lockEv 1911 | 00000000 DF *UND* 00000000 _ZN7android6Camera9reconnectEv 1912 | 00000000 DF *UND* 00000000 _ZNK7android6Camera13getParametersEv 1913 | 00000000 DF *UND* 00000000 _ZN7android6Camera13setParametersERKNS_7String8E 1914 | 00000000 DF *UND* 00000000 _ZN7android6Camera11takePictureEv 1915 | 00000000 DF *UND* 00000000 _ZN7android6Camera15cancelAutoFocusEv 1916 | 00000000 DF *UND* 00000000 _ZN7android6Camera9autoFocusEv 1917 | 00000000 DF *UND* 00000000 _ZN7android6Camera14previewEnabledEv 1918 | 00000000 DF *UND* 00000000 _ZN7android6Camera11stopPreviewEv 1919 | 00000000 DF *UND* 00000000 _ZN7android6Camera12startPreviewEv 1920 | 00000000 DF *UND* 00000000 _ZN7android6Camera17setPreviewTextureERKNS_2spINS_15ISurfaceTextureEEE 1921 | 00000000 DF *UND* 00000000 _ZN7android6Camera17setPreviewDisplayERKNS_2spINS_7SurfaceEEE 1922 | 00000000 DF *UND* 00000000 _ZN7android6Camera13getCameraInfoEiPNS_10CameraInfoE 1923 | 00000000 DF *UND* 00000000 _ZN7android6Camera18getNumberOfCamerasEv 1924 | 0005c6bc g DF .text 0000002a _ZN16JNICameraContext22clearCallbackBuffers_lEP7_JNIEnv 1925 | 0005c6e8 g DF .text 00000064 _ZN16JNICameraContext15setCallbackModeEP7_JNIEnvbb 1926 | 00000000 DF *UND* 00000000 _ZN7android6Camera23setPreviewCallbackFlagsEi 1927 | 0005c78c g DF .text 0000006c _ZN16JNICameraContext17addCallbackBufferEP7_JNIEnvP11_jbyteArray 1928 | 0005c81c g DF .text 00000062 _ZN16JNICameraContext7releaseEv 1929 | 00077450 g DO .data.rel.ro 00000054 _ZTV16JNICameraContext 1930 | 00077440 g DO .data.rel.ro 00000010 _ZTT16JNICameraContext 1931 | 00000000 DF *UND* 00000000 _ZN7android6Camera10disconnectEv 1932 | 0005c9b0 g DF .text 00000060 _ZN16JNICameraContext6notifyEiii 1933 | 0005ca10 g DF .text 0000018c _ZN16JNICameraContext11copyAndPostEP7_JNIEnvRKN7android2spINS2_7IMemoryEEEi 1934 | 0005cb9c g DF .text 00000074 _ZN16JNICameraContext8postDataEiRKN7android2spINS0_7IMemoryEEE 1935 | 0005cc10 g DF .text 00000094 _ZN16JNICameraContextC1EP7_JNIEnvP8_jobjectP7_jclassRKN7android2spINS6_6CameraEEE 1936 | 00000000 DF *UND* 00000000 _ZN7android6Camera7connectEi 1937 | 00000000 DF *UND* 00000000 _ZN7android6Camera11setListenerERKNS_2spINS_14CameraListenerEEE 1938 | 0005cdb8 g DF .text 0000007c _ZN16JNICameraContextC2EP7_JNIEnvP8_jobjectP7_jclassRKN7android2spINS6_6CameraEEE 1939 | 0005c904 w DF .text 00000010 _ZTv0_n12_N16JNICameraContextD0Ev 1940 | 0005c8e0 w DF .text 00000010 _ZTv0_n12_N16JNICameraContextD1Ev 1941 | 0005be30 w DF .text 00000010 _ZTv0_n12_N7android14CameraListenerD0Ev 1942 | 0005be0c w DF .text 00000010 _ZTv0_n12_N7android14CameraListenerD1Ev 1943 | 000773e8 g DO .data.rel.ro 00000054 _ZTC16JNICameraContext0_N7android14CameraListenerE 1944 | 00077398 w DO .data.rel.ro 00000008 _ZTTN7android14CameraListenerE 1945 | 0007ea54 g DO .bss 00000024 _ZN7android14gSensorOffsetsE 1946 | 00000000 DF *UND* 00000000 _ZN7android16SensorEventQueue4readEP12ASensorEventj 1947 | 00000000 DF *UND* 00000000 _ZNK7android16SensorEventQueue12waitForEventEv 1948 | 00000000 DF *UND* 00000000 _ZNK7android16SensorEventQueue12enableSensorEii 1949 | 00000000 DF *UND* 00000000 _ZNK7android16SensorEventQueue13disableSensorEi 1950 | 00000000 DF *UND* 00000000 _ZN7android13SensorManagerC1Ev 1951 | 00000000 DO *UND* 00000000 _ZN7android9SingletonINS_13SensorManagerEE5sLockE 1952 | 00000000 DO *UND* 00000000 _ZN7android9SingletonINS_13SensorManagerEE9sInstanceE 1953 | 00000000 DF *UND* 00000000 _ZN7android13SensorManager16createEventQueueEv 1954 | 00000000 DF *UND* 00000000 _ZNK7android13SensorManager13getSensorListEPPKPKNS_6SensorE 1955 | 00000000 DF *UND* 00000000 _ZNK7android6Sensor7getNameEv 1956 | 00000000 DF *UND* 00000000 _ZNK7android6Sensor9getVendorEv 1957 | 00000000 DF *UND* 00000000 _ZNK7android6Sensor9getHandleEv 1958 | 00000000 DF *UND* 00000000 _ZNK7android6Sensor7getTypeEv 1959 | 00000000 DF *UND* 00000000 _ZNK7android6Sensor11getMaxValueEv 1960 | 00000000 DF *UND* 00000000 _ZNK7android6Sensor13getResolutionEv 1961 | 00000000 DF *UND* 00000000 _ZNK7android6Sensor13getPowerUsageEv 1962 | 00000000 DF *UND* 00000000 _ZNK7android6Sensor11getMinDelayEv 1963 | 00000000 DF *UND* 00000000 inotify_rm_watch 1964 | 00000000 DF *UND* 00000000 inotify_add_watch 1965 | 00000000 DF *UND* 00000000 inotify_init 1966 | 00000000 DF *UND* 00000000 SHA1_Final 1967 | 00000000 DF *UND* 00000000 SHA1_Init 1968 | 00000000 DF *UND* 00000000 SHA1_Update 1969 | 00000000 DF *UND* 00000000 capget 1970 | 00000000 DF *UND* 00000000 capset 1971 | 00000000 DF *UND* 00000000 dup2 1972 | 00000000 DF *UND* 00000000 getpgid 1973 | 00000000 DF *UND* 00000000 setpgid 1974 | 00000000 DF *UND* 00000000 setregid 1975 | 00000000 DF *UND* 00000000 setreuid 1976 | 00000000 DF *UND* 00000000 _ZNK8SkBitmap10scrollRectEPK7SkIRectiiP8SkRegion 1977 | 00000000 DF *UND* 00000000 _ZN7android16BackupDataReader14SkipEntityDataEv 1978 | 00000000 DF *UND* 00000000 _ZN7android16BackupDataReader14ReadEntityDataEPvj 1979 | 00000000 DF *UND* 00000000 _ZN7android16BackupDataReader14ReadNextHeaderEPbPi 1980 | 00000000 DF *UND* 00000000 _ZN7android16BackupDataReader16ReadEntityHeaderEPNS_7String8EPj 1981 | 00000000 DF *UND* 00000000 _ZN7android16BackupDataReaderD1Ev 1982 | 00000000 DF *UND* 00000000 _ZN7android16BackupDataReaderC1Ei 1983 | 00000000 DF *UND* 00000000 _ZN7android16BackupDataWriter12SetKeyPrefixERKNS_7String8E 1984 | 00000000 DF *UND* 00000000 _ZN7android16BackupDataWriter15WriteEntityDataEPKvj 1985 | 00000000 DF *UND* 00000000 _ZN7android16BackupDataWriter17WriteEntityHeaderERKNS_7String8Ej 1986 | 00000000 DF *UND* 00000000 _ZN7android16BackupDataWriterD1Ev 1987 | 00000000 DF *UND* 00000000 _ZN7android16BackupDataWriterC1Ei 1988 | 00000000 DF *UND* 00000000 _ZN7android17RestoreHelperBase13WriteSnapshotEi 1989 | 00000000 DF *UND* 00000000 _ZN7android17RestoreHelperBase9WriteFileERKNS_7String8EPNS_16BackupDataReaderE 1990 | 00000000 DF *UND* 00000000 _ZN7android13back_up_filesEiPNS_16BackupDataWriterEiPKPKcS5_i 1991 | 00000000 DF *UND* 00000000 _ZN7android17RestoreHelperBaseD1Ev 1992 | 00000000 DF *UND* 00000000 _ZN7android17RestoreHelperBaseC1Ev 1993 | 00000000 DF *UND* 00000000 _ZN7android7String812unlockBufferEj 1994 | 00000000 DF *UND* 00000000 _ZN7android7ObbFileC1Ev 1995 | 00000000 DF *UND* 00000000 _ZN7android7ObbFile8readFromEPKc 1996 | 0005eed0 g DF .text 000000b4 _ZN7android33android_Configuration_getFromJavaEP7_JNIEnvP8_jobjectP14AConfiguration 1997 | 00000000 DF *UND* 00000000 __cxa_finalize 1998 | 00076014 g D .init_array 00000000 __INIT_ARRAY__ 1999 | 0007601c g D .fini_array 00000000 __FINI_ARRAY__ 2000 | 00075ac0 g D *ABS* 00000000 __exidx_end 2001 | 00072fa0 g D *ABS* 00000000 __exidx_start 2002 | 00078dac g D .data 00000000 __data_start 2003 | 0007e0a0 g D *ABS* 00000000 _edata 2004 | 0007e0a0 g D *ABS* 00000000 __bss_start 2005 | 0007e0a0 g D *ABS* 00000000 __bss_start__ 2006 | 0007eb08 g D *ABS* 00000000 _bss_end__ 2007 | 0007eb08 g D *ABS* 00000000 __bss_end__ 2008 | 0007eb08 g D *ABS* 00000000 __end__ 2009 | 0007eb08 g D *ABS* 00000000 _end 2010 | 00080000 g D *ABS* 00000000 _stack 2011 | 2012 | 2013 | -------------------------------------------------------------------------------- /AndroidLibs/mips/libandroid_runtime.17.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/mips/libandroid_runtime.17.so -------------------------------------------------------------------------------- /AndroidLibs/mips/libskia.17.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/mips/libskia.17.so -------------------------------------------------------------------------------- /AndroidLibs/x86/libandroid_runtime.17.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/x86/libandroid_runtime.17.so -------------------------------------------------------------------------------- /AndroidLibs/x86/libandroid_runtime.19-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/x86/libandroid_runtime.19-2.so -------------------------------------------------------------------------------- /AndroidLibs/x86/libandroid_runtime.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/x86/libandroid_runtime.19.so -------------------------------------------------------------------------------- /AndroidLibs/x86/libskia.17.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/x86/libskia.17.so -------------------------------------------------------------------------------- /AndroidLibs/x86/libskia.19-2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/x86/libskia.19-2.so -------------------------------------------------------------------------------- /AndroidLibs/x86/libskia.19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilibili/NativeBitmapFactory/4b1e086487db4e04f9cb18448737be0997465bcd/AndroidLibs/x86/libskia.19.so -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH :=$(call my-dir) 2 | 3 | include $(CLEAR_VARS) 4 | ifneq ($(ARCH_ARM_HAVE_VFP),true) 5 | LOCAL_CFLAGS += -DSK_SOFTWARE_FLOAT 6 | endif 7 | 8 | ifeq ($(ARCH_ARM_HAVE_NEON),true) 9 | LOCAL_CFLAGS += -D__ARM_HAVE_NEON 10 | endif 11 | 12 | LOCAL_C_INCLUDES += $(AOSP_PATH)/external/skia/include/core \ 13 | $(AOSP_PATH)/frameworks/base/native/include \ 14 | $(AOSP_PATH)/frameworks/base/core/jni/android/graphics \ 15 | $(AOSP_PATH)/frameworks/native/include \ 16 | $(AOSP_PATH)/external/skia/include/images \ 17 | $(AOSP_PATH)/external/skia/include/lazy \ 18 | $(AOSP_PATH)/frameworks/base/include \ 19 | $(AOSP_PATH)/system/core/include \ 20 | 21 | LOCAL_MODULE := ndkbitmap 22 | LOCAL_SRC_FILES := NativeBitmapFactory.cpp 23 | 24 | 25 | 26 | LOCAL_LDLIBS := -L$(AOSP_LIBS_PATH)/armeabi -llog #-lskia.$(API) -landroid_runtime.$(API) 27 | include $(BUILD_SHARED_LIBRARY) 28 | -------------------------------------------------------------------------------- /jni/Android.mk~: -------------------------------------------------------------------------------- 1 | LOCAL_PATH :=$(call my-dir) 2 | include $(CLEAR_VARS) 3 | LOCAL_MODULE := libskia.$(API) 4 | LOCAL_SRC_FILES := ../AndroidLibs/$(TARGET_ARCH)/libskia.$(API).so 5 | 6 | ifeq ($(TARGET_ARCH),x86) 7 | ifneq ($(API),19) 8 | LOCAL_SRC_FILES := ../AndroidLibs/$(TARGET_ARCH)/libskia.17.so 9 | endif 10 | else ifeq ($(TARGET_ARCH),mips) 11 | LOCAL_SRC_FILES := ../AndroidLibs/$(TARGET_ARCH)/libskia.17.so 12 | endif 13 | include $(PREBUILT_SHARED_LIBRARY) 14 | 15 | include $(CLEAR_VARS) 16 | LOCAL_MODULE := libandroid_runtime.$(API) 17 | LOCAL_SRC_FILES := ../AndroidLibs/$(TARGET_ARCH)/libandroid_runtime.$(API).so 18 | ifeq ($(TARGET_ARCH),x86) 19 | ifneq ($(API),19) 20 | LOCAL_SRC_FILES := ../AndroidLibs/$(TARGET_ARCH)/libandroid_runtime.17.so 21 | endif 22 | else ifeq ($(TARGET_ARCH),mips) 23 | LOCAL_SRC_FILES := ../AndroidLibs/$(TARGET_ARCH)/libandroid_runtime.17.so 24 | endif 25 | include $(PREBUILT_SHARED_LIBRARY) 26 | 27 | include $(CLEAR_VARS) 28 | 29 | include $(CLEAR_VARS) 30 | LOCAL_C_INCLUDES:= $(AOSP_PATH)/external/skia/include/core \ 31 | $(AOSP_PATH)/frameworks/base/core/jni/android/graphics \ 32 | $(AOSP_PATH)/frameworks/native/include \ 33 | $(AOSP_PATH)/system/core/include 34 | 35 | LOCAL_SHARED_LIBRARIES := \ 36 | libskia.$(API) \ 37 | libandroid_runtime.$(API) 38 | 39 | LOCAL_MODULE := ndkbitmap.$(API) 40 | LOCAL_SRC_FILES := NativeBitmapFactory.cpp 41 | 42 | 43 | 44 | LOCAL_LDLIBS :=-llog #-lcutils -lskia -ljnigraphics -landroid_runtime 45 | include $(BUILD_SHARED_LIBRARY) 46 | -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := armeabi x86 -------------------------------------------------------------------------------- /jni/NativeBitmapFactory.cpp: -------------------------------------------------------------------------------- 1 | //#include 2 | //#include 3 | #include 4 | #include 5 | //#include 6 | //#include 7 | #include 8 | #include 9 | #include 10 | #include "NativeBitmapFactory.h" 11 | 12 | #define SUCCESS 0 13 | #define EGENERIC -1 14 | #define ENOMEM -2 15 | #define SIZE_OF_SKBITMAP 256 16 | 17 | //api11: _ZN8SkBitmapC1Ev 18 | //api14: //api15://api16://api17://api18://api19: 19 | typedef void (*SkBitmap_ctor)(void *); 20 | 21 | //api11: _ZN8SkBitmapD1Ev 22 | //api14://api15://api16://api17://api18: //api19: 23 | typedef void (*SkBitmap_dtor)(void *); 24 | 25 | //api11: _ZN8SkBitmap9setConfigENS_6ConfigEiii 26 | //api14://api15://api16://api17://api18: 27 | //api19: _ZN8SkBitmap9setConfigENS_6ConfigEiij 28 | typedef void (*SkBitmap_setConfig)(void *, int, int, int, int); 29 | 30 | //api19-2(4.4.4): _ZN8SkBitmap9setConfigENS_6ConfigEiij11SkAlphaType 31 | typedef void (*SkBitmap_setConfig_19later)(void *, int, int, int, size_t, uint8_t); 32 | 33 | //API21: _ZN8SkBitmap7setInfoERK11SkImageInfoj 34 | typedef void (*SkBitmap_setInfo)(void *, int *, int); 35 | // typedef int (*SkImageInfo_make)(int, int, int, int); 36 | 37 | //api11: _ZN8SkBitmap11allocPixelsEPNS_9AllocatorEP12SkColorTable 38 | //api14: //api15://api16://api17://api18://api19 39 | typedef void (*SkBitmap_allocPixels)(void *, void *, void *); 40 | 41 | //api11: _ZNK8SkBitmap9eraseARGBEjjjj 42 | //api14://api15://api16://api17://api18://api19: 43 | typedef void (*SkBitmap_eraseARGB)(void *, size_t, size_t, size_t, size_t); 44 | 45 | //API11: _ZN11GraphicsJNI12createBitmapEP7_JNIEnvP8SkBitmapbP11_jbyteArrayi 46 | //API19: _ZN11GraphicsJNI12createBitmapEP7_JNIEnvP8SkBitmapiP11_jbyteArrayi 47 | typedef jobject (*GraphicsJNI_createBitmap)(void *, void *, int, void *, int); 48 | 49 | //API19: _ZN11GraphicsJNI12createBitmapEP7_JNIEnvP8SkBitmapP11_jbyteArrayiS5_P10_jintArrayi 50 | //API21: _ZN11GraphicsJNI12createBitmapEP7_JNIEnvP8SkBitmapP11_jbyteArrayiS5_P8_jobjecti 51 | typedef jobject (*GraphicsJNI_createBitmap_19later)(void *, void *, void *, int, void *, void *, int); 52 | 53 | 54 | /** 55 | * Describes how to interpret the alpha compoent of a pixel. 56 | */ 57 | enum SkAlphaType 58 | { 59 | /** 60 | * All pixels should be treated as opaque, regardless of the value stored 61 | * in their alpha field. Used for legacy images that wrote 0 or garbarge 62 | * in their alpha field, but intended the RGB to be treated as opaque. 63 | */ 64 | kIgnore_SkAlphaType, 65 | 66 | /** 67 | * All pixels are stored as opaque. This differs slightly from kIgnore in 68 | * that kOpaque has correct "opaque" values stored in the pixels, while 69 | * kIgnore may not, but in both cases the caller should treat the pixels 70 | * as opaque. 71 | */ 72 | kOpaque_SkAlphaType, 73 | 74 | /** 75 | * All pixels have their alpha premultiplied in their color components. 76 | * This is the natural format for the rendering target pixels. 77 | */ 78 | kPremul_SkAlphaType, 79 | 80 | /** 81 | * All pixels have their color components stored without any regard to the 82 | * alpha. e.g. this is the default configuration for PNG images. 83 | * 84 | * This alpha-type is ONLY supported for input images. Rendering cannot 85 | * generate this on output. 86 | */ 87 | kUnpremul_SkAlphaType, 88 | 89 | kLastEnum_SkAlphaType = kUnpremul_SkAlphaType 90 | }; 91 | 92 | /** 93 | * Describes how to interpret the components of a pixel. 94 | */ 95 | enum SkColorType { 96 | kUnknown_SkColorType, 97 | kAlpha_8_SkColorType, 98 | kRGB_565_SkColorType, 99 | kARGB_4444_SkColorType, 100 | kRGBA_8888_SkColorType, 101 | kBGRA_8888_SkColorType, 102 | kIndex_8_SkColorType, 103 | 104 | kLastEnum_SkColorType = kIndex_8_SkColorType, 105 | 106 | kN32_SkColorType = kRGBA_8888_SkColorType, 107 | 108 | #ifdef SK_SUPPORT_LEGACY_N32_NAME 109 | kPMColor_SkColorType = kN32_SkColorType 110 | #endif 111 | }; 112 | 113 | static int SkBitmapConfigToColorType(int config) { 114 | static const SkColorType gCT[] = { 115 | kUnknown_SkColorType, // kNo_Config 116 | kAlpha_8_SkColorType, // kA8_Config 117 | kIndex_8_SkColorType, // kIndex8_Config 118 | kRGB_565_SkColorType, // kRGB_565_Config 119 | kARGB_4444_SkColorType, // kARGB_4444_Config 120 | kN32_SkColorType, // kARGB_8888_Config 121 | }; 122 | return gCT[config]; 123 | }; 124 | 125 | struct skbitmap_sys_t 126 | { 127 | void *libskia; 128 | 129 | SkBitmap_ctor sk_ctor; 130 | SkBitmap_dtor sk_dtor; 131 | SkBitmap_setConfig sk_setConfig; 132 | SkBitmap_setConfig_19later sk_setConfig_19later; 133 | SkBitmap_setInfo sk_setInfo; 134 | SkBitmap_allocPixels sk_allocPixels; 135 | SkBitmap_eraseARGB sk_eraseARGB; 136 | 137 | void *libjnigraphics; 138 | GraphicsJNI_createBitmap gjni_createBitmap; 139 | GraphicsJNI_createBitmap_19later gjni_createBitmap_19later; 140 | }; 141 | 142 | struct ndkbitmap_object_t 143 | { 144 | skbitmap_sys_t *sys; 145 | }; 146 | 147 | static void *InitLibrary(struct skbitmap_sys_t *p_sys) 148 | { 149 | /* DL Open libskia */ 150 | void *p_library; 151 | p_library = dlopen("libskia.so", RTLD_NOW | RTLD_LOCAL); 152 | if (!p_library) 153 | return NULL; 154 | 155 | /* Register symbols */ 156 | p_sys->sk_ctor = (SkBitmap_ctor)(dlsym(p_library, "_ZN8SkBitmapC1Ev")); 157 | p_sys->sk_dtor = (SkBitmap_dtor)(dlsym(p_library, "_ZN8SkBitmapD1Ev")); 158 | p_sys->sk_setConfig = (SkBitmap_setConfig)(dlsym(p_library, "_ZN8SkBitmap9setConfigENS_6ConfigEiii")); 159 | if (!p_sys->sk_setConfig) 160 | { 161 | p_sys->sk_setConfig = (SkBitmap_setConfig)(dlsym(p_library, "_ZN8SkBitmap9setConfigENS_6ConfigEiij")); 162 | } 163 | p_sys->sk_setConfig_19later = (SkBitmap_setConfig_19later)(dlsym(p_library, "_ZN8SkBitmap9setConfigENS_6ConfigEiij11SkAlphaType")); 164 | if (!p_sys->sk_setConfig && !p_sys->sk_setConfig_19later) 165 | { 166 | p_sys->sk_setInfo = (SkBitmap_setInfo)(dlsym(p_library, "_ZN8SkBitmap7setInfoERK11SkImageInfoj")); 167 | } 168 | 169 | p_sys->sk_allocPixels = (SkBitmap_allocPixels)(dlsym(p_library, "_ZN8SkBitmap11allocPixelsEPNS_9AllocatorEP12SkColorTable")); 170 | if (!p_sys->sk_allocPixels) { // for Nexus Android M Preview 171 | p_sys->sk_allocPixels = (SkBitmap_allocPixels)(dlsym(p_library, "_ZN8SkBitmap14tryAllocPixelsEPNS_9AllocatorEP12SkColorTable")); 172 | } 173 | p_sys->sk_eraseARGB = (SkBitmap_eraseARGB)(dlsym(p_library, "_ZNK8SkBitmap9eraseARGBEjjjj")); 174 | 175 | __android_log_print(ANDROID_LOG_INFO, "NativeBitmapFactory", "[libskia] ctor:%p,dtor:%p,setConfig:%p,setConfig_19later:%p,setInfo:%p,allocPixels:%p,eraseARGB:%p", 176 | p_sys->sk_ctor, p_sys->sk_dtor, 177 | p_sys->sk_setConfig, p_sys->sk_setConfig_19later, p_sys->sk_setInfo, 178 | p_sys->sk_allocPixels, p_sys->sk_eraseARGB); 179 | // We need all the Symbols 180 | if (!(p_sys->sk_ctor && p_sys->sk_dtor 181 | && (p_sys->sk_setConfig || p_sys->sk_setConfig_19later || p_sys->sk_setInfo) 182 | && p_sys->sk_allocPixels && p_sys->sk_eraseARGB)) 183 | { 184 | __android_log_print(ANDROID_LOG_ERROR, "NativeBitmapFactory", "InitLibrary dlsym failed"); 185 | dlclose(p_library); 186 | return NULL; 187 | } 188 | return p_library; 189 | } 190 | 191 | static void *InitLibrary2(struct skbitmap_sys_t *p_sys) 192 | { 193 | /* DL Open libjnigraphics */ 194 | void *p_library; 195 | p_library = dlopen("libandroid_runtime.so", RTLD_NOW | RTLD_LOCAL); 196 | if (!p_library) 197 | return NULL; 198 | 199 | /* Register symbols */ 200 | p_sys->gjni_createBitmap = (GraphicsJNI_createBitmap)(dlsym(p_library, "_ZN11GraphicsJNI12createBitmapEP7_JNIEnvP8SkBitmapbP11_jbyteArrayi")); 201 | if(!p_sys->gjni_createBitmap) 202 | { 203 | p_sys->gjni_createBitmap = (GraphicsJNI_createBitmap)(dlsym(p_library, "_ZN11GraphicsJNI12createBitmapEP7_JNIEnvP8SkBitmapiP11_jbyteArrayi")); 204 | } 205 | 206 | p_sys->gjni_createBitmap_19later = (GraphicsJNI_createBitmap_19later)(dlsym(p_library, "_ZN11GraphicsJNI12createBitmapEP7_JNIEnvP8SkBitmapP11_jbyteArrayiS5_P10_jintArrayi")); 207 | if(!p_sys->gjni_createBitmap_19later) 208 | { 209 | p_sys->gjni_createBitmap_19later = (GraphicsJNI_createBitmap_19later)(dlsym(p_library, "_ZN11GraphicsJNI12createBitmapEP7_JNIEnvP8SkBitmapP11_jbyteArrayiS5_P8_jobjecti")); 210 | } 211 | 212 | __android_log_print(ANDROID_LOG_INFO, "NativeBitmapFactory", "[GraphicsJNI] createBitmap:%p,createBitmap_19later:%p", 213 | p_sys->gjni_createBitmap, 214 | p_sys->gjni_createBitmap_19later); 215 | 216 | // We need all the Symbols 217 | if (!p_sys->gjni_createBitmap && !p_sys->gjni_createBitmap_19later) 218 | { 219 | __android_log_print(ANDROID_LOG_ERROR, "NativeBitmapFactory", "InitLibrary2 dlsym failed"); 220 | p_sys->gjni_createBitmap = NULL; 221 | p_sys->gjni_createBitmap_19later = NULL; 222 | dlclose(p_library); 223 | return NULL; 224 | } 225 | return p_library; 226 | } 227 | 228 | ndkbitmap_object_t *ndkbitmap_obj; 229 | 230 | 231 | static int Open(ndkbitmap_object_t *obj) 232 | { 233 | skbitmap_sys_t *sys = (skbitmap_sys_t *)malloc(sizeof (*sys)); 234 | 235 | if (sys == NULL) 236 | return ENOMEM; 237 | 238 | sys->libskia = InitLibrary(sys); 239 | if (sys->libskia == NULL) 240 | { 241 | free(sys); 242 | return EGENERIC; 243 | } 244 | sys->libjnigraphics = InitLibrary2(sys); 245 | if (sys->libjnigraphics == NULL) 246 | { 247 | free(sys); 248 | return EGENERIC; 249 | } 250 | 251 | obj->sys = sys; 252 | return SUCCESS; 253 | } 254 | 255 | static void Close(ndkbitmap_object_t *obj) 256 | { 257 | skbitmap_sys_t *sys = obj->sys; 258 | 259 | if (sys == NULL) { 260 | return; 261 | } 262 | if (sys->libjnigraphics) { 263 | dlclose(sys->libjnigraphics); 264 | sys->libjnigraphics = NULL; 265 | } 266 | if (sys->libskia) { 267 | dlclose(sys->libskia); 268 | sys->libskia = NULL; 269 | } 270 | free(sys); 271 | } 272 | 273 | static int Start() 274 | { 275 | ndkbitmap_obj = (ndkbitmap_object_t *)malloc(sizeof(*ndkbitmap_obj)); 276 | int r = Open(ndkbitmap_obj); 277 | if (r != SUCCESS) 278 | { 279 | if (ndkbitmap_obj){ 280 | free(ndkbitmap_obj); 281 | ndkbitmap_obj = NULL; 282 | } 283 | return ENOMEM; 284 | } 285 | return SUCCESS; 286 | } 287 | 288 | static int Stop() 289 | { 290 | if (ndkbitmap_obj == NULL) 291 | { 292 | return SUCCESS; 293 | } 294 | Close(ndkbitmap_obj); 295 | free(ndkbitmap_obj); 296 | ndkbitmap_obj = NULL; 297 | return SUCCESS; 298 | } 299 | 300 | 301 | // inline void *createBitmap2(int config, int w, int h) 302 | // { 303 | // SkBitmap *bm = new SkBitmap(); 304 | // bm->setConfig(config, w, h); 305 | // //bm->setIsOpaque(!hasAlpha); 306 | // bm->allocPixels(); 307 | // //bm->eraseColor(0); 308 | // bm->eraseARGB(0, 0, 0, 0); 309 | // } 310 | 311 | inline void *createSkBitmap(ndkbitmap_object_t *obj, int config, int w, int h) 312 | { 313 | skbitmap_sys_t *p_sys = obj->sys; 314 | if (p_sys == NULL || p_sys->libskia == NULL) 315 | { 316 | return NULL; 317 | } 318 | void *skBitmap = malloc(SIZE_OF_SKBITMAP); 319 | if (!skBitmap) 320 | { 321 | return NULL; 322 | } 323 | *((uint32_t *) ((uint32_t)skBitmap + SIZE_OF_SKBITMAP - 4)) = 0xbaadbaad; 324 | //ctor 325 | p_sys->sk_ctor(skBitmap); 326 | if (p_sys->sk_setConfig) 327 | { 328 | p_sys->sk_setConfig(skBitmap, config, w, h, 0); 329 | } 330 | else if (p_sys->sk_setConfig_19later) 331 | { 332 | p_sys->sk_setConfig_19later(skBitmap, config, w, h, 0, (uint8_t)kPremul_SkAlphaType); 333 | } else if (p_sys->sk_setInfo) 334 | { 335 | int imageInfo[4] = {w, h, SkBitmapConfigToColorType(config), kPremul_SkAlphaType}; 336 | p_sys->sk_setInfo(skBitmap, imageInfo, 0); 337 | } 338 | p_sys->sk_allocPixels(skBitmap, NULL, NULL); 339 | p_sys->sk_eraseARGB(skBitmap, 0, 0, 0, 0); 340 | 341 | 342 | if (!(*((uint32_t *) ((uint32_t)skBitmap + SIZE_OF_SKBITMAP - 4)) == 0xbaadbaad) ) 343 | { 344 | free(skBitmap); 345 | return NULL; 346 | } 347 | 348 | return skBitmap; 349 | } 350 | 351 | jboolean Java_tv_cjump_jni_NativeBitmapFactory_init(JNIEnv *env) 352 | { 353 | #if defined(__arm__) 354 | __android_log_print(ANDROID_LOG_INFO, "NativeBitmapFactory", "Loaded libndkbitmap.so arch is: ARM"); 355 | #elif defined(__i386__) 356 | __android_log_print(ANDROID_LOG_INFO, "NativeBitmapFactory", "Loaded libndkbitmap.so arch is: x86"); 357 | #endif 358 | int r = Start(); 359 | return r == SUCCESS; 360 | } 361 | 362 | jboolean Java_tv_cjump_jni_NativeBitmapFactory_release(JNIEnv *env) 363 | { 364 | int r = Stop(); 365 | return r == SUCCESS; 366 | } 367 | 368 | jobject createBitmap(JNIEnv *env , jobject obj, jint w, jint h, jint config, jboolean hasAlpha, int isMuttable, int api) 369 | { 370 | void *bm = createSkBitmap(ndkbitmap_obj, config, w, h); 371 | if (bm == NULL) 372 | { 373 | return NULL; 374 | } 375 | jobject result = NULL; 376 | skbitmap_sys_t *p_sys = ndkbitmap_obj->sys; 377 | if(p_sys->libjnigraphics) 378 | { 379 | if(p_sys->gjni_createBitmap) 380 | { 381 | result = p_sys->gjni_createBitmap(env, bm, isMuttable, NULL, -1); 382 | } else if(p_sys->gjni_createBitmap_19later) { 383 | result = p_sys->gjni_createBitmap_19later(env, bm, NULL, isMuttable, NULL, NULL, -1); 384 | } 385 | 386 | } 387 | 388 | return result; 389 | } 390 | 391 | jobject Java_tv_cjump_jni_NativeBitmapFactory_createBitmap(JNIEnv *env , jobject obj, jint w, jint h, jint config, jboolean hasAlpha) 392 | { 393 | return createBitmap(env, obj, w, h, config, hasAlpha, true, 0); 394 | } 395 | 396 | jobject Java_tv_cjump_jni_NativeBitmapFactory_createBitmap19(JNIEnv *env , jobject obj, jint w, jint h, jint config, jboolean hasAlpha) 397 | { 398 | return createBitmap(env, obj, w, h, config, hasAlpha, 0x3, 19); 399 | } -------------------------------------------------------------------------------- /jni/NativeBitmapFactory.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #ifndef _Included_tv_cjump_jni_NativeBitmapFactory 4 | #define _Included_tv_cjump_jni_NativeBitmapFactory 5 | #ifdef __cplusplus 6 | extern "C" { 7 | #endif 8 | jobject createBitmap(JNIEnv * env ,jobject obj,jint w,jint h,jint config,jboolean hasAlpha,int isMuttable); 9 | 10 | JNIEXPORT jboolean JNICALL Java_tv_cjump_jni_NativeBitmapFactory_init(JNIEnv * env); 11 | 12 | JNIEXPORT jboolean JNICALL Java_tv_cjump_jni_NativeBitmapFactory_release(JNIEnv * env); 13 | 14 | JNIEXPORT jobject JNICALL Java_tv_cjump_jni_NativeBitmapFactory_createBitmap(JNIEnv * env ,jobject obj,jint w,jint h,jint config,jboolean hasAlph); 15 | 16 | JNIEXPORT jobject JNICALL Java_tv_cjump_jni_NativeBitmapFactory_createBitmap19(JNIEnv * env ,jobject obj,jint w,jint h,jint config,jboolean hasAlph); 17 | #ifdef __cplusplus 18 | } 19 | #endif 20 | #endif --------------------------------------------------------------------------------