Lines Matching refs:that
38 Assertion failures are probably the most innocuous result that can arise from these bugs: silent da…
43 …ile descriptor with an owner; if someone tries to close a file descriptor that they don't own, dep…
45 …that identifies the type of the owner (`enum android_fdan_owner_type` in [`<android/fdsan.h>`](htt…
47 If a file descriptor that's been marked with a tag is closed with an incorrect tag, or without a ta…
63 …ror is proportional to the percentage of file descriptors in your process that are tagged with an …
68 Let's look at a simple contrived example that uses sleeps to force a particular interleaving of thr…
136 This implies that either we're accidentally closing out file descriptor too early, or someone else …
158 Now that we've guarded the file descriptor with fdsan, we should be able to find where the double c…
186 …hen tracking down double-closes in processes that have sparse fdsan coverage. What actually happen…
227 …ed types like `unique_fd` and `ParcelFileDescriptor`, to improve the odds that double closes in ot…
239 * modification, are permitted provided that the following conditions
341 // These functions are marked with __attribute__((weak)), so that their
362 * Solution: accept `unique_fd` instead of `int` in functions that take ownership.
364 …* Receiving a `ParcelFileDescriptor` via Intent, and then passing it into JNI code that ends up ca…