| /FreeRTOS-Plus/Source/Reliance-Edge/os/freertos/services/ |
| A D | osbdev.c | 156 REDSTATUS RedOsBDevOpen( uint8_t bVolNum, in RedOsBDevOpen() argument 161 if( bVolNum >= REDCONF_VOLUME_COUNT ) in RedOsBDevOpen() 167 ret = DiskOpen( bVolNum, mode ); in RedOsBDevOpen() 198 if( bVolNum >= REDCONF_VOLUME_COUNT ) in RedOsBDevClose() 204 ret = DiskClose( bVolNum ); in RedOsBDevClose() 328 ret = DiskFlush( bVolNum ); in RedOsBDevFlush() 439 gapFDriver[ bVolNum ]->release( gapFDriver[ bVolNum ] ); in DiskClose() 689 ( void ) bVolNum; in DiskClose() 918 ( void ) bVolNum; in DiskClose() 1171 ( void ) bVolNum; in DiskClose() [all …]
|
| /FreeRTOS-Plus/Source/Reliance-Edge/fse/ |
| A D | fse.c | 115 uint8_t bVolNum; in RedFseUninit() local 121 for( bVolNum = 0U; bVolNum < REDCONF_VOLUME_COUNT; bVolNum++ ) in RedFseUninit() 171 ret = FseEnter( bVolNum ); in RedFseMount() 220 ret = FseEnter( bVolNum ); in RedFseUnmount() 259 ret = FseEnter( bVolNum ); in RedFseFormat() 315 ret = FseEnter( bVolNum ); in RedFseRead() 449 ret = FseEnter( bVolNum ); in RedFseTruncate() 481 ret = FseEnter( bVolNum ); in RedFseSizeGet() 542 ret = FseEnter( bVolNum ); in RedFseTransMaskSet() 579 ret = FseEnter( bVolNum ); in RedFseTransMaskGet() [all …]
|
| /FreeRTOS-Plus/Source/Reliance-Edge/core/driver/ |
| A D | blockio.c | 57 REDSTATUS RedIoRead( uint8_t bVolNum, in RedIoRead() argument 64 if( ( bVolNum >= REDCONF_VOLUME_COUNT ) || in RedIoRead() 65 ( ulBlockStart >= gaRedVolume[ bVolNum ].ulBlockCount ) || in RedIoRead() 75 uint8_t bSectorShift = gaRedVolume[ bVolNum ].bBlockSectorShift; in RedIoRead() 115 REDSTATUS RedIoWrite( uint8_t bVolNum, in RedIoWrite() argument 122 if( ( bVolNum >= REDCONF_VOLUME_COUNT ) || in RedIoWrite() 123 ( ulBlockStart >= gaRedVolume[ bVolNum ].ulBlockCount ) || in RedIoWrite() 133 uint8_t bSectorShift = gaRedVolume[ bVolNum ].bBlockSectorShift; in RedIoWrite() 169 REDSTATUS RedIoFlush( uint8_t bVolNum ) in RedIoFlush() argument 173 if( bVolNum >= REDCONF_VOLUME_COUNT ) in RedIoFlush() [all …]
|
| A D | core.c | 102 uint8_t bVolNum; in RedCoreInit() local 125 for( bVolNum = 0U; bVolNum < REDCONF_VOLUME_COUNT; bVolNum++ ) in RedCoreInit() 127 VOLUME * pVol = &gaRedVolume[ bVolNum ]; in RedCoreInit() 128 COREVOLUME * pCoreVol = &gaCoreVol[ bVolNum ]; in RedCoreInit() 129 const VOLCONF * pVolConf = &gaRedVolConf[ bVolNum ]; in RedCoreInit() 348 REDSTATUS RedCoreVolSetCurrent( uint8_t bVolNum ) in RedCoreVolSetCurrent() argument 352 if( bVolNum >= REDCONF_VOLUME_COUNT ) in RedCoreVolSetCurrent() 359 gbRedVolNum = bVolNum; in RedCoreVolSetCurrent() 360 gpRedVolConf = &gaRedVolConf[ bVolNum ]; in RedCoreVolSetCurrent() 361 gpRedVolume = &gaRedVolume[ bVolNum ]; in RedCoreVolSetCurrent() [all …]
|
| A D | buffer.c | 121 uint8_t bVolNum; /**< Volume the block resides on. */ member 344 pHead->bVolNum = gbRedVolNum; in RedBufferGet() 442 if( ( pHead->bVolNum == gbRedVolNum ) && in RedBufferFlush() 578 if( ( pHead->bVolNum == gbRedVolNum ) && in RedBufferDiscardRange() 763 ( gBufCtx.aHead[ bIdx ].bVolNum == gbRedVolNum ) ) in BufferToIdx() 803 ret = RedIoWrite( pHead->bVolNum, pHead->ulBlock, 1U, gBufCtx.b.aabBuffer[ bIdx ] ); in BufferWrite() 1206 if( ( pHead->bVolNum == gbRedVolNum ) && ( pHead->ulBlock == ulBlock ) ) in BufferFind()
|
| /FreeRTOS-Plus/Source/Reliance-Edge/include/ |
| A D | redfse.h | 76 REDSTATUS RedFseMount( uint8_t bVolNum ); 77 REDSTATUS RedFseUnmount( uint8_t bVolNum ); 79 REDSTATUS RedFseFormat( uint8_t bVolNum ); 81 int32_t RedFseRead( uint8_t bVolNum, 87 int32_t RedFseWrite( uint8_t bVolNum, 94 REDSTATUS RedFseTruncate( uint8_t bVolNum, 98 int64_t RedFseSizeGet( uint8_t bVolNum, 101 REDSTATUS RedFseTransMaskSet( uint8_t bVolNum, 105 REDSTATUS RedFseTransMaskGet( uint8_t bVolNum, 109 REDSTATUS RedFseTransact( uint8_t bVolNum );
|
| A D | redosserv.h | 45 REDSTATUS RedOsBDevOpen( uint8_t bVolNum, 47 REDSTATUS RedOsBDevClose( uint8_t bVolNum ); 48 REDSTATUS RedOsBDevRead( uint8_t bVolNum, 54 REDSTATUS RedOsBDevWrite( uint8_t bVolNum, 58 REDSTATUS RedOsBDevFlush( uint8_t bVolNum ); 63 REDSTATUS RedOsBDevConfig( uint8_t bVolNum,
|
| A D | redtests.h | 139 uint8_t bVolNum; /**< Volume number. */ member 199 uint8_t bVolNum; /**< Volume number. */ member
|
| A D | redcoreapi.h | 39 REDSTATUS RedCoreVolSetCurrent( uint8_t bVolNum );
|
| A D | redtools.h | 186 uint8_t bVolNum; /* Volume number. */
|
| /FreeRTOS-Plus/Source/Reliance-Edge/posix/ |
| A D | posix.c | 254 uint8_t bVolNum; in red_uninit() local 256 for( bVolNum = 0U; bVolNum < REDCONF_VOLUME_COUNT; bVolNum++ ) in red_uninit() 334 uint8_t bVolNum; in red_mount() local 429 uint8_t bVolNum; in red_umount() local 687 uint8_t bVolNum; in red_gettransmask() local 737 uint8_t bVolNum; in red_statvfs() local 2303 uint8_t bVolNum; in UnlinkSub() local 2405 uint8_t bVolNum; in FildesOpen() local 2545 pHandle->bVolNum = bVolNum; in FildesOpen() 2682 uint8_t bVolNum; in FildesToHandle() local [all …]
|
| A D | path.c | 81 uint8_t bVolNum; in RedPathSplit() local 83 for( bVolNum = 0U; bVolNum < REDCONF_VOLUME_COUNT; bVolNum++ ) in RedPathSplit() 85 const char * pszPrefix = gaRedVolConf[ bVolNum ].pszPathPrefix; in RedPathSplit() 99 bDefaultVolNum = bVolNum; in RedPathSplit() 123 bMatchVol = bVolNum; in RedPathSplit() 138 bVolNum = bMatchVol; in RedPathSplit() 147 bVolNum = bDefaultVolNum; in RedPathSplit() 161 *pbVolNum = bVolNum; in RedPathSplit()
|
| /FreeRTOS-Plus/Source/Reliance-Edge/toolcmn/ |
| A D | toolcmn.c | 58 uint8_t bVolNum = REDCONF_VOLUME_COUNT; in RedFindVolumeNumber() local 71 bVolNum = ( uint8_t ) ulNumber; in RedFindVolumeNumber() 97 bVolNum = bIndex; in RedFindVolumeNumber() 101 return bVolNum; in RedFindVolumeNumber()
|
| /FreeRTOS-Plus/Source/Reliance-Edge/core/include/ |
| A D | redcore.h | 48 REDSTATUS RedIoRead( uint8_t bVolNum, 53 REDSTATUS RedIoWrite( uint8_t bVolNum, 57 REDSTATUS RedIoFlush( uint8_t bVolNum );
|
| /FreeRTOS-Plus/Source/Reliance-Edge/doc/ |
| A D | coding_style.txt | 224 uint8_t bVolNum; 226 ret = RedPathSplit(pszVolume, &bVolNum, NULL); 231 ret = RedCoreVolSetCurrent(bVolNum);
|
| /FreeRTOS-Plus/Source/Reliance-Edge/tests/posix/ |
| A D | fsstress.c | 677 uint8_t bVolNum; in FsstressParseParams() local 765 bVolNum = RedFindVolumeNumber( argv[ red_optind ] ); in FsstressParseParams() 767 if( bVolNum == REDCONF_VOLUME_COUNT ) in FsstressParseParams() 775 *pbVolNum = bVolNum; in FsstressParseParams()
|