Searched defs:other (Results 1 - 25 of 293) sorted by path

1234567891011>>

/frameworks/av/camera/
H A DCameraMetadata.cpp45 CameraMetadata::CameraMetadata(const CameraMetadata &other) : argument
47 mBuffer = clone_camera_metadata(other.mBuffer);
55 CameraMetadata &CameraMetadata::operator=(const CameraMetadata &other) { argument
56 return operator=(other.mBuffer);
131 void CameraMetadata::acquire(CameraMetadata &other) { argument
136 acquire(other.release());
139 status_t CameraMetadata::append(const CameraMetadata &other) { argument
140 return append(other.mBuffer);
143 status_t CameraMetadata::append(const camera_metadata_t* other) { argument
148 size_t extraEntries = get_camera_metadata_entry_count(other);
684 swap(CameraMetadata& other) argument
[all...]
/frameworks/av/camera/ndk/impl/
H A DACameraMetadata.h46 ACameraMetadata(const ACameraMetadata& other) : argument
47 mData(other.mData), mType(other.mType) {};
87 // exact copy of internal data type but they do not inherit from each other
/frameworks/av/include/media/
H A DModulo.h65 // or equal to the rank of the type of the other operand, the operand with signed
102 Modulo<T> operator +=(const Modulo<S> &other) { argument
104 mValue += other.unsignedValue();
110 Modulo<T> operator -=(const Modulo<S> &other) { argument
112 mValue -= other.unsignedValue();
120 const Modulo<T> operator +(const Modulo<S> &other) const {
122 return Modulo<T>(mValue + other.unsignedValue());
127 const Modulo<T> operator -(const Modulo<S> &other) const {
129 return Modulo<T>(mValue - other.unsignedValue());
139 bool operator >(const Modulo<S> &other) cons
177 operator +=(const S &other) argument
184 operator -=(const S &other) argument
[all...]
/frameworks/av/media/libaaudio/src/core/
H A DAAudioStreamParameters.cpp37 void AAudioStreamParameters::copyFrom(const AAudioStreamParameters &other) { argument
38 mSamplesPerFrame = other.mSamplesPerFrame;
39 mSampleRate = other.mSampleRate;
40 mDeviceId = other.mDeviceId;
41 mSessionId = other.mSessionId;
42 mSharingMode = other.mSharingMode;
43 mAudioFormat = other.mAudioFormat;
44 mDirection = other.mDirection;
45 mBufferCapacity = other.mBufferCapacity;
46 mUsage = other
[all...]
/frameworks/av/media/libaudioclient/
H A DAudioTrackShared.cpp36 // a value between "other" + 1 and "other" + INT32_MAX, the choice of
38 // In general, this means (new_self) returned is max(self, other) + 1.
40 static uint32_t incrementSequence(uint32_t self, uint32_t other) { argument
41 int32_t diff = (int32_t) self - (int32_t) other;
43 return self + 1; // we're already ahead of other.
45 return other + 1; // we're behind, so move just ahead of other.
183 // On the other hand, this barrier is required.
304 case EINTR: // wait was interrupted by signal or other spuriou
[all...]
/frameworks/av/media/libmedia/include/media/
H A DModulo.h65 // or equal to the rank of the type of the other operand, the operand with signed
102 Modulo<T> operator +=(const Modulo<S> &other) { argument
104 mValue += other.unsignedValue();
110 Modulo<T> operator -=(const Modulo<S> &other) { argument
112 mValue -= other.unsignedValue();
120 const Modulo<T> operator +(const Modulo<S> &other) const {
122 return Modulo<T>(mValue + other.unsignedValue());
127 const Modulo<T> operator -(const Modulo<S> &other) const {
129 return Modulo<T>(mValue - other.unsignedValue());
139 bool operator >(const Modulo<S> &other) cons
177 operator +=(const S &other) argument
184 operator -=(const S &other) argument
[all...]
/frameworks/av/media/libnblog/
H A DNBLog.cpp188 NBLog::EntryIterator::EntryIterator(const NBLog::EntryIterator &other) argument
189 : ptr(other.ptr) {}
219 int NBLog::EntryIterator::operator-(const NBLog::EntryIterator &other) const {
220 return ptr - other.ptr;
223 bool NBLog::EntryIterator::operator!=(const EntryIterator &other) const {
224 return ptr != other.ptr;
/frameworks/av/media/libstagefright/webm/
H A DWebmWriter.h105 WebmStream &operator=(const WebmStream &other) { argument
106 mType = other.mType;
107 mName = other.mName;
108 mMakeTrack = other.mMakeTrack;
/frameworks/av/media/mtp/
H A DMtpStringBuffer.h48 inline void append(const char* other);
49 inline void append(MtpStringBuffer &other);
60 inline void MtpStringBuffer::append(const char* other) { argument
61 mString += other;
64 inline void MtpStringBuffer::append(MtpStringBuffer &other) { argument
65 mString += other.mString;
/frameworks/av/packages/MediaComponents/src/com/android/media/
H A DMediaSession2Impl.java139 // TODO(jaewan): Keep other params.
1058 CommandImpl other = (CommandImpl) obj;
1060 return mCommandCode == other.mCommandCode
1061 && TextUtils.equals(mCustomCommand, other.mCustomCommand);
1091 public CommandGroupImpl(SessionCommandGroup2 instance, Object other) { argument
1093 if (other != null && other instanceof CommandGroupImpl) {
1094 mCommands.addAll(((CommandGroupImpl) other).mCommands);
1293 ControllerInfoImpl other = (ControllerInfoImpl) obj;
1294 return mControllerBinder.asBinder().equals(other
[all...]
/frameworks/av/packages/MediaComponents/src/com/android/media/update/
H A DApiFactory.java122 SessionCommandGroup2 instance, SessionCommandGroup2 other) {
124 (other == null) ? null : other.getProvider());
121 createMediaSession2CommandGroup( SessionCommandGroup2 instance, SessionCommandGroup2 other) argument
/frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
H A DMediaRouteProviderService.java592 public boolean hasMessenger(Messenger other) { argument
593 return mMessenger.getBinder() == other.getBinder();
651 * This handler should not be used to handle any messages other than those
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyInterfaceImpl.cpp100 // operation from policy manager standpoint (no other operation (e.g track start or stop)
539 // NB: might the other party have given up the microphone since then? how sure.
548 sp<AudioRecordClient> other = mAudioRecordClients.valueAt(i); local
549 if (other->active) {
552 audioSourceString(other->attributes.source).c_str());
554 std::string(String8(other->opPackageName).string()).c_str());
555 item->setInt32(kAudioPolicyActiveSession, other->session);
557 getDeviceTypeStrForPortId(other->deviceId).c_str());
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp1202 // Stream configuration failed. Client might try other configuraitons.
1590 // Free up the stream endpoint so that it can be used by some other stream
1817 // If other threads are waiting on updates to this status list, set the position of the
2483 // Some other kind of error from configure_streams - this is not
2607 // Ok, have a dummy stream and there's at least one other output stream,
2620 // Free up the stream endpoint so that it can be used by some other stream
3419 Camera3Device::HalInterface::HalInterface(const HalInterface& other) : argument
3420 mHidlSession(other.mHidlSession),
3421 mRequestMetadataQueue(other.mRequestMetadataQueue) {}
4851 // abandoned queue or other consume
[all...]
/frameworks/av/services/camera/libcameraservice/utils/
H A DAutoConditionLock.h68 AutoConditionLock(const AutoConditionLock& other) = delete; member in class:android::final
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityServiceInfo.java594 * @param other The info from which to update the properties.
598 public void updateDynamicallyConfigurableProperties(AccessibilityServiceInfo other) { argument
599 eventTypes = other.eventTypes;
600 packageNames = other.packageNames;
601 feedbackType = other.feedbackType;
602 notificationTimeout = other.notificationTimeout;
603 flags = other.flags;
822 AccessibilityServiceInfo other = (AccessibilityServiceInfo) obj;
824 if (other.mComponentName != null) {
827 } else if (!mComponentName.equals(other
[all...]
H A DGestureDescription.java421 public void copyFrom(TouchPoint other) { argument
422 mStrokeId = other.mStrokeId;
423 mContinuedStrokeId = other.mContinuedStrokeId;
424 mIsStartOfPath = other.mIsStartOfPath;
425 mIsEndOfPath = other.mIsEndOfPath;
426 mX = other.mX;
427 mY = other.mY;
/frameworks/base/core/java/android/accounts/
H A DAccount.java51 final Account other = (Account)o;
52 return name.equals(other.name) && type.equals(other.type);
69 public Account(@NonNull Account other, @NonNull String accessId) { argument
70 this(other.name, other.type, accessId);
/frameworks/base/core/java/android/app/
H A DActivityManager.java1161 public void copyFrom(TaskDescription other) { argument
1162 mLabel = other.mLabel;
1163 mIcon = other.mIcon;
1164 mIconRes = other.mIconRes;
1165 mIconFilename = other.mIconFilename;
1166 mColorPrimary = other.mColorPrimary;
1167 mColorBackground = other.mColorBackground;
1168 mStatusBarColor = other.mStatusBarColor;
1169 mNavigationBarColor = other.mNavigationBarColor;
1174 * if they weren't set on {@code other}
1177 copyFromPreserveHiddenFields(TaskDescription other) argument
[all...]
H A DNotification.java580 * and it is not recommended that it bridge to other devices.
875 * with other notifications on devices which support such rendering.
884 * Get a sort key that orders this notification among other notifications from the
965 * notifications once the other party has responded).
1129 * BitmapFactory.decodeStream}; all other content types will be ignored.
3562 * longer relevant (e.g. for chat notifications once the other party has responded).
3725 * even if other notifications are suppressed.
3892 * call, or other similarly high-priority events for the user.
3929 * Set whether or not this notification should not bridge to other devices.
3931 * <p>Some notifications can be bridged to other device
6184 areNotificationsVisiblyDifferent(Style other) argument
6402 areNotificationsVisiblyDifferent(Style other) argument
6568 areNotificationsVisiblyDifferent(Style other) argument
6956 areNotificationsVisiblyDifferent(Style other) argument
7626 areNotificationsVisiblyDifferent(Style other) argument
7817 areNotificationsVisiblyDifferent(Style other) argument
8041 areNotificationsVisiblyDifferent(Style other) argument
8142 areNotificationsVisiblyDifferent(Style other) argument
[all...]
H A DWindowConfiguration.java35 * Class that contains windowing configuration/state for other objects that contain windows directly
66 /** Always on-top (always visible). of other siblings in its parent container. */
264 // affect how other things is the system is managed.
279 public void setTo(WindowConfiguration other) { argument
280 setBounds(other.mBounds);
281 setAppBounds(other.mAppBounds);
282 setWindowingMode(other.mWindowingMode);
283 setActivityType(other.mActivityType);
334 * Does not change the values of either. Any undefined fields in <var>other</var> are ignored.
335 * @param other Th
343 diff(WindowConfiguration other, boolean compareUndefined) argument
[all...]
/frameworks/base/core/java/android/app/admin/
H A DPasswordMetrics.java161 public boolean equals(Object other) { argument
162 if (!(other instanceof PasswordMetrics)) {
165 PasswordMetrics o = (PasswordMetrics) other;
/frameworks/base/core/java/android/app/servertransaction/
H A DLaunchActivityItem.java167 final LaunchActivityItem other = (LaunchActivityItem) o;
168 final boolean intentsEqual = (mIntent == null && other.mIntent == null)
169 || (mIntent != null && mIntent.filterEquals(other.mIntent));
170 return intentsEqual && mIdent == other.mIdent
171 && activityInfoEqual(other.mInfo) && Objects.equals(mCurConfig, other.mCurConfig)
172 && Objects.equals(mOverrideConfig, other.mOverrideConfig)
173 && Objects.equals(mCompatInfo, other.mCompatInfo)
174 && Objects.equals(mReferrer, other.mReferrer)
175 && mProcState == other
202 activityInfoEqual(ActivityInfo other) argument
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothCodecConfig.java94 BluetoothCodecConfig other = (BluetoothCodecConfig) o;
95 return (other.mCodecType == mCodecType
96 && other.mCodecPriority == mCodecPriority
97 && other.mSampleRate == mSampleRate
98 && other.mBitsPerSample == mBitsPerSample
99 && other.mChannelMode == mChannelMode
100 && other.mCodecSpecific1 == mCodecSpecific1
101 && other.mCodecSpecific2 == mCodecSpecific2
102 && other.mCodecSpecific3 == mCodecSpecific3
103 && other
400 sameAudioFeedingParameters(BluetoothCodecConfig other) argument
[all...]
/frameworks/base/core/java/android/content/
H A DClipData.java84 * creating shortcuts (such as placing icons on the home screen) or other
111 * or other binary data as an attachment. This is accomplished through the
134 * URI consisting of a complicated structure that only other applications with
203 public Item(Item other) { argument
204 mText = other.mText;
205 mHtmlText = other.mHtmlText;
206 mIntent = other.mIntent;
207 mUri = other.mUri;
327 * and other things can be retrieved.
411 * and other thing
748 ClipData(ClipData other) argument
[all...]

Completed in 467 milliseconds

1234567891011>>