FACT++  1.0
JNIEXPORT jint JNICALL Java_dim_Client_send__Ljava_lang_String_2Ldim_CompletionHandler_2II_3I ( JNIEnv *  env,
jclass  This,
jstring  name,
jobject  theCompletionHandler,
jint  mode,
jint  timeout,
jintArray  dataArray 
)

Definition at line 731 of file dim_jni.c.

References DBG, dim_Dbg_SEND_NATIVE, Java_dim_Client_send__Ljava_lang_String_2Ldim_CompletionHandler_2II_3J(), and send_data().

Referenced by Java_dim_Client_send__Ljava_lang_String_2Ldim_CompletionHandler_2II_3S().

732 {
733  jint* nativeDataArray;
734  jint length;
735  jint ret;
736 
737  nativeDataArray = (*env)->GetIntArrayElements(env,dataArray,0);
738  length = (jint)(*env)->GetArrayLength(env,dataArray) * (jint)sizeof(*nativeDataArray);
739 
741  if(This){}
742  ret = send_data(env, name, theCompletionHandler, mode, timeout, nativeDataArray, length);
743 
744  (*env)->ReleaseIntArrayElements(env,dataArray,nativeDataArray,JNI_ABORT);
745  return ret;
746 }
int mode
jint send_data(JNIEnv *env, jstring name, jobject theCompletionHandler, jint mode, jint timeout, void *data_address, int data_size)
Definition: dim_jni.c:437
static char * send_data_format
Definition: dim_jni.c:433
#define dim_Dbg_SEND_NATIVE
Definition: dim_jni.h:36
if(extraDns) new Dns
#define DBG(test)
Definition: dim_jni.c:63

+ Here is the call graph for this function:

+ Here is the caller graph for this function: