HomeSort by relevance Sort by last modified time
    Searched defs:env (Results 1 - 25 of 607) 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/libs/deviceutil/jni/
CtsJniOnLoad.cpp 23 JNIEnv *env = NULL; local
25 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
29 if (register_android_cts_FileUtils(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/os/jni/
CtsOsJniOnLoad.cpp 35 JNIEnv *env = NULL; local
37 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
41 if (register_android_os_cts_CpuFeatures(env)) {
45 if (register_android_os_cts_CpuInstructions(env)) {
49 if (register_android_os_cts_TaggedPointer(env)) {
53 if (register_android_os_cts_HardwareName(env)) {
57 if (register_android_os_cts_OSFeatures(env)) {
61 if (register_android_os_cts_NoExecutePermissionTest(env)) {
65 if (register_android_os_cts_SeccompTest(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 extern int register_android_security_cts_MMapExecutableTest(JNIEnv* env);
27 extern int register_android_security_cts_AudioPolicyBinderTest(JNIEnv* env);
28 extern int register_android_security_cts_EncryptionTest(JNIEnv* env);
31 JNIEnv *env = NULL; local
33 if (vm->GetEnv((void **) &env, JNI_VERSION_1_4) != JNI_OK) {
37 if (register_android_security_cts_CharDeviceTest(env)) {
41 if (register_android_security_cts_LinuxRngTest(env)) {
45 if (register_android_security_cts_NativeCodeTest(env)) {
49 if (register_android_security_cts_LoadEffectLibraryTest(env)) {
53 if (register_android_security_cts_SELinuxTest(env)) {
    [all...]
  /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/compiler-rt/test/tsan/
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);
  /external/v8/test/cctest/
test-js-arm64-variables.cc 73 LocalContext env; local
74 v8::HandleScope scope(env->GetIsolate());
85 LocalContext env; local
86 v8::HandleScope scope(env->GetIsolate());
96 LocalContext env; local
97 v8::HandleScope scope(env->GetIsolate());
107 LocalContext env; local
108 v8::HandleScope scope(env->GetIsolate());
121 LocalContext env; local
122 v8::HandleScope scope(env->GetIsolate())
135 LocalContext env; local
    [all...]
  /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/core/jni/
onload.cpp 23 int register_android_server_AlarmManagerService(JNIEnv* env);
24 int register_android_server_AssetAtlasService(JNIEnv* env);
25 int register_android_server_BatteryStatsService(JNIEnv* env);
26 int register_android_server_ConsumerIrService(JNIEnv *env);
27 int register_android_server_InputApplicationHandle(JNIEnv* env);
28 int register_android_server_InputWindowHandle(JNIEnv* env);
29 int register_android_server_InputManager(JNIEnv* env);
30 int register_android_server_LightsService(JNIEnv* env);
31 int register_android_server_PowerManagerService(JNIEnv* env);
32 int register_android_server_SerialService(JNIEnv* env);
51 JNIEnv* env = NULL; local
    [all...]
  /hardware/intel/common/utils/ituxd/jni/
onload.cpp 23 int register_intel_thermal_ituxd(JNIEnv* env);
30 JNIEnv* env = NULL; local
33 if (vm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK) {
37 ALOG_ASSERT(env, "Could not retrieve the env!");
39 register_intel_thermal_ituxd(env);
  /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)
  /ndk/sources/android/crazy_linker/tests/
jni_lib.cpp 16 const char* env = getenv(VARNAME); local
17 if (!env || strcmp(env, "INIT")) {
19 "%s: Env variable %s has invalid value: %s (expected INIT)\n",
22 env);
32 const char* env = getenv(VARNAME); local
33 if (!env || strcmp(env, "LOADED")) {
35 "%s: Env variable %s has invalid value: %s (expected LOADED)\n",
38 env);
    [all...]
  /packages/apps/Terminal/jni/
jni_init.cpp 23 extern int register_com_android_terminal_Terminal(JNIEnv *env);
29 JNIEnv *env; local
30 if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
35 register_com_android_terminal_Terminal(env);
  /external/jmonkeyengine/engine/src/bullet-native/
jmePhysicsSpace.h 57 JNIEnv* env; member in class:jmePhysicsSpace
  /external/toybox/toys/posix/
env.c 0 /* env.c - Set the environment for command invocation.
5 * http://opengroup.org/onlinepubs/9699919799/utilities/env.html
7 USE_ENV(NEWTOY(env, "^i", TOYFLAG_USR|TOYFLAG_BIN))
9 config ENV
10 bool "env"
13 usage: env [-i] [NAME=VALUE...] [command [option...]]
32 char *env = strtok(*ev, del), *val = 0; local
34 if (env) val = strtok(0, del);
35 if (val) setenv(env, val, 1);
  /frameworks/ex/framesequence/jni/
BitmapDecoderJNI.cpp 27 void throwException(JNIEnv* env, const char* error) {
28 jclass clazz = env->FindClass("java/lang/RuntimeException");
29 env->ThrowNew(clazz, error);
33 JNIEnv* env; local
34 if (vm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_6) != JNI_OK) {
37 if (FrameSequence_OnLoad(env)) {
41 if (JavaStream_OnLoad(env)) {
  /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);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_lrint.c 49 fenv_t env; local
52 feholdexcept(&env);
56 feupdateenv(&env);
  /external/toybox/toys/other/
printenv.c 24 char **env, **var = toys.optargs; local
32 for (env = environ; *env; env++) {
33 char *out = *env;
  /frameworks/base/core/jni/
android_media_DeviceCallback.cpp 34 JNIDeviceCallback::JNIDeviceCallback(JNIEnv* env, jobject thiz, jobject weak_thiz,
40 jclass clazz = env->GetObjectClass(thiz);
44 mClass = (jclass)env->NewGlobalRef(clazz);
48 mObject = env->NewGlobalRef(weak_thiz);
56 JNIEnv *env = AndroidRuntime::getJNIEnv(); local
57 if (env == NULL) {
60 env->DeleteGlobalRef(mObject);
61 env->DeleteGlobalRef(mClass);
67 JNIEnv *env = AndroidRuntime::getJNIEnv(); local
68 if (env == NULL)
    [all...]

Completed in 621 milliseconds

1 2 3 4 5 6 7 8 91011>>