bufsiz            262 examples/VFS/skel_opaque.c static int skel_readlink(vfs_handle_struct *handle,  const char *path, char *buf, size_t bufsiz)
bufsiz            264 examples/VFS/skel_opaque.c 	return vfswrap_readlink(NULL,  path, buf, bufsiz);
bufsiz            254 examples/VFS/skel_transparent.c static int skel_readlink(vfs_handle_struct *handle,  const char *path, char *buf, size_t bufsiz)
bufsiz            256 examples/VFS/skel_transparent.c 	return SMB_VFS_NEXT_READLINK(handle, path, buf, bufsiz);
bufsiz            647 lib/replace/replace.c int rep_readlink(const char *path, char *buf, size_t bufsiz)
bufsiz            930 source3/client/clitar.c static int next_block(char *ltarbuf, char **bufferp, int bufsiz)
bufsiz            938 source3/client/clitar.c 	if (*bufferp >= (ltarbuf + bufsiz)) {
bufsiz            948 source3/client/clitar.c 		bufread = read(tarhandle, ltarbuf, bufsiz);
bufsiz            951 source3/client/clitar.c 		while (total < bufsiz) {
bufsiz            961 source3/client/clitar.c 			bufread = read(tarhandle, &ltarbuf[total], bufsiz - total);
bufsiz            377 source3/include/vfs.h 		int (*vfs_readlink)(struct vfs_handle_struct *handle, const char *path, char *buf, size_t bufsiz);
bufsiz             82 source3/include/vfs_macros.h #define SMB_VFS_READLINK(conn, path, buf, bufsiz) ((conn)->vfs.ops.vfs_readlink((conn)->vfs.handles.vfs_readlink, (path), (buf), (bufsiz)))
bufsiz            216 source3/include/vfs_macros.h #define SMB_VFS_OPAQUE_READLINK(conn, path, buf, bufsiz) ((conn)->vfs_opaque.ops.vfs_readlink((conn)->vfs_opaque.handles.vfs_readlink, (path), (buf), (bufsiz)))
bufsiz            351 source3/include/vfs_macros.h #define SMB_VFS_NEXT_READLINK(handle, path, buf, bufsiz) ((handle)->vfs_next.ops.vfs_readlink((handle)->vfs_next.handles.vfs_readlink, (path), (buf), (bufsiz)))
bufsiz            236 source3/modules/vfs_cap.c static bool cap_readlink(vfs_handle_struct *handle, const char *path, char *buf, size_t bufsiz)
bufsiz            244 source3/modules/vfs_cap.c 	return SMB_VFS_NEXT_READLINK(handle, cappath, buf, bufsiz);
bufsiz            268 source3/modules/vfs_catia.c 			   const char *path, char *buf, size_t bufsiz)
bufsiz            270 source3/modules/vfs_catia.c         return SMB_VFS_NEXT_READLINK(handle, path, buf, bufsiz);
bufsiz           1017 source3/modules/vfs_default.c static int vfswrap_readlink(vfs_handle_struct *handle,  const char *path, char *buf, size_t bufsiz)
bufsiz           1022 source3/modules/vfs_default.c 	result = readlink(path, buf, bufsiz);
bufsiz            171 source3/modules/vfs_expand_msdfs.c 				 const char *path, char *buf, size_t bufsiz)
bufsiz            198 source3/modules/vfs_expand_msdfs.c 	safe_strcpy(buf, target, bufsiz-1);
bufsiz            195 source3/modules/vfs_full_audit.c 			  const char *path, char *buf, size_t bufsiz);
bufsiz           1601 source3/modules/vfs_full_audit.c 			  const char *path, char *buf, size_t bufsiz)
bufsiz           1605 source3/modules/vfs_full_audit.c 	result = SMB_VFS_NEXT_READLINK(handle, path, buf, bufsiz);
bufsiz            361 source3/modules/vfs_onefs_shadow_copy.c 			   char *buf, size_t bufsiz)
bufsiz            364 source3/modules/vfs_onefs_shadow_copy.c 		    (handle, cpath ?: path, buf, bufsiz),
bufsiz            402 source3/modules/vfs_shadow_copy2.c 				 const char *fname, char *buf, size_t bufsiz)
bufsiz            404 source3/modules/vfs_shadow_copy2.c         SHADOW2_NEXT(READLINK, (handle, name, buf, bufsiz), int, -1);