Searched refs:other (Results 326 - 350 of 409) sorted by relevance

<<11121314151617

/frameworks/base/core/java/com/android/internal/app/procstats/
H A DProcessStats.java218 public void add(ProcessStats other) { argument
219 ArrayMap<String, SparseArray<SparseArray<PackageState>>> pkgMap = other.mPackages.getMap();
262 ArrayMap<String, SparseArray<ProcessState>> procMap = other.mProcesses.getMap();
288 + other.mMemFactorDurations[i] + " from "
290 mMemFactorDurations[i] += other.mMemFactorDurations[i];
293 mSysMemUsage.mergeStats(other.mSysMemUsage);
295 if (other.mTimePeriodStartClock < mTimePeriodStartClock) {
296 mTimePeriodStartClock = other.mTimePeriodStartClock;
297 mTimePeriodStartClockStr = other.mTimePeriodStartClockStr;
299 mTimePeriodEndRealtime += other
[all...]
/frameworks/base/core/java/android/hardware/
H A DCamera.java98 * use by other applications. Applications should release the camera
317 * the same camera is opened by other applications, this will throw a
321 * otherwise it will remain locked and be unavailable to other applications.
326 * <p>Callbacks from other methods are delivered to the event loop of the
368 * given hal API version. If the same camera is opened by other applications
373 * otherwise it will remain locked and be unavailable to other applications.
378 * Callbacks from other methods are delivered to the event loop of the
481 * <p>Intended to use by the camera2 shim only, do <i>not</i> use this for other code.</p>
552 * temporarily for another process to use; once the other process is done
566 * Re-locks the camera to prevent other processe
2442 copyFrom(Parameters other) argument
2460 same(Parameters other) argument
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp791 sp<AMessage> AMessage::changesFrom(const sp<const AMessage> &other, bool deep) const { argument
792 if (other == NULL) {
797 if (mWhat != other->mWhat) {
800 if (mHandler != other->mHandler) {
806 const Item *oitem = other->findItem(item.mName, item.mType);
/frameworks/base/core/java/android/content/res/
H A DResourcesImpl.java650 // simply turning off all preloading), as well as any other configs specified
1094 void setTo(ThemeImpl other) { argument
1096 synchronized (other.mKey) {
1097 AssetManager.copyTheme(mTheme, other.mTheme);
1099 mThemeResId = other.mThemeResId;
1100 mKey.setTo(other.getKey());
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp157 int other; member in struct:android::graphics_memory_pss
189 ALOGW("failed to get other pss: %zd", pss);
192 graphics_mem->other = pss / 1024;
456 stats[HEAP_OTHER_MEMTRACK].pss = graphics_mem.other;
457 stats[HEAP_OTHER_MEMTRACK].privateDirty = graphics_mem.other;
525 pss = uss = memtrack = graphics_mem.graphics + graphics_mem.gl + graphics_mem.other;
1106 // Sanity check the number of other statistics expected in Java matches here.
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java331 * it simply allows it to be garbage collected if there are no other references.
887 // No need to initialize the bitmap to zeroes with other configs;
1265 * decode other bitmaps of smaller size, or by manual reconfiguration. See {@link
1646 * If other is null, return false.
1648 public boolean sameAs(Bitmap other) { argument
1650 if (this == other) return true;
1651 if (other == null) return false;
1652 if (other.isRecycled()) {
1655 return nativeSameAs(mNativePtr, other.mNativePtr);
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageRenderer.java774 Tile other = mHead;
775 while (other != null) {
776 if (other == tile) {
779 other = other.mNext;
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2On1Adapter.h271 bool merge(const Config& other);
429 // anything other than IDENTITY, we have to fall back to client
500 bool operator==(const Layer& other) { return mId == other.mId; } argument
501 bool operator!=(const Layer& other) { return !(*this == other); } argument
/frameworks/base/core/java/android/text/format/
H A DTime.java191 * @param other
193 public Time(Time other) { argument
194 initialize(other.timezone);
195 set(other);
255 * the other fields. Requires that it be normalized for MONTH_DAY and
734 * field. On the other hand, if you are adding
992 * hour at 12am on April 25, 2008 and there are a few other places that
1261 // Read-only fields that are derived from other information above.
/frameworks/base/core/java/com/android/internal/util/
H A DNotificationColorUtil.java236 * @param other the color to ensure contrast against. Assumed to be lighter than {@param color}
242 private static int findContrastColor(int color, int other, boolean findFg, double minRatio) { argument
243 int fg = findFg ? color : other;
244 int bg = findFg ? other : color;
375 * Composite two potentially translucent colors over each other and returns the result.
/frameworks/base/media/java/android/media/session/
H A DMediaController.java46 * other commands can be sent to the session. A callback may be registered to
123 * be sent by this method, other keys will be ignored.
440 public boolean controlsSameSession(MediaController other) { argument
441 if (other == null) return false;
442 return mSessionBinder.asBinder() == other.getSessionBinder().asBinder();
569 * @param extras The extras that can include other information associated with the
595 * Request that the player prepare its playback. In other words, other sessions can continue
610 * Request that the player prepare playback for a specific media id. In other words, other
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DInformationElementUtil.java281 public ExtendedCapabilities(ExtendedCapabilities other) { argument
282 extendedCapabilities = other.extendedCapabilities;
283 is80211McRTTResponder = other.is80211McRTTResponder;
/frameworks/support/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompat.java1082 AccessibilityRecordCompat other = (AccessibilityRecordCompat) obj;
1084 if (other.mRecord != null) {
1087 } else if (!mRecord.equals(other.mRecord)) {
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DOpReorderTest.java639 static Item clone(Item other) { argument
640 return new Item(other.id, other.version);
/frameworks/base/core/java/android/content/
H A DIntentFilter.java886 public boolean match(AuthorityEntry other) { argument
887 if (mWild != other.mWild) {
890 if (!mHost.equals(other.mHost)) {
893 if (mPort != other.mPort) {
902 final AuthorityEntry other = (AuthorityEntry)obj;
903 return match(other);
1363 * filter in order to match. In other words, adding a category to the
/frameworks/av/include/media/
H A DAudioTrack.h150 TRANSFER_DEFAULT, // not specified explicitly; determine from the other parameters
287 * If status is not equal to NO_ERROR, don't call any other APIs on this AudioTrack.
710 * or any other error code returned by IAudioTrack::start() or restoreTrack_l().
756 * INVALID_OPERATION wrong state, or some other error.
845 AudioTrack(const AudioTrack& other);
846 AudioTrack& operator = (const AudioTrack& other);
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java657 private ChooserTargetInfo(ChooserTargetInfo other, Intent fillInIntent, int flags) { argument
658 mSourceInfo = other.mSourceInfo;
659 mBackupResolveInfo = other.mBackupResolveInfo;
660 mChooserTarget = other.mChooserTarget;
661 mBadgeIcon = other.mBadgeIcon;
662 mBadgeContentDescription = other.mBadgeContentDescription;
663 mDisplayIcon = other.mDisplayIcon;
666 mModifiedScore = other.mModifiedScore;
H A DResolverActivity.java228 * Compatibility version for other bundled services that use this overload without
244 // from managed profile to owner or other way around.
479 * {@link #onCreate(android.os.Bundle)}. If a subclass calls one of the other onCreate
850 // from managed profile to owner or other way around.
1012 private DisplayResolveInfo(DisplayResolveInfo other, Intent fillInIntent, int flags) { argument
1013 mSourceIntents.addAll(other.getAllSourceIntents());
1014 mResolveInfo = other.mResolveInfo;
1015 mDisplayLabel = other.mDisplayLabel;
1016 mDisplayIcon = other.mDisplayIcon;
1017 mExtendedInfo = other
[all...]
/frameworks/base/core/jni/android/graphics/
H A DRegion.cpp151 static jboolean Region_quickRejectRgn(JNIEnv* env, jobject region, jobject other) { argument
152 bool result = GetSkRegion(env, region)->quickReject(*GetSkRegion(env, other));
/frameworks/base/libs/hwui/
H A DRenderProperties.h116 LayerProperties& operator=(const LayerProperties& other);
188 RenderProperties& operator=(const RenderProperties& other);
657 * These fields are all generated from other properties and are not set directly.
/frameworks/base/services/core/java/com/android/server/display/
H A DPersistentDataStore.java152 WifiDisplay other = mRememberedWifiDisplays.get(index);
153 if (other.equals(display)) {
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp322 bool operator < (const Attribute& other) const {
325 EGLint rhs(other.v);
/frameworks/av/include/media/stagefright/foundation/
H A DAMessage.h155 // Performs a shallow or deep comparison of |this| and |other| and returns
159 // This is true for AMessages that have no corresponding AMessage equivalent in |other|.
160 // (E.g. there is no such key or the type is different.) On the other hand, changes in
162 sp<AMessage> changesFrom(const sp<const AMessage> &other, bool deep = false) const;
/frameworks/compile/mclinker/include/mcld/LD/
H A DResolveInfo.h166 uint8_t other() const { return (uint8_t)visibility(); } function in class:mcld::ResolveInfo
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java63 RilMessage(RilMessage other) { argument
64 mId = other.mId;
65 mData = other.mData;
66 mResCode = other.mResCode;
732 /* TODO: eventDownload should be extended for other Envelope Commands */

Completed in 847 milliseconds

<<11121314151617