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

/frameworks/base/services/java/com/android/server/am/
H A DIntentBindRecord.java40 boolean requested; field in class:IntentBindRecord
41 /** Set when we have received the requested binder. */
60 pw.print(prefix); pw.print("requested="); pw.print(requested);
/frameworks/base/core/jni/android/graphics/
H A DCreateJavaOutputStreamAdaptor.cpp42 size_t requested = size; local
43 if (requested > fCapacity)
44 requested = fCapacity;
47 gInputStream_readMethodID, fJavaByteArray, 0, requested);
197 size_t requested = size; local
198 if (requested > fCapacity) {
199 requested = fCapacity;
202 env->SetByteArrayRegion(storage, 0, requested,
212 storage, 0, requested);
220 buffer = (void*)((char*)buffer + requested);
[all...]
/frameworks/base/native/android/
H A Dconfiguration.cpp219 int32_t AConfiguration_match(AConfiguration* base, AConfiguration* requested) { argument
220 return base->match(*requested);
224 AConfiguration* requested) {
225 return base->isBetterThan(*test, requested);
223 AConfiguration_isBetterThan(AConfiguration* base, AConfiguration* test, AConfiguration* requested) argument
/frameworks/native/services/surfaceflinger/
H A DLayerBase.h82 Geometry requested; member in struct:android::LayerBase::State
/frameworks/av/media/libstagefright/
H A DFLACExtractor.cpp270 size_t requested = *bytes; local
271 ssize_t actual = mDataSource->readAt(mCurrentPos, buffer, requested);
280 assert(actual <= requested);
/frameworks/base/core/java/android/widget/
H A DRemoteViewsAdapter.java77 // The set of requested views that are to be notified when the associated RemoteViews are
459 public RemoteViewsIndexMetaData(RemoteViews v, long itemId, boolean requested) { argument
460 set(v, itemId, requested);
463 public void set(RemoteViews v, long id, boolean requested) { argument
469 isRequested = requested;
499 // The set of indices that have been explicitly requested by the collection view
502 // We keep a reference of the last requested index to determine which item to prune the
506 // The set of indices to load, including those explicitly requested, as well as those
550 // as whether it was directly requested vs. whether it was preloaded by our caching
613 // farthest non-requested positio
[all...]
/frameworks/base/core/java/android/view/
H A DHardwareRenderer.java562 * @return True if requested, false otherwise.
569 * Indicates whether hardware acceleration is currently requested but not
574 void setRequested(boolean requested) { argument
575 mRequested = requested;
719 * is invoked and the requested flag is turned off. The error code is
943 // regions were initially requested as part of the device

Completed in 4432 milliseconds