I'm looking to extend the StrictMode API, similar to what is suggested in this StackOverflow question. I saw that the API was extended in Honeycomb to include a detectCustomSlowMethod() API, which sounds like it could handle some extension cases (although I'm not sure what it does because the documentation is copy-pasted from the disk methods).

However, I want to extend the API to include additional hardware access detection, which isn't possible with the API. Therefore, my question is where can I find the code that implements the StrictMode API?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

where can I find the code that implements the StrictMode API?

In the Android source code. I usually use Google Code Search.

link|improve this answer
Thanks for the hint! This was my first introduction to Code Search... that is a powerful tool! – Ryan Gross Feb 19 '11 at 22:23
@Ryan Gross: Google Code Search is pretty awesome. Use android.git.kernel.org in the Package field to limit your source purely to the AOSP. – CommonsWare Feb 19 '11 at 22:26
feedback

Here's the main Java interface:

http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob;f=core/java/android/os/StrictMode.java;hb=HEAD

The implementations is all over the Android guts, though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.