Searched refs:pszPath (Results 1 – 6 of 6) sorted by relevance
| /FreeRTOS-Plus/Source/Reliance-Edge/include/ |
| A D | redposix.h | 157 int32_t red_open( const char * pszPath, 160 int32_t red_unlink( const char * pszPath ); 163 int32_t red_mkdir( const char * pszPath ); 166 int32_t red_rmdir( const char * pszPath ); 173 int32_t red_link( const char * pszPath, 198 REDDIR * red_opendir( const char * pszPath );
|
| A D | redtools.h | 107 int IbFseGetFileList( const char * pszPath, 128 int IbSetRelativePath( char * pszPath, 131 bool IsRegularFile( const char * pszPath ); 138 int IbCheckFileExists( const char * pszPath,
|
| A D | redpath.h | 34 REDSTATUS RedPathSplit( const char * pszPath,
|
| /FreeRTOS-Plus/Source/Reliance-Edge/posix/ |
| A D | path.c | 65 REDSTATUS RedPathSplit( const char * pszPath, in RedPathSplit() argument 71 if( pszPath == NULL ) in RedPathSplit() 77 const char * pszLocalPath = pszPath; in RedPathSplit() 107 else if( ( RedStrNCmp( pszPath, pszPrefix, ulPrefixLen ) == 0 ) && in RedPathSplit() 108 … ( ( pszPath[ ulPrefixLen ] == '\0' ) || ( pszPath[ ulPrefixLen ] == REDCONF_PATH_SEPARATOR ) ) ) in RedPathSplit() 139 pszLocalPath = &pszPath[ ulMatchLen ]; in RedPathSplit() 148 REDASSERT( pszLocalPath == pszPath ); in RedPathSplit()
|
| A D | posix.c | 125 static REDSTATUS UnlinkSub( const char * pszPath, 128 static REDSTATUS FildesOpen( const char * pszPath, 827 int32_t red_open( const char * pszPath, in red_open() argument 923 int32_t red_unlink( const char * pszPath ) in red_unlink() argument 931 ret = UnlinkSub( pszPath, FTYPE_EITHER ); in red_unlink() 969 int32_t red_mkdir( const char * pszPath ) in red_mkdir() argument 1061 int32_t red_rmdir( const char * pszPath ) in red_rmdir() argument 1069 ret = UnlinkSub( pszPath, FTYPE_DIR ); in red_rmdir() 1268 int32_t red_link( const char * pszPath, in red_link() argument 1950 REDDIR * red_opendir( const char * pszPath ) in red_opendir() argument [all …]
|
| /FreeRTOS-Plus/Source/Reliance-Edge/tests/posix/ |
| A D | fsstress.c | 129 static int red_stat( const char * pszPath, 174 static int red_chdir( const char * pszPath ) in red_chdir() argument 179 if( strcmp( pszPath, ".." ) == 0 ) in red_chdir() 208 if( pszPath[ 0U ] == '/' ) in red_chdir() 210 if( strlen( pszPath ) >= sizeof( szLocalCwd ) ) in red_chdir() 216 strcpy( szLocalCwd, pszPath ); in red_chdir() 235 strcpy( &szLocalCwd[ ulIdx ], pszPath ); in red_chdir() 386 static int red_stat( const char * pszPath, in red_stat() argument 392 iFd = open( pszPath, O_RDONLY ); in red_stat() 408 static int red_truncate( const char * pszPath, in red_truncate() argument [all …]
|
Completed in 90 milliseconds