PageRenderTime 48ms CodeModel.GetById 13ms RepoModel.GetById 1ms app.codeStats 0ms

/android/generated/android/app/IActivityManager.cs

https://bitbucket.org/festevezga/xobotos
C# | 1116 lines | 606 code | 309 blank | 201 comment | 4 complexity | 870695104d4711b891e00e4fc22b6756 MD5 | raw file
  1. using Sharpen;
  2. namespace android.app
  3. {
  4. /// <summary>System private API for talking with the activity manager service.</summary>
  5. /// <remarks>
  6. /// System private API for talking with the activity manager service. This
  7. /// provides calls from the application back to the activity manager.
  8. /// <hide></hide>
  9. /// </remarks>
  10. [Sharpen.Sharpened]
  11. public interface IActivityManager : android.os.IInterface
  12. {
  13. /// <exception cref="android.os.RemoteException"></exception>
  14. int startActivity(android.app.IApplicationThread caller, android.content.Intent intent
  15. , string resolvedType, System.Uri[] grantedUriPermissions, int grantedMode, android.os.IBinder
  16. resultTo, string resultWho, int requestCode, bool onlyIfNeeded, bool debug, string
  17. profileFile, android.os.ParcelFileDescriptor profileFd, bool autoStopProfiler);
  18. /// <exception cref="android.os.RemoteException"></exception>
  19. android.app.IActivityManagerClass.WaitResult startActivityAndWait(android.app.IApplicationThread
  20. caller, android.content.Intent intent, string resolvedType, System.Uri[] grantedUriPermissions
  21. , int grantedMode, android.os.IBinder resultTo, string resultWho, int requestCode
  22. , bool onlyIfNeeded, bool debug, string profileFile, android.os.ParcelFileDescriptor
  23. profileFd, bool autoStopProfiler);
  24. /// <exception cref="android.os.RemoteException"></exception>
  25. int startActivityWithConfig(android.app.IApplicationThread caller, android.content.Intent
  26. intent, string resolvedType, System.Uri[] grantedUriPermissions, int grantedMode
  27. , android.os.IBinder resultTo, string resultWho, int requestCode, bool onlyIfNeeded
  28. , bool debug, android.content.res.Configuration newConfig);
  29. /// <exception cref="android.os.RemoteException"></exception>
  30. int startActivityIntentSender(android.app.IApplicationThread caller, android.content.IntentSender
  31. intent, android.content.Intent fillInIntent, string resolvedType, android.os.IBinder
  32. resultTo, string resultWho, int requestCode, int flagsMask, int flagsValues);
  33. /// <exception cref="android.os.RemoteException"></exception>
  34. bool startNextMatchingActivity(android.os.IBinder callingActivity, android.content.Intent
  35. intent);
  36. /// <exception cref="android.os.RemoteException"></exception>
  37. bool finishActivity(android.os.IBinder token, int code, android.content.Intent data
  38. );
  39. /// <exception cref="android.os.RemoteException"></exception>
  40. void finishSubActivity(android.os.IBinder token, string resultWho, int requestCode
  41. );
  42. /// <exception cref="android.os.RemoteException"></exception>
  43. bool willActivityBeVisible(android.os.IBinder token);
  44. /// <exception cref="android.os.RemoteException"></exception>
  45. android.content.Intent registerReceiver(android.app.IApplicationThread caller, string
  46. callerPackage, android.content.IIntentReceiver receiver, android.content.IntentFilter
  47. filter, string requiredPermission);
  48. /// <exception cref="android.os.RemoteException"></exception>
  49. void unregisterReceiver(android.content.IIntentReceiver receiver);
  50. /// <exception cref="android.os.RemoteException"></exception>
  51. int broadcastIntent(android.app.IApplicationThread caller, android.content.Intent
  52. intent, string resolvedType, android.content.IIntentReceiver resultTo, int resultCode
  53. , string resultData, android.os.Bundle map, string requiredPermission, bool serialized
  54. , bool sticky);
  55. /// <exception cref="android.os.RemoteException"></exception>
  56. void unbroadcastIntent(android.app.IApplicationThread caller, android.content.Intent
  57. intent);
  58. /// <exception cref="android.os.RemoteException"></exception>
  59. void finishReceiver(android.os.IBinder who, int resultCode, string resultData, android.os.Bundle
  60. map, bool abortBroadcast);
  61. /// <exception cref="android.os.RemoteException"></exception>
  62. void attachApplication(android.app.IApplicationThread app);
  63. /// <exception cref="android.os.RemoteException"></exception>
  64. void activityIdle(android.os.IBinder token, android.content.res.Configuration config
  65. , bool stopProfiling);
  66. /// <exception cref="android.os.RemoteException"></exception>
  67. void activityPaused(android.os.IBinder token);
  68. /// <exception cref="android.os.RemoteException"></exception>
  69. void activityStopped(android.os.IBinder token, android.os.Bundle state, android.graphics.Bitmap
  70. thumbnail, java.lang.CharSequence description);
  71. /// <exception cref="android.os.RemoteException"></exception>
  72. void activitySlept(android.os.IBinder token);
  73. /// <exception cref="android.os.RemoteException"></exception>
  74. void activityDestroyed(android.os.IBinder token);
  75. /// <exception cref="android.os.RemoteException"></exception>
  76. string getCallingPackage(android.os.IBinder token);
  77. /// <exception cref="android.os.RemoteException"></exception>
  78. android.content.ComponentName getCallingActivity(android.os.IBinder token);
  79. /// <exception cref="android.os.RemoteException"></exception>
  80. java.util.List<object> getTasks(int maxNum, int flags, android.app.IThumbnailReceiver
  81. receiver);
  82. /// <exception cref="android.os.RemoteException"></exception>
  83. java.util.List<android.app.ActivityManager.RecentTaskInfo> getRecentTasks(int maxNum
  84. , int flags);
  85. /// <exception cref="android.os.RemoteException"></exception>
  86. android.app.ActivityManager.TaskThumbnails getTaskThumbnails(int taskId);
  87. /// <exception cref="android.os.RemoteException"></exception>
  88. java.util.List<object> getServices(int maxNum, int flags);
  89. /// <exception cref="android.os.RemoteException"></exception>
  90. java.util.List<android.app.ActivityManager.ProcessErrorStateInfo> getProcessesInErrorState
  91. ();
  92. /// <exception cref="android.os.RemoteException"></exception>
  93. void moveTaskToFront(int task, int flags);
  94. /// <exception cref="android.os.RemoteException"></exception>
  95. void moveTaskToBack(int task);
  96. /// <exception cref="android.os.RemoteException"></exception>
  97. bool moveActivityTaskToBack(android.os.IBinder token, bool nonRoot);
  98. /// <exception cref="android.os.RemoteException"></exception>
  99. void moveTaskBackwards(int task);
  100. /// <exception cref="android.os.RemoteException"></exception>
  101. int getTaskForActivity(android.os.IBinder token, bool onlyRoot);
  102. /// <exception cref="android.os.RemoteException"></exception>
  103. void finishOtherInstances(android.os.IBinder token, android.content.ComponentName
  104. className);
  105. /// <exception cref="android.os.RemoteException"></exception>
  106. void reportThumbnail(android.os.IBinder token, android.graphics.Bitmap thumbnail,
  107. java.lang.CharSequence description);
  108. /// <exception cref="android.os.RemoteException"></exception>
  109. android.app.IActivityManagerClass.ContentProviderHolder getContentProvider(android.app.IApplicationThread
  110. caller, string name);
  111. /// <exception cref="android.os.RemoteException"></exception>
  112. void removeContentProvider(android.app.IApplicationThread caller, string name);
  113. /// <exception cref="android.os.RemoteException"></exception>
  114. void publishContentProviders(android.app.IApplicationThread caller, java.util.List
  115. <android.app.IActivityManagerClass.ContentProviderHolder> providers);
  116. /// <exception cref="android.os.RemoteException"></exception>
  117. android.app.PendingIntent getRunningServiceControlPanel(android.content.ComponentName
  118. service);
  119. /// <exception cref="android.os.RemoteException"></exception>
  120. android.content.ComponentName startService(android.app.IApplicationThread caller,
  121. android.content.Intent service, string resolvedType);
  122. /// <exception cref="android.os.RemoteException"></exception>
  123. int stopService(android.app.IApplicationThread caller, android.content.Intent service
  124. , string resolvedType);
  125. /// <exception cref="android.os.RemoteException"></exception>
  126. bool stopServiceToken(android.content.ComponentName className, android.os.IBinder
  127. token, int startId);
  128. /// <exception cref="android.os.RemoteException"></exception>
  129. void setServiceForeground(android.content.ComponentName className, android.os.IBinder
  130. token, int id, android.app.Notification notification, bool keepNotification);
  131. /// <exception cref="android.os.RemoteException"></exception>
  132. int bindService(android.app.IApplicationThread caller, android.os.IBinder token,
  133. android.content.Intent service, string resolvedType, android.app.IServiceConnection
  134. connection, int flags);
  135. /// <exception cref="android.os.RemoteException"></exception>
  136. bool unbindService(android.app.IServiceConnection connection);
  137. /// <exception cref="android.os.RemoteException"></exception>
  138. void publishService(android.os.IBinder token, android.content.Intent intent, android.os.IBinder
  139. service);
  140. /// <exception cref="android.os.RemoteException"></exception>
  141. void unbindFinished(android.os.IBinder token, android.content.Intent service, bool
  142. doRebind);
  143. /// <exception cref="android.os.RemoteException"></exception>
  144. void serviceDoneExecuting(android.os.IBinder token, int type, int startId, int res
  145. );
  146. /// <exception cref="android.os.RemoteException"></exception>
  147. android.os.IBinder peekService(android.content.Intent service, string resolvedType
  148. );
  149. /// <exception cref="android.os.RemoteException"></exception>
  150. bool bindBackupAgent(android.content.pm.ApplicationInfo appInfo, int backupRestoreMode
  151. );
  152. /// <exception cref="android.os.RemoteException"></exception>
  153. void backupAgentCreated(string packageName, android.os.IBinder agent);
  154. /// <exception cref="android.os.RemoteException"></exception>
  155. void unbindBackupAgent(android.content.pm.ApplicationInfo appInfo);
  156. /// <exception cref="android.os.RemoteException"></exception>
  157. void killApplicationProcess(string processName, int uid);
  158. /// <exception cref="android.os.RemoteException"></exception>
  159. bool startInstrumentation(android.content.ComponentName className, string profileFile
  160. , int flags, android.os.Bundle arguments, android.app.IInstrumentationWatcher watcher
  161. );
  162. /// <exception cref="android.os.RemoteException"></exception>
  163. void finishInstrumentation(android.app.IApplicationThread target, int resultCode,
  164. android.os.Bundle results);
  165. /// <exception cref="android.os.RemoteException"></exception>
  166. android.content.res.Configuration getConfiguration();
  167. /// <exception cref="android.os.RemoteException"></exception>
  168. void updateConfiguration(android.content.res.Configuration values);
  169. /// <exception cref="android.os.RemoteException"></exception>
  170. void setRequestedOrientation(android.os.IBinder token, int requestedOrientation);
  171. /// <exception cref="android.os.RemoteException"></exception>
  172. int getRequestedOrientation(android.os.IBinder token);
  173. /// <exception cref="android.os.RemoteException"></exception>
  174. android.content.ComponentName getActivityClassForToken(android.os.IBinder token);
  175. /// <exception cref="android.os.RemoteException"></exception>
  176. string getPackageForToken(android.os.IBinder token);
  177. /// <exception cref="android.os.RemoteException"></exception>
  178. android.content.IIntentSender getIntentSender(int type, string packageName, android.os.IBinder
  179. token, string resultWho, int requestCode, android.content.Intent[] intents, string
  180. [] resolvedTypes, int flags);
  181. /// <exception cref="android.os.RemoteException"></exception>
  182. void cancelIntentSender(android.content.IIntentSender sender);
  183. /// <exception cref="android.os.RemoteException"></exception>
  184. bool clearApplicationUserData(string packageName, android.content.pm.IPackageDataObserver
  185. observer);
  186. /// <exception cref="android.os.RemoteException"></exception>
  187. string getPackageForIntentSender(android.content.IIntentSender sender);
  188. /// <exception cref="android.os.RemoteException"></exception>
  189. void setProcessLimit(int max);
  190. /// <exception cref="android.os.RemoteException"></exception>
  191. int getProcessLimit();
  192. /// <exception cref="android.os.RemoteException"></exception>
  193. void setProcessForeground(android.os.IBinder token, int pid, bool isForeground);
  194. /// <exception cref="android.os.RemoteException"></exception>
  195. int checkPermission(string permission, int pid, int uid);
  196. /// <exception cref="android.os.RemoteException"></exception>
  197. int checkUriPermission(System.Uri uri, int pid, int uid, int mode);
  198. /// <exception cref="android.os.RemoteException"></exception>
  199. void grantUriPermission(android.app.IApplicationThread caller, string targetPkg,
  200. System.Uri uri, int mode);
  201. /// <exception cref="android.os.RemoteException"></exception>
  202. void revokeUriPermission(android.app.IApplicationThread caller, System.Uri uri, int
  203. mode);
  204. /// <exception cref="android.os.RemoteException"></exception>
  205. void showWaitingForDebugger(android.app.IApplicationThread who, bool waiting);
  206. /// <exception cref="android.os.RemoteException"></exception>
  207. void getMemoryInfo(android.app.ActivityManager.MemoryInfo outInfo);
  208. /// <exception cref="android.os.RemoteException"></exception>
  209. void killBackgroundProcesses(string packageName);
  210. /// <exception cref="android.os.RemoteException"></exception>
  211. void forceStopPackage(string packageName);
  212. // Note: probably don't want to allow applications access to these.
  213. /// <exception cref="android.os.RemoteException"></exception>
  214. void goingToSleep();
  215. /// <exception cref="android.os.RemoteException"></exception>
  216. void wakingUp();
  217. /// <exception cref="android.os.RemoteException"></exception>
  218. void unhandledBack();
  219. /// <exception cref="android.os.RemoteException"></exception>
  220. android.os.ParcelFileDescriptor openContentUri(System.Uri uri);
  221. /// <exception cref="android.os.RemoteException"></exception>
  222. void setDebugApp(string packageName, bool waitForDebugger, bool persistent);
  223. /// <exception cref="android.os.RemoteException"></exception>
  224. void setAlwaysFinish(bool enabled);
  225. /// <exception cref="android.os.RemoteException"></exception>
  226. void setActivityController(android.app.IActivityController watcher);
  227. /// <exception cref="android.os.RemoteException"></exception>
  228. void enterSafeMode();
  229. /// <exception cref="android.os.RemoteException"></exception>
  230. void noteWakeupAlarm(android.content.IIntentSender sender);
  231. /// <exception cref="android.os.RemoteException"></exception>
  232. bool killPids(int[] pids, string reason, bool secure);
  233. // Special low-level communication with activity manager.
  234. /// <exception cref="android.os.RemoteException"></exception>
  235. void startRunning(string pkg, string cls, string action, string data);
  236. /// <exception cref="android.os.RemoteException"></exception>
  237. void handleApplicationCrash(android.os.IBinder app, android.app.ApplicationErrorReport
  238. .CrashInfo crashInfo);
  239. /// <exception cref="android.os.RemoteException"></exception>
  240. bool handleApplicationWtf(android.os.IBinder app, string tag, android.app.ApplicationErrorReport
  241. .CrashInfo crashInfo);
  242. // A StrictMode violation to be handled. The violationMask is a
  243. // subset of the original StrictMode policy bitmask, with only the
  244. // bit violated and penalty bits to be executed by the
  245. // ActivityManagerService remaining set.
  246. /// <exception cref="android.os.RemoteException"></exception>
  247. void handleApplicationStrictModeViolation(android.os.IBinder app, int violationMask
  248. , android.os.StrictMode.ViolationInfo crashInfo);
  249. /// <exception cref="android.os.RemoteException"></exception>
  250. void signalPersistentProcesses(int signal);
  251. // Retrieve info of applications installed on external media that are currently
  252. // running.
  253. /// <exception cref="android.os.RemoteException"></exception>
  254. java.util.List<android.app.ActivityManager.RunningAppProcessInfo> getRunningAppProcesses
  255. ();
  256. // Retrieve running application processes in the system
  257. /// <exception cref="android.os.RemoteException"></exception>
  258. java.util.List<android.content.pm.ApplicationInfo> getRunningExternalApplications
  259. ();
  260. // Get device configuration
  261. /// <exception cref="android.os.RemoteException"></exception>
  262. android.content.pm.ConfigurationInfo getDeviceConfigurationInfo();
  263. // Turn on/off profiling in a particular process.
  264. /// <exception cref="android.os.RemoteException"></exception>
  265. bool profileControl(string process, bool start, string path, android.os.ParcelFileDescriptor
  266. fd, int profileType);
  267. /// <exception cref="android.os.RemoteException"></exception>
  268. bool shutdown(int timeout);
  269. /// <exception cref="android.os.RemoteException"></exception>
  270. void stopAppSwitches();
  271. /// <exception cref="android.os.RemoteException"></exception>
  272. void resumeAppSwitches();
  273. /// <exception cref="android.os.RemoteException"></exception>
  274. void registerActivityWatcher(android.app.IActivityWatcher watcher);
  275. /// <exception cref="android.os.RemoteException"></exception>
  276. void unregisterActivityWatcher(android.app.IActivityWatcher watcher);
  277. /// <exception cref="android.os.RemoteException"></exception>
  278. int startActivityInPackage(int uid, android.content.Intent intent, string resolvedType
  279. , android.os.IBinder resultTo, string resultWho, int requestCode, bool onlyIfNeeded
  280. );
  281. /// <exception cref="android.os.RemoteException"></exception>
  282. void killApplicationWithUid(string pkg, int uid);
  283. /// <exception cref="android.os.RemoteException"></exception>
  284. void closeSystemDialogs(string reason);
  285. /// <exception cref="android.os.RemoteException"></exception>
  286. android.os.Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids);
  287. /// <exception cref="android.os.RemoteException"></exception>
  288. void overridePendingTransition(android.os.IBinder token, string packageName, int
  289. enterAnim, int exitAnim);
  290. /// <exception cref="android.os.RemoteException"></exception>
  291. bool isUserAMonkey();
  292. /// <exception cref="android.os.RemoteException"></exception>
  293. void finishHeavyWeightApp();
  294. /// <exception cref="android.os.RemoteException"></exception>
  295. void setImmersive(android.os.IBinder token, bool immersive);
  296. /// <exception cref="android.os.RemoteException"></exception>
  297. bool isImmersive(android.os.IBinder token);
  298. /// <exception cref="android.os.RemoteException"></exception>
  299. bool isTopActivityImmersive();
  300. /// <exception cref="android.os.RemoteException"></exception>
  301. void crashApplication(int uid, int initialPid, string packageName, string message
  302. );
  303. /// <exception cref="android.os.RemoteException"></exception>
  304. string getProviderMimeType(System.Uri uri);
  305. /// <exception cref="android.os.RemoteException"></exception>
  306. android.os.IBinder newUriPermissionOwner(string name);
  307. /// <exception cref="android.os.RemoteException"></exception>
  308. void grantUriPermissionFromOwner(android.os.IBinder owner, int fromUid, string targetPkg
  309. , System.Uri uri, int mode);
  310. /// <exception cref="android.os.RemoteException"></exception>
  311. void revokeUriPermissionFromOwner(android.os.IBinder owner, System.Uri uri, int mode
  312. );
  313. /// <exception cref="android.os.RemoteException"></exception>
  314. int checkGrantUriPermission(int callingUid, string targetPkg, System.Uri uri, int
  315. modeFlags);
  316. // Cause the specified process to dump the specified heap.
  317. /// <exception cref="android.os.RemoteException"></exception>
  318. bool dumpHeap(string process, bool managed, string path, android.os.ParcelFileDescriptor
  319. fd);
  320. /// <exception cref="android.os.RemoteException"></exception>
  321. int startActivities(android.app.IApplicationThread caller, android.content.Intent
  322. [] intents, string[] resolvedTypes, android.os.IBinder resultTo);
  323. /// <exception cref="android.os.RemoteException"></exception>
  324. int startActivitiesInPackage(int uid, android.content.Intent[] intents, string[]
  325. resolvedTypes, android.os.IBinder resultTo);
  326. /// <exception cref="android.os.RemoteException"></exception>
  327. int getFrontActivityScreenCompatMode();
  328. /// <exception cref="android.os.RemoteException"></exception>
  329. void setFrontActivityScreenCompatMode(int mode);
  330. /// <exception cref="android.os.RemoteException"></exception>
  331. int getPackageScreenCompatMode(string packageName);
  332. /// <exception cref="android.os.RemoteException"></exception>
  333. void setPackageScreenCompatMode(string packageName, int mode);
  334. /// <exception cref="android.os.RemoteException"></exception>
  335. bool getPackageAskScreenCompat(string packageName);
  336. /// <exception cref="android.os.RemoteException"></exception>
  337. void setPackageAskScreenCompat(string packageName, bool ask);
  338. // Multi-user APIs
  339. /// <exception cref="android.os.RemoteException"></exception>
  340. bool switchUser(int userid);
  341. /// <exception cref="android.os.RemoteException"></exception>
  342. bool removeSubTask(int taskId, int subTaskIndex);
  343. /// <exception cref="android.os.RemoteException"></exception>
  344. bool removeTask(int taskId, int flags);
  345. /// <exception cref="android.os.RemoteException"></exception>
  346. void registerProcessObserver(android.app.IProcessObserver observer);
  347. /// <exception cref="android.os.RemoteException"></exception>
  348. void unregisterProcessObserver(android.app.IProcessObserver observer);
  349. /// <exception cref="android.os.RemoteException"></exception>
  350. bool isIntentSenderTargetedToPackage(android.content.IIntentSender sender);
  351. /// <exception cref="android.os.RemoteException"></exception>
  352. void updatePersistentConfiguration(android.content.res.Configuration values);
  353. /// <exception cref="android.os.RemoteException"></exception>
  354. long[] getProcessPss(int[] pids);
  355. /// <exception cref="android.os.RemoteException"></exception>
  356. void showBootMessage(java.lang.CharSequence msg, bool always);
  357. /// <exception cref="android.os.RemoteException"></exception>
  358. void dismissKeyguardOnNextActivity();
  359. bool testIsSystemReady();
  360. // Please keep these transaction codes the same -- they are also
  361. // sent by C++ code.
  362. // Remaining non-native transaction codes.
  363. }
  364. /// <summary>System private API for talking with the activity manager service.</summary>
  365. /// <remarks>
  366. /// System private API for talking with the activity manager service. This
  367. /// provides calls from the application back to the activity manager.
  368. /// <hide></hide>
  369. /// </remarks>
  370. [Sharpen.Sharpened]
  371. public static class IActivityManagerClass
  372. {
  373. /// <summary>
  374. /// Returned by startActivity() if the start request was canceled because
  375. /// app switches are temporarily canceled to ensure the user's last request
  376. /// (such as pressing home) is performed.
  377. /// </summary>
  378. /// <remarks>
  379. /// Returned by startActivity() if the start request was canceled because
  380. /// app switches are temporarily canceled to ensure the user's last request
  381. /// (such as pressing home) is performed.
  382. /// </remarks>
  383. public const int START_SWITCHES_CANCELED = 4;
  384. /// <summary>
  385. /// Returned by startActivity() if an activity wasn't really started, but
  386. /// the given Intent was given to the existing top activity.
  387. /// </summary>
  388. /// <remarks>
  389. /// Returned by startActivity() if an activity wasn't really started, but
  390. /// the given Intent was given to the existing top activity.
  391. /// </remarks>
  392. public const int START_DELIVERED_TO_TOP = 3;
  393. /// <summary>
  394. /// Returned by startActivity() if an activity wasn't really started, but
  395. /// a task was simply brought to the foreground.
  396. /// </summary>
  397. /// <remarks>
  398. /// Returned by startActivity() if an activity wasn't really started, but
  399. /// a task was simply brought to the foreground.
  400. /// </remarks>
  401. public const int START_TASK_TO_FRONT = 2;
  402. /// <summary>
  403. /// Returned by startActivity() if the caller asked that the Intent not
  404. /// be executed if it is the recipient, and that is indeed the case.
  405. /// </summary>
  406. /// <remarks>
  407. /// Returned by startActivity() if the caller asked that the Intent not
  408. /// be executed if it is the recipient, and that is indeed the case.
  409. /// </remarks>
  410. public const int START_RETURN_INTENT_TO_CALLER = 1;
  411. /// <summary>Activity was started successfully as normal.</summary>
  412. /// <remarks>Activity was started successfully as normal.</remarks>
  413. public const int START_SUCCESS = 0;
  414. public const int START_INTENT_NOT_RESOLVED = -1;
  415. public const int START_CLASS_NOT_FOUND = -2;
  416. public const int START_FORWARD_AND_REQUEST_CONFLICT = -3;
  417. public const int START_PERMISSION_DENIED = -4;
  418. public const int START_NOT_ACTIVITY = -5;
  419. public const int START_CANCELED = -6;
  420. public const int BROADCAST_SUCCESS = 0;
  421. public const int BROADCAST_STICKY_CANT_HAVE_PERMISSION = -1;
  422. public const int INTENT_SENDER_BROADCAST = 1;
  423. public const int INTENT_SENDER_ACTIVITY = 2;
  424. public const int INTENT_SENDER_ACTIVITY_RESULT = 3;
  425. public const int INTENT_SENDER_SERVICE = 4;
  426. /// <summary>Information you can retrieve about a particular application.</summary>
  427. /// <remarks>Information you can retrieve about a particular application.</remarks>
  428. public class ContentProviderHolder : android.os.Parcelable
  429. {
  430. public readonly android.content.pm.ProviderInfo info;
  431. public android.content.IContentProvider provider;
  432. public bool noReleaseNeeded;
  433. public ContentProviderHolder(android.content.pm.ProviderInfo _info)
  434. {
  435. info = _info;
  436. }
  437. [Sharpen.ImplementsInterface(@"android.os.Parcelable")]
  438. public virtual int describeContents()
  439. {
  440. return 0;
  441. }
  442. [Sharpen.ImplementsInterface(@"android.os.Parcelable")]
  443. public virtual void writeToParcel(android.os.Parcel dest, int flags)
  444. {
  445. info.writeToParcel(dest, 0);
  446. if (provider != null)
  447. {
  448. dest.writeStrongBinder(provider.asBinder());
  449. }
  450. else
  451. {
  452. dest.writeStrongBinder(null);
  453. }
  454. dest.writeInt(noReleaseNeeded ? 1 : 0);
  455. }
  456. private sealed class _Creator_407 : android.os.ParcelableClass.Creator<android.app.IActivityManagerClass
  457. .ContentProviderHolder>
  458. {
  459. public _Creator_407()
  460. {
  461. }
  462. [Sharpen.ImplementsInterface(@"android.os.Parcelable.Creator")]
  463. public android.app.IActivityManagerClass.ContentProviderHolder createFromParcel(android.os.Parcel
  464. source)
  465. {
  466. return new android.app.IActivityManagerClass.ContentProviderHolder(source);
  467. }
  468. [Sharpen.ImplementsInterface(@"android.os.Parcelable.Creator")]
  469. public android.app.IActivityManagerClass.ContentProviderHolder[] newArray(int size
  470. )
  471. {
  472. return new android.app.IActivityManagerClass.ContentProviderHolder[size];
  473. }
  474. }
  475. public static readonly android.os.ParcelableClass.Creator<android.app.IActivityManagerClass
  476. .ContentProviderHolder> CREATOR = new _Creator_407();
  477. private ContentProviderHolder(android.os.Parcel source)
  478. {
  479. info = android.content.pm.ProviderInfo.CREATOR.createFromParcel(source);
  480. provider = android.content.ContentProviderNative.asInterface(source.readStrongBinder
  481. ());
  482. noReleaseNeeded = source.readInt() != 0;
  483. }
  484. }
  485. /// <summary>Information returned after waiting for an activity start.</summary>
  486. /// <remarks>Information returned after waiting for an activity start.</remarks>
  487. public class WaitResult : android.os.Parcelable
  488. {
  489. public int result;
  490. public bool timeout;
  491. public android.content.ComponentName who;
  492. public long thisTime;
  493. public long totalTime;
  494. public WaitResult()
  495. {
  496. }
  497. [Sharpen.ImplementsInterface(@"android.os.Parcelable")]
  498. public virtual int describeContents()
  499. {
  500. return 0;
  501. }
  502. [Sharpen.ImplementsInterface(@"android.os.Parcelable")]
  503. public virtual void writeToParcel(android.os.Parcel dest, int flags)
  504. {
  505. dest.writeInt(result);
  506. dest.writeInt(timeout ? 1 : 0);
  507. android.content.ComponentName.writeToParcel(who, dest);
  508. dest.writeLong(thisTime);
  509. dest.writeLong(totalTime);
  510. }
  511. private sealed class _Creator_449 : android.os.ParcelableClass.Creator<android.app.IActivityManagerClass
  512. .WaitResult>
  513. {
  514. public _Creator_449()
  515. {
  516. }
  517. [Sharpen.ImplementsInterface(@"android.os.Parcelable.Creator")]
  518. public android.app.IActivityManagerClass.WaitResult createFromParcel(android.os.Parcel
  519. source)
  520. {
  521. return new android.app.IActivityManagerClass.WaitResult(source);
  522. }
  523. [Sharpen.ImplementsInterface(@"android.os.Parcelable.Creator")]
  524. public android.app.IActivityManagerClass.WaitResult[] newArray(int size)
  525. {
  526. return new android.app.IActivityManagerClass.WaitResult[size];
  527. }
  528. }
  529. public static readonly android.os.ParcelableClass.Creator<android.app.IActivityManagerClass
  530. .WaitResult> CREATOR = new _Creator_449();
  531. private WaitResult(android.os.Parcel source)
  532. {
  533. result = source.readInt();
  534. timeout = source.readInt() != 0;
  535. who = android.content.ComponentName.readFromParcel(source);
  536. thisTime = source.readLong();
  537. totalTime = source.readLong();
  538. }
  539. }
  540. public const string descriptor = "android.app.IActivityManager";
  541. public const int START_RUNNING_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION;
  542. public const int HANDLE_APPLICATION_CRASH_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  543. + 1;
  544. public const int START_ACTIVITY_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  545. + 2;
  546. public const int UNHANDLED_BACK_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  547. + 3;
  548. public const int OPEN_CONTENT_URI_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  549. + 4;
  550. public const int FINISH_ACTIVITY_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  551. + 10;
  552. public const int REGISTER_RECEIVER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  553. + 11;
  554. public const int UNREGISTER_RECEIVER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  555. + 12;
  556. public const int BROADCAST_INTENT_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  557. + 13;
  558. public const int UNBROADCAST_INTENT_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  559. + 14;
  560. public const int FINISH_RECEIVER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  561. + 15;
  562. public const int ATTACH_APPLICATION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  563. + 16;
  564. public const int ACTIVITY_IDLE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  565. + 17;
  566. public const int ACTIVITY_PAUSED_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  567. + 18;
  568. public const int ACTIVITY_STOPPED_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  569. + 19;
  570. public const int GET_CALLING_PACKAGE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  571. + 20;
  572. public const int GET_CALLING_ACTIVITY_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  573. + 21;
  574. public const int GET_TASKS_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  575. + 22;
  576. public const int MOVE_TASK_TO_FRONT_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  577. + 23;
  578. public const int MOVE_TASK_TO_BACK_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  579. + 24;
  580. public const int MOVE_TASK_BACKWARDS_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  581. + 25;
  582. public const int GET_TASK_FOR_ACTIVITY_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  583. + 26;
  584. public const int REPORT_THUMBNAIL_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  585. + 27;
  586. public const int GET_CONTENT_PROVIDER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  587. + 28;
  588. public const int PUBLISH_CONTENT_PROVIDERS_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  589. + 29;
  590. public const int FINISH_SUB_ACTIVITY_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  591. + 31;
  592. public const int GET_RUNNING_SERVICE_CONTROL_PANEL_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  593. + 32;
  594. public const int START_SERVICE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  595. + 33;
  596. public const int STOP_SERVICE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  597. + 34;
  598. public const int BIND_SERVICE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  599. + 35;
  600. public const int UNBIND_SERVICE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  601. + 36;
  602. public const int PUBLISH_SERVICE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  603. + 37;
  604. public const int FINISH_OTHER_INSTANCES_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  605. + 38;
  606. public const int GOING_TO_SLEEP_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  607. + 39;
  608. public const int WAKING_UP_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  609. + 40;
  610. public const int SET_DEBUG_APP_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  611. + 41;
  612. public const int SET_ALWAYS_FINISH_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  613. + 42;
  614. public const int START_INSTRUMENTATION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  615. + 43;
  616. public const int FINISH_INSTRUMENTATION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  617. + 44;
  618. public const int GET_CONFIGURATION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  619. + 45;
  620. public const int UPDATE_CONFIGURATION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  621. + 46;
  622. public const int STOP_SERVICE_TOKEN_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  623. + 47;
  624. public const int GET_ACTIVITY_CLASS_FOR_TOKEN_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  625. + 48;
  626. public const int GET_PACKAGE_FOR_TOKEN_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  627. + 49;
  628. public const int SET_PROCESS_LIMIT_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  629. + 50;
  630. public const int GET_PROCESS_LIMIT_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  631. + 51;
  632. public const int CHECK_PERMISSION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  633. + 52;
  634. public const int CHECK_URI_PERMISSION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  635. + 53;
  636. public const int GRANT_URI_PERMISSION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  637. + 54;
  638. public const int REVOKE_URI_PERMISSION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  639. + 55;
  640. public const int SET_ACTIVITY_CONTROLLER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  641. + 56;
  642. public const int SHOW_WAITING_FOR_DEBUGGER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  643. + 57;
  644. public const int SIGNAL_PERSISTENT_PROCESSES_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  645. + 58;
  646. public const int GET_RECENT_TASKS_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  647. + 59;
  648. public const int SERVICE_DONE_EXECUTING_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  649. + 60;
  650. public const int ACTIVITY_DESTROYED_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  651. + 61;
  652. public const int GET_INTENT_SENDER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  653. + 62;
  654. public const int CANCEL_INTENT_SENDER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  655. + 63;
  656. public const int GET_PACKAGE_FOR_INTENT_SENDER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  657. + 64;
  658. public const int ENTER_SAFE_MODE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  659. + 65;
  660. public const int START_NEXT_MATCHING_ACTIVITY_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  661. + 66;
  662. public const int NOTE_WAKEUP_ALARM_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  663. + 67;
  664. public const int REMOVE_CONTENT_PROVIDER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  665. + 68;
  666. public const int SET_REQUESTED_ORIENTATION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  667. + 69;
  668. public const int GET_REQUESTED_ORIENTATION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  669. + 70;
  670. public const int UNBIND_FINISHED_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  671. + 71;
  672. public const int SET_PROCESS_FOREGROUND_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  673. + 72;
  674. public const int SET_SERVICE_FOREGROUND_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  675. + 73;
  676. public const int MOVE_ACTIVITY_TASK_TO_BACK_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  677. + 74;
  678. public const int GET_MEMORY_INFO_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  679. + 75;
  680. public const int GET_PROCESSES_IN_ERROR_STATE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  681. + 76;
  682. public const int CLEAR_APP_DATA_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  683. + 77;
  684. public const int FORCE_STOP_PACKAGE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  685. + 78;
  686. public const int KILL_PIDS_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  687. + 79;
  688. public const int GET_SERVICES_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  689. + 80;
  690. public const int GET_TASK_THUMBNAILS_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  691. + 81;
  692. public const int GET_RUNNING_APP_PROCESSES_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  693. + 82;
  694. public const int GET_DEVICE_CONFIGURATION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  695. + 83;
  696. public const int PEEK_SERVICE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  697. + 84;
  698. public const int PROFILE_CONTROL_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  699. + 85;
  700. public const int SHUTDOWN_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  701. + 86;
  702. public const int STOP_APP_SWITCHES_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  703. + 87;
  704. public const int RESUME_APP_SWITCHES_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  705. + 88;
  706. public const int START_BACKUP_AGENT_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  707. + 89;
  708. public const int BACKUP_AGENT_CREATED_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  709. + 90;
  710. public const int UNBIND_BACKUP_AGENT_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  711. + 91;
  712. public const int REGISTER_ACTIVITY_WATCHER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  713. + 92;
  714. public const int UNREGISTER_ACTIVITY_WATCHER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  715. + 93;
  716. public const int START_ACTIVITY_IN_PACKAGE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  717. + 94;
  718. public const int KILL_APPLICATION_WITH_UID_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  719. + 95;
  720. public const int CLOSE_SYSTEM_DIALOGS_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  721. + 96;
  722. public const int GET_PROCESS_MEMORY_INFO_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  723. + 97;
  724. public const int KILL_APPLICATION_PROCESS_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  725. + 98;
  726. public const int START_ACTIVITY_INTENT_SENDER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  727. + 99;
  728. public const int OVERRIDE_PENDING_TRANSITION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  729. + 100;
  730. public const int HANDLE_APPLICATION_WTF_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  731. + 101;
  732. public const int KILL_BACKGROUND_PROCESSES_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  733. + 102;
  734. public const int IS_USER_A_MONKEY_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  735. + 103;
  736. public const int START_ACTIVITY_AND_WAIT_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  737. + 104;
  738. public const int WILL_ACTIVITY_BE_VISIBLE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  739. + 105;
  740. public const int START_ACTIVITY_WITH_CONFIG_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  741. + 106;
  742. public const int GET_RUNNING_EXTERNAL_APPLICATIONS_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  743. + 107;
  744. public const int FINISH_HEAVY_WEIGHT_APP_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  745. + 108;
  746. public const int HANDLE_APPLICATION_STRICT_MODE_VIOLATION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  747. + 109;
  748. public const int IS_IMMERSIVE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  749. + 110;
  750. public const int SET_IMMERSIVE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  751. + 111;
  752. public const int IS_TOP_ACTIVITY_IMMERSIVE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  753. + 112;
  754. public const int CRASH_APPLICATION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  755. + 113;
  756. public const int GET_PROVIDER_MIME_TYPE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  757. + 114;
  758. public const int NEW_URI_PERMISSION_OWNER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  759. + 115;
  760. public const int GRANT_URI_PERMISSION_FROM_OWNER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  761. + 116;
  762. public const int REVOKE_URI_PERMISSION_FROM_OWNER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  763. + 117;
  764. public const int CHECK_GRANT_URI_PERMISSION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  765. + 118;
  766. public const int DUMP_HEAP_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  767. + 119;
  768. public const int START_ACTIVITIES_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  769. + 120;
  770. public const int START_ACTIVITIES_IN_PACKAGE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  771. + 121;
  772. public const int ACTIVITY_SLEPT_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  773. + 122;
  774. public const int GET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  775. + 123;
  776. public const int SET_FRONT_ACTIVITY_SCREEN_COMPAT_MODE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  777. + 124;
  778. public const int GET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  779. + 125;
  780. public const int SET_PACKAGE_SCREEN_COMPAT_MODE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  781. + 126;
  782. public const int GET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  783. + 127;
  784. public const int SET_PACKAGE_ASK_SCREEN_COMPAT_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  785. + 128;
  786. public const int SWITCH_USER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  787. + 129;
  788. public const int REMOVE_SUB_TASK_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  789. + 130;
  790. public const int REMOVE_TASK_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  791. + 131;
  792. public const int REGISTER_PROCESS_OBSERVER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  793. + 132;
  794. public const int UNREGISTER_PROCESS_OBSERVER_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  795. + 133;
  796. public const int IS_INTENT_SENDER_TARGETED_TO_PACKAGE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  797. + 134;
  798. public const int UPDATE_PERSISTENT_CONFIGURATION_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  799. + 135;
  800. public const int GET_PROCESS_PSS_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  801. + 136;
  802. public const int SHOW_BOOT_MESSAGE_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  803. + 137;
  804. public const int DISMISS_KEYGUARD_ON_NEXT_ACTIVITY_TRANSACTION = android.os.IBinderClass.FIRST_CALL_TRANSACTION
  805. + 138;
  806. }
  807. }