Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/os/
DProcess.java1079 long[] procStatusValues = new long[1]; in getUidForPid() local
1080 procStatusValues[0] = -1; in getUidForPid()
1081 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getUidForPid()
1082 return (int) procStatusValues[0]; in getUidForPid()
1094 long[] procStatusValues = new long[1]; in getParentPid() local
1095 procStatusValues[0] = -1; in getParentPid()
1096 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getParentPid()
1097 return (int) procStatusValues[0]; in getParentPid()
1109 long[] procStatusValues = new long[1]; in getThreadGroupLeader() local
1110 procStatusValues[0] = -1; in getThreadGroupLeader()
[all …]