Searched defs:thiz (Results 51 - 70 of 70) sorted by relevance

123

/system/media/wilhelm/src/itf/
H A DI3DMacroscopic.c32 I3DMacroscopic *thiz = (I3DMacroscopic *) self; local
33 interface_lock_exclusive(thiz);
34 thiz->mSize.mWidth = width;
35 thiz->mSize.mHeight = height;
36 thiz->mSize.mDepth = depth;
37 interface_unlock_exclusive(thiz);
53 I3DMacroscopic *thiz = (I3DMacroscopic *) self; local
54 interface_lock_shared(thiz);
55 SLmillimeter width = thiz->mSize.mWidth;
56 SLmillimeter height = thiz
79 I3DMacroscopic *thiz = (I3DMacroscopic *) self; local
103 I3DMacroscopic *thiz = (I3DMacroscopic *) self; local
131 I3DMacroscopic *thiz = (I3DMacroscopic *) self; local
154 I3DMacroscopic *thiz = (I3DMacroscopic *) self; local
213 I3DMacroscopic *thiz = (I3DMacroscopic *) self; local
[all...]
H A DI3DSource.c26 I3DSource *thiz = (I3DSource *) self; local
27 interface_lock_poke(thiz);
28 thiz->mHeadRelative = SL_BOOLEAN_FALSE != headRelative; // normalize
29 interface_unlock_poke(thiz);
43 I3DSource *thiz = (I3DSource *) self; local
44 interface_lock_peek(thiz);
45 SLboolean headRelative = thiz->mHeadRelative;
46 interface_unlock_peek(thiz);
64 I3DSource *thiz = (I3DSource *) self; local
65 interface_lock_exclusive(thiz);
84 I3DSource *thiz = (I3DSource *) self; interface_lock_shared(thiz); local
101 I3DSource *thiz = (I3DSource *) self; local
118 I3DSource *thiz = (I3DSource *) self; local
137 I3DSource *thiz = (I3DSource *) self; local
152 I3DSource *thiz = (I3DSource *) self; local
170 I3DSource *thiz = (I3DSource *) self; local
185 I3DSource *thiz = (I3DSource *) self; local
204 I3DSource *thiz = (I3DSource *) self; local
224 I3DSource *thiz = (I3DSource *) self; local
245 I3DSource *thiz = (I3DSource *) self; local
266 I3DSource *thiz = (I3DSource *) self; local
301 I3DSource *thiz = (I3DSource *) self; local
[all...]
H A DIAndroidBufferQueue.c30 static SLuint32 getAssociatedState(IAndroidBufferQueue *thiz) argument
33 switch (InterfaceToObjectID(thiz)) {
35 state = ((CMediaPlayer *) thiz->mThis)->mPlay.mState;
38 state = ((CAudioPlayer *) thiz->mThis)->mPlay.mState;
229 IAndroidBufferQueue *thiz = (IAndroidBufferQueue *) self; local
231 interface_lock_exclusive(thiz);
234 if (SL_PLAYSTATE_STOPPED == getAssociatedState(thiz)) {
235 thiz->mCallback = callback;
236 thiz->mContext = pContext;
239 switch (InterfaceToObjectID(thiz)) {
266 IAndroidBufferQueue *thiz = (IAndroidBufferQueue *) self; local
343 IAndroidBufferQueue *thiz = (IAndroidBufferQueue *) self; local
414 IAndroidBufferQueue *thiz = (IAndroidBufferQueue *) self; local
435 IAndroidBufferQueue *thiz = (IAndroidBufferQueue *) self; local
459 IAndroidBufferQueue *thiz = (IAndroidBufferQueue *) self; local
483 IAndroidBufferQueue *thiz = (IAndroidBufferQueue *) self; local
502 IAndroidBufferQueue *thiz = (IAndroidBufferQueue *) self; local
[all...]
H A DIAudioIODeviceCapabilities.c76 IAudioIODeviceCapabilities * thiz = (IAudioIODeviceCapabilities *) self; local
77 interface_lock_exclusive(thiz);
78 thiz->mAvailableAudioInputsChangedCallback = callback;
79 thiz->mAvailableAudioInputsChangedContext = pContext;
80 interface_unlock_exclusive(thiz);
146 IAudioIODeviceCapabilities * thiz = (IAudioIODeviceCapabilities *) self; local
147 interface_lock_exclusive(thiz);
148 thiz->mAvailableAudioOutputsChangedCallback = callback;
149 thiz->mAvailableAudioOutputsChangedContext = pContext;
150 interface_unlock_exclusive(thiz);
163 IAudioIODeviceCapabilities * thiz = (IAudioIODeviceCapabilities *) self; local
315 IAudioIODeviceCapabilities *thiz = (IAudioIODeviceCapabilities *) self; local
[all...]
H A DIDynamicInterfaceManagement.c29 IDynamicInterfaceManagement *thiz = (IDynamicInterfaceManagement *) self; local
30 assert(NULL != thiz);
31 IObject *thisObject = InterfaceToIObject(thiz);
92 slDynamicInterfaceManagementCallback callback = thiz->mCallback;
93 void *context = thiz->mContext;
99 (*callback)(&thiz->mItf, context, SL_DYNAMIC_ITF_EVENT_ASYNC_TERMINATION, result, iid);
114 IDynamicInterfaceManagement *thiz = (IDynamicInterfaceManagement *) self; local
115 IObject *thisObject = InterfaceToIObject(thiz);
138 result = ThreadPool_add_ppi(&thisObject->mEngine->mThreadPool, HandleAdd, thiz,
210 IDynamicInterfaceManagement *thiz local
285 IDynamicInterfaceManagement *thiz = (IDynamicInterfaceManagement *) self; local
362 IDynamicInterfaceManagement *thiz = (IDynamicInterfaceManagement *) self; local
445 IDynamicInterfaceManagement *thiz = (IDynamicInterfaceManagement *) self; local
466 IDynamicInterfaceManagement *thiz = (IDynamicInterfaceManagement *) self; local
[all...]
H A DIEffectSend.c39 static struct EnableLevel *getEnableLevel(IEffectSend *thiz, const void *pAuxEffect) argument
42 CAudioPlayer *audioPlayer = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ?
43 (CAudioPlayer *) thiz->mThis : NULL;
81 return &thiz->mEnableLevels[aux];
121 IEffectSend *thiz = (IEffectSend *) self; local
122 struct EnableLevel *enableLevel = getEnableLevel(thiz, pAuxEffect);
126 interface_lock_exclusive(thiz);
133 CAudioPlayer *ap = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ?
134 (CAudioPlayer *) thiz->mThis : NULL;
154 interface_unlock_exclusive(thiz);
170 IEffectSend *thiz = (IEffectSend *) self; local
197 IEffectSend *thiz = (IEffectSend *) self; local
232 IEffectSend *thiz = (IEffectSend *) self; local
260 IEffectSend *thiz = (IEffectSend *) self; local
295 IEffectSend *thiz = (IEffectSend *) self; local
323 IEffectSend *thiz = (IEffectSend *) self; local
[all...]
H A DIEngineCapabilities.c107 IEngineCapabilities *thiz = (IEngineCapabilities *) self; local
114 if (index >= thiz->mMaxIndexLED) {
124 *pIndex = thiz->mMaxIndexLED;
129 for (index = 0; index < thiz->mMaxIndexLED; ++index) {
149 IEngineCapabilities *thiz = (IEngineCapabilities *) self; local
156 if (index >= thiz->mMaxIndexVibra) {
166 *pIndex = thiz->mMaxIndexVibra;
171 for (index = 0; index < thiz->mMaxIndexVibra; ++index) {
194 IEngineCapabilities *thiz = (IEngineCapabilities *) self; local
195 *pIsThreadSafe = thiz
215 IEngineCapabilities *thiz = (IEngineCapabilities *) self; local
[all...]
H A DIPlay.c31 IPlay *thiz = (IPlay *) self; local
35 CAudioPlayer *audioPlayer = (SL_OBJECTID_AUDIOPLAYER == InterfaceToObjectID(thiz)) ?
36 (CAudioPlayer *) thiz->mThis : NULL;
38 interface_lock_exclusive(thiz);
39 SLuint32 oldState = thiz->mState;
42 for (;; interface_cond_wait(thiz)) {
69 thiz->mState = state;
84 thiz->mState = SL_PLAYSTATE_STOPPING;
99 thiz->mState = state;
105 interface_unlock_exclusive_attributes(thiz, att
124 IPlay *thiz = (IPlay *) self; local
160 IPlay *thiz = (IPlay *) self; local
202 IPlay *thiz = (IPlay *) self; local
244 IPlay *thiz = (IPlay *) self; local
264 IPlay *thiz = (IPlay *) self; local
293 IPlay *thiz = (IPlay *) self; local
312 IPlay *thiz = (IPlay *) self; local
337 IPlay *thiz = (IPlay *) self; local
365 IPlay *thiz = (IPlay *) self; local
388 IPlay *thiz = (IPlay *) self; local
428 IPlay *thiz = (IPlay *) self; local
457 IPlay *thiz = (IPlay *) self; local
[all...]
H A DIRecord.c31 IRecord *thiz = (IRecord *) self; local
32 interface_lock_exclusive(thiz);
33 thiz->mState = state;
35 android_audioRecorder_setRecordState(InterfaceToCAudioRecorder(thiz), state);
37 interface_unlock_exclusive(thiz);
54 IRecord *thiz = (IRecord *) self; local
58 interface_lock_shared(thiz);
59 SLuint32 state = thiz->mState;
60 interface_unlock_shared(thiz);
73 IRecord *thiz local
94 IRecord *thiz = (IRecord *) self; local
121 IRecord *thiz = (IRecord *) self; local
145 IRecord *thiz = (IRecord *) self; local
167 IRecord *thiz = (IRecord *) self; local
186 IRecord *thiz = (IRecord *) self; local
211 IRecord *thiz = (IRecord *) self; local
239 IRecord *thiz = (IRecord *) self; local
262 IRecord *thiz = (IRecord *) self; local
284 IRecord *thiz = (IRecord *) self; local
313 IRecord *thiz = (IRecord *) self; local
[all...]
H A DIEnvironmentalReverb.c50 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
51 interface_lock_exclusive(thiz);
52 thiz->mProperties.roomLevel = room;
56 if (NO_ENVREVERB(thiz)) {
59 android::status_t status = android_erev_setParam(thiz->mEnvironmentalReverbEffect,
64 interface_unlock_exclusive(thiz);
78 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
79 interface_lock_shared(thiz);
83 if (NO_ENVREVERB(thiz)) {
86 android::status_t status = android_erev_getParam(thiz
111 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
140 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
170 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
199 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
229 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
258 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
290 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
319 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
349 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
378 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
410 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
439 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
469 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
498 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
528 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
557 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
587 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
616 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
671 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
700 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
762 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
775 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
784 IEnvironmentalReverb *thiz = (IEnvironmentalReverb *) self; local
[all...]
H A DIEqualizer.c59 IEqualizer *thiz = (IEqualizer *) self; local
60 interface_lock_exclusive(thiz);
61 thiz->mEnabled = (SLboolean) enabled;
65 if (NO_EQ(thiz)) {
69 thiz->mEqEffect->setEnabled((bool) thiz->mEnabled);
73 interface_unlock_exclusive(thiz);
86 IEqualizer *thiz = (IEqualizer *) self; local
87 interface_lock_exclusive(thiz);
88 SLboolean enabled = thiz
114 IEqualizer *thiz = (IEqualizer *) self; local
132 IEqualizer *thiz = (IEqualizer *) self; local
149 IEqualizer *thiz = (IEqualizer *) self; local
182 IEqualizer *thiz = (IEqualizer *) self; local
217 IEqualizer *thiz = (IEqualizer *) self; local
253 IEqualizer *thiz = (IEqualizer *) self; local
296 IEqualizer *thiz = (IEqualizer *) self; local
346 IEqualizer *thiz = (IEqualizer *) self; local
382 IEqualizer *thiz = (IEqualizer *) self; local
417 IEqualizer *thiz = (IEqualizer *) self; local
435 IEqualizer *thiz = (IEqualizer *) self; local
479 IEqualizer *thiz = (IEqualizer *) self; local
507 IEqualizer *thiz = (IEqualizer *) self; local
516 IEqualizer *thiz = (IEqualizer *) self; local
[all...]
H A DIObject.c29 IObject *thiz = (IObject *) self; local
30 assert(NULL != thiz);
31 const ClassTable *clazz = thiz->mClass;
38 object_lock_exclusive(thiz);
39 state = thiz->mState;
44 thiz->mState = SL_OBJECT_STATE_REALIZING_2;
47 result = (*realize)(thiz, SL_BOOLEAN_TRUE);
48 assert(SL_OBJECT_STATE_REALIZING_2 == thiz->mState);
70 thiz->mState = state;
73 slObjectCallback callback = thiz
88 IObject *thiz = (IObject *) self; local
172 IObject *thiz = (IObject *) self; local
231 IObject *thiz = (IObject *) self; local
291 IObject *thiz = (IObject *) self; local
336 IObject *thiz = (IObject *) self; local
392 IObject *thiz = (IObject *) self; local
407 Abort_internal(IObject *thiz) argument
509 IObject *thiz = (IObject *) self; local
521 IObject *thiz = (IObject *) self; local
647 IObject *thiz = (IObject *) self; local
669 IObject *thiz = (IObject *) self; local
698 IObject *thiz = (IObject *) self; local
753 IObject *thiz = (IObject *) self; local
789 IObject *thiz = (IObject *) self; local
810 IObject_Publish(IObject *thiz) argument
[all...]
H A DIOutputMixExt.c176 IOutputMixExt *thiz = (IOutputMixExt *) self; local
177 IObject *thisObject = thiz->mThis;
182 if (thiz->mDestroyRequested) {
190 thiz->mDestroyRequested = SL_BOOLEAN_FALSE;
194 activeMask = thiz->mActiveMask;
200 Track *track = &thiz->mTracks[i];
341 IOutputMixExt *thiz = (IOutputMixExt *) self; local
342 thiz->mItf = &IOutputMixExt_Itf;
343 thiz->mActiveMask = 0;
344 Track *track = &thiz
355 IOutputMixExt_checkAudioPlayerSourceSink(CAudioPlayer *thiz) argument
[all...]
H A DIEngine.c133 CLEDDevice *thiz = (CLEDDevice *) construct(pCLEDDevice_class, exposedMask, self); local
134 if (NULL == thiz) {
137 thiz->mDeviceID = deviceID;
138 IObject_Publish(&thiz->mObject);
140 *pDevice = &thiz->mObject.mItf;
171 CVibraDevice *thiz = (CVibraDevice *) construct(pCVibraDevice_class, exposedMask, self); local
172 if (NULL == thiz) {
175 thiz->mDeviceID = deviceID;
176 IObject_Publish(&thiz->mObject);
178 *pDevice = &thiz
208 CAudioPlayer *thiz = (CAudioPlayer *) construct(pCAudioPlayer_class, exposedMask, self); local
446 CAudioRecorder *thiz = (CAudioRecorder *) construct(pCAudioRecorder_class, exposedMask, local
581 CMidiPlayer *thiz = (CMidiPlayer *) construct(pCMidiPlayer_class, exposedMask, self); local
627 CListener *thiz = (CListener *) construct(pCListener_class, exposedMask, self); local
664 C3DGroup *thiz = (C3DGroup *) construct(pC3DGroup_class, exposedMask, self); local
698 COutputMix *thiz = (COutputMix *) construct(pCOutputMix_class, exposedMask, self); local
753 CMetadataExtractor *thiz = (CMetadataExtractor *) local
994 IEngine *thiz = (IEngine *) self; local
1087 CMediaPlayer *thiz = (CMediaPlayer *) construct(pCMediaPlayer_class, exposedMask, local
1469 IXAEngine *thiz = (IXAEngine *) self; local
[all...]
/system/media/wilhelm/src/
H A Dlocks.c34 void object_lock_exclusive_(IObject *thiz, const char *file, int line) argument
37 ok = pthread_mutex_trylock(&thiz->mMutex);
40 int32_t oldGeneration = thiz->mGeneration;
46 ok = pthread_mutex_lock_timeout_np(&thiz->mMutex, backoffs[i]);
60 int32_t newGeneration = thiz->mGeneration;
70 pthread_t owner = thiz->mOwner;
74 " (tid %d) at %s:%d\n", file, line, *(void **)&me, gettid(), thiz,
75 *(void **)&owner, ownerTid, thiz->mFile, thiz->mLine);
79 ok = pthread_mutex_lock(&thiz
110 object_lock_exclusive(IObject *thiz) argument
122 object_unlock_exclusive_(IObject *thiz, const char *file, int line) argument
135 object_unlock_exclusive(IObject *thiz) argument
149 object_unlock_exclusive_attributes_(IObject *thiz, unsigned attributes, const char *file, int line) argument
275 object_cond_wait_(IObject *thiz, const char *file, int line) argument
294 object_cond_wait(IObject *thiz) argument
305 object_cond_signal(IObject *thiz) argument
317 object_cond_broadcast(IObject *thiz) argument
[all...]
H A Dsles.c30 bool IsInterfaceInitialized(IObject *thiz, unsigned MPH) argument
32 assert(NULL != thiz);
34 const ClassTable *clazz = thiz->mClass;
42 switch (thiz->mInterfaceStates[index]) {
54 SLuint32 IObjectToObjectID(IObject *thiz) argument
56 assert(NULL != thiz);
58 const ClassTable *clazz = thiz->mClass;
488 IObject *thiz; local
490 thiz = (IObject *) calloc(1, clazz->mSize);
491 if (NULL != thiz) {
[all...]
/system/media/mca/filterfw/jni/
H A Djni_gl_environment.cpp65 jboolean Java_android_filterfw_core_GLEnvironment_nativeAllocate(JNIEnv* env, jobject thiz) { argument
66 return ToJBool(WrapObjectInJava(new GLEnv(), env, thiz, true));
69 jboolean Java_android_filterfw_core_GLEnvironment_nativeDeallocate(JNIEnv* env, jobject thiz) { argument
70 return ToJBool(DeleteNativeObject<GLEnv>(env, thiz));
74 jobject thiz) {
75 GLEnv* gl_env = ConvertFromJava<GLEnv>(env, thiz);
80 jobject thiz) {
81 GLEnv* gl_env = ConvertFromJava<GLEnv>(env, thiz);
85 jboolean Java_android_filterfw_core_GLEnvironment_nativeIsActive(JNIEnv* env, jobject thiz) { argument
86 GLEnv* gl_env = ConvertFromJava<GLEnv>(env, thiz);
73 Java_android_filterfw_core_GLEnvironment_nativeInitWithNewContext(JNIEnv* env, jobject thiz) argument
79 Java_android_filterfw_core_GLEnvironment_nativeInitWithCurrentContext(JNIEnv* env, jobject thiz) argument
90 Java_android_filterfw_core_GLEnvironment_nativeIsContextActive(JNIEnv* env, jobject thiz) argument
100 Java_android_filterfw_core_GLEnvironment_nativeActivate(JNIEnv* env, jobject thiz) argument
105 Java_android_filterfw_core_GLEnvironment_nativeDeactivate(JNIEnv* env, jobject thiz) argument
110 Java_android_filterfw_core_GLEnvironment_nativeSwapBuffers(JNIEnv* env, jobject thiz) argument
133 Java_android_filterfw_core_GLEnvironment_nativeAddSurface(JNIEnv* env, jobject thiz, jobject surface) argument
193 Java_android_filterfw_core_GLEnvironment_nativeAddSurfaceTexture(JNIEnv* env, jobject thiz, jobject surfaceTexture, jint width, jint height) argument
268 Java_android_filterfw_core_GLEnvironment_nativeAddSurfaceFromMediaRecorder( JNIEnv* env, jobject thiz, jobject jmediarecorder) argument
357 Java_android_filterfw_core_GLEnvironment_nativeActivateSurfaceId(JNIEnv* env, jobject thiz, jint surfaceId) argument
364 Java_android_filterfw_core_GLEnvironment_nativeRemoveSurfaceId(JNIEnv* env, jobject thiz, jint surfaceId) argument
371 Java_android_filterfw_core_GLEnvironment_nativeSetSurfaceTimestamp(JNIEnv* env, jobject thiz, jlong timestamp) argument
[all...]
H A Djni_gl_frame.cpp45 jobject thiz,
53 return ToJBool(WrapObjectInJava(frame, env, thiz, true));
61 jobject thiz,
70 return ToJBool(WrapObjectInJava(frame, env, thiz, true));
78 jobject thiz,
87 return ToJBool(WrapObjectInJava(frame, env, thiz, true));
95 jobject thiz,
101 return ToJBool(WrapObjectInJava(frame, env, thiz, true));
108 jboolean Java_android_filterfw_core_GLFrame_nativeDeallocate(JNIEnv* env, jobject thiz) { argument
109 return ToJBool(DeleteNativeObject<GLFrame>(env, thiz));
44 Java_android_filterfw_core_GLFrame_nativeAllocate(JNIEnv* env, jobject thiz, jobject gl_env, jint width, jint height) argument
60 Java_android_filterfw_core_GLFrame_nativeAllocateWithTexture(JNIEnv* env, jobject thiz, jobject gl_env, jint tex_id, jint width, jint height) argument
77 Java_android_filterfw_core_GLFrame_nativeAllocateWithFbo(JNIEnv* env, jobject thiz, jobject gl_env, jint fbo_id, jint width, jint height) argument
94 Java_android_filterfw_core_GLFrame_nativeAllocateExternal(JNIEnv* env, jobject thiz, jobject gl_env) argument
112 Java_android_filterfw_core_GLFrame_setNativeData(JNIEnv* env, jobject thiz, jbyteArray data, jint offset, jint length) argument
129 Java_android_filterfw_core_GLFrame_getNativeData(JNIEnv* env, jobject thiz) argument
141 Java_android_filterfw_core_GLFrame_setNativeInts(JNIEnv* env, jobject thiz, jintArray ints) argument
158 Java_android_filterfw_core_GLFrame_getNativeInts(JNIEnv* env, jobject thiz) argument
170 Java_android_filterfw_core_GLFrame_setNativeFloats(JNIEnv* env, jobject thiz, jfloatArray floats) argument
194 Java_android_filterfw_core_GLFrame_getNativeFloats(JNIEnv* env, jobject thiz) argument
216 Java_android_filterfw_core_GLFrame_setNativeBitmap(JNIEnv* env, jobject thiz, jobject bitmap, jint size) argument
233 Java_android_filterfw_core_GLFrame_getNativeBitmap(JNIEnv* env, jobject thiz, jobject bitmap) argument
248 Java_android_filterfw_core_GLFrame_setNativeViewport(JNIEnv* env, jobject thiz, jint x, jint y, jint width, jint height) argument
258 Java_android_filterfw_core_GLFrame_getNativeTextureId(JNIEnv* env, jobject thiz) argument
263 Java_android_filterfw_core_GLFrame_getNativeFboId(JNIEnv* env, jobject thiz) argument
268 Java_android_filterfw_core_GLFrame_generateNativeMipMap(JNIEnv* env, jobject thiz) argument
273 Java_android_filterfw_core_GLFrame_setNativeTextureParam(JNIEnv* env, jobject thiz, jint param, jint value) argument
281 Java_android_filterfw_core_GLFrame_nativeResetParams(JNIEnv* env, jobject thiz) argument
286 Java_android_filterfw_core_GLFrame_nativeCopyFromNative(JNIEnv* env, jobject thiz, jobject frame) argument
297 Java_android_filterfw_core_GLFrame_nativeCopyFromGL(JNIEnv* env, jobject thiz, jobject frame) argument
308 Java_android_filterfw_core_GLFrame_nativeFocus(JNIEnv* env, jobject thiz) argument
313 Java_android_filterfw_core_GLFrame_nativeReattachTexToFbo(JNIEnv* env, jobject thiz) argument
318 Java_android_filterfw_core_GLFrame_nativeDetachTexFromFbo(JNIEnv* env, jobject thiz) argument
[all...]
H A Djni_native_frame.cpp36 jobject thiz,
38 return ToJBool(WrapObjectInJava(new NativeFrame(size), env, thiz, true));
41 jboolean Java_android_filterfw_core_NativeFrame_nativeDeallocate(JNIEnv* env, jobject thiz) { argument
42 return ToJBool(DeleteNativeObject<NativeFrame>(env, thiz));
54 jobject thiz,
58 NativeFrame* frame = ConvertFromJava<NativeFrame>(env, thiz);
73 jobject thiz,
75 NativeFrame* frame = ConvertFromJava<NativeFrame>(env, thiz);
88 jobject thiz,
90 NativeFrame* frame = ConvertFromJava<NativeFrame>(env, thiz);
35 Java_android_filterfw_core_NativeFrame_nativeAllocate(JNIEnv* env, jobject thiz, jint size) argument
53 Java_android_filterfw_core_NativeFrame_setNativeData(JNIEnv* env, jobject thiz, jbyteArray data, jint offset, jint length) argument
72 Java_android_filterfw_core_NativeFrame_getNativeData(JNIEnv* env, jobject thiz, jint size) argument
87 Java_android_filterfw_core_NativeFrame_getNativeBuffer(JNIEnv* env, jobject thiz, jobject buffer) argument
98 Java_android_filterfw_core_NativeFrame_setNativeInts(JNIEnv* env, jobject thiz, jintArray ints) argument
116 Java_android_filterfw_core_NativeFrame_getNativeInts(JNIEnv* env, jobject thiz, jint size) argument
132 Java_android_filterfw_core_NativeFrame_setNativeFloats(JNIEnv* env, jobject thiz, jfloatArray floats) argument
150 Java_android_filterfw_core_NativeFrame_getNativeFloats(JNIEnv* env, jobject thiz, jint size) argument
166 Java_android_filterfw_core_NativeFrame_setNativeBitmap(JNIEnv* env, jobject thiz, jobject bitmap, jint size, jint bytes_per_sample) argument
216 Java_android_filterfw_core_NativeFrame_getNativeBitmap(JNIEnv* env, jobject thiz, jobject bitmap, jint size, jint bytes_per_sample) argument
268 Java_android_filterfw_core_NativeFrame_getNativeCapacity(JNIEnv* env, jobject thiz) argument
273 Java_android_filterfw_core_NativeFrame_nativeCopyFromNative(JNIEnv* env, jobject thiz, jobject frame) argument
284 Java_android_filterfw_core_NativeFrame_nativeCopyFromGL(JNIEnv* env, jobject thiz, jobject frame) argument
[all...]
H A Djni_shader_program.cpp39 jobject thiz,
54 thiz,
62 thiz,
66 jboolean Java_android_filterfw_core_ShaderProgram_deallocate(JNIEnv* env, jobject thiz) { argument
67 return ToJBool(DeleteNativeObject<ShaderProgram>(env, thiz));
70 jboolean Java_android_filterfw_core_ShaderProgram_compileAndLink(JNIEnv* env, jobject thiz) { argument
71 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz);
76 jobject thiz,
79 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz);
91 jobject thiz,
38 Java_android_filterfw_core_ShaderProgram_allocate(JNIEnv* env, jobject thiz, jobject gl_env, jstring vertex_shader, jstring fragment_shader) argument
75 Java_android_filterfw_core_ShaderProgram_setUniformValue(JNIEnv* env, jobject thiz, jstring key, jobject value) argument
90 Java_android_filterfw_core_ShaderProgram_getUniformValue(JNIEnv* env, jobject thiz, jstring key) argument
98 Java_android_filterfw_core_ShaderProgram_shaderProcess(JNIEnv* env, jobject thiz, jobjectArray inputs, jobject output) argument
143 Java_android_filterfw_core_ShaderProgram_setSourceRegion(JNIEnv* env, jobject thiz, jfloat x0, jfloat y0, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) argument
161 Java_android_filterfw_core_ShaderProgram_setTargetRegion(JNIEnv* env, jobject thiz, jfloat x0, jfloat y0, jfloat x1, jfloat y1, jfloat x2, jfloat y2, jfloat x3, jfloat y3) argument
179 Java_android_filterfw_core_ShaderProgram_setShaderClearsOutput(JNIEnv* env, jobject thiz, jboolean clears) argument
190 Java_android_filterfw_core_ShaderProgram_setShaderBlendEnabled(JNIEnv* env, jobject thiz, jboolean enable) argument
201 Java_android_filterfw_core_ShaderProgram_setShaderBlendFunc(JNIEnv* env, jobject thiz, jint sfactor, jint dfactor) argument
213 Java_android_filterfw_core_ShaderProgram_setShaderClearColor(JNIEnv* env, jobject thiz, jfloat r, jfloat g, jfloat b) argument
226 Java_android_filterfw_core_ShaderProgram_setShaderDrawMode(JNIEnv* env, jobject thiz, jint draw_mode) argument
237 Java_android_filterfw_core_ShaderProgram_setShaderTileCounts(JNIEnv* env, jobject thiz, jint x_count, jint y_count) argument
249 Java_android_filterfw_core_ShaderProgram_setShaderVertexCount(JNIEnv* env, jobject thiz, jint vertex_count) argument
260 Java_android_filterfw_core_ShaderProgram_beginShaderDrawing(JNIEnv* env, jobject thiz) argument
265 Java_android_filterfw_core_ShaderProgram_setShaderAttributeValues( JNIEnv* env, jobject thiz, jstring attr_name, jfloatArray values, jint component_count) argument
294 Java_android_filterfw_core_ShaderProgram_setShaderAttributeVertexFrame( JNIEnv* env, jobject thiz, jstring attr_name, jobject vertex_frame, jint type, jint component_count, jint stride, jint offset, jboolean normalize) argument
[all...]

Completed in 197 milliseconds

123