Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/os/
H A DProcess.java989 long[] procStatusValues = new long[1]; in getUidForPid() local
990 procStatusValues[0] = -1; in getUidForPid()
991 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getUidForPid()
992 return (int) procStatusValues[0]; in getUidForPid()
1004 long[] procStatusValues = new long[1]; in getParentPid() local
1005 procStatusValues[0] = -1; in getParentPid()
1006 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getParentPid()
1007 return (int) procStatusValues[0]; in getParentPid()
1019 long[] procStatusValues = new long[1]; in getThreadGroupLeader() local
1020 procStatusValues[0] = -1; in getThreadGroupLeader()
[all …]