Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/os/
H A DProcess.java846 long[] procStatusValues = new long[1]; in getUidForPid() local
847 procStatusValues[0] = -1; in getUidForPid()
848 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getUidForPid()
849 return (int) procStatusValues[0]; in getUidForPid()
861 long[] procStatusValues = new long[1]; in getParentPid() local
862 procStatusValues[0] = -1; in getParentPid()
863 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getParentPid()
864 return (int) procStatusValues[0]; in getParentPid()
876 long[] procStatusValues = new long[1]; in getThreadGroupLeader() local
877 procStatusValues[0] = -1; in getThreadGroupLeader()
[all …]