Searched defs:obj (Results 151 - 175 of 310) sorted by relevance

1234567891011>>

/frameworks/av/cmds/stagefright/
H A Dstream.cpp272 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
/frameworks/av/include/media/
H A DMediaPlayerInterface.h69 int msg, int ext1, int ext2, const Parcel *obj);
210 const Parcel *obj=NULL) {
219 if (notifyCB) notifyCB(cookie, msg, ext1, ext2, obj);
209 sendEvent(int msg, int ext1=0, int ext2=0, const Parcel *obj=NULL) argument
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DRTSPSource.cpp594 sp<RefBase> obj; local
595 CHECK(msg->findObject("description", &obj));
596 desc = static_cast<ASessionDescription *>(obj.get());
/frameworks/av/media/libstagefright/
H A DMediaCodecSource.cpp171 sp<RefBase> obj; local
172 CHECK(msg->findObject("meta", &obj));
176 status_t err = mSource->start(static_cast<MetaData *>(obj.get()));
774 sp<RefBase> obj; local
775 CHECK(msg->findObject("meta", &obj));
776 MetaData *params = static_cast<MetaData *>(obj.get());
/frameworks/av/media/libstagefright/foundation/
H A DAMessage.cpp237 const char *name, const sp<RefBase> &obj, Type type) {
241 if (obj != NULL) { obj->incStrong(this); }
242 item->u.refValue = obj.get();
245 void AMessage::setObject(const char *name, const sp<RefBase> &obj) { argument
246 setObjectInternal(name, obj, kTypeObject);
253 void AMessage::setMessage(const char *name, const sp<AMessage> &obj) { argument
257 if (obj != NULL) { obj->incStrong(this); }
258 item->u.refValue = obj
236 setObjectInternal( const char *name, const sp<RefBase> &obj, Type type) argument
[all...]
/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/base/core/java/android/accessibilityservice/
H A DAccessibilityServiceInfo.java703 public boolean equals(Object obj) { argument
704 if (this == obj) {
707 if (obj == null) {
710 if (getClass() != obj.getClass()) {
713 AccessibilityServiceInfo other = (AccessibilityServiceInfo) 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/net/
H A DNetworkCapabilities.java521 public boolean equals(Object obj) { argument
522 if (obj == null || (obj instanceof NetworkCapabilities == false)) return false;
523 NetworkCapabilities that = (NetworkCapabilities)obj;
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java1029 public boolean equals(Object obj) { argument
1030 if (this == obj) return true;
1031 if (obj == null) return false;
1032 if (getClass() != obj.getClass()) return false;
1033 NdefRecord other = (NdefRecord) obj;
/frameworks/base/core/java/android/os/
H A DHandler.java272 * Same as {@link #obtainMessage()}, except that it also sets the what and obj members
276 * @param obj Value to assign to the returned Message.obj field.
279 public final Message obtainMessage(int what, Object obj) argument
281 return Message.obtain(this, what, obj);
300 * Same as {@link #obtainMessage()}, except that it also sets the what, obj, arg1,and arg2 values on the
305 * @param obj Value to assign to the returned Message.obj field.
308 public final Message obtainMessage(int what, int arg1, int arg2, Object obj) argument
310 return Message.obtain(this, what, arg1, arg2, obj);
[all...]
/frameworks/base/core/java/android/os/storage/
H A DStorageVolume.java242 public boolean equals(Object obj) { argument
243 if (obj instanceof StorageVolume && mPath != null) {
244 StorageVolume volume = (StorageVolume)obj;
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityWindowInfo.java450 public boolean equals(Object obj) { argument
451 if (this == obj) {
454 if (obj == null) {
457 if (getClass() != obj.getClass()) {
460 AccessibilityWindowInfo other = (AccessibilityWindowInfo) obj;
/frameworks/base/core/java/android/view/inputmethod/
H A DCursorAnchorInfo.java191 public boolean equals(Object obj){ argument
192 if (obj == null) {
195 if (this == obj) {
198 if (!(obj instanceof CursorAnchorInfo)) {
201 final CursorAnchorInfo that = (CursorAnchorInfo) obj;
/frameworks/base/core/java/com/android/internal/util/
H A DAsyncChannel.java105 * msg.obj == the AsyncChannel
148 * msg.obj == the AsyncChannel
306 * msg.obj = the AsyncChannel
352 * msg.obj = the AsyncChannel
367 * msg.obj = the AsyncChannel
426 * msg.obj = the AsyncChannel
535 * @param obj
537 public void sendMessage(int what, int arg1, int arg2, Object obj) { argument
542 msg.obj = obj;
552 sendMessage(int what, Object obj) argument
626 replyToMessage(Message srcMsg, int what, int arg1, int arg2, Object obj) argument
642 replyToMessage(Message srcMsg, int what, Object obj) argument
714 sendMessageSynchronously(int what, int arg1, int arg2, Object obj) argument
731 sendMessageSynchronously(int what, Object obj) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_view_Surface.cpp86 bool android_view_Surface_isInstanceOf(JNIEnv* env, jobject obj) { argument
87 return env->IsInstanceOf(obj, gSurfaceClassInfo.clazz);
/frameworks/base/graphics/java/android/graphics/
H A DRegion.java372 public boolean equals(Object obj) { argument
373 if (obj == null || !(obj instanceof Region)) {
376 Region peer = (Region) obj;
/frameworks/base/media/java/android/media/
H A DSoundPool.java700 private static void postEventFromNative(Object weakRef, int msg, int arg1, int arg2, Object obj) argument
707 Message m = soundPoolImpl.mEventHandler.obtainMessage(msg, arg1, arg2, obj);
/frameworks/base/media/java/android/media/audiopolicy/
H A DAudioPolicy.java458 (AudioFocusInfo) msg.obj, msg.arg1);
464 (AudioFocusInfo) msg.obj, msg.arg1 != 0);
485 private void sendMsg(int msg, Object obj, int i) { argument
488 mEventHandler.obtainMessage(msg, i /*arg1*/, 0 /*arg2, ignored*/, obj));
/frameworks/base/opengl/java/android/opengl/
H A DEGLLogWrapper.java471 private String toString(Object obj) { argument
472 if (obj == null) {
475 return obj.toString();
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsCollection.java574 public boolean equals(Object obj) { argument
575 if (obj instanceof Key) {
576 final Key key = (Key) obj;
/frameworks/base/tools/aidl/
H A DAST.h152 Expression* obj; member in struct:MethodCall
160 MethodCall(Expression* obj, const string& name);
162 MethodCall(Expression* obj, const string& name, int argc, ...);
H A Dgenerate_java_binder.cpp96 Variable* obj = new Variable(IBINDER_TYPE, "obj"); local
106 m->parameters.push_back(obj);
110 ifstatement->expression = new Comparison(obj, "==", NULL_VALUE);
115 // IInterface iin = obj.queryLocalInterface(DESCRIPTOR)
116 MethodCall* queryLocalInterface = new MethodCall(obj, "queryLocalInterface");
140 ne->arguments.push_back(obj);
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/
H A DWebView.java224 public void addJavascriptInterface(Object obj, String interfaceName) { argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java146 public boolean equals(Object obj) { argument
147 if (this == obj) return true;
148 if (obj == null) return false;
149 if (getClass() != obj.getClass()) return false;
151 IntArray other = (IntArray) obj;

Completed in 5526 milliseconds

1234567891011>>