Searched defs:env (Results 1 - 11 of 11) sorted by relevance

/hardware/intel/common/utils/ituxd/jni/
H A Donload.cpp23 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);
H A DthermalJNI.cpp129 static jboolean isFileExists(JNIEnv* env, jobject obj, jstring jPath) argument
134 path = jPath ? env->GetStringUTFChars(jPath, NULL) : NULL;
146 env->ReleaseStringUTFChars(jPath, path);
150 static jint getThermalZoneIndex(JNIEnv* env, jobject obj, jstring jType) argument
155 type = jType ? env->GetStringUTFChars(jType, NULL) : NULL;
157 jniThrowNullPointerException(env, "Type");
162 env->ReleaseStringUTFChars(jType, type);
166 static jint getThermalZoneIndexContains(JNIEnv* env, jobject obj, jstring jType) argument
171 type = jType ? env->GetStringUTFChars(jType, NULL) : NULL;
173 jniThrowNullPointerException(env, "Typ
182 getCoolingDeviceIndex(JNIEnv* env, jobject obj, jstring jType) argument
198 getCoolingDeviceIndexContains(JNIEnv* env, jobject obj, jstring jType) argument
214 writeSysfs(JNIEnv* env, jobject obj, jstring jPath, jint jVal) argument
230 readSysfs(JNIEnv* env, jobject obj, jstring jPath) argument
251 readSysfsTemp(JNIEnv* env, jobject obj, jstring jPath) argument
290 register_intel_thermal_ituxd(JNIEnv* env) argument
[all...]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_ports/
H A Darm_cpudetect.c16 char *env; local
17 env = getenv("VPX_SIMD_CAPS");
18 if (env && *env) {
19 *flags = (int)strtol(env, NULL, 0);
27 char *env; local
28 env = getenv("VPX_SIMD_CAPS_MASK");
29 return env && *env ? (int)strtol(env, NUL
[all...]
H A Dx86.h124 char *env; local
128 env = getenv("VPX_SIMD_CAPS");
130 if (env && *env)
131 return (int)strtol(env, NULL, 0);
133 env = getenv("VPX_SIMD_CAPS_MASK");
135 if (env && *env)
136 mask = strtol(env, NULL, 0);
/hardware/libhardware/tests/camera2/
H A DTestSettings.cpp53 char *env = getenv("CAMERA2_TEST_FORKING_DISABLED"); local
54 if (env) {
55 mForkingDisabled = atoi(env);
58 env = getenv("CAMERA2_TEST_DEVICE_ID");
59 if (env) {
60 mDeviceId = atoi(env);
/hardware/intel/img/psb_video/src/
H A Dpsb_drv_debug.c241 * read a config "env" for libva.conf or from environment setting
243 * return 0: the "env" is set, and the value is copied into env_value
244 * 1: the env is not set
246 int psb_parse_config(char *env, char *env_value) argument
253 if (env == NULL)
266 if (strcmp(token, env) == 0) {
278 env_ptr = getenv(env);
/hardware/intel/common/libva/va/
H A Dva.c53 * read a config "env" for libva.conf or from environment setting
55 * return 0: the "env" is set, and the value is copied into env_value
56 * 1: the env is not set
58 int va_parseConfig(char *env, char *env_value) argument
64 if (env == NULL)
77 if (strcmp(token, env) == 0) {
89 /* no setting in config file, use env setting */
90 value = getenv(env);
/hardware/intel/img/libdrm/libdrm/
H A Dxf86drm.c122 const char *env; local
123 if (((env = getenv("LIBGL_DEBUG")) && strstr(env, "verbose")) || drm_server_info)
/hardware/ril/reference-ril/
H A Dreference-ril.c3371 const RIL_RadioFunctions *RIL_Init(const struct RIL_Env *env, int argc, char **argv) argument
3378 s_rilenv = env;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc5248 Environment* UnitTest::AddEnvironment(Environment* env) { argument
5249 if (env == NULL) {
5253 impl_->environments().push_back(env);
5254 return env;
5694 static void SetUpEnvironment(Environment* env) { env->SetUp(); } argument
5695 static void TearDownEnvironment(Environment* env) { env->TearDown(); } argument
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h2906 const char* const env = getenv(name);
2907 return (env != NULL && env[0] != '\0') ? env : NULL;
18643 Environment* AddEnvironment(Environment* env);
18678 friend Environment* AddGlobalTestEnvironment(Environment* env);
18731 inline Environment* AddGlobalTestEnvironment(Environment* env) { argument
18732 return UnitTest::GetInstance()->AddEnvironment(env);

Completed in 6340 milliseconds