/third_party/musl/libc-test/src/functionalext/supplement/linux/ |
H A D | removexattr.c | 72 result = removexattr(path, name); in removexattr_0100() 98 int result = removexattr(NULL, NULL); in removexattr_0200()
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
H A D | xattr.h | 23 int removexattr(const char *, const char *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
H A D | xattr.h | 23 int removexattr(const char *, const char *);
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
H A D | xattr.h | 23 int removexattr(const char *, const char *);
|
/third_party/musl/include/sys/ |
H A D | xattr.h | 23 int removexattr(const char *, const char *);
|
/third_party/toybox/toys/other/ |
H A D | setfattr.c | 36 if (TT.x) rc = (h?lremovexattr:removexattr)(*s, TT.x); in setfattr_main()
|
/third_party/ltp/testcases/kernel/syscalls/removexattr/ |
H A D | removexattr02.c | 21 * 1) removexattr(2) fails if the named attribute does not exist. 22 * 2) removexattr(2) fails if path is an empty string. 23 * 3) removexattr(2) fails when attempted to read from a invalid address. 26 * 1) removexattr(2) should return -1 and set errno to ENODATA. 28 * 3) removexattr(2) should return -1 and set errno to EFAULT. 87 TEST(removexattr(tc->path, tc->name)); in verify_removexattr() 94 tst_resm(TFAIL, "removexattr() succeeded unexpectedly"); in verify_removexattr() 99 tst_resm(TFAIL | TTERRNO, "removexattr() failed unexpectedly," in verify_removexattr() 103 "removexattr() failed as expected"); in verify_removexattr()
|
H A D | removexattr01.c | 21 * The testcase checks the basic functionality of the removexattr(2). 22 * removexattr(2) removes the extended attribute identified by 84 TEST(removexattr("testfile", USER_KEY)); in verify_removexattr() 86 tst_resm(TFAIL | TTERRNO, "removexattr() failed"); in verify_removexattr() 99 tst_resm(TPASS, "removexattr() succeeded"); in verify_removexattr()
|
/third_party/musl/src/linux/ |
H A D | xattr.c | 49 int removexattr(const char *path, const char *name) in removexattr() function
|
/third_party/ntfs-3g/include/fuse-lite/ |
H A D | fuse.h | 249 int (*removexattr) (const char *, const char *); member
|
H A D | fuse_lowlevel.h | 684 void (*removexattr) (fuse_req_t req, fuse_ino_t ino, const char *name); member 849 * removexattr and setlk may send a zero code
|
/third_party/libfuse/example/ |
H A D | hello_ll.c | 212 .removexattr = hello_ll_removexattr,
|
H A D | passthrough_fh.c | 645 .removexattr = xmp_removexattr,
|
H A D | passthrough.c | 542 .removexattr = xmp_removexattr,
|
H A D | passthrough_hp.cc | 1109 ret = removexattr(procname, name); in sfs_removexattr() 1153 sfs_oper.removexattr = sfs_removexattr; in assign_operations()
|
H A D | passthrough_ll.c | 1095 ret = removexattr(procname, name); in lo_removexattr() 1174 .removexattr = lo_removexattr,
|
/third_party/libfuse/include/ |
H A D | fuse.h | 554 int (*removexattr) (const char *, const char *); member
|
H A D | fuse_lowlevel.h | 900 * future removexattr() requests will fail with EOPNOTSUPP without being 910 void (*removexattr) (fuse_req_t req, fuse_ino_t ino, const char *name); member 1300 * removexattr, setlk. 1694 * rename(), setxattr(), removexattr(), readdir() or readdirplus()
|
/third_party/libfuse/lib/modules/ |
H A D | subdir.c | 606 .removexattr = subdir_removexattr,
|
H A D | iconv.c | 625 .removexattr = iconv_removexattr,
|
/third_party/python/Lib/test/ |
H A D | test_os.py | 3585 def _check_xattrs_str(self, s, getxattr, setxattr, removexattr, listxattr, **kwargs): 3616 removexattr(fn, s("user.test"), **kwargs) 3627 removexattr(fn, s("user.test"), **kwargs) 3641 self._check_xattrs(os.getxattr, os.setxattr, os.removexattr, 3645 self._check_xattrs(os.getxattr, os.setxattr, os.removexattr, 3655 def removexattr(path, *args): function 3657 os.removexattr(fp.fileno(), *args) 3661 self._check_xattrs(getxattr, setxattr, removexattr, listxattr) 3884 (self.filenames, os.removexattr, "user.test"),
|
/third_party/ntfs-3g/libfuse-lite/ |
H A D | fuse_lowlevel.c | 891 if (req->f->op.removexattr) in do_removexattr() 892 req->f->op.removexattr(req, nodeid, name); in do_removexattr()
|
H A D | fuse.c | 1036 if (fs->op.removexattr) in fuse_fs_removexattr() 1037 return fs->op.removexattr(path, name); in fuse_fs_removexattr() 2825 .removexattr = fuse_lib_removexattr,
|
/third_party/ltp/lib/ |
H A D | safe_macros.c | 1165 rval = removexattr(path, name); in safe_removexattr() 1175 "removexattr(%s, %s) failed", path, name); in safe_removexattr() 1178 "Invalid removexattr(%s, %s) return value %d", path, in safe_removexattr()
|
/third_party/libfuse/test/ |
H A D | test_examples.py | 862 os.removexattr(path, b'hello_ll_removexattr_name')
|