Lines Matching refs:in
38 …. suppose thread two was saving user data to disk when a third thread came in and opened a socket …
45 …in [`<android/fdsan.h>`](https://android.googlesource.com/platform/bionic/+/master/libc/include/an…
61 …or less strict at runtime via the `android_fdsan_set_error_level` function in [`<android/fdsan.h>`…
63 …ile descriptor error is proportional to the percentage of file descriptors in your process that ar…
132 which results in the following output:
136 … else is helpfully closing it for us. Let's use `android::base::unique_fd` in `victim` to guard th…
184 ...in the obviously correct bystander? What's going on here?
186 …in fdsan, and will commonly be seen when tracking down double-closes in processes that have sparse…
227 …que_fd` and `ParcelFileDescriptor`, to improve the odds that double closes in other code get detec…
238 * Redistribution and use in source and binary forms, with or without
243 * * Redistributions in binary form must reproduce the above copyright
244 * notice, this list of conditions and the following disclaimer in
362 * Solution: accept `unique_fd` instead of `int` in functions that take ownership.