Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/os/
DProcess.java642 long[] procStatusValues = new long[1]; in getUidForPid() local
643 procStatusValues[0] = -1; in getUidForPid()
644 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getUidForPid()
645 return (int) procStatusValues[0]; in getUidForPid()
656 long[] procStatusValues = new long[1]; in getParentPid() local
657 procStatusValues[0] = -1; in getParentPid()
658 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getParentPid()
659 return (int) procStatusValues[0]; in getParentPid()
671 long[] procStatusValues = new long[1]; in getThreadGroupLeader() local
672 procStatusValues[0] = -1; in getThreadGroupLeader()
[all …]