/cts/apps/CtsVerifier/jni/verifier/ |
CtsVerifierJniOnLoad.cpp | 23 JNIEnv *env = NULL; local 25 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) { 29 if (register_com_android_cts_verifier_os_FileUtils(env)) {
|
/cts/tests/jni/ |
CtsJniOnLoad.cpp | 28 JNIEnv *env = NULL; local 30 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) { 34 if (register_android_os_cts_CpuFeatures(env)) { 38 if (register_android_os_cts_OSFeatures(env)) { 42 if (register_android_os_cts_FileUtils(env)) { 46 if (register_android_net_cts_NetlinkSocket(env)) {
|
/cts/tests/tests/drm/jni/ |
CtsDrmJniOnLoad.cpp | 23 JNIEnv *env = NULL; local 25 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) { 29 if (register_android_drm_cts_NativeCodeTest(env)) {
|
/cts/tests/tests/jni/libjnitest/ |
register.c | 27 JNIEnv *env = NULL; local 29 if ((*vm)->GetEnv(vm, (void **) &env, JNI_VERSION_1_4) != JNI_OK) { 34 if (register_InstanceNonce(env)) { 40 if (register_StaticNonce(env)) { 46 if (register_JniCTest(env)) { 52 if (register_JniCppTest(env)) {
|
/cts/tests/tests/nativeopengl/standalone/jni/ |
register.cpp | 26 JNIEnv *env = NULL; local 28 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) { 32 if (GLTestHelper::registerNative(env)) {
|
/cts/tests/tests/permission/jni/ |
CtsPermissionsJniOnLoad.cpp | 23 JNIEnv *env = NULL; local 25 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) { 29 if (register_android_permission_cts_FileUtils(env)) {
|
/cts/tests/tests/security/jni/ |
CtsSecurityJniOnLoad.cpp | 27 JNIEnv *env = NULL; local 29 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) { 33 if (register_android_security_cts_CharDeviceTest(env)) { 37 if (register_android_security_cts_LinuxRngTest(env)) { 41 if (register_android_security_cts_NativeCodeTest(env)) { 45 if (register_android_security_cts_LoadEffectLibraryTest(env)) { 49 if (register_android_security_cts_KernelSettingsTest(env)) {
|
/external/chromium_org/chrome/app/android/ |
chrome_android_initializer.cc | 17 JNIEnv* env = base::android::AttachCurrentThread(); local 18 if (!content::RegisterLibraryLoaderEntryHook(env))
|
/external/chromium_org/content/shell/android/linker_test_apk/ |
content_linker_test_android.cc | 20 JNIEnv* env = base::android::AttachCurrentThread(); local 22 if (!content::RegisterLibraryLoaderEntryHook(env)) 27 if (!content::android::RegisterShellJni(env)) 30 if (!content::RegisterLinkerTestsJni(env))
|
/external/chromium_org/content/shell/android/ |
shell_library_loader.cc | 19 JNIEnv* env = base::android::AttachCurrentThread(); local 21 if (!content::RegisterLibraryLoaderEntryHook(env)) 26 if (!content::android::RegisterShellJni(env))
|
/frameworks/opt/net/voip/src/jni/rtp/ |
rtp_jni.cpp | 21 extern int registerRtpStream(JNIEnv *env); 22 extern int registerAudioGroup(JNIEnv *env); 26 JNIEnv *env = NULL; local 27 if (vm->GetEnv((void **)&env, JNI_VERSION_1_4) != JNI_OK || 28 registerRtpStream(env) < 0 || registerAudioGroup(env) < 0) {
|
/external/chromium_org/android_webview/lib/main/ |
webview_entry_point.cc | 27 JNIEnv* env = base::android::AttachCurrentThread(); local 28 if (!content::RegisterLibraryLoaderEntryHook(env)) 33 if (!content::EnsureJniRegistered(env)) 38 env, 43 if (!android_webview::RegisterJni(env))
|
/external/chromium_org/base/test/ |
run_all_unittests.cc | 32 JNIEnv* env = base::android::AttachCurrentThread(); local 33 file_util::RegisterContentUriTestUtils(env);
|
/external/chromium_org/ipc/ |
run_all_unittests.cc | 32 JNIEnv* env = base::android::AttachCurrentThread(); local 33 file_util::RegisterContentUriTestUtils(env);
|
/external/chromium_org/mojo/shell/android/ |
library_loader.cc | 20 bool RegisterMojoJni(JNIEnv* env) { 21 return RegisterNativeMethods(env, kMojoRegisteredMethods, 30 JNIEnv* env = base::android::AttachCurrentThread(); local 32 if (!base::android::RegisterJni(env)) 35 if (!net::android::RegisterJni(env)) 38 if (!RegisterMojoJni(env))
|
/external/chromium_org/remoting/client/jni/ |
chromoting_jni_onload.cc | 17 JNIEnv* env = base::android::AttachCurrentThread(); local 25 env, kRemotingRegisteredMethods, arraysize(kRemotingRegisteredMethods))) {
|
/external/compiler-rt/lib/tsan/lit_tests/ |
longjmp.cc | 6 int foo(jmp_buf env) { 7 longjmp(env, 42); 11 jmp_buf env; local 12 if (setjmp(env) == 42) { 16 foo(env);
|
longjmp2.cc | 6 int foo(sigjmp_buf env) { 7 printf("env=%p\n", env); 8 siglongjmp(env, 42); 12 sigjmp_buf env; local 13 printf("env=%p\n", env); 14 if (sigsetjmp(env, 1) == 42) { 18 foo(env);
|
/frameworks/base/packages/services/PacProcessor/jni/ |
jni_init.cpp | 23 extern int register_com_android_pacprocessor_PacNative(JNIEnv *env); 29 JNIEnv *env; local 30 if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) { 35 register_com_android_pacprocessor_PacNative(env);
|
/frameworks/base/services/jni/ |
onload.cpp | 23 int register_android_server_AlarmManagerService(JNIEnv* env); 24 int register_android_server_ConsumerIrService(JNIEnv *env); 25 int register_android_server_InputApplicationHandle(JNIEnv* env); 26 int register_android_server_InputWindowHandle(JNIEnv* env); 27 int register_android_server_InputManager(JNIEnv* env); 28 int register_android_server_LightsService(JNIEnv* env); 29 int register_android_server_PowerManagerService(JNIEnv* env); 30 int register_android_server_SerialService(JNIEnv* env); 31 int register_android_server_UsbDeviceManager(JNIEnv* env); 32 int register_android_server_UsbHostManager(JNIEnv* env); 45 JNIEnv* env = NULL; local [all...] |
/libcore/luni/src/main/native/ |
Register.cpp | 27 JNIEnv* env; local 28 if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) { 33 ScopedLocalFrame localFrame(env); 35 #define REGISTER(FN) extern void FN(JNIEnv*); FN(env)
|
/external/chromium_org/base/android/ |
context_types.cc | 16 JNIEnv* env = AttachCurrentThread(); local 18 Java_ContextTypes_isRunningInWebapp(env, GetApplicationContext())); 21 bool RegisterContextTypes(JNIEnv* env) { 22 return RegisterNativesImpl(env);
|
/external/chromium_org/content/public/test/ |
content_test_suite_base.cc | 64 JNIEnv* env = base::android::AttachCurrentThread(); local 65 content::android::RegisterCommonJni(env); 66 content::android::RegisterBrowserJni(env); 67 gfx::android::RegisterJni(env); 68 media::RegisterJni(env); 69 net::android::RegisterJni(env); 70 ui::android::RegisterJni(env); 71 ui::shell_dialogs::RegisterJni(env);
|
/external/jmonkeyengine/engine/src/bullet-native/ |
jmePhysicsSpace.h | 57 JNIEnv* env; member in class:jmePhysicsSpace
|
/external/qemu/hw/ |
arm_pic.c | 27 CPUState *env = (CPUState *)opaque; local 31 cpu_interrupt(env, CPU_INTERRUPT_HARD); 33 cpu_reset_interrupt(env, CPU_INTERRUPT_HARD); 37 cpu_interrupt(env, CPU_INTERRUPT_FIQ); 39 cpu_reset_interrupt(env, CPU_INTERRUPT_FIQ); 46 qemu_irq *arm_pic_init_cpu(CPUState *env) 48 return qemu_allocate_irqs(arm_pic_cpu_handler, env, 2);
|