Searched defs:fallback (Results 1 - 10 of 10) sorted by last modified time

/frameworks/native/cmds/installd/
H A Dutils.cpp94 auto fallback = create_data_user_ce_package_path(volume_uuid, user, package_name); local
100 return fallback;
108 if (resolved != fallback) {
110 << " instead of " << fallback; local
117 LOG(WARNING) << "Failed to resolve inode " << ce_data_inode << "; using " << fallback; local
119 return fallback;
121 return fallback;
721 auto fallback = StringPrintf("%s/%s", parent.c_str(), name); local
734 return fallback;
742 if (resolved != fallback) {
744 << " instead of " << fallback; local
751 LOG(WARNING) << "Failed to resolve inode " << inode << "; using " << fallback; local
[all...]
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp3611 // Get the fallback key state.
3621 // generated a fallback or if the window is not a foreground window,
3622 // then cancel the associated fallback key, if any.
3626 ALOGD("Unhandled key event: Asking policy to cancel fallback action. "
3642 // Cancel the fallback key.
3645 "application handled the original non-fallback key "
3647 "canceling previously dispatched fallback key");
3654 // If the application did not handle a non-fallback key, first check
3672 ALOGD("Unhandled key event: Asking policy to perform fallback action. "
3682 bool fallback local
[all...]
/frameworks/ml/nn/runtime/
H A DExecutionPlan.cpp476 int ExecutionPlan::fallback(std::shared_ptr<Controller> controller, function in class:android::nn::ExecutionPlan
480 VLOG(EXECUTION) << "ExecutionPlan::fallback(" << controller << ", " << executor
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/data-binding/extensions/library/src/main/java/android/databinding/
H A DViewDataBinding.java573 protected static boolean parse(String str, boolean fallback) { argument
575 return fallback;
581 protected static byte parse(String str, byte fallback) { argument
585 return fallback;
590 protected static short parse(String str, short fallback) { argument
594 return fallback;
599 protected static int parse(String str, int fallback) { argument
603 return fallback;
608 protected static long parse(String str, long fallback) { argument
612 return fallback;
617 parse(String str, float fallback) argument
626 parse(String str, double fallback) argument
635 parse(String str, char fallback) argument
[all...]
/frameworks/base/media/java/android/media/
H A DUtils.java208 static Size parseSize(Object o, Size fallback) { argument
214 return fallback;
217 return fallback;
220 static int parseIntSafely(Object o, int fallback) { argument
222 return fallback;
230 return fallback;
233 return fallback;
236 static Range<Integer> parseIntRange(Object o, Range<Integer> fallback) { argument
250 return fallback;
254 return fallback;
257 parseLongRange(Object o, Range<Long> fallback) argument
278 parseRationalRange(Object o, Range<Rational> fallback) argument
[all...]
/frameworks/base/core/java/android/os/
H A DVibrationEffect.java152 * This will fallback to a generic pattern if one exists and there does not exist a
175 * they may, for example, be too disruptive to the user without tuning. The {@code fallback}
176 * parameter allows you to decide whether you want to fallback to the generic implementation or
181 * @param fallback Whether to fallback to a generic pattern if a hardware specific
187 public static VibrationEffect get(int effectId, boolean fallback) { argument
188 VibrationEffect effect = new Prebaked(effectId, fallback);
412 public Prebaked(int effectId, boolean fallback) { argument
414 mFallback = fallback;
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp521 status_t BootAnimation::initFont(Font* font, const char* fallback) { argument
534 } else if (fallback != nullptr) {
535 status = initTexture(&font->texture, mAssets, fallback);
/frameworks/av/media/libstagefright/foundation/
H A DABitReader.cpp60 uint32_t ABitReader::getBitsWithFallback(size_t n, uint32_t fallback) { argument
61 uint32_t ret = fallback;
/frameworks/av/media/libstagefright/
H A Davc_utils.cpp44 unsigned parseUEWithFallback(ABitReader *br, unsigned fallback) { argument
54 return fallback;
58 return fallback;
68 signed parseSEWithFallback(ABitReader *br, signed fallback) { argument
72 return fallback;

Completed in 1364 milliseconds