Searched refs:resolved_path (Results 1 - 12 of 12) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/busybox-1.x/coreutils/
H A Drealpath.c21 RESERVE_CONFIG_BUFFER(resolved_path, PATH_MAX);
24 #define resolved_path bb_common_bufsiz1 macro
34 if (realpath(*argv, resolved_path) != NULL) {
35 puts(resolved_path);
43 RELEASE_CONFIG_BUFFER(resolved_path);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/client/
H A Dmount.cifs.c653 char * resolved_path; local
808 resolved_path = malloc(PATH_MAX+1);
809 if(resolved_path) {
812 if (realpath(mountpoint, resolved_path)) {
813 mountpoint = resolved_path;
994 if(resolved_path) {
995 free(resolved_path);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Dvolume.c1225 static char *realpath(const char *path, char *resolved_path) argument
1227 strncpy(resolved_path, path, PATH_MAX);
1228 resolved_path[PATH_MAX] = '\0';
1229 return resolved_path;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/modules/
H A Dvfs_cap.c172 static char *cap_realpath(vfs_handle_struct *handle, connection_struct *conn, const char *path, char *resolved_path) argument
177 return SMB_VFS_NEXT_REALPATH(handle, conn, path, resolved_path);
H A Dvfs_full_audit.c161 const char *path, char *resolved_path);
1240 const char *path, char *resolved_path)
1244 result = SMB_VFS_NEXT_REALPATH(handle, conn, path, resolved_path);
1239 smb_full_audit_realpath(vfs_handle_struct *handle, connection_struct *conn, const char *path, char *resolved_path) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/include/
H A Dvfs_macros.h76 #define SMB_VFS_REALPATH(conn, path, resolved_path) ((conn)->vfs.ops.realpath((conn)->vfs.handles.realpath, (conn), (path), (resolved_path)))
177 #define SMB_VFS_OPAQUE_REALPATH(conn, path, resolved_path) ((conn)->vfs_opaque.ops.realpath((conn)->vfs_opaque.handles.realpath, (conn), (path), (resolved_path)))
279 #define SMB_VFS_NEXT_REALPATH(handle, conn, path, resolved_path) ((handle)->vfs_next.ops.realpath((handle)->vfs_next.handles.realpath, (conn), (path), (resolved_path)))
H A Dvfs.h260 char *(*realpath)(struct vfs_handle_struct *handle, struct connection_struct *conn, const char *path, char *resolved_path);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ntfs-3g-2009.3.8/src/
H A Dntfs-3g.c2011 static char *realpath(const char *path, char *resolved_path) argument
2013 strncpy(resolved_path, path, PATH_MAX);
2014 resolved_path[PATH_MAX] = '\0';
2015 return resolved_path;
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/smbd/
H A Dvfs-wrap.c847 char *vfswrap_realpath(vfs_handle_struct *handle, connection_struct *conn, const char *path, char *resolved_path) argument
852 result = sys_realpath(path, resolved_path);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/examples/VFS/
H A Dskel_opaque.c244 static char *skel_realpath(vfs_handle_struct *handle, connection_struct *conn, const char *path, char *resolved_path) argument
246 return vfswrap_realpath(NULL, conn, path, resolved_path);
H A Dskel_transparent.c243 static char *skel_realpath(vfs_handle_struct *handle, connection_struct *conn, const char *path, char *resolved_path) argument
245 return SMB_VFS_NEXT_REALPATH(handle, conn, path, resolved_path);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/lib/
H A Dsystem.c498 char *sys_realpath(const char *path, char *resolved_path) argument
501 return realpath(path, resolved_path);

Completed in 276 milliseconds