FACT++  1.0
JNIEXPORT void JNICALL Java_dim_MutableMemory_setString ( JNIEnv *  env,
jclass  nativeClass,
jlong  nativeDataAddress,
jstring  data 
)

Definition at line 2204 of file dim_jni.c.

References DBGe, dim_Dbg_MUTABLE_MEMORY, and Java_dim_MutableMemory_copyFromBooleanArray().

Referenced by Java_dim_MutableMemory_setDouble().

2205 {
2206  const char* charData = (*env)->GetStringUTFChars(env, data, 0);
2207 
2208  DBGe(dim_Dbg_MUTABLE_MEMORY) printf("DimJNI: MutableMemory.setString(0x%08lx, %s)\n", nativeDataAddress, charData);
2209 
2210  if(nativeClass){}
2211  strcpy((char*)nativeDataAddress, charData);
2212  (*env)->ReleaseStringUTFChars(env, data, charData);
2213 }
#define dim_Dbg_MUTABLE_MEMORY
Definition: dim_jni.c:16
float data[4 *1440]
#define DBGe(test)
Definition: dim_jni.c:64
if(extraDns) new Dns

+ Here is the call graph for this function:

+ Here is the caller graph for this function: