Searched defs:obj (Results 226 - 250 of 460) sorted by relevance

1234567891011>>

/frameworks/rs/
H A DrsFileA3D.cpp361 void FileA3D::appendToFile(Context *con, ObjectBase *obj) { argument
362 if (!obj) {
370 indexEntry->mObjectName = rsuCopyString(obj->getName());
371 indexEntry->mType = obj->getClassId();
373 indexEntry->mRsObj = obj;
375 obj->serialize(con, mWriteStream);
H A DrsGrallocConsumer.cpp72 void GrallocConsumer::onFrameAvailable(void* obj, AImageReader* reader) { argument
73 GrallocConsumer* consumer = (GrallocConsumer *) obj;
/frameworks/support/app-toolkit/common/src/main/java/androidx/arch/core/internal/
H A DSafeIterableMap.java179 public boolean equals(Object obj) { argument
180 if (obj == this) {
183 if (!(obj instanceof SafeIterableMap)) {
186 SafeIterableMap map = (SafeIterableMap) obj;
387 public boolean equals(Object obj) { argument
388 if (obj == this) {
391 if (!(obj instanceof Entry)) {
394 Entry entry = (Entry) obj;
/frameworks/support/media/src/main/java/androidx/media/
H A DRating2.java119 public boolean equals(Object obj) { argument
120 if (!(obj instanceof Rating2)) {
123 Rating2 other = (Rating2) obj;
H A DSessionCommand2.java422 public boolean equals(Object obj) { argument
423 if (!(obj instanceof SessionCommand2)) {
426 SessionCommand2 other = (SessionCommand2) obj;
H A DSessionToken2.java183 public boolean equals(Object obj) { argument
184 if (!(obj instanceof SessionToken2)) {
187 SessionToken2 other = (SessionToken2) obj;
/frameworks/support/slices/core/src/main/java/androidx/slice/
H A DSliceItem.java72 private static final String OBJ = "obj";
97 public SliceItem(Object obj, @SliceType String format, String subType, argument
102 mObj = obj;
109 public SliceItem(Object obj, @SliceType String format, String subType, argument
111 this (obj, format, subType, hints.toArray(new String[hints.size()]));
328 private void writeObj(Bundle dest, Object obj, String type) { argument
331 dest.putBundle(OBJ, ((IconCompat) obj).toBundle());
334 dest.putParcelable(OBJ, (Parcelable) obj);
337 dest.putParcelable(OBJ, ((Slice) obj).toBundle());
340 dest.putParcelable(OBJ, (PendingIntent) ((Pair<Object, Slice>) obj)
[all...]
/frameworks/wilhelm/src/android/
H A Dandroid_GenericMediaPlayer.cpp116 void MediaPlayerNotificationClient::notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
/frameworks/av/include/media/
H A DMediaPlayerInterface.h76 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
283 const Parcel *obj=NULL) {
291 listener->notify(msg, ext1, ext2, obj);
282 sendEvent(int msg, int ext1=0, int ext2=0, const Parcel *obj=NULL) argument
/frameworks/av/media/libmediaplayerservice/include/
H A DMediaPlayerInterface.h76 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) = 0;
283 const Parcel *obj=NULL) {
291 listener->notify(msg, ext1, ext2, obj);
282 sendEvent(int msg, int ext1=0, int ext2=0, const Parcel *obj=NULL) argument
/frameworks/av/media/libstagefright/filters/
H A DMediaFilter.cpp537 sp<RefBase> obj; local
538 if (!msg->findObject("buffer", &obj)) {
554 buffer = static_cast<MediaCodecBuffer *>(obj.get());
/frameworks/av/media/libstagefright/foundation/tests/
H A DAData_test.cpp187 sp<RefBase> obj; local
193 EXPECT_TRUE(objdata.find(&obj));
194 EXPECT_TRUE(obj == buf);
196 obj = buf;
197 objdata.set(obj); // storing as sp<RefBase>
199 EXPECT_TRUE(objdata.find(&obj));
/frameworks/av/media/libstagefright/rtsp/
H A DARTPConnection.cpp197 sp<RefBase> obj; local
198 CHECK(msg->findObject("session-desc", &obj));
199 info->mSessionDesc = static_cast<ASessionDescription *>(obj.get());
/frameworks/av/packages/MediaComponents/src/com/android/support/mediarouter/media/
H A DMediaRouteProviderService.java512 int requestId, int arg, Object obj, Bundle data) {
517 msg.obj = obj;
540 onBinderDied((Messenger)msg.obj);
669 final Object obj = msg.obj;
671 if (!processMessage(what, messenger, requestId, arg, obj, data)) {
675 + ", obj=" + obj + ", data=" + data);
687 Messenger messenger, int requestId, int arg, Object obj, Bundl
511 sendReply(Messenger messenger, int what, int requestId, int arg, Object obj, Bundle data) argument
686 processMessage(int what, Messenger messenger, int requestId, int arg, Object obj, Bundle data) argument
[all...]
/frameworks/base/core/java/android/bluetooth/le/
H A DScanFilter.java398 public boolean equals(Object obj) { argument
399 if (this == obj) {
402 if (obj == null || getClass() != obj.getClass()) {
405 ScanFilter other = (ScanFilter) obj;
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiDeviceInfo.java496 public boolean equals(Object obj) { argument
497 if (!(obj instanceof HdmiDeviceInfo)) {
501 HdmiDeviceInfo other = (HdmiDeviceInfo) obj;
/frameworks/base/core/java/android/hardware/radio/
H A DProgramSelector.java505 public boolean equals(Object obj) { argument
506 if (this == obj) return true;
507 if (!(obj instanceof ProgramSelector)) return false;
508 ProgramSelector other = (ProgramSelector) obj;
612 public boolean equals(Object obj) { argument
613 if (this == obj) return true;
614 if (!(obj instanceof Identifier)) return false;
615 Identifier other = (Identifier) obj;
/frameworks/base/core/java/android/net/
H A DNetworkAgent.java73 * obj = NetworkInfo
80 * obj = NetworkCapabilities
87 * obj = NetworkProperties
99 * obj = network score Integer
109 * obj = Bundle containing map from {@code REDIRECT_URL_KEY} to {@code String}
125 * obj = boolean indicating whether to use this network even if unvalidated
151 * obj = KeepalivePacketData object describing the data to be sent
183 * obj = int[] describing signal strength thresholds.
277 String redirectUrl = ((Bundle)msg.obj).getString(REDIRECT_URL_KEY);
300 ((Bundle) msg.obj)
317 queueOrSendMessage(int what, Object obj) argument
325 queueOrSendMessage(int what, int arg1, int arg2, Object obj) argument
[all...]
H A DNetworkTemplate.java263 public boolean equals(Object obj) { argument
264 if (obj instanceof NetworkTemplate) {
265 final NetworkTemplate other = (NetworkTemplate) obj;
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java1032 public boolean equals(Object obj) { argument
1033 if (this == obj) return true;
1034 if (obj == null) return false;
1035 if (getClass() != obj.getClass()) return false;
1036 NdefRecord other = (NdefRecord) obj;
/frameworks/base/core/java/android/os/
H A DHandler.java341 * Same as {@link #obtainMessage()}, except that it also sets the what and obj members
345 * @param obj Value to assign to the returned Message.obj field.
348 public final Message obtainMessage(int what, Object obj) argument
350 return Message.obtain(this, what, obj);
369 * Same as {@link #obtainMessage()}, except that it also sets the what, obj, arg1,and arg2 values on the
374 * @param obj Value to assign to the returned Message.obj field.
377 public final Message obtainMessage(int what, int arg1, int arg2, Object obj) argument
379 return Message.obtain(this, what, arg1, arg2, obj);
[all...]
H A DUserHandle.java411 public boolean equals(Object obj) { argument
413 if (obj != null) {
414 UserHandle other = (UserHandle)obj;
/frameworks/base/core/java/android/os/storage/
H A DStorageVolume.java331 public boolean equals(Object obj) { argument
332 if (obj instanceof StorageVolume && mPath != null) {
333 StorageVolume volume = (StorageVolume)obj;
/frameworks/base/core/java/android/print/
H A DPrinterCapabilitiesInfo.java274 public boolean equals(Object obj) { argument
275 if (this == obj) {
278 if (obj == null) {
281 if (getClass() != obj.getClass()) {
284 PrinterCapabilitiesInfo other = (PrinterCapabilitiesInfo) obj;
/frameworks/base/core/java/android/service/euicc/
H A DEuiccProfileInfo.java396 public boolean equals(Object obj) { argument
397 if (this == obj) {
400 if (obj == null || getClass() != obj.getClass()) {
404 EuiccProfileInfo that = (EuiccProfileInfo) obj;

Completed in 474 milliseconds

1234567891011>>