Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/os/
DProcess.java894 long[] procStatusValues = new long[1]; in getUidForPid() local
895 procStatusValues[0] = -1; in getUidForPid()
896 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getUidForPid()
897 return (int) procStatusValues[0]; in getUidForPid()
908 long[] procStatusValues = new long[1]; in getParentPid() local
909 procStatusValues[0] = -1; in getParentPid()
910 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getParentPid()
911 return (int) procStatusValues[0]; in getParentPid()
923 long[] procStatusValues = new long[1]; in getThreadGroupLeader() local
924 procStatusValues[0] = -1; in getThreadGroupLeader()
[all …]