Searched defs:obj (Results 1 - 25 of 460) sorted by relevance

1234567891011>>

/frameworks/base/core/tests/utiltests/jni/
H A Dregistration.cpp26 JNIEnv * env, jobject obj, jstring name, jint size);
28 JNIEnv * env, jobject obj, jint fd, jint size);
32 __attribute__((unused)) JNIEnv * env,__attribute__((unused)) jobject obj,
35 return android_util_MemoryIntArrayTest_createAshmem(env, obj, name, size);
39 __attribute__((unused)) JNIEnv * env,__attribute__((unused)) jobject obj,
42 android_util_MemoryIntArrayTest_setAshmemSize(env, obj, fd, size);
31 Java_android_util_MemoryIntArrayTest_nativeCreateAshmem( __attribute__((unused)) JNIEnv * env,__attribute__((unused)) jobject obj, jstring name, jint size) argument
38 Java_android_util_MemoryIntArrayTest_nativeSetAshmemSize( __attribute__((unused)) JNIEnv * env,__attribute__((unused)) jobject obj, jint fd, jint size) argument
/frameworks/rs/driver/
H A DrsdElement.cpp34 rs_element *obj)
36 obj->p = element;
38 obj->unused1 = nullptr;
39 obj->unused2 = nullptr;
40 obj->unused3 = nullptr;
32 rsdElementUpdateCachedObject(const Context *rsc, const Element *element, rs_element *obj) argument
H A DrsdSampler.cpp46 rs_sampler *obj)
48 obj->p = alloc;
50 obj->unused1 = nullptr;
51 obj->unused2 = nullptr;
52 obj->unused3 = nullptr;
44 rsdSamplerUpdateCachedObject(const Context *rsc, const Sampler *alloc, rs_sampler *obj) argument
H A DrsdType.cpp43 rs_type *obj) {
44 obj->p = t;
46 obj->unused1 = nullptr;
47 obj->unused2 = nullptr;
48 obj->unused3 = nullptr;
42 rsdTypeUpdateCachedObject(const Context *rsc, const Type *t, rs_type *obj) argument
/frameworks/rs/rsov/driver/
H A DrsovElement.cpp29 rs_element *obj) {
30 obj->p = element;
32 obj->unused1 = nullptr;
33 obj->unused2 = nullptr;
34 obj->unused3 = nullptr;
28 rsovElementUpdateCachedObject(const Context *rsc, const Element *element, rs_element *obj) argument
H A DrsovSampler.cpp30 rs_sampler *obj) {
31 obj->p = alloc;
33 obj->unused1 = nullptr;
34 obj->unused2 = nullptr;
35 obj->unused3 = nullptr;
29 rsovSamplerUpdateCachedObject(const Context *rsc, const Sampler *alloc, rs_sampler *obj) argument
H A DrsovType.cpp29 rs_type *obj) {
30 obj->p = t;
32 obj->unused1 = nullptr;
33 obj->unused2 = nullptr;
34 obj->unused3 = nullptr;
28 rsovTypeUpdateCachedObject(const Context *rsc, const Type *t, rs_type *obj) argument
/frameworks/base/core/jni/
H A Dcom_android_internal_util_VirtualRefBasePtr.cpp24 VirtualLightRefBase* obj = reinterpret_cast<VirtualLightRefBase*>(objPtr); local
25 obj->incStrong(0);
29 VirtualLightRefBase* obj = reinterpret_cast<VirtualLightRefBase*>(objPtr); local
30 obj->decStrong(0);
/frameworks/base/services/net/java/android/net/util/
H A DInterfaceSet.java47 public boolean equals(Object obj) { argument
48 return obj != null
49 && obj instanceof InterfaceSet
50 && ifnames.equals(((InterfaceSet)obj).ifnames);
/frameworks/av/drm/libmediadrm/
H A DIDrmClient.cpp43 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) argument
49 if (obj && obj->dataSize() > 0) {
50 data.appendFrom(const_cast<Parcel *>(obj), 0, obj->dataSize());
68 Parcel obj; local
70 obj.appendFrom(const_cast<Parcel *>(&data), data.dataPosition(), data.dataAvail());
73 notify((DrmPlugin::EventType)eventType, extra, &obj);
/frameworks/av/media/libmedia/
H A DIMediaPlayerClient.cpp38 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) argument
45 if (obj && obj->dataSize() > 0) {
46 data.appendFrom(const_cast<Parcel *>(obj), 0, obj->dataSize());
65 Parcel obj; local
67 obj.appendFrom(const_cast<Parcel *>(&data), data.dataPosition(), data.dataAvail());
70 notify(msg, ext1, ext2, &obj);
/frameworks/base/core/java/android/content/pm/
H A DPackageCleanItem.java35 public boolean equals(Object obj) { argument
36 if (this == obj) {
40 if (obj != null) {
41 PackageCleanItem other = (PackageCleanItem)obj;
/frameworks/base/core/java/android/hardware/camera2/params/
H A DReprocessFormatsMap.java235 public boolean equals(final Object obj) { argument
236 if (obj == null) {
239 if (this == obj) {
242 if (obj instanceof ReprocessFormatsMap) {
243 final ReprocessFormatsMap other = (ReprocessFormatsMap) obj;
/frameworks/base/core/java/android/print/
H A DPrintJobId.java62 public boolean equals(Object obj) { argument
63 if (this == obj) {
66 if (obj == null) {
69 if (getClass() != obj.getClass()) {
72 PrintJobId other = (PrintJobId) obj;
/frameworks/base/core/java/android/security/net/config/
H A DPin.java59 public boolean equals(Object obj) { argument
60 if (this == obj) {
63 if (!(obj instanceof Pin)) {
66 Pin other = (Pin) obj;
/frameworks/base/core/java/com/android/internal/content/
H A DReferrerIntent.java55 public boolean equals(Object obj) { argument
56 if (obj == null || !(obj instanceof ReferrerIntent)) {
59 final ReferrerIntent other = (ReferrerIntent) obj;
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStorePublicKey.java55 public boolean equals(Object obj) { argument
56 if (this == obj) {
59 if (!super.equals(obj)) {
62 if (getClass() != obj.getClass()) {
65 AndroidKeyStorePublicKey other = (AndroidKeyStorePublicKey) obj;
/frameworks/base/media/java/android/media/
H A DDrmInitData.java70 public boolean equals(Object obj) { argument
71 if (!(obj instanceof SchemeInitData)) {
74 if (obj == this) {
78 SchemeInitData other = (SchemeInitData) obj;
H A DMediaTimestamp.java92 public boolean equals(Object obj) { argument
93 if (this == obj) return true;
94 if (obj == null || getClass() != obj.getClass()) return false;
96 final MediaTimestamp that = (MediaTimestamp) obj;
/frameworks/base/media/java/android/media/update/
H A DRating2Provider.java27 boolean equals_impl(Object obj); argument
H A DSessionToken2Provider.java32 boolean equals_impl(Object obj); argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/plugins/
H A DPluginDependencyProvider.java36 public <T> void allowPluginDependency(Class<T> cls, T obj) { argument
38 mDependencies.put(cls, obj);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DAppInfo.java44 public boolean equals(Object obj) { argument
45 if (obj == null) {
48 if (getClass() != obj.getClass()) {
51 final AppInfo other = (AppInfo) obj;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/
H A DTestableDependency.java41 public <T> void injectTestDependency(DependencyKey<T> key, T obj) { argument
42 mObjs.put(key, obj);
45 public <T> void injectTestDependency(Class<T> key, T obj) { argument
46 mObjs.put(key, obj);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DRational.java70 public boolean equals(Object obj) { argument
71 if (obj == null) {
74 if (this == obj) {
77 if (obj instanceof Rational) {
78 Rational data = (Rational) obj;

Completed in 359 milliseconds

1234567891011>>