FACT++  1.0
JNIEXPORT void JNICALL Java_dim_Memory_dumpInternalData ( JNIEnv *  env,
jclass  nativeClass,
jlong  internalDataAddress,
jint  internalDataSize,
jint  dumpOptions 
)

Definition at line 1785 of file dim_jni.c.

References i, and Java_dim_Memory_getBoolean().

Referenced by Java_dim_DimService_setTimestamp().

1786 {
1787  {
1788  int* data = (int*) internalDataAddress;
1789  int leng = (int)internalDataSize/(int)sizeof(int);
1790  int i;
1791 
1792  if(env){}
1793  if(dumpOptions){}
1794  if(nativeClass){}
1795  for (i=0;i<leng;i++)
1796  {
1797  if((i%8)==0) printf("%04x:",i);
1798  printf(" %08x", *(data++));
1799  if((i%8)==7) printf("\n");
1800  }
1801  if((leng%8)!=0) printf("\n");
1802  }
1803  return;
1804 }
int i
Definition: db_dim_client.c:21
float data[4 *1440]

+ Here is the call graph for this function:

+ Here is the caller graph for this function: