Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/os/
DProcess.java694 long[] procStatusValues = new long[1]; in getUidForPid() local
695 procStatusValues[0] = -1; in getUidForPid()
696 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getUidForPid()
697 return (int) procStatusValues[0]; in getUidForPid()
709 long[] procStatusValues = new long[1]; in getParentPid() local
710 procStatusValues[0] = -1; in getParentPid()
711 Process.readProcLines("/proc/" + pid + "/status", procStatusLabels, procStatusValues); in getParentPid()
712 return (int) procStatusValues[0]; in getParentPid()
724 long[] procStatusValues = new long[1]; in getThreadGroupLeader() local
725 procStatusValues[0] = -1; in getThreadGroupLeader()
[all …]