/frameworks/base/media/jni/mediaeditor/ |
VideoEditorJava.h | 62 JNIEnv* pEnv) \ 66 pEnv, \ 137 JNIEnv* pEnv); \ 186 JNIEnv* pEnv) \ 190 pEnv, \ 197 JNIEnv* pEnv, \ 202 pEnv, \ 210 JNIEnv* pEnv, \ 215 pEnv, \ 226 JNIEnv* pEnv); \ [all...] |
VideoEditorMain.cpp | 140 JNIEnv* pEnv, 147 JNIEnv* pEnv, 151 JNIEnv* pEnv, 157 JNIEnv* pEnv, 162 JNIEnv* pEnv, 167 JNIEnv* pEnv, 171 JNIEnv* pEnv, 196 JNIEnv* pEnv, 206 JNIEnv* pEnv, 212 static int videoEditor_stopPreview(JNIEnv* pEnv, [all...] |
VideoEditorClasses.cpp | [all...] |
VideoEditorJava.cpp | 32 JNIEnv* pEnv, 53 jniThrowException(pEnv, "java/lang/IllegalArgumentException", pMessage); 61 JNIEnv* pEnv, 88 jniThrowException(pEnv, "java/lang/RuntimeException", pMessage); 96 JNIEnv* pEnv, 118 jniThrowException(pEnv, "java/lang/IllegalStateException", pMessage); 126 JNIEnv* pEnv, 138 jclass clazz = pEnv->FindClass(pName); 141 pEnv->ExceptionClear(); 159 jniThrowException(pEnv, "java/lang/ClassNotFoundException" [all...] |
VideoEditorClasses.h | 319 JNIEnv* pEnv); 324 * @param pEnv (IN) JVM Interface pointer 330 JNIEnv* pEnv); 335 * @param pEnv (IN) JVM Interface pointer 344 JNIEnv* pEnv, 366 JNIEnv* pEnv, 391 JNIEnv* pEnv, 424 JNIEnv* pEnv, 431 * @param pEnv (IN) Pointer holding media properties 439 JNIEnv* pEnv, [all...] |
VideoEditorPropertiesMain.cpp | 58 JNIEnv* pEnv, 69 getClipProperties( JNIEnv* pEnv, 81 JNIEnv* pEnv, 111 ADD_TEXT_MARKER_FUN(NULL != pEnv) 114 videoEditPropClass_init(&initialized, (JNIEnv*)pEnv); 118 &gotten, pEnv, (NULL == file), "file is null"); 122 &gotten, pEnv, file, NULL, M4OSA_NULL); 132 videoEditJava_checkAndThrowIllegalArgumentException(&gotten, pEnv, 164 &gotten, pEnv, 170 &gotten, pEnv, [all...] |
VideoEditorOsal.h | 37 JNIEnv* pEnv, 48 JNIEnv* pEnv, 57 JNIEnv* pEnv,
|
VideoEditorOsal.cpp | 261 JNIEnv* pEnv, 291 jniThrowException(pEnv, "java/lang/OutOfMemoryError", "unable to allocate memory");
|
/external/qemu/ |
cpus.c | 468 CPUState *penv = first_cpu; 470 while (penv) { 471 if (!penv->stopped) 473 penv = (CPUState *)penv->next_cpu; 481 CPUState *penv = first_cpu; 483 while (penv) { 484 penv->stop = 1; 485 qemu_thread_signal(penv->thread, SIGUSR1); 486 qemu_cpu_kick(penv); [all...] |
envlist.c | 230 char **env, **penv; local 232 penv = env = malloc((envlist->el_count + 1) * sizeof (char *)); 238 *(penv++) = strdup(entry->ev_var); 240 *penv = NULL; /* NULL terminate the list */
|
/dalvik/vm/ |
JniInternal.h | 102 INLINE void dvmSetJniEnvThreadId(JNIEnv* pEnv, Thread* self) 104 ((JNIEnvExt*)pEnv)->envThreadId = self->threadId; 105 ((JNIEnvExt*)pEnv)->self = self; 122 void dvmUseCheckedJniEnv(JNIEnvExt* pEnv);
|
Init.h | 27 bool ignoreUnrecognized, JNIEnv* pEnv);
|
Native.h | 52 extern "C" void dvmPlatformInvoke(void* pEnv, ClassObject* clazz, int argInfo,
|
/dalvik/vm/arch/generic/ |
Call.cpp | 54 extern "C" void dvmPlatformInvoke(void* pEnv, ClassObject* clazz, int argInfo, 75 void dvmPlatformInvoke(void* pEnv, ClassObject* clazz, int argInfo, int argc, 87 values[0] = &pEnv;
|
/dalvik/vm/arch/mips/ |
CallO32.S | 28 void dvmPlatformInvoke(void* pEnv, ClassObject* clazz, int argInfo, int argc, 33 return_type func(JNIEnv* pEnv, ClassObject* clazz, ...) 35 return_type func(JNIEnv* pEnv, Object* this, ...) 41 Please notice that argc in dvmPlatformInvoke does NOT include pEnv and clazz/this. 170 * t1 :sp+8(first arg position in stack except pEnv and clazz/this) 221 * a0(pEnv)/a1(clazz/this) since they are already there.
|
/external/libpng/contrib/visupng/ |
cexcept.h | 198 jmp_buf *penv; \ 209 #define init_exception_context(ec) ((void)((ec)->penv = 0)) 214 exception__prev = the_exception_context->penv; \ 215 the_exception_context->penv = &exception__env; \ 226 the_exception_context->penv = exception__prev; \ 244 for (;; longjmp(*the_exception_context->penv, 1)) \
|
/dalvik/vm/arch/arm/ |
CallOldABI.S | 32 void dvmPlatformInvoke(void* pEnv, ClassObject* clazz, int argInfo, int argc, 37 return_type func(JNIEnv* pEnv, ClassObject* clazz, ...) 39 return_type func(JNIEnv* pEnv, Object* this, ...) 114 @ (r0=pEnv, r1=this)
|
/dalvik/vm/arch/x86/ |
Call386ABI.S | 27 void dvmPlatformInvoke(void* pEnv, ClassObject* clazz, int argInfo, int argc, 32 return_type func(JNIEnv* pEnv, ClassObject* clazz, ...) 34 return_type func(JNIEnv* pEnv, Object* this, ...)
|
/frameworks/base/include/android_runtime/ |
AndroidRuntime.h | 119 int startVm(JavaVM** pJavaVM, JNIEnv** pEnv);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/sound/ |
ainstr_iw.h | 152 iwffff_env_t penv; /* pitch envelope */ member in struct:iwffff_layer 288 iwffff_xenv_t penv; /* pitch envelope */ member in struct:iwffff_xlayer
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/ |
ainstr_iw.h | 152 iwffff_env_t penv; /* pitch envelope */ member in struct:iwffff_layer 288 iwffff_xenv_t penv; /* pitch envelope */ member in struct:iwffff_xlayer
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
ainstr_iw.h | 155 struct iwffff_env penv; /* pitch envelope */ member in struct:iwffff_layer 291 struct iwffff_xenv penv; /* pitch envelope */ member in struct:iwffff_xlayer
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/ |
ainstr_iw.h | 152 iwffff_env_t penv; /* pitch envelope */ member in struct:iwffff_layer 288 iwffff_xenv_t penv; /* pitch envelope */ member in struct:iwffff_xlayer
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/ |
ainstr_iw.h | 155 struct iwffff_env penv; /* pitch envelope */ member in struct:iwffff_layer 291 struct iwffff_xenv penv; /* pitch envelope */ member in struct:iwffff_xlayer
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_wtsynth.c | 57 static void WT_UpdateEG1 (S_WT_VOICE *pWTVoice, const S_ENVELOPE *pEnv); 58 static void WT_UpdateEG2 (S_WT_VOICE *pWTVoice, const S_ENVELOPE *pEnv); 774 static void WT_UpdateEG1 (S_WT_VOICE *pWTVoice, const S_ENVELOPE *pEnv) 791 pWTVoice->eg1Increment = pEnv->decayTime; 801 if (temp <= pEnv->sustainLevel) 804 temp = pEnv->sustainLevel; 867 static void WT_UpdateEG2 (S_WT_VOICE *pWTVoice, const S_ENVELOPE *pEnv) 885 pWTVoice->eg2Increment = pEnv->decayTime; 895 if (temp <= pEnv->sustainLevel) 898 temp = pEnv->sustainLevel [all...] |