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

/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/modules/
H A Dvfs_catia.c218 const char *path, char *resolved_path)
220 return SMB_VFS_NEXT_REALPATH(handle, path, resolved_path);
217 catia_realpath(vfs_handle_struct *handle, const char *path, char *resolved_path) argument
H A Dvfs_cap.c172 static char *cap_realpath(vfs_handle_struct *handle, const char *path, char *resolved_path) argument
177 return SMB_VFS_NEXT_REALPATH(handle, path, resolved_path);
H A Dvfs_full_audit.c176 const char *path, char *resolved_path);
1412 const char *path, char *resolved_path)
1416 result = SMB_VFS_NEXT_REALPATH(handle, path, resolved_path);
1411 smb_full_audit_realpath(vfs_handle_struct *handle, const char *path, char *resolved_path) argument
H A Dvfs_default.c875 static char *vfswrap_realpath(vfs_handle_struct *handle, const char *path, char *resolved_path) argument
880 result = sys_realpath(path, resolved_path);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/client/
H A Dmount.cifs.c887 char * resolved_path = NULL; local
1095 resolved_path = (char *)malloc(PATH_MAX+1);
1096 if(resolved_path) {
1099 if (realpath(mountpoint, resolved_path)) {
1100 mountpoint = resolved_path;
1312 if(resolved_path) {
1313 free(resolved_path);
/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dutils.c1639 tr_realpath( const char * path, char * resolved_path )
1643 if( GetFullPathNameA( path, TR_PATH_MAX, resolved_path, NULL ) == 0 )
1645 return resolved_path;
1647 return realpath( path, resolved_path );
H A Dutils.h524 @param resolved_path should be TR_PATH_MAX or larger */
525 char* tr_realpath( const char *path, char * resolved_path );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/include/
H A Dvfs_macros.h80 #define SMB_VFS_REALPATH(conn, path, resolved_path) ((conn)->vfs.ops.realpath((conn)->vfs.handles.realpath, (path), (resolved_path)))
196 #define SMB_VFS_OPAQUE_REALPATH(conn, path, resolved_path) ((conn)->vfs_opaque.ops.realpath((conn)->vfs_opaque.handles.realpath, (path), (resolved_path)))
313 #define SMB_VFS_NEXT_REALPATH(handle, path, resolved_path) ((handle)->vfs_next.ops.realpath((handle)->vfs_next.handles.realpath, (path), (resolved_path)))
H A Dvfs.h299 char *(*realpath)(struct vfs_handle_struct *handle, const char *path, char *resolved_path);
/netgear-R7000-V1.0.7.12_1.2.5/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-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/VFS/
H A Dskel_opaque.c260 static char *skel_realpath(vfs_handle_struct *handle, const char *path, char *resolved_path) argument
262 return vfswrap_realpath(NULL, path, resolved_path);
H A Dskel_transparent.c253 static char *skel_realpath(vfs_handle_struct *handle, const char *path, char *resolved_path) argument
255 return SMB_VFS_NEXT_REALPATH(handle, path, resolved_path);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Dsystem.c580 char *sys_realpath(const char *path, char *resolved_path) argument
583 return realpath(path, resolved_path);

Completed in 178 milliseconds