Home
last modified time | relevance | path

Searched refs:procStatusValues (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/os/
DProcess.java757 long[] procStatusValues = new long[1]; in getUidForPid() local
758 procStatusValues[0] = -1; in getUidForPid()
759 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getUidForPid()
760 return (int) procStatusValues[0]; in getUidForPid()
772 long[] procStatusValues = new long[1]; in getParentPid() local
773 procStatusValues[0] = -1; in getParentPid()
774 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getParentPid()
775 return (int) procStatusValues[0]; in getParentPid()
787 long[] procStatusValues = new long[1]; in getThreadGroupLeader() local
788 procStatusValues[0] = -1; in getThreadGroupLeader()
[all …]