Merge "Nullability check for statvfs module." am: 417c3a197b
am: 089555446c
Original change: https://android-review.googlesource.com/c/platform/bionic/+/2552371 Change-Id: Iaf0c47cdeb1e72bb4b25ef3143b0acf0db052417 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
f5b07ae65a
1 changed files with 4 additions and 4 deletions
|
@ -96,7 +96,7 @@ struct statvfs64 { __STATVFS64_BODY __STATVFS64_CODA };
|
|||
*
|
||||
* Available since API level 19.
|
||||
*/
|
||||
int statvfs(const char* __path, struct statvfs* __buf) __INTRODUCED_IN(19);
|
||||
int statvfs(const char* _Nonnull __path, struct statvfs* _Nonnull __buf) __INTRODUCED_IN(19);
|
||||
|
||||
/**
|
||||
* [fstatvfs(3)](http://man7.org/linux/man-pages/man3/fstatvfs.3.html)
|
||||
|
@ -106,12 +106,12 @@ int statvfs(const char* __path, struct statvfs* __buf) __INTRODUCED_IN(19);
|
|||
*
|
||||
* Available since API level 19.
|
||||
*/
|
||||
int fstatvfs(int __fd, struct statvfs* __buf) __INTRODUCED_IN(19);
|
||||
int fstatvfs(int __fd, struct statvfs* _Nonnull __buf) __INTRODUCED_IN(19);
|
||||
|
||||
/** Equivalent to statvfs() . */
|
||||
int statvfs64(const char* __path, struct statvfs64* __buf) __INTRODUCED_IN(21);
|
||||
int statvfs64(const char* _Nonnull __path, struct statvfs64* _Nonnull __buf) __INTRODUCED_IN(21);
|
||||
|
||||
/** Equivalent to fstatvfs(). */
|
||||
int fstatvfs64(int __fd, struct statvfs64* __buf) __INTRODUCED_IN(21);
|
||||
int fstatvfs64(int __fd, struct statvfs64* _Nonnull __buf) __INTRODUCED_IN(21);
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Reference in a new issue