Searched refs:thiz (Results 51 - 75 of 157) sorted by relevance

1234567

/frameworks/base/media/mca/filterfw/jni/
H A Djni_native_program.h27 Java_android_filterfw_core_NativeProgram_allocate(JNIEnv* env, jobject thiz);
30 Java_android_filterfw_core_NativeProgram_deallocate(JNIEnv* env, jobject thiz);
33 Java_android_filterfw_core_NativeProgram_nativeInit(JNIEnv* env, jobject thiz);
37 jobject thiz,
42 jobject thiz,
47 jobject thiz,
52 jobject thiz,
57 jobject thiz,
62 jobject thiz,
67 jobject thiz,
[all...]
H A Djni_gl_environment.h27 Java_android_filterfw_core_GLEnvironment_nativeAllocate(JNIEnv* env, jobject thiz);
30 Java_android_filterfw_core_GLEnvironment_nativeDeallocate(JNIEnv* env, jobject thiz);
33 Java_android_filterfw_core_GLEnvironment_nativeInitWithNewContext(JNIEnv* env, jobject thiz);
36 Java_android_filterfw_core_GLEnvironment_nativeInitWithCurrentContext(JNIEnv* env, jobject thiz);
39 Java_android_filterfw_core_GLEnvironment_nativeIsActive(JNIEnv* env, jobject thiz);
42 Java_android_filterfw_core_GLEnvironment_nativeIsContextActive(JNIEnv* env, jobject thiz);
48 Java_android_filterfw_core_GLEnvironment_nativeActivate(JNIEnv* env, jobject thiz);
51 Java_android_filterfw_core_GLEnvironment_nativeDeactivate(JNIEnv* env, jobject thiz);
54 Java_android_filterfw_core_GLEnvironment_nativeSwapBuffers(JNIEnv* env, jobject thiz);
58 jobject thiz,
[all...]
H A Djni_gl_frame.h28 jobject thiz,
35 jobject thiz,
43 jobject thiz,
51 jobject thiz,
55 Java_android_filterfw_core_GLFrame_nativeDeallocate(JNIEnv* env, jobject thiz);
58 Java_android_filterfw_core_GLFrame_setNativeInts(JNIEnv* env, jobject thiz, jintArray ints);
61 Java_android_filterfw_core_GLFrame_getNativeInts(JNIEnv* env, jobject thiz);
64 Java_android_filterfw_core_GLFrame_setNativeFloats(JNIEnv* env, jobject thiz, jfloatArray ints);
67 Java_android_filterfw_core_GLFrame_getNativeFloats(JNIEnv* env, jobject thiz);
71 jobject thiz,
[all...]
H A Djni_vertex_frame.h27 Java_android_filterfw_core_VertexFrame_nativeAllocate(JNIEnv* env, jobject thiz, jint size);
30 Java_android_filterfw_core_VertexFrame_nativeDeallocate(JNIEnv* env, jobject thiz);
33 Java_android_filterfw_core_VertexFrame_setNativeInts(JNIEnv* env, jobject thiz, jintArray ints);
37 jobject thiz,
42 jobject thiz,
48 Java_android_filterfw_core_VertexFrame_getNativeVboId(JNIEnv* env, jobject thiz);
H A Djni_native_program.cpp30 jboolean Java_android_filterfw_core_NativeProgram_allocate(JNIEnv* env, jobject thiz) { argument
32 return ToJBool(WrapOwnedObjectInJava(std::move(program), env, thiz, true));
35 jboolean Java_android_filterfw_core_NativeProgram_deallocate(JNIEnv* env, jobject thiz) { argument
36 return ToJBool(DeleteNativeObject<NativeProgram>(env, thiz));
39 jboolean Java_android_filterfw_core_NativeProgram_nativeInit(JNIEnv* env, jobject thiz) { argument
40 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz);
45 jobject thiz,
47 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz);
52 jobject thiz,
54 NativeProgram* program = ConvertFromJava<NativeProgram>(env, thiz);
44 Java_android_filterfw_core_NativeProgram_openNativeLibrary(JNIEnv* env, jobject thiz, jstring lib_name) argument
51 Java_android_filterfw_core_NativeProgram_bindInitFunction(JNIEnv* env, jobject thiz, jstring func_name) argument
58 Java_android_filterfw_core_NativeProgram_bindSetValueFunction(JNIEnv* env, jobject thiz, jstring func_name) argument
67 Java_android_filterfw_core_NativeProgram_bindGetValueFunction(JNIEnv* env, jobject thiz, jstring func_name) argument
76 Java_android_filterfw_core_NativeProgram_bindProcessFunction(JNIEnv* env, jobject thiz, jstring func_name) argument
83 Java_android_filterfw_core_NativeProgram_bindResetFunction(JNIEnv* env, jobject thiz, jstring func_name) argument
92 Java_android_filterfw_core_NativeProgram_bindTeardownFunction(JNIEnv* env, jobject thiz, jstring func_name) argument
101 Java_android_filterfw_core_NativeProgram_callNativeInit(JNIEnv* env, jobject thiz) argument
106 Java_android_filterfw_core_NativeProgram_callNativeSetValue(JNIEnv* env, jobject thiz, jstring key, jstring value) argument
120 Java_android_filterfw_core_NativeProgram_callNativeGetValue(JNIEnv* env, jobject thiz, jstring key) argument
131 Java_android_filterfw_core_NativeProgram_callNativeProcess(JNIEnv* env, jobject thiz, jobjectArray inputs, jobject output) argument
180 Java_android_filterfw_core_NativeProgram_callNativeReset(JNIEnv* env, jobject thiz) argument
185 Java_android_filterfw_core_NativeProgram_callNativeTeardown(JNIEnv* env, jobject thiz) argument
[all...]
H A Djni_native_frame.h27 Java_android_filterfw_core_NativeFrame_nativeAllocate(JNIEnv* env, jobject thiz, jint size);
30 Java_android_filterfw_core_NativeFrame_nativeDeallocate(JNIEnv* env, jobject thiz);
39 Java_android_filterfw_core_NativeFrame_setNativeInts(JNIEnv* env, jobject thiz, jintArray ints);
42 Java_android_filterfw_core_NativeFrame_getNativeInts(JNIEnv* env, jobject thiz, jint size);
45 Java_android_filterfw_core_NativeFrame_setNativeFloats(JNIEnv* env, jobject thiz, jfloatArray ints);
48 Java_android_filterfw_core_NativeFrame_getNativeFloats(JNIEnv* env, jobject thiz, jint size);
52 jobject thiz,
58 Java_android_filterfw_core_NativeFrame_getNativeData(JNIEnv* env, jobject thiz, jint size);
61 Java_android_filterfw_core_NativeFrame_getNativeBuffer(JNIEnv* env, jobject thiz, jobject buffer);
65 jobject thiz,
[all...]
H A Djni_shader_program.h30 jobject thiz,
36 Java_android_filterfw_core_ShaderProgram_deallocate(JNIEnv* env, jobject thiz);
39 Java_android_filterfw_core_ShaderProgram_compileAndLink(JNIEnv* env, jobject thiz);
43 jobject thiz,
49 jobject thiz,
54 jobject thiz,
65 jobject thiz,
77 jobject thiz,
89 jobject thiz,
94 jobject thiz,
[all...]
H A Djni_shader_program.cpp39 jobject thiz,
56 return ToJBool(WrapOwnedObjectInJava(std::move(shader), env, thiz, true));
59 jboolean Java_android_filterfw_core_ShaderProgram_deallocate(JNIEnv* env, jobject thiz) { argument
60 return ToJBool(DeleteNativeObject<ShaderProgram>(env, thiz));
63 jboolean Java_android_filterfw_core_ShaderProgram_compileAndLink(JNIEnv* env, jobject thiz) { argument
64 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz);
69 jobject thiz,
72 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz);
84 jobject thiz,
86 ShaderProgram* program = ConvertFromJava<ShaderProgram>(env, thiz);
38 Java_android_filterfw_core_ShaderProgram_allocate(JNIEnv* env, jobject thiz, jobject gl_env, jstring vertex_shader, jstring fragment_shader) argument
68 Java_android_filterfw_core_ShaderProgram_setUniformValue(JNIEnv* env, jobject thiz, jstring key, jobject value) argument
83 Java_android_filterfw_core_ShaderProgram_getUniformValue(JNIEnv* env, jobject thiz, jstring key) argument
91 Java_android_filterfw_core_ShaderProgram_shaderProcess(JNIEnv* env, jobject thiz, jobjectArray inputs, jobject output) argument
136 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
154 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
172 Java_android_filterfw_core_ShaderProgram_setShaderClearsOutput(JNIEnv* env, jobject thiz, jboolean clears) argument
183 Java_android_filterfw_core_ShaderProgram_setShaderBlendEnabled(JNIEnv* env, jobject thiz, jboolean enable) argument
194 Java_android_filterfw_core_ShaderProgram_setShaderBlendFunc(JNIEnv* env, jobject thiz, jint sfactor, jint dfactor) argument
206 Java_android_filterfw_core_ShaderProgram_setShaderClearColor(JNIEnv* env, jobject thiz, jfloat r, jfloat g, jfloat b) argument
219 Java_android_filterfw_core_ShaderProgram_setShaderDrawMode(JNIEnv* env, jobject thiz, jint draw_mode) argument
230 Java_android_filterfw_core_ShaderProgram_setShaderTileCounts(JNIEnv* env, jobject thiz, jint x_count, jint y_count) argument
242 Java_android_filterfw_core_ShaderProgram_setShaderVertexCount(JNIEnv* env, jobject thiz, jint vertex_count) argument
253 Java_android_filterfw_core_ShaderProgram_beginShaderDrawing(JNIEnv* env, jobject thiz) argument
258 Java_android_filterfw_core_ShaderProgram_setShaderAttributeValues( JNIEnv* env, jobject thiz, jstring attr_name, jfloatArray values, jint component_count) argument
287 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...]
H A Djni_gl_frame.cpp45 jobject thiz,
53 return ToJBool(WrapOwnedObjectInJava(std::move(frame), env, thiz, true));
59 jobject thiz,
68 return ToJBool(WrapOwnedObjectInJava(std::move(frame), env, thiz, true));
74 jobject thiz,
83 return ToJBool(WrapOwnedObjectInJava(std::move(frame), env, thiz, true));
89 jobject thiz,
95 return ToJBool(WrapOwnedObjectInJava(std::move(frame), env, thiz, true));
100 jboolean Java_android_filterfw_core_GLFrame_nativeDeallocate(JNIEnv* env, jobject thiz) { argument
101 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
58 Java_android_filterfw_core_GLFrame_nativeAllocateWithTexture(JNIEnv* env, jobject thiz, jobject gl_env, jint tex_id, jint width, jint height) argument
73 Java_android_filterfw_core_GLFrame_nativeAllocateWithFbo(JNIEnv* env, jobject thiz, jobject gl_env, jint fbo_id, jint width, jint height) argument
88 Java_android_filterfw_core_GLFrame_nativeAllocateExternal(JNIEnv* env, jobject thiz, jobject gl_env) argument
104 Java_android_filterfw_core_GLFrame_setNativeData(JNIEnv* env, jobject thiz, jbyteArray data, jint offset, jint length) argument
121 Java_android_filterfw_core_GLFrame_getNativeData(JNIEnv* env, jobject thiz) argument
133 Java_android_filterfw_core_GLFrame_setNativeInts(JNIEnv* env, jobject thiz, jintArray ints) argument
150 Java_android_filterfw_core_GLFrame_getNativeInts(JNIEnv* env, jobject thiz) argument
162 Java_android_filterfw_core_GLFrame_setNativeFloats(JNIEnv* env, jobject thiz, jfloatArray floats) argument
186 Java_android_filterfw_core_GLFrame_getNativeFloats(JNIEnv* env, jobject thiz) argument
208 Java_android_filterfw_core_GLFrame_setNativeBitmap(JNIEnv* env, jobject thiz, jobject bitmap, jint size) argument
225 Java_android_filterfw_core_GLFrame_getNativeBitmap(JNIEnv* env, jobject thiz, jobject bitmap) argument
240 Java_android_filterfw_core_GLFrame_setNativeViewport(JNIEnv* env, jobject thiz, jint x, jint y, jint width, jint height) argument
250 Java_android_filterfw_core_GLFrame_getNativeTextureId(JNIEnv* env, jobject thiz) argument
255 Java_android_filterfw_core_GLFrame_getNativeFboId(JNIEnv* env, jobject thiz) argument
260 Java_android_filterfw_core_GLFrame_generateNativeMipMap(JNIEnv* env, jobject thiz) argument
265 Java_android_filterfw_core_GLFrame_setNativeTextureParam(JNIEnv* env, jobject thiz, jint param, jint value) argument
273 Java_android_filterfw_core_GLFrame_nativeResetParams(JNIEnv* env, jobject thiz) argument
278 Java_android_filterfw_core_GLFrame_nativeCopyFromNative(JNIEnv* env, jobject thiz, jobject frame) argument
289 Java_android_filterfw_core_GLFrame_nativeCopyFromGL(JNIEnv* env, jobject thiz, jobject frame) argument
300 Java_android_filterfw_core_GLFrame_nativeFocus(JNIEnv* env, jobject thiz) argument
305 Java_android_filterfw_core_GLFrame_nativeReattachTexToFbo(JNIEnv* env, jobject thiz) argument
310 Java_android_filterfw_core_GLFrame_nativeDetachTexFromFbo(JNIEnv* env, jobject thiz) argument
[all...]
H A Djni_native_buffer.h43 Java_android_filterfw_core_NativeBuffer_allocate(JNIEnv* env, jobject thiz, jint size);
46 Java_android_filterfw_core_NativeBuffer_deallocate(JNIEnv* env, jobject thiz, jboolean owns_data);
49 Java_android_filterfw_core_NativeBuffer_nativeCopyTo(JNIEnv* env, jobject thiz, jobject new_buffer);
H A Djni_vertex_frame.cpp25 jobject thiz,
28 return ToJBool(WrapOwnedObjectInJava(std::move(frame), env, thiz, true));
31 jboolean Java_android_filterfw_core_VertexFrame_nativeDeallocate(JNIEnv* env, jobject thiz) { argument
32 return ToJBool(DeleteNativeObject<VertexFrame>(env, thiz));
36 jobject thiz,
39 VertexFrame* frame = ConvertFromJava<VertexFrame>(env, thiz);
54 jobject thiz,
56 VertexFrame* frame = ConvertFromJava<VertexFrame>(env, thiz);
71 jobject thiz,
75 VertexFrame* frame = ConvertFromJava<VertexFrame>(env, thiz);
24 Java_android_filterfw_core_VertexFrame_nativeAllocate(JNIEnv* env, jobject thiz, jint size) argument
35 Java_android_filterfw_core_VertexFrame_setNativeInts(JNIEnv* env, jobject thiz, jintArray ints) argument
53 Java_android_filterfw_core_VertexFrame_setNativeFloats(JNIEnv* env, jobject thiz, jfloatArray floats) argument
70 Java_android_filterfw_core_VertexFrame_setNativeData(JNIEnv* env, jobject thiz, jbyteArray data, jint offset, jint length) argument
88 Java_android_filterfw_core_VertexFrame_getNativeVboId(JNIEnv* env, jobject thiz) argument
[all...]
/frameworks/wilhelm/src/desktop/
H A DSndFile.cpp35 struct SndFile *thiz = &thisAP->mSndFile; local
37 pthread_mutex_lock(&thiz->mMutex);
38 if (thiz->mEOF) {
39 pthread_mutex_unlock(&thiz->mMutex);
42 short *pBuffer = &thiz->mBuffer[thiz->mWhich * SndFile_BUFSIZE];
43 if (++thiz->mWhich >= SndFile_NUMBUFS) {
44 thiz->mWhich = 0;
47 count = sf_read_short(thiz->mSNDFILE, pBuffer, (sf_count_t) SndFile_BUFSIZE);
48 pthread_mutex_unlock(&thiz
137 SndFile_checkAudioPlayerSourceSink(CAudioPlayer *thiz) argument
239 SndFile_Realize(CAudioPlayer *thiz) argument
277 SndFile_Destroy(CAudioPlayer *thiz) argument
[all...]
/frameworks/wilhelm/src/objects/
H A DCEngine.cpp59 CEngine *thiz = (CEngine *) self; local
63 int err = pthread_create(&thiz->mSyncThread, (const pthread_attr_t *) NULL, sync_start, thiz);
69 result = ThreadPool_init(&thiz->mThreadPool, 0, 0);
71 thiz->mEngine.mShutdown = SL_BOOLEAN_TRUE;
72 (void) pthread_join(thiz->mSyncThread, (void **) NULL);
82 thiz->mAudioManager = android::interface_cast<android::IAudioManager>(binder);
86 SDL_open(&thiz->mEngine);
104 CEngine *thiz = (CEngine *) self; local
107 unsigned instanceCount = thiz
[all...]
/frameworks/wilhelm/src/itf/
H A DIDeviceVolume.cpp62 IDeviceVolume *thiz = (IDeviceVolume *) self; local
63 interface_lock_poke(thiz);
64 thiz->mVolume[~deviceID] = volume;
65 interface_unlock_poke(thiz);
94 IDeviceVolume *thiz = (IDeviceVolume *) self; local
95 interface_lock_peek(thiz);
96 SLint32 volume = thiz->mVolume[~deviceID];
97 interface_unlock_peek(thiz);
120 IDeviceVolume *thiz = (IDeviceVolume *) self; local
121 thiz
[all...]
H A DIEffectSend.cpp39 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 DIMuteSolo.cpp26 IMuteSolo *thiz = (IMuteSolo *) self; local
27 IObject *thisObject = thiz->mThis;
32 interface_lock_exclusive(thiz);
35 interface_unlock_exclusive(thiz);
38 interface_unlock_exclusive(thiz);
48 interface_unlock_exclusive_attributes(thiz, oldMuteMask != ap->mMuteMask ? ATTR_GAIN :
65 IMuteSolo *thiz = (IMuteSolo *) self; local
66 IObject *thisObject = thiz->mThis;
72 interface_lock_shared(thiz);
85 interface_unlock_shared(thiz);
98 IMuteSolo *thiz = (IMuteSolo *) self; local
137 IMuteSolo *thiz = (IMuteSolo *) self; local
173 IMuteSolo *thiz = (IMuteSolo *) self; local
202 IMuteSolo *thiz = (IMuteSolo *) self; local
[all...]
H A DI3DGrouping.cpp37 I3DGrouping *thiz = (I3DGrouping *) self; local
38 IObject *thisObject = InterfaceToIObject(thiz);
44 interface_lock_exclusive(thiz);
45 C3DGroup *oldGroup = thiz->mGroup;
66 thiz->mGroup = newGroup;
68 interface_unlock_exclusive(thiz);
82 I3DGrouping *thiz = (I3DGrouping *) self; local
83 interface_lock_shared(thiz);
84 C3DGroup *group = thiz->mGroup;
86 interface_unlock_shared(thiz);
101 I3DGrouping *thiz = (I3DGrouping *) self; local
108 I3DGrouping *thiz = (I3DGrouping *) self; local
[all...]
H A DIOutputMix.cpp52 IOutputMix *thiz = (IOutputMix *) self; local
53 interface_lock_exclusive(thiz);
54 thiz->mCallback = callback;
55 thiz->mContext = pContext;
56 interface_unlock_exclusive(thiz);
94 IOutputMix *thiz = (IOutputMix *) self; local
95 thiz->mItf = &IOutputMix_Itf;
96 thiz->mCallback = NULL;
97 thiz->mContext = NULL;
H A DIStreamInformation.cpp32 IStreamInformation *thiz = (IStreamInformation *) self; local
33 interface_lock_shared(thiz);
35 *info = thiz->mStreamInfoTable.itemAt(0).containerInfo;
36 interface_unlock_shared(thiz);
70 IStreamInformation *thiz = (IStreamInformation *) self; local
72 interface_lock_shared(thiz);
74 XAuint32 nbStreams = thiz->mStreamInfoTable.itemAt(0).containerInfo.numStreams;
78 *domain = thiz->mStreamInfoTable.itemAt(streamIndex).domain;
85 interface_unlock_shared(thiz);
107 IStreamInformation *thiz
172 IStreamInformation *thiz = (IStreamInformation *) self; local
219 IStreamInformation *thiz = (IStreamInformation *) self; local
245 IStreamInformation *thiz = (IStreamInformation *) self; local
289 IStreamInformation *thiz = (IStreamInformation *) self; local
317 IStreamInformation *thiz = (IStreamInformation *) self; local
[all...]
H A DIEngine.cpp114 CLEDDevice *thiz = (CLEDDevice *) construct(pCLEDDevice_class, exposedMask, self); local
115 if (NULL == thiz) {
118 thiz->mDeviceID = deviceID;
119 IObject_Publish(&thiz->mObject);
121 *pDevice = &thiz->mObject.mItf;
152 CVibraDevice *thiz = (CVibraDevice *) construct(pCVibraDevice_class, exposedMask, self); local
153 if (NULL == thiz) {
156 thiz->mDeviceID = deviceID;
157 IObject_Publish(&thiz->mObject);
159 *pDevice = &thiz
189 CAudioPlayer *thiz = (CAudioPlayer *) construct(pCAudioPlayer_class, exposedMask, self); local
434 CAudioRecorder *thiz = (CAudioRecorder *) construct(pCAudioRecorder_class, exposedMask, local
574 CMidiPlayer *thiz = (CMidiPlayer *) construct(pCMidiPlayer_class, exposedMask, self); local
620 CListener *thiz = (CListener *) construct(pCListener_class, exposedMask, self); local
657 C3DGroup *thiz = (C3DGroup *) construct(pC3DGroup_class, exposedMask, self); local
691 COutputMix *thiz = (COutputMix *) construct(pCOutputMix_class, exposedMask, self); local
746 CMetadataExtractor *thiz = (CMetadataExtractor *) local
987 IEngine *thiz = (IEngine *) self; local
1085 CMediaPlayer *thiz = (CMediaPlayer *) construct(pCMediaPlayer_class, exposedMask, local
1447 IXAEngine *thiz = (IXAEngine *) self; local
[all...]
/frameworks/base/core/jni/
H A Dandroid_media_ToneGenerator.cpp41 static jboolean android_media_ToneGenerator_startTone(JNIEnv *env, jobject thiz, jint toneType, jint durationMs) { argument
42 ALOGV("android_media_ToneGenerator_startTone: %p", thiz);
44 ToneGenerator *lpToneGen = (ToneGenerator *)env->GetLongField(thiz,
54 static void android_media_ToneGenerator_stopTone(JNIEnv *env, jobject thiz) { argument
55 ALOGV("android_media_ToneGenerator_stopTone: %p", thiz);
57 ToneGenerator *lpToneGen = (ToneGenerator *)env->GetLongField(thiz,
68 static jint android_media_ToneGenerator_getAudioSessionId(JNIEnv *env, jobject thiz) { argument
69 ToneGenerator *lpToneGen = (ToneGenerator *)env->GetLongField(thiz,
78 static void android_media_ToneGenerator_release(JNIEnv *env, jobject thiz) { argument
79 ToneGenerator *lpToneGen = (ToneGenerator *)env->GetLongField(thiz,
88 android_media_ToneGenerator_native_setup(JNIEnv *env, jobject thiz, jint streamType, jint volume) argument
111 android_media_ToneGenerator_native_finalize(JNIEnv *env, jobject thiz) argument
[all...]
/frameworks/base/media/tests/NativeMidiDemo/jni/
H A Dmessagequeue.h26 jobjectArray getRecentMessagesForJava(JNIEnv* env, jobject thiz);
/frameworks/base/media/jni/
H A Dandroid_media_MediaHTTPConnection.cpp34 JMediaHTTPConnection::JMediaHTTPConnection(JNIEnv *env, jobject thiz) argument
38 jclass clazz = env->GetObjectClass(thiz);
42 mObject = env->NewWeakGlobalRef(thiz);
85 JNIEnv *env, jobject thiz, const sp<JMediaHTTPConnection> &conn) {
87 (JMediaHTTPConnection *)env->GetLongField(thiz, gFields.context);
90 conn->incStrong(thiz);
93 old->decStrong(thiz);
95 env->SetLongField(thiz, gFields.context, (jlong)conn.get());
100 static sp<JMediaHTTPConnection> getObject(JNIEnv *env, jobject thiz) { argument
101 return (JMediaHTTPConnection *)env->GetLongField(thiz, gField
84 setObject( JNIEnv *env, jobject thiz, const sp<JMediaHTTPConnection> &conn) argument
115 android_media_MediaHTTPConnection_native_setup( JNIEnv *env, jobject thiz) argument
122 android_media_MediaHTTPConnection_native_finalize( JNIEnv *env, jobject thiz) argument
127 android_media_MediaHTTPConnection_native_getIMemory( JNIEnv *env, jobject thiz) argument
134 android_media_MediaHTTPConnection_native_readAt( JNIEnv *env, jobject thiz, jlong offset, jint size) argument
[all...]
/frameworks/wilhelm/src/
H A Dentry.cpp89 CEngine *thiz = theOneTrueEngine; local
90 if (NULL != thiz) {
100 object_lock_exclusive(&thiz->mObject);
104 SLuint8 *interfaceStateP = thiz->mObject.mInterfaceStates;
115 if ((NULL == expose) || (*expose)((char *) thiz + x->mOffset)) {
128 object_unlock_exclusive(&thiz->mObject);
130 *pEngine = &thiz->mObject.mItf;
141 thiz = (CEngine *) construct(pCEngine_class, exposedMask, NULL);
142 if (NULL == thiz) {
149 memset(&thiz
[all...]
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/jni/
H A Djni_stochastic_linear_ranker.h111 jobject thiz);
117 jobject thiz,
123 jobject thiz,
133 jobject thiz,
141 jobject thiz,
150 jobject thiz,
158 jobject thiz,
164 jobject thiz,
173 jobject thiz,

Completed in 391 milliseconds

1234567