Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/os/
DProcess.java911 long[] procStatusValues = new long[1]; in getUidForPid() local
912 procStatusValues[0] = -1; in getUidForPid()
913 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getUidForPid()
914 return (int) procStatusValues[0]; in getUidForPid()
925 long[] procStatusValues = new long[1]; in getParentPid() local
926 procStatusValues[0] = -1; in getParentPid()
927 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getParentPid()
928 return (int) procStatusValues[0]; in getParentPid()
940 long[] procStatusValues = new long[1]; in getThreadGroupLeader() local
941 procStatusValues[0] = -1; in getThreadGroupLeader()
[all …]