Searched defs:scores (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/libs/binder/
H A DIProcessInfoService.cpp53 /*in*/ int32_t* pids, /*out*/ int32_t* states, /*out*/ int32_t* scores)
80 scores, length * sizeof(*scores))) != NO_ERROR) {
52 getProcessStatesAndOomScoresFromPids(size_t length, int32_t* pids, int32_t* states, int32_t* scores) argument
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiQualifiedNetworkSelectorTest.java275 private void configureScoreCache(List<ScanDetail> scanDetails, Integer[] scores, argument
279 Integer score = scores[i];
1644 Integer[] scores = {null, 120};
1648 configureScoreCache(scanDetails, scores, meteredHints);
1709 Integer[] scores = {null, null, null, 120};
1715 configureScoreCache(scanDetails, scores, meteredHints);
1788 Integer[] scores = {null, null, null, 120};
1794 configureScoreCache(scanDetails, scores, meteredHints);
1858 Integer[] scores = {20, 120};
1862 configureScoreCache(scanDetails, scores, meteredHint
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java7628 /*in*/ int[] pids, /*out*/ int[] states, /*out*/ int[] scores) {
7630 /*in*/ pids, /*out*/ states, /*out*/ scores);
7637 * process with the given PID exists. If scores array is provided, write
7638 * the oom score for the process into the scores array, with INVALID_ADJ
7642 /*in*/ int[] pids, /*out*/ int[] states, /*out*/ int[] scores) {
7643 if (scores != null) {
7654 } else if (scores != null && pids.length != scores.length) {
7655 throw new IllegalArgumentException("pids and scores arrays have different lengths!");
7663 if (scores !
7627 getProcessStatesAndOomScoresFromPids( int[] pids, int[] states, int[] scores) argument
7641 getProcessStatesAndOomScoresForPIDs( int[] pids, int[] states, int[] scores) argument
[all...]

Completed in 343 milliseconds