Lines Matching defs:obj

1230                     ActivityClientRecord r = (ActivityClientRecord)msg.obj;
1239 ActivityClientRecord r = (ActivityClientRecord)msg.obj;
1245 handlePauseActivity((IBinder)msg.obj, false, msg.arg1 != 0, msg.arg2);
1251 handlePauseActivity((IBinder)msg.obj, true, msg.arg1 != 0, msg.arg2);
1256 handleStopActivity((IBinder)msg.obj, true, msg.arg2);
1261 handleStopActivity((IBinder)msg.obj, false, msg.arg2);
1266 handleWindowVisibility((IBinder)msg.obj, true);
1271 handleWindowVisibility((IBinder)msg.obj, false);
1276 handleResumeActivity((IBinder)msg.obj, true,
1282 handleSendResult((ResultData)msg.obj);
1287 handleDestroyActivity((IBinder)msg.obj, msg.arg1 != 0,
1293 AppBindData data = (AppBindData)msg.obj;
1305 handleNewIntent((NewIntentData)msg.obj);
1310 handleReceiver((ReceiverData)msg.obj);
1316 handleCreateService((CreateServiceData)msg.obj);
1321 handleBindService((BindServiceData)msg.obj);
1326 handleUnbindService((BindServiceData)msg.obj);
1331 handleServiceArgs((ServiceArgsData)msg.obj);
1336 handleStopService((IBinder)msg.obj);
1342 handleRequestThumbnail((IBinder)msg.obj);
1347 mCurDefaultDisplayDpi = ((Configuration)msg.obj).densityDpi;
1348 handleConfigurationChanged((Configuration)msg.obj, null);
1352 ContextCleanupInfo cci = (ContextCleanupInfo)msg.obj;
1359 handleDumpService((DumpComponentInfo)msg.obj);
1368 handleActivityConfigurationChanged((IBinder)msg.obj);
1372 handleProfilerControl(msg.arg1 != 0, (ProfilerControlData)msg.obj, msg.arg2);
1376 handleCreateBackupAgent((CreateBackupAgentData)msg.obj);
1381 handleDestroyBackupAgent((CreateBackupAgentData)msg.obj);
1389 completeRemoveProvider((ProviderRefCount)msg.obj);
1397 handleDispatchPackageBroadcast(msg.arg1, (String[])msg.obj);
1401 throw new RemoteServiceException((String)msg.obj);
1403 handleDumpHeap(msg.arg1 != 0, (DumpHeapData)msg.obj);
1406 handleDumpActivity((DumpComponentInfo)msg.obj);
1409 handleDumpProvider((DumpComponentInfo)msg.obj);
1413 handleSleeping((IBinder)msg.obj, msg.arg1 != 0);
1418 handleSetCoreSettings((Bundle) msg.obj);
1422 handleUpdatePackageCompatibilityInfo((UpdateCompatibilityData)msg.obj);
1430 handleUnstableProviderDied((IBinder)msg.obj, false);
1540 public boolean equals(Object obj) {
1541 if (!(obj instanceof ResourcesKey)) {
1544 ResourcesKey peer = (ResourcesKey) obj;
2042 private void queueOrSendMessage(int what, Object obj) {
2043 queueOrSendMessage(what, obj, 0, 0);
2046 private void queueOrSendMessage(int what, Object obj, int arg1) {
2047 queueOrSendMessage(what, obj, arg1, 0);
2050 private void queueOrSendMessage(int what, Object obj, int arg1, int arg2) {
2054 + ": " + arg1 + " / " + obj);
2057 msg.obj = obj;