Detects everything that's potentially suspect. Before Honeycomb, this is limited to SQLite objects, disk accesses and network operations. If ExcludeDisk is True, disks accesses are permitted. If ExcludeNetwork is True, network operations are permitted.
Place this right after Activity_Create and uncheck "Filter" in B4A to see the system log.
EnableStrictModeForClosableObjects
Detects when an Closeable or other object with a explicit termination method is finalized without having been closed. API minimum = 11.
Place this right after Activity_Create and uncheck "Filter" in B4A to see the system log.
EnableStrictModeForDiskReads
Detects disk reads. API minimum = 9.
Place this right after Activity_Create and uncheck "Filter" in B4A to see the system log.
EnableStrictModeForDiskWrites
Detects disk writes. API minimum = 9.
Place this right after Activity_Create and uncheck "Filter" in B4A to see the system log.
EnableStrictModeForNetwork
Detects network operations. API minimum = 9.
Place this right after Activity_Create and uncheck "Filter" in B4A to see the system log.
EnableStrictModeForRegistrationObjects
Detects when a BroadcastReceiver or ServiceConnection is leaked during Context teardown. API minimum = 16.
Place this right after Activity_Create and uncheck "Filter" in B4A to see the system log.
EnableStrictModeForSlowCalls
Detects slow calls. API minimum = 11.
Place this right after Activity_Create and uncheck "Filter" in B4A to see the system log.
EnableStrictModeForSQLite
Detects when an SQLiteCursor or other SQLite object is finalized without having been closed. API minimum = 9.
Place this right after Activity_Create and uncheck "Filter" in B4A to see the system log.
FreeMemoryAsLong [read only]
Gets an approximation of the amount (in bytes) of free memory available to the running program.
MaxMemoryAsLong [read only]
Gets the maximum amount of memory (in bytes) that may be used by the running program.
Top