Searched refs:obj (Results 201 - 225 of 325) sorted by last modified time

1234567891011>>

/frameworks/base/core/tests/coretests/src/android/os/
H A DMessageQueueTest.java164 msg.obj = this;
192 if (newMsg.obj != this) {
194 "newMsg.obj should be 'this' after copyFrom"));
240 if (msg.obj != this) {
242 "msg.obj should be 'this' when processing # %d", msg.what)));
/frameworks/base/cmds/servicemanager/
H A Dbinder.c43 struct binder_object *obj; local
53 obj = (void*) (((char*) txn->data) + *offs++);
55 obj->type, obj->flags, obj->pointer, obj->cookie);
451 struct binder_object *obj; local
453 obj = bio_alloc(bio, sizeof(*obj));
455 if (obj
474 struct binder_object *obj; local
488 struct binder_object *obj; local
606 struct binder_object *obj; local
[all...]
/frameworks/base/cmds/stagefright/
H A Dsf2.cpp413 sp<RefBase> obj; local
414 CHECK(msg->findObject("buffer", &obj));
415 sp<ABuffer> outBuffer = static_cast<ABuffer *>(obj.get());
519 sp<RefBase> obj; local
520 CHECK(msg->findObject("buffer", &obj));
522 sp<ABuffer> buffer = static_cast<ABuffer *>(obj.get());
H A Dstream.cpp266 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) { argument
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityService.java327 AccessibilityEvent event = (AccessibilityEvent) message.obj;
339 (IAccessibilityServiceConnection) message.obj;
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java1686 Session session = (Session)msg.obj;
/frameworks/base/core/java/android/app/
H A DActionBar.java799 * @param obj Object to store
802 public abstract Tab setTag(Object obj); argument
H A DActivityManagerNative.java55 static public IActivityManager asInterface(IBinder obj) { argument
56 if (obj == null) {
60 (IActivityManager)obj.queryLocalInterface(descriptor);
65 return new ActivityManagerProxy(obj);
H A DActivityThread.java1143 ActivityClientRecord r = (ActivityClientRecord)msg.obj;
1150 ActivityClientRecord r = (ActivityClientRecord)msg.obj;
1154 handlePauseActivity((IBinder)msg.obj, false, msg.arg1 != 0, msg.arg2);
1158 handlePauseActivity((IBinder)msg.obj, true, msg.arg1 != 0, msg.arg2);
1161 handleStopActivity((IBinder)msg.obj, true, msg.arg2);
1164 handleStopActivity((IBinder)msg.obj, false, msg.arg2);
1167 handleWindowVisibility((IBinder)msg.obj, true);
1170 handleWindowVisibility((IBinder)msg.obj, false);
1173 handleResumeActivity((IBinder)msg.obj, true,
1177 handleSendResult((ResultData)msg.obj);
1372 equals(Object obj) argument
1816 queueOrSendMessage(int what, Object obj) argument
1820 queueOrSendMessage(int what, Object obj, int arg1) argument
1824 queueOrSendMessage(int what, Object obj, int arg1, int arg2) argument
[all...]
H A DApplicationThreadNative.java50 static public IApplicationThread asInterface(IBinder obj) { argument
51 if (obj == null) {
55 (IApplicationThread)obj.queryLocalInterface(descriptor);
60 return new ApplicationThreadProxy(obj);
H A DDialog.java1228 ((OnDismissListener) msg.obj).onDismiss(mDialog.get());
1231 ((OnCancelListener) msg.obj).onCancel(mDialog.get());
1234 ((OnShowListener) msg.obj).onShow(mDialog.get());
H A DInstrumentation.java142 * @param obj The client object that generated the exception. May be an
150 public boolean onException(Object obj, Throwable e) { argument
H A DIntentService.java65 onHandleIntent((Intent)msg.obj);
118 msg.obj = intent;
/frameworks/base/core/java/android/app/backup/
H A DRestoreSession.java202 mAppObserver.onUpdate(msg.arg1, (String)msg.obj);
208 mAppObserver.restoreSetsAvailable((RestoreSet[])msg.obj);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHost.java57 msg.obj = views;
64 msg.obj = info;
84 updateAppWidgetView(msg.arg1, (RemoteViews)msg.obj);
88 onProviderChanged(msg.arg1, (AppWidgetProviderInfo)msg.obj);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothAudioGateway.java128 msg.obj = new IncomingConnectionInfo(
142 msg.obj = new IncomingConnectionInfo(
H A DBluetoothProfileState.java141 (BluetoothDeviceProfileState)msg.obj;
149 deferMsg.obj = deviceProfileMgr;
/frameworks/base/core/java/android/content/
H A DAsyncQueryHandler.java70 WorkerArgs args = (WorkerArgs) msg.obj;
112 reply.obj = args;
179 msg.obj = args;
218 msg.obj = args;
246 msg.obj = args;
273 msg.obj = args;
331 WorkerArgs args = (WorkerArgs) msg.obj;
H A DComponentName.java186 public boolean equals(Object obj) { argument
188 if (obj != null) {
189 ComponentName other = (ComponentName)obj;
H A DContentProviderNative.java55 static public IContentProvider asInterface(IBinder obj) argument
57 if (obj == null) {
61 (IContentProvider)obj.queryLocalInterface(descriptor);
66 return new ContentProviderProxy(obj);
H A DIntent.java5705 public boolean equals(Object obj) { argument
5706 if (obj instanceof FilterComparison) {
5707 Intent other = ((FilterComparison)obj).mIntent;
H A DSyncManager.java690 msg.obj = new SyncHandlerMessagePayload(syncContext, syncResult);
698 msg.obj = Pair.create(account, authority);
957 msg.obj = new ServiceConnectionData(this, ISyncAdapter.Stub.asInterface(service));
964 msg.obj = new ServiceConnectionData(this, null);
1627 Pair<Account, String> payload = (Pair<Account, String>)msg.obj;
1641 SyncHandlerMessagePayload payload = (SyncHandlerMessagePayload)msg.obj;
1655 ServiceConnectionData msgData = (ServiceConnectionData)msg.obj;
1669 ((ServiceConnectionData)msg.obj).activeSyncContext;
/frameworks/base/core/java/android/content/pm/
H A DSignature.java158 public boolean equals(Object obj) { argument
160 if (obj != null) {
161 Signature other = (Signature)obj;
/frameworks/base/core/java/android/content/res/
H A DStringBlock.java418 StringBlock(int obj, boolean useSparse) { argument
419 mNative = obj;
429 private static final native int nativeGetSize(int obj); argument
430 private static final native String nativeGetString(int obj, int idx); argument
431 private static final native int[] nativeGetStyle(int obj, int idx); argument
432 private static final native void nativeDestroy(int obj); argument
H A DXmlBlock.java494 private static final native int nativeGetStringBlock(int obj); argument
496 private static final native int nativeCreateParseState(int obj); argument
515 private static final native void nativeDestroy(int obj); argument

Completed in 201 milliseconds

1234567891011>>