This is down to a Linux kernel feature: there are two different names for a process.
- One of the names is the last component of the path to the executable, e.g.
native_executable if your application is located at /data/apps/com.example.hello/native_executable. This is the name that appears in the Name field of /proc/PID/status.
- The other name is passed by the program that calls the application as its command line parameter #0 (
argv[0] in C, args[0] in Java). This is the name that appears at the beginning of /proc/PID/cmdline and that ps shows.
- The path to the executable is also the target of the symbolic link
/proc/PID/exe.
By convention, when a program starts another, it should use the name of the executable file as command line parameter 0, but it may choose to do otherwise. The Name field of /proc/PID/status is always set to the name of the executable by the kernel (but truncated to 15 characters).
This is a general Linux feature — see also Can I use standard tools to get the full name of a process, when its name has embedded spaces? on Ask Ubuntu.
The application itself can change both names afterwards (albeit there are length constraints). Dalvik uses this capability to distinguish between applications: all applications stem from the same native executable /sytem/bin/app_process; rather than let them all be called app_process, the VM changes both names to be the application package name. The name in /proc/PID/status is limited to 15 characters, which is why it's truncated. You can get the longer name from /proc/PID/cmdline (read up to the first null byte).