Top "Native-code" questions

Machine code and assembly code is sometimes called native code when referring to platform-dependent parts of language features or libraries.

com4j on Windows 64 bit

I've downloaded the latest com4j jars and I'm trying to run through the most simple of their examples. I'm …

java com java-native-interface native-code com4j
Compile JavaScript to Native Code with V8

Is it really possible, with Google's V8 Engine, to compile JavaScript into Native Code, save it as a binary file, …

javascript c++ v8 native-code
Invalid indirect reference on NewObject call

OK, so I have the native code below. I'm trying to return an array of FilePermissionInfo from it, populated with …

android android-ndk android-4.0-ice-cream-sandwich native-code
How to Debug native code using ndk-gdb

This is what I am getting after running ndk-gdb according to many tutorials when it links to you to (gdb) …

android eclipse android-ndk cygwin native-code
How to use ARM Assembly code in an Android project?

I'm not particularly experienced with Assembly and ARM, but I was able to write a few routines in it and …

android assembly android-ndk arm native-code
Tools for native memory leak analysis

I am suspecting a native memory leak in my java code. Are there any tools which do native memory profiling? …

java memory-leaks native-code
Android NativeActivity

The Android NDK has just been significantly expanded to include support for writing android applications entirely in native C/C++ …

android android-ndk native-code
How to print log messages with in Android framework

I am trying to print log messages within core Android framework files. For example, I tried logging messages within MediaRecorderClient.…

android java-native-interface logging native-code mediarecorder
How to create callbacks between android code and native code?

I have a requirement for creating call backs between native code ( c language code) and Android code . I wrote JNI …

android android-ndk native-code
Why is it that bytecode might run faster than native code

Java is slow. That's more than an "urban legend", it seems to be a fact. You don't use it for …

java performance jvm native-code