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

/frameworks/native/include/binder/
H A DProcessInfoService.h41 /*out*/ int32_t* states, /*out*/ int32_t *scores);
66 * exists. OoM scores will also be written in the "scores" output array.
73 /*out*/ int32_t* states, /*out*/ int32_t *scores) {
75 length, /*in*/ pids, /*out*/ states, /*out*/ scores);
72 getProcessStatesScoresFromPids(size_t length, int32_t* pids, int32_t* states, int32_t *scores) argument
/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
H A DProcessInfoService.cpp62 /*out*/ int32_t *scores) {
73 /*in*/ pids, /*out*/ states, /*out*/ scores);
87 ALOGW("%s: Could not retrieve process states and scores "
60 getProcessStatesScoresImpl(size_t length, int32_t* pids, int32_t* states, int32_t *scores) argument
/frameworks/native/libs/binder/include/binder/
H A DProcessInfoService.h41 /*out*/ int32_t* states, /*out*/ int32_t *scores);
66 * exists. OoM scores will also be written in the "scores" output array.
73 /*out*/ int32_t* states, /*out*/ int32_t *scores) {
75 length, /*in*/ pids, /*out*/ states, /*out*/ scores);
72 getProcessStatesScoresFromPids(size_t length, int32_t* pids, int32_t* states, int32_t *scores) argument
/frameworks/base/core/java/android/service/autofill/
H A DAutofillFieldClassificationService.java40 * A service that calculates field classification scores.
49 * when calculating the scores).
80 public static final String EXTRA_SCORES = "scores";
87 final float[][] scores = onGetScores(algorithmName, algorithmArgs, actualValues,
89 if (scores != null) {
90 data.putParcelable(EXTRA_SCORES, new Scores(scores));
114 * Calculates field classification scores in a batch.
123 * specified by the caller when calculating the scores).
164 * @param algorithm name of the algorithm to be used to calculate the scores. If invalid or
169 * @return the calculated scores o
202 public final float[][] scores; field in class:AutofillFieldClassificationService.Scores
215 Scores(@onNull float[][] scores) argument
[all...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiNetworkSelectorTestUtil.java319 * @param scores scores of the networks
323 List<ScanDetail> scanDetails, Integer[] scores, boolean[] meteredHints) {
333 if (scores != null) { // fixed score
335 Integer score = scores[i];
337 if (scores[i] == null) {
340 rssiScore = scores[i].byteValue();
322 configureScoreCache(WifiNetworkScoreCache scoreCache, List<ScanDetail> scanDetails, Integer[] scores, boolean[] meteredHints) argument
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java8994 /*in*/ int[] pids, /*out*/ int[] states, /*out*/ int[] scores) {
8996 /*in*/ pids, /*out*/ states, /*out*/ scores);
9003 * process with the given PID exists. If scores array is provided, write
9004 * the oom score for the process into the scores array, with INVALID_ADJ
9008 /*in*/ int[] pids, /*out*/ int[] states, /*out*/ int[] scores) {
9009 if (scores != null) {
9020 } else if (scores != null && pids.length != scores.length) {
9021 throw new IllegalArgumentException("pids and scores arrays have different lengths!");
9029 if (scores !
8993 getProcessStatesAndOomScoresFromPids( int[] pids, int[] states, int[] scores) argument
9007 getProcessStatesAndOomScoresForPIDs( int[] pids, int[] states, int[] scores) argument
[all...]

Completed in 146 milliseconds