Lines Matching refs:pszBucketName

649 RTR3DECL(int) RTS3CreateBucket(RTS3 hS3, const char* pszBucketName)
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)
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)
764 char* pszUrl = rtS3Host(pszBucketName, "", pS3Int->pszBaseUrl);
771 rtS3HostHeader(pszBucketName, pS3Int->pszBaseUrl), /* Host entry */
776 apszHead[RT_ELEMENTS(apszHead)-1] = rtS3CreateAuthHeader(pS3Int, "GET", pszBucketName, "", apszHead, RT_ELEMENTS(apszHead));
836 RTR3DECL(int) RTS3DeleteKey(RTS3 hS3, const char* pszBucketName, const char* pszKeyName)
844 char* pszUrl = rtS3Host(pszBucketName, pszKeyName, pS3Int->pszBaseUrl);
851 rtS3HostHeader(pszBucketName, pS3Int->pszBaseUrl), /* Host entry */
856 apszHead[RT_ELEMENTS(apszHead)-1] = rtS3CreateAuthHeader(pS3Int, "DELETE", pszBucketName, pszKeyName, apszHead, RT_ELEMENTS(apszHead));
880 RTR3DECL(int) RTS3GetKey(RTS3 hS3, const char *pszBucketName, const char *pszKeyName, const char *pszFilename)
894 char* pszUrl = rtS3Host(pszBucketName, pszKeyName, pS3Int->pszBaseUrl);
901 rtS3HostHeader(pszBucketName, pS3Int->pszBaseUrl), /* Host entry */
906 apszHead[RT_ELEMENTS(apszHead)-1] = rtS3CreateAuthHeader(pS3Int, "GET", pszBucketName, pszKeyName, apszHead, RT_ELEMENTS(apszHead));
938 RTR3DECL(int) RTS3PutKey(RTS3 hS3, const char *pszBucketName, const char *pszKeyName, const char *pszFilename)
960 char* pszUrl = rtS3Host(pszBucketName, pszKeyName, pS3Int->pszBaseUrl);
974 rtS3HostHeader(pszBucketName, pS3Int->pszBaseUrl), /* Host entry */
979 apszHead[RT_ELEMENTS(apszHead)-1] = rtS3CreateAuthHeader(pS3Int, "PUT", pszBucketName, pszKeyName, apszHead, RT_ELEMENTS(apszHead));