Home
last modified time | relevance | path

Searched refs:statbuf (Results 1 – 5 of 5) sorted by relevance

/ndk/sources/host-tools/sed-4.2.1/lib/
Dset-mode-acl.c408 struct stat statbuf; in qset_acl()
413 ret = fstat (desc, &statbuf); in qset_acl()
415 ret = stat (name, &statbuf); in qset_acl()
419 entries[0].uid = statbuf.st_uid; in qset_acl()
423 entries[1].gid = statbuf.st_gid; in qset_acl()
Dfile-has-acl.c491 struct stat statbuf; in file_has_acl()
493 if (stat (name, &statbuf) < 0) in file_has_acl()
496 return acl_nontrivial (count, entries, &statbuf); in file_has_acl()
/ndk/sources/host-tools/make-3.81/
Darscan.c765 struct stat statbuf; in ar_member_touch() local
786 EINTRLOOP (i, fstat (fd, &statbuf)); in ar_member_touch()
793 sprintf (ar_hdr.ar_date, "%ld", (long int) statbuf.st_mtime); in ar_member_touch()
798 ar_hdr.ar_date = statbuf.st_mtime; in ar_member_touch()
Dremake.c1062 struct stat statbuf; in touch_file() local
1066 EINTRLOOP (e, fstat (fd, &statbuf)); in touch_file()
1078 if (statbuf.st_size == 0) in touch_file()
/ndk/sources/host-tools/sed-4.2.1/sed/
Dutils.c351 struct stat statbuf; in follow_symlink() local
362 while ((rc = lstat (buf, &statbuf)) == 0 in follow_symlink()
363 && (statbuf.st_mode & S_IFLNK) == S_IFLNK) in follow_symlink()