Lines Matching refs:file
5 fdsan is a file descriptor sanitizer added to Android in API level 29.
12 …file descriptor sanitizer) detects mishandling of file descriptor ownership, which tend to manifes…
47 …file descriptor mismanagement by enforcing file descriptor ownership. Like how most memory allocat…
49 …file descriptor. The tag consists of an 8-bit type byte that identifies the type of the owner (`en…
51 If a file descriptor that's been marked with a tag is closed with an incorrect tag, or without a ta…
67 The likelihood of fdsan catching a file descriptor error is proportional to the percentage of file …
138 fdsan_test: good failed to write?!: Bad file descriptor
140 …g out file descriptor too early, or someone else is helpfully closing it for us. Let's use `androi…
162 Now that we've guarded the file descriptor with fdsan, we should be able to find where the double c…
167 Abort message: 'attempted to close file descriptor 3, expected to be unowned, actually owned by uni…
190 …coverage. What actually happened is that the culprit closed `bystander`'s file descriptor between …
208 Abort message: 'attempted to close file descriptor 3, expected to be unowned, actually owned by uni…
235 …_fdsan_exchange_owner_tag` modifies a file descriptor's close tag, and `android_fdsan_close_with_t…
365 * Native APIs not making it clear when they take ownership of a file descriptor. <br/>
375 …OS crashes caused by a file descriptor double close leading to SQLite database corruption](https:/…