HomeSort by relevance Sort by last modified time
    Searched defs:env (Results 1 - 25 of 534) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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 26 JNIEnv *env = NULL; local
28 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
32 if (register_android_security_cts_CharDeviceTest(env)) {
36 if (register_android_security_cts_LinuxRngTest(env)) {
40 if (register_android_security_cts_NativeCodeTest(env)) {
44 if (register_android_security_cts_LoadEffectLibraryTest(env)) {
  /external/chromium_org/chrome/app/android/
chrome_android_initializer.cc 16 JNIEnv* env = base::android::AttachCurrentThread(); local
17 if (!content::RegisterLibraryLoaderEntryHook(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 26 JNIEnv* env = base::android::AttachCurrentThread(); local
27 if (!content::RegisterLibraryLoaderEntryHook(env, false))
32 env,
37 if (!android_webview::RegisterJni(env))
  /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/chrome/common/
chrome_version_info_posix.cc 11 char* env = getenv("CHROME_VERSION_EXTRA"); local
12 if (!env)
14 std::string modifier(env);
  /external/chromium_org/content/browser/android/
browser_startup_config.cc 13 JNIEnv* env = base::android::AttachCurrentThread(); local
14 return Java_BrowserStartupConfig_browserMayStartAsynchonously(env);
18 JNIEnv* env = base::android::AttachCurrentThread(); local
19 Java_BrowserStartupConfig_browserStartupComplete(env, result);
22 bool RegisterBrowserStartupConfig(JNIEnv* env) {
23 return RegisterNativesImpl(env);
  /external/chromium_org/content/public/test/
content_test_suite_base.cc 54 JNIEnv* env = base::android::AttachCurrentThread(); local
55 content::android::RegisterCommonJni(env);
56 content::android::RegisterBrowserJni(env);
57 media::RegisterJni(env);
58 net::android::RegisterJni(env);
59 ui::android::RegisterJni(env);
60 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);
  /frameworks/webview/chromium/plat_support/
jni_entry_point.cpp 24 void RegisterDrawGLFunctor(JNIEnv* env);
25 void RegisterGraphicsUtils(JNIEnv* env);
30 JNIEnv* env = NULL; local
31 jint ret = vm->AttachCurrentThread(&env, NULL);
33 android::RegisterDrawGLFunctor(env);
34 android::RegisterGraphicsUtils(env);
  /art/runtime/entrypoints/portable/
portable_jni_entrypoints.cc 27 JNIEnvExt* env = self->GetJniEnv(); local
28 uint32_t saved_local_ref_cookie = env->local_ref_cookie;
29 env->local_ref_cookie = env->locals.GetSegmentState();
41 JNIEnvExt* env = self->GetJniEnv(); local
42 env->locals.SetSegmentState(env->local_ref_cookie);
43 env->local_ref_cookie = saved_local_ref_cookie;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_lrint.c 49 fenv_t env; local
52 feholdexcept(&env);
56 feupdateenv(&env);

Completed in 1022 milliseconds

1 2 3 4 5 6 7 8 91011>>