Home | History | Annotate | Download | only in jni

Lines Matching defs:opStatus

152 // If exception is NULL and opStatus is not OK, this method sends an error
154 // opStatus is not OK, this method throws the given exception to the client
156 static void process_media_player_call(JNIEnv *env, jobject thiz, status_t opStatus, const char* exception, const char *message)
159 if (opStatus != (status_t) OK) {
161 if (mp != 0) mp->notify(MEDIA_ERROR, opStatus, 0);
164 if ( opStatus == (status_t) INVALID_OPERATION ) {
166 } else if ( opStatus == (status_t) PERMISSION_DENIED ) {
168 } else if ( opStatus != (status_t) OK ) {
175 sprintf(msg, "%s: status=0x%X", message, opStatus);
215 status_t opStatus =
221 env, thiz, opStatus, "java/io/IOException",