Searched defs:pszBucketName (Results 1 - 2 of 2) sorted by relevance
/vbox/src/VBox/Runtime/testcase/ |
H A D | tstRTS3.cpp | 93 void createBucket(RTS3 hS3, const char *pszBucketName) argument 96 RTTestIPrintf(RTTESTLVL_ALWAYS, " Create bucket '%s'...\n", pszBucketName); 99 int rc = RTS3CreateBucket(hS3, pszBucketName); 104 void deleteBucket(RTS3 hS3, const char *pszBucketName) argument 107 RTTestIPrintf(RTTESTLVL_ALWAYS, " Delete bucket '%s'...\n", pszBucketName); 110 int rc = RTS3DeleteBucket(hS3, pszBucketName); 115 void fetchAllKeys(RTS3 hS3, const char *pszBucketName) argument 118 RTTestIPrintf(RTTESTLVL_ALWAYS, " List all keys of bucket '%s'...\n", pszBucketName); 122 int rc = RTS3GetBucketKeys(hS3, pszBucketName, &pKeys); 142 void deleteKey(RTS3 hS3, const char *pszBucketName, cons argument 153 getKey(RTS3 hS3, const char *pszBucketName, const char *pszKeyName, const char *pszFilename) argument 164 putKey(RTS3 hS3, const char *pszBucketName, const char *pszKeyName, const char *pszFilename) argument [all...] |
/vbox/src/VBox/Runtime/common/misc/ |
H A D | s3.cpp | 649 RTR3DECL(int) RTS3CreateBucket(RTS3 hS3, const char* pszBucketName) argument 657 char* pszUrl = rtS3Host(pszBucketName, "", pS3Int->pszBaseUrl); 665 rtS3HostHeader(pszBucketName, pS3Int->pszBaseUrl), /* Host entry */ 670 apszHead[RT_ELEMENTS(apszHead)-1] = rtS3CreateAuthHeader(pS3Int, "PUT", pszBucketName, "", apszHead, RT_ELEMENTS(apszHead)); 704 RTR3DECL(int) RTS3DeleteBucket(RTS3 hS3, const char* pszBucketName) argument 712 char* pszUrl = rtS3Host(pszBucketName, "", pS3Int->pszBaseUrl); 719 rtS3HostHeader(pszBucketName, pS3Int->pszBaseUrl), /* Host entry */ 724 apszHead[RT_ELEMENTS(apszHead)-1] = rtS3CreateAuthHeader(pS3Int, "DELETE", pszBucketName, "", apszHead, RT_ELEMENTS(apszHead)); 754 RTR3DECL(int) RTS3GetBucketKeys(RTS3 hS3, const char* pszBucketName, PCRTS3KEYENTRY *ppKeys) argument 764 char* pszUrl = rtS3Host(pszBucketName, "", pS3In 836 RTS3DeleteKey(RTS3 hS3, const char* pszBucketName, const char* pszKeyName) argument 880 RTS3GetKey(RTS3 hS3, const char *pszBucketName, const char *pszKeyName, const char *pszFilename) argument 938 RTS3PutKey(RTS3 hS3, const char *pszBucketName, const char *pszKeyName, const char *pszFilename) argument [all...] |
Completed in 36 milliseconds