Home
last modified time | relevance | path

Searched refs:desired (Results 1 – 25 of 28) sorted by relevance

12

/frameworks/native/libs/binder/
DParcel.cpp2277 status_t Parcel::restartWrite(size_t desired) in restartWrite() argument
2279 if (desired > INT32_MAX) { in restartWrite()
2287 return continueWrite(desired); in restartWrite()
2290 uint8_t* data = reallocZeroFree(mData, mDataCapacity, desired, mDeallocZero); in restartWrite()
2291 if (!data && desired > mDataCapacity) { in restartWrite()
2298 if (data || desired == 0) { in restartWrite()
2299 LOG_ALLOC("Parcel %p: restart from %zu to %zu capacity", this, mDataCapacity, desired); in restartWrite()
2300 if (mDataCapacity > desired) { in restartWrite()
2301 gParcelGlobalAllocSize -= (mDataCapacity - desired); in restartWrite()
2303 gParcelGlobalAllocSize += (desired - mDataCapacity); in restartWrite()
[all …]
/frameworks/base/services/core/java/com/android/server/inputmethod/
DLocaleUtils.java49 @NonNull final ULocale desired) { in calculateMatchingSubScore() argument
51 if (supported.equals(desired)) { in calculateMatchingSubScore()
58 if (supportedScript.isEmpty() || !supportedScript.equals(desired.getScript())) { in calculateMatchingSubScore()
64 if (supportedCountry.isEmpty() || !supportedCountry.equals(desired.getCountry())) { in calculateMatchingSubScore()
/frameworks/base/startop/scripts/trace_analyzer/test_fixtures/
Dcommon_systrace30 …-) [001] .... 14594.219464: binder_set_priority: proc=625 thread=656 old=110 => new=120 desired=120
36 … [001] .... 14594.220230: binder_set_priority: proc=1368 thread=3359 old=110 => new=120 desired=120
45 … [002] ...2 14594.221035: binder_set_priority: proc=1368 thread=1903 old=120 => new=118 desired=118
59 … [002] .... 14594.221397: binder_set_priority: proc=1368 thread=1903 old=118 => new=120 desired=120
60 …-) [005] ...2 14594.221400: binder_set_priority: proc=625 thread=656 old=120 => new=110 desired=110
64 …-) [005] .... 14594.221528: binder_set_priority: proc=625 thread=656 old=110 => new=120 desired=120
66 …-) [007] ...2 14594.221563: binder_set_priority: proc=625 thread=656 old=120 => new=110 desired=110
74 …-) [000] .... 14594.221737: binder_set_priority: proc=625 thread=656 old=110 => new=120 desired=120
85 …-) [007] ...2 14594.221864: binder_set_priority: proc=625 thread=656 old=120 => new=110 desired=110
94 … [006] ...2 14594.222131: binder_set_priority: proc=1368 thread=1903 old=120 => new=110 desired=110
[all …]
/frameworks/base/core/java/android/os/
DLocaleList.java316 private static int matchScore(Locale supported, Locale desired) { in matchScore() argument
317 if (supported.equals(desired)) { in matchScore()
320 if (!supported.getLanguage().equals(desired.getLanguage())) { in matchScore()
323 if (isPseudoLocale(supported) || isPseudoLocale(desired)) { in matchScore()
335 supportedRegion.equals(desired.getCountry())) in matchScore()
338 final String desiredScr = getLikelyScript(desired); in matchScore()
/frameworks/hardware/interfaces/automotive/telemetry/aidl/
DAndroid.bp21 // Depend on "android.frameworks.automotive.telemetry-V1-ndk". Change "V1" to desired version (it
22 // must be always provided), and "ndk" to a desired AIDL back-end.
/frameworks/wilhelm/src/itf/
DIOutputMixExt.cpp210 unsigned desired = size; in IOutputMixExt_FillBuffer() local
228 while (desired > 0) { in IOutputMixExt_FillBuffer()
229 unsigned actual = desired; in IOutputMixExt_FillBuffer()
269 desired -= actual; in IOutputMixExt_FillBuffer()
/frameworks/compile/libbcc/tests/debuginfo/target-tests/driver-common/SRC/
DDriverView.java.template38 // Initialize renderscript with desired surface characteristics.
/frameworks/hardware/interfaces/bufferhub/1.0/
DIBufferHub.hal25 * @param description The desired buffer parameters for the new buffer.
/frameworks/base/tools/aapt/
DBundle.h262 bool isMinSdkAtLeast(int desired) const { in isMinSdkAtLeast() argument
280 if (minSdkNum < desired) { in isMinSdkAtLeast()
/frameworks/base/startop/scripts/app_startup/
Dparse_metrics29 This may block until all desired metrics are parsed from logcat.
/frameworks/native/services/surfaceflinger/TimeStats/timestatsatomsproto/
Dtimestats_atoms.proto207 // Set of timings measured from the desired presentation to the actual
215 // Frames latched early because the desired present time was bad
261 // The desired frame rate the application wishes to run on.
/frameworks/base/core/java/android/widget/
DTextView.java9323 private static int desired(Layout layout) { in desired() method in TextView.Drawables
9409 des = desired(mLayout); in onMeasure()
9442 hintDes = desired(mHintLayout); in onMeasure()
9529 int desired = getDesiredHeight(); in onMeasure() local
9531 height = desired; in onMeasure()
9532 mDesiredHeightAtMeasure = desired; in onMeasure()
9535 height = Math.min(desired, heightSize); in onMeasure()
9687 int desired = layout.getHeight(cap); in getDesiredHeight() local
9691 desired = Math.max(desired, dr.mDrawableHeightLeft); in getDesiredHeight()
9692 desired = Math.max(desired, dr.mDrawableHeightRight); in getDesiredHeight()
[all …]
/frameworks/native/opengl/specs/
DEGL_ANDROID_presentation_time.txt41 this desired presentation time to be specified for each frame rendered to
/frameworks/base/tools/protologtool/
DREADME.md107 To add a new ProtoLogGroup simple create a new enum ProtoLogGroup member with desired parameters.
/frameworks/base/core/java/com/android/internal/widget/
DLockPatternView.java684 private int resolveMeasured(int measureSpec, int desired) in resolveMeasured() argument
690 result = desired; in resolveMeasured()
693 result = Math.max(specSize, desired); in resolveMeasured()
DRecyclerView.java7136 public static int chooseSize(int spec, int desired, int min) { in chooseSize() argument
7143 return Math.min(size, Math.max(desired, min)); in chooseSize()
7146 return Math.max(desired, min); in chooseSize()
/frameworks/base/graphics/java/android/graphics/
DColorSpace.java1360 float[] desired = ILLUMINANT_D50; in adaptToIlluminantD50() local
1361 if (compare(origWhitePoint, desired)) return origTransform; in adaptToIlluminantD50()
1363 float[] xyz = xyYToXyz(desired); in adaptToIlluminantD50()
/frameworks/proto_logging/stats/enums/stats/dnsresolver/
Ddns_resolver.proto256 SYS_ENOMSG = 42; // No message of desired type
/frameworks/native/include/binder/
DParcel.h547 status_t restartWrite(size_t desired);
548 status_t continueWrite(size_t desired);
/frameworks/native/libs/binder/include/binder/
DParcel.h547 status_t restartWrite(size_t desired);
548 status_t continueWrite(size_t desired);
/frameworks/base/services/core/java/com/android/server/rollback/
DREADME.md176 desired.
/frameworks/layoutlib/create/
DREADME.txt133 The ClassAdapters are chained together to achieve the desired output. (Look at section 2.2.7
/frameworks/base/core/proto/android/server/
Djobscheduler.proto1057 // Only the desired data from an android.app.job.JobWorkItem object.
/frameworks/opt/telephony/proto/src/
Dtelephony.proto2225 // clients if the desired default behavior changes
/frameworks/proto_logging/stats/
Datoms.proto10233 // The desired interval for active location updates, in milliseconds.
11625 // Set of timings measured from the desired presentation to the actual
11635 // Frames latched early because the desired present time was bad
11681 // The desired frame rate the application wishes to run on.

12